
html,
body {
    margin: 0;
    font-size: 100%;
    background: #fff;
   font-family: 'Lato', sans-serif;
    scroll-behavior: smooth;
}

body a {
    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;
}

a:hover {
    text-decoration: none;
}

input[type="button"],
input[type="submit"],
input[type="text"],
input[type="email"],
input[type="search"] {
    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;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

p {
    font-size: 0.9em;
    color: #777;
    line-height: 1.9em;
    letter-spacing: 1px;
    margin-bottom: 0;
}

ul {
    margin: 0;
    padding: 0;
}


.breadcrumb,
ol {
    margin-bottom: 0 !important;
}

/* header */
/* top bar */
.header-top_w3layouts {
    padding: 0 .5em;
}

/* social icons */
.par-so {
    font-size: 14px;
}

.top-right-info span {
    color: #fff;
    line-height: 2.2;
    font-size: 14px;
}

.top-right-info li.soci-effe {
    width: 30px;
    height: 30px;
    text-align: center;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    -moz-border-radius: 4px;
    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;
}

.top-right-info li.facebook {
    background: #3b5998;
}

.top-right-info li.twitter {
    background: #1da1f2;
}

.top-right-info li.google-plus {
    background: #F44336;
}

.top-right-info li.pinterest {
    background: #C8232C;
}
.top-right-info li.linkedin {
    background: #0374AC;
}
.top-right-info li.instagram {
    background: #AA08B5;
}

.top-right-info li.dribbble {
    background: #ea4c89;
}

.top-right-info li {
    display: inline-block;
}

/* //social icons */
.header-top_w3layouts p,
.header-w3layouts p,
.top-w3layouts p {
    font-size: 14px;
}

.top-w3layouts p a:hover,
.w3l-footer ul li a:hover {
    opacity: .7;
}

.list_of_cities {
    padding: 8px 10px;
    border: 1px solid #dee2e6;
    color: #343a40;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
}

/* //top bar */
/* header 2 */
/* navigation */
div#home {
    position: relative;
}

/* navigation */
.nav_w3pvt {
    margin-top: 0.5em;
}

/* 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-size: 46px;
    color: #fff;
    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-top: 10px;
    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: #000;
font-family: "Source Sans Pro",sans-serif;
font-size: 15px;
letter-spacing: 2px;
margin: 0 12px;
text-transform: uppercase;
}

nav a:hover,
a.active {
    color: #FF6600;
}

/* Background color change on Hover */

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    top: 25px;
    background: #fff;
    padding: 10px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    z-index: 9;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

/* 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;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    -moz-border-radius: 4px;
    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 a {
    color: #000;
    display: block;
    font-size: 13px;
    letter-spacing: 1px;
    margin: 0;
    margin: 10px;
}

/* 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);
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

/* Media Queries
--------------------------------------------- */
@media(max-width: 1080px) {
    .nav_w3ls {
        margin-top: 1.5em;
    }
}

@media all and (max-width : 991px) {
    .nav_w3ls {
        margin-top: 0;
    }

    #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: 13px;
        text-decoration: none;
        border: none;
            margin-top: -42px !important;
        float: right;
        background-color: #fff;
        color: #333;
        font-weight: 600;
        border: 1px solid rgb(170, 161, 161);
        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;
        text-transform: uppercase;
    }

    .menu .toggle {
        float: none;
        text-align: center;
        margin: auto;
        max-width: 106px;
        padding: 5px;
        font-weight: normal;
        font-size: 14px;
        letter-spacing: 1px;
        color: #000;
        font-weight: 400;
        border: none;
        text-transform: uppercase;
    }

    .toggle:hover {
        opacity: .7;
    }

    /* Display Dropdown when clicked on Parent Lable */
    [id^=drop]:checked + ul {
      background: #e0e0e0 none repeat scroll 0 0;
display: block;
padding: 15px 0;
text-align: left;
width: 100%;
    }

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

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

    /* 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 ul ul li a {
        color: #000;
        font-size: 13px;
        padding: 0;
    }
}

@media all and (max-width : 440px) {
    .toggle {
        padding: 7px 12px;
        font-size: 14px;
    }

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

@media all and (max-width : 375px) {

    nav a,
    .menu .toggle {
        font-size: 13px;
    }
}

/*-- 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: 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 */
/* logo */
a.navbar-brand {
    font-size: 1em;
    padding: 0;
    font-weight: 700;
    position: relative;
    color: #333;
    text-transform: uppercase;
}

