/*--
Author: W3layouts
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
--*/
body {
    padding: 0;
    margin: 0;
    background: #fff;
    position: relative;
    /*font-family: 'Source Sans Pro', sans-serif;*/
}

html {
    scroll-behavior: smooth;
}

body a {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

a:hover {
    text-decoration: none;
}

input[type="button"], input[type="submit"], .contact-form input[type="submit"] {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
}

label {
    margin: 0;
}

/*img {
    width: 100%;
}*/


.img-optimize {
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 15px;
    box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.3);
}

.img-optimize:hover {
    transform: scale(1.01);
}

.img-fit {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*-- header --*/

header {
    position: relative;
    z-index: 9;
    width: 100%;
}

.navbar-light .navbar-brand {
    color: #fff;
    font-size: 30px;
    margin: 0;
    font-weight: 600;
    text-transform: capitalize;
    background: none;
    padding: 6px 0;
}

.navbar-light .navbar-brand span.fa {
    color: #30c39e;
}

.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
    color: #fff;
}

.toggle,
[id^=drop] {
    display: none;
}

/* Giving a background-color to the nav container. */
nav {
    margin: 0;
    padding: 0;
}


#logo a {
    float: left;
    font-size: .8em;
    text-transform: capitalize;
    display: initial;
    margin: 0;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 600;
    padding: .6em 0;
}

#logo a span {
    color: #30c39e;
}

#logo a:hover {
    background: none;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
    content: "";
    display: table;
    clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
    float: right;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

/* Positioning the navigation items inline */
nav ul li {
    margin: 0px;
    display: inline-block;
    float: left;
}

/* Styling the links */
nav a {
    color: black;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding-left: 0;
    padding-right: 0;
    padding: 6px 10px;
}


nav ul li ul li:hover {
    background: #f8f9fa;
}

/* Background color change on Hover */
nav a:hover {
    color: #30c39e;
    background: #fff;
    border-radius: 2px;
}

.menu li.active a {
    color: #30c39e;
    background: #fff;
    border-radius: 2px;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    /* has to be the same number as the "line-height" of "nav a" */
    top: 20px;
    background: #F6F6F6;
    padding: 10px;
    width: auto;

}


/* Display Dropdowns on Hover */
nav ul li:hover > ul {
    display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    width: auto;
    float: none;
    display: list-item;
    position: relative;
}

nav ul ul li a {
    color: #333;
    padding: 5px 10px;
    display: block;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
    position: relative;
    top: -60px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left: 170px;
}


/* Change ' +' in order to change the Dropdown symbol */
li > a:only-child:after {
    content: '';
}


/* Media Queries
--------------------------------------------- */

@media all and (max-width: 991px) {

    #container-r {

        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
    }


    .footer_section {
        width: 100%;
        float: left;
        background-color: rgb(255, 255, 255);
        height: auto;
        padding-bottom: 90px;
        margin-bottom: 80px;
        z-index: 999;
    }

    .layui-bg-gray {
        background-color: #FAFAFA !important;
        color: #666 !important
    }

    #logo {
        display: block;
        padding: 0;
        width: 100%;
        text-align: center;
        float: none;
    }

    nav {
        margin: 0;
    }

    /* Hide the navigation menu by default */
    /* Also hide the  */
    .toggle + a,
    .menu {
        display: none;
    }

    nav a {
        color: #333;
    }

    /* Stylinf the toggle lable */
    .toggle {
        display: block;
        padding: 10px 20px;
        font-size: 17px;
        text-decoration: none;
        border: none;
        float: right;
        background-color: #30c39e;
        color: #fff;
    }

    .menu .toggle {
        float: none;
        text-align: center;
        margin: auto;
        width: 25%;
        padding: 5px;
        font-weight: normal;
        font-size: 16px;
        letter-spacing: 1px;
    }

    .toggle:hover {
        color: #333;
        background-color: #fff;
    }

    /* Display Dropdown when clicked on Parent Lable */
    [id^=drop]:checked + ul {
        display: block;
        background: #fff;
        padding: 15px 0;
        text-align: center;
    }

    li.dropdown-menu-padding ul {
        padding-bottom: 0 !important;
    }

    /* Change menu item's width to 100% */
    nav ul li {
        display: block;
        width: 100%;
        padding: 5px 0;
    }

    nav ul ul .toggle,
    nav ul ul a {
        padding: 0 40px;
    }

    nav ul ul ul a {
        padding: 0 80px;
    }

    nav a:hover,
    nav ul ul ul a {
        background-color: transparent;
    }

    nav ul li ul li .toggle,
    nav ul ul a,
    nav ul ul ul a {
        padding: 14px 20px;
        color: #FFF;
        font-size: 17px;
    }


    /* Hide Dropdowns by Default */
    nav ul ul {
        float: none;
        position: static;
        color: #ffffff;
        /* has to be the same number as the "line-height" of "nav a" */
    }

    /* Hide menus on hover */
    nav ul ul li:hover > ul,
    nav ul li:hover > ul {
        display: none;
    }

    /* Fisrt Tier Dropdown */
    nav ul ul li {
        display: block;
        width: 100%;
        padding: 0;
    }

    nav ul ul ul li {
        position: static;
        /* has to be the same number as the "width" of "nav ul ul li" */

    }

}


