﻿body {
    padding: 0;
    margin: 0;
    background: #FFF;
    font-family: 'Nunito Sans', sans-serif;
}

body a,
body button {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    text-decoration: none;
}

body a:hover,
body button:hover {
    text-decoration: none;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

html {
    scroll-behavior: smooth;
}

body a:focus,
a:hover {
    text-decoration: none;
}

input[type=button], 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;
}

input[type=button]:hover, input[type=submit]:hover {
    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;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
}

p {
    margin: 0;
    padding: 0;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1.9;
    color: #999;
    font-family: 'Nunito Sans', sans-serif;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

a:focus,
a:hover {
    text-decoration: none;
    outline: none
}

/* //Reset Code */

/* colors code */
.text-bl {
    color: #915c31;
}

.text-wh {
    color: #fff;
}

.text-li {
    color: #f8f9fa;
}

.bg-li {
    background: #f8f9fa;
}

.let {
    letter-spacing: 1px;
}

/* //colors code */

/* bottom-to-top */
a.move-top {
    width: 34px;
    height: 34px;
    background: url(../images/move-top.png) no-repeat 0px 0px;
    display: inline-block;
}

/* //bottom-to-top */

/* header */
.main-top {
    position: relative;
}

header {
    position: absolute;
    width: 100%;
    z-index: 9;
}

/* navigation */
/* CSS Document */
.toggle-2,
.toggle,
[id^=drop] {
    display: none;
}

/* Giving a background-color to the nav container. */
nav {
    margin: 0;
    padding: 0;
}


#logo a {
    float: left;
    display: initial;
    font-weight: 700;
    font-size: 40px;
    color: #915c31;
    text-shadow: 2px 5px 3px rgba(0, 0, 0, 0.06);
    padding: 0;
}


/* 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: #fff;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 15px;
    padding: 7px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
    display: inline-block;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}


nav ul li ul li:hover {
    color: #000;
    background: #f8f9fa;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

/* Background color change on Hover */

.menu li a.active,
.menu li a:hover {
    color: #fff;
    background: #915c31;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    top: 36px;
    background: #333;
    padding: 10px;
    border-radius: 4px;
    z-index: 9;
    /* has to be the same number as the "line-height" of "nav a" */
}

/* Display Dropdowns on Hover */
nav ul li:hover>ul {
    display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    width: 170px;
    float: none;
    display: list-item;
    position: relative;
    margin-bottom: 10px;
    border-radius: 4px;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

nav ul ul li:nth-child(4) {
    margin-bottom: 5px;
}

nav ul ul li a {
    color: #fff;
    padding: 5px 10px;
    display: block;
    font-size: 14px;
}

/* 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: '';
}

a.reqe-button {
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
}

/* Media Queries
--------------------------------------------- */
@media(max-width: 800px) {
    nav a {
        font-size: 14px;
    }

    #logo a {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    nav a {
        padding: 6px 9px;
    }
}

@media all and (max-width : 736px) {

    #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;
    }

    /* Stylinf the toggle lable */
    .toggle {
        display: block;
        padding: 8px 14px;
        font-size: 15px;
        text-decoration: none;
        border: none;
        float: right;
        background-color: #fff;
        color: #000;
        border-radius: 4px;
        letter-spacing: 1px;
        cursor: pointer;
        transition: 0.5s all;
        -webkit-transition: 0.5s all;
        -moz-transition: 0.5s all;
        -o-transition: 0.5s all;
        -ms-transition: 0.5s all;
    }

    .menu .toggle {
        float: none;
        text-align: center;
        margin: auto;
        max-width: 105px;
        padding: 5px;
        font-weight: normal;
        font-size: 15px;
        letter-spacing: 1px;
    }

    .toggle:hover {
        color: #fc4242;
        transition: 0.5s all;
        -webkit-transition: 0.5s all;
        -moz-transition: 0.5s all;
        -o-transition: 0.5s all;
        -ms-transition: 0.5s all;
    }

    /* Display Dropdown when clicked on Parent Lable */
    [id^=drop]:checked+ul {
        display: block;
        background: #fff;
        padding: 15px 0;
        text-align: center;
        width: 100%;
    }

    /* 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;
    }

    /* 
    nav ul li ul li .toggle,
    nav ul ul a {
        background-color: #212121;
    } */

    /* Hide Dropdowns by Default */
    nav ul ul {
        float: none;
        position: static;
        color: #fff;
        /* 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" */

    }

    nav a {
        color: #000;
        font-size: 15px;
        padding: 0;
    }

    nav ul ul li a {
        color: #000;
    }

    nav ul ul li a {
        font-size: 15px;
    }

    .menu li a.active,
    .menu li a:hover {
        color: #fc4242;
        background: transparent;
    }
}

@media all and (max-width : 375px) {

    nav a,
    .menu .toggle {
        font-size: 14px;
    }

    .toggle {
        padding: 7px 12px;
        font-size: 14px;
    }
}

/*-- dropdown --*/
#demo {
    margin: 10px 0 0px 0;
    font-family: 'Lato', sans-serif;
}

#demo .wrapper {
    display: inline-block;
    position: relative;
}

#demo .parent {
    height: 100%;
    width: 100%;
    display: block;
    cursor: pointer;
    line-height: 30px;
    height: 30px;
    color: #fff;
    z-index: 2;
    position: relative;
    -webkit-transition: border-radius .1s linear, background .1s linear, z-index 0s linear;
    -webkit-transition-delay: .8s;
    text-align: center;
    font-family: 'Lato', sans-serif;
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    padding-left: 0;
    padding-right: 0;
}

#demo .parent:hover,
#demo .content:hover~.parent {
    -webkit-transition-delay: 0s, 0s, 0s;
}

#demo .content:hover~.parent {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 0;
}

#demo .content {
    position: absolute;
    top: 0;
    display: block;
    z-index: 1;
    height: 0;
    width: 150px;
    padding-top: 30px;
    -webkit-transition: height .5s ease;
    -webkit-transition-delay: .4s;
}

#demo .wrapper:active .content {
    height: 150px;
    z-index: 3;
    -webkit-transition-delay: 0s;
}

