/*--


Author: W3layouts
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
--*/
/* Reset Code */
body {
    padding: 0;
    margin: 0;
    background: #FFF;
    font-family: 'Lato', sans-serif;
}

body button,
.btn,
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;
}

.btn:hover,
body button:hover {
    opacity: .8;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

body a:hover {
    color: #fff;
    opacity: .8;
    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;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.9;
    color: #999;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
}

/* //Reset Code */
/* colors code */
.text-bl {
    color: #343a40;
}

.text-wh {
    color: #fff;
}

.text-li {
    color: #f8f9fa;
}

.bg-li {
    background: #f8f9fa;
}

.bg-wh {
    background: #fff;
}

.let {
    letter-spacing: 1px;
}

/* //colors code */
/* bottom-to-top */
a.move-top {
    position: fixed;
    bottom: 1.5%;
    right: 2%;
    z-index: 0;
}

a.move-top span {
    color: #fc636b;
    font-size: 30px;
}

/* //bottom-to-top */
/* header */
header {
    background: #fc636b;
}

/* 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: 600;
    font-size: 35px;
    color: #fff;
    text-shadow: 2px 5px 3px rgba(0, 0, 0, 0.06);
}

/* 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;
    margin: 0 12px;
    letter-spacing: 2px;
    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;
}

/* Background color change on Hover */
.menu li a:hover {
    color: #fff;
    opacity: .8;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    top: 1px;
    background: #333;
    padding: 10px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    -moz-border-radius: 4px;
    z-index: 9;
    text-align: center;

    /* 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;
}

nav ul ul li a {
    color: #fff;
    display: block;
    font-size: 14px;
    margin: 10px 0;
    letter-spacing: 1px;
}

/* 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: 1px;

    /* 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 (max-width: 1280px) {
    nav a {
        font-size: 14px;
    }
}

@media all and (max-width : 991px) {
    #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 12px;
        font-size: 14px;
        text-decoration: none;
        border: none;
        float: right;
        background-color: #fff;
        color: #000;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -o-border-radius: 4px;
        -ms-border-radius: 4px;
        -moz-border-radius: 4px;
        letter-spacing: 1px;
        margin-bottom: 0;
        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: 115px;
        padding: 5px;
        font-weight: normal;
        font-size: 14px;
        letter-spacing: 2px;
        background: transparent;
        color: #fff;
    }

    .toggle:hover {
        opacity: .8;
        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;
        padding: 15px 0;
        text-align: center;
        width: 100%;
    }

    nav ul {
        float: right;
    }

    /* Change menu item's width to 100% */
    nav ul li {
        display: block;
        width: 100%;
    }

    nav a:hover,
    nav ul ul ul a {
        background-color: transparent;
    }

    /* 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 li a {
        letter-spacing: 2px;
    }

    nav ul ul ul li {
        position: static;

        /* has to be the same number as the "width" of "nav ul ul li" */
    }

    .menu li.active a,
    .menu li a:hover {
        color: #fff;
        opacity: .8;
    }

    nav a {
        font-size: 14px;
        display: block;
        margin: 8px 0;
    }

    a.reqe-button {
        padding: 12px 20px;
        font-size: 13px;
        margin: 0 8px;
    }
}

@media all and (max-width : 330px) {
    nav ul li {
        display: block;
        width: 94%;
    }
}

/* dropdown */
#demo {
    margin: 10px 0 0px 0;
}