@media all and (max-width: 330px) {

    nav ul li {
        display: block;
        width: 94%;
    }

}

header {
    position: relative;
    z-index: 9;
    width: 100%;
    padding: 5px 0;
}

.buttons p span {
    color: #dc3545;
    background: #fff;
    font-size: 18px;
    text-align: center;
    height: 35px;
    width: 35px;
    line-height: 35px;
    border-radius: 50%;
}

header h1 {
    line-height: 0;
}

.buttons p {
    margin: 0;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
}

/*-- //header --*/


.csslider {
    display: inline-block;
    text-align: left;
    position: relative;
    margin-bottom: 0px;
}

.csslider > input {
    display: none;
}

.csslider > input:nth-of-type(10):checked ~ ul li:first-of-type {
    margin-left: -900%;
}

.csslider > input:nth-of-type(9):checked ~ ul li:first-of-type {
    margin-left: -800%;
}

.csslider > input:nth-of-type(8):checked ~ ul li:first-of-type {
    margin-left: -700%;
}

.csslider > input:nth-of-type(7):checked ~ ul li:first-of-type {
    margin-left: -600%;
}

.csslider > input:nth-of-type(6):checked ~ ul li:first-of-type {
    margin-left: -500%;
}

.csslider > input:nth-of-type(5):checked ~ ul li:first-of-type {
    margin-left: -400%;
}

.csslider > input:nth-of-type(4):checked ~ ul li:first-of-type {
    margin-left: -300%;
}

.csslider > input:nth-of-type(3):checked ~ ul li:first-of-type {
    margin-left: -200%;
}

.csslider > input:nth-of-type(2):checked ~ ul li:first-of-type {
    margin-left: -100%;
}

.csslider > input:nth-of-type(1):checked ~ ul li:first-of-type {
    margin-left: 0%;
}

