/*@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,600,300);*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*
font-family: 'Open Sans', sans-serif;
--------------------------------------- */

@font-face {
    font-weight: bold;
    font-style: normal;
}
/*
===================================
Start Basic Style
===================================
*/

.p-6 {
    padding-top: 90px;
}

* {
    margin: 0;
    padding: 0;
    position: relative;
}

.box-show {
    text-align: center
}

body {
    margin: 0 auto;
    color: #606060;
    font-family: "Poppins", serif !important;
}


/* Start Typography
-----------------------*/
p {
    color: #000000;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 15px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 15px 0;
}

h1 {
    font-size: 52px;
    line-height: 60px;
    color: #292929;
}

h2 {
    font-size: 45px;
    line-height: 53px;
    color: #e7d077;
    /*text-transform: uppercase;  Commented, Buttx on 26-June-2023 */
    font-weight: bold;
}

h3 {
    font-size: 38px;
    line-height: 44px;
    color: #009933;
    text-transform: uppercase;
}

h4 {
    font-size: 22px;
    line-height: 28px;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
}

h5 {
    font-size: 24px;
    line-height: 32px;
    color: #000;
    margin: 0 auto;
}

h6 {
    font-size: 20px;
    color: #c10942;
}

a {
    text-decoration: none;
    color: #ffffff;
    transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

    a:hover {
        text-decoration: none;
    }

    a:focus {
        text-decoration: none;
    }
/* End Typography
-----------------------*/


/* Start Form Fields
-----------------------*/
/*input[type="text"], 
input[type="tel"], 
input[type="email"],
textarea {
    width: 80%;
    border-radius: 4px;
    border: 1px solid #FFF;
    background-color: transparent;
    padding: 12px 18px;
    margin: 0px 0;
    margin-bottom: 0px;
    color: #606060;
    font-size: 16px;
    font-weight: 400;
}*/

input[type="text"] {
    top: 0px;
    /* width: 45px; */
}

input[type="tel"] {
    /*background:url(../images/tel_ico.png) no-repeat 98% 14px rgba(255, 255, 255, 0.7);*/
}

input[type="email"] {
    /*background:url(../images/email_ico.png) no-repeat 98% 14px rgba(255, 255, 255, 0.7);*/
}

textarea {
    /*background:url(../images/message_ico.png) no-repeat 98% 14px rgba(255, 255, 255, 0.7);*/
}

/*input[type="submit"] {
    width: 100%;
    background: #17a3eb;
    border-top: 2px solid #124d75;
    text-align: center;
    color: #fff;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding: 4px;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 50px;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}*/

input[type="submit"]:active {
    background: #000000;
    color: #FFF;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
    background: rgb(255, 255, 255);
    outline: none;
}

input::-webkit-input-placeholder {
    color: #666;
    font-size: 16px;
    opacity: 1;
}


input::-moz-placeholder {
    color: #666;
    font-size: 16px;
    opacity: 1;
}

input:-moz-placeholder {
    color: #666;
    font-size: 16px;
    opacity: 1;
}

input:-ms-input-placeholder {
    color: #666;
    font-size: 16px;
    opacity: 1;
}

textarea:-ms-input-placeholder {
    color: #666;
    font-size: 16px;
    opacity: 1;
}

textarea:-moz-placeholder {
    color: #666;
    font-size: 16px;
    opacity: 1;
}

textarea::-webkit-input-placeholder {
    color: #666;
    font-size: 16px;
    opacity: 1;
}

textarea::-moz-placeholder {
    color: #666;
    font-size: 16px;
    opacity: 1;
}

input:focus::-webkit-input-placeholder {
    color: #666;
    outline: none;
}

input:focus::-moz-placeholder {
    color: transparent;
    outline: none;
}

input:focus:-moz-placeholder {
    color: #666;
    outline: none;
}

input:focus:-ms-input-placeholder {
    color: #666;
    outline: none;
}

textarea:focus:-ms-input-placeholder {
    color: #666;
    outline: none;
}

textarea:focus:-moz-placeholder {
    color: #666;
    outline: none;
}

textarea:focus::-webkit-input-placeholder {
    color: #666;
}

textarea:focus::-moz-placeholder {
    color: #666;
    outline: none;
}
/* End Form Fields
-----------------------*/


/* Start Scroll Go To Top
---------------------------*/
.scrollup {
    width: 40px;
    height: 40px;
    opacity: 0.3;
    filter: alpha(opacity=30);
    position: fixed;
    bottom: 25px;
    right: 16px;
    display: none;
    text-indent: -9999px;
    background: url('../images/icon_top.png') no-repeat;
}

    .scrollup:hover {
        opacity: 0.6;
    }
/* End Scroll Go To Top
-------------------------*/

/*header , 
section.class_name , 
section.class_name , 
section.class_name , 
section.class_name , 
section.class_name , 
section.class_name , 
footer  {
    float:left;
    width:100%; 
}
*/
.clear {
    clear: both;
}

/* Start General Class for Center Container */
.col-center {
    margin: 0 auto !important;
    float: none !important;
}
/* End General Class for Center Container */


/* 
===================================
Start General Style
=================================== 
*/

/* Start Header Style 
------------------------*/
.menu {
    padding: 0 0 0 0;
}

    .menu nav ul li i, .menu nav ul li i:hover {
        color: #0956a5;
        margin: 0;
        line-height: 0;
    }

.main-nav {
    margin: auto;
    width: 100%;
    margin: 0px 0 0 0;
}

    .main-nav ul {
        z-index: 999;
    }

        .main-nav ul li {
            float: left;
            list-style: none;
            position: relative;
            text-align: center;
            -webkit-transition: all 1s ease 0s;
            -moz-transition: all 1s ease 0s;
            -ms-transition: all 1s ease 0s;
            -o-transition: all 1s ease 0s;
            transition: all 1s ease 0s;
            margin: 30px 0 -10px 15px;
        }

            .main-nav ul li a {
                font-size: 15px;
                color: #000;
                line-height: 0.7;
                -moz-transform: matrix( 0.99957727990745,0,0,0.99925247056521,0,0);
                -webkit-transform: matrix( 0.99957727990745,0,0,0.99925247056521,0,0);
                -ms-transform: matrix( 0.99957727990745,0,0,0.99925247056521,0,0);
                /*border-right:1px dashed #c9c8c9;*/
                text-decoration: none;
                -webkit-transition: all 1s ease 0s;
                -moz-transition: all 1s ease 0s;
                -ms-transition: all 1s ease 0s;
                -o-transition: all 1s ease 0s;
                transition: all 1s ease 0s;
                /* padding: 0 20px; */
            }

    /*.main-nav > ul > li:after {
    content: " | ";
    font-style: normal;
    text-decoration: inherit;
    color: #000;
    font-size: 20px;
    position: absolute;
    top: -2px;
    right: 0;
}*/
    .main-nav > ul > li:last-child:after {
        display: none;
    }

    .main-nav ul li a .fa-caret-down,
    .main-nav ul li a .fa-caret-down:hover {
        font-size: 12px;
        color: #45bead;
    }

    .main-nav ul ul li {
        padding-bottom: 0;
    }

        .main-nav ul ul li a {
            border-right: none;
            color: #000;
        }

    .main-nav ul li:last-child a {
        border-right: none;
    }

    .main-nav ul li.active a {
        color: #000;
    }

    .main-nav ul li a:hover,
    .main-nav ul li a:active,
    .main-nav ul li a:focus {
        color: #e7d077;
        background-color: #000;
        border-radius: 5px;
    }

        .main-nav ul li a:hover span {
            visibility: visible;
        }

    .main-nav ul li a span {
        visibility: hidden;
        display: block;
        line-height: 8px;
        margin-top: 0px;
        font-size: 20px;
        color: #45bead;
    }

        .main-nav ul li a span i,
        .main-nav ul li a span i:hover {
            color: #45bead;
        }

    .main-nav ul li.active a span {
        visibility: visible;
    }

    .main-nav ul ul a:hover {
        color: #000;
        text-indent: 10px;
        background: #fff;
    }

    .main-nav li:hover ul {
        display: block;
        opacity: 1;
        visibility: visible;
        margin-top: 0px;
    }

    .main-nav ul li ul {
        background: #45BEAD;
        visibility: hidden;
        width: auto;
        position: absolute;
        text-align: center;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -ms-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        opacity: 0;
        margin-top: 15px;
    }

    .main-nav ul ul li {
        border-top: 1px solid #ccc;
        display: block;
        float: none;
        margin: 0;
        list-style: none;
    }

        .main-nav ul ul li:last-child a {
            background: none;
        }

            .main-nav ul ul li:last-child a:hover {
                background: #fff;
            }

    .main-nav ul li.sub_menu a {
        padding-right: 32px;
    }

        .main-nav ul li.sub_menu a:before {
            border-left: 6px solid rgba(0, 0, 0, 0);
            border-right: 6px solid rgba(0, 0, 0, 0);
            border-top: 6px solid #FFF;
            content: "";
            height: 0;
            position: absolute;
            right: 10px;
            top: 37px;
            width: 0;
            z-index: 999;
        }

    .main-nav ul ul a,
    .main-nav ul ul a:link {
        font-size: 12px;
        line-height: 40px;
        padding: 0 15px;
        min-width: 200px;
        text-align: left;
    }

    .main-nav ul:after {
        content: '.';
        display: block;
        clear: both;
        visibility: hidden;
        line-height: 0;
        height: 0;
    }

    .main-nav ul,
    .main-nav ul ul {
        /* padding: 0 24px; */
        margin: 0;
        list-style: none;
        line-height: 1;
    }

        .main-nav ul li ul ul {
            margin: -51px 0px 0px 188px !important;
        }

        .main-nav ul li:hover ul ul,
        .main-nav ul li:hover ul ul ul,
        .main-nav ul li.sfhover ul ul,
        .main-nav ul li.sfhover ul ul ul {
            left: -999em;
        }

        .main-nav ul li:hover ul,
        .main-nav ul li li:hover ul,
        .main-nav ul li li li:hover ul,
        .main-nav ul li.sfhover ul,
        .main-nav ul li li.sfhover ul,
        .main-nav ul li li li.sfhover ul {
            left: auto;
        }

        .main-nav ul li li li:hover ul {
            top: 30px;
        }
/* End Header Style 
------------------------*/
/*owl slider start css*/
#owl-demo .item img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 700px;
}


.client_logos.owl-controls.clickable {
    /* display: none !important; */
    position: absolute;
    top: 250px !important;
    right: 0;
    left: 0;
    bottom: 0;
}
/*start heather css*/
header {
    padding: 7px 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
}


.hed-bg {
    z-index: 7;
    margin: 0 0px;
    padding: 0 0px;
}

.top-contact ul {
    margin: 15px 0 0 0;
}

.top-contact ul {
    list-style-type: none;
    padding: 0px;
    text-align: right;
}

    .top-contact ul li {
        display: inline-block;
        padding: 0 0 0 35px;
        position: relative;
        text-align: left;
        margin: 0 5px;
        vertical-align: top;
    }


        .top-contact ul li a {
            font-size: 14px;
            color: #fff;
            line-height: 0.0;
            margin-top: 0px;
        }

        .top-contact ul li i {
            position: absolute;
            top: 2px;
            font-size: 16px;
            left: 10px;
            line-height: 0.7;
            color: #fff;
        }



.menu nav {
    margin-top: 0px;
}

/*slider */