#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;
    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: 1px;
    -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 {
    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 */
a.reqe-button {
    color: #fff;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 9px 20px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    -moz-border-radius: 4px;
    font-size: 14px;
    display: inline;
    text-transform: uppercase;
}

/* //heaser */
/* gallery */
.gal-img img {
    padding: 10px;
}

/* 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;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    -moz-border-radius: 4px;
    max-width: 430px;
    position: relative;
    margin: 8em auto;
    padding: 3em 2em;
    z-index: 999;
    text-align: center;
}

.popup .close {
    position: absolute;
    top: 1px;
    right: 15px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.popup .close:hover {
    color: #45d5c0;
}

/* //popup */
/* //gallery */
/* banner */
.banner {
    background: url(../images/banner.jpg) center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.banner_text_wthree_pvt {
    padding: 15vw 0;
}

button.btn.bg-theme {
    letter-spacing: 1px;
}

.bg-theme {
    background: #11d491;
    color: #fff;
}

.bg-theme1 {
    background: #ffffff !important;
    color: #000 !important;
}

.banner-bottom-w3ls {
    position: absolute;
    bottom: -200px;
    left: 14%;
    width: 72%;
}

.bb-img h3 {
    text-transform: capitalize;
    font-size: 1.2em;
    text-align: center;
    margin: 1em 0 0;
    color: #000;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}

.align-w3-abt {
    padding-top: 1px;
    padding-bottom: 78px;
}

.wthree-link-bnr {
    padding: 4px 25px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    background: #000;
    border: 1.5px solid #ffffff;
    text-transform: uppercase;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    -moz-border-radius: 0px;
}

button.btn.wthree-link-bnr:hover {
    background: #fff;
    color: #000;
}

p.bnr-txt {
    width: 50%;
    color: #eee;
    font-size: .9em;
    margin: 0.5em 0 1.2em;
    line-height: 2;
}

button.wthree-link-bnr:hover {
    background: #000;
    color: #fff;
}

h3.home-banner-w3ls {
    color: #fff;
    font-size: 5.5em;
    line-height: -79.6px;
    text-transform: capitalize;
    width: 70;
    font-weight: 700;
    word-spacing: 4px;
    letter-spacing: 0px;
    text-align: left;
    font-variant: normal;
    font-style: italic;
    margin-top: 0px;
}

input.serach-input {
    padding: 10px 12px;
    border: none;
    letter-spacing: 1px;
    font-size: 14px;
    width: 100%;
}

button.btn.bg-theme.button-w3 {
    border-radius: 0;
    border: none;
    font-size: 15px;
    padding: 11px 20px;
}

form.d-flex.serching-styles-w3pvt {
    max-width: 420px;
}

/* inner banner */
.inner-banner-w3ls {
    background: url(../images/IRIS/IRIS-01.jpg) no-repeat center;
    background-size: cover;
    min-height: 300px;
    position: relative;
    z-index: 0;
}

li.breadcrumb-item a {
    color: #000;
}

.breadcrumb-item.active {
    color: #000000;
    text-transform: capitalize;
    font-weight: 600;
}

/*-- //popup --*/
/*--/banner --*/
/*--------------------------------------------------------------------------------/slider--






/*----------------------------------------------------------------------------------------------------------*/
html,
body {
    padding: 0;
    margin: 0;
    background: #fff;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
}

body a {
    outline: 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;
    text-decoration: none;
}

body a:hover {
    text-decoration: none;
}

body a:focus,
a:hover {
    text-decoration: none;
}

.clear {
    clear: both;
}

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;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
}

select,
input[type="email"],
input[type="text"],
input[type=password],
input[type="button"],
input[type="submit"],
textarea {
    font-family: 'Roboto', sans-serif;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    letter-spacing: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
}

p {
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
}

ul {
    margin: 0;
    padding: 0;
}

/*--nav bar-Code --*/
.banner-up {
    position: relative;
}

.header-w3layouts {
    position: absolute;
    top: 1px;
    z-index: 99;
    left: 0px;
    width: 100%;
}

.nav > li {
    text-align: center;
}

/*-- nav --*/
.header-bar {
    border: 1px solid #fff;
    background: #000008;
    padding: 0em 1em;
}

.navbar-default {
    background: none;
    border: none;
}

.navbar {
    margin-bottom: 0;
}

.navbar-collapse {
    padding: 0;
}

.navbar-right {
    margin-right: 0;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: rgb(44, 190, 255);
    background: rgba(255, 255, 255, 0);
}

.navbar-default .navbar-nav > .active > a:before {
    background: #ff2d37;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
}

.navbar-default .navbar-nav > li > a {
    color: #fff;
    letter-spacing: 2px;
    padding: 5px 14px;
    margin: 0 4px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.navbar-nav > li > a {
    text-transform: uppercase;
}

.navbar-default .navbar-nav > li > a:hover {
    color: rgb(44, 190, 255);
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.navbar-default .navbar-nav > li > a:focus {
    color: rgb(255, 255, 255);
    outline: none;
}

nav.navbar.navbar-default {
    background: none;
    padding: 0em 0em 1em;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
    color: #262c38;
    background: none;
}

.navbar-nav {
    margin-top: 1px;
}

/*.navbar-default .navbar-nav > li > a {
  */
.navbar-default .navbar-nav  > .active.open > a:focus {
    background: transparent;
    color: #fff;
}

a.navbar-brand {
    padding: 0;
    font-size: 1em;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px rgba(74, 76, 76, 0.13);
    line-height: inherit;
}

h1 a.navbar-brand {
    font-size: 56px;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 2px;
}

a.navbar-brand i {
    color: #ff2d37;
}

/*.navbar-default .navbar-brand {
    color: #131212;
	font-size:50px;
}*/
/*h1 a.navbar-brand span {
    color:rgba(230, 0, 79, 0.9);	
}*/
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    float: left !important;
    margin-left: 4em;
}

/*-- //nav --*/
/*-- //nav bar-Code --*/
/*--banner Slider --*/
/*-- Slider --------------------------------------------------------------------------------------------*/
.w3-oneimg {
    background: url(../images/a1.jpg);
}

.w3-twoimg {
    background: url(../images/a2.jpg);
}

.w3-threeimg {
    background: url(../images/b3.jpg);
}

/*--banner Slider --*/
/*-- Slider --------------------------------------------------------------------------------------------*/
.w3-oneimg,
.w3-twoimg,
.w3-threeimg {
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 800px;
}

.rslides {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}

.rslides li {
    -webkit-backface-visibility: hidden;
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
    top: 0;
}

.rslides li:first-child {
    position: relative;
    display: block;
    float: left;
}

.rslides img {
    display: block;
    height: auto;
    float: left;
    width: 100%;
    border: 0;
}

/*-- //banner Slider --*/
.rslides {
    margin: 0px;
}

#slider2,
#slider3 {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    margin: 0 auto;
}

.rslides_tabs {
    list-style: none;
    padding: 0;
    background: rgba(0,0,0,.25);
    box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0);
    -moz-box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0);
    font-size: 18px;
    list-style: none;
    margin: 0 auto 50px;
    max-width: 540px;
    padding: 10px 0;
    text-align: center;
    width: 100%;
}

.rslides_tabs li {
    display: inline;
    float: none;
    margin-right: 1px;
}

.rslides_tabs a {
    width: auto;
    line-height: 20px;
    padding: 9px 20px;
    height: auto;
    background: transparent;
    display: inline;
}

.rslides_tabs li:first-child {
    margin-left: 0;
}

.rslides_tabs .rslides_here a {
    background: rgba(255,255,255,.1);
    color: #fff;
    font-weight: bold;
}

a {
    color: #fff;
    text-decoration: none;
}

/* Callback example */
/*.events {
  list-style: none;
  }*/
.callbacks_container {
    position: relative;
    float: left;
    width: 100%;
}

.callbacks {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}

.callbacks li {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.callbacks img {
    display: block;
    position: relative;
    z-index: 1;
    height: auto;
    width: 100%;
    border: 0;
}

/*.callbacks .caption {
  display: block;
  position: absolute;
  z-index: 2;
  font-size: 20px;
  text-shadow: none;
  color: #fff;
  background: #000;
  background: rgba(0,0,0, .8);
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 20px;
  margin: 0;
  max-width: none;
  }*/
.slider-info {
    background: rgba(0, 0, 0, 0);
    color: #fff;
    z-index: 999;
    text-align: left;
    padding-top: 25%;
}

.slider-info h4 {
    font-weight: 600;
    color: #fff;
    font-size: 6em;
    letter-spacing: 3px;
}

.slider-info p {
    font-size: 25px;
    letter-spacing: 4px;
    padding: 16px 0px;
    color: #fff;
}

.w3layouts_more-buttn a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 2px;
    background-color: rgb(44, 190, 255);
    outline: none;
    padding: 10px 22px;
    border: 2px solid rgb(44, 190, 255);
}