.csslider > ul {
    position: relative;
    height: 770px;
    z-index: 1;
    font-size: 0;
    line-height: 0;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.csslider > ul > li {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-size: 15px;
    font-size: initial;
    line-height: normal;
    -moz-transition: all 0.5s cubic-bezier(0.4, 1.3, 0.65, 1);
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s cubic-bezier(0.4, 1.3, 0.65, 1);
    transition: all 0.5s cubic-bezier(0.4, 1.3, 0.65, 1);
    vertical-align: top;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    white-space: normal;
}

.csslider > ul > li.scrollable {
    overflow-y: scroll;
}

.csslider > .navigation {
    position: absolute;
    bottom: 7%;
    left: 49%;
    z-index: 1;
    margin-bottom: -10px;
    font-size: 0;
    line-height: 0;
    text-align: center;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.csslider > .navigation > div {
    margin-left: -100%;
}

.csslider > .navigation label {
    position: relative;
    display: inline-block;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 5px;
    padding: 5px;
    background: #fff;
}

.csslider > .navigation label:hover:after {
    opacity: 1;
}

.csslider > .navigation label:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -7px;
    margin-top: -7px;
    background: #30c39e;
    border-radius: 50%;
    padding: 7px;
    opacity: 0;
}

.csslider > .arrows {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.csslider.inside .navigation {
    bottom: 10px;
    margin-bottom: 10px;
}

.csslider.inside .navigation label {
    border: 1px solid #7e7e7e;
}

.csslider > input:nth-of-type(1):checked ~ .navigation label:nth-of-type(1):after,
.csslider > input:nth-of-type(2):checked ~ .navigation label:nth-of-type(2):after,
.csslider > input:nth-of-type(3):checked ~ .navigation label:nth-of-type(3):after,
.csslider > input:nth-of-type(4):checked ~ .navigation label:nth-of-type(4):after,
.csslider > input:nth-of-type(5):checked ~ .navigation label:nth-of-type(5):after,
.csslider > input:nth-of-type(6):checked ~ .navigation label:nth-of-type(6):after,
.csslider > input:nth-of-type(7):checked ~ .navigation label:nth-of-type(7):after,
.csslider > input:nth-of-type(8):checked ~ .navigation label:nth-of-type(8):after,
.csslider > input:nth-of-type(9):checked ~ .navigation label:nth-of-type(9):after,
.csslider > input:nth-of-type(10):checked ~ .navigation label:nth-of-type(10):after,
.csslider > input:nth-of-type(11):checked ~ .navigation label:nth-of-type(11):after {
    opacity: 1;
}

.csslider > .arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 26px;
    z-index: 1;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.csslider > .arrows label {
    display: none;
    position: absolute;
    top: -50%;
    padding: 13px;
    box-shadow: inset 2px -2px 0 1px #ffffff;
    cursor: pointer;
    -moz-transition: box-shadow 0.15s, margin 0.15s;
    -o-transition: box-shadow 0.15s, margin 0.15s;
    -webkit-transition: box-shadow 0.15s, margin 0.15s;
    transition: box-shadow 0.15s, margin 0.15s;
}

.csslider > .arrows label:hover {
    box-shadow: inset 3px -3px 0 2px #30c39e;
    margin: 0 0px;
}

.csslider > .arrows label:before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    height: 300%;
    width: 300%;
}

.csslider.infinity > input:first-of-type:checked ~ .arrows label.goto-last,
.csslider > input:nth-of-type(1):checked ~ .arrows > label:nth-of-type(0),
.csslider > input:nth-of-type(2):checked ~ .arrows > label:nth-of-type(1),
.csslider > input:nth-of-type(3):checked ~ .arrows > label:nth-of-type(2),
.csslider > input:nth-of-type(4):checked ~ .arrows > label:nth-of-type(3),
.csslider > input:nth-of-type(5):checked ~ .arrows > label:nth-of-type(4),
.csslider > input:nth-of-type(6):checked ~ .arrows > label:nth-of-type(5),
.csslider > input:nth-of-type(7):checked ~ .arrows > label:nth-of-type(6),
.csslider > input:nth-of-type(8):checked ~ .arrows > label:nth-of-type(7),
.csslider > input:nth-of-type(9):checked ~ .arrows > label:nth-of-type(8),
.csslider > input:nth-of-type(10):checked ~ .arrows > label:nth-of-type(9),
.csslider > input:nth-of-type(11):checked ~ .arrows > label:nth-of-type(10) {
    display: block;
    left: 5%;
    right: auto;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.csslider.infinity > input:last-of-type:checked ~ .arrows label.goto-first,
.csslider > input:nth-of-type(1):checked ~ .arrows > label:nth-of-type(2),
.csslider > input:nth-of-type(2):checked ~ .arrows > label:nth-of-type(3),
.csslider > input:nth-of-type(3):checked ~ .arrows > label:nth-of-type(4),
.csslider > input:nth-of-type(4):checked ~ .arrows > label:nth-of-type(5),
.csslider > input:nth-of-type(5):checked ~ .arrows > label:nth-of-type(6),
.csslider > input:nth-of-type(6):checked ~ .arrows > label:nth-of-type(7),
.csslider > input:nth-of-type(7):checked ~ .arrows > label:nth-of-type(8),
.csslider > input:nth-of-type(8):checked ~ .arrows > label:nth-of-type(9),
.csslider > input:nth-of-type(9):checked ~ .arrows > label:nth-of-type(10),
.csslider > input:nth-of-type(10):checked ~ .arrows > label:nth-of-type(11),
.csslider > input:nth-of-type(11):checked ~ .arrows > label:nth-of-type(12) {
    display: block;
    right: 5%;
    left: auto;
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}

#slider1 > ul > li:nth-of-type(1) {
    background: url(../images/banner1.jpg) no-repeat center;
    background-size: cover;
}

#slider1 > ul > li:nth-of-type(2) {
    background: url(../images/banner2.jpg) no-repeat center;
    background-size: cover;
}