.navbar-light .navbar-brand {
    color: #6c5ce7;
}

a.navbar-brand span {
    color: #333;
    font-size: 10.5px;
    letter-spacing: 3px;
    position: absolute;
    right: 0;
    bottom: 16px;
}

/* //logo */
/* dwn button */
.free-w3pvt {
    margin-top: 0.3em;
}

a.login-button-2 {
    letter-spacing: 2px;
    font-size: 13px;
    background: #fc3d39;
    padding: 12px 30px;
    display: inline-block;
    color: #fff;
}

a.login-button-2:hover {
    color: #fff;
}

a.login-button-2 span {
    font-size: 22px;
    vertical-align: middle;
}

/* // dwn button */
/* //header 2 */

/* banner */
.banner_main {
    background: url(../images/banner1.html) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    height: 400px;
}

.overlay-w3pvt {
    background: rgba(0, 0, 0, 0.38);
    height: 400px;
}

/* banner text */
.banner-info {
    padding: 6em 0 0 0
}

.banner-info h5 {
    font-size: 1em;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 300;
}

.banner-info h3 {
    font-size: 3.5em;
    letter-spacing: 1px;
    word-spacing: 6px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

.banner-info p:before {
    position: absolute;
    content: "";
    background: #fff;
    width: 60px;
    height: 3px;
    bottom: -47px;
}

/* //banner text */
/* //banner */

/* banner bottom grids */
section.about-bottom {
    margin-top: -9em;
    z-index: 10;
    position: relative;
}

.feature-grids h3,
.bottom-gd.fea h3 {
    color: #05c46b;
    letter-spacing: 1px;
    margin-top: 0em;
    font-size: 1.4em;
}

.feature-grids p {
    margin: 0;
}

.feature-grids span {
    font-size: 2em;
    margin: 0.5em 0;
    color: #fc3d39;
}

.bottom-gd,
.bottom-gd2-active {
background: #fff none repeat scroll 0 0;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
margin: -15px 25px 25px;
padding: 20px 30px !important;
text-align: center;
transition: all 2s ease 0s;
}

.bottom-gd2-active {
    background: #53d769;
    transition: 2s all;
    -webkit-transition: 2s all;
    -moz-transition: 2s all;
    -ms-transition: 2s all;
    -o-transition: 2s all;
}

.bottom-gd2-active p {
    color: #fff;
}

.bottom-gd2-active h3 {
    color: #fff;
}

.feature-grids h3,
.bottom-gd.fea h3 {
  color: #1f1f1f;
font-family: source sans pro;
font-size: 18px;
font-weight: 600;
line-height: 2;
text-transform: capitalize;
}

/* //banner bottom grids */
/*--/about--*/
h3.title-w3ls,
h3.title-w3ls.two {
    color: #4b4b4d;
    font-size: 2.5em;
    text-transform: capitalize;
    font-weight: 700;
}

h3.title-w3ls.two {
    color: #fff;
}

.cont-inf-w3ls h4 {
    font-size: 1.2em;
    color: #444;
    line-height: 1.7em;
    text-transform: capitalize;
    margin-bottom: 1em;
}

.cont-inf-w3ls p {
    margin: 1em 0;
}

.read {
    background: #fff;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    color: #fc3d39;
    padding: 0.6em 2em;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 2px;
    font-weight: 600;
    -moz-box-shadow: 1px 3px 8px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 1px 3px 8px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 1px 3px 8px 0 rgba(0, 0, 0, 0.15);
}

.cont-img-w3ls img {
    box-shadow: 7px 7px 10px 0 rgba(13, 14, 16, 0.1);
    -webkit-box-shadow: 7px 7px 10px 0 rgba(13, 14, 16, 0.1);
    -moz-box-shadow: 7px 7px 10px 0 rgba(13, 14, 16, 0.1);
    -o-box-shadow: 7px 7px 10px 0 rgba(13, 14, 16, 0.1);
    -ms-box-shadow: 7px 7px 10px 0 rgba(13, 14, 16, 0.1);
}

.serve-gd-w3pvt span {
    color: #53d769;
}

/*--//about--*/
/*--/stats--*/
.statistics {
    background: url(../images/banner3.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
}

h4.progress-w3 {
    color: #444;
    font-size: 0.85em;
    text-transform: uppercase;
    margin-bottom: 1em;
    letter-spacing: 1px;
}

.progress-one .progress {
    height: 0.5rem;
    background: #fff;
}

.progress {
    font-size: 0.75em;
    line-height: 8em;
    text-align: center;
    background-color: #d6d9da;
    border-radius: 0.25rem;
    margin-bottom: 1em;
}

.progress-bar-striped {
    background-image: none;
    background-size: 1rem 1rem;
}

/*--//stats--*/
.blog-content {
    background: #f7f7f7;
}

/* gallery */
.gal-img img {
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    padding: 10px;
}

.gal-img:hover.gal-img img {
    -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);
}

/* popup */
.pop-overlay {
    position: fixed;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0ms;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}

.pop-overlay: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: 550px;
    position: relative;
    margin: 8em auto;
    padding: 3em 2em 2em;
}