.w3layouts_more-buttn a:hover {
    background: #fff;
    color: #000;
}

span.home-banner {
    color: rgb(66, 90, 255);
    font-weight: 100;
}

.callbacks_nav {
    position: absolute;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    top: 0%;
    left: 0;
    opacity: 0.7;
    z-index: 3;
    text-indent: -9999px;
    overflow: hidden;
    text-decoration: none;
    height: 53px;
    width: 53px;
    background: rgba(230, 230, 230, 0) url("../images/left-arrow.png") no-repeat left top;
    margin-top: 0px;
}

.callbacks_nav:active {
    opacity: 1.0;
}

.callbacks_nav.next {
    left: auto;
    background: rgba(230, 230, 230, 0)  url("../images/right-arrow.png") no-repeat 0px 0px;
    background-position: right top;
    right: 0;
}

@import url(//fonts.googleapis.com/earlyaccess/notosanstc.css);

body {
    font-family: 'Noto Sans TC', sans-serif;
}

/*#slider3-pager a {
  display: inline-block;
}


@import url(//fonts.googleapis.com/earlyaccess/notosanstc.css);
body{
  font-family: 'Noto Sans TC', sans-serif;
}


#slider3-pager img {
  float: left;
}

#slider3-pager .rslides_here a {
  background: transparent;
  box-shadow: 0 0 0 2px #666;
}

#slider3-pager a {
  padding: 0;
}--*/
/*-- modal-- */
img {
    width: 100%;
}

.out-info p {
    font-size: 15px;
    letter-spacing: 2px;
    color: #000;
    padding: 10px;
    line-height: 27px;
}

h4.modal-title {
    text-align: center;
    font-size: 32px;
    color: rgb(44, 190, 255);
    letter-spacing: 2px;
}

.modal {
    z-index: 9999;
}

/*--// modal-- */
/*--about-- */
.about-top-grid h2 {
    color: rgb(44, 190, 255);
    font-size: 30px;
    margin: 0;
    font-weight: 600;
}

.about-top-grid p {
    margin: 1em 0 0 0;
    color: #000;
    font-size: 16px;
    line-height: 31px;
    letter-spacing: 1.5px;
}

.border-line {
    background: #0b98b9;
    width: 41%;
    height: 2px;
    margin: 1em 0;
}

/*-- Stats --*/
.stats-cout {
    margin-top: 2em;
}

.stats-grid {
    text-align: left;
    margin: 0 auto;
    padding-left: 0px;
}

.counter {
    font-size: 50px;
    margin: 0;
    color: #3798df;
    letter-spacing: 5px;
}

.stats-grid h4 {
    font-size: 23px;
    letter-spacing: 2px;
    margin-top: 5px;
    color: #000;
}

/*-- //Stats --*/
/*--video--*/
.pope {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.banner-agileits-btm {
    background: url(../images/video.jpg)no-repeat 0px 0px;
    background-size: cover;
    padding: 0;
    min-height: 395px;
    text-align: center;
}

.button {
    padding: 11em 0em 0em;
}

.button a {
    padding: 16px 19px;
    top: 10em;
    left: 26.5em;
    display: inline-block;
    background: rgb(44, 190, 255);
    border-radius: 55%;
    color: #ffffff;
    outline: none;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
}

.button a:hover {
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
}

.button span {
    font-size: 35px;
    top: 2px;
}

/*--// about-- */
/*--Services-- */
span.banner-icon {
    color: rgb(44, 190, 255);
    background: rgb(255, 255, 255);
    font-size: 50px;
    line-height: 108px;
    border: 2px solid rgb(44, 190, 255);
    width: 114px;
    height: 114px;
    text-align: center;
    border-radius: 50%;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

.its-banner-grid h4 {
    font-size: 24px;
    color: rgb(0, 0, 0);
    font-weight: 600;
    text-align: left;
    letter-spacing: 2px;
}

.its-banner-grid p {
    margin-top: 1px;
    text-align: left;
    line-height: 28px;
    font-size: 16px;
    color: rgb(142, 139, 139);
    letter-spacing: 1.5px;
}

span.banner-icon:hover {
    background: #222;
    transform: rotateY(360deg);
    transition: .5s all;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    -ms-transition: .5s all;
}

.its-banner-grid:nth-child(3),
.its-banner-grid:nth-child(4) {
    margin-top: 1px;
}

/*--responsive--*/
@media (max-width:1920px){
}

@media (max-width:1680px){
}

@media (max-width:1600px){
}

@media screen and ()
@media (max-width:1440px){
    .w3-oneimg,
    .w3-twoimg,
    .w3-threeimg {
        min-height: 729px;
    }
}

@media (max-width:1366px){
    .w3-oneimg,
    .w3-twoimg,
    .w3-threeimg {
        min-height: 719px;
        padding-top: 1px;
    }

    .slider-info {
        margin-top: 1em;
    }
}

@media (max-width:1280px){
    .slider-info h4 {
        font-size: 5em;
    }

    .about,
    .services,
    .contact,
    .team,
    .testimonials,
    .gallery,
    .blog {
        padding: 4em 0;
    }

    .title {
        margin-bottom: 33px;
    }

    .slider-info {
        padding-left: 30px;
    }
}

@media (max-width:1080px){
    .navbar-default .navbar-nav > li > a {
        padding: 5px 8px;
    }

    .navbar-default .navbar-collapse,
    .navbar-default .navbar-form {
        margin-left: 1em;
    }

    .w3-oneimg,
    .w3-twoimg,
    .w3-threeimg {
        min-height: 578px;
    }

    .slider-info {
        margin-top: 1em;
    }

    h1 a.navbar-brand {
        font-size: 52px;
    }

    .slider-info h4 {
        font-size: 4.5em;
    }

    .banner-agileits-btm {
        min-height: 459px;
    }

    .white-shadow {
        padding-left: 37px;
    }

    span.banner-icon {
        font-size: 44px;
        line-height: 94px;
        width: 102px;
        height: 102px;
    }

    .overlay {
        top: 70%;
    }

    .team-details {
        top: 32%;
    }

    .test-review p {
        font-size: 15px;
    }

    .map-grid iframe {
        height: 312px;
    }

    .footer_grid_left p,
    .footer_grid_left p a {
        font-size: 15px;
    }

    .button {
        padding: 14em 0em 0em;
    }
}

@media (max-width:1050px){
    .about-top-grid p {
        font-size: 15px;
    }

    .counter {
        font-size: 45px;
    }

    .about-top-grid h2 {
        font-size: 28px;
    }

    .banner-agileits-btm {
        min-height: 414px;
    }
}

@media (max-width:1024px){
    .w3-oneimg,
    .w3-twoimg,
    .w3-threeimg {
        min-height: 558px;
    }

    .slider-info h4 {
        font-size: 4.2em;
    }

    .slider-info p {
        font-size: 22px;
        padding: 14px 0px;
    }

    .title {
        margin-bottom: 30px;
    }

    .its-banner-grid h4 {
        font-size: 22px;
    }

    .its-banner-grid:nth-child(3),
    .its-banner-grid:nth-child(4) {
        margin-top: 1px;
    }

    .test-name h5 {
        font-size: 22px;
    }

    .map-grid iframe {
        height: 278px;
    }

    h1 a.navbar-brand {
        font-size: 48px;
    }

    .title {
        font-size: 54px;
    }

    span.banner-icon {
        font-size: 40px;
        line-height: 89px;
        width: 94px;
        height: 94px;
    }

    .white-shadow {
        padding-left: 27px;
    }
}

@media (max-width:991px){
    .navbar-default .navbar-collapse,
    .navbar-default .navbar-form {
        margin-left: 0em;
    }

    .navbar-default .navbar-nav > li > a {
        font-size: 13px;
        padding: 5px 2px;
        letter-spacing: 1.5px;
    }

    h1 a.navbar-brand {
        font-size: 42px;
        padding-top: 10px;
        letter-spacing: 1px;
    }

    .cd-header-buttons {
        right: 0px;
    }

    .w3layouts_more-buttn a {
        padding: 9px 18px;
    }

    .banner-agileits-btm {
        margin: 32px 0px 0px;
    }

    .button {
        padding: 12em 0em 0em;
    }

    .white-shadow {
        padding-left: 0px;
    }

    .stats-cout {
        margin-top: .4em;
    }

    .left-icon-grid,
    .its-banner-grid h4,
    .its-banner-grid p {
        text-align: center;
    }

    span.banner-icon {
        margin-bottom: 15px;
    }

    .blog-info-w3layouts {
        margin-top: 1em;
        padding: 0px;
        text-align: center;
    }

    .blog-img {
        padding: 0px;
    }

    .right-side:nth-child(1) {
        margin-bottom: 21px;
    }

    .blog-grid-w3-agileits {
        margin-bottom: 2em;
    }

    .blog-img1-agileits-w3layouts a,
    .blog-img2-agileits-w3layouts a {
        min-height: 471px;
    }

    .team-details {
        top: 25%;
    }

    .team-wrap:nth-child(3),
    .team-wrap:nth-child(4) {
        margin-top: 20px;
    }

    .test-name h5 {
        margin-top: 20px;
    }

    .footer_grid_left p,
    .footer_grid_left p a {
        font-size: 14px;
    }

    .styled-input,
    .styled-input:nth-child(2) {
        padding-left: 0px;
        margin: 1.5em 0 0em;
    }

    .styled-input:nth-child(1) {
        padding-right: 0px;
    }

    .contact textarea {
        min-height: 7em;
    }

    footer p ,
    .buttom-social-grids {
        text-align: center;
    }

    footer p {
        padding: 0em;
    }

    .contact input[type="submit"] {
        padding: 0.5em 2.5em;
    }

    span.banner-icon {
        font-size: 34px;
        line-height: 75px;
        width: 79px;
        height: 79px;
    }

    .about-top-grid {
        padding: 0px;
    }

    .buttom-social-grids ul li {
        width: 36px;
        height: 36px;
        line-height: 34px;
    }

    .navbar-default .navbar-nav > li > a {
        font-size: 12px;
        padding: 5px 4px;
    }
}

@media (max-width:900px){
    .slider-info h4 {
        font-size: 3.7em;
    }

    .w3-oneimg,
    .w3-twoimg,
    .w3-threeimg {
        min-height: 522px;
    }

    .slider-info {
        margin-top: 1em;
    }

    .slider-info p {
        font-size: 19px;
    }

    .counter {
        font-size: 38px;
    }

    .stats-grid h4 {
        font-size: 20px;
    }

    .map-grid iframe {
        height: 253px;
    }

    h1 a.navbar-brand {
        font-size: 39px;
    }
}

@media (max-width:800px){
    .w3-oneimg,
    .w3-twoimg,
    .w3-threeimg {
        min-height: 495px;
    }

    .about-top-grid h2 {
        font-size: 27px;
    }

    .title {
        font-size: 51px;
        margin-bottom: 25px;
    }

    .its-banner-grid p {
        margin-top: 1px;
    }

    h6.team-title {
        margin: 18px 0 7px;
    }

    .contact-icons h5 {
        font-size: 27px;
    }

    .callbacks_nav {
        top: 56%;
    }

    .agileits_w3layouts_gallery_grid1.hover14 {
        padding: 0.5em 0;
    }

    .agileits_w3layouts_gallery_grid {
        padding: 0 .5em;
    }
}

@media (max-width:768px){
    .blog-grid-w3-agileits {
        margin-bottom: 1em;
    }

    .textagile {
        padding: 0px;
    }

    .test-review p {
        font-size: 14px;
    }
}

@media (max-width:767px){
    .navbar-nav {
        margin: 0px;
    }

    .navbar-default .navbar-collapse,
    .navbar-default .navbar-form {
        float: none !important;
        width: 100%;
        margin: 0px;
    }

    .cd-search {
        top: 14px;
    }

    .cd-header-buttons {
        top: -42px;
    }

    .navbar-default .navbar-nav > li > a {
        padding: 9px 2px;
    }

    .navbar-toggle {
        position: relative;
        padding: 9px 10px;
        top: 5px;
        margin-right: 60px;
        background-color: transparent;
        background-image: none;
        border: 1px solid transparent;
        border-radius: 4px;
    }

    .navbar-default .navbar-toggle {
        border-color: rgb(3, 169, 244);
    }

    .navbar-default .navbar-toggle .icon-bar {
        background-color: #fff;
    }

    .navbar-default .navbar-toggle:hover,
    .navbar-default .navbar-toggle:focus {
        background-color: rgb(3, 169, 244);
    }

    .slider-info h4 {
        font-size: 3.2em;
    }

    .stats-grid {
        width: 25%;
    }

    .contact-icons h5 ,
    .footer_grid_left {
        text-align: center;
    }

    .icon_grid_left span {
        padding-bottom: 5px;
    }

    .footer_grid_left {
        margin-top: 10px;
    }

    .contact-us {
        margin-top: 16px;
    }

    .map-grid iframe {
        height: 217px;
    }
}

@media (max-width:736px){
    .w3-oneimg,
    .w3-twoimg,
    .w3-threeimg {
        min-height: 457px;
    }

    .slider-info h4 {
        font-size: 3em;
    }

    .w3layouts_more-buttn a {
        font-size: 13px;
        padding: 7px 12px;
    }

    .slider-info {
        margin-top: 1em;
    }

    .counter {
        font-size: 35px;
    }

    span.banner-icon {
        font-size: 29px;
        line-height: 68px;
        width: 74px;
        height: 74px;
    }

    .title {
        font-size: 47px;
        margin-bottom: 23px;
    }

    .icon_grid_left span {
        font-size: 26px;
        line-height: 27px;
    }

    .slider-info {
        text-align: center;
    }
}

@media (max-width:667px){
    .w3-oneimg,
    .w3-twoimg,
    .w3-threeimg {
        min-height: 443px;
    }

    .its-banner-grid {
        width: 100%;
    }

    .its-banner-grid:nth-child(2),
    .its-banner-grid:nth-child(3),
    .its-banner-grid:nth-child(4) {
        margin-top: 19px;
    }
}

@media (max-width:640px){
    .w3-oneimg,
    .w3-twoimg,
    .w3-threeimg {
        min-height: 428px;
    }

    .slider-info h4 {
        font-size: 2.7em;
    }

    .slider-info p {
        font-size: 17px;
    }

    .its-banner-grid h4 {
        font-size: 20px;
    }

    .its-banner-grid p {
        font-size: 15px;
    }

    .contact textarea {
        min-height: 6em;
    }

    .blog-img1-agileits-w3layouts a,
    .blog-img2-agileits-w3layouts a {
        min-height: 393px;
    }

    .overlay {
        top: 75%;
    }

    .img-agile {
        padding: 0px;
    }

    .test-review:nth-child(2) {
        margin-top: 14px;
    }
}

@media (max-width:600px){
    .navbar-default .navbar-nav > li > a {
        padding: 7px 2px;
    }

    .counter {
        font-size: 33px;
    }

    .title {
        margin-bottom: 20px;
    }

    .team-details {
        top: 26%;
    }

    .team-member.text-center:nth-child(1),
    .team-member.text-center:nth-child(2) {
        margin-bottom: 20px;
    }

    h6.team-title {
        font-size: 20px;
    }

    .map-grid iframe {
        height: 187px;
    }

    .contact-icons h5 {
        font-size: 25px;
    }

    .contact input[type="text"],
    .contact input[type="email"],
    .contact textarea {
        padding: 0em 0em .5em;
    }

    .slider-info {
        padding-left: 0px;
    }

    .callbacks_nav {
        top: 61%;
    }
}

@media (max-width:568px){
    h1 a.navbar-brand {
        font-size: 34px;
    }

    .slider-info h4 {
        font-size: 2.4em;
    }

    .slider-info p {
        padding: 12px 0px;
    }

    .w3-oneimg,
    .w3-twoimg,
    .w3-threeimg {
        min-height: 411px;
    }

    .about-top-grid p {
        font-size: 14px;
    }

    .stats-grid h4 {
        font-size: 18px;
    }

    .title {
        font-size: 44px;
    }

    .team-details {
        top: 29%;
    }
}

@media (max-width:480px){
    h1 a.navbar-brand {
        padding-top: 14px;
    }

    .slider-info h4 {
        font-size: 2em;
    }

    .slider-info p {
        letter-spacing: 2px;
    }

    .about-top-grid p {
        line-height: 28px;
    }

    .banner-agileits-btm {
        margin: 41px 0px 0px;
        min-height: 351px;
    }

    .blog-img1-agileits-w3layouts a,
    .blog-img2-agileits-w3layouts a {
        min-height: 360px;
    }

    .agileits_w3layouts_gallery_grid {
        width: 100%;
    }

    .w3layouts_gallery_grid1 {
        margin: 0em 0 0;
    }

    .team-details {
        top: 34%;
    }

    .test-review {
        width: 100%;
    }

    .cd-search input {
        font-size: 1em;
    }
}

@media (max-width:440px){
    .callbacks_nav.next,
    .callbacks1_nav.prev {
        background-size: 30px;
    }

    .slider-info p {
        font-size: 15px;
    }

    .slider-info h4 {
        font-size: 1.6em;
    }

    .about-top-grid p {
        margin: .8em 0em 0em;
    }

    .button {
        padding: 10em 0em 0em;
    }

    h6.team-title {
        font-size: 17px;
    }

    .test-name h5 {
        margin-top: 16px;
        font-size: 18px;
    }

    footer p {
        line-height: 28px;
    }

    .stats-grid {
        width: 36%;
    }

    .stats-grid:nth-child(3),
    .stats-grid:nth-child(4) {
        margin-top: 1px;
    }
}

@media (max-width:414px){
    .banner-agileits-btm {
        margin: 27px 0px 0px;
        min-height: 327px;
    }

    .blog-img1-agileits-w3layouts a,
    .blog-img2-agileits-w3layouts a {
        min-height: 314px;
    }

    .socials a {
        width: 34px;
        height: 34px;
    }

    .team-details {
        top: 39%;
    }

    .socials span {
        line-height: 30px;
        font-size: 13px;
        width: 31px;
        height: 32px;
    }
}

@media (max-width:384px){
    .w3-oneimg,
    .w3-twoimg,
    .w3-threeimg {
        min-height: 376px;
    }

    .stats-grid h4 {
        letter-spacing: 1px;
    }

    .stats-grid h4 {
        font-size: 15px;
    }

    .team-wrap {
        width: 73%;
        margin: 0px 50px;
    }

    .title {
        letter-spacing: 1px;
    }

    .team-details {
        top: 32%;
    }

    .test-review:nth-child(2) {
        margin-top: 21px;
    }

    .icon_grid_left span {
        font-size: 23px;
        line-height: 25px;
    }

    .team-wrap:nth-child(2) ,
    .team-wrap:nth-child(3),
    .team-wrap:nth-child(4) {
        margin-top: 18px;
    }
}

@media (max-width:375px){
    .out-info p {
        font-size: 14px;
        line-height: 26px;
    }
}

@media (max-width:320px){
    h1 a.navbar-brand {
        font-size: 30px;
    }

    .slider-info h4 {
        letter-spacing: 4px;
        line-height: 28px;
    }

    .slider-info {
        margin-top: 1em;
    }

    .about-top-grid h2 {
        font-size: 23px;
    }

    .blog-img1-agileits-w3layouts a,
    .blog-img2-agileits-w3layouts a {
        min-height: 231px;
    }

    .title {
        font-size: 38px;
    }

    .team-wrap {
        width: 80%;
        margin: 0px 34px;
    }
}

/*--//responsive--*/
/*----------------------------------------------------------------------------------------------------------*/
.csslider {
    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: ab;
    height: 760px;
    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: 14%;
    left: 49%;
    z-index: 10;
    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;
    opacity: 0.7;
}

.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: #ffa801;
    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: 8px;
    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 > 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%;
}

------------------------------------------------------------------------------------*/
/* //inner banner */
/* title */
.wthree_pvt_title {
    margin-bottom: 5em;
}

h4.w3pvt-title {
    color: #000;
    text-transform: capitalize;
    font-size: 2.3em;
    font-weight: 600;
}

h4.w3pvt-title.w3pvt-titl-sec {
    color: #fff;
}

p.sub-title {
    color: #999;
    text-transform: capitalize;
    width: 60%;
    margin: 1em auto 0;
}

span.sub-title {
    text-transform: capitalize;
    font-size: 1em;
    color: #fc636b;
}

.align-w3 {
    padding: 5em 0;
}

/* //title */
/* about */
.abt-icon {
    width: 80px;
    height: 80px;
    border: solid;
    border-width: 2px;
    border-color: rgba(0, 0, 0, 0.11);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.abt-icon span {
    font-size: 1.7em;
    color: #11d491;
}

.abt-txt h4 {
    text-transform: capitalize;
    font-size: 1.3em;
    margin-bottom: 0.5em;
}

.abt-txt {
    margin-left: 1em;
}

.w3ls-btn {
    background: #11d491;
    color: #fff;
    padding: 5px 43px;
    display: block;
    margin-top: 5em;
    letter-spacing: 1px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    -moz-border-radius: 0px;
    text-transform: capitalize;
    font-weight: 600;
}

/* //about */
/* services */
.bg-services {
    background: url(../images/slide.jpg) no-repeat center;
    background-size: cover;
}

.services-bg-color {
    padding: 2em;
}

h4.home-title {
    text-transform: capitalize;
    font-size: 1.2em;
    margin-bottom: 0.5em;
    color: #fff;
}

p.sec-4 {
    color: #bfbfbf;
}

/* services */
/* slide */
/* //slide */
/* blog */
span.post-icon {
    position: absolute;
    line-height: 3;
    text-align: center;
    font-size: 1.2em;
    letter-spacing: 1px;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 0px 12px;
    text-transform: capitalize;
    background: hsla(357, 0%, 2%, 0.28);
    color: #fff;
}

h5.blog-title a {
    font-size: 0.9em;
    text-transform: capitalize;
    color: #333;
    font-weight: 600;
    display: block;
}

.blog-btn {
    background: transparent;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    color: #000000;
    text-transform: uppercase;
}

.blog-btn:hover {
    color: #000;
}

.card-body {
    background: #eae9ea;
}

a.blog_link {
    display: inline-block;
    margin-top: 2em;
    padding: 6px 18px;
    background: #11d491;
    color: #fff;
    letter-spacing: 1px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    -moz-border-radius: 0px;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 15px;
}

/* //blog */
.slide-img {
    background: url(../images/banner.jpg) no-repeat center;
    background-size: cover;
    min-height: 500px;
}

hr {
    border-top: 1px solid rgba(255, 255, 255, 0.36);
}

/* contact */
textarea {
    height: 200px;
    resize: none;
}

form.register-wthree .form-control {
    padding: 15px 20px;
    border: 1px solid #dbdde2;
    border-radius: 0;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-box-shadow: 2px 8px 10px 0px rgba(50, 46, 46, 0.23);
    -moz-box-shadow: 2px 8px 10px 0px rgba(50, 46, 46, 0.23);
    box-shadow: 2px 8px 10px 0px rgba(50, 46, 46, 0.23);
    letter-spacing: 1px;
}

.contact-form-wthreelayouts {
    padding: 2em;
    border: 20px solid #eee;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    -moz-border-radius: 20px;
}

#contact iframe {
    width: 100%;
    border: 3px solid #000;
    padding: 1vw;
    min-height: 500px;
}

.contact-w3 span {
    color: #11d491;
    font-size: 1.2em;
    display: inline-block;
    vertical-align: middle;
    background: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    -webkit-box-shadow: 5px 10px 10px 0px rgba(216, 216, 216, 0.78);
    -moz-box-shadow: 5px 10px 10px 0px rgba(216, 216, 216, 0.78);
    box-shadow: 5px 10px 10px 0px rgba(216, 216, 216, 0.78);

    /* border-radius: 8% 37% 5% 26%; */
    /* border: 1px solid #fff; */
    text-align: center;
}

.contact-w3 {
    background: #eee;
    padding: 2em 1em;
}

.contact-w3 a,
.contact-w3 p {
    color: #000;
    font-size: 0.9em;
    letter-spacing: 0.5px;
}

.contact-w3 a:hover {
    color: #000;
}

h5.cont-form {
    margin: 1em 0;
    text-align: center;
    text-transform: capitalize;
    font-size: 1.7em;
    font-family: 'Lato', sans-serif;
    color: #000;
    font-weight: 600;
}

/* //contact */
/* login */
.modal-body {
    max-width: 600px;
    margin: 0 auto;
}

input.form-control.bg-theme {
    cursor: pointer;
}

/* team */
/* team  */
/*********************** Demo - 13 *******************/
.box13 {
    position: relative;
    transition: all .2s ease-out 0s;
    text-align: center;
}

.box13 .box-content,
.box13:after {
    position: absolute;
    left: 20px;
    right: 20px;
}

.box13:after {
    content: "";
    display: block;
    background: #11d491;
    top: 20px;
    bottom: 20px;
    opacity: 0;
    transform: rotate3d(-1, 1, 0, 100deg);
    transition: all .4s ease-in-out 0s;
}

.box13:hover:after {
    opacity: .9;
    transform: rotate3d(0, 0, 0, 0deg);
}

.box13 img {
    width: 100%;
    height: auto;
}

.box13 .box-content {
    top: 45%;
    opacity: 0;
    z-index: 1;
    -webkit-transform: translate(10%, -30%);
    transform: translate(10%, -30%);
    transition: all .2s ease-out 0s;
}

.box13:hover .box-content {
    opacity: 1;
    transform: translate(0, -50%);
    transition-delay: .2s;
}

.box13 .title {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.box13 .post {
    display: block;
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.box13 .social {
    padding: 0;
    margin: 0;
    list-style: none;
}

.box13 .social li {
    display: inline-block;
}

.box13 .social li a {
    display: block;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    font-size: 17px;
    color: #1b1462;
    line-height: 35px;
    margin-right: 5px;
    transition: all .4s ease-in-out 0s;
}

.box14 .icon li,
.box14 .post {
    display: inline-block;
}

.box13 .social li a:hover {
    color: #ffffff;
    background: #000;
}

@media only screen and (max-width:990px) {
    .box13 {
        margin-bottom: 30px;
    }
}

/* team  */
/* //team */
/* testimonials */
.testi-text p {
    color: #777;
    width: 90%;
    margin: 0 auto;
    font-size: 1.1em;
}

.testi-desc span {
    font-size: 2em;
    margin: 15px;
    color: #11d491;
}

.testi-text p span {
    font-size: 1.1em;
    color: #777;
    margin: 9px 10px;
}

.testi-desc {
    text-align: center;
}

.carousel-indicators .active {
    background-color: #fb962e;
}

.carousel-indicators li {
    background-color: #000;
    border: 1px solid #000;
    cursor: pointer;
}

.carousel-indicators {
    bottom: -20px;
}

.testi-desc h5 {
    font-weight: 600;
    color: #333;
    font-size: 1.1em;
    text-transform: capitalize;
}

.testi-text {
    margin-bottom: 0.5em;
}

.testimonials_grid {
    background: #eee;
    padding: 2rem 1rem;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -o-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -moz-border-radius: 1rem;
}

/* //testimonials */
/* gallery */
.port-desc {
    padding: 1em;
    background: #eee;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

.img-grid {
    margin-bottom: 2em;
}

.img-grid:hover {
    -webkit-box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .3);
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

h6.main-title-w3pvt {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1em;
    color: #fc636b;
    letter-spacing: .5px;
}

.demo>li {
    list-style-type: none;
}

/* 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;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    max-width: 500px;
    position: relative;
    margin: 8em 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: #2ed3ae;
}

/* //popup */
/* //gallery */
/* footer */
.footer {
    background: #17181b;
}

.text-theme-2 {
    color: #000;
}

.text-theme-2:hover {
    color: #000;
}

.footer h2 a {
    font-family: 'Lato', sans-serif;
    text-transform: capitalize;
    font-size: 0.9em;
    color: #fff;
}

.footer h2 a:hover {
    color: #fff;
}

/* footer grids */
.footerv3-top h3 {
    font-size: 1.3em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1.5em;
}

.footv3-left h4 a {
    font-size: 1.3em;
    letter-spacing: 0.5px;
    color: #fff !important;
    padding: 14px 0 0;
    position: relative;
    text-transform: capitalize;
}

h4.footer-title {
    color: #777;
    text-transform: capitalize;
}

.footerv3-top p {
    font-size: 1em;
    color: #a3b1bf;
    margin: 1em 0;
    line-height: 1.5em;
}

.footer p a {
    color: #fff;
    text-decoration: underline;
}

.footer p a:hover {
    color: #fff;
}

.fv3-contact p {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: 16px;
}

.footer-top p {
    max-width: 400px;
}

.list-w3pvtits li a {
    color: #fff;
    font-size: 1em;
    text-transform: capitalize;
}

h3.w3f_title {
    font-size: 1.3em;
    color: #fff;
    font-weight: 400;
}

/* //footer */
.cpy-right {
    padding: 1vw;
    background: #11d491;
}

.cpy-right p {
    color: #fff;
}

.cpy-right a {
    color: #fff;
}

/* -- Responsive code -- */
@media screen and (max-width: 1080px) {
    h3.home-banner-w3 {
        width: 60%;
        font-size: 2.3em;
    }

    .align-w3-abt {
        padding: 12em 0 8em;
    }

    h4.w3pvt-title {
        font-size: 2.1em;
    }

    .services-bg-color {
        padding: 0 2em;
    }

    a.reqe-button {
        padding: 9px 16px;
        font-size: 13px;
    }

    .banner-bottom-w3ls {
        bottom: -120px;
    }
}

@media screen and (max-width: 1050px) {
    .align-w3 {
        padding: 4em 0;
    }
}

@media screen and (max-width: 1024px) {
    .banner-bottom-w3ls {
        left: 10%;
        width: 80%;
    }

    h3.home-banner-w3 {
        width: 100%;
    }

    p.bnr-txt {
        width: 100%;
    }

    .inner-banner-w3ls {
        min-height: 250px;
    }
}

@media screen and (max-width: 991px) {
    .navbar-light .navbar-toggler {
        margin-left: auto;
    }

    .dropdown-menu {
        text-align: center;
    }

    .right_nav {
        margin: 0 auto;
        text-align: center;
    }

    .bb-img h3 {
        font-size: 1.05em;
    }

    p.sub-title {
        width: 100%;
    }

    .wthree_pvt_title {
        margin-bottom: 4em;
    }

    .w3ls-btn {
        margin-top: 3em;
    }

    .align-w3-abt {
        padding: 12em 0 4em;
    }

    .abt-txt h4 {
        font-size: 1.1em;
    }

    .abt-txt {
        margin-left: 0;
    }

    .slide-banner {
        min-height: 420px;
    }

    .slide-img {
        min-height: 450px;
    }

    .carousel-indicators {
        bottom: -45px;
    }

    .img-grid {
        max-width: 640px;
        margin: 0 auto 2em;
    }
}

@media screen and (max-width: 900px) {
    h3.home-banner-w3 {
        font-size: 2.2em;
    }
}

@media screen and (max-width: 800px) {
    #contact iframe {
        min-height: 400px;
    }
}

@media screen and (max-width: 768px) {
    h3.home-banner-w3 {
        font-size: 2em;
    }

    h4.w3pvt-title {
        font-size: 1.9em;
    }

    .wthree_pvt_title {
        margin-bottom: 3em;
    }

    #logo a {
        font-size: 32px;
    }
}

@media screen and (max-width: 736px) {
    .align-w3 {
        padding: 3em 0;
    }

    .slide-img {
        min-height: 350px;
    }

    .box13 .title {
        font-size: 20px;
    }
}

@media screen and (max-width: 667px) {
    .bb-img h3 {
        font-size: 1em;
    }

    .abt-icon {
        width: 60px;
        height: 60px;
    }

    .abt-icon span {
        font-size: 1.5em;
    }

    h4.w3pvt-title {
        font-size: 1.8em;
    }
}

@media screen and (max-width: 640px) {
    .slide-banner {
        min-height: 385px;
    }

    .carousel-indicators {
        bottom: -35px;
    }
}

@media screen and (max-width: 600px) {
    .banner-bottom-w3ls {
        left: 5%;
        width: 90%;
    }
}

@media screen and (max-width: 568px) {
    .wthree-link-bnr {
        padding: 3px 25px;
        letter-spacing: 0px;
        font-size: 13px;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 4px 15px;
        font-size: 0.85em;
        letter-spacing: 1px;
    }

    .banner-bottom-w3ls {
        bottom: -100%;
    }

    h3.home-banner-w3 {
        font-size: 1.8em;
    }

    p.bnr-txt {
        font-size: 1em;
        line-height: 1.5;
    }

    .align-w3-abt {
        padding: 26em 0 3em;
    }

    h4.w3pvt-title {
        font-size: 1.6em;
    }

    .services-bg-color {
        padding: 0;
    }

    .align-w3 {
        padding: 2em 0;
    }

    .slide-img {
        min-height: 300px;
    }

    .box13 .box-content,
    .box13:after {
        left: 21px;
        right: 33px;
    }

    .w3ls-btn {
        margin-top: 2em;
    }

    #contact iframe {
        min-height: 300px;
    }

    h5.cont-form {
        font-size: 1.5em;
    }

    form.register-wthree .form-control {
        padding: 8px 20px;
    }

    a.navbar-brand {
        font-size: 0.75em;
    }

    .contact-form-wthreelayouts {
        padding: 1em;
    }

    .toggle {
        padding: 6px 10px;
    }

    .modal-body {
        margin: 0 1em;
    }
}

@media screen and (max-width: 480px) {
    h3.home-banner-w3 {
        font-size: 1.6em;
    }

    .wthree_pvt_title {
        margin-bottom: 2.5em;
    }

    .align-w3-abt {
        padding: 22em 0 3em;
    }

    .w3ls-btn {
        margin-top: 2em;
    }

    .w3ls-btn {
        padding: 4px 30px;
    }

    .inner-banner-w3ls {
        min-height: 200px;
    }

    .slide-img {
        min-height: 200px;
    }

    h3.w3f_title {
        font-size: 1.1em;
    }

    .banner_text_wthree_pvt {
        padding: 22vw 0;
    }

    p.bnr-txt {
        font-size: .8em;
    }

    .banner-bottom-w3ls {
        bottom: -80%;
    }

    p {
        font-size: 13px;
    }

    .popup {
        margin: 5em 1em;
        padding: 2.5em 1.5em 1.5em;
    }
}

@media screen and (max-width: 414px) {
    .right_nav {
        margin: 0.5em auto;
    }

    h3.home-banner-w3 {
        font-size: 1.4em;
    }

    .align-w3-abt {
        padding: 21em 0 3em;
    }

    #logo a {
        font-size: 28px;
    }
}

@media screen and (max-width: 384px) {
    .banner-bottom-w3ls {
        left: 0;
        width: 100%;
    }

    .img-grid {
        padding: 0;
    }

    .testi-text p {
        width: 100%;
        font-size: 1em;
    }

    .testi-desc h5 {
        font-size: 1em;
    }
}

@media screen and (max-width: 375px) {
    .inner-banner-w3ls {
        min-height: 180px;
    }
}

@media screen and (max-width: 320px) {
    .banner-bottom-w3ls {
        bottom: -74%;
    }

    .bb-img h3 {
        font-size: 0.9em;
    }

    .abt-icon {
        width: 50px;
        height: 50px;
    }

    .abt-icon span {
        font-size: 1.2em;
    }

    .abt-txt h4 {
        font-size: 1em;
    }

    .align-w3-abt {
        padding: 17em 0 3em;
    }

    h4.w3pvt-title {
        font-size: 1.4em;
    }

    h4.home-title {
        font-size: 1.1em;
    }

    input.serach-input {
        padding: 9px 12px;
        letter-spacing: 0px;
        font-size: 13px;
    }

    button.btn.bg-theme.button-w3 {
        font-size: 14px;
        padding: 10px 15px;
    }
}

/* -- //Responsive code -- */

}

}

}


}

}
}