.slider-booking-engine .owl-carousel .owl-wrapper-outer {
    /* margin-top: -56px; */
    z-index: -1 !important;
    position: relative;
    border-bottom: none !important;
    -webkit-box-shadow: 0 10px 6px -6px #cacaca;
    -moz-box-shadow: 0 10px 6px -6px #cacaca;
    box-shadow: 0 10px 6px -6px #cacaca;
}

.owl-theme .owl-controls .owl-buttons div {
    display: none;
}

.owl-theme .owl-controls .owl-page span {
    background: #aa9648;
}

/*headings*/

.about-us h3 {
    font-size: 41px;
    color: #000;
    line-height: 1.15;
    /* display: inline-block; */
    padding-bottom: 10px;
    position: relative;
    text-align: left;
    font-weight: bold;
    margin: 10px 0 20px 0;
}

    .about-us h3 span {
        font-size: 42px;
        font-weight: 600;
        line-height: 0.571;
        color: #009933;
        /* display: inline-block; */
        padding-bottom: 10px;
        position: relative;
        margin: 0px 0 0px 0;
        text-transform: none;
    }

    .about-us h3:after {
        content: "";
        position: absolute;
        width: 18.8%;
        height: 5px;
        bottom: 0px;
        left: 0%;
        top: 65px;
        border: 1px double #000;
        border-right: none;
        border-left: none;
    }

.about-us p {
    font-size: 14px;
    line-height: 1.714;
    text-align: left;
    color: #000000;
}

.about-us-bg {
    background-image: url(../images/about-us-bg.jpg);
    height: 498px;
    width: 100%;
    margin: -175px 0 0 0;
    position: unset;
    background-image: none !important;
}

.sevice-new h3 span {
    font-size: 42px;
    font-weight: 600;
    line-height: 0.571;
    color: #009933;
    /* display: inline-block; */
    padding-bottom: 10px;
    position: relative;
    margin: 0px 0 0px 0;
    text-transform: none;
}

.sevice-new h3:after {
    content: "";
    position: absolute;
    width: 18.8%;
    height: 5px;
    bottom: 0px;
    left: 0%;
    top: 65px;
    border: 1px double #000;
    border-right: none;
    border-left: none;
}

/*sections space*/
section {
    padding: 70px 0 !important;
}

    section.slider-booking-engine {
        padding: 0 0 20px 0px !important;
    }

.services h3 {
    line-height: 1.15;
    /* display: inline-block; */
    padding-bottom: 0px;
    font-size: 22px;
    color: rgb(0, 153, 51);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 7px
}


.services h5 {
    line-height: 1.15;
    /* display: inline-block; */
    padding-bottom: 10px;
    font-size: 24px;
    color: rgb(0, 0, 0);
    font-weight: 600;
    text-transform: none !important;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 2px;
}




.services h3:before {
    content: "";
    position: absolute;
    width: 4%;
    height: 5px;
    bottom: 0;
    right: 0;
    left: 48%;
    border: 1px double #000000;
    border-right: none;
    border-left: none;
    top: 40px
}



.services p {
    font-size: 14px;
    color: rgb(0 0 0);
    line-height: 1.5;
    margin: 0px 0px;
    font-weight: 400;
}





.ser-text {
    margin: 45px 0px 0 0;
}

.services img {
    margin: 0 auto;
    max-width: 100%;
    width: auto;
    z-index: 99;
    border-radius: 24%;
    border: 2px solid #093;
}


.services h4 {
    font-size: 19px;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.874;
    margin: 0px 0px;
}


    .services h4:after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        margin-left: 3px;
        width: 64.7%;
        height: 1px;
        background-color: #000;
    }

.space {
    margin: 30px 0px;
}

section.services {
    padding: 50px 0;
    background-color: #fcfcfc;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    width: 100%;
    max-width: 100%;
    /* min-height: 544px; */
    -webkit-box-shadow: 0 10px 10px -10px #cacaca;
    -moz-box-shadow: 0 10px 10px -10px #cacaca;
    box-shadow: 0 10px 10px -10px #cacaca;
}








/*testmonials*/
section.testimonials {
    padding: 15px 0;
    background-image: url(../images/testimonial-bg.jpg);
    width: 100%;
    max-width: 100%;
    /* background-size: 43%; */
    min-height: 531px;
    margin-top: 83px;
}





.testimonials h3 {
    font-size: 41px;
    color: #fff;
    line-height: 1.15;
    /* display: inline-block; */
    padding-bottom: 10px;
    position: relative;
    text-align: center;
    font-weight: bold;
    margin: 25px 0 0 0;
}

    .testimonials h3 span {
        font-size: 41px;
        color: #e7d077;
        line-height: 1.15;
        /* display: inline-block; */
        padding-bottom: 10px;
        position: relative;
        text-align: center;
        font-weight: bold;
    }


    .testimonials h3:before {
        content: "";
        position: absolute;
        width: 52.6%;
        height: 5px;
        bottom: 0;
        right: 0%;
        border: 1px double #e7d077;
        border-right: none;
        border-left: none;
    }

    .testimonials h3:after {
        content: "";
        position: absolute;
        width: 46.7%;
        height: 5px;
        bottom: 0;
        left: 0%;
        border: 1px double #fff;
        border-right: none;
        border-left: none;
    }


section.testimonials .owl-wrapper-outer {
    width: 65%;
    margin: 82px auto;
    padding: 50px;
    background-color: #e7d077d4;
    border-radius: 8px;
}

    section.testimonials .owl-wrapper-outer .item img {
        float: left;
        margin-left: 0px;
        margin-right: 30px;
        border-radius: 50%;
        width: 150px;
        height: 150px;
    }

    section.testimonials .owl-wrapper-outer .item p {
        color: #FFF;
        padding: 20px 0px 20px 0;
        width: 45%;
        font-weight: normal;
        font-size: 14px;
        font-style: italic;
        margin: 0px 0 0 160px;
        border-left: 3px solid #fff;
        vertical-align: top;
    }

section.testimonials .owl-theme .owl-controls .owl-page span {
    background: #fff;
}

/*footer start*/
.footercvr {
    float: left;
    width: 100%;
    background: #000000;
    box-shadow: -3px -3px 5px rgba(0,0,0, 0.1);
    margin-top: -5px;
    border-top: 5px solid #000;
    padding: 0px 0px 60px;
}

    .footercvr h3 {
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
        margin: 0px 0 15px;
        0;
    }

.footer {
    float: left;
    width: 100%;
    padding: 0;
    margin: 20px 0;
    font-size: 13px;
    font-weight: normal;
    color: #FFf;
    text-decoration: none;
    line-height: 24px;
}

    .footer label {
        font-size: 14px;
        font-weight: normal;
        color: #fff;
        text-decoration: none;
    }

.footer2 {
    width: 100%;
    padding: 40px 0px 40px;
    margin: 0;
    font-size: 13px;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    background: #009933;
    border-radius: 0;
    z-index: 11;
    float: unset;
}

    .footer2 .footer-text-box {
        margin-bottom: 20px;
        min-height: 300px;
        max-height: 500px;
    }

        .footer2 .footer-text-box h5 {
            color: #fff;
            font-weight: 600;
            padding-bottom: 5px;
            font-size: 18px;
        }

        .footer2 .footer-text-box a {
            padding: 0px 0 5px;
            display: inline-block;
        }

.footer-bottom {
    background: #000000;
    padding: 10px 0 16px !important;
}

    .footer-bottom .bottom-line .para {
        color: #fff;
        margin: 0 !important;
    }

.footerleft {
    float: left;
    padding-left: 15px;
    text-align: center;
}

.footerright {
    float: right;
    padding-right: 15px;
}

.footerbox1 {
    float: left;
    width: 22%;
    margin: 0 0 0 0;
}

.footer h4 {
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 8px;
    margin-bottom: 26px;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    text-align: left;
    letter-spacing: 0.5px;
}


    .footer h4 .head-line {
        width: 70px;
        position: absolute;
        bottom: 0;
        left: 0;
        display: block;
        height: 5px;
        background-color: #009933;
        margin: 0;
    }

.footer-h1 {
    margin: 0 0 3% 0;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-transform: no;
    text-align: left;
    letter-spacing: 0;
}

.f-red {
    color: #f7b908;
}

.footerbox2 {
    float: left;
    width: 22%;
    margin: 0 2% 0 0;
}

.footerbox3 {
    float: left;
    width: 20%;
}

.footerbox4 {
    float: right;
    width: 28%;
    font-size: 14px;
    font-weight: normal;
    color: #b4cad7;
    text-decoration: none;
    padding: 0 2% 0 0;
    margin: 0 0 0 2%;
    text-align: left;
    background: url(../images/map2.png) left center no-repeat;
}

.footerbox4-h1 {
    float: left;
    width: 100%;
    padding: 0 0 0 0;
    font-size: 19px;
    font-weight: normal;
    color: #b4cad7;
    text-decoration: none;
    text-align: left;
}

.footerbox4-list {
    float: left;
    width: 100%;
    margin: 1% 0 0 0;
}

.f:link, .f:visited, .f:active {
    clear: both;
    width: 100%;
    float: left;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0 !important;
    line-height: 18px;
    border-top: none !important;
    margin-top: 0;
}


.adresss {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.902);
    text-transform: uppercase;
    margin: 0px -6px;
    display: block;
    padding: 12px 0;
}

.adress {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.902);
    text-transform: none;
    /* margin: 0px -6px; */
    display: block;
    padding: 0;
    display: flex;
    align-items: center;
}

.mbile i {
    Font-size: 39px !important;
    margin: 0px 7px 0 7px !important;
}


.adress i {
    font-size: 22px;
    color: rgb(250 182 37);
    margin: 0px 5px 0 5px;
}


.f:hover {
    clear: both;
    float: left;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
}

.f2:link, .f2:visited, .f2:active {
    font-size: 13px;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
}

.f2:hover {
    font-size: 13px;
    font-weight: normal;
    color: #faeb18;
    text-decoration: underline;
}

.a:link, .a:visited, .a:active {
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
}

.brder {
    border-bottom: none !important;
}

.a:hover {
    font-size: 14px;
    font-weight: normal;
    color: #000;
    text-decoration: none;
}

.r:link, .r:visited, .r:active {
    font-weight: normal;
    color: #000;
    text-decoration: underline;
}

.r:hover {
    font-weight: normal;
    color: #000;
    text-decoration: underline;
}

.footerfield {
    width: 100%;
    font-size: 13px;
    font-weight: normal;
    color: #565656;
    text-decoration: none;
    padding: 5px 4px;
    margin-bottom: 5px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    background: #FFF;
    border: none;
}

.footerbtn {
    width: 100%;
    float: left;
    font-size: 13px;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 3px;
    background: #cf142b;
}

.go-top {
    float: right;
    margin: 0;
}

#back-top a {
    width: 36px;
    display: block;
    text-align: right;
    color: #bbb;
    transition: 1s;
}

    #back-top a:hover {
        color: #000;
    }

#back-top span {
    float: right;
    width: 36px;
    height: 36px;
    display: block;
    margin: -100px -70px 10px 0;
    background: url(../images/up-arrow.png) right center no-repeat;
    border-radius: 0;
    transition: 1s;
}


