@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Barlow: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');

/***** General CSS *****/

.heading {
    text-align: center;
    margin: 0 0 50px 0;
}

.heading p {
    width: 60%;
    margin: 0 auto;
}

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

/* Buttons Starts */

.theme1 {
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    font-family: 'Poppins';
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #0000;
    color: #fff;
    background-color: #d89531;
    font-weight: 400;
    padding: 15px 30px;
    border-radius: 5px;
    transition: ease-in;
    transition-duration: 0.2s;
}

.theme1:hover {
    border: 1px solid #fff;
    color: #fff;
    background-color: #000;
    transition: ease-out;
    transition-duration: 0.2s;
}

.theme2 {
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    font-family: 'Poppins';
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #0000;
    color: #fff;
    background-color: #083b82;
    font-weight: 400;
    padding: 15px 30px;
    border-radius: 5px;
    transition: ease-in;
    transition-duration: 0.2s;
}

.theme2:hover {
    border: 1px solid #fff;
    color: #fff;
    background-color: #000;
    transition: ease-out;
    transition-duration: 0.2s;
}

.theme3 {
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    color: #d89531;
    font-weight: 600;
    transition: ease-in;
    transition-duration: 0.2s;
}

.theme3:hover {
    color: #000;
    transition: ease-out;
    transition-duration: 0.2s;
}

.theme3::before {
    content: '';
    position: absolute;
    width: 100%;
    border-bottom: 1px solid #d89531;
    bottom: 0;
    left: 0;
    transition: ease-in;
    transition-duration: 0.2s;
}

.theme3:hover::before {
    border-bottom: 1px solid #000;
    transition: ease-out;
    transition-duration: 0.2s;
}

/* Buttons Ends */




.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: "Barlow", sans-serif;
    font-size: 120px;
    line-height: 110px;
    color: #fff;
    margin: 20px 0;
    text-transform: uppercase;
    font-weight: 800;
}

h2 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 55px;
    line-height: 60px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: "Barlow", sans-serif;
    font-size: 60px;
    line-height: 65px;
    color: #000;
    font-weight: 800;
    margin: 10px 0;
    text-transform: uppercase;
}

h4 {
    font-family: "Barlow", sans-serif;
    font-size: 24px;
    line-height: 30px;
    color: #d89531;
    font-weight: 700;
    margin: 10px 0;
    text-transform: uppercase;
}