.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: #f0546a;
}

/* //popup */
/* //gallery */
/* --/contact-- */
.map iframe {
    border: none;
    width: 100%;
    min-height: 30em;
}

.map {
    position: relative;
    margin-bottom: 20em;
}

.contact-right-info h3 {
    color: #eee;
    font-size: 24px;
    letter-spacing: 1px;
}

.form h3 {
    color: #333;
    font-size: 24px;
    letter-spacing: 1px;
}

.contact-right-info p {
    margin: 0;
    font-size: 15px;
    color: #999;
    letter-spacing: 1px;
}

.main_grid_contact {
    width: 70%;
    position: absolute;
    bottom: -50%;
    left: 15%;
    -webkit-box-shadow: -5px 6px 25px -12px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -5px 6px 25px -12px rgba(0, 0, 0, 0.75);
    box-shadow: -5px 6px 25px -12px rgba(0, 0, 0, 0.75);
}

.form {
    flex-basis: 60%;
    -webkit-flex-basis: 60%;
    padding: 3em 4em;
    background: #fff;
}

.contact-right-info {
    flex-basis: 40%;
    -webkit-flex-basis: 40%;
    padding: 3em 3em;
    background: #222;
}

.input-group input[type="text"],
.input-group input[type="email"] {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: capitalize;
    padding: 15px 20px;
    width: 49%;
    color: #666;
    letter-spacing: 2px;
    box-sizing: border-box;
    outline: none;
    background: transparent;
}

.input-group input.margin2 {
    margin-right: 2%;
}

.input-group1 button.btn {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    outline: none;
    cursor: pointer;
    color: #fff;
    background: #fc3d39;
    padding: 17px 15px;
    border: none;
    margin: 10px 0 0 auto;
    transition: all 0.5s ease-in;
    font-weight: 700;
}

textarea {
    font-size: 0.9em;
    resize: none;
    text-transform: capitalize;
    padding: 15px 20px;
    letter-spacing: 1px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    color: #666;
    background: transparent;
}

.contact-right-info address p span {
    width: 25px;
    margin-left: 0px;
    display: inline-block;
    color: #fff;
}

.contact-right-info address p,
.contact-right-info address p a {
    color: #bbb;
}