#demo .content:hover {
    height: 150px;
    z-index: 3;
    -webkit-transition-delay: 0s;
}


#demo .content ul {
    background: #fff;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

#demo .content ul a {
    text-decoration: none;
    padding: 0;
}

#demo .content li:hover {
    background: #f8f9fa;
}

#demo .content li {
    list-style: none;
    text-align: left;
    color: #999;
    font-size: 16px;
    line-height: 30px;
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
    border-top: 1px solid #eee;
}

#demo .content li:last-of-type {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* //dropdown */
/* //navigation */

/* banner */
.csslider>ul>li {
    min-height: 800px;
}

.csslider>ul>li:first-child {
    background: url(../img/banquet/13.jpeg) no-repeat center;
    background-size: cover;
}

.csslider>ul>li:nth-child(2) {
    background: url(../img/restaurant/4.jpeg) no-repeat top;
    background-size: cover;
}

.csslider>ul>li:last-child {
    background: url(../img/banquet/2.jpeg) no-repeat center;
    background-size: cover;
}

.w3ls_banner_txt {
    margin-top: 21vw;
    max-width: 560px;
}

.w3ls_banner_txt p {
    color: #eee;
    font-size: 18px;
    letter-spacing: 4px;
}

h3.w3ls_pvt-title {
    color: #fff;
    font-weight: bold;
    font-size: 5em;
    text-shadow: 2px 5px 3px rgba(0, 0, 0, 0.06);
}

