﻿body {
    font-family: "Roboto", sans-serif;
}

/*<<<<<<<<<Nav-start>>>>>>>>>>>*/
.wrapper {
    position: relative;
    width: 100%;
    box-shadow: 2px 2px 5px #ffffff47, -2px -2px 2px #ffffff;
    background: #000;
    z-index: 999;
}

a {
    text-decoration: none;
}

.wrapper nav {
    position: relative;
    display: flex;
    max-width: calc(100% - 200px);
    margin: 0 auto;
    height: 90px;
    align-items: center;
    justify-content: space-between;
}

nav .nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

    nav .nav-content .links {
        display: flex;
        gap: 0px;
        margin: 0px
    }

.nav-content .logo {
    display: flex;
    align-items: center;
}


.nav-content .logo {
    color: #a443ff;
    font-size: 30px;
    font-weight: 600;
}

.nav-content .links li {
    list-style: none;
    line-height: 70px;
}

    .nav-content .links li a,
    .nav-content .links li label {
        color: #fff;
        font-size: 18px;
        font-weight: 500;
        padding: 7px 5px;
        border-radius: 5px;
        transition: all 0.3s ease;
        text-decoration: none;
        font-family: 'Roboto';
    }

    .nav-content .links li,
    .nav-content .links li label {
        color: #000;
        font-size: 18px;
        font-weight: 500;
        padding: 7px 14px;
        border-radius: 5px;
        transition: all 0.3s ease;
        text-decoration: none;
        font-family: 'Roboto';
    }

        .nav-content .links li label {
            display: none;
        }

            .nav-content .links li a:hover,
            .nav-content .links li label:hover {
                background: #000;
                border-radius: 0px;
                border-bottom: 1px solid gray;
                color: #fff;
            }

.wrapper .search-icon,
.wrapper .menu-icon {
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    line-height: 70px;
    width: 70px;
    text-align: center;
}

.wrapper .menu-icon {
    display: none;
}

.wrapper #show-search:checked ~ .search-icon i::before {
    content: "\f00d";
}

.wrapper .search-box {
    position: absolute;
    height: 100%;
    max-width: calc(100% - 50px);
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.wrapper #show-search:checked ~ .search-box {
    opacity: 1;
    pointer-events: auto;
}

.search-box input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 17px;
    color: #000;
    background: #ffff;
    padding: 0 100px 0 15px;
}

    .search-box input::placeholder {
        color: #545252;
    }

.search-box .go-icon {
    position: absolute;
    display: flex;
    right: 10px;
    top: 50%;
    align-items: center;
    transform: translateY(-50%);
    line-height: 60px;
    width: 51px;
    height: 50px;
    justify-content: center;
    border: none;
    outline: none;
    color: #000;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    background: transparent;
}

.wrapper input[type="checkbox"] {
    display: none;
}

/* Dropdown Menu code start */
.nav-content .links ul {
    position: absolute;
    background: #dfaf7a;
    top: 80px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    color: #fff;
    padding: 0px
}