/*booking engine css*/
.form.engine {
    z-index: 1;
    padding: 0px 0 15px 0px;
    width: 100%;
    /* border-top: 4px solid #fff; */
    background-color: rgba(191, 191, 191, 0.72);
    margin: 0 auto;
    border-radius: 0 0 15px 15px;
    /* border-left: 4px solid #e7d077; */
    margin: 90px 0 0 0;
    right: 0px;
    height: auto;
    left: 0px;
    z-index: 100;
}

    .form.engine h2 {
        font-size: 24px;
        line-height: 1.5;
        text-align: center;
        font-weight: 600;
        margin: 0;
        padding: 10px 0px;
        color: #ffffff;
        text-transform: none !important;
        background: #3a407a;
    }

.navbar-nav {
    /* float: none !important; */
    margin:;
}

.main-nav ul, .main-nav ul ul {
    display: inline-block;
    vertical-align: top;
}

ul.login-link {
    float: right;
}

    ul.login-link li a {
        display: inline-block !important;
    }

        ul.login-link li a i:hover {
            color: #fff;
            margin: 0 5px;
            line-height: 0;
        }

.menu nav ul li i {
    color: #FFF;
    margin: 0 5px;
}


/*language*/
.translate {
    /* float: none; */
    padding: 0px;
    height: 36px;
    /* margin: 16px 15px 1px 15px; */
}

#goog-gt-tt {
    display: none !important;
}

.goog-te-banner-frame {
    display: none !important;
}

.goog-te-menu-value:hover {
    text-decoration: none !important;
}

body {
    top: 0 !important;
    /* background-color: #f6f3e9; */
}

.goog-te-combo {
    background-color: #fff;
    border: 1px solid #cc132a !important;
    display: inline-block;
    padding-top: 2px;
    padding-bottom: 2px;
    margin: 0px !important;
    cursor: pointer;
    zoom: 1;
    color: #000;
}

.slider-booking-engine {
    /* position: absolute; */
}

.main-nav ul li a span {
    display: none;
}

.form-control {
    height: auto;
    font-size: 17px;
    font-weight: 500;
    color: #272727;
    text-decoration: none;
    padding: 7px 5px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 5px;
    background: #FFF;
    border: 1px solid #686868;
}

.form.engine .field {
    position: relative;
    margin: 0px 0px;
}

    .form.engine .field i {
        margin: 0px;
        color: #cb0101;
        top: 15px;
        left: 7px;
        z-index: 99999;
        position: absolute;
    }
/*input[type="text"], input[type="tel"], input[type="email"], textarea {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #FFF;
    background-color: #FFF;
    margin: 0px 0;
    margin-bottom: 0px;
    padding: 13px 12px;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #606060;
    font-size: 16px;
    font-weight: 400;
}*/
.form.engine .title {
    font-size: 25px;
    color: #000;
}

.btn1.clsAddVia {
    /* display: inline-block; */
    /* background-color: red; */
    /* color: #fff; */
    /* padding: 13px 24px; */
}

.btn2.clsGetQuote {
    /* display: inline-block; */
    /* background-color: red; */
    /* color: #fff; */
    /* padding: 13px 24px; */
}

.form-control.clsLTTo.clsViaLTTo {
    width: 90%;
}

.crossiconbtn {
    margin: 7px 0 0 18px;
    padding: 5px 0px;
    background: transparent;
}

.row.trVia.clstestvia {
    position: relative;
}

    .row.trVia.clstestvia i {
        position: absolute;
        margin: 0px auto;
        left: 22px;
        top: 17px;
    }

    .row.trVia.clstestvia select.form-control.clsddlAddressToVia {
        width: 94%;
        margin: 5px auto;
    }

    .row.trVia.clstestvia textarea.form-control.clsAddressToVia {
        height: auto;
        width: 94%;
        margin: 5px auto;
    }

.no-padding {
    padding: 0px;
    margin: 0px;
}

.pagenation-holder {
    background: #000;
    /* margin: 20px 0 10px 0; */
}

.contact-box1 a span {
    float: left;
    width: 100%;
    padding: 25px 4px 15px 4px;
    text-align: center;
    color: #000;
}

.cont-map2 {
    width: 100%;
    height: 575px;
    margin: 0;
}

.box-show ul {
    list-style-type: none;
    padding: 0px;
    margin: 40px 0 0 0;
    display: block;
    width: 100%;
    text-align: center;
}

    .box-show ul li {
        display: inline-block;
        width: 32.9%;
    }

        .box-show ul li a {
        }

            .box-show ul li a i {
                display: block;
                margin: 0 auto;
                font-size: 30px;
                background-color: #fff;
                color: #000;
                width: 100px;
                height: 100px;
                border: 2px dashed #e7d077;
                padding: 31px 0 0 0;
                text-align: center;
                border-radius: 50%;
            }


            .box-show ul li a span {
                text-align: center;
                padding: 15px;
                display: block;
                font-size: 14px;
                color: rgb(0, 0, 0);
                font-weight: bold;
                text-transform: uppercase;
                line-height: 1.2;
                text-align: center;
            }






/* Form Start
==================================== */
.formcvr {
    float: left;
    width: 100%;
}

    .formcvr h2 {
        width: 100%;
        float: left;
        font-size: 44px;
        text-align: center;
        line-height: 1.5;
        font-weight: 600;
        margin: 0;
        text-shadow: 1px 1px 0px #fff;
        padding: 5px 30px;
        color: #000;
        text-transform: none;
        border-top: 4px solid #ffffff !important;
        background: rgba(157,157,157, 0.6);
    }

.form {
    float: left;
    width: 100%;
    background: rgba(157,157,157, 0.6);
    padding: 20px 0;
    margin: 0; /* -webkit-box-shadow: 1px 1px 2px 0.5px rgba(0,0,0,.2); */
    -moz-box-shadow: 1px 1px 2px .5px rgba(0,0,0,.2); /* box-shadow: 1px 1px 2px 0.5px rgba(0,0,0,.2); */
}

.form-radio {
    float: left;
    width: 100%;
}

.form-radio-list1 {
    float: left;
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
    padding: 10px 35px;
    background: rgba(0,0,0, 0.8);
}

.form-radio-list2 {
    float: left;
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
    padding: 10px 35px;
    background: rgba(25,25,25, 0.5);
}

.testmonials b {
    color: #7ea2ff;
    font-weight: normal;
}

.form-text {
    float: left;
    width: 100%;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    padding: 0;
    margin: 0 0 0 0;
}

.form-text2 {
    float: left;
    width: 100%;
    font-size: 30px;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    padding: 0;
    margin: 20px 0 0 0;
}

.form-h1 {
    float: left;
    width: 100%;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0;
    text-align: center;
    padding: 0;
    margin: 0px 0 10px 0;
    line-height: 24px;
    text-shadow: 0px 0px 8px #000;
}

.form-list-h1 {
    padding: 0px 15px;
    font-size: 16px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    line-height: 1.5;
    text-transform: none;
    margin-top: 15px;
}


.form-list-h2 {
    float: left;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 10px 0 5px 0;
    letter-spacing: 0;
    text-align: left;
}

    .form-list-h2 i {
        font-size: 20px;
        padding: 0 8px 0 0;
    }

.form-list-h3 {
    background: #525252 none repeat scroll 0 0;
    border-bottom: 1px solid #3b3b3b;
    border-radius: 5px 5px 0 0;
    color: #fff;
    float: left;
    font-size: 15px;
    font-weight: normal;
    margin: 7px 0 0 0;
    padding: 8px 3%;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
}

.form-list-cvr {
    width: 100%;
    float: left;
}

.form-img {
    width: 100%;
    float: left;
    text-align: center;
    padding: 0 0 15px 0;
}

.form-list {
    width: 100%;
    float: left;
    margin: 5px 0 7px 0;
}


.form-list1 i {
    color: #000;
    position: absolute;
    font-size: 20px;
    padding: 13px 10px;
    right: 0;
    /* top: 10px; */
    z-index: 1000;
}

.form-list-check {
    width: 100%;
    float: left;
    color: #000;
    margin-top: 15px;
    line-height: 12px;
    text-align: left;
    font-size: 16px;
    color: rgb(20 41 106);
    font-weight: 500;
}

    .form-list-check input[type=checkbox] {
        font-size: 10px;
        float: left;
        border: 1px solid rgba(0,0,0,.2);
        width: 18px;
        height: 20px;
        box-shadow: none;
        line-height: 0px;
        padding: 0;
        text-align: center;
        margin: -4px 08px 0 0;
        background-color: #fff !important;
    }

.form-list-require {
    float: left;
    width: 100%;
    padding: 15px 0 0 0;
    line-height: 12px;
    font-size: 16px;
    font-weight: 100;
    color: #fff;
    text-decoration: none;
    text-align: left;
}

.form-list1 {
    float: left;
    width: 100%;
    position: relative;
}

.form-list2 {
    float: right;
    width: 100%;
    margin: 5px 0 0 0;
}

.form-list-text {
    width: 100%;
    float: left;
    padding: 8px 0 0 0;
    font-size: 13px;
    font-weight: 400;
    color: #f7020c;
    text-decoration: none;
}

.form-listbox {
    border-radius: 5px;
    color: #505050;
    float: left;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
    padding: 2% 0;
    text-decoration: none;
    width: 100%;
}

.form-listbox2 {
    background: #cf4102 none repeat scroll 0 0;
    border-radius: 5px;
    color: #fff;
    float: left;
    font-size: 12px;
    font-weight: normal;
    margin: 2.5% 0 0;
    padding: 3% 5%;
    text-decoration: none;
    width: 90%;
}

.form-listbox-h1 {
    color: #000;
    padding: 1% 0;
    margin: 0 0 1.5% 0;
    position: relative;
    text-align: center;
    background-color: #E6E6E6;
    border: 1px solid #cccccc;
}

.form-listbox-h2 {
    color: #000;
    padding: 7px 0;
    margin: 0 0 1.5% 0;
    position: relative;
    text-align: center;
    background: #FFF url("../images/fieldarrow.png") no-repeat scroll right top;
    border: 1px solid #cccccc;
    cursor: pointer;
}

.form-listbox-h1 span {
    background-color: #E6E6E6;
    border-top: 1px solid #cccccc;
    font-size: 16px;
    padding: 0 8px;
    position: relative;
    z-index: 1;
}

.form-listbox-h1::before {
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    top: 50%;
    width: 100%;
}

.form-listbox-h1::before {
    left: 0;
}

.form-listbox-h3 {
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    padding: 0 0 4%;
    text-decoration: none;
}

.form-listbox-text {
    float: left;
    margin: 0;
    width: 100%;
}

.form-listcar {
    float: left;
    margin: 2% 0 0;
    width: 100%;
}

.form-listcarbox1 {
    float: left;
    font-size: 11px;
    font-weight: bold;
}

.form-listcarbox2 {
    float: left;
    width: 33%;
}

.form-listcarbox3 {
    float: right;
    width: 32%;
}

.form-listcarbox-h1 {
    float: left;
    line-height: 22px;
    vertical-align: top;
    width: 100%;
}

.form-listcarbox-img {
    float: left;
    padding: 1% 0 0 7%;
    width: 93%;
}

.form-listpass {
    float: left;
    margin: 0;
    width: 100%;
}

.form-listpassbox1 {
    float: left;
    width: 34%;
}

.form-listpassbox2 {
    float: left;
    width: 33%;
}

.form-listpassbox3 {
    float: right;
    width: 32%;
}

.form-listpassbox-h1 {
    float: left;
    font-size: 13px;
    vertical-align: top;
    width: 100%;
}