.w3ls_banner_txt h5 {
    font-weight: 400;
    color: #000;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.button-style {
    padding: 12px 25px;
    border: none;
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    border: 2px solid #fc4242;
    background: #fc4242;
	opacity:0.7;
    text-decoration: none;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

.button-style:hover{
    border: 2px solid #fc4242;
    background: #fc4242;
    color: #fff;
	opacity:1;
}

/* //banner */

/* footer */
footer {
    background: #915c31;
}

/* footer logo */
.logo-2 {
    font-size: 24px!important;
    color: #fff;
    text-shadow: 2px 5px 3px rgba(0, 0, 0, 0.06);
    font-weight: bold;
}

/* //footer logo */
.agileinfo_footer_grid h4 {
    font-size: 24px;
    color: #fff;
    letter-spacing: 1px;
    font-weight:bold;
}

.agileinfo_footer_grid ul li {
    margin-bottom: 1.2em;
    font-size: 14px;
    color: #0c0a0a;
    letter-spacing: 1px;
}

.agileinfo_footer_grid ul li span {
    color: #fff;
}

.agileinfo_footer_grid ul li a {
    color: #0c0a0a;
    text-decoration: none;
}

.agileinfo_footer_grid ul li a:hover {
    color: #fff;
}

.agileinfo_footer_grid1 {
    padding: 0 3px;
}

/* //footer */

/* footer last */
/* copyright */
.w3agile_footer_copy p {
    color: #eee;
    letter-spacing: 2px;
}

.w3agile_footer_copy p a {
    color: #fff;
    text-decoration: none;
}

.w3agile_footer_copy p a:hover {
    color: #fff;
}

/* //copyright */
/* newsletter */
.newsletter-main {
    background: #653711;
}

.newsletter-main form {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter input[type=email] {
    padding: 13px;
    border: none;
    width: 72%;
    background: #fff;
    outline: none;
    font-size: 15px;
    letter-spacing: 1px;
    color: #000;
    border-radius: 4px;
}

.newsletter button {
    width: 20%;
    padding: 13px;
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    background-color: #6c5ce7;
    border: none;
    outline: none;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
	opacity:0.7;
}

.newsletter button:hover {
	opacity:1;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

/* //newsletter */
/* //footer last */

/* about */
.about {
    background: url(../images/bg2.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
}

h3.title {
    font-size: 40px;
}

p.title-sub {
    font-size: 18px;
    color: #333;
    font-weight: 300;
}

.about-grid-main {
    background: #fff;
    padding: 3em;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 1px 4px 24px 3px rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
}

.about-grid-main h4 {
    font-size: 27px;
    color: #fc4242;
    font-weight: 600;
}

.about-grid-main p {
    color: #555;
}

a.button-w3ls {
    color: #6c5ce7;
    font-size: 16px;
    display: inline-block;
    letter-spacing: 1px;
    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.button-w3ls:hover {
    color: #6c5ce7;
    letter-spacing: 3px;
}

/* //about */

/* best in */
.card-body {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

.card-body:hover {
    background: #f7f6f6;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

.right-models .card-body span {
    font-size: 50px;
    color: #6c5ce7;
}

h5.card-title.mt-3 {
    letter-spacing: 1px;
    font-size: 22px;
}

.button-style-3:hover {
	opacity:1;
}

/* //best in */

/* testimonials */
.testi-bg {
    background: url(../images/bg4.jpg) no-repeat top;
    background-size: cover;
    min-height: 500px;
}

.testi-bg-main {
    background: #fc4242;
}

h6.b-w3ltxt {
    font-weight: 600;
    font-size: 24px;
    color: #fff;
    letter-spacing: 1px;
}

.testi-cgrid p {
    max-width: 400px;
    margin: 1em auto 0;
    color: #f7f7f7;
}

.testi-cgrid span {
    color: #000;
    font-size: 1.5em;
}

.testi-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #eee;
    margin: 0 auto;
    border-radius: 50%;
}

.testi-icon span.fa {
    font-size: 1.4em;
}

/* //testimonials */

/* support */
.title h3,
.title h2 {
    font-size: 38px;
    letter-spacing: 1px;
}

.support-grid h5,
.card-title {
    letter-spacing: 1px;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.48);
}

.support-grid span {
    font-size: 60px;
    color: #915c31;
}

a.btn.button-style-2 {
    background: #fc4242;
    color: #fff;
    width: 38%;
    padding: 12px;
    letter-spacing: 1px;
    border-radius: 40px;
    font-size: 15px;
	opacity:0.7;
    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.btn.button-style-2:hover {
	opacity:1;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

/* //support */

/* middle one */
.middle-w3l {
    background: url(../images/2.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
}

.middle-w3l p {
    color: #fff;
    font-size: 40px;
    text-shadow: 2px 5px 3px rgba(0, 0, 0, 0.06);
    line-height: 1.5;
}

.middle-w3l p span {
    font-size: 36px;
    vertical-align: super;
    color: rgba(255, 255, 255, 0.37);
}

/* //middle one */

/* middle two */
.agile-wthree-works {
    background: url(../images/bg5.jpg) no-repeat left;
    background-size: contain;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    -ms-background-size: contain;
}

.grids-w3ls-right-2 h4 {
    font-size: 26px;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* //middle two */

/* services */
.services {
    background: url(../images/bg1.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
}

.abt-block span {
    font-size: 2em;
    color: #fff;
}

.abt-block h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.abt-block p {
    line-height: 1.8;
    margin-top: 1em;
    color: #000;
    letter-spacing: 0.5px;
}

.abt-block {
    padding: 5em 1.5em 3em;
    position: relative;
    border-radius: 10px;
    background: #eee;
}

.serv_bottom {
    background: #6c5ce7;
}

.serv_abs {
    position: absolute;
    top: -41px;
    left: 45px;
    width: 85px;
    height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0px -6px 5px rgb(222, 222, 222);
}

/* //services */

/* inner pages */
.banner_w3lspvt-2 {
    background: url(../img/banquet/4.jpeg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 430px;
}

/* page details */
.breadcrumb li a {
    color: #fff;
    background: #313131;
    padding: 8px 18px;
    display: inline-block;
    border-radius: 25px;
    font-size: 13px;
    letter-spacing: 1px;
}

.breadcrumb-item.active {
    padding-top: .5em;
    font-size: 15px;
    letter-spacing: 1px;
}

/* //page details */

/* gallery */
/* popup */
.popup-effect {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0ms;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
}

.popup-effect:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    background: #fff;
    border-radius: 4px;
    max-width: 750px;
    position: relative;
    margin: 3em auto;
    padding: 3em 2em;
    z-index: 999;
    text-align: center;
}

.popup .close {
    position: absolute;
    top: 5px;
    right: 15px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.popup .close:hover {
    color: #686de0;
}

/* //popup */
/* //gallery */

/* contact page */
/* contact form */
.contact-info p {
    margin: 0 auto;
    width: 84%;
}

.contact-form-inner {
    margin: 0 auto;
    width: 70%;
}

.contact-form .form-control {
    padding: 14px 15px;
    color: #000;
    border: 1px solid #d0cccc;
    font-size: 15px;
    letter-spacing: 1px;
}

.contact-form label {
    font-weight: 700;
    letter-spacing: 1px;
    color: #4e4d4d;
    font-size: 1em;
    font-family: 'Source Sans Pro', sans-serif;
}

.contact-form textarea {
    overflow: auto;
    resize: vertical;
    min-height: 12em;
}

.contact-form button.btn {
    background: #fc4242;
    padding: .9em 6em;
    font-size: 16px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 600;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
	opacity:0.7;
}

.contact-form button.btn:hover {
    background: #fc4242;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -moz-transition: 0.5s all;
	opacity:1;
}

/* //contact form */
/* map */
.map iframe {
    width: 100%;
    min-height: 300px;
    border: none;
    border: 4px solid #eee;
}

/* //map */
/* //contact page */

/* about page */
/* about */
h3.tittle-w3layouts {
    text-shadow: 2px 2px 2px rgba(41, 41, 41, 0.15);
    font-size: 40px;
    font-weight: 200;
}

h4.sub-tittle-w3layouts {
    color: #fc4242;
    font-size: 16px;
}

ul.author li {
    color: #888;
    font-size: 15px;
    letter-spacing: 1px;
}

ul.author li span {
    display: block;
    color: #1d1e1f;
    font-size: 21px;
    font-weight: 600;
}

/* //about */

/* stats */
.middlesection-w3pvt {
    background: url(../images/bg6.jpg) no-repeat right;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
}

p.counter {
    color: #fff;
    font-size: 3em;
    font-weight: 800;
}

h3.title-w3-2 {
    font-size: 34px;
    letter-spacing: 1px;
    color: #212020;
}

p.title-sub-2 {
    font-size: 16px;
    max-width: 700px;
}

/* //stats */

/* team */
.caption {
    text-align: center;
}

.team-text h4 {
    font-size: 26px;
    color: #000;
    letter-spacing: 1px;
    margin: 1.2em 0 .8em;
    font-weight: 600;
}

.caption ul li {
    display: inline-block;
}

.caption ul li:nth-child(2) {
    margin: 0 .3em;
}

.caption ul li a i {
    color: #fff;
    width: 35px;
    height: 35px;
    font-size: 16px;
    line-height: 2.2;
}

.caption ul li a i:hover {
    transform: rotateY(360deg);
    transition: .5s all;
}

.caption ul li a i.f1 {
    background: #3b5998;
}

.caption ul li a i.f2 {
    background: #00aced;
}

.caption ul li a i.f3 {
    background: #F44336;
}

/* //team */
/* //about page*/
/* inner pages */

/* responsive */
@media(max-width: 1680px) {}

@media(max-width: 1600px) {}

@media(max-width: 1440px) {}

@media(max-width: 1366px) {
    .csslider>ul>li {
        min-height: 740px;
    }

    .banner_w3lspvt-2 {
        min-height: 270px;
    }
}

@media(max-width: 1280px) {
    h3.w3ls_pvt-title {
        font-size: 4.5em;
    }

    .middle-w3l p {
        font-size: 36px;
    }
}

@media(max-width: 1080px) {
    .csslider>ul>li {
        min-height: 630px;
    }

    h3.w3ls_pvt-title {
        font-size: 3.8em;
    }

    .w3ls_banner_txt p {
        font-size: 16px;
    }

    .w3ls_banner_txt {
        margin-top: 20vw;
    }

    .middle-w3l p span {
        font-size: 30px;
    }

    .middle-w3l p {
        font-size: 32px;
    }

    .testi-bg {
        min-height: 400px;
    }

    a.btn.button-style-2 {
        width: 46%;
    }

    .agileinfo_footer_grid ul li {
        font-size: 13px;
    }

    .logo-2 a {
        font-size: 36px;
    }

    .banner_w3lspvt-2 {
        min-height: 230px;
    }
    h3.title {
        font-size: 36px;
    }
    p.title-sub-2 {
        font-size: 14px;
    }
    p.counter {
        font-size: 2.5em;
    }
    .team-text h4 {
        font-size: 24px;
        margin: .8em 0 .5em;
    }
}

@media(max-width: 1050px) {
    .agileinfo_footer_grid h4 {
        font-size: 22px;
    }

    .w3agile_footer_copy p {
        font-size: 14px;
    }
}

@media(max-width: 1024px) {}

@media(max-width: 991px) {
    h3.w3ls_pvt-title {
        font-size: 3.6em;
    }

    .button-style {
        font-size: 14px;
    }

    h3.title {
        font-size: 38px;
    }

    p.title-sub {
        font-size: 16px;
    }

    .about-grid-main {
        padding: 2em;
    }

    .about-grid-main h4 {
        font-size: 25px;
    }

    .grids-w3ls-right-2 h4 {
        font-size: 24px;
    }

    .right-models .card-body span {
        font-size: 40px;
    }

    h5.card-title.mt-3 {
        font-size: 17px;
    }

    a.btn.button-style-2 {
        width: 60%;
        font-size: 14px;
    }
}

@media(max-width: 900px) {
    .csslider>ul>li {
        min-height: 580px;
    }
}

@media(max-width: 800px) {
    h3.w3ls_pvt-title {
        font-size: 3.5em;
    }

    .w3ls_banner_txt {
        margin-top: 24vw;
    }

    h3.title {
        font-size: 36px;
    }

    h3.tittle-w3layouts {
        font-size: 34px;
    }

    .banner_w3lspvt-2 {
        min-height: 200px;
    }
}

@media(max-width: 768px) {}

@media(max-width: 736px) {
    .grids-w3ls-right-2 {
        background: rgba(255, 255, 255, 0.85);
        padding: 2em 3em;
    }

    .abt-block {
        margin-top: 4.5em;
    }

    .abt-block span {
        font-size: 1.8em;
    }

    .serv_abs {
        width: 80px;
        height: 80px;
    }

    .middle-w3l p {
        font-size: 28px;
    }

    a.btn.button-style-2 {
        width: 26%;
    }
}

@media(max-width: 667px) {
    .csslider>ul>li {
        min-height: 540px;
    }

    .w3ls_banner_txt p {
        font-size: 15px;
    }

    h3.w3ls_pvt-title {
        font-size: 3.2em;
    }

    .button-style {
        font-size: 13px;
        padding: 11px 22px;
    }

    .w3ls_banner_txt {
        margin-top: 26vw;
    }

    .testi-bg {
        min-height: 360px;
    }
    p.counter {
        font-size: 2.3em;
    }
}

@media(max-width: 640px) {}

@media(max-width: 600px) {
    h3.w3ls_pvt-title {
        font-size: 3em;
    }

    .csslider>ul>li {
        min-height: 510px;
    }

    .agile-wthree-works {
        background-position: left top;
    }
}

@media(max-width: 568px) {
    .csslider>ul>li {
        min-height: 480px;
    }

    #logo a {
        font-size: 36px;
    }

    .about-grid-main {
        padding: 3em;
    }

    h3.title {
        font-size: 34px;
    }

    p.title-sub {
        font-size: 15px;
    }

    .grids-w3ls-right-2 {
        padding: 2em;
        margin: 0 1em;
    }

    .testi-bg {
        min-height: 330px;
    }

    .logo-2 a {
        font-size: 32px;
    }

    .agileinfo_footer_grid h4 {
        font-size: 21px;
    }
}

@media(max-width: 480px) {
    h3.w3ls_pvt-title {
        font-size: 2.6em;
    }

    #logo a {
        font-size: 34px;
    }

    .w3ls_banner_txt p {
        font-size: 14px;
    }

    .csslider>ul>li {
        min-height: 440px;
    }

    .w3ls_banner_txt {
        margin-top: 30vw;
    }

    .grids-w3ls-right-2 h4 {
        font-size: 20px;
    }

    .middle-w3l p {
        font-size: 23px;
    }

    .middle-w3l p span {
        font-size: 24px;
    }

    .testi-bg {
        min-height: 270px;
    }

    a.btn.button-style-2 {
        width: 30%;
    }

    p {
        font-size: 14px;
    }

    .newsletter button {
        width: 26%;
    }

    .newsletter input[type=email] {
        width: 70%;
    }

    .w3agile_footer_copy p {
        font-size: 13px;
    }

    h3.tittle-w3layouts {
        font-size: 30px;
    }

    .banner_w3lspvt-2 {
        min-height: 180px;
    }
    .popup {
        padding: 2.5em 2em 2em;
        margin-left: 1em;
        margin-right: 1em;
    }
    .contact-form button.btn {
        padding: .9em 4em;
        font-size: 15px;
    }
}

@media(max-width: 440px) {
    .about-grid-main {
        padding: 2em;
    }

    a.button-w3ls {
        font-size: 15px;
    }

    .middle-w3l p {
        font-size: 21px;
    }

    .middle-w3l p span {
        font-size: 22px;
    }

    .abt-block {
        margin-top: 3.5em;
    }

    .logo-2 a {
        font-size: 30px;
    }
    .contact-form .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media(max-width: 414px) {
    .csslider>ul>li {
        min-height: 420px;
    }

    h3.title {
        font-size: 32px;
    }

    p.title-sub {
        font-size: 14px;
    }

    .grids-w3ls-right-2 h4 {
        font-size: 19px;
    }

    .serv_abs {
        top: -35px;
        left: 30px;
    }

    .testi-bg {
        min-height: 240px;
    }

    a.btn.button-style-2 {
        width: 36%;
    }

    .newsletter button, .newsletter input[type=email] {
        font-size: 14px;
    }

    h3.tittle-w3layouts {
        font-size: 28px;
    }

    .banner_w3lspvt-2 {
        min-height: 150px;
    }
}

@media(max-width: 384px) {
    .w3ls_banner_txt p {
        font-size: 13px;
        letter-spacing: 3px;
    }

    h3.w3ls_pvt-title {
        font-size: 2.4em;
    }

    .button-style {
        padding: 11px 20px;
    }

    .w3ls_banner_txt {
        margin-top: 36vw;
    }

    .newsletter input[type=email] {
        width: 68%;
    }

    .newsletter button {
        width: 30%;
    }
    p.title-sub-2 {
        font-size: 13px;
    }
    .caption ul li a i {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }
    .map iframe {
        min-height: 250px;
    }
}

@media(max-width: 375px) {
    #logo a {
        font-size: 32px;
    }

    .csslider>ul>li {
        min-height: 410px;
    }

    .testi-bg {
        min-height: 210px;
    }

    .agileinfo_footer_grid1 {
        flex: 0 0 33%;
        max-width: 33%;
    }

    ul.author li span {
        font-size: 18px;
    }

    ul.author li {
        font-size: 13px;
    }
    .team-grid {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .team-grid:nth-child(2){
        margin-top:2em;
    }
}

@media(max-width: 320px) {
    #logo a {
        font-size: 30px;
    }

    .w3ls_banner_txt p {
        font-size: 12px;
    }

    h3.w3ls_pvt-title {
        font-size: 2.2em;
    }

    .button-style {
        padding: 11px 16px;
        font-size: 12px;
    }

    .csslider>ul>li {
        min-height: 380px;
    }

    h3.title {
        font-size: 30px;
    }

    .about-grid-main h4 {
        font-size: 24px;
    }

    .grids-w3ls-right-2 h4 {
        font-size: 18px;
    }

    .grids-w3ls-right-2 {
        padding: 1.5em;
        margin: 0 .5em;
    }

    .right-models .card-body span {
        font-size: 36px;
    }

    h5.card-title.mt-3 {
        font-size: 15px;
    }

    a.btn.button-style-2 {
        width: 45%;
    }

    .newsletter input[type=email], .newsletter button {
        padding: 12px;
        width: 100%;
    }

    .newsletter button {
        margin-top: 1em;
    }

    .w3agile_footer_copy p {
        letter-spacing: 1px;
    }

    h3.tittle-w3layouts {
        font-size: 26px;
    }

    .banner_w3lspvt-2 {
        min-height: 120px;
    }
    h3.title {
        font-size: 28px;
    }
}

/* //responsive */


.csslider1 {
	display: inline-block;
	position: relative;
	/* max-width: 830px; */
	width: 100%;
	/* margin-top: 10px; */
}
.csslider1 > .cs_anchor {
	display: none;
}
.csslider1 > ul {
	position: relative;
	z-index: 1;
	font-size: 0;
	line-height: 0;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
	white-space: nowrap;
}
.csslider1 > ul > div {
	width: 100%;
	visibility: hidden;
	font-size: 0px;
	line-height: 0;
}
.csslider1 > ul > li.img img {
	width: 100%;
}
.csslider1 > ul > li.img {
	font-size: 0pt;
}
.csslider1 > ul > li {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	font-size: 15px;
	font-size: initial;
	line-height: normal;
	white-space: normal;
	vertical-align: top;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
.csslider1 .cs_lnk{
	position: absolute;
	top: -9999px;
	left: -9999px;
	font-size: 0pt;
	opacity: 0;
	filter: alpha(opacity=0);
}
.csslider1 > ul > li.img,
.csslider1 > .cs_arrowprev,
.csslider1 > .cs_arrownext,
.csslider1 > .cs_bullets,
.csslider1 > .cs_play_pause {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}.csslider1 > .cs_arrowprev,
.csslider1 > .cs_arrownext {
	position: absolute;
	top: 50%;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	z-index: 5;
}
.csslider1 > .cs_arrowprev > label,
.csslider1 > .cs_arrownext > label {
	position: absolute;
	text-decoration: none;
	cursor: pointer;
	opacity: 0;
	z-index: -1;
}
.csslider1 > .cs_arrowprev {
	left: 0;
}
.csslider1 > .cs_arrownext {
	right: 0;
}
.csslider1 > .slide:checked ~ .cs_arrowprev > label,
.csslider1 > .slide:checked ~ .cs_arrownext > label {
	opacity: 0;
	z-index: -1;
}
.csslider1 > #cs_slide1_0:checked ~ .cs_arrowprev > label.num2,
.csslider1 > #cs_pause1_0:checked ~ .cs_arrowprev > label.num2,
.csslider1 > #cs_slide1_0:checked ~ .cs_arrownext > label.num1,
.csslider1 > #cs_pause1_0:checked ~ .cs_arrownext > label.num1,
.csslider1 > #cs_slide1_1:checked ~ .cs_arrowprev > label.num0,
.csslider1 > #cs_pause1_1:checked ~ .cs_arrowprev > label.num0,
.csslider1 > #cs_slide1_1:checked ~ .cs_arrownext > label.num2,
.csslider1 > #cs_pause1_1:checked ~ .cs_arrownext > label.num2,
.csslider1 > #cs_slide1_2:checked ~ .cs_arrowprev > label.num1,
.csslider1 > #cs_pause1_2:checked ~ .cs_arrowprev > label.num1,
.csslider1 > #cs_slide1_2:checked ~ .cs_arrownext > label.num0,
.csslider1 > #cs_pause1_2:checked ~ .cs_arrownext > label.num0 {
	opacity: 1;
	z-index: 5;
}
@-webkit-keyframes arrow {
	0%, 33.32333333333334% { opacity: 1; z-index: 5; }
	33.333333333333336%, 100%	{ opacity: 0; z-index: -1; }
}
@-moz-keyframes arrow {
	0%, 33.32333333333334% { opacity: 1; z-index: 5; }
	33.333333333333336%, 100%	{ opacity: 0; z-index: -1; }
}
@keyframes arrow {
	0%, 33.32333333333334% { opacity: 1; z-index: 5; }
	33.333333333333336%, 100%	{ opacity: 0; z-index: -1; }
}
.csslider1 > #cs_play1:checked ~ .cs_arrowprev > label.num2,
.csslider1 > #cs_play1:checked ~ .cs_arrownext > label.num1 {
	-webkit-animation: arrow 12300ms infinite -1000ms;
	-moz-animation: arrow 12300ms infinite -1000ms;
	animation: arrow 12300ms infinite -1000ms;
}
.csslider1 > #cs_play1:checked ~ .cs_arrowprev > label.num0,
.csslider1 > #cs_play1:checked ~ .cs_arrownext > label.num2 {
	-webkit-animation: arrow 12300ms infinite 3100ms;
	-moz-animation: arrow 12300ms infinite 3100ms;
	animation: arrow 12300ms infinite 3100ms;
}
.csslider1 > #cs_play1:checked ~ .cs_arrowprev > label.num1,
.csslider1 > #cs_play1:checked ~ .cs_arrownext > label.num0 {
	-webkit-animation: arrow 12300ms infinite 7200ms;
	-moz-animation: arrow 12300ms infinite 7200ms;
	animation: arrow 12300ms infinite 7200ms;
}
.csslider1 > .slide:checked ~ .cs_arrowprev > label,
.csslider1 > .slide:checked ~ .cs_arrownext > label,
.csslider1 > .pause:checked ~ .cs_arrowprev > label,
.csslider1 > .pause:checked ~ .cs_arrownext > label {
	-webkit-animation: none;
	-moz-animation: none;
	-ms-animation: none;
	-o-animation: none;
	animation: none;
}
.csslider1 > .cs_bullets {
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 6;
	font-size: 0;
	line-height: 8pt;
	text-align: center;
}
.csslider1 > .cs_bullets > div {
	margin-left: -50%;
	width: 100%;
}
.csslider1 > .cs_bullets > label {
	position: relative;
	display: inline-block;
	cursor: pointer;
}
.csslider1 > .cs_bullets > label > .cs_thumb {
	visibility: hidden;
	position: absolute;
	opacity: 0;
	z-index: 1;
	line-height: 0;
	left: -55px;
	top: -48px;
}
.csslider1 > .cs_bullets > label > .cs_thumb > img {
	max-width: none;
}
.csslider1.cs_handle {
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAQAAADZc7J/AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAABwSURBVEjH7ZJBEsAgCAMT/v/n9NCOSqe2oD2yNx1JggB4BCEFWyFASP2KMQE7ywWhe/tTRGCGogLk02tFctiW/SUgaMyQG4PdPzDn31rQbMb8FiAXgvsEJNax1yVlVGAjA93apP3HFhZTGIqiKH7iADB6HxPlHdNVAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE0LTA3LTA3VDEzOjQ5OjEwKzAyOjAwm7WiFAAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNC0wNy0wN1QxMzo0OToxMCswMjowMOroGqgAAAAASUVORK5CYII="), move;
}
.csslider1.cs_handle.cs_grab {
	cursor: -webkit-grabbing;
	cursor: -moz-grabbing;
	cursor: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAQAAADZc7J/AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAABaSURBVEjH7ZMxCkAhDEOT8u9/5TpJ+xWkFse8IYutJgEB8RCHL1qCc90BEFnT6QH7mwgFHBUf8wJyS1TDLuc3vmighx37LZdIth3E5hKj9n6O0HRh+oJCiFcMxRUUDxR1CTMAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTQtMDctMDdUMTM6NDk6MzgrMDI6MDDqf+sOAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE0LTA3LTA3VDEzOjQ5OjM4KzAyOjAwmyJTsgAAAABJRU5ErkJggg=="), move;
}
.csslider1 > ul > li.num0 {
	left: 0%;
}
.csslider1 > ul > li.num1 {
	left: 100%;
}
.csslider1 > ul > li.num2 {
	left: 200%;
}
.csslider1 > #cs_slide1_0:checked ~ ul > li,
.csslider1 > #cs_pause1_0:checked ~ ul > li {
	-webkit-transform: translateX(0%);
	-moz-transform: translateX(0%);
	transform: translateX(0%);
}
.csslider1 > #cs_slide1_1:checked ~ ul > li,
.csslider1 > #cs_pause1_1:checked ~ ul > li {
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	transform: translateX(-100%);
}
.csslider1 > #cs_slide1_2:checked ~ ul > li,
.csslider1 > #cs_pause1_2:checked ~ ul > li {
	-webkit-transform: translateX(-200%);
	-moz-transform: translateX(-200%);
	transform: translateX(-200%);
}
.csslider1 > ul > li {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	opacity: 1;
	-webkit-transition: -webkit-transform 1000ms;
	-moz-transition: -moz-transform 1000ms;
	transition: transform 1000ms;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	transform: scale(1);
}
@-webkit-keyframes slide {
	0%, 25.203252032520325%	{ -webkit-transform: translateX(0%); }
	33.333333333333336%, 58.53658536585366%	{ -webkit-transform: translateX(-100%); }
	66.66666666666667%, 91.869918699187%	{ -webkit-transform: translateX(-200%); }
}
@-moz-keyframes slide {
	0%, 25.203252032520325%	{ -moz-transform: translateX(0%); }
	33.333333333333336%, 58.53658536585366%	{ -moz-transform: translateX(-100%); }
	66.66666666666667%, 91.869918699187%	{ -moz-transform: translateX(-200%); }
}
@keyframes slide {
	0%, 25.203252032520325%	{ transform: translateX(0%); }
	33.333333333333336%, 58.53658536585366%	{ transform: translateX(-100%); }
	66.66666666666667%, 91.869918699187%	{ transform: translateX(-200%); }
}
.csslider1  > #cs_play1:checked ~ ul > li {
	-webkit-animation: slide 20300ms infinite;
	-moz-animation: slide 20300ms infinite;
	animation: slide 20300ms infinite;
}
.csslider1 > #cs_play1:checked ~ ul > li,
.csslider1 > .pause:checked ~ ul > li {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}
/* /calculate autoplay */
.csslider1 > .cs_arrowprev,
.csslider1 > .cs_arrownext {
	top: 0;
	bottom: 0;
	width: 15%;
	opacity: .5;
}
.csslider1 > .cs_arrowprev:hover,
.csslider1 > .cs_arrownext:hover {
	opacity: .9;
}
.csslider1 > .cs_arrowprev {
	left: 0;
	background-image: -webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);
	background-image: linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
	background-repeat: repeat-x;
}
.csslider1 > .cs_arrownext {
	right: 0;
	background-image: -webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);
	background-image: linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
	background-repeat: repeat-x;
}
.csslider1 > .cs_arrowprev > label,
.csslider1 > .cs_arrownext > label {
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
}
.csslider1 > .cs_arrowprev > label span,
.csslider1 > .cs_arrownext > label span {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
}
.csslider1 > .cs_arrowprev > label span {
	float: left;
}
.csslider1 > .cs_arrownext > label span {
	float: right;
}
.csslider1 > .cs_arrowprev > label span:after,
.csslider1 > .cs_arrownext > label span:after {
	display: block;
	position: absolute;
	width: 30px;
	height:30px;
	top: 50%;
	margin-top: -23px;
	color: #fff;
	text-align: center;
	content:'';
}
.csslider1 > .cs_arrowprev > label span:after {
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAACQElEQVR4Xu3av0vDQBQH8Hf5f6zgoGPR1aG5w3/A3clfgwiKdvDH4OTuLu2jU6Ggg4u71dXFUSehUBxycoUUKSpp3l1yL7nOScj3c+9+0DwBNf+JmueHABAqoOYCYQrUvADCIujVFJBSNoUQO0mSLAohPgDgbjwet/v9/qerSvUFQEgp2wBw8EvQtyRJ1nu93tAFgg8AIo7jSzPy/wQ01bCKiM+2EcoGyBI+zfw6Go0ag8FgZBOhTIB5wqeZTxDxqAoAecKb3A+I2OQOkDe8yT1ExAZnAEp4EELcdLvdTa4ApPAA8BVF0VKn03nhCEANbzJvIeK1zfDmWUXsAjbCbyPile3wRQB4Hd41gPfhXQKwCO8KgE14FwCswtsGYBfeJgDL8LYA2Ia3AcA6PBlAKXWqtT4knNCcnfCyvlPuo3Cr1VqJouiRcJwuPTypAqSUtwCwkVV65jovwlMBngBgIQeAN+EDAGH+Qu2nQBzHy0IIswhGOaaBucWLqZB7FzAJlFLHWmvK39SlI5AAzBRSSp1prfdzVkHplUAFmCyknBFsALBGsAXAFsEmwARBSnkOAHtc1gTbAOwQXACwQnAFwAbBJQALBNcAKcIFAOz6uDAWAWALge3H0XTgzRZJqQTWn8etIHBvkJgiZGiL+2u5YN8iQ0WoRJMUBaEybXJ5ECrXKDkPwjsArFWxVfbn7lDbZunpij/TLm9G/b4u7fKEUzLt1qKOwrS3dHh3AHCIy+LRoQJYDJPDlwwV4BCXxaO/AX9kJlA2PGQzAAAAAElFTkSuQmCC');
	background-size:100% auto;
}
.csslider1 > .cs_arrownext > label span:after {
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAACbElEQVR4Xu3av2sUQRQH8O9biFwhNrG0sBYTi0BAsNHuqrvHcY1i/gQrG2NE0USF2PgnaKHVzbtCW5uonfEX/jfnnSxcQETkZnbezBt3t54d9vvZN7PHzSO0/KKW50cH0FVAywW6JdDyAug2QdUl0O/3z/R6vXsArgFYB/AFwDMReW+l8tQAmPkSgDcAzv0Rdk5Ej5xzDywgqAAMBoONqqreATj7j5BPReROboToAOPx+PRsNvsO4PwK4bIjRAdg5n0Ad1cIfzIkK4IGwBGAKx4A9dBsCBoA3wBseAJkQ9AAeAFgJwAgC4IGwEUAnwCcKgEhOkAdmplvAXgeCJC0ElQAlgi3ARxaR1ADKAVBFaAEBHUA6whJACwjJAOwipAUwCJCcgBrCFkALCFkA7CCkBUgEsJ9EXkY+oszO0AEhJ9EtO2cOw5BMAEQAeG1iFwvGqAhwrGIbHUAAQL/xRJYLBavptPpjYD8No7GmLnJfwezqqq2J5PJ5yIBGoavM++JyEFI+PqerEugaXgi2nfO1WePwVc2AAvhs1WAlfBZACyFTw7QNDyAAxHZC17wf7kx2R5gMXyyCrAaPgmA5fDqANbDqwJECP9YRHwaLYL2RpVNMMLhaJLwKhWwbJCqj8fXgl4JkCy8CsBwOHxJRDdLCK8CwMw/AFzwBSCiJ865Xd/7mo6Pvgcw80cAl30eLFd4rQrwapPLGV4FwKdRMnd4FYB60lVaZS2EVwOoJx6NRpvz+fxtK5ulTzbA39rlry7b5b8S0aFz7oPPJqk5NvpXQPNhNebuADRUS5qzq4CS3pbGs3YVoKFa0pytr4Bf9TICUGmBTvkAAAAASUVORK5CYII=');
	background-size:100% auto;
}
.csslider1 > .cs_bullets {
	bottom: 20px;
	width: 70%;
	left: 15%;
}
.csslider1 > .cs_bullets > label {
	margin: 0 2px;
	padding: 5px;
	border-radius: 50%;
	background: transparent;
	-webkit-box-shadow: inset 0 0 0 1px #fff;
	box-shadow: inset 0 0 0 1px #fff;
}
.csslider1 > .cs_bullets > label > .cs_thumb {
	border: 3px solid #fff;
	margin-top: -13px;
	-webkit-transition: opacity .3s, visibility .3s;
	-moz-transition: opacity .3s, visibility .3s;
	transition: opacity .3s, visibility .3s;
}
.csslider1 > .cs_bullets > label > .cs_thumb:before {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	left: 50%;
	margin-left: -5px;
	bottom: -10px;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 7px solid #fff;
}
.csslider1 > .cs_bullets > label:hover > .cs_thumb {
	opacity: 1;
	visibility: visible;
}
.csslider1 > #cs_slide1_0:checked ~ .cs_bullets > label.num0,
.csslider1 > #cs_pause1_0:checked ~ .cs_bullets > label.num0,
.csslider1 > #cs_slide1_1:checked ~ .cs_bullets > label.num1,
.csslider1 > #cs_pause1_1:checked ~ .cs_bullets > label.num1,
.csslider1 > #cs_slide1_2:checked ~ .cs_bullets > label.num2,
.csslider1 > #cs_pause1_2:checked ~ .cs_bullets > label.num2 {
	background: #fff;
	padding: 6px;
	-webkit-box-shadow: none;
	box-shadow: none;
}
@-webkit-keyframes bullet {
	0%, 33.32333333333334%	{
		-webkit-box-shadow: none;
		background: #fff;
		padding: 6px;
	}
	33.333333333333336%, 100% {
		-webkit-box-shadow: inset 0 0 0 1px #fff;
		background: transparent;
		padding: 5px;
		margin-bottom: 0;
	}
}
@-moz-keyframes bullet {
	0%, 33.32333333333334%	{
		-moz-box-shadow: none;
		background: #fff;
		padding: 6px;
	}
	33.333333333333336%, 100% {
		-moz-box-shadow: inset 0 0 0 1px #fff;
		background: transparent;
		padding: 5px;
		margin-bottom: 0;
	}
}
@keyframes bullet {
	0%, 33.32333333333334%	{
		box-shadow: none;
		background: #fff;
		padding: 6px;
	}
	33.333333333333336%, 100% {
		box-shadow: inset 0 0 0 1px #fff;
		background: transparent;
		padding: 5px;
		margin-bottom: 0;
	}
}
.csslider1 > #cs_play1:checked ~ .cs_bullets > label.num0 {
	-webkit-animation: bullet 12300ms infinite -1000ms;
	-moz-animation: bullet 12300ms infinite -1000ms;
	animation: bullet 12300ms infinite -1000ms;
}
.csslider1 > #cs_play1:checked ~ .cs_bullets > label.num1 {
	-webkit-animation: bullet 12300ms infinite 3100ms;
	-moz-animation: bullet 12300ms infinite 3100ms;
	animation: bullet 12300ms infinite 3100ms;
}
.csslider1 > #cs_play1:checked ~ .cs_bullets > label.num2 {
	-webkit-animation: bullet 12300ms infinite 7200ms;
	-moz-animation: bullet 12300ms infinite 7200ms;
	animation: bullet 12300ms infinite 7200ms;
}
.csslider1 > #cs_play1:checked ~ .cs_bullets > label > .cs_point,
.csslider1 > .pause:checked ~ .cs_bullets > label > .cs_point {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}
.csslider1 > .slide:checked ~ .cs_bullets > label > .cs_point,
.csslider1 > .pause:checked ~ .cs_bullets > label > .cs_point {
	-webkit-animation: none;
	-moz-animation: none;
	-ms-animation: none;
	-o-animation: none;
	animation: none;
}
/* ------------- Play ------------- */
.csslider1 > .cs_play_pause{display:block;}
.csslider1 > .cs_play_pause {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
}
.csslider1 > .cs_play_pause > label {
  cursor: pointer;
}
.csslider1 > #cs_play1:checked ~ .cs_play_pause > .cs_pause,
.csslider1 > .slide:checked ~ .cs_play_pause > .cs_play,
.csslider1 > .pause:checked ~ .cs_play_pause > .cs_play {
  display: block;
  z-index: 5;
}
.csslider1 > #cs_play1:checked ~ .cs_play_pause > .cs_play,
.csslider1 > .slide:checked ~ .cs_play_pause > .cs_pause,
.csslider1 > .pause:checked ~ .cs_play_pause > .cs_pause {
  display: none;
  z-index: -1;
}
@-webkit-keyframes pauseChange {
  0%, 33.32333333333334% { opacity: 1; z-index: 5; }
  33.333333333333336%, 100%  { opacity: 0; z-index: -1; }
}
@keyframes pauseChange {
  0%, 33.32333333333334% { opacity: 1; z-index: 5; }
  33.333333333333336%, 100%  { opacity: 0; z-index: -1; }
}
.csslider1 > #cs_play1:checked ~ .cs_play_pause > .cs_pause.num0 {
  opacity: 0;
  z-index: -1;
  -webkit-animation: pauseChange 10800ms infinite -1900ms;
  animation: pauseChange 10800ms infinite -1900ms;
}
.csslider1 > #cs_play1:checked ~ .cs_play_pause{display:none;}
.csslider1 > #cs_play1:checked ~ .cs_play_pause > .cs_pause.num1 {
  opacity: 0;
  z-index: -1;
  -webkit-animation: pauseChange 10800ms infinite 1700ms;
  animation: pauseChange 10800ms infinite 1700ms;
}
.csslider1 > #cs_play1:checked ~ .cs_play_pause > .cs_pause.num2 {
  opacity: 0;
  z-index: -1;
  -webkit-animation: pauseChange 10800ms infinite 5300ms;
  animation: pauseChange 10800ms infinite 5300ms;
}
.csslider1 > .slide:checked ~ .cs_play_pause > .cs_pause,
.csslider1 > .pause:checked ~ .cs_play_pause > .cs_pause {
  -webkit-animation: none;
  animation: none;
}
/* ------------- Play Pause CSS ------------- */
.csslider1{position:relative}
.csslider1 > .slide:checked ~ .cs_play_pause > .cs_play{
	display: block;
	background: rgba(0,0,0,0.5);
	z-index: 5;
	color: #fff;
	padding: 5px;
	font-family: arial;
	font-size: 9px;
}
.csslider1 > .slide:checked ~ .cs_play_pause > .cs_play:hover{ background: rgba(0,0,0,1);}
.csslider1 > .cs_play_pause {
	position: absolute;
	bottom: 0;
	z-index: 5;
	margin-right: 0;
	z-index: 111;
}