.nav-content .links li:hover > ul {
    top: 70px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.nav-content .links ul li a {
    color: #fff;
    display: block;
    width: 100%;
    line-height: 30px;
    border-radius: 0px !important;
}

.nav-content .links ul ul {
    position: absolute;
    top: 0;
    right: calc(-100% + 8px);
}

.nav-content .links ul li {
    position: relative;
}

    .nav-content .links ul li:hover ul {
        top: 0;
    }

/* Responsive code start */
@media screen and (max-width: 1250px) {
    .wrapper nav {
        max-width: 100%;
        padding: 0 20px;
    }

    nav .nav-content .links {
        margin-left: 30px;
    }

    .nav-content .links li a {
        color: #fff;
        padding: 8px 8px;
        font-size: 17px;
    }


    .wrapper .search-box {
        max-width: calc(100% - 100px);
    }

        .wrapper .search-box input {
            padding: 0 100px 0 15px;
        }
}

@media screen and (max-width: 900px) {
    .wrapper .menu-icon {
        display: block;
    }

    .nav-content .logo a {
        font-size: 25px;
    }

    .nav-content .logo img {
        width: 150px;
    }

    nav .nav-content {
        justify-content: end;
    }

    .wrapper #show-menu:checked ~ .menu-icon i::before {
        content: "\f00d";
    }

    nav .nav-content .links {
        display: block;
        position: fixed;
        background: #14181f;
        height: auto;
        width: 100%;
        top: 70px;
        left: -100%;
        margin-left: 0;
        padding-left: 0px;
        /* max-width: 350px; */
        overflow-y: auto;
        padding-bottom: 100px;
        transition: all 0.3s ease;
    }

    nav #show-menu:checked ~ .nav-content .links {
        left: 0%;
    }



    .nav-content .links li a,
    .nav-content .links li label {
        line-height: 20px;
        font-size: 17px;
        display: block;
        padding: 8px 18px;
        cursor: pointer;
        font-family: 'Roboto';
        color: #fff;
    }

        .nav-content .links li a.desktop-link {
            display: none;
        }

    /* dropdown responsive code start */
    .nav-content .links ul,
    .nav-content .links ul ul {
        position: static;
        opacity: 1;
        visibility: visible;
        background: none;
        max-height: 0px;
        overflow: hidden;
    }

    .nav-content .links #show-features:checked ~ ul,
    .nav-content .links #show-services:checked ~ ul,
    .nav-content .links #show-items:checked ~ ul {
        max-height: 100vh;
    }

    .nav-content .links ul li {
        margin: 7px 20px;
    }

        .nav-content .links ul li a {
            font-size: 17px;
            line-height: 30px;
            border-radius: 5px !important;
        }
}

@media screen and (max-width: 400px) {
    .wrapper nav {
        padding: 0 10px;
    }

    .nav-content .logo a {
        font-size: 23px;
    }

    .wrapper .search-box {
        max-width: calc(100% - 70px);
    }

        .wrapper .search-box .go-icon {
            width: 30px;
            right: 0;
        }

        .wrapper .search-box input {
            padding-right: 30px;
        }
}

/*<<<<<<<<<Nav-End>>>>>>>>>>>*/
/*<<<<<<<<<banner-start>>>>>>>>>>>*/
.banner-btn {
    border: 1px solid #fdfcff;
    padding: 10px 50px;
    font-family: 'Roboto';
    display: block;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 500;
    background: #ffffffc7;
    text-align: center;
    margin: 10px auto;
}

.banner-sm-heading {
    text-align: center;
    z-index: 1;
    display: block
}

    .banner-sm-heading .h1 {
        font-size: 80px;
        font-weight: bold;
        color: #fff;
        font-family: 'Roboto';
        display: block
    }

    .banner-sm-heading .p {
        font-size: 18px;
        color: #fff;
        font-weight: 500;
        display: block
    }

.banner-btn1 {
    background: #c39d74;
    border: 1px solid #ffffff;
    padding: 16px 60px;
    border-radius: 4px;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    margin: 20px auto;
    text-decoration: none;
}

.banner-section::after {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000070;
    content: "";
    z-index: -1;
}


.banner-section {
    position: relative;
    z-index: 3;
    padding: 120px 0px;
}

/*<<<<<<<<<banner-End>>>>>>>>>>>*/


/*<<<<<<<<<section1-start>>>>>>>>>>>*/
.setion1-card-icon {
    background: #ffffff;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 12px auto;
}

.section1-card-heding {
    font-size: 30px;
    font-weight: bold;
    font-family: 'Roboto';
    display: block
}

.section1-card-sub-heding {
    font-family: 'Roboto';
    font-size: 17px;
    font-weight: 500;
    margin-top: 15px;
    display: block
}

.section1 {
    padding: 100px 0px;
}

.section1-card {
    background: #FAF7F6;
    transition: .5s ease all
}

    .section1-card:hover {
        background: #c39d74;
    }

        .section1-card:hover .section1-card-sub-heding {
            color: #fff
        }

        .section1-card:hover .section1-card-heding {
            color: #fff
        }

/*<<<<<<<<<section1-End>>>>>>>>>>>*/