.form-listpassbox-text {
    float: left;
    padding: 3px 0 0;
    width: 100%;
}

.form-listpickup {
    float: left;
    margin: 0 0 1%;
    width: 100%;
}

.form-listpickup-date {
    float: left;
    width: 63%;
}

.form-listpickup-hour {
    float: right;
    width: 37%;
}

.form-listpickup-h1 {
    float: left;
    font-size: 13px;
    color: #222;
    width: 100%;
}

.form-listpickup-text {
    float: left;
    width: 100%;
}

.pickupcldr {
    margin: 7px 0 0 5px;
}

.form-listjourney {
    float: left;
    font-size: 15px;
    line-height: 18px;
    vertical-align: top;
    width: 100%;
}

.form-listboxprices {
    background: #cf4102 none repeat scroll 0 0;
    border-radius: 5px;
    color: #fff;
    float: left;
    font-size: 12px;
    font-weight: normal;
    margin: 2% 0;
    padding: 4%;
    text-decoration: none;
    width: 92%;
}

.form-listjourney {
    float: left;
    font-size: 15px;
    line-height: 18px;
    vertical-align: top;
    width: 100%;
}

    .form-listjourney input {
        float: left;
        margin: 2px 10px 0 10px;
    }

    .form-listjourney label {
        float: left;
    }

.listboxprice2 {
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    color: #fff;
    float: left;
    font-size: 17px;
    font-weight: normal;
    margin: 0;
    padding: 5px 0;
    text-decoration: none;
    width: 100%;
}

.listboxprice3 {
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    color: #fff;
    float: left;
    font-size: 17px;
    font-weight: normal;
    margin: 0;
    padding: 5px 0;
    text-decoration: none;
    width: 100%;
}

.listboxpricetotal {
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    color: #fff;
    float: left;
    font-size: 16px;
    font-weight: normal;
    margin: 0;
    padding: 5px 0;
    text-decoration: none;
    width: 100%;
}

.fboxprice-right {
    border-radius: 0;
    color: #f0ff00;
    float: right;
    font-size: 18px;
    font-weight: normal;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

.form-listboxvia {
    float: left;
    width: 100%;
    border: 1px solid #b3b3b3;
    background-color: #e6e6e6;
    padding-top: 1%;
    padding-right: 2%;
    padding-bottom: 1%;
    padding-left: 2%;
    font-size: 11px;
    font-weight: normal;
    color: #000;
    text-decoration: none;
}

.form-listboxvia-h1 {
    background: #525252 none repeat scroll 0 0;
    border-bottom: 1px solid #3b3b3b;
    border-radius: 5px 5px 0 0;
    color: #fff;
    float: left;
    font-size: 15px;
    font-weight: normal;
    margin: 7px 0 0;
    padding: 8px 3%;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
}

.crossiconbtn {
    margin: 16px 0 0 25px;
}

.field {
    width: 100% !important;
    float: left;
    font-size: 18px !important;
    font-weight: 400;
    color: #272727;
    text-decoration: none;
    padding: 10px 15px;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 5px;
}

.field2 {
    width: 100% !important;
    float: left;
    font-size: 16px;
    font-weight: 400;
    color: #272727;
    text-decoration: none;
    padding: 12px 15px;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 3;
    border-radius: 5px;
}

.field3 {
    width: 92%;
    float: left;
    font-size: 16px;
    font-weight: 400;
    color: #4a5662;
    text-decoration: none;
    padding: 12px 10px;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 0;
}

.field4 {
    width: 100%;
    float: left;
    font-size: 16px;
    font-weight: 400;
    color: #272727;
    text-decoration: none;
    padding: 12px 10px;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 0;
}

.field5 {
    width: 100%;
    float: left;
    font-size: 16px;
    font-weight: 400;
    color: #4a5662;
    text-decoration: none;
    padding: 12px 10px;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 0;
}

.field6 {
    width: 150px;
    float: left;
    font-size: 16px;
    font-weight: 400;
    color: #4a5662;
    text-decoration: none;
    padding: 12px 10px;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 0;
}

.field7 {
    width: 43%;
    float: left;
    font-size: 16px;
    font-weight: 400;
    color: #4a5662;
    text-decoration: none;
    padding: 12px 10px;
    margin-right: 10px;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 0;
}

.GetQuote {
    width: 100%;
    float: left;
    margin: 30px 0px 10px 0px;
    text-align: center;
}

.GetQuoteBtn {
    font-size: 17px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    float: left;
    padding: 12px 40px;
    color: #000000;
    text-decoration: none;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(248, 163, 43, 1) 60%, rgba(254, 230, 22, 1) 100%);
}

    .GetQuoteBtn:hover {
        color: #fff;
        background: #000000;
        text-decoration: none;
    }

.addvia {
    /* width: 100%; */
    float: right;
    margin: 30px 0px 10px 0px;
    text-align: Center;
}

.addviaBtn {
    float: right;
    padding: 12px 40px;
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0;
    background: #000;
}

    .addviaBtn:hover {
        color: #fff !important;
        background: #000000 !important;
        text-decoration: none;
    }



.AddviaPointBtn {
    float: left;
    margin: 0;
    padding: 8px 35px;
    font-size: 17px;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    background: #f7020c;
    border-radius: 0;
}

    .AddviaPointBtn:hover {
        color: #fff;
        background: #b80008;
        text-decoration: none;
    }

.lspace {
    display: inline-block;
    max-width: 100%;
    /* margin-bottom: 5px; */
    font-weight: 500;
    margin: 9px 0 0px 0;
}


.ten {
    margin: -10px 0 0 0px;
}


/* Form End
==================================== */
textarea {
    width: 100%;
    padding: 0px 5px;
}

#google_translate_element > div > span {
    display: none;
}

.payment img {
    margin: 0 auto;
}

.ui-dialog.ui-widget.ui-widget-content {
    width: 100% !important;
    max-width: 800px;
}

/*css paypalpage*/
.paypal-page h3 {
    text-align: center;
    padding: 0 0;
    margin: 1px 0px;
    background-color: #019933;
    color: #fff;
    font-size: 23px;
    font-weight: bold;
}

.paypal-page {
    width: 100%;
    border: 1px solid #999;
    padding: 3px;
}

    .paypal-page dl {
        padding: 0;
        margin: 0 auto;
    }

        .paypal-page dl dt {
            display: inline-block;
            width: 31%;
            border: 1px solid #dadada;
            margin: 2px 0px;
            padding: 4px;
            vertical-align: top;
        }

        .paypal-page dl dd {
            display: inline-block;
            width: 68%;
            border: 1px solid #dadada;
            margin: 2px 0px;
            padding: 4px;
        }

        .paypal-page dl label {
            margin-bottom: 0px;
        }

.pay-text {
    min-height: 100px
}

/* Start Media Quaries updated
==================================== */
@media only screen and (min-width: 992px) and (max-width:1199px) {
    .right-add img {
        max-width: 100%;
    }

    .top-contact ul {
        text-align: center;
    }

        .top-contact ul li {
            margin: 0 0px;
        }

    .about-us-img img {
        max-width: 100%;
    }

    h3:before {
        width: 15%;
    }

    h3:after {
        width: 15%;
    }

    .about-us h2:after {
        width: 20%;
    }

    .owl-theme .owl-controls {
        margin-top: -40px;
        text-align: center;
    }

    ul.login-link {
        float: none;
        display: block;
    }

        ul.login-link li {
            float: none;
        }

    .main-nav ul li a span {
        display: none;
    }

    .main-nav ul, .main-nav ul ul {
        text-align: center;
        display: block;
    }

        .main-nav ul li {
            float: none;
            display: inline-block;
        }

    ul.login-link li {
        display: block !important;
    }

        ul.login-link li a {
            padding: 5px 12px;
        }

    .form-control.clsLTTo.clsViaLTTo {
        width: 84%;
    }
}

@media only screen and (max-width: 991px) {
    .logo img {
        display: block;
        margin: 0 auto;
    }

    h3:before {
        width: 15%;
    }

    h3:after {
        width: 15%;
    }

    .about-us h2:after {
        width: 20%;
    }

    .logo a img {
        /* width: 200px; */
        max-width: 100%;
    }

    .right-add {
        background-color: #235242;
        padding: 22px 0;
        text-align: center;
        margin: 15px 0 0 0;
        border-radius: 0px;
    }

    .top-contact ul {
        text-align: center;
    }

    .about-us-img img {
        max-width: 100%;
    }

    .services-box-right img {
        float: none;
    }

    .services-box-right {
        text-align: center;
    }

    .services-box-left img {
        float: none;
    }

    .services-box-left {
        text-align: center;
    }

    .owl-theme .owl-controls {
        /* margin-top: -41px; */
        text-align: center;
    }

    section.testimonials .owl-wrapper-outer {
        padding: 39px 10px 31px 10px;
        border-radius: 8px;
        width: 100%;
    }

    .main-nav ul, .main-nav ul ul {
        text-align: center;
        display: block;
    }

        .main-nav ul li {
            float: none;
            display: inline-block;
        }

    ul.login-link li {
        display: block !important;
    }

        ul.login-link li a {
            padding: 5px 12px;
        }

    ul.login-link {
        float: none;
    }

    .form.engine {
        position: relative;
        right: 0;
        left: 0;
        padding: 20px;
        width: 100%;
        margin: 0 auto;
    }

    .owl-carousel .owl-wrapper-outer {
        margin-top: 5px;
    }
}

@media only screen and (max-width: 768px) {
    .main-nav ul li.active a {
        background: #235242;
    }

    .menu {
        border: none;
        padding: 0;
    }

    .main-nav ul li ul {
        background-color: transparent;
        opacity: 1;
        position: static;
        transition: none;
    }

    .main-nav ul li a {
        line-height: 0px;
        border-radius: 0;
        -o-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -webkit-border-radius: 0;
    }

    .main-nav ul ul li {
        border: none;
    }

    .main-nav ul ul a,
    .main-nav ul ul a:link {
        line-height: inherit;
    }

        .main-nav ul ul a,
        .main-nav ul ul a:link {
            min-width: inherit;
        }

    .main-nav ul li ul ul {
        margin: 0 !important;
    }

    .menues_container {
        background: none;
        width: auto;
        z-index: 0;
    }

    .main-nav li a i {
        color: #fff;
    }

    .display-full {
        display: block;
        margin: 0 auto;
        text-align: center;
        width: 100% !important;
    }

    .main-nav {
        display: block !important;
        background: #000;
    }

    .about-us-img img {
        width: 100%;
    }

    /*form check align*/
    .payment {
        /*float: none;
        width: 100%;*/
    }

    .back {
        float: none;
        width: 100%;
    }

    .accept {
        float: none;
        width: 99%;
        text-align: center;
        margin: 0 auto;
    }

    .accept1 {
        float: none;
        margin: 0 5px 0 0;
    }

    .accept2 {
        float: none;
        margin: 1px 5px 0 0;
    }

    .next {
        float: none;
        width: 100%;
        display: block;
        text-align: center;
    }

    .BookBackBtn {
        float: none;
    }

    .box-show ul {
        list-style-type: none;
        width: 100%;
        display: block;
        margin: 0 auto;
        text-align: center;
    }

        .box-show ul li {
            display: inline-block;
            text-align: center;
            margin: 0 auto;
        }

    header {
        padding: 29px 0;
    }

    ul.login-link {
        display: block !important;
    }

        ul.login-link li {
            text-align: center;
            float: none;
        }

            ul.login-link li a {
                float: none !important;
                text-align: center !important;
                display: block !important !important;
            }

                ul.login-link li a i {
                    margin: 0 5px !important;
                }
}