.contact-right-info address {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

/* --//contact-- */
/*-- /testimonials --*/

.testimonials {
    background: url(../images/banner2.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
}

.overlay-w3pvt-test {
    background: rgba(0, 0, 0, 0.66);
}

.test-info {
    padding: 2em 0;
    margin: 0 auto;
    width: 60%;
}

.test-info h3 {
    font-size: 1em;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.test-info p {
    color: #fff;
}

.test-img img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    padding: 4px;
    background: hsla(21, 60%, 94%, 0.33);
    width: 15%;
}


.test-info p span {
    font-size: 1.8em;
    color: #fff;
}

.clients li {
    margin: 0 0.2em;
    text-align: center;
    display: inline-block;
}

.clients li span {
    font-size: 0.8em;
    color: #fc3d39;
}

.clients li span:hover {
    opacity: 0.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;

}

/*-- //testimonials --*/
/* --//footer-- */


h2 a.navbar-brand span {
    color: #a51890;
    font-size: 1.4em;
}

h3.w3layouts_title {
    font-size: 1em;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;

}
.footer-w3layouts hr{
    border-color: #8d8d8d;
}
.footer-content p{
    color: #ddd
}
.footer-w3layouts li {
    list-style: none;
    margin: 4px 0;
}

.footer-w3layouts li a {
    color: #ddd;
    font-size: 0.9em;

}

.footer-text form {
    border: 1px solid #b9bdc1;
    width: 100%;
    margin-top: 20px;
}

.footer-text input[type="email"] {
    outline: none;
    padding: 12px 15px;
    color: #3c3a3a;
    font-size: 0.9em;
    width: 85%;
    border: none;
    background: none;
    letter-spacing: 2px;
}

.footer-text button.btn1 {
    color: #fc3d39;
    border: none;
    padding: 10px 0;
    outline: none;
    text-align: center;
    text-decoration: none;
    background: none;
    cursor: pointer;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    float: right;
    width: 15%;
}

.last-w3pvt-contact a {
    color: #fff;
}

/* copyright */
.copy-right {
 background: #404040;
padding: 6px 0 !important;
}

p.copy-right-grids a {
    color: #333;
}

/* //copyright */

.move-top {
    margin-top: 1.1em;
}


a.move-top span {
    color: #333;
    width: 36px;
    height: 36px;
    border: transparent;
    line-height: 2em;
    background: #d7dde13b;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    text-align: center;
}

.inner-sec-w3ls {
    padding: 0 3em;
}

/*-- //footer --*/


/*--responsive--*/

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

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

@media(max-width:1280px) {

    .banner_main,
    .overlay-w3pvt {
        min-height: 34em;
    }

    .test-info {
        margin: 0 auto;
        width: 65%;
    }

    .banner-info {
        padding: 11em 0 0 0;
    }
}

@media(max-width:1080px) {

    .banner_main,
    .overlay-w3pvt {
        min-height: 30em;
    }

    .test-info {
        padding: 0em 0;
        margin: 0 auto;
        width: 68%;
    }

    .banner-info h3 {
        font-size: 3.3em;
    }

    .banner-info {
        padding: 9em 0 0 0;
    }

    .feature-grids h3,
    .bottom-gd.fea h3 {
        font-size: 0.9em;
    }

    h3.title-w3ls,
    h3.title-w3ls.two {
        font-size: 2.3em;
    }

    p,
    .footer-w3layouts li a {
        font-size: 0.85em;
    }

    .map {
        margin-bottom: 17em;
    }
}


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

@media(max-width:991px) {

    .banner_main,
    .overlay-w3pvt {
        min-height: 28em;
    }

    .banner-info {
        padding: 7em 0 0 0;
    }

    .cont-img-w3ls {
        margin-top: 2em;
    }

    .blog-w3pvt-grid {
        float: left;
        width: 50%;
    }
}

@media(max-width:768px) {
    .main_grid_contact {
        width: auto;
        position: static;
        bottom: 0;
        left: 0%;
        margin-top: 2em;
    }

    .map {
        margin-bottom: 0em;
    }

    .map iframe {
        border: none;
        width: 100%;
        min-height: 18em;
        margin-bottom: 1em;
    }

    h3.title-w3ls,
    h3.title-w3ls.two {
        font-size: 2em;
    }
}


@media(max-width:736px) {

    .banner_main,
    .overlay-w3pvt {
        min-height: 26em;
    }

    .banner-info h3 {
        font-size: 3em;
    }
}

@media(max-width:667px) {
    .toggle {
        margin-top: 1em;
    }

    .banner-info h3 {
        font-size: 2.5em;
    }

    .test-info {
        padding: 0em 0;
        margin: 0 auto;
        width: 95%;
    }
}


@media(max-width:640px) {
    .banner-info h3 {
        font-size: 2.3em;
    }

    .banner_main,
    .overlay-w3pvt {
        min-height: 23em;
    }

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

@media(max-width:600px) {
    .banner-info h3 {
        font-size: 2.2em;
    }

    .blog-w3pvt-grid {
        float: left;
        width: 80%;
        margin: 0 auto;
    }

    .form {
        padding: 2em 2em;
    }

    .input-group input[type="text"],
    .input-group input[type="email"] {
        width: 100%;
    }

    .input-group input.margin2 {
        margin-right: 0;
        margin-bottom: 1em;
    }

    .par-so {
        font-size: 12px;
    }

}

@media(max-width:568px) {
    .select-city {
        margin-bottom: 1em;
    }

    .banner-info h3 {
        font-size: 2em;
    }

    .inner-sec-w3ls {
        padding: 0 2em;
    }
}

@media(max-width:480px) {

    h3.title-w3ls,
    h3.title-w3ls.two {
        font-size: 1.8em;
    }

    .banner_main,
    .overlay-w3pvt {
        min-height: 20em;
    }

    .banner-info {
        padding: 4em 0 0 0;
    }

    .blog-w3pvt-grid {
        width: 90%;
        margin: 0 auto;
    }
}

@media(max-width:414px) {
    .banner-info h3 {
        font-size: 1.8em;
    }
}

@media(max-width:375px) {

    h3.title-w3ls,
    h3.title-w3ls.two {
        font-size: 1.6em;
    }

    .banner_main,
    .overlay-w3pvt {
        min-height: 18em;
    }

    .banner-info {
        padding: 3em 0 0 0;
    }


}

@media(max-width:320px) {
   
}
@media only screen and (min-device-width : 320px) and (max-device-width : 640px) {
  .imgback {
  display: none;
}
.imgfront {
  left: 0!important;
  position: relative;
  width: 100% !important;
}
.imgfront {
  left: 0 !important;
  position: relative !important;
  width: 100% !important;
}
.valueadded {
  padding: 20px 20px!important;
}
.col-md-12.midtitle > h1 {
  font-size: 17px !important;
 
}
.imgcontentbox {
  background: #0f263a none repeat scroll 0 0;
  left: 0 !important;
  padding: 15px !important;
  position: relative !important;
  right: 0;
  width: 100% !important;
}
.topadd.mobhide {
  display: none;
}
.top-right-info {
  text-align: left!important;
}
.main-top {
  padding: 5px 0 !important;
}
.foodlist h3,.servicewrap h3,.valueadded h3,.tempbox h3,.col-md-12.whyusbox > h3,.feature h3,.featurebox h3 {
  font-size: 18px !important;
  line-height: 1.5 !important;
  margin-bottom: 15px !important;
  text-align: center !important;
}
.imgbg {
  margin-top: 10px !important;
  position: relative;
}
.servicebox {
 
}
.servicewrapm,.foodlist {
  padding: 20px 0 !important;
}
.servicewrap {
  padding: 20px 0 !important;
}
.morebtn {
 
}
.bannerover .col-md-2 {
  display: inline;
  float: left;
  margin-left: 3px;
  width: 95px;
}
.bannerover {
 
  padding: 15px 0 11px !important;
}
.stripbox > h3 {
  font-size: 19px !important;
}
.col-md-12.midtitle > h1 {
  
  margin-bottom: 3px !important;
}
.tablebox {
 
  padding: 15px 0 5px !important;
}
.tempbox table th {
  font-size: 14px !important;
}
.tempbox table th{
    font-size: 13px !important;
}
.midstrip1 h3 {
  font-size: 16px!important;
  margin-bottom: 10px;
}
.footer-w3layouts {
  display: none;
}
.fmap {
  margin-top: 15px;
}
.imgcontentbox h3 {

  margin-bottom: 5px !important;
}
.imgcontentbox .col-md-6 {
  margin-bottom: 20px !important;
}
.benefitsbox {
  padding: 20px 0 !important;
}
.whyusbox p {
  margin-top: 0 !important;
}
.visiontext {
  padding: 15px 5px !important;
}
.whyus {
  padding: 20px 0 !important;
}
.featurover {
  padding: 20px !important;
}
.career,.blog,.contactbox {
  padding: 20px 0 !important;
}
}
/*--//responsive--*/





.top-bar.py-2 {
  background: #000 none repeat scroll 0 0;
}
.header-top_w3layouts p, .header-w3layouts p, .top-w3layouts p {
  color: #ddd;
  font-size: 15px;
}
.par-so.mr-3 {
  color: #ddd;
  font-size: 15px;
}
.main-top {
  padding: 18px 0;
}
.bottom-gd.p-lg-5.p-4 > img {
  width: 100%;
}
.foodlist img{
width: 100%;
}

.foodlist h1 {
  font-size: 34px;
margin-bottom: 15px;
text-align: center;
}
.foodlist{
padding: 40px 0 55px;
}
.foodlist p {
  color: #414141;
  font-size: 15px;
  margin-top: 15px;
  padding-left: 15px;
}
}
.servicebox img{
    width: 100%;
}
.servicebox{
border: 1px solid #ddd;
margin-bottom: 30px;
}
.servicebox h4{
  font-size: 19px;
font-weight: 500;
height: 75px;
line-height: 1.6;
padding: 6px 10px 0;
text-align: center;
}
.servicewrap{
    padding: 40px 0 ;
}
.servicewrap h3 {
  margin-bottom: 40px;
  text-align: center;
}


.valueadded ul li{
color: #414141;
font-size: 17px;
font-weight: 500;
margin-bottom: 15px;
text-align: left;
}
.valueadded{
    padding: 40px 0 ;
}
.valueadded h3 {
  margin-bottom: 40px;
  text-align: center;
}

footer {
  background: #404040 none repeat scroll 0 0;
  padding: 25px 0 0;
}
.tempbox table th, .tempbox table td{
padding: 7px 15px;
}

.tempbox table th {
 background: #ff6600 none repeat scroll 0 0;
color: #fff;
font-size: 16px;
font-weight: 500;
letter-spacing: 1px;
}
.table-bordered th, .table-bordered td {
  border: 1px solid #5f5f5f;
  vertical-align: middle;
}
.table-bordered thead th, .table-bordered thead td {
  border-bottom-width: 1px;
   border: 1px solid #5f5f5f;
   vertical-align: middle;
}
.tablebox {
  background: #f0f0f0 none repeat scroll 0 0;
  padding: 50px 0 55px;
}
.tempbox h3{
    margin-bottom: 40px;
}
.table-bordered {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #dee2e6;
}
.topbanner {
  background: url(../images/topbanner.jpg);
  
}
.banneroverlay{
  background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
color: #fff;
padding: 50px 0;
text-align: center;
}
.banneroverlay h2 {
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.servicemenu h4{
background: #ff6633 none repeat scroll 0 0;
color: #fff;
font-size: 18px;
font-weight: 500;
height: 70px;
line-height: 1.5;
margin-bottom: 15px;
padding: 5px 10px 0;
text-align: center;
vertical-align: middle;
}
.servicemenu ul{
margin-bottom: 25px;
padding-left: 45px;
}
.servicemenu ul li{
    font-size: 16px;
line-height: 2;
}
.servicemenu hr{
    border-color: #ff6633;
border-width: 3px;
margin-left: 0;
width: 65px;
}
.servicemenu {
  background: #fff none repeat scroll 0 0;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
height: 270px;
margin-bottom: 20px;
 
}
.whyusbox strong {
  color: #000;
  font-weight: 500;
}
.coldbox > h4 {
  color: #ff6633;
  font-size: 21px;
  font-weight: 600;
}
.whyusbox p {
  color: #414141;
  font-size: 16px;
  margin-bottom: 15px;
  margin-top: 20px;
}
.coldbox > p {
  color: #2d2d2d;
  font-size: 14px;
}
.whyus {
  background: #f4f4f4 none repeat scroll 0 0;
  padding: 40px 0;
}
.feature ul {
  margin-top: 15px;
  padding-left: 20px;
}
.feature ul li p{
color: #414141;
font-size: 15px;
line-height: 2;
}
.feature ul li{
    
}
.feature ul li {
  margin-bottom: 10px;
}

.productbox > h4 {
background: #ff6633 none repeat scroll 0 0;
color: #fff;
font-size: 17px;
margin-top: 0;
padding-bottom: 9px;
padding-top: 9px;
text-align: center;
}
.productbox {
 background: #fff none repeat scroll 0 0;
border: 2px solid #fff;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
margin-bottom: 40px;
}











.content {
  position: relative;
  
  margin: auto;
  cursor: pointer;
  overflow: hidden;
}
.content .content-overlay {
  background: rgba(0,0,0,0.7);
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-overlay{
  opacity: 1;
  cursor: pointer;
}

.content-image{
 cursor: pointer;
padding: 6px;
width: 100%;
}

.content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details{
  top: 50%;
  left: 50%;
  opacity: 1;
}


.content-details p{
 color: #fff;
font-size: 17px;
}

.fadeIn-bottom{
  top: 80%;
}

.contactbox{
    padding: 50px 0;
}
.addbox i {
  color: #fff;
  font-size: 23px;
}

.addbox {
  border-bottom: 1px solid #a9a9a9;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.addbox p {
  color: #000;
  font-family: source sans pro;
  font-size: 16px;
}
.contactform{

}
.iconbox{
background: #ff6633 none repeat scroll 0 0;
border: 2px solid #fff;
border-radius: 8px;
height: 50px;
line-height: 50px;
margin-bottom: 6px;
text-align: center;
width: 50px;
}
.contactform {
  margin-top: 30px;
}
.contactform input {
  height: 45px;
}
.contactform textarea {
 height: 115px;
overflow: auto;
}

.contactbtn {
  background: #ff6633 none repeat scroll 0 0;
  border: 1px solid #ff6633;
  border-radius: 5px;
  box-shadow: none;
  color: #fff;
  font-size: 19px;
  margin-left: 2px;
  padding: 3px 25px;
}
.contactbox iframe{
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.servicebox:hover{
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: 0.5s;
}

.carousel-indicators li {
  background-color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  flex: 0 1 auto;
  height: 3px;
  margin-left: 3px;
  margin-right: 3px;
  position: relative;
  text-indent: -999px;
  width: 30px;
}







.top-bar {
  background: #000 none repeat scroll 0 0;
  padding-bottom: 6px;
  padding-top: 6px;
}
.topadd {
  color: #f7f7f7;
  font-size: 14px;
}
.topadd {
  display: inline;
}
.top-right-info {
  text-align: right;
}

.main-top .container.d-lg-flex {
  padding-left: 0;
}
.bannerover {
  background: rgba(0, 0, 0, 0.9) none repeat scroll 0 0;
  color: #fff;
  padding: 35px 0 45px;
  text-align: center;
}
.stripbox > img {
  margin-bottom: 12px;
  width: 55px;
}
.stripbox > h3 {
  color: #fff;
  font-family: source sans pro;
  font-size: 25px;
  font-weight: 500;
}
.col-md-12.midtitle > h1 {
 font-size: 34px;
font-weight: 500;
line-height: 1.6;
margin-bottom: 30px;
text-transform: capitalize;
}
.stripbox {
 
  padding-bottom: 10px;
  padding-top: 10px;
}
.midstrip1 {
  background: #0F263A none repeat scroll 0 0;
  color: #fff;
  padding: 17px 0;
}
.midstrip1 h3 {
  font-size: 25px;
}
.stripbtn {
  background: #fff none repeat scroll 0 0;
  border: 1px solid transparent;
  color: #000;
  cursor: pointer;
  font-size: 17px;
  letter-spacing: 1px;
  padding: 6px 0;
  text-transform: capitalize;
  width: 100%;
}
.morebtn {
  background: #ff6633 none repeat scroll 0 0;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
  padding: 8px 20px;
  text-transform: capitalize;
}
.morebtn:hover{
    color: #ff6633;
    border: 1px solid #ff6633;
    background: #fff;
    transition: 0.4s;
}
.imgback {
 
	
}
.imgfront {

}
.imgbg {
  margin-top: 40px;
  position: relative;
}
.servicebox > img {
 border: 3px solid #fff;
width: 100%;
}
.feature h3 {
  text-align: center;
}
.col-md-12.whyusbox > h3 {
  text-align: center;
}

.copy-right-grids.text-center {
  color: #fff;
}
.copy-right-grids.text-center a{
    color: #FF6600
}

.img-fluid.logo-img {
  width: 200px;
}



.backimgbox,.imgcontentbox {
  display: inline-block;
  float: left;
}
.imgcontentbox {
  background: #0f263a none repeat scroll 0 0;
  left: 38%;
  padding: 50px 60px;
  position: absolute;
  right: 0;
  width: 62%;
}
.imgcontentbox h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}
.imgcontentbox p{
    color: #c6c6c6;
font-size: 14px;
}
.imgcontentbox .col-md-6 {
  margin-bottom: 35px;
}
.visionbox {
  background: #0f263a none repeat scroll 0 0;
}
.visiontext > h3 {
  color: #fff;
  font-family: lato;
  font-weight: 500;
  margin-bottom: 15px;
  text-align: center;
}
.col-md-4.visionmid {
  background: #dddddd none repeat scroll 0 0;
}
.visionmid .visiontext h3{
color: #000;
}
.visionmid .visiontext p{
color: #3d3d3d;
font-size: 15px;
}

.visiontext {
  padding: 35px 30px;
  text-align: center;
}
.visiontext p{
    color: #b9b9b9;
    font-size: 15px;
}

.featurebox {
  background: rgba(0, 0, 0, 0) url("../images/banner1.html") repeat scroll 0 0;
}
.featurebox h3 {
 color: #fff;
margin-bottom: 25px;
text-align: center;
}
.featurebox li {
  color: #ddd;
  margin-top: 10px;
}
.featurover {
  background: rgba(0, 0, 0, 0.75) none repeat scroll 0 0;
  padding: 40px 0;
}
.featurebox li {
  color: #e6e6e6;
  font-family: lato;
  font-size: 16px;
  letter-spacing: 1px;
  margin-top: 10px;
}










.background {
    background-repeat:no-repeat;
    /* custom background-position */
    background-position:50% 50%;
}

.fullscreen,
.content-a {
    width:100%;
    min-height:100%;
}
.not-fullscreen,
.not-fullscreen .content-a,
.fullscreen.not-overflow,
.fullscreen.not-overflow .content-a {
    height:100%;
    overflow:hidden;
}
.featurebox.no-fullscreen.background.parallax{

 background-attachment: fixed;
    background-image: url("images/banner1.html");
    background-position: center center !important;
    background-size: cover;
}

.benefitsbox {
  background: #ededed none repeat scroll 0 0;
  padding: 40px 0;
}

.blogbox > img {
  width: 100%;
}
.blog {
  padding: 65px 0;
}
.blogbox {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  padding: 15px;
}
.bloginfo > h3 {
  border-bottom: 2px solid #ccc;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 15px;
  padding-bottom: 10px;
}
.bloginfo > p {
  color: #535353;
  font-size: 15px;
}


.blogbox {
  background: #fff none repeat scroll 0 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  padding: 15px;
}
.salarytag {
  color: #000!important;
  font-family: source sans pro!important;
  font-size: 23px!important;
  text-transform: capitalize!important;
}
.careertext > p {
  color: #1a1a1a;
  font-size: 15px;
}
.careertext p a{
}
.career {
  padding: 60px 0;
}
.tabletag {
  color: #000;
  font-size: 17px;
  padding-bottom: 8px;
  text-transform: capitalize;
}
.modal-open {
  overflow: hidden!important;
  padding-right:0!important
}
.fade2 {
    transform: scale(0.9);
    opacity: 0;
    transition: all .2s linear;
    display: block !important;
}

.fade2.show {
    opacity: 1;
    transform: scale(1);
}


.coldbox {
  background: #fff none repeat scroll 0 0;
border-left: 4px solid #ff6633;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
margin-top: 15px;
padding: 20px;
}
.peas {
  background: #e6e6e6 none repeat scroll 0 0;
  padding: 30px 0;
}
.peasbox > p {
  background: #fff none repeat scroll 0 0;
  border-left: 3px solid #ff6633;
  color: #414141;
  font-size: 17px;
  margin-top: 0%;
  padding: 15px 15px 15px 30px;
}










.item {
	    display: none;
	    position: relative;
	    .transition(.6s ease-in-out left);
	}
	.productbox > h4 {
	  
	  font-size: 14px;
	  font-weight: 500;
	  
	}
	@media only screen and (min-device-width : 320px) and (max-device-width : 640px) {
	  .imgback {
	  display: none;
	}
	.imgfront {
	  left: 0 !important;
	  position: relative !important;
	  width: 100% !important;
	}
}