/*<<<<<<<<<section2-start>>>>>>>>>>>*/
.section2 {
    padding: 80px;
    background: #faf7f6;
}

.pbmit-fld-wrap {
    text-align: right;
}

.pbmit-fid-title {
    color: #00112e;
    margin-top: 15px;
    display: block;
    font-weight: 500;
}

.pbmit-fid-inner {
    color: #ffffff;
}

.pbmit-fid-inner {
    font-size: 70px;
    line-height: 80px;
    margin-bottom: 0;
    font-weight: 700;
    color: transparent;
    -webkit-text-size-adjust: 0;
    overflow: visible !important;
    text-shadow: 1px 1px 0 #00358d, -1px -1px 0 #00358d, 1px -1px 0 #00358d, -1px 1px 0 #00358d, 1px 1px 0 #00358d;
    -webkit-text-stroke-color: #00358d;
    -webkit-text-fill-color: inherit;
    -webkit-text-stroke-width: 0;
}

.section2-card2 {
    padding: 30px;
    background: #fff;
    border-radius: 35px;
    border: 1px solid #f0f0f7;
}

    .section2-card2 .heading {
        margin-bottom: 50px;
        font-weight: 500;
        font-family: 'Roboto';
        font-size: 30px;
        display: block;
    }

.section2-card1 {
    border-radius: 35px;
    overflow: hidden;
}

.section2-text .p {
    font-size: 14px;
    font-family: 'Roboto';
    font-weight: 400;
    color: #00112e;
    margin-bottom: 15px;
    display: block;
}