@media only screen and (max-width: 640px) {
    #paypal-button-container {
        width: 100%;
    }

    .paypal-page dl dt {
        display: inline-block;
        width: 49%;
        border: 1px solid #dadada;
        margin: 2px 0px;
        padding: 4px;
    }

    .pay-text {
        width: 100% !important;
        min-height: inherit;
    }

    .paypal-page dl dd {
        display: inline-block;
        width: 49%;
        border: 1px solid #dadada;
        margin: 2px 0px;
        padding: 4px;
    }

    .paypal-button-fundingicons {
        text-align: left !important;
    }

    h2 {
        margin: 15px 0;
    }

    h3 {
        font-size: 28px;
        line-height: 38px;
    }

        h3 span {
            font-size: 30px;
            margin-top: -6px;
        }

        h3:before {
            margin-top: -4px;
        }

        h3:after {
            margin-top: -4px;
        }

    section.testimonials {
        text-align: center;
    }

        section.testimonials .owl-wrapper-outer .item img {
            float: none;
            margin: 0 auto;
            text-align: center;
            border-radius: 50%;
            width: auto;
            height: auto;
        }

        section.testimonials .owl-wrapper-outer .item p {
            padding: 6px 0px 20px 0;
            width: 90%;
            margin: 0 auto;
            border-left: 0px solid #fff;
        }

    .footerleft {
        float: none;
    }

    .footerright {
        float: none;
    }

    /*form check align*/
    .payment {
        /*float: none;
        width: 100%;*/
    }

    .back {
        float: none;
        width: 100%;
    }

    .accept {
        float: none;
        width: 99%;
        text-align: center;
        margin: 0 auto;
        padding: 0;
    }

    .accept1 {
        float: none;
        margin: 0 5px 0 0;
    }

    .accept2 {
        float: none;
        margin: 1px 5px 0 0;
    }

    .next {
        float: none;
        width: 100%;
        display: block;
        text-align: center;
    }

    .BookBackBtn {
        float: none;
    }
    /*welcome page css put css 640*/

    .welcome {
        float: none;
        height: auto;
        min-height: 480px;
        width: 100%;
        padding: 0;
        background-color: #835537;
        background: #835537;
        border: 28px solid #db9e65;
        -webkit-box-shadow: inset 0px 0px 0px 10px #fff;
        -moz-box-shadow: inset 0px 0px 0px 10px #f00;
        box-shadow: inset 0px 0px 0px 10px #fff;
    }

    .WelComeText {
        width: 100%;
        margin: 0 auto;
        float: none;
        text-align: center;
        line-height: 38px;
        margin-top: 40%;
    }

    .form-control.clsLTTo.clsViaLTTo {
        width: 85%;
    }

    .b-field2 {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .display-full {
        float: none !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .top-contact ul li {
        display: block;
        padding: 0px 0;
        position: relative;
        text-align: center;
        margin: 0 10px;
    }

        .top-contact ul li i {
            position: relative;
            top: 4px;
            font-size: 35px;
            left: 0px;
            color: #e7d077;
        }

    .footerleft {
        float: none;
    }

    .footerright {
        float: none;
    }

    .btn-group {
        float: none !important;
        width: 100%;
        text-align: center;
    }

    .btn1.clsAddVia {
        display: block !important;
        background-color: red;
        color: #fff;
        margin: 5px 0;
    }

    .btn2.clsGetQuote {
        display: block !important;
        background-color: red;
        color: #fff;
    }

    .form-control.clsLTTo.clsViaLTTo {
        width: 79%;
    }

    .field2 {
        padding: 7px 6px;
    }
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
}

@media (-webkit-max-device-pixel-ratio) {
}
/* ========================= XXX ========================= XXX ========================= */
/* ========================= XXX ========================= XXX ========================= */
/*-- fleet --*/
.fleetser {
    float: left;
    width: 100%;
    margin-top: 50px;
}

.fleetser-img {
    float: left;
    font-size: 14px;
    font-weight: normal;
    color: #000;
    text-decoration: none;
    position: absolute;
    left: -5px;
    top: 25px;
}

.fleetser-text {
    float: right;
    width: 96%;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
    background: #00247c;
    text-align: left;
    margin-right: 15px;
    line-height: 0px;
    padding: 15px 10px 5px 200px;
}

    .fleetser-text h2 {
        width: 100%;
        float: left;
        font-size: 20px;
        font-weight: normal;
        color: #fff;
        text-decoration: none;
        letter-spacing: 1px;
        text-align: left;
        margin-bottom: 8px;
    }

    .fleetser-text ul {
        width: 100%;
        float: left;
        padding-left: 15px;
    }

.fleetboxcvr {
    float: left;
    width: 100%;
    margin-top: -20px;
}

.fleetbox {
    float: left;
    width: 100%;
    padding: 1px 15px;
    text-align: center;
    background-color: #fff;
    border: solid 2px #000;
    border-radius: 7px;
    margin-left: 5px;
    margin-bottom: 15px;
}

.fleetbox-h1 {
    float: left;
    margin-top: 10px;
    width: 100%;
    padding: 6px 0px 10px 20px;
    margin-left: -22px;
    background: url(../images/sertitle.png) no-repeat left top;
    text-align: left;
    font-size: 15px;
    color: #fff;
    line-height: 2.078;
}


.fleetbox-img {
    float: left;
    width: 100%;
    text-align: center;
    padding: 15px 12px;
}

.fleetbox-psg {
    float: left;
    width: 100%;
    text-align: center;
    padding: 0 0 10px 0;
}

.fleetbox-psg1 {
    float: left;
    text-align: center;
    margin-left: 15px;
    vertical-align: bottom;
    display: -webkit-inline-box;
}

.fleetbox-psg2 {
    float: left;
    text-align: center;
    margin-left: 8px;
    vertical-align: bottom;
    display: -webkit-inline-box;
}

.fleetbox-psg3 {
    float: left;
    text-align: center;
    margin-left: 25px;
    vertical-align: bottom;
    display: -webkit-inline-box;
}

.fleetbox-arrow {
    float: left;
    width: 94.5%;
    text-align: center;
    margin: 30px;
    background: url(../images/arrow-bg.png) repeat-x left top;
}

.clients-logos .owl-theme .owl-controls .owl-buttons div {
    display: block !important;
}


/*#Services1#*/
.main-services1 {
    padding: 0 0 0 0px;
}

.main-image {
    padding: 12px;
    margin: 0 0 0 0px;
    position: relative;
    border-radius: 98% !important;
}

.main-bg {
    padding: 0 0 0 0px;
    margin: -4px 0 0 0px;
    background-color: #fcfcfc;
    min-height: 514px;
    /* width: 327px; */
    /* position: absolute; */
    border: 1px solid #f9f5f5;
    box-shadow: 0px 0px 0px #8080806b !important;
    -webkit-transition: box-shadow .6s ease-out;
    box-shadow: .8px .9px 3px #80808080;
    border-radius: 10px;
}

    .main-bg:hover {
        border: 1px solid transparent;
        box-shadow: 1px 3px 15px #80808066 !important;
        -webkit-transition: box-shadow .6s ease-in;
    }

    .main-bg p {
        margin: 0 0 0 0px;
        padding: 5px 27px;
        font-size: 14px;
        color: rgb(149, 149, 149);
        line-height: 1.714;
        text-align: center;
        /* border-radius: 5px; */
    }

    .main-bg h5 {
        font-size: 20px;
        color: rgb(0, 153, 51);
        font-weight: 500;
        text-align: center;
        text-transform: uppercase;
        line-height: 1.8;
    }

.abt-bt {
    padding: 10px 0;
    margin-top: 0px 0px;
    border: none !important;
    color: rgb(255, 255, 255);
    width: 142px;
    border-radius: 30px;
    /* display: block; */
    /* margin: 10px auto; */
    text-align: center;
    min-height: 40px;
    background-color: #009933;
}

    .abt-bt a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        text-transform: uppercase;
        line-height: 1.714;
        text-align: center;
    }

    .abt-bt:hover {
        background-color: #c10841;
        border: 1px solid #fff;
        font-weight: 500;
    }

.butt {
    padding: 10px 0;
    margin-top: 0px 0px;
    border: none !important;
    color: rgb(255, 255, 255);
    width: 142px;
    border-radius: 30px;
    display: block;
    margin: 10px auto;
    text-align: center;
    min-height: 40px;
    background-color: #009933;
}

    .butt a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        text-transform: uppercase;
        line-height: 1.714;
        text-align: center;
    }

    .butt:hover {
        background-color: #c10841;
        border: 1px solid #fff;
        font-weight: 500;
    }

.navbar-toggle {
    position: relative;
    float: none;
    padding: 9px 10px;
    margin-top: 0px !important;
    margin-right: 15px;
    margin-bottom: -4px !important;
    background-color: #f9ad28;
    background-image: none;
    border-radius: 4px;
    /* display: block; */
    width: 100%;
}

.navbar.navbar-toggle {
    border-color: #fff;
}

    .navbar .navbar-toggle .icon-bar {
        background-color: #fff;
    }

.navbar-brand, .navbar-nav > li {
    float: left;
    list-style: none;
    position: relative;
    text-align: center;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -ms-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
    margin: 15px 0 0px 10px;
    font-weight: 100;
}

    .navbar-brand, .navbar-nav > li > a {
        font-size: 15px;
        color: #fff;
        line-height: 0.9;
        -moz-transform: matrix( 0.99957727990745,0,0,0.99925247056521,0,0);
        -webkit-transform: matrix( 0.99957727990745,0,0,0.99925247056521,0,0);
        -ms-transform: matrix( 0.99957727990745,0,0,0.99925247056521,0,0);
        /*border-right:1px dashed #c9c8c9;*/
        text-decoration: none;
        -webkit-transition: all 1s ease 0s;
        -moz-transition: all 1s ease 0s;
        -ms-transition: all 1s ease 0s;
        -o-transition: all 1s ease 0s;
        transition: all 1s ease 0s;
    }

.nav > li > a:focus, .nav > li > a:hover {
    text-decoration: none;
    color: #000000;
    border-radius: 5px;
    background: linear-gradient(180deg, rgba(248, 163, 43, 1) 60%, rgba(254, 230, 22, 1) 100%);
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 13px 14px;
    /* text-align: right; */
    /* margin: 7px 7px; */
    font-weight: 500;
}

.navbar {
    position: relative;
    min-height: 0px;
    margin-bottom: 0px;
    border: 1px solid transparent;
    /* margin: 20px 0 0 0px; */
}

.about-us-img {
    margin: 0 0 0 78px;
}

section.testimonials-pace .owl-wrapper-outer .item img {
    float: left;
    /*margin-left: 15px;
    margin-right: 15px;*/
    border-radius: 50%;
    max-width: 100%;
}

section.testimonials-pace .owl-wrapper-outer .item p {
    /* color: #FFF; */
    /* padding: 100px 0px 20px 0; */
    width: 90%;
    font-weight: 600 !important;
    font-size: 14px;
    color: rgb(0 0 0);
    font-style: italic;
    margin: 0px 0 0 0px;
    vertical-align: middle;
    line-height: 1.714;
}