h5 {
    font-family: "Barlow", sans-serif;
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

p {
    color: #000;
    font-size: 16px;
    line-height: 30px;
    font-family: 'Poppins', serif;
    font-weight: 400;
    margin: 10px 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

    header {
        position: relative;
    }

    .menuSec {
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 9;
    }

    .menuSec img {
        margin: 0;
    }

    .menuSec ul {
        text-align: center;
        position: relative;
        list-style: none;
        padding: 0;
        margin: 0;
        text-transform: capitalize;
        background: #fff;
        border-radius: 5px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        /* margin: 20px 0 0 0; */
    }

    .menuSec ul li {
        position: relative;
        display: inline-block;
        margin: 0;
        padding: 0;
    }

    .menuSec li ul {
        display: none;
    }

    .menuSec ul li a {
        position: relative;
        display: inline-block;
        text-decoration: none;
        color: #000;
        padding: 10px 19px;
        font-size: 16px;
        line-height: 40px;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: ease-in;
        transition-duration: 0.2s;
    }

    .menuSec ul li a:hover {
        color: #D99532;
        transition: ease-out;
        transition-duration: 0.2s;
    }

    /* .menuSec ul li a::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 0;
        margin: 0 auto;
        border-bottom: 1px solid #fff;
        transition: ease-out;
        transition-duration: 0.2s;
    } */

    

    .menuSec-extra-main a {
        background-color: #D99532;
        color: #fff;
        font-size: 16px;
        line-height: 30px;
        font-family: 'Poppins';
        text-transform: uppercase;
        padding: 17px 20px 18px 20px;
        margin: 0 0 0 -2px;
        letter-spacing: 1px;
        border-radius: 5px;
        border: 1px solid #0000;
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
        transition: ease-in;
        transition-duration: 0.2s;
    }

    .menuSec-extra-main a:hover {
        background-color: #0000;
        border: 1px solid #fff;
        transition: ease-out;
        transition-duration: 0.2s;
    }

    .menuSec ul li:last-child a:after {
        display: none;
    }

    .menuSec ul li a.active {
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        color: #28b16d;
    }

    .menuSec li:hover>ul {
        display: block;
        position: absolute;
        z-index: 1000;
        background-color: #000000;
        left: 0px;
        width: 230px;
        text-align: left;
        top: 38px;
    }

    .menuSec li>ul>li>a {
        border: none;
        padding: 13px 20px !important;
        color: #fff !important;
        overflow: hidden;
        font-size: 13px;
        line-height: 20px;
    }

    .menuSec li>ul>li,
    .menuSec li>ul>li>a {
        display: block;
        margin: 0;
    }

    .menuSec li>ul>li>a:before,
    .menuSec li>ul>li>a:after {
        display: none;
    }

    .menuSec li:hover li {
        float: none;
    }


    .menuSec li ul li a:hover {
        background-color: #ffffff;
        color: #000000 !important;
    }

    .menuSec ul ul ul {
        left: 100%;
        top: 0;
    }

    .menuSec ul:before,
    .menuSec ul:after {
        content: " ";
        display: table;
    }

    .menuSec ul:after {
        clear: both;
    }

    .menuSec li>ul>li:hover>ul {
        left: 230px;
        top: 0px;
        width: 270px;
    }

    .menuSec-extra {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .menuSec-extra-txt h5 {
        font-size: 26px;
        line-height: 30px;
        color: #fff;
        font-family: 'sofia';
        margin: 0;
        text-align: start;
        text-transform: uppercase;
    }

    .menuSec-extra-txt h4 {
        font-size: 30px;
        line-height: 30px;
        margin: 0;
        color: #fff;
        font-family: 'sofia';
        text-align: start;
    }

    .menuSec-extra-icon i {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px;
        width: 50px;
        background: #132d53;
        font-weight: 600;
        color: #fff;
        font-size: 25px;
        border-radius: 5px;
    }

    /* .menuSec-extra-main a::before {
        display: none;
    } */

/*header css start */

/*banner css start */

.main-banner-img {
    width: 100%;
    object-fit: cover;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}


.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 20px;
    height: 5px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 0;
}

.carousel-indicators {
    margin-right: 48%;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #d89531;
}

.banner_text p {
    color: #fff;
    width: 84%;
    margin: 10px 0 40px 0;
}

.banner-main {
    position: relative;
}

.socials {
    position: absolute;
    bottom: -40%;
}

.socials ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.socials ul li a i {
    color: #fff;
    font-size: 35px;
}

/*banner css end*/

/*Inner Banner css Starts*/

    section.inner-banner .banner_text h1 {
        font-size: 80px;
    }

    section.inner-banner .socials {
        bottom: -180%;
    }

/*Inner Banner css Ends*/

/*About Start*/

    section.about-sec {
        padding: 100px 0;
    }

    .about-img-main {
        position: relative;
    }

    .about-img {
        display: flex;
        align-items: center;
        justify-content: start;
        position: relative;
    }

    .about-img::before {
        background-image: url(../images/about-bf.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        content: '';
        position: absolute;
        top: 19%;
        left: 0;
        height: 70%;
        width: 5%;
    }
    
    .about-img img {
        height: 562px;
        object-fit: cover;
        border-radius: 10px;
        width: 85%;
        margin: 0 0 0 30px;
    }

    .about-img-extra {
        position: absolute;
        bottom: 5%;
        right: -10%;
        z-index: 9;
    }

    .about-img-extra img {
        border-radius: 5px;
        border: 5px solid #fff;
        width: 90%;
    }

    .about-txt {
        margin: 0 0 0 20px;
    }

    .about-txt p {
        text-align: justify;
        line-height: 25px;
    }

    .about-txt h3 {
        width: 76%;
    }

    .about-list ul {
        column-count: 2;
        margin: 0 0 20px 0;
    }

    .about-list ul li {
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 10px;
    }

    .about-txt h4 {
        color: #083b82;
    }

    .counter-txt {
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 10px;
    }

    .about-txt-counter-main {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 20px;
        background-color: #d89531;
        padding: 20px;
        border-radius: 5px;
        width: 80%;
        margin: -50px 0 0 -40px;
    }

    .about-txt-counter-main::before {
        content: '';
        position: absolute;
        top: 15%;
        left: 28%;
        height: 70%;
        border-right: 4px solid #fff;
    }

    .counter-txt .counter, .about-txt-counter h6, .counter-txt h6 {
        font-size: 60px;
        line-height: 65px;
        font-family: 'Barlow';
        font-weight: 800;
        margin: 0;
        color: #fff;
    }

    .about-txt-counter h6 {
        width: 30%;
    }
    .counter-txt .counter {
        width: 58%;
    }

    .about-txt-counter h5 {
        font-size: 40px;
        line-height: 45px;
        font-weight: 600;
        margin: 0;
        color: #fff;
    }

    .counter-txt-extra h5 {
        font-size: 26px;
        line-height: 30px;
        font-weight: 700;
        margin: 0;
        color: #fff;
        text-transform: uppercase;
    }

    .about-txt-counter {
        width: 26%;
    }

    .counter-txt-extra {
        width: 40%;
    }

/*About End*/

/*Brand Sec Starts*/

    section.brand-sec {
        padding: 50px 0;
        background-color: #839dc0;
    }

    .brand-img img {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60px;
        width: 200px;
        object-fit: scale-down;
    }

    section.brand-sec .slick-slide {
        opacity: 1;
    }

/*Brand Sec End*/

/*Services Sec css Starts*/

    section.services-sec {
        padding: 80px 0;
        background-image: url('../images/service-bg.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }

    section.services-sec .slick-slide {
        opacity: 1;
    }

    .services-card-main {
        border-radius: 10px;
        overflow: hidden;
    }

    .services-card-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 70px;
        width: 70px;
        background-color: #083b82;
        border-radius: 5px;
        padding: 15px;
        position: absolute;
        top: -20%;
        right: 10%;
    }

    .services-card-txt-icon {
        padding: 30px;
        background-color: #fff;
        position: relative;
        height: 290px;
    }

    .services-card-txt h4 {
        font-size: 34px;
        line-height: 40px;
        color: #000;
    }

    section.services-sec .slick-dots {
        bottom: -55px;
    }

    section.services-sec .slick-dots li button:before {
        width: 25px;
        height: 5px;
        content: '';
        opacity: 1 !important;
        background: black;
    }

    section.services-sec ul.slick-dots .slick-active {
        opacity: 1;
        width: 60px;
    }

    section.services-sec .slick-dots li.slick-active button:before {
        opacity: 1 !important;
        background-color: #d89531;
        width: 65px;
    }





/*Services Sec css Ends*/

/*Quote Sec css Starts*/

    section.quote-sec {
        padding: 92px 0;
        background-image: url('../images/quote-bg.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        background-attachment: fixed;
    }

    section.quote-sec::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #083b82;
        opacity: 80%;
    }

    .quote-txt-main {
        text-align: center;
        position: relative;
    }

    .quote-txt h3 {
        width: 58%;
        margin: 0 auto 30px auto;
        color: #fff;
        line-height: 70px;
    }

    .quote-call-main {
        display: inline-block;
    }

    .quote-call {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .quote-call-txt {
        text-align: start;
    }

    .quote-call-txt h6 {
        font-size: 26px;
        line-height: 30px;
        font-family: 'sofia-bold';
        color: #0496d1;
        text-transform: uppercase;
        margin: 0;
    }

    .quote-call-txt h5 {
        color: #0496d1;
        font-size: 30px;
        line-height: 1;
        margin: 0;
    }

    .quote-call-icon i {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px;
        width: 50px;
        background: #0496d1;
        color: #fff;
        font-weight: 900;
        font-size: 25px;
        border-radius: 5px;
    }

/*Quote Sec css Ends*/

/*Choose Sec css Startd*/

    section.choose-sec {
        padding: 80px 0;
    }

    .choose-txt h5 {
        font-family: 'sofia-black';
    }

    .choose-txt p {
        margin: 20px 0;
    }

    .choose-card {
        display: flex;
        justify-content: start;
        gap: 20px;
        margin: 0 0 30px 0;
    }

    .choose-card-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #d89531;
        border-radius: 5px;
        height: 70px;
        width: 70px;
    }

    .choose-card-txt {
        width: 80%;
    }

    .choose-txt h3 {
        font-size: 51px;
    }
    

    .choose-card-txt h5 {
        font-size: 30px;
        line-height: 35px;
        font-weight: 800;
        text-transform: uppercase;
        margin: 0 0 10px 0;
        color: #000;
    }

    .choose-card-txt p {
        font-size: 12px;
        line-height: 24px;
        margin: 0;
    }

    .choose-img {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .choose-img img {
        border-radius: 5px;
        width: 95%;
    }
    
    .choose-img::before {
        content: '';
        position: absolute;
        top: 5%;
        left: -10px;
        background-image: url("../images/choose-bf.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 470px;
        width: 50px;
        z-index: -1;
    }

/*Choose Sec css Ends*/

/* Counter Section */

    .counter-sec {
        background-color: #005299;
        padding: 80px 0;
    }

    .counter-box {
        text-align: center;
    }

    .counter-box>div {
        font-size: 60px;
        line-height: 1;
        color: #fff;
        font-family: 'Barlow';
        font-weight: 700;
        justify-content: center;
        gap: 0;
    }

    .counter-box>p {
        font-size: 24px;
        line-height: 30px;
        margin: 20px 0;
        font-family: 'Barlow';
        color: #fff;
        font-weight: 500;
        text-transform: uppercase;
    }

    .counter-flex>a {
        display: flex;
        background: var(--theme1);
        height: 150px;
        align-items: center;
        justify-content: center;
        width: 220px;
        text-transform: uppercase;
        color: #fff;
    }

    .counter-sec span.count {
        color: var(--green);
    }

    .counter-sec .counter-txt .counter {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .counter-box-icon img {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60px;
        width: 60px;
        object-fit: scale-down;
        margin: 0 auto;
    }

/* Counter Section */

/* industries Section Starts */

    section.industries-sec {
        padding: 80px 0;
    }

    .industries-card {
        padding: 60px 40px 40px 40px;
        border: 1px solid #00000026;
        border-radius: 5px;
    }
    
    .industries-card-txt h5 {
        font-size: 30px;
        line-height: 35px;
        font-weight: 700;
        margin: 10px 0;
    }

    .industries-card-txt p {
        text-align: justify;
    }

/* industries Section Ends */

/* Contact Section Start */

    section.contact-us {
        padding: 100px 0px;
        background-image: url(../images/contact-us-bg.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        background-attachment: fixed;
    }

    section.contact-us::Before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #000;
        opacity: 80%;
    }

    .contact-us h3 {
        font-size: 56px;
        color: #000000;
        text-transform: uppercase;
        font-weight: 800;
    }

    section.contact-us p {
        font-size: 15.52px;
        color: #797878;
    }

    .detai-s i {
        font-size: 30px;
        width: 70px;
        height: 70px;
        border: 1px solid #dd9933;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #dd9933;
        border-radius: 300px;
    }

    .detai-s h6 {
        font-size: 18.35px;
        color: #000;
        font-weight: 700;
        margin: 0;
        font-family: 'Poppins';
    }

    .detai-s a {
        font-size: 20px;
        color: #797878;
        margin: 0;
        font-family: 'Poppins';
        display: inline-block;
    }

    ul.cont-icon i {
        /* margin-right: 15px; */
    }

    ul.cont-icon {
        display: flex;
        align-items: center;
        justify-content: start;
        margin: 20px 0;
        gap: 30px;
        transition: ease-in;
        transition-duration: 0.2s;
    }

    .soccail-icon i {
        font-size: 20px;
        background: #941a3f;
        color: #fff;
        width: 30px;
        height: 40px;
        width: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        border-radius: 6px;
    }

    .Leave-wrap {
        padding: 35px;
        box-shadow: 0px 0px 1px 1px #7c7c7c;
        border-radius: 10px;
        position: relative;
        background-color: #fff;
    }

    .Leave-wrap input::placeholder {
        font-size: 14px;
    }

    .Leave-wrap input {
        width: 100%;
        height: 50px;
        border: 1px solid #c4c4c4;
        margin-top: 15px;
        padding: 10px;
        color: #000;
        font-size: 14px;
        border-radius: 6px;
        background: #f6f6f6;
    }

    .Leave-wrap textarea {
        width: 100%;
        height: 150px;
        border: 1px solid #c4c4c4;
        margin-top: 15px;
        padding: 10px;
        color: #000 !important;
        font-size: 14px;
        border-radius: 10px;
        background: #f6f6f6;
        resize: none;
    }

    /* .Leave-wrap button {
        color: #fff;
        background: #182334;
        border: 0;
        font-size: 18px;
        margin-top: 30px;
        padding: 15px 50px;
        font-weight: 500;
    } */

    iframe {
        width: 100%;
        height: 500px;
    }

    .Leave-wrap textarea::placeholder {
        color: #8b8a8a;
    }

    .Leave-wrap input::placeholder {
        color: #8b8a8a;
    }


    /* Chrome, Safari, Edge, Opera */

    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .contact1 h3 {
        font-size: 60px;
        color: #fff;
    }

    .contact1 h6 {
        font-size: 16px;
        line-height: 20px;
        color: #fff;
        font-family: 'Poppins';
        font-weight: 400;
        text-transform: uppercase;
    }

    .contact1 h5 {
        font-size: 25px;
        line-height: 30px;
        color: #fff;
        font-family: 'Poppins';
        font-weight: 300;
        margin: 0;
        transition: ease-out;
        transition-duration: 0.2s;
    }

    ul.cont-icon:hover li h5 {
        color: #dd9933;
        transition: ease-out;
        transition-duration: 0.2s;
    }

    section.contact-us .row {
        align-items: center;
    }

    .contact1 {
        position: relative;
    }

    .contact1 p {
        color: #fff !important;
    }
    


/* Contact Section End */


/*Testi Start*/

    .testi-main {
        border: 1px solid #666666;
        border-radius: 10px;
        padding: 80px 30px 30px 30px;
        position: relative;
        overflow: hidden;
    }

    .testi-head h4 {
        color: #083b82 !important;
    }

    .testi-profile-txt {
        width: 100%;
    }

    .testi-profile-txt ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .testi-profile-txt ul li h5 {
        font-size: 30px;
        line-height: 34px;
        margin: 0;
        font-family: 'Barlow';
        font-weight: 600;
    }

    .testi-profile-txt ul li h6 {
        text-transform: uppercase;
        margin: 0;
    }

    .testi-profile-img img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 50%;
        border: 2px solid #0806e3;
    }

    .esti-profile-mian {
        display: flex;
        align-items: center;
        justify-content: start;
    }

    .testi-profile-img {
        width: 25%;
    }

    .testi-txt {
        width: 100%;
    }

    section.testi-sec {
        padding: 100px 0;
    }

    .testi-txt ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 0 10px;
    }

    .testi-txt ul li h5 {
        font-size: 20px;
        line-height: 20px;
        margin: 0 0 10px;
        font-family: 'Poppins';
        text-transform: uppercase;
    }

    .testi-txt ul li h6 {
        font-size: 20px;
        line-height: 20px;
        margin: 0;
        font-family: 'Poppins';
        text-transform: uppercase;
    }

    .testi-txt ul li img {
        object-fit: contain;
    }

    .star i {
        color: orange;
        font-size: 16px;
    }

    .star {
        display: flex;
        align-items: center;
        margin: 0 0 10px;
        gap: 3px;
    }

    .testi-txt p {
        color: #636262;
        font-size: 15px;
        text-align: justify;
        line-height: 25px;
    }

    .testi-main:before {
        content: '';
        position: absolute;
        background: #dd9933;
        width: 100px;
        height: 100px;
        left: 0;
        top: 0;
        z-index: -1;
        clip-path: polygon(0 0, 0% 100%, 100% 0);
    }

    .testi-slider .slick-dots li button:before {
        font-family: 'slick';
        font-size: 6px;
        line-height: 20px;
        position: absolute;
        top: 0;
        left: 0;
        width: 25px;
        height: 10px;
        border-radius: 5px;
        content: '' !important;
        text-align: center;
        opacity: 1;
        background: #000;
        color: black;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .testi-slider .slick-dots li.slick-active button:before {
        opacity: 1;
        color: #00c7c5;
        background: #00c7c5;
    }

    .testi-slider .slick-active {
        opacity: 1;
    }

    .testi-slider .slick-dots {
        bottom: -60px;
    }
    
    section.testi-sec .slick-next:before {
        content: '\f061';
        font-family: 'Font Awesome 5 Pro';
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px;
        width: 50px;
        background: #000;
        color: #fff !important;
        border-radius: 5px;
        opacity: 1 !important;
    }

    section.testi-sec .slick-prev:before {
        content: '\f060';
        font-family: 'Font Awesome 5 Pro';
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px;
        width: 50px;
        background: #000;
        color: #fff !important;
        border-radius: 5px;
        opacity: 1 !important;
    }

    .slick-next {
        right: -15px;
    }

    .slick-prev {
        left: -45px;
    }

/*Testi Start*/

/* Footer css Starts */

    .footerSec {
        background-image: url('../images/footer-bg.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 80px 0 0 0;
        background-attachment: fixed;
    }

    .copy-txt p {
        text-align: center;
        line-height: 28px;
        color: #ffffffa1;
    }

    .footer-logo {
        /*border-bottom: 1px solid #fff;*/
        padding: 0 0 10px 0;
        display: inline-block;
        margin: 0 0 10px 0;
    }

    .foot-links h5, .news-letter h5 {
        font-size: 30px;
        line-height: 35px;
        color: #fff;
        text-transform: uppercase;
        border-bottom: 2px solid #dd9933;
        display: inline-block;
        padding: 0 0 10px 0;
    }

    .foot-links ul li {
        margin: 0 0 20px 0;
    }

    .foot-links ul li a, .contact-link ul li a p, .contact-link ul li p {
        font-size: 16px;
        line-height: 30px;
        font-family: 'Poppins';
        color: #fff;
        transition: ease-in-out;
        transition-duration: 0.2s;
    }

    .foot-links ul li a:hover, .contact-link ul li a p:hover, .contact-link ul li p:hover {
        color: #d89531;
        transition: ease-in-out;
        transition-duration: 0.2s;
    }

    .contact-link ul li a {
        font-size: 15px;
        line-height: 25px;
        font-family: 'Poppins';
        color: #fff;
    }

    .contact-link ul li i {
        color: #fff;
        font-size: 20px;
        line-height: 22px;
    }

    .contact-link ul li a p {
        font-size: 16px;
        line-height: 30px;
        font-family: 'Poppins';
        color: #fff;
        font-weight: 400;
        text-transform: capitalize;
    }

    .contact-link ul li {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .footer-contact p {
        font-size: 14px;
        line-height: 26px;
        font-family: 'Poppins';
        color: #fff;
        font-weight: 300;
        width: 100%;
    }

    .news-letter form input {
        width: 100%;
    }

    .news-letter form input {
        width: 100%;
        padding: 20px;
        border: none;
        background-color: #fff;
        border-radius: 5px;
        margin: 0 0 20px 0;
    }

    .news-letter h5 {
        margin: 0 0 30px 0;
    }

    .footer-btm {
        background-color: #dd9933;
        margin: 60px 0 0 0;
    }

    .foot-links ul li a {
        text-transform: uppercase;
    }

    .contact-link ul li a {
        text-transform: unset;
    }

    .news-letter p {
        color: #fff;
    }

/* Footer css End */

/* About Us Page css Starts */

    .about-txt-extra {
        margin: 20px 0 0 0;
    }

    section.team-sec {
        padding: 80px 0;
    }

    .team-card-img img {
        border-radius: 15px;
    }

    .team-card-txt {
        text-align: center;
        margin: 20px 0 0 0;
    }

    .team-card-txt h5 {
        font-size: 36px;
        line-height: 40px;
        text-transform: uppercase;
        font-weight: 700;
        margin: 0 0 5px 0;
    }

    .team-card-txt h6 {
        font-size: 20px;
        line-height: 25px;
        color: #005299;
        text-transform: uppercase;
        margin: 0;
    }

/* About Us Page css Ends */

/* Services Page css Starts */

    section.inner-services {
        background-image: none;
    }

    section.inner-services .services-card-main {
        margin: 0 0 20px 0;
        overflow: unset;
    }

    section.inner-services .services-card-img img {
        border-radius: 10px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    section.inner-services .services-card-txt-icon {
        box-shadow: 0 0 3px 0 #00000036;
        border-radius: 10px;
        border-top-right-radius: 0;
        border-top-left-radius: 0;
        height: 300px;
    }

/* Services Page css Ends */

/* Contact Page Start */
            
    section.contact_us {
        padding: 150px 0 100px;
        position: relative;
        background-image: url(../images/cart-bg.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    img.crt-3.cnt-3 {
        bottom: 47%;
    }

    img.crt-5.cnt-5 {
        left: auto;
        right: 25%;
    }
    .contact1 {
        padding: 50px;
        border: 1px solid #0000002b;
        border-radius: 10px;
    }

    .contact1 h2, .contact2 h2 {
        color: black;
        font-size: 48px;
        font-weight: bold;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .contact1 p, .contact2>p {
        color: #000;
        font-size: 18px;
        line-height: 29px;
        font-weight: 400;
        margin-top: 0;
        margin-bottom: 5%;
        font-family: 'Poppins';
        width: 80%;
    }

    .contact1 input#name {
        margin: 0 21px 0 0;
    }

    .contact1 input, .contact1 textarea {
        width: 100%;
        margin-bottom: 20px;
        height: 60px;
        padding: 20px;
        background: #fff;
        border: 1px solid #00000026;
        border-radius: 5px;
        outline: none;
    }

    .contact1 .theme_btn {
        width: 100%;
        border: 0;
        background: #f01414;
        color: #fff;
        padding: 10px;
        font-size: 23.64px;
        font-family: 'Nunito';
        font-weight: 500;
        border-radius: 0;
        height: 60px;
    }

    .contact2 ul li {
        display: flex;
        align-items: center !important;
        margin-bottom: 20px;
        align-items: flex-start;
    }

    .contact2 ul li h4 {
        font-weight: 600;
        text-transform: capitalize;
        color: black;
        line-height: 34px;
        font-size: 18px;
        font-family: 'Poppins';
        margin: 0;
    }

    .contact2 ul li p a {
        color: #000;
        font-family: 'Poppins';
        line-height: 20px;
        font-size: 18px;
        font-weight: 400;
        width: 100%;
    }

    .contact2 ul li p {
        color: #000000b3;
        font-family: 'Poppins';
        font-size: 18px;
        line-height: 20px;
        font-weight: 500;
        width: 100%;
        margin: 0;
    }

    .contact2 .icon {
        height: 85px;
        width: 17%;
        /* border: dashed 2px #000; */
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 23px;
    }

    .contact2 .icon i {
        font-size: 48px;
        color: black;
    }

    .icon img {
        width: 70%;
    }

    .map {
        margin: 50px 0 -10px 0;
    }

    h1.cnt:after {
        width: 25px;
        height: 25px;
        right: 5.1%;
        bottom: 21%;
    }

    .contact1 textarea {
        resize: none;
        border-radius: 10px;
        height: 160px;
    }

    .contact1 input::placeholder,
    .contact1 textarea::placeholder {
        color: #9d9a9a;
        font-family: 'Poppins';
        font-size: 19px;
        font-weight: 400;
    }

    .contact2 .icon_info {
        width: 83%;
    }

    button.btn1.contact-pag-btn {
        width: 100%;
        border: 0;
        margin-top: 0;
        font-size: 26px;
    }

    input#name, input#mail {
        width: 48%;
    }

    .map iframe {
        height: 700px;
        width: 100%;
    }

    .contact-socials ul {
        justify-content: start;
    }

    .contact1 form button.theme2 {
        font-size: 16px;
        line-height: 16px;
        padding: 15px 40px;
    }

    .contact2 .socials {
        position: relative;
        border: unset;
    }

    .contact2 .socials ul li a i {
        color: #000;
    }

    .contact2 .socials ul li {
        margin: 0;
    }


/* Contact Page End */


/* Book Page Starts */

    section.book-sec {
        padding: 100px 0;
    }

    .book-form-input input, .book-form-input textarea, .book-form-input select {
        width: 100%;
        padding: 15px 20px;
        margin: 0 0 30px 0;
        border-radius: 5px;
        border: 1px solid #6c757d63;
        background-color: #f8f8f8;
    }

    .book-form-input textarea {
        height: 200px;
        resize: none;
    }

    .book-form-btn {
        text-align: center;
    }

    .book-form-btn button.theme1 {
        font-size: 24px;
        line-height: 30px;
        padding: 15px 250px;
    }

/* Book Page End */

/* Services Detail Page Starts */

    section.services-detail-sec {
        padding: 80px 0;
    }

/* Services Detail Page End */

/*responsive*/


@media only screen and (min-width: 1366px) and (max-width: 1465px){

    .banner_text h1 {
  
    font-size: 95px;
    }
    .about-txt h3 {
    width: 100%;
}
    
    .services-card-txt h4 {
    font-size: 30px;
  }
    
    section.inner-banner .banner_text h1 {
    font-size: 71px;
}
       .counter-txt-extra h5 {
    font-size: 23px;
    }
    
    .about-txt-counter h5 {
    font-size: 33px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1365px){
    
    
    .banner_text h1 {
  
    font-size: 95px;
    }
    .about-txt h3 {
    width: 100%;
}
    
    .services-card-txt h4 {
    font-size: 30px;
  }
    
    section.inner-banner .banner_text h1 {
    font-size: 71px;
}
    section.inner-banner .socials {
    bottom: -100%;
}
    
    
    .counter-txt-extra h5 {
    font-size: 23px;
    }
    
    .about-txt-counter h5 {
    font-size: 33px;
    }
    
}

    
    

@media only screen and (min-width: 768px) and (max-width: 991px){
    
  .menuSec-extra-main {
  
    text-align: end;
}  
    
.banner_text h1 {
   
    font-size: 65px;
    line-height: 63px;
}
    
    .about-txt h3 {
    width: 100%;
    font-size: 40px;
    line-height: 50px;
}
    
    
    .about-txt-counter-main {
    padding: 17px;
    width: 100%;
        margin: 0;


}
    .counter-txt .counter {
    width: 86%;
}
    
    .about-txt-counter h5 {
    font-size: 20px;
   
}
   .counter-txt-extra {
    width: 70%;
} 
    .heading p {
    width: 100%;
  
}
 .services-card-txt h4 {
    font-size: 24px;
    line-height: 29px;
 
}
.quote-txt h1 {
  
    font-size: 77px;
    line-height: 70px;
}
.services-card-img img {
    width: 100%;
}

section.inner-banner .banner_text h1 {
    font-size: 57px;
}
}

@media only screen and (min-width: 992px) and (max-width: 1199px){
   .menuSec-extra-main a {
    font-size: 12px; 
   }
    
    .banner_text h1 {
  
    font-size: 95px;
    }
    .about-txt h3 {
    width: 100%;
    font-size: 45px;
}
    
    .about-txt-counter-main {
    padding: 9px;
    width: 100%;
    margin: 0;
}
    .about-txt-counter h5 {
    font-size: 36px;
  }
  
  .about-txt p {
  
    line-height: 20px;
    font-size: 13px;
}
  .services-card-txt h4 {
    font-size: 19px;
    line-height: 26px;
 
}
  
  .contact1 h3 {
    font-size: 47px;

}
  section.contact-us p {

    width: 100%;
}
  
  .contact1 h5 {
    font-size: 14px;
  
}
  
}

@media only screen and (min-width: 300px) and (max-width: 519px){



.banner_text h1 {
   
    font-size: 68px;
    line-height: 83px;
}


.main-banner-img {
 
    object-fit: cover;
    height: 762px;
}


.menuSec-extra-main {
    text-align: center;
    margin-top: 4%;
}
.about-txt-counter-main {

    gap: 11px;
    padding: 10px;
        width: 100%;
    margin: 0;
}
.counter-txt .counter {
    width: 80%;
}

.about-txt-counter h5 {
    font-size: 27px;
   
}

.counter-txt-extra h5 {
    font-size: 20px;
  
}

.about-txt h3 {
    width: 100%;
    font-size: 40px;
}

.about-txt p {
    text-align: start;

}

.heading p {
    width: 100%;
 
}
.services-heading h3 {
  
    font-size: 42px;
    line-height: 65px;
}

.services-card-txt h4 {
    font-size: 27px;

}
.quote-txt h1 {
    
    font-size: 82px;
    line-height: 81px;
}

.testi-head h3 {
 
    font-size: 41px;
    line-height: 59px;
}


.contact1 h3 {
    font-size: 36px;
   
}
.contact1 p, .contact2>p {
  
    width: 100%;
}
.choose-txt h3 {
    font-size: 45px;
}
section.inner-banner .banner_text h1 {
    font-size: 68px;
}

.contact1 h5 {
    font-size: 12px;
}

input.theme2 {
    width: 40%!important;
}
}


@media only screen and (min-width: 520px) and (max-width: 767px){
    
    
    
.banner_text h1 {
   
    font-size: 68px;
    line-height: 83px;
}


.main-banner-img {
 
    object-fit: cover;
    height: 762px;
}


.menuSec-extra-main {
    text-align: center;
    margin-top: 4%;
}
.about-txt-counter-main {

    gap: 11px;
    padding: 10px;
        width: 100%;
    margin: 0;
}
.counter-txt .counter {
    width: 80%;
}

.about-txt-counter h5 {
    font-size: 27px;
   
}

.counter-txt-extra h5 {
    font-size: 20px;
  
}

.about-txt h3 {
    width: 100%;
    font-size: 40px;
}

.about-txt p {
    text-align: start;

}

.heading p {
    width: 100%;
 
}
.services-heading h3 {
  
    font-size: 42px;
    line-height: 65px;
}

.services-card-txt h4 {
    font-size: 27px;

}
.quote-txt h1 {
    
    font-size: 82px;
    line-height: 81px;
}

.testi-head h3 {
 
    font-size: 41px;
    line-height: 59px;
}


.contact1 h3 {
    font-size: 36px;
   
}
.contact1 p, .contact2>p {
  
    width: 100%;
}
.choose-txt h3 {
    font-size: 45px;
}
section.inner-banner .banner_text h1 {
    font-size: 68px;
}

.contact1 h5 {
    font-size: 12px;
}

input.theme2 {
    width: 40%!important;
}
    
    html {
    overflow-x: hidden;
}

    .banner_text {
    margin-top: 45%;
}
    
    
    
    
    
    
    
    
    
    
}










