
html,
body {
    margin: 0;
    font-size: 100%;
    background: #fff;
    font-family: 'Poppins','Microsoft JhengHei', sans-serif;
}

html {
    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;
    font-family: 'Poppins','Microsoft JhengHei', sans-serif;
}

body img {
    max-width: 100%;
}

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;
    color: #323648;
}

li {
    list-style-type: none;
}

p {
    margin: 0;
    font-size: 17px;
    line-height: 2em;
    letter-spacing: 1px;
    color: #707579;
    font-family: 'Source Sans Pro','Microsoft JhengHei', sans-serif;
}

ul {
    margin: 0;
    padding: 0;
}


/*-- header --*/

header {
    position: absolute;
    z-index: 9;
    width: 100%;
}

.toggle,
[id^=drop] {
    display: none;
}

/* Giving a background-color to the nav container. */
nav {
    margin: 0;
    padding: 0;
}

.tab_border {
    margin-top:-1px;
    border: 1px solid #DEDEDE;
}


#logo a {
    float: left;
    font-size: .7em;
    display: initial;
    margin: 0;
    letter-spacing: 0px;
    /*color: #fff;*/
    font-weight: 600;
    padding: 0px 0;
    border: none;
}

    #logo a span.fa {
        color: #da9d40;
        display: block;
        text-align: center;
    }


/* 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: #ddd;*/
    text-transform: capitalize;
    letter-spacing: 1px;
    padding-left: 0;
    padding-right: 0;
    padding: 10px 13px;
    font-weight: 400;
    font-size: 16px;
}


nav ul li ul li:hover {
    background: #f8f9fa;
}

/* Background color change on Hover */
nav a:hover {
    color: gray;
}

.menu li.active a {
    /*color: #fff;*/
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    /* has to be the same number as the "line-height" of "nav a" */
    top: 30px;
    background: #fff;
    padding: 10px;
}

/* 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: #333;
        padding: 5px 10px;
        display: block;
    }

nav ul li span {
    color: #ddd;
    text-transform: capitalize;
    letter-spacing: 1px;
    padding-left: 0;
    padding-right: 0;
    font-weight: 600;
}

ul.menu li span.fa {
    color: #da9d40;
}
/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
    position: relative;
    top: -60px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left: 170px;
}

/* Change ' +' in order to change the Dropdown symbol */
li > a:only-child:after {
    content: '';
}


/* Media Queries
--------------------------------------------- */

@media all and (max-width : 991px) {

    #logo {
        display: block;
        padding: 0;
        width: 100%;
        text-align: center;
        float: none;
    }

    .menu li.active a {
        color: #da9d40;
    }

    nav ul li span {
        color: #333;
    }

    nav {
        margin: 0;
    }

        nav a {
            color: #333;
        }

    /* Hide the navigation menu by default */
    /* Also hide the  */
    .toggle + a,
    .menu {
        display: none;
    }

    /* Stylinf the toggle lable */
    .toggle {
        display: block;
        padding: 5px 15px;
        font-size: 20px;
        text-decoration: none;
        border: none;
        float: right;
        background-color: #da9d40;
        color: #fff;
        margin-bottom: 0;
        margin-top: 0.5em;
    }

    .menu .toggle {
        float: none;
        text-align: center;
        margin: auto;
        width: 30%;
        padding: 5px;
        font-weight: normal;
        font-size: 15px;
        letter-spacing: 1px;
    }

    .toggle:hover {
        color: #333;
        background-color: #fff;
    }

    /* Display Dropdown when clicked on Parent Lable */
    [id^=drop]:checked + ul {
        display: block;
        background: #fff;
        padding: 15px 0;
        width: 100%;
        text-align: center;
    }

    /* Change menu item's width to 100% */
    nav ul li {
        display: block;
        width: 100%;
        padding: 7px 0;
    }

    nav a {
        padding: 5px 0;
    }

        nav a:hover {
            color: #333;
        }

    .login-icon {
        text-align: center;
    }

    nav ul ul .toggle,
    nav ul ul a {
        padding: 0 40px;
    }

    nav ul ul ul a {
        padding: 0 80px;
    }

    nav a:hover,
    nav ul ul ul a {
        background-color: transparent;
    }

    nav ul li ul li .toggle,
    nav ul ul a,
    nav ul ul ul a {
        padding: 14px 20px;
        color: #FFF;
        font-size: 17px;
    }


    nav ul li ul li .toggle,
    nav ul ul a {
        background-color: #fff;
    }

    nav ul ul li a {
        font-size: 15px;
    }

    ul.inner-ul {
        padding: 0 !important;
    }
    /* Hide Dropdowns by Default */
    nav ul ul {
        float: none;
        position: static;
        color: #ffffff;
        /* has to be the same number as the "line-height" of "nav a" */
    }

        /* Hide menus on hover */
        nav ul ul li:hover > ul,
        nav ul li:hover > ul {
            display: none;
        }

        /* Fisrt Tier Dropdown */
        nav ul ul li {
            display: block;
            width: 100%;
            padding: 0;
        }

        nav ul ul ul li {
            position: static;
            /* has to be the same number as the "width" of "nav ul ul li" */
        }
}