#slider1 > ul > li:nth-of-type(3) {
    background: url(../images/banner3.jpg) no-repeat center;
    background-size: cover;
}

#slider1 > ul > li:nth-of-type(4) {
    background: url(../images/banner4.jpg) no-repeat center;
    background-size: cover;
}

#slider1 > input:nth-of-type(1):checked ~ ul #bg, #slider1 > input:nth-of-type(2):checked ~ ul #bg1, #slider1 > input:nth-of-type(3):checked ~ ul #bg2, #slider1 > input:nth-of-type(4):checked ~ ul #bg3 {
    width: 100%;
    -moz-transition: 0.5s 0.5s;
    -o-transition: 0.5s 0.5s;
    -webkit-transition: 0.5s 0.5s;
    transition: 0.5s 0.5s;
    text-align: center;
    padding: 0;
    height: 100%;
}

#slider1 > input:nth-of-type(1):checked ~ ul #bg div, #slider1 > input:nth-of-type(2):checked ~ ul #bg1 div, #slider1 > input:nth-of-type(3):checked ~ ul #bg2 div, #slider1 > input:nth-of-type(4):checked ~ ul #bg3 div {
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    -webkit-transform: translate(0);
    transform: translate(0);
    -moz-transition: 0.5s 0.9s;
    -o-transition: 0.5s 0.9s;
    -webkit-transition: 0.5s 0.9s;
    transition: 0.5s 0.9s;
}

#bg, #bg1, #bg2, #bg3 {
    color: #fff;
    padding: 22px 0;
    z-index: 10;
    overflow: hidden;
}

#bg:before, #bg1:before, #bg2:before, #bg3:before {
    content: '';
    position: absolute;
    left: -1px;
    top: 1px;
    height: 100%;
    width: 100%;
    z-index: -1;
}

#bg:after, #bg1:after, #bg2:after, #bg3:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 20;
    pointer-events: none;
}

#bg div, #bg1 div, #bg2 div, #bg3 div {
    -moz-transform: translate(120%);
    -ms-transform: translate(120%);
    -o-transform: translate(120%);
    -webkit-transform: translate(120%);
    transform: translate(120%);
}

.scrollable p {
    padding: 30px;
    text-align: justify;
    line-height: 140%;
    font-size: 120%;
}

#center {
    text-align: center;
    margin-top: 25%;
}

#center a {
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-variant: small-caps;
}

/*___________________________________ LINK ___________________________________ */
a.nice-link {
    position: relative;
    color: #71ad37;
}

h1 a.nice-link:after {
    border-bottom: 1px solid #a5ff0e;
}