section.testimonials-pace .owl-wrapper-outer .item h4 {
    padding: 10px 0px 10px 0px;
    margin: 0px 0 0 0px;
    vertical-align: middle;
    text-transform: uppercase;
    font-size: 14px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    line-height: 1.313;
}

section.slider-booking-engine .owl-theme .owl-controls .owl-page span {
    margin-top: -70px;
    background: #000;
}

section.testimonials-pace .owl-theme .owl-controls .owl-page span {
    margin-top: 30px;
    background: #009933;
}

section.clients-logos .owl-theme .owl-controls .owl-page span {
    margin-top: 30px;
    background: #009933;
}

.testimonials-pace h3 {
    font-size: 42px;
    font-weight: 500;
    line-height: 0.571;
    color: #009933;
    /* display: inline-block; */
    padding-bottom: 0px;
    position: relative;
    margin: 30px 0 70px 0;
    text-transform: none;
}

    .testimonials-pace h3:before {
        content: "";
        position: absolute;
        width: 12%;
        height: 6px;
        bottom: 0;
        right: 0;
        left: 0%;
        border: 2px double #000000;
        border-right: none;
        border-left: none;
        top: 45px
    }

.main-box {
    display: inline;
    width: 100%;
}

.box {
    margin: 15px 0 0 0px;
    float: left;
    z-index: 2;
}

.box-show {
    font-size: 30px;
    background-color: #f2f2f2;
    color: #000;
    width: 90px;
    height: 90px;
    border: 1px Solid transparent;
    padding: 30px 0 0 2px;
    text-align: center;
    border-radius: 50%;
    margin: 50px 16px 50px 1px;
}

    .box-show i {
        font-size: 26px;
        color: #c10841
    }

.box:hover .box-show a i {
    color: #fff;
}

.box:hover .box-show {
    border: 1px solid #fff;
    box-shadow: 0 0 0 2px #c10841, 0 0 0 4px white, 0 0 0 6px #c10841;
    Background-color: #c10841;
}

a.read {
    color: #009933;
}

.ser-text h4 {
    font-size: 17px;
    color: rgb(0, 0, 0);
    font-weight: 600;
    line-height: 0.7;
    text-transform: uppercase;
}

.prc-banner {
    /*  background-image: url(../images/price-banner.png);*/
    background-color: #000000;
    width: 100%;
    margin: -35px 0 0 0;
    height: 150px;
}

    .prc-banner h3 {
        margin: 18px 0 0 0;
        font-size: 26px;
        color: #fff;
        font-weight: 700;
        text-align: center;
    }

        .prc-banner h3 span {
            margin: 10px 0 0 0;
            font-size: 26px;
            color: #fff;
            font-weight: 300;
            text-align: center;
        }

    .prc-banner p {
        /* margin: 10px 0; */

        font-size: 18px;
        color: #fff;
        font-weight: 300;
        text-align: center;
    }

        .prc-banner p span {
            margin: 0px 0 0 0;
            font-size: 22px;
            color: #fff;
            text-decoration: underline;
            font-weight: 600;
        }



.but a {
    padding: 10px 0px;
    margin-top: 0px 0px;
    border: none !important;
    color: #000;
    width: 210px;
    border-radius: 30px;
    display: block;
    margin: 10px auto;
    text-align: center;
    min-height: 40px;
    background-color: #fff;
    font-size: 16px;
}


    .but a:hover {
        background-color: #009933;
        border: 1px solid #fff;
        font-weight: 500;
        color: #fff !important;
    }

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    border-radius: 1px;
}



.slider-content {
    top: 25%;
    left: 0;
    padding: 0;
    /* text-align: center; */
    position: absolute;
    width: 100%;
    color: #fff;
    z-index: 9;
}



.owl-item .item .slider-content .inner-text {
    animation: 1s .9s flipInX both;
}




.inner-text {
    background: rgba(0, 0, 0, 0.9) !important;
    width: 472px;
    left: 20%;
    padding: 20px;
}

    .inner-text p {
        color: #fff;
        font-size: 24px;
    }

.slider-logo {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 8%;
}

.slider-logo2 {
    width: 250px;
    height: 250px;
    padding: 20px 23px 15px 20px;
    border-radius: 300px;
    border: solid 10px rgba(255, 255, 255, 1);
    background: #000 url(../images/top-logo.png) center top no-repeat;
    background-size: contain;
}

.slider-logo2 {
    cursor: pointer;
    display: block;
    text-align: center;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    position: relative;
}

    .slider-logo2:hover {
        width: 250px;
        height: 250px;
        padding: 20px 23px 15px 20px;
        background: #fff;
        border-radius: 300px;
        border: solid 10px rgba(255, 255, 255, 1);
        background: #000 url(../images/top-logo-h2.png) center top no-repeat;
        background-size: contain;
    }


.slider-content h3 {
    font-size: 60px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    letter-spacing: 3px;
    margin-top: 20px;
    margin-bottom: 10px;
    text-shadow: 0px 0px 8px #000;
}

.slidernumber {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

    .slidernumber h2 {
        float: right;
        width: 100%;
        font-size: 22px;
        font-weight: 300;
        color: #fff;
        text-decoration: none;
    }

    .slidernumber h4 {
        float: right;
        width: 100%;
        font-size: 40px;
        font-weight: 500;
        margin: 25px 0 10px 0;
        color: #f0c53b;
        text-decoration: none;
        text-transform: uppercase;
        text-shadow: 0px 0px 8px #000;
    }

    .slidernumber p {
        float: right;
        width: 100%;
        margin: 0 0 50px 0;
        font-size: 24px;
        font-weight: 300;
        color: #fff;
        text-decoration: none;
        text-transform: uppercase;
        line-height: 36px;
        text-shadow: 0px 0px 8px #000;
    }

.meshim_widget_widgets_TitleBar {
    color: #fff !important;
    background: #009933 !important;
}

.pay-field {
    width: 40% !important;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    padding: 11px 10px;
    border-radius: 5px;
    color: #000 !important;
    border: 1px solid #000000;
}

    .pay-field:-ms-input-placeholder {
        color: #737373;
        font-size: 14px;
        opacity: 1
    }

    .pay-field:-moz-placeholder {
        color: #737373;
        font-size: 14px;
        opacity: 1
    }

    .pay-field::-webkit-input-placeholder {
        color: #737373;
        font-size: 14px;
        opacity: 1
    }

    .pay-field::-moz-placeholder {
        color: #737373;
        font-size: 14px;
        opacity: 1
    }

@media screen and (max-width:568px) {
    .pay-field {
        width: 100% !important
    }

    .main-wraper table tr td {
        width: 100% !important;
        text-align: center;
        display: inline;
    }
}

































/*new custom*/


.homeservice .iconser-box {
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    -webkit-box-shadow: 0 15px 46px rgba(0,0,0,.1);
    -ms-box-shadow: 0 15px 46px rgba(0,0,0,.1);
    box-shadow: 0 15px 46px rgba(0,0,0,.1);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    text-align: center;
    cursor: pointer;
    min-height: 604px;
}

    .homeservice .iconser-box .iconser {
        margin: 0 auto;
        width: 64px;
        height: 64px;
        background: linear-gradient(to right, rgb(255 255 255) 0%, rgb(255 255 255) 100%);
        border-radius: 5px;
        transition: all 0.3s ease-out 0s;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transform-style: preserve-3d;
    }

        .homeservice .iconser-box .iconser i {
            color: #fff;
            font-size: 28px;
        }

        .homeservice .iconser-box .iconser::before {
            position: absolute;
            content: "";
            left: -8px;
            top: -8px;
            height: 100%;
            width: 100%;
            background: #e7a9be;
            border-radius: 5px;
            transition: all 0.3s ease-out 0s;
            transform: translateZ(-1px);
        }

    .homeservice .iconser-box h4 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 24px;
        color: #c10841;
    }

        .homeservice .iconser-box h4 a {
            color: #fff;
        }

    .homeservice .iconser-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
        color: black;
    }

    .homeservice .iconser-box:hover {
        background: linear-gradient(to right, rgb(193 8 65) 0%, rgb(0 0 0) 211%);
        border-color: black;
    }

        .homeservice .iconser-box:hover .iconser {
            background: #fff;
        }

            .homeservice .iconser-box:hover .iconser i {
                color: #00abff;
            }

            .homeservice .iconser-box:hover .iconser::before {
                background: #009933;
            }

        .homeservice .iconser-box:hover h4 a, .homeservice .iconser-box:hover p {
            color: #fff;
        }

        .homeservice .iconser-box:hover h4 {
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 24px;
            color: #fff;
        }

    .homeservice .iconser-box .btnser {
        padding: .8rem 1.5rem;
        margin-top: 1.2rem;
        background: linear-gradient(to right, rgb(55 169 225) 0%, rgb(0 0 0) 100%);
        margin: 40px 0;
        display: inline-block;
        color: #fff;
        padding: 10px 30px;
        border-radius: 5px;
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 500;
    }

    .homeservice .iconser-box:hover .btnser {
        padding: .8rem 1.5rem;
        margin-top: 1.2rem;
        color: #000 !important;
        background: #fff !important;
        margin: 40px 0;
        display: inline-block;
        color: #fff;
        padding: 10px 30px;
        border-radius: 5px;
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 500;
    }

.innerimg {
    border-radius: 6rem 0;
    -webkit-box-shadow: 0 15px 46px rgba(0,0,0,.4);
    -ms-box-shadow: 0 15px 46px rgba(0,0,0,.4);
    box-shadow: 10px 10px 15px rgba(0,0,0,.3);
}

@media only screen and (max-width: 767px) {
    .iconser-boxmr {
        margin-bottom: 50px;
    }

    .form-cvr {
        margin-bottom: 50px
    }
}