@media all and (max-width : 330px) {

    nav ul li {
        display: block;
        width: 94%;
    }
}

.user span.fa {
    font-size: 25px;
    color: #fff;
}
/*-- //header --*/

/* banner style */
.banner_w3lspvt {
    position: relative;
    z-index: 1;
}

.banner-top {
    background: url(../images/banner7.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
}

.banner-top1 {
    background: url(../images/banner1.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
}

.banner-top2 {
    background: url(../images/banner2.jpg) no-repeat 0px 0px;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
}

.banner-top3 {
    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;
}

.w3layouts-banner-info {
    padding-top: 17em;
    text-align: center
}

    .w3layouts-banner-info h3 {
        text-shadow: 3px 4px 6px rgba(45, 45, 45, 0.15);
        font-size: 3.3em;
        letter-spacing: 3px;
        color: #fff;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 68px;
    }

        .w3layouts-banner-info h3 span {
            display: block;
        }

            .w3layouts-banner-info h3 span.clr {
                display: inline-block;
                color: #da9d40;
            }

    .w3layouts-banner-info h4 {
        color: #eee;
        margin: 1em 0;
        letter-spacing: 4px;
        text-transform: capitalize;
        font-weight: 200;
    }

    .w3layouts-banner-info i {
        vertical-align: middle;
    }

.banner-top,
.banner-top1,
.banner-top2,
.banner-top3 {
    min-height: 750px;
}

.overlay {
    min-height: 750px;
    background: rgba(0, 0, 0, 0.3);
}

.overlay1 {
    min-height: 750px;
    background: rgba(0, 0, 0, 0.5);
}

.button-style {
    padding: 13px 30px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 2px;
    display: inline-block;
    border: 1px solid #fff;
    background: rgba(226, 139, 37, 0.5);
}

    .button-style:hover {
        color: #fff;
    }

/*-- //banner style --*/

/*-- about --*/
.about-grids h2 {
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 50px;
}

.form-style-agile input[type="text"], .form-style-agile input[type="email"], .form-style-agile input[type="password"], select {
    outline: none;
    font-size: 15px;
    border: none;
    color: #666;
    letter-spacing: 0.5px;
    padding: 13px 15px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
    background: #f6f6f6;
}

.about-grids .padding {
    background: #fff;
    border: 6px solid #f6f6f6;
    padding: 3em 2em;
    position: relative;
}

.padding img {
    width: 30%;
    margin: 0 auto 1em;
    display: block;
    position: absolute;
    top: -7%;
    left: 35%;
    background: #fff;
    padding: 0 15px;
}

button.book-btn {
    color: #da9d40;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    border-radius: 0;
    text-decoration: underline;
    cursor: pointer;
    letter-spacing: 1px;
    -webkit-transition: 1.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
}

h5.plane {
    margin: .5em 0;
    letter-spacing: 4px;
    text-transform: capitalize;
    font-weight: 200;
    font-size: 30px;
}

/*-- //about --*/

/*-- about bottom --*/
.banner-about {
    padding: 3em 4em;
    background: #f6f6f6;
}

    .banner-about h4 {
        font-size: 28px;
        letter-spacing: 2px;
        text-transform: capitalize;
    }

h5.bottom {
    margin: .5em 0;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 200;
    font-size: 24px;
}

.bottom-left {
    background: url(../images/left.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
}

.banner-about span.fa {
    font-size: 40px;
    color: #da9d40;
}

.bg-image-left {
    background: url(../images/4.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    min-height: 450px;
    margin: 5px;
}

.bg-image-right {
    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;
    min-height: 250px;
    margin: 5px;
}

.bg-image-bottom1 {
    background: url(../images/3.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    min-height: 190px;
    margin: 5px;
}

.bg-image-bottom2 {
    background: url(../images/banner4.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    min-height: 190px;
    margin: 5px;
}

.bg-image-left h4 {
    padding-top: 350px;
    text-align: center;
    color: #fff;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 24px;
    background: rgba(0, 0, 0, 0.4);
    min-height: 450px;
}

.bg-image-right h4 {
    padding-top: 170px;
    text-align: center;
    color: #fff;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 24px;
    background: rgba(0, 0, 0, 0.4);
    min-height: 250px;
}

.bg-image-bottom1 h4, .bg-image-bottom2 h4 {
    padding-top: 120px;
    text-align: center;
    color: #fff;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 22px;
    background: rgba(0, 0, 0, 0.4);
    min-height: 190px;
}
/*-- //about bottom --*/


/*-- services --*/

.service-icon span.fa {
    font-size: 40px;
    color: #da9d40;
}

.service-grid h4 {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 2px;
}
/*-- //services --*/


/*-- facts --*/
.facts {
    background: #f6f6f6;
}

    .facts span.fa {
        display: block;
        font-size: 40px;
        color: #da9d40;
        margin: 0;
        font-weight: normal;
    }

    .facts span {
        font-size: 30px;
        margin: .5em 0;
        display: block;
        font-weight: 600;
    }

    .facts h4 {
        text-transform: uppercase;
        font-size: 18px;
        letter-spacing: 1px;
        line-height: 28px;
        color: #666;
        font-weight: 400;
    }

.stats-grid {
    background: #fff;
    padding: 1.5em 2em;
    text-align: center;
    border-right: 6px solid #f6f6f6;
}
/*-- //facts --*/

/*-- team --*/

h3.heading, h2.heading {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 50px;
}

/*********************** 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: #000;
        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;
        color: #da9d40;
        margin: 0 0 10px;
        text-transform: uppercase;
    }

    .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: #da9d40;
                border-radius: 50%;
                font-size: 15px;
                color: #fff;
                line-height: 35px;
                margin-right: 5px;
                transition: all .4s ease-in-out 0s
            }

.box14 .icon li,
.box14 .post {
    display: inline-block
}

@media only screen and (max-width:990px) {
    .box13 {
        margin-bottom: 30px
    }
}

/*-- //team  --*/


/*-- footer top --*/

.footer-top {
    background: #da9d40;
}

h4.footer-top-text {
    font-size: 2em;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1.4em;
    font-weight: 200;
}

.footer-top a.serv_link {
    font-size: 15px;
    letter-spacing: 2px;
    color: #da9d40;
    padding: 14px 25px;
    border-radius: 0px;
    background: #fff;
    display: inline-block;
}
/*-- //footer top --*/


/*-- footer --*/
footer {
    background: #E28B25;
    color: #fff;
}

.copyright {
    background: #171717;
}

.social ul {
    list-style-type: none;
}

    .social ul li a {
        display: block;
        background: #191919;
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 50%;
    }

    .social ul li span.fa {
        font-size: 13px;
        color: #888;
        line-height: 40px;
    }

.copyright p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

    .copyright p a {
        color: #bbb;
    }

.footer-logo a.navbar-brand {
    font-size: 30px;
    display: inline-block;
    margin: 0;
    letter-spacing: 0px;
    color: #fff;
    font-weight: 600;
    border: none;
}

    .footer-logo a.navbar-brand span.fa {
        display: block;
        color: #da9d40
    }

.footer-middle p a {
    color: #777;
    font-size: 15px;
}

footer p {
    font-family: 'Poppins', sans-serif;
}

.address p {
    max-width: 320px;
    margin-left: auto;
}

.footer-icon span.fa {
    font-size: 55px;
    color: #da9d40;
    /*transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);*/
}

footer p span.fa {
    margin-right: 10px;
    font-size: 20px;
}

/*-- //footer --*/


/*-- inner page banner --*/

.inner-banner {
    background: url(../images/banner1.jpg) no-repeat center;
    background-size: cover;
    min-height: 250px;
}

.inner-banner-overlay {
    min-height: 250px;
    background: rgba(0, 0, 0, 0.6);
}
/*-- inner page banner --*/


/*-- page details --*/

.inner-banner h3 {
    margin-bottom: 1em;
    margin-top: 1em;
    font-size: 40px;
    letter-spacing: 2px;
    text-transform: capitalize;
    font-weight: 600;
}

li.breadcrumb-item a {
    color: #da9d40;
}

.breadcrumb-agile {
    background-color: #e9ecef;
    margin-bottom: -15px;
}
/*-- //page details --*/


/*-- inner page about secttion --*/

.inner-about h4 {
    font-size: 24px;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.inner-about span.fa {
    font-size: 40px;
    color: #da9d40;
}
/*-- //inner page about secttion --*/


/*-- discount section --*/
.overlay-all {
    background: rgba(0, 0, 0, 0.6);
}

.discount-grid {
    background: url(../images/banner2.jpg) no-repeat center;
    background-size: cover;
}

    .discount-grid p {
        color: #bbb;
    }

    .discount-grid h2 {
        font-size: 3em;
        letter-spacing: 2px;
        color: #fff;
        line-height: 1.4em;
        font-weight: 200;
    }

    .discount-grid a {
        font-size: 15px;
        letter-spacing: 2px;
        color: #fff;
        padding: 14px 25px;
        border-radius: 0px;
        background: #da9d40;
        display: inline-block;
        margin-top: 20px;
    }

.offer-grid {
    max-width: 750px;
    margin: auto;
}
/*-- //discount section --*/

/* testimonials */
.testi {
    background: #f6f6f6;
}

h6.b-w3ltxt {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

    h6.b-w3ltxt span {
        font-weight: normal;
        color: #777;
        text-transform: capitalize;
        font-size: 16px;
    }

.testi-cgrid p {
    line-height: 1.8em;
}

    .testi-cgrid p span.fa {
        color: #da9d40;
    }

.testi-icon img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    border: 5px solid #f6f6f6;
    background: #eee;
}

.testi-icon span.fa {
    font-size: 1.4em;
}

.testi-cgrid {
    background: #fff;
    padding: 2em 1em;
}

.border-right-grid {
    border-right: 8px solid #f6f6f6;
}

.border-left-grid {
    border-left: 8px solid #f6f6f6;
}
/* //testimonials */


/*-- pricing grids --*/
.pricing-grids .padding {
    background: #fff;
    border: 6px solid #f6f6f6;
    padding: 3em 2em;
    position: relative;
}

.border-dot {
    padding-bottom: 10px;
    border-bottom: 2px dotted #555;
}

.menu-item-name h6 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-item-price h6 {
    font-size: 18px;
    color: #da9d40;
    letter-spacing: 1px;
}

.menu-item-description p {
    font-size: 15px;
}

/*-- //pricing grids --*/
/*-- NEWS --*/
h4.heading span {
    color: #b9bcc2;
}

section.blog_w3l {
    background: #efefef;
}

    section.blog_w3l h5 {
        display: block;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 0.065em;
        font-size: 0.9em;
        color: #696969;
        margin: 0 0 0.25em 0;
    }

    section.blog_w3l h3 {
        text-transform: uppercase;
        font-weight: 800;
        letter-spacing: 0.04em;
        color: #404248;
        font-size: 1.35em;
    }

        section.blog_w3l h3 a {
            color: #404248;
        }

    section.blog_w3l img {
        border-radius: 5px;
    }

    section.blog_w3l p {
        font-size: 16px;
        line-height: 1.8em;
        color: #777;
    }

.blog_w3l_left1, .blog_w3l_left2 {
    border-bottom: solid 1px #dbdbdb;
    margin: 0 0 2.75em 0;
    padding: 0 0 2.75em 0;
}

.blog_w3l_left3 {
    margin: 0 0 0em 0;
    padding: 0 0 0em 0;
}

.blog_w3l-1 {
    padding-left: 0;
}
/*-- //NEWS --*/
/*--matter--*/
.advertise-count {
    background: url(../../Front/images/left.jpg) no-repeat center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
}

.order-show-w3ls {
    /*padding: 0em 40em 0em 0em;*/
}

    .about-two-grids h2, .order-show-w3ls h4, .bolg-right-grids h4 a {
        font-size: 36px;
        color: #000;
        text-transform: capitalize;
        text-shadow: 0px 0px 10px #fff, 0px 0px 10px #fff, 0px 0px 10px #fff, 0px 0px 10px #fff, 0px 0px 10px #fff, 0px 0px 10px #fff, 0px 0px 10px #fff;
    }
/*--//matter--*/
/*-- vedio --*/
.w3l_head {
    border-bottom: 6px double #dbdbdb;
    padding-bottom: 2.5em;
}

h3.heading {
    font-size: 2.2em;
    color: #52575c;
    line-height: 1em;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

p.subs {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.065em;
    font-size: 1em;
    color: #696969;
    width: 86%;
}

.news p {
    font-size: 16px;
    line-height: 1.8em;
    color: #777;
}

section.news img {
    border-radius: 5px;
}

p.subs span {
    color: #404248;
    font-weight: 800;
}

.news_btm span {
    color: #b9bcc2;
    font-size: 2.5em;
}

.news_btm h6 {
    font-size: 1.25em;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #404248;
    text-align: left;
}

.news_btm p {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.065em;
    font-size: 0.9em;
    color: #696969;
    text-align: left;
}

.news_btm_rgt {
    padding-left: 0;
}

section.news {
    background: #efefef;
}
/*-- //vedio --*/
/* gallery page */

.gal-img {
    padding: 5px;
    margin-bottom: 2em;
}

    .gal-img img, .popup img {
        width: 100%;
    }

    .gal-img p {
        line-height: 25px;
        margin-top: 5px;
    }

.popup p {
    line-height: 25px;
    margin-top: 15px;
}

.gal-img h5 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 20px;
    margin-top: 15px;
}
/* popup */
.popup-effect {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0ms;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
}

    .popup-effect:target {
        visibility: visible;
        opacity: 1;
    }

.popup {
    background: #fff;
    border-radius: 4px;
    max-width: 500px;
    position: relative;
    margin: 8em auto;
    padding: 3em 2em;
    z-index: 999;
}

    .popup .close {
        position: absolute;
        top: 5px;
        right: 15px;
        transition: all 200ms;
        font-size: 30px;
        font-weight: bold;
        text-decoration: none;
        color: #000;
    }

/* //popup */
/* //gallery page */
.Btn_g {
    font-size: 15px;
    letter-spacing: 2px;
    color: #fff;
    padding: 14px 25px;
    border-radius: 5px;
    background: #da9d40;
    display: inline-block;
    margin-top: 20px;
    border: 0px solid black;
    cursor: pointer;
}

.btn-u:hover {
    color: #fff;
    background: #5fb611;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.toggle, [id^=drop] {
    display: none;
}

.log-page {
    width: 310px;
    padding: 20px;
    margin: 0 auto;
    background: #fcfcfc;
    border: solid 1px #eee;
    box-shadow: 0 0 7px #eee;
}

/*-- contact page --*/
.contact input[type="text"], .contact input[type="email"], .contact select, .contact textarea {
    display: block;
    width: 100%;
    margin-bottom: 25px;
    padding: 15px 20px;
    outline: none;
    font-size: 15px;
    font-weight: 400;
    color: #777;
    background: #f6f6f6;
    text-transform: capitalize;
    background-image: none;
    letter-spacing: 1px;
    -webkit-appearance: none;
    transition: .3s ease-in-out;
    border: none;
    border-bottom: 1px solid #ccc;
}

.contact textarea {
    height: 150px;
}

.contact button.btn {
    background: #da9d40;
    font-size: 15px;
    display: inline-block;
    color: #fff;
    border: 2px solid;
    padding: 13px 40px;
    letter-spacing: 2px;
    margin-top: 0px;
    cursor: pointer;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

.contact label {
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .contact label span.fa {
        color: #da9d40;
    }

.map iframe {
    border: none;
    outline: none;
    height: 350px;
    width: 100%;
}
/*-- //contact page --*/


/*-- move top --*/
a.move-top {
    width: 34px;
    height: 34px;
    background: url(../images/move-top.png) no-repeat;
    display: inline-block;
    position: fixed;
    bottom: 2%;
    right: 2%;
    z-index: 0;
}
/*-- //move top --*/




/*-- Responsive design --*/

@media(max-width:1366px) {
    .banner-top, .banner-top1, .banner-top2, .banner-top3, .overlay, .overlay1 {
        min-height: 750px;
    }
}

@media(max-width:1280px) {
    .banner-top, .banner-top1, .banner-top2, .banner-top3, .overlay, .overlay1 {
        min-height: 720px;
    }

    .banner-about {
        padding: 3em 3em;
    }

    h5.bottom {
        letter-spacing: 4px;
    }

    h5.plane {
        letter-spacing: 3px;
        font-size: 28px;
    }

    .about-grids h2 {
        font-size: 36px;
        letter-spacing: 1px;
        line-height: 40px;
    }

    h4.footer-top-text {
        font-size: 1.9em;
    }
}

@media(max-width:1080px) {
    .w3layouts-banner-info h3 {
        font-size: 3em;
    }

    .w3layouts-banner-info {
        padding-top: 14em;
    }

    .banner-top, .banner-top1, .banner-top2, .banner-top3, .overlay, .overlay1 {
        min-height: 650px;
    }

    h4.footer-top-text {
        font-size: 1.8em;
        letter-spacing: 1px;
    }

    h5.plane {
        letter-spacing: 2px;
        font-size: 26px;
    }

    .about-grids h2 {
        font-size: 32px;
        letter-spacing: 1px;
        line-height: 27px;
    }

    .banner-about {
        padding: 3em 2em;
    }

        .banner-about h4 {
            font-size: 24px;
            letter-spacing: 1px;
            text-transform: capitalize;
        }

    h5.bottom {
        letter-spacing: 2px;
        font-size: 22px;
    }

    .service-grid h4 {
        font-size: 20px;
        letter-spacing: 1px;
    }

    p {
        font-size: 16px;
    }

    .bg-image-right h4, .bg-image-left h4, .bg-image-bottom1 h4, .bg-image-bottom2 h4 {
        letter-spacing: 3px;
        font-size: 21px;
    }

    h3.heading, h2.heading {
        font-size: 35px;
        letter-spacing: 1px;
    }

    .inner-about h4 {
        font-size: 22px;
        letter-spacing: 0px;
    }
}

@media(max-width:1024px) {
    nav a {
        font-size: 15px;
    }

    #logo a {
        font-size: .65em;
    }

    .facts h4 {
        font-size: 16px;
    }

    .facts span {
        font-size: 25px;
    }

    .footer-logo a.navbar-brand {
        font-size: 27px;
    }

    .inner-banner, .inner-banner-overlay {
        min-height: 200px;
    }

    .discount-grid h2 {
        font-size: 2.8em;
    }

    .offer-grid {
        max-width: 700px;
    }

    h6.b-w3ltxt {
        font-size: 18px;
        letter-spacing: 1px;
    }
}

@media(max-width:991px) {
    .w3layouts-banner-info {
        padding-top: 12em;
    }

    h3.heading {
        font-size: 36px;
    }

    .banner-top, .banner-top1, .banner-top2, .banner-top3, .overlay, .overlay1 {
        min-height: 600px;
    }

    .w3layouts-banner-info h3 {
        font-size: 2.8em;
    }

    .bottom-left {
        min-height: 350px;
    }

    .banner-about {
        padding: 3em 4em;
    }

    .bg-image-right h4, .bg-image-left h4, .bg-image-bottom1 h4, .bg-image-bottom2 h4 {
        letter-spacing: 2px;
        font-size: 19px;
    }

    .address p {
        max-width: 100%;
        font-size: 15px;
    }

    .footer-icon span.fa {
        font-size: 50px;
    }

    .stats-grid {
        padding: 1.5em 1em;
    }

    .footer-top a.serv_link {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .map iframe {
        height: 300px;
    }
}

@media(max-width:800px) {
    .w3layouts-banner-info h3 {
        font-size: 2.6em;
        line-height: 60px;
    }

    .w3layouts-banner-info h4 {
        letter-spacing: 2px;
    }

    .button-style {
        padding: 11px 30px;
    }

    .discount-grid h2 {
        font-size: 2.5em;
    }

    .inner-banner, .inner-banner-overlay {
        min-height: 180px;
    }

    .map iframe {
        height: 260px;
    }
}

@media(max-width:736px) {
    .w3layouts-banner-info h3 {
        font-size: 2.5em;
        line-height: 55px;
        letter-spacing: 2px;
    }

    .w3layouts-banner-info h4 {
        letter-spacing: 2px;
        font-size: 22px;
    }

    .banner-top, .banner-top1, .banner-top2, .banner-top3, .overlay, .overlay1 {
        min-height: 560px;
    }

    h5.plane {
        letter-spacing: 1px;
        font-size: 24px;
    }

    .about-grids h2 {
        font-size: 30px;
    }

    .bg-image-left h4 {
        padding-top: 170px;
        min-height: 250px;
    }

    .bg-image-left {
        min-height: 250px;
    }

    .footer-icon span.fa {
        font-size: 40px;
    }

    .address, .footer-icon, .phone {
        text-align: center;
    }

    .discount-grid h2 {
        font-size: 2em;
    }
}

@media(max-width:600px) {
    .w3layouts-banner-info h3 {
        font-size: 2.3em;
        line-height: 50px;
        letter-spacing: 1px;
    }

    .w3layouts-banner-info {
        padding-top: 11em;
    }

        .w3layouts-banner-info h4 {
            letter-spacing: 1px;
            font-size: 20px;
        }

    .banner-top, .banner-top1, .banner-top2, .banner-top3, .overlay, .overlay1 {
        min-height: 500px;
    }

    .about-grids h2 {
        font-size: 26px;
    }

    h5.plane {
        letter-spacing: 1px;
        font-size: 21px;
    }

    .banner-about {
        padding: 3em 2em;
    }

    .copyright p {
        font-size: 15px;
    }

    .inner-banner, .inner-banner-overlay {
        min-height: 150px;
    }

    .contact label {
        font-size: 15px;
    }

    .contact input[type="text"], .contact input[type="email"], .contact select, .contact textarea {
        padding: 13px 20px;
        font-size: 14px;
    }
}

@media(max-width:568px) {
    .stats-grid {
        padding: 1.5em 1em;
        border-right: none;
        border-bottom: 6px solid #f6f6f6;
    }

    .button-style {
        font-size: 14px;
    }

    .inner-heading {
        margin: 0;
    }

    .fact-grid-main {
        margin: 0;
    }

    .team-grid {
        margin: 0 4em;
    }

    .box13 {
        margin-bottom: 0px;
    }

    h3.heading {
        font-size: 32px;
    }

    .testi-icon img {
        width: 25%;
    }

    .news-grids.gal {
        width: 90%;
        margin: auto;
    }
}

@media(max-width:480px) {
    .w3layouts-banner-info h3 {
        font-size: 2em;
        line-height: 45px;
    }

    .w3layouts-banner-info h4 {
        letter-spacing: 1px;
        font-size: 18px;
        margin: .5em 0 0;
    }

    .banner-top, .banner-top1, .banner-top2, .banner-top3, .overlay, .overlay1 {
        min-height: 450px;
    }

    #logo a {
        font-size: .6em;
    }

    .social ul li a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .social ul li span.fa {
        font-size: 12px;
        line-height: 35px;
    }

    h4.footer-top-text {
        font-size: 1.5em;
    }

    .inner-banner, .inner-banner-overlay {
        min-height: 130px;
    }

    .discount-grid h2 {
        font-size: 1.8em;
    }

    .testi-icon img {
        width: 30%;
    }

    .popup {
        margin: 8em 1em;
        padding: 3em 1em 2em;
    }

    .contact button.btn {
        font-size: 14px;
        padding: 11px 35px;
        letter-spacing: 1px;
    }
}

@media(max-width:415px) {
    .copyright {
        padding: 0 15px;
    }

    .footer-icon span.fa {
        font-size: 30px;
    }

    .footer-logo a.navbar-brand {
        font-size: 24px;
    }

    h4.footer-top-text {
        font-size: 1.4em;
        letter-spacing: 0px;
    }

    .footer-top a.serv_link {
        font-size: 14px;
        letter-spacing: 1px;
        padding: 12px 20px;
    }

    .team-grid {
        margin: 0 1em;
    }

    h3.heading, h2.heading {
        font-size: 30px;
        letter-spacing: 1px;
    }

    h5.bottom {
        letter-spacing: 1px;
        font-size: 20px;
    }

    .about-grids h2 {
        font-size: 22px;
    }

    .csslider > .arrows {
        width: 99% !important;
    }

    .w3layouts-banner-info h3 {
        font-size: 1.8em;
    }

    .w3layouts-banner-info h4 {
        font-size: 17px;
    }

    .banner-about span.fa {
        font-size: 30px;
    }

    .banner-about {
        padding: 2em 1em;
    }

    .inner-about span.fa {
        font-size: 30px;
    }

    .inner-about h4 {
        font-size: 22px;
        line-height: 30px;
    }

    .discount-grid a {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .discount-grid h2 {
        font-size: 1.6em;
    }

    .testi-icon img {
        width: 35%;
    }

    li.breadcrumb-item a, .breadcrumb-item.active {
        font-size: 14px;
    }
}

@media(max-width:384px) {
    .team-grid {
        margin: 0 0em;
    }

    .w3layouts-banner-info h3 {
        font-size: 1.6em;
        line-height: 40px;
        letter-spacing: 0px;
    }

    .w3layouts-banner-info {
        padding-top: 10em;
    }

    .about-grids h2 {
        font-size: 20px;
    }

    .inner-about h4 {
        font-size: 20px;
        line-height: 28px;
    }

    .testi-icon img {
        width: 40%;
    }

    .copyright p {
        font-size: 14px;
    }

    .address p, .footer-icon p, .phone p, .phone p a {
        font-size: 14px;
    }

    .menu-item-name h6 {
        font-size: 15px;
    }

    .menu-item-price h6 {
        font-size: 17px;
    }

    .contact label {
        font-size: 14px;
    }

    .contact input[type="text"], .contact input[type="email"], .contact select, .contact textarea {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media(max-width:375px) {
}

@media(max-width:320px) {
}

/*-- //Responsive design --*/