a.nice-link:after {
    text-align: justify;
    display: inline-block;
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #a5ff0e;
    min-height: 100%;
    width: 0;
    max-width: 100%;
    background: #3A3A3A;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

a.nice-link:hover {
    color: #71ad37;
}

a.nice-link:hover:after {
    width: 100%;
}

/*___________________________________ SIGN ___________________________________ */
#dex-sign {
    width: 255px;
    height: 84px;
    position: absolute;
    left: 33%;
    top: 45%;
    opacity: 0.7;
    background: url(http://www.drygiel.com/projects/sign/frames-255-white.png) 0 0 no-repeat;
}

#dex-sign:hover {
    opacity: 1;
    -webkit-filter: invert(30%) brightness(80%) sepia(100%) contrast(110%) saturate(953%) hue-rotate(45deg);
}

@-webkit-keyframes sign-anim {
    to {
        background-position: 0 -7140px;
    }
}

@-moz-keyframes sign-anim {
    to {
        background-position: 0 -7140px;
    }
}

@keyframes sign-anim {
    to {
        background-position: 0 -7140px;
    }
}


/*-- banner --*/
.banner-text h6 {
    font-size: 27px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.banner-text h3 {
    font-size: 60px;
    font-weight: 300;
    letter-spacing: 5px;
}

.banner-text {
    padding: 18vw 0 0;
    text-align: center;
    width: 70%;
    margin: auto;
}

.banner-text p {
    margin: 0;
    font-size: 17px;
    line-height: 30px;
    letter-spacing: .5px;
}

.bs-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.bs-slider-overlay1 {
    width: 100%;
    height: 100%;
    background: url(../images/dott.png) repeat 0px 0px;
    background-size: 2px;
    -webkit-background-size: 2px;
    -moz-background-size: 2px;
    -o-background-size: 2px;
    -ms-background-size: 2px;
}

h4.agile-title, h1.agile-title, h2.agile-title {
    letter-spacing: 2px;
    line-height: 1.4em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.37);
    font-size: 3.5em;
    font-weight: 700;
    color: #fff;
}

h5.tag {
    display: block;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 4.2px;
}

/*-- //banner --*/

/*-- heading --*/
h2.heading, h3.heading {
    font-size: 50px;
    text-transform: capitalize;
    letter-spacing: 0px;
    color: #1d1e22;
}

.bg {
    background: #30c39e;
}

/*-- //heading --*/


/*-- gallery --*/
.gallery-border {
    border: 8px solid #EEE;
}

/*-- // gallery --*/

/*-- subscribe --*/

.quotes p {
    margin: 0;
    font-size: 16px;
    letter-spacing: 1px;
    color: #666;
    line-height: 26px;
}

.quotes-info {
    padding: 0 10em;
}