.eco-box {
    padding: 130px 0;
    background: #1c1c1c;
}

    .eco-box .icon-box {
        position: relative;
        top: 0px;
        height: 80px;
        width: 80px;
        line-height: 80px;
        font-size: 70px;
        color: #ed1e24;
        margin: 0 auto 30px;
        -webkit-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .eco-box h3 {
        display: block;
        font-size: 22px;
        font-weight: 700;
        line-height: 1.2em;
        color: #fff;
        margin-bottom: 15px;
    }

        .eco-box h3 a {
            color: #202020;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
        }

            .eco-box h3 a:hover {
                color: #ed1e24;
            }

    .eco-box p {
        font-size: 15px;
        line-height: 27px;
        margin-bottom: 0;
    }

.border-color-medium-dark-gray {
    border-right: solid 1px #363636 !important;
}

.web-txtcvr .mr5 {
    margin: 0rem !important;
    margin-top: 3rem !important;
    margin-right: 2rem !important;
}

.top50 {
    margin-top: 50px;
}

a.text-white {
    color: white;
}


.table-width table {
    width: 100%;
    margin-bottom: 20px;
}

    .table-width table td {
        padding: 0 10px !important;
    }

        .table-width table td a {
            color: #337ab7;
        }

.border-upper {
    border-top: 1px solid #ccc;
}

.cntfield {
    margin: 10px 0;
    width: 100%;
    border: 1px solid #ccc;
}

.goog-te-gadget {
    color: #fff !important;
}



/*TALHA NEW CSS FOR WEBBOOKER*/

.sec-web-form {
    background-image: url('../img/main-banner.jpg');
    position: relative;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    width: 100%;
    /*  display: flex;
    align-items: center;
    margin-top: 140px;*/
    padding: 100px 0 !important;
    !i;
    !;
    display: flex;
    align-items: center;
    min-height: 95svh;
}

    .sec-web-form::before {
        content: '';
        background-color: #000 !important;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.8;
        background-color: transparent;
        opacity: 0.2;
    }

    .sec-web-form .form-box .small-text {
        text-align: center;
        padding-bottom: 6px;
    }

        .sec-web-form .form-box .small-text p {
            font-size: 14px;
        }

    .sec-web-form .call-link {
        padding-top: 8px;
        color: #000;
        text-align: center;
        margin: 0 auto;
        width: 100%;
        font-weight: 600;
        font-size: 20px;
        display: flex;
        justify-content: center;
    }



    .sec-web-form .content-box {
        padding: 25% 0px 0;
        position: relative;
    }

        .sec-web-form .content-box h2 {
            font-size: 23px;
            color: #fff;
            line-height: 40px;
            text-transform: capitalize;
            padding-bottom: 9px;
            font-weight: 700;
        }

        .sec-web-form .content-box .para {
            color: #fff;
            padding-bottom: 13px;
            font-size: 18px;
        }

        .sec-web-form .content-box h4 {
            color: #fff;
            font-weight: 600;
            padding-bottom: 10px;
            font-size: 23px;
        }

        .sec-web-form .content-box .para a {
            color: #f9db3d;
            padding: 0 3px;
        }


/* RESULT PAGE   */


.sec-result {
    padding: 20px 0 60px 0;
    background-image: url(../img/bg.jpg) !important;
    /* margin-top: 120px;*/
}

    .sec-result .upper-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 7px 16px;
        background: #EBEBEB;
    }

        .sec-result .upper-list li {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-result .upper-list li .icon-box {
            }

                .sec-result .upper-list li .icon-box .img-icon {
                    width: 60px;
                    height: 100%;
                    object-fit: contain;
                }

            .sec-result .upper-list li .text-box {
                padding: 0 10px;
            }

                .sec-result .upper-list li .text-box h6 {
                    font-size: 16px;
                    font-weight: 600;
                    color: #000;
                    margin: 0;
                }

                .sec-result .upper-list li .text-box p {
                    font-size: 14px;
                    color: #000000;
                    font-weight: 400;
                }

    .sec-result .number-box {
        padding: 20px 40px 0;
    }

        .sec-result .number-box ul {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-result .number-box ul li {
                width: 24%;
                position: relative;
            }

                .sec-result .number-box ul li .num-circle {
                    text-align: center;
                }

                    .sec-result .number-box ul li .num-circle h6 {
                        background-color: #ebebeb;
                        width: 50px;
                        height: 50px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 50%;
                        font-size: 20px;
                        margin: 0 auto;
                        color: #000;
                        font-weight: 600;
                    }

                    .sec-result .number-box ul li .num-circle p {
                        font-size: 14px;
                        margin-top: 15px;
                        text-transform: uppercase;
                        color: #000000;
                    }

                    .sec-result .number-box ul li .num-circle .pcompleted {
                        font-size: 14px;
                        margin-top: 15px;
                        text-transform: uppercase;
                        color: #000;
                        font-weight: 800 !important;
                    }


    .sec-result .completed {
        color: #ffffff !important;
        background-color: #000 !important;
    }

    .sec-result .for-line {
        position: relative
    }

        .sec-result .for-line::before {
            content: '';
            background-color: #000;
            position: absolute;
            width: 67%;
            height: 4px;
            top: 30%;
            border-radius: 10px;
            left: 70%;
        }

    .sec-result .cancellation-box {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 20px;
        background-color: #000000bd;
    }

        .sec-result .cancellation-box .img-box {
            background-color: #fff;
            padding: 10px;
            border-radius: 10px;
        }

            .sec-result .cancellation-box .img-box .shield-img {
                width: 50px;
            }

        .sec-result .cancellation-box .text-box {
            padding-left: 10px;
        }

            .sec-result .cancellation-box .text-box p {
                line-height: 23px;
                color: #fff;
                font-size: 18px;
            }


.update-fleet-box {
    background: #EBEBEB;
    margin: 0px 0 15px;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .update-fleet-box .img-box {
        margin-bottom: 10px;
    }

        .update-fleet-box .img-box img {
            width: 100%;
            height: 120px;
            object-fit: contain;
        }

    .update-fleet-box .car-text {
        text-align: center;
        font-size: 14px;
        line-height: 18px;
        padding-bottom: 10px;
        font-weight: 700;
    }

    .update-fleet-box .private-text {
        font-size: 14px;
        display: flex;
        justify-content: center;
        color: #000;
    }

    .update-fleet-box .star-list {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 7px 0 0;
    }

    .update-fleet-box .private-text i {
        margin: 0 5px 0 0;
    }

    .update-fleet-box .star-list li {
        padding: 0 1px;
    }

        .update-fleet-box .star-list li i {
            color: #fdb900 !important;
        }

    .update-fleet-box .fleet-detail {
        padding: 0px 13px;
        border-right: 1px solid #bbbbbb;
        border-left: 1px solid #bbbbbb;
    }

        .update-fleet-box .fleet-detail h4 {
            font-size: 22px;
            font-weight: 600;
            padding-bottom: 5px;
            color: #000000;
        }

        .update-fleet-box .fleet-detail .passenger-list {
            display: flex;
            align-items: center;
        }

            .update-fleet-box .fleet-detail .passenger-list li {
                font-size: 13px;
                padding: 0 8px 0 0;
                font-weight: 600;
                color: #000;
            }

                .update-fleet-box .fleet-detail .passenger-list li i {
                    font-size: 16px;
                    padding-right: 5px;
                }

        .update-fleet-box .fleet-detail .passenger-list-2 {
            padding: 10px 0;
        }

            .update-fleet-box .fleet-detail .passenger-list-2 li {
                font-size: 15px;
                padding: 5px 10px;
                margin: 3px 0;
                border-radius: 6px;
                font-size: 13px;
                background-color: #3a407a !important;
                width: fit-content;
                color: #ffffff;
                font-weight: 600;
            }

                .update-fleet-box .fleet-detail .passenger-list-2 li i {
                    font-size: 16px;
                    padding-right: 5px;
                }

        .update-fleet-box .fleet-detail .info-btn {
            color: #f9b442;
            text-decoration: underline;
            font-weight: 500;
        }

    .update-fleet-box .rate-box {
        margin-top: 30%;
    }

        .update-fleet-box .rate-box h6 {
            font-size: 15px;
            margin-top: 4px;
        }

        .update-fleet-box .rate-box .prize-box {
            text-align: center;
            padding: 4px 0;
            font-size: 20px;
            line-height: 29px;
            color: #000;
            font-weight: 600;
        }

        .update-fleet-box .rate-box .done-btn {
            padding: 0px;
            border-radius: 5px;
            text-align: center;
            color: #000000;
            font-weight: 600;
        }

.right-card {
    background-color: #EBEBEB;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .right-card .top-heading {
        display: flex;
        align-items: center;
        padding: 10px 0 15px;
    }

        .right-card .top-heading i {
            font-size: 24px;
            padding-right: 10px;
            color: #000000;
        }

        .right-card .top-heading h5 {
            font-size: 22px;
            color: #000000;
            margin: 0;
        }

    .right-card .distance-box {
        padding: 20px 0;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
    }

        .right-card .distance-box h6 {
            color: #000;
        }

        .right-card .distance-box ul {
            padding: 10px 0 0;
        }

            .right-card .distance-box ul li {
                font-size: 14px;
                padding: 5px 0px;
                color: #000;
            }

                .right-card .distance-box ul li i {
                    font-size: 16px;
                    color: #000000;
                    padding-right: 5px;
                }

    .right-card .cal-mile {
        padding: 10px 0 0;
    }

        .right-card .cal-mile li {
            font-size: 16px;
            padding: 5px 0;
            color: #000;
        }

            .right-card .cal-mile li i {
                padding-right: 5px;
                color: #000000;
            }

    .right-card .distance-box-2 ul li {
        font-size: 14px;
        padding: 5px 0;
        color: #000;
    }

        .right-card .distance-box-2 ul li i {
            font-size: 15px;
            color: #000000;
            padding-right: 3px;
        }



/*    BOOKING PAGE*/
.Passenger-Information {
    background: #ebebeb;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .Passenger-Information h3 {
        font-size: 22px;
        font-weight: 600;
        padding-bottom: 5px;
        color: #000000;
    }

    .Passenger-Information .input-box {
        padding-bottom: 10px;
    }

        .Passenger-Information .input-box label {
            text-align: left;
            padding: 4px 0;
            font-size: 14px;
            font-weight: 600;
            line-height: 18px;
            color: #000;
            margin: 0;
        }

        .Passenger-Information .input-box .b-field {
            width: 100%;
            border: 1px solid #ccc !important;
        }

        .Passenger-Information .input-box p {
            font-size: 13px;
            padding: 4px 0;
        }

    .Passenger-Information .input-box-extra {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .Passenger-Information .input-box-extra input {
            margin: 0 !important;
        }

        .Passenger-Information .input-box-extra label {
            padding-left: 10px;
        }

@media only screen and (min-width: 300px) and (max-width: 480px) {
    .sec-web-form {
        height: unset;
        padding: 40px 0 !important;
        margin-top: 0;
    }

        .sec-web-form .content-box {
            padding: 5px;
        }

            .sec-web-form .content-box h2 {
                font-size: 20px;
                line-height: 28px;
            }

            .sec-web-form .content-box .para {
                padding-bottom: 0px;
                font-size: 15px;
            }

    .sec-result .upper-list {
        padding: 10px;
        flex-direction: column;
        align-items: flex-start;
        display: none;
    }

        .sec-result .upper-list li {
            padding: 7px 0;
        }

            .sec-result .upper-list li .icon-box .img-icon {
                width: 60px;
            }

    .sec-result .number-box {
        padding: 20px 10px;
        display: none;
    }

    .sec-result .for-line::before {
        left: 82%;
    }

    .sec-result .cancellation-box {
        align-items: center;
        flex-direction: column;
    }

        .sec-result .cancellation-box .text-box {
            padding: 10px;
            text-align: center;
        }

    .update-fleet-box .fleet-detail {
        padding: 10px 0px;
        border-right: unset;
        border-left: unset;
    }

    .sec-result {
        margin-top: 0;
    }

    .update-fleet-box .rate-box {
        margin-top: 0%;
    }
}


/*PRELOADER CSS*/
#preloader {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 99999;
    background-color: #f1f1f1
}

    #preloader .preloader-dot {
        width: 0;
        height: 0;
        border: 2px solid rgb(0, 153, 51) !important;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        opacity: 1;
        animation: preloader 3s ease infinite;
        -ms-animation: preloader 3s ease infinite;
        -moz-animation: preloader 3s ease infinite;
        -webkit-animation: preloader 3s ease infinite;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        border-radius: 100%
    }

@-webkit-keyframes preloader {
    0% {
        border-width: 2px
    }

    100% {
        border-width: 50px;
        opacity: 0
    }
}

@-moz-keyframes preloader {
    0% {
        border-width: 2px
    }

    100% {
        border-width: 50px;
        opacity: 0
    }
}

@-ms-keyframes preloader {
    0% {
        border-width: 2px
    }

    100% {
        border-width: 50px;
        opacity: 0
    }
}

@-o-keyframes preloader {
    0% {
        border-width: 2px
    }

    100% {
        border-width: 50px;
        opacity: 0
    }
}

@keyframes preloader {
    0% {
        border-width: 2px
    }

    100% {
        border-width: 50px;
        opacity: 0
    }
}


.inner-banner {
    background: url(../img/main-banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 370px;
    display: flex;
    align-items: flex-end;
    margin-top: 0;
    padding-bottom: 2% !important;
    !i;
    !;
}

    .inner-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.8;
        background-color: transparent;
        background-image: linear-gradient(90deg, #5f709d 0%, #4e4949 100%);
        opacity: .9;
        transition: background .3s, border-radius .3s, opacity .3s;
    }

    .inner-banner .content-box {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .inner-banner .content-box h2 {
            color: #ffffff;
            font-size: 44px;
            font-weight: 700;
        }

        .inner-banner .content-box ul {
            display: flex;
            align-items: center;
            justify-content: center;
            list-style: none;
        }

            .inner-banner .content-box ul li {
                padding: 0 5px;
            }

                .inner-banner .content-box ul li a {
                    color: #ffffff;
                    font-weight: 500;
                    font-size: 18px;
                }


/************************** media-query **************************/

@media only screen and (min-width: 1921px) and (max-width: 7368px) {
}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .sec-web-form {
        padding: 200px 0 30px !important;
        min-height: unset;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .sec-web-form {
        padding: 200px 0 30px !important;
        min-height: unset;
    }

    .navbar-brand, .navbar-nav > li {
        margin: 4px 0 0px 3px;
    }

    .nav > li > a {
        padding: 9px 8px;
    }

    .form.engine {
        margin: 0px 0 0 0;
    }

    .sec-web-form .content-box {
        padding: 10% 0px 0;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .sec-web-form .content-box {
        padding: 10% 0px 0;
    }

    .form-list1 i {
        font-size: 16px;
        padding: 0;
        left: 10px;
        top: 10px !important;
    }

    .sec-result {
        padding: 20px 0 60px 0 !important;
    }

    .field2 {
        font-size: 14px;
        padding: 8px 9px;
    }

    .logo a img {
        width: 220px !important;
    }

    .sec-web-form {
        padding: 200px 0 30px !important;
        min-height: unset;
    }

    .navbar-brand, .navbar-nav > li {
        margin: 4px 0 0px 3px;
    }

    .nav > li > a {
        padding: 9px 8px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .sec-web-form .content-box {
        padding: 6% 0px 0;
    }

    .footer-bottom {
        padding: 10px 0 70px !important;
    }

    .field2 {
        font-size: 12px;
        padding: 7px 5px;
    }

    .sec-web-form {
        padding: 200px 0 0 !important;
        min-height: unset;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sec-web-form .content-box {
        padding: 10px 0;
    }

    .sec-web-form {
        padding: 200px 0 2% !important;
    }

    .inner-banner .content-box h2 {
        font-size: 30px;
    }

    .update-fleet-box .rate-box {
        margin-top: 0 !important;
    }

    .footer-bottom {
        padding: 10px 0 70px !important;
    }

    .field2 {
        padding: 8px 15px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    .inner-banner {
        height: 250px;
        padding-bottom: 0% !important;
        align-items: center;
    }

        .inner-banner .content-box {
            flex-direction: column;
            text-align: center;
        }

            .inner-banner .content-box h2 {
                font-size: 30px;
                margin: 0;
                line-height: 32px;
            }

    .booking-tab {
        margin-top: 20px !important;
    }

    .sec-web-form {
        padding: 30px 0 0 !important;
    }

        .sec-web-form .content-box {
            padding: 3% 0px 0;
        }

    .footer-bottom {
        padding: 10px 0 70px !important;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    .inner-banner {
        height: 180px;
        padding-bottom: 0% !important;
        align-items: center;
        padding-top: 0 !important;
    }

        .inner-banner .content-box {
            flex-direction: column;
            text-align: center;
        }

            .inner-banner .content-box h2 {
                font-size: 24px;
                margin: 0;
                line-height: 28px;
            }

    .booking-tab {
        margin-top: 20px !important;
    }

    .footer-bottom {
        padding: 10px 0 70px !important;
    }
}


/* Terms and Conditions Styling */
.innerSec-Pages {
    width: 100%;
    margin: 0;
    padding: 20px 0;
}

    .innerSec-Pages h2 {
        color: #272727;
        font-size: 2.2rem;
        margin-bottom: 10px;
        padding-bottom: 5px;
    }

    .innerSec-Pages h3 {
        color: #272727;
        font-size: 24px;
        margin: 1.5rem 0 1rem 0;
    }

    .innerSec-Pages p {
        color: #555;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .innerSec-Pages ul {
        list-style: none;
        padding-left: 0;
    }

    .innerSec-Pages h3:nth-of-type(1) ~ ul li {
        counter-increment: subsection;
    }

        .innerSec-Pages h3:nth-of-type(1) ~ ul li::before {
            content: "1." counter(subsection);
        }

    .innerSec-Pages h3:nth-of-type(2) ~ ul li {
        counter-increment: subsection;
    }

        .innerSec-Pages h3:nth-of-type(2) ~ ul li::before {
            content: "2." counter(subsection);
        }

    .innerSec-Pages h3:nth-of-type(3) ~ ul li {
        counter-increment: subsection;
    }

        .innerSec-Pages h3:nth-of-type(3) ~ ul li::before {
            content: "3." counter(subsection);
        }

    .innerSec-Pages h3:nth-of-type(4) ~ ul li {
        counter-increment: subsection;
    }

        .innerSec-Pages h3:nth-of-type(4) ~ ul li::before {
            content: "4." counter(subsection);
        }

    .innerSec-Pages h3:nth-of-type(5) ~ ul li {
        counter-increment: subsection;
    }

        .innerSec-Pages h3:nth-of-type(5) ~ ul li::before {
            content: "5." counter(subsection);
        }

    .innerSec-Pages h3:nth-of-type(6) ~ ul li {
        counter-increment: subsection;
    }

        .innerSec-Pages h3:nth-of-type(6) ~ ul li::before {
            content: "6." counter(subsection);
        }

    .innerSec-Pages h3:nth-of-type(7) ~ ul li {
        counter-increment: subsection;
    }

        .innerSec-Pages h3:nth-of-type(7) ~ ul li::before {
            content: "7." counter(subsection);
        }

    .innerSec-Pages h3:nth-of-type(8) ~ ul li {
        counter-increment: subsection;
    }

        .innerSec-Pages h3:nth-of-type(8) ~ ul li::before {
            content: "8." counter(subsection);
        }

    .innerSec-Pages h3:nth-of-type(9) ~ ul li {
        counter-increment: subsection;
    }

        .innerSec-Pages h3:nth-of-type(9) ~ ul li::before {
            content: "9." counter(subsection);
        }

    .innerSec-Pages h3:nth-of-type(10) ~ ul li {
        counter-increment: subsection;
    }

        .innerSec-Pages h3:nth-of-type(10) ~ ul li::before {
            content: "10." counter(subsection);
        }

    .innerSec-Pages h3:nth-of-type(11) ~ ul li {
        counter-increment: subsection;
    }

        .innerSec-Pages h3:nth-of-type(11) ~ ul li::before {
            content: "11." counter(subsection);
        }

    .innerSec-Pages p {
        font-size: 16px;
        color: #555;
    }

    .innerSec-Pages li {
        font-size: 16px;
        color: #555;
        margin-bottom: 15px !important;
        padding-left: 6px;
        position: relative;
        display: block;
        /* Prevent text wrapping */
        /* Add "..." if text is too long */
    }

        .innerSec-Pages li::before {
            width: 30px;
            position: relative;
            display: inline-block;
            color: #f68121;
            font-weight: bold;
            margin-left: 15px;
            margin-right: 10px;
            text-align: center;
        }

    .innerSec-Pages .check li {
        font-size: 17px;
        color: #555;
        margin-bottom: 15px !important;
        /* Prevent text wrapping */
    }

        .innerSec-Pages .check li::before {
            font-family: "Font Awesome 6 Pro";
            content: "\f058" !important;
            color: #f68121;
            position: relative;
            left: 0;
            font-weight: bold;
            width: 25px;
            margin-left: 0;
            margin-right: 5px;
            display: inline-flex;
        }

    .innerSec-Pages a {
        color: #f68121;
        font-weight: 500;
    }

        .innerSec-Pages a:hover {
            color: #272727;
        }

/* Responsive adjustments */
@media (max-width: 768px) {
    .innerSec-Pages {
        margin: 1rem;
        padding: 1rem;
    }

        .innerSec-Pages h2 {
            font-size: 1.8rem;
        }

        .innerSec-Pages h3 {
            font-size: 1.3rem;
        }
}

.whats-button .whatsapp {
    margin-top: 15px;
    right: -30px;
}

@media (max-width: 767px) {
    .whats-button {
        bottom: 5px;
        right: 5px;
    }

        .whats-button .whatsapp {
            right: -30px;
            width: fit-content;
            z-index: 105;
        }

            .whats-button .whatsapp span:nth-child(1) {
                margin: 0 !important;
            }

            .whats-button .whatsapp span:nth-child(2) {
                display: none;
            }

    .whatsapp_float {
        right: -90px !important;
        bottom: 30px !important;
        z-index: 999;
    }

    .sec-web-form .call-link {
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 10px;
    }
}

.input-wrap-flex {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
    align-items: center;
    gap: 10px;
}

    .input-wrap-flex label {
        margin: 0 !important;
    }

.dis_offer_inner .h4-color {
    color: #000;
    font-size: 17px;
    margin: 10px 0 0 0;
    font-weight: 500;
}

#payonline a {
    font-size: 17px;
    font-weight: 500;
    color: #000000;
    background: linear-gradient(180deg, rgba(248, 163, 43, 1) 60%, rgba(254, 230, 22, 1) 100%);
}

    #payonline a:hover {
        color: #fff;
        background: #000000;
        text-decoration: none;
    }

.paywithstripe {
    padding: 12px 40px;
    font-size: 17px;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    background: #000;
    border-radius: 0;
    border-bottom: 3px solid #fff;
    margin-top: 15px !important;
    display: inline-block;
}

    .paywithstripe:hover {
        color: #000;
        background: linear-gradient(180deg, rgba(248, 163, 43, 1) 60%, rgba(254, 230, 22, 1) 100%);
    }

.terms-inner-content {
}

    .terms-inner-content h2 {
        color: #000;
        font-size: 36px;
    }

    .terms-inner-content h3 {
        color: #000;
        font-size: 26px;
        text-transform: capitalize;
        font-weight: 600;
        line-height: 26px;
        margin: 0;
    }

    .terms-inner-content h5 {
        font-size: 20px;
        line-height: 26px;
        font-weight: 600;
        padding: 7px 0;
    }

    .terms-inner-content h6 {
        font-size: 16px;
        line-height: 20px;
        font-weight: 600;
        padding: 7px 0;
        color: #000;
        margin: 0;
    }

    .terms-inner-content .para {
        margin: 0;
        padding: 5px 0;
    }

        .terms-inner-content .para a {
            color: #000;
        }

        .terms-inner-content .para .mt-5 {
            margin-top: 30px;
        }

        .terms-inner-content .para .mb-5 {
            margin-bottom: 30px;
        }

    .terms-inner-content .privacy-list {
        list-style: disc;
        padding: 3px 20px 3px;
    }

        .terms-inner-content .privacy-list li {
            color: #000;
            font-size: 14px;
            padding: 2px 0;
        }