.section2-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .section2-text ul li {
        font-size: 16px;
        line-height: 26px;
        padding-left: 10px;
        margin-bottom: 15px;
        font-weight: 400;
        color: #43484a;
        align-self: center;
        transition: color 0.3s;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

        .section2-text ul li i {
            margin-right: 15px;
            color: #00358d;
        }

        .section2-text ul li svg {
            width: 12px;
            margin-right: 10px;
            color: #00358d;
        }

/*<<<<<<<<<section2-End>>>>>>>>>>>*/

/*<<<<<<<<<section3-start>>>>>>>>>>>*/
.section3 {
    padding: 100px 0px;
}


.color-heading img {
    margin-left: 5px;
}

.color-heading {
    color: #000000;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}

.section3-text .h1 {
    font-size: 60px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.section3-sub-heading {
    font-size: 20px;
    margin: 15px 0px;
    display: block;
    margin-bottom: 15px;
}


.section3-ul li {
    margin: 15px 0px;
    font-size: 17px;
    font-weight: 500;
    color: #000;
}

.section3-ul {
    font-size: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.box.d-flex.align-items-center.mt-15 {
    border: 1px solid #0000001f;
    padding: 15px;
    border-radius: 20px;
    background: #deb789;
    color: #000;
}

.section3-img img {
    border-radius: 0px 0px 65px 65px;
}

.section3-text {
    padding-left: 60px;
}

.box.d-flex.align-items-center.mt-15 strong {
    font-size: 14px;
}

/*<<<<<<<<<section3-End>>>>>>>>>>>*/

/*<<<<<<<<<section4-start>>>>>>>>>>>*/

.flexing-div-section4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section4 {
    background: #deb789;
    padding: 50px;
    margin: 50px;
    border-radius: 60px;
    margin-top: 0px
}

.sm-heading {
    color: #080808;
    font-weight: 500;
    font-size: 20px;
    display: block
}

.big-heading {
    font-size: 60px;
    color: #000000;
    margin-bottom: 50px;
    display: block
}

.section4-card {
    padding: 16px;
    border: 1px solid #ffffff;
    border-radius: 20px;
    transition: .5s ease all
}

    .section4-card:hover .section4-img img {
        filter: brightness(1);
        transition: .5s ease all
    }

.section4-img img {
    margin-top: 15px;
    border-radius: 15px;
    filter: brightness(.5);
}

.flexing-div-section4 .h6 {
    font-size: 22px;
    color: #FFF;
}

/*<<<<<<<<<section4-End>>>>>>>>>>>*/

/*<<<<<<<<<section5-start>>>>>>>>>>>*/
.section5 {
    margin: 50px 0px;
}

.section5-card {
    background: #deb789;
    padding: 30px;
    border-radius: 15px;
}

.section5-color-heading {
    font-size: 16px;
    font-weight: 500;
    color: #b77120;
    display: block
}

.section5-heading {
    color: #000;
    font-weight: bold;
    font-size: 60px;
    margin-bottom: 50px;
    display: block
}

    .section5-heading a {
        color: #000;
        font-weight: bold;
    }

.section5-card .p {
    font-size: 20px;
    font-weight: 500;
    color: #020202;
    margin: 0px;
    display: block
}

.section5-card .h1 {
    font-weight: bold;
    margin-bottom: 25px;
    font-size: 50px;
    color: #070707;
    display: block
}

.fomr-control {
    display: block;
    font-weight: normal;
    line-height: normal;
    border: 1px solid #000000;
    background-color: #00000000;
    height: 60px;
    font-size: 15px;
    padding: 10px 30px;
    border-radius: 40px;
    width: 100%;
    outline: none;
    color: #000000;
}

    .fomr-control::placeholder {
        color: #000 !important;
    }

.section5-img img {
    height: 545px;
    border-radius: 30px;
}

.fomr-control::placeholder {
    color: #fff
}

.btn-form-section5 {
    width: 100%;
    border-radius: 50px;
    border: 1px solid #161616;
    padding: 15px;
    background: #000000;
    color: #deb789;
    font-size: 18px;
    font-weight: 500;
    transition: .5s ease all;
}

    .btn-form-section5:hover {
        background: #000000;
        color: #ffffff;
    }

/*<<<<<<<<<section5-End>>>>>>>>>>>*/
/*<<<<<<<<<section6-start>>>>>>>>>>>*/
.section6 {
    margin: 50px;
    margin-top: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
}

    .slider .slide-track {
        animation: scroll 40s linear infinite;
        display: flex;
        width: calc(250px * 14);
    }

    .slider .slide {
        height: 100px;
        width: 250px;
    }

/*<<<<<<<<<section6-End>>>>>>>>>>>**/
/*<<<<<<<<<faq-start>>>>>>>>>>>**/
#faq-section {
    z-index: 0;
    position: relative;
}

.faq-color-heading {
    font-size: 16px;
    font-weight: 500;
    color: #b77120;
    display: block;
}

.faq-heading {
    margin-top: 15px;
    color: #000;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 50px;
    display: block;
}

/*<<<<<<<<<faq-End>>>>>>>>>>>**/
/*<<<<<<<<<section7-start>>>>>>>>>>>**/

.text-content {
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translate(40%, 60%);
    color: #fff;
    text-align: center;
}

.sub-title.p {
    display: block;
    margin-bottom: 15px;
    font-size: 17px;
}

.section7-single-list ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.theme-btn1-section7 .text {
    padding: 15px;
    width: 100%;
    margin: 10px 0px;
    color: #000000;
    border-bottom: 2px solid #141212;
    border-top: 2px solid #000;
    display: block;
    text-align: center;
    transition: .5s ease all
}

    .theme-btn1-section7 .text:hover {
        border: 2px solid #000;
        border-radius: 5px;
        background: #000;
        color: #fff;
    }

.section7-single-list ul li span {
    margin-right: 10px;
}

.section7-single-list ul li {
    margin-bottom: 16px;
    font-size: 15px;
}

.heading1.section7 .h2 {
    font-size: 50px;
    display: block;
    margin-bottom: 15px;
}

.heading1.section7 .p {
    font-size: 17px;
    margin-bottom: 20px;
    display: block;
}

/*<<<<<<<<<section7-End>>>>>>>>>>>**/
/*<<<<<<<<<Footer-start>>>>>>>>>>>**/
.footer {
    background: linear-gradient(88deg, #e3b779, #fbefcb);
    padding: 50px 0px;
    padding-bottom: 0;
}

/*/*END FOOTER SOCIAL DESIGN*/


@media only screen and (max-width:768px) {
    .single_footer {
        margin-bottom: 30px;
    }
}

.single_footer .h4 {
    color: #000;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
    position:relative;
}

    .single_footer .h4::after {
        content: "";
        display: block;
        height: 2px;
        width: 40px;
        background: #000;
        position:absolute;
        left:0px;
        bottom:-3px;
    }

.single_footer .p {
    color: #000;
    display: block;
}

.single_footer ul {
    margin: 15px 0px 0px 0px;
    padding: 0;
    list-style: none;
}


    .single_footer ul li .a {
        color: #000;
        -webkit-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        line-height: 36px;
        font-size: 15px;
        text-transform: capitalize;
        text-decoration: none;
        font-weight: 600;
    }

        .single_footer ul li .a:hover {
            color: #000;
        }

.single_footer_address ul li {
    color: #000;
}

    .single_footer_address ul li span {
        font-weight: 400;
        color: #000;
        line-height: 28px;
    }

.contact_social ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

/*START NEWSLETTER CSS*/
.subscribe {
    display: block;
    position: relative;
    margin-top: 15px;
    width: 100%;
}

.subscribe__input {
    background-color: #000;
    border: medium none;
    border-radius: 5px;
    color: #333;
    display: block;
    font-size: 15px;
    font-weight: 500;
    height: 60px;
    letter-spacing: 0.4px;
    margin: 0;
    padding: 0 150px 0 20px;
    text-align: center;
    text-transform: capitalize;
    width: 100%;
}

@media only screen and (max-width:768px) {
    .subscribe__input {
        padding: 0 50px 0 20px;
    }
}

.subscribe__btn {
    background-color: transparent;
    border-radius: 0 25px 25px 0;
    color: #01c7e9;
    cursor: pointer;
    display: block;
    font-size: 20px;
    height: 60px;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
}

    .subscribe__btn i {
        transition: all 0.3s ease 0s;
    }

@media only screen and (max-width:768px) {
    .subscribe__btn {
        right: 0px;
    }
}

.subscribe__btn:hover i {
    color: #ff3666;
}

button {
    padding: 0;
    border: none;
    background-color: transparent;
    -webkit-border-radius: 0;
    border-radius: 0;
}

/*END NEWSLETTER CSS*/

/*START SOCIAL PROFILE CSS*/
.social_profile {
    margin-top: 40px;
}

    .social_profile ul {
        list-style: outside none none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .social_profile ul li {
            float: left;
        }

            .social_profile ul li .a {
                text-align: center;
                border: 0px;
                text-transform: uppercase;
                transition: all 0.3s ease 0s;
                margin: 0px 5px;
                font-size: 18px;
                color: #fff;
                border-radius: 30px;
                width: 50px;
                height: 50px;
                line-height: 50px;
                display: block;
                border: 1px solid rgba(255, 255, 255, 0.2);
            }

@media only screen and (max-width:768px) {
    .social_profile ul li .a {
        margin-right: 10px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width:480px) {
    .social_profile ul li .a {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

.social_profile ul li .a:hover {
    background: #ff3666;
    border: 1px solid #ff3666;
    color: #fff;
    border: 0px;
}

/* -------------------Faq Start------------------------- */
.accordion-button:not(.collapsed) {
    color: #080808;
    background-color: #e4ba8a;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, .06);
    margin-bottom: 0 !important;
}

.accordion-body {
    box-shadow: -10px 10px 30px rgba(0, 0, 0, .06);
    background: #fff3ea;
}

.accordion-button {
    font-weight: bold;
    background: #070b10;
    color: #fff;
    padding: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, .06);
}

.accordion-item {
    border: none;
    margin: 20px 0;
    border-radius: 20px;
    overflow: hidden;
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb(255,255,255)'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

/* -------------------Faq Start End------------------------- */
/*END SOCIAL PROFILE CSS*/
.copyright {
    padding: 10px;
    color: #000000;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    text-align: center;
    width: 100%;
    display: block;
}

    .copyright .a {
        color: #01c7e9;
        transition: all 0.2s ease 0s;
    }

        .copyright .a:hover {
            color: #ff3666;
        }

.single_footer ul li {
    margin-bottom: 5px;
    color: #000;
}

.social_profile ul li spna i {
    padding: 15px;
    color: #000;
    margin-top: 0px !important;
    padding-top: 0;
}

.footer-contact {
    display: flex;
    gap: 10px;
    color: #000;
    text-decoration: none;
    align-items: start;
    margin-top: 15px;
}

    .footer-contact svg {
        width: 20px;
    }

    .footer-contact span {
        width: calc(100% - 30px);
    }

/*<<<<<<<<<Footer-End>>>>>>>>>>>**/
/* --------------Section-new Start------------------ */
.section-new {
    padding: 100px 0px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.custom-log-card {
    padding: 0 30px;
}

    .custom-log-card .card-thumb {
        padding: 30px;
        margin-bottom: 30px;
        position: relative;
        z-index: 1;
    }

.plain-gol-image {
    border-radius: 50%;
}

.info-card-heading {
    color: #dbaf7d;
    font-weight: 500;
    font-size: 28px;
    display: block;
    text-align: center;
}

.para-gol {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    display: block;
}

.card-thumb .icon-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    font-size: 24px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, .6) 0px 5px 10px;
}

.gol-image {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.fixed-action {
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 9999 !important;
    width: 100%;
    bottom: 0;
    left: 0;
}

    .fixed-action .same {
        width: 50%;
        padding: 10px 15px;
        font-size: 17px;
        color: #fff;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
        text-decoration: none;
    }

        .fixed-action .same svg {
            width: 17px;
            fill: #fff;
        }

.mob-whatsapp.same {
    background-color: #29aa5a;
}

.mob-call.same {
    background-color: #21a3f1;
}
/* --------------Section-new Start------------------ */
/*<<<<<<<<<Responsiv-start>>>>>>>>>>>**/
@media(max-width:991px) {


    .banner-sm-heading .h1 {
        font-size: 20px;
        font-weight: bold;
    }

    .banner-section::before {
        display: none
    }

    .banner-sm-heading .p {
        font-size: 14px;
    }

    img.img-fluid.banner-img {
        height: 445px;
    }

    .section2 {
        padding: 10px;
        background: #e5e9f2;
    }

    .section2-card1 {
        margin-bottom: 15px
    }

    .section2-card2 {
        margin-bottom: 15px
    }

        .section2-card2 .heading {
            font-size: 25px;
        }

    .section3-text {
        padding: 20px;
        margin-top: 15px
    }

        .section3-text .h1 {
            font-size: 25px;
        }

    .box.d-flex.align-items-center.mt-15 {
        margin-bottom: 15px
    }

    .section4 {
        padding: 20px;
        margin: 10px;
    }

    .big-heading {
        font-size: 25px;
    }

    .section5-heading {
        font-size: 25px;
        margin-bottom: 50px;
    }

    .section5-img img {
        height: auto;
        border-radius: 30px;
        margin-bottom: 20px
    }

    .section5-card .h1 {
        font-size: 32px;
    }

    .heading1.section7 .h2 {
        font-size: 30px;
    }
}


/*<<<<<<<<<Responsiv-End>>>>>>>>>>>**/
.nav-content .logo a img {
    width: 120px;
    filter: drop-shadow(2px 3px 1px black);
}

.single_footer a img {
    width: 150px;
    margin-bottom: 15px;
    filter: drop-shadow(0px 1px 3px black);
}

.footer-contact svg {
    width: 13px;
}

.footer-contact span {
    font-size: 14px;
    font-weight: bold;
    color: #000;
}

.footer-contact a {
    font-size: 14px;
    font-weight: bold;
    color: #000;
}

.social_profile ul li spna svg {
    background: #e2ebdd;
    padding: 10px;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    fill: #000;
}
.back-to-top{
    position:fixed;
    bottom:40px;
    right:40px;
    width:40px;
    height:40px;
    border-radius:3px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    color:#fff;
    background:#b77120;
}

@media(max-width:991px){
    .custom-log-card {
        padding: 25px 30px !important;
    }
    .section-new {
        padding: 40px 0px !important;
    }
}