.quotes input[type="email"] {
    outline: none;
    padding: 16px 16px 16px 20px;
    color: #333;
    font-size: 14px;
    /*    text-transform: capitalize;*/
    width: 70%;
    border: 1px solid #dc3545;
    letter-spacing: 2px;
    float: left;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.quotes input[type="button"] {
    width: 30%;
    background: #dc3545;
    color: #fff;
    border: 1px solid #dc3545;
    font-size: 14px;
    padding: 16px 16px;
    letter-spacing: 2px;
    font-weight: 500;
    float: left;
    cursor: pointer;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.quotes input[type="button"]:hover {
    background: #30c39e;
    border: 1px solid #30c39e;
}

.quotes form span {
    font-size: 14px;
    letter-spacing: 1px;
    color: #999;
    padding-top: 10px;
    display: block;
    text-transform: capitalize;
}

.quotes form span a {
    color: #30c39e;
}

.quotes form {
    width: 80%;
    margin: auto;
}

/*-- //subscribe --*/

/*-- services-bottom --*/
.layer {
    background: rgba(0, 0, 0, 0.6);
    padding: 4em 0em 3em 13em;
    height: 100%;
}

.agileits_w3layouts_about_counter_left span {
    font-size: 30px;
    width: 60px;
    height: 60px;
    line-height: 60px;
}

.agileits_w3layouts_about_counter_left p {
    font-size: 3em;
    font-weight: 600;
    color: #fff;
}

.agileits_w3layouts_about_counter_left h3 {
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
    letter-spacing: 2px;
}

.agileits_w3layouts_about_counter_left:nth-child(4), .agileits_w3layouts_about_counter_left:nth-child(5) {
    margin-bottom: 0em;
}

/*-- //services-bottom --*/

/*-- popup --*/

.overlay {
    position: fixed;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0ms;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
}

.overlay:target {
    visibility: visible;
    opacity: 1;
}


.popup {
    background: #fff;
    border-radius: 5px;
    max-width: 500px;
    position: relative;
    margin: 8em auto;
    padding: 3em 1em;
}

.popup1 {
    background: #fff;
    border-radius: 5px;
    max-width: 400px;
    position: relative;
    margin: 8em auto;
    padding: 3em 1em;
}

.popup p {
    font-size: 15px;
    color: #666;
    letter-spacing: .5px;
    line-height: 30px;
}

.popup .close, .popup1 .close {
    position: absolute;
    top: 10px;
    right: 15px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.popup h2 {
    margin-top: 0;
    color: #fff;

}

.popup .close:hover {
    color: #30c39e;
}

/*-- //popup --*/

/*-- about --*/
.about-grids h4 {
    font-size: 26px;
    letter-spacing: 2px;
    color: #333;
    line-height: 40px;
    text-transform: uppercase;
}

.about-grids p {
    font-size: 16px;
    letter-spacing: .5px;
    color: #666;
    line-height: 28px;
}

.about-grids p span {
    color: #30c39e;
    margin-right: 5px;
}

.about-grids a {
    color: #fff;
    font-size: 16px;
    background: #30c39e;
    border: 2px solid #30c39e;
    border-radius: 5px;
    padding: 10px 30px;
    letter-spacing: 2px;
    display: inline-block;
}

.about-grids a:hover {
    color: #30c39e;
    background: #fff;
}

/*-- //about --*/

/*-- how we work --*/
.work {
    background: url(../images/banner4.jpg) no-repeat 0px 0px;
    background-size: cover;
    background-attachment: fixed;
}

.steps-reach p {
    font-size: 16px;
    color: #ddd;
    letter-spacing: 1px;
    line-height: 26px;
}

.steps-reach h4 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
    position: relative;
}

.steps-reach span {
    font-size: 22px;
    background: #fff;
    color: #dc3545;
    width: 70px;
    height: 70px;
    line-height: 68px;
    text-align: center;
    margin-bottom: 15px;
    border-radius: 50%;
}

.steps-reach span.fab.fa-algolia, .service-bottom span.fab.fa-algolia {
    color: #17a2b8;
}

.steps-reach span.fab.fa-asymmetrik, .service-bottom span.fab.fa-asymmetrik {
    color: #30c39e;
}

.steps-reach span.fas.fa-bug, .service-bottom span.fas.fa-bug {
    color: #fd5c63;
}

.steps-reach span.fas.fa-check-square, .service-bottom span.fas.fa-check-square {
    color: #ffc168;
}

.steps-reach {
    position: relative;
}

.join {
    margin: 0;
}

.work-layer {
    background: rgba(0, 0, 0, 0.3);
}

/*-- //how we work --*/

/*-- Services --*/
.services span.fa {
    font-size: 20px;
    background: #dc3545;
    color: #fff;
    width: 60px;
    height: 60px;
    line-height: 58px;
    text-align: center;
    margin-bottom: 5px;
    border-radius: 50%;
}

.services p {
    margin: 0;
    font-size: 16px;
    letter-spacing: .5px;
    color: #666;
    line-height: 28px;
}

.services h4 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

/*-- //Services --*/


/*-- footer --*/
a.move-top span {
    color: #fff;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(102, 102, 102, 0.30);
    line-height: 26px;
    margin: 20px 0;
    border-radius: 50%;
}

footer h3 {
    font-weight: bold;
    font-size: 23px;
    letter-spacing: 1px;
    color: #343a40;
    position: relative;
}

footer {
    background: #fff;
    border: 1px solid #e5e7eb;
}

footer p, footer ul li, footer p a {
    font-size: 16px;
    color: #343a40;
    line-height: 26px;
    letter-spacing: 1px;
}

footer ul li {
    font-size: 16px;
    color: #343a40;
    line-height: 26px;
    letter-spacing: 1px;
    list-style-type: none;
}

footer ul li i, address p i {
    font-size: 14px;
    color: #ccc;
}

.footer-gap {
    padding: 0 2em;
}

address p a {
    font-size: 16px;
    color: #777;
    line-height: 26px;
    letter-spacing: 1px;
}

address p a:hover {
    color: #dc3545;
}

a.facebook {
    font-size: 14px;
    letter-spacing: 1px;
    background: #3b5998;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    box-shadow: 4px 4px #444;
    -webkit-box-shadow: 4px 4px #444;
    -o-box-shadow: 4px 4px #444;
    -moz-box-shadow: 4px 4px #444;
    -ms-box-shadow: 4px 4px #444;
}

a.twitter {
    font-size: 14px;
    letter-spacing: 1px;
    background: #1da1f2;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    box-shadow: 4px 4px #444;
    -webkit-box-shadow: 4px 4px #444;
    -o-box-shadow: 4px 4px #444;
    -moz-box-shadow: 4px 4px #444;
    -ms-box-shadow: 4px 4px #444;
}

.blog-grid-right h5 {
    font-size: 16px;
    color: #777;
    line-height: 26px;
    letter-spacing: 1px;
}

.blog-grid-right h5 a {
    color: #777;
}

.blog-grid-left img {
    border: 2px solid #ebecec;
    padding: .2em;
}

.sub-meta span {
    font-size: 0.8em;
    color: #a9abad;
}

form.register-wthree label {
    line-height: 2.5;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
}

form.register-wthree label span {
    color: #eee;
}

form textarea {
    height: 100px;
    resize: none;
}

form .btn {
    background: #30c39e;
    color: #fff;
    padding: 10px 10px;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

form.register-wthree .form-control {
    letter-spacing: .5px;
}

.timings p {
    border-bottom: 1px dotted #777;
}

.timings p span {
    float: right;
    font-size: 1em;
}

footer ul.social li a {
    color: #777;
    font-size: 15px;
}

footer ul.social li a:hover {
    color: #fff;
}

.copyright p {
    letter-spacing: 1px;
    font-size: 16px;
    color: #1d1e22;
}

.copyright p a {
    color: #1d1e22;
}

.copyright p a:hover {
    color: #fff;
}

.copyright {
    background: #fff;
}

/*-- footer --*/

/*--team--*/
.team-members h4 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 1px;
    color: #333;
}

.team-members span.fa, .team-members span {
    font-size: 16px;
    letter-spacing: .5px;
    color: #888;
}

.team-members span.fa.icon_facebook {
    color: #3b5998;
}

.team-members span.fa.icon_twitter {
    color: #1da1f2;
}

.team-members span.fa.icon_dribbble {
    color: #ea4c89;
}

.team-members span.fa.icon_g_plus {
    color: #dd4b39;
}

ul.social li {
    display: inline-block;
    margin: 5px;
}

.team-desc {
    background: #fff;
    border: 1px solid #eee;
}

/*--//team--*/


/*-- Responsive design --*/
@media screen and (max-width: 1440px) {

}

@media screen and (max-width: 1280px) {
    .banner-text {
        padding: 18vw 0 0;
    }

    .csslider > ul {
        height: 680px;
    }
}

@media screen and (max-width: 1080px) {
    .quotes-info {
        padding: 0 6em;
    }

    .about-grids h4 {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .steps-reach p {
        font-size: 15px;
    }

    .team-members h4 {
        font-size: 20px;
    }

    .banner-text h3 {
        font-size: 55px;
        letter-spacing: 4px;
    }

    .csslider > ul {
        height: 650px;
    }

    .banner-text {
        padding: 22vw 0 0;
        width: 80%;
    }
}

@media screen and (max-width: 1024px) {
    h2.heading, h3.heading {
        font-size: 45px;
    }
}

@media screen and (max-width: 991px) {
    .banner-text h3 {
        font-size: 52px;
        letter-spacing: 3px;
    }

    .banner-text {
        padding: 25vw 0 0;
        width: 90%;
    }

    .navbar {
        padding: 0.5rem 0rem;
    }

    .agileits_w3layouts_about_counter_left h3 {
        font-size: 16px;
        letter-spacing: .5px;
    }

    .quotes-info {
        padding: 0 0em;
    }

    .buttons p {
        color: #333;
    }

    .buttons p span {
        color: #fff;
        background: #dc3545;
    }
}

@media screen and (max-width: 900px) {
    .banner-text h3 {
        font-size: 50px;
        letter-spacing: 2px;
    }
}

@media screen and (max-width: 800px) {
    .banner-text {
        width: 90%;
    }

    .csslider > ul {
        height: 600px;
    }

    .csslider > .arrows {
        width: 99%;
    }
}

@media screen and (max-width: 768px) {

}

@media screen and (max-width: 736px) {
    .banner-text h3 {
        font-size: 47px;
        letter-spacing: 1px;
    }

    .banner-text h6 {
        font-size: 24px;
    }

    .csslider > ul {
        height: 560px;
    }

    h2.heading, h3.heading {
        font-size: 43px;
    }

    .quotes form {
        width: 90%;
    }

    .banner-text {
        width: 100%;
    }

    ul.menu {
        /*
        手机导航有问题
        margin-top: -15px;
        */
    }
}

@media screen and (max-width: 667px) {
    .quotes form {
        width: 100%;
    }

    .csslider > .arrows {
        width: 98%;
    }
}

@media screen and (max-width: 640px) {
    .csslider > ul {
        height: 500px;
    }

    .csslider > .arrows {
        width: 97%;
    }
}

@media screen and (max-width: 600px) {
    ul li .container {
        padding: 0;
    }

    .banner-text h3 {
        font-size: 43px;
    }
}

@media screen and (max-width: 568px) {
    .csslider > ul {
        height: 450px;
    }

    .banner-text {
        width: 80%;
    }
}

@media screen and (max-width: 480px) {
    .agileits_w3layouts_about_counter_left p {
        font-size: 2.5em;
    }

    .csslider > .arrows {
        width: 95%;
    }

    .banner-text h6 {
        font-size: 22px;
    }
}

@media screen and (max-width: 414px) {
    .about-grids h4 {
        font-size: 22px;
        letter-spacing: 0px;
        line-height: 33px;
    }

    h2.heading, h3.heading {
        font-size: 37px;
    }

    .menu .toggle {
        width: 32%;
    }

    .banner-text h3 {
        font-size: 33px;
    }

    .banner-text h6 {
        font-size: 20px;
        letter-spacing: 0px;
    }

    .csslider > .arrows {
        width: 94%;
    }

    .banner-text {
        padding: 35vw 0 0;
        width: 75%;
    }

    .csslider > ul {
        height: 400px;
    }

    .toggle {
        padding: 8px 20px;
    }
}

@media screen and (max-width: 384px) {
    .banner-text h6 {
        font-size: 19px;
    }

    .csslider > .arrows {
        width: 93%;
    }

    h2.heading, h3.heading {
        font-size: 34px;
    }

    .about-grids h4 {
        font-size: 21px;
        line-height: 31px;
    }

    nav a, .menu .toggle, nav ul li ul li .toggle, nav ul ul a, nav ul ul ul a {
        font-size: 15px;
    }

    .toggle {
        padding: 6px 15px;
    }
}

@media screen and (max-width: 320px) {

}

/*-- //Responsive design --*/


#back-div {
    display: none; /* 默认隐藏锚点 */
    position: fixed;
    bottom: 20px;
    right: 20px;
}
