/* Header Section CSS Start Here*/

.header {
    position: relative;
    z-index: 11;
}

.header .header_outer-wrapper {
    background-color: var(--bg-primary);
}

.header_outer-wrapper .header_main-wrapper .header__top {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 34px;
    padding: 37px 46px 37px 0;
}

.header_outer-wrapper .header_main-wrapper .header__top .contact_link-wrapper ul {
    display: flex;
    justify-content: end;
    gap: 30px;
}

.header_outer-wrapper .header_main-wrapper .header__top .social_links-wrapper ul {
    display: flex;
    justify-content: end;
    gap: 18px;
}

.header__top .contact_link-wrapper ul li a {
    color: var(--text-white);
    font-family: var(--font-itcavantgarde-medium);
    font-weight: 500;
    font-size: 26px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 22px;
    /* text-transform: uppercase; */
}

.header__top .contact_link-wrapper ul li a img,
.header__top .social_links-wrapper ul li a img {
    max-width: 45px;
    width: 100%;
    height: 45px;
}

.header_main-wrapper .header__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 44px; */
    gap: 36px;
}

.header__bottom .logo {
    /* max-width: 285px; */
    max-width: 287px;
    width: 100%;
    display: block;
    position: relative;
}

.header__bottom .logo a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 28.8%;
}

.header__bottom .logo a img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header__bottom .header__nav {
    max-width: 100%;
    width: 100%;
    background-color: var(--bg-white);
    padding: 0px 47px;
    border-radius: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    -o-border-radius: 14px;
    position: relative;
}

.header__bottom .header__nav>.nav_list .nav_item {
    padding: 30px 0px;
    z-index: 1;
}

.header__bottom .header__nav::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    box-shadow: 0px 18px 7.6px 0.4px rgba(0, 0, 0, 0.17);
    z-index: 11;
    pointer-events: none;
}

.header__bottom .nav_list {
    display: flex;
    justify-content: space-between;
}

.header__bottom .nav_list .nav_item a {
    font-family: var(--font-itcavantgarde-medium);
    font-weight: 500;
    font-size: 30px;
    line-height: 1.2;
    color: var(--text-dark);
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

/* ===== MAIN NAV ===== */

/* Dim all top-level links */
.header__bottom .nav_list:hover > .nav_item > a {
  opacity: 0.6;
}

/* Keep hovered top-level link active */
.header__bottom .nav_list > .nav_item > a:hover {
  opacity: 1;
}

/* Exclude last nav item */
.header__bottom .nav_list:hover > .nav_item:last-child > a {
  opacity: 1;
}


/* ===== SUBMENU ===== */

/* Dim all submenu links */
.header__bottom .nav_item .child_nav-list:hover li a {
  opacity: 0.6;
}

/* Keep hovered submenu link active */
.header__bottom .nav_item .child_nav-list li a:hover {
  opacity: 1;
}

.header__bottom .nav_list .nav_item:last-child a {
    padding: 9px 28px 9px 29px;
    background-color: var(--bg-primary);
    color: var(--text-white);
    transition: all 0.4s ease-in-out;
    border: 1px solid transparent;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.header__bottom .nav_list .nav_item:last-child a:hover {
    background-color: var(--bg-white);
    color: var(--bg-primary);
    border-color: var(--bg-primary);
}

.header__bottom .nav_list .nav_item.has-child {
    position: relative;
}

.header__bottom .nav_list .nav_item .child_nav-list {
    position: absolute;
    top: 95px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    background: #fff;
    padding: 36px 42px 26px;
    box-shadow: 0px 18px 7.6px 0.4px rgba(0, 0, 0, 0.17);
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.header__bottom .header__nav>.nav_list .nav_item:hover .child_nav-list {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.header__bottom .nav_list .nav_item .child_nav-list li:not(:last-child) {
    margin-bottom: 14px;
}

.header__bottom .nav_list .nav_item .child_nav-list li {
    text-align: center;
}

.header_hamburger-menu {
    display: none;
}

.header__bottom .header-mobile-content {
    display: none;
}

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .header_outer-wrapper .header_main-wrapper .header__top {
        gap: 1.771vw;
        padding: 1.927vw 2.396vw 1.927vw 0;
    }

    .header_outer-wrapper .header_main-wrapper .header__top .contact_link-wrapper ul {
        gap: 1.563vw;
    }

    .header_outer-wrapper .header_main-wrapper .header__top .social_links-wrapper ul {
        gap: 0.938vw;
    }

    .header__top .contact_link-wrapper ul li a {
        font-size: 1.354vw;
        gap: 1.146vw;
    }

    .header__top .contact_link-wrapper ul li a img,
    .header__top .social_links-wrapper ul li a img {
        max-width: 2.344vw;
        height: 2.344vw;
    }

    .header_main-wrapper .header__bottom {
        /* gap: 2.292vw; */
        gap: 1.875vw;
    }

    .header__bottom .logo {
        /* max-width: 14.844vw; */
        max-width: 14.948vw;
    }

    .header__bottom .header__nav {
        padding: 0vw 2.448vw;
        border-radius: 0.729vw;
    }

    .header__bottom .header__nav>.nav_list .nav_item {
        padding: 1.563vw 0vw;
    }

    .header__bottom .nav_list .nav_item a {
        font-size: 1.563vw;
    }

    .header__bottom .nav_list .nav_item:last-child a {
        padding: 0.469vw 1.458vw 0.469vw 1.510vw;
        border-radius: 0.625vw;
    }

    .header__bottom .nav_list .nav_item .child_nav-list {
        top: 4.948vw;
        padding: 1.875vw 2.188vw 1.354vw;
        box-shadow: 0.000vw 0.938vw 0.396vw 0.021vw rgba(0, 0, 0, 0.17);
        border-bottom-left-radius: 0.729vw;
        border-bottom-right-radius: 0.729vw;
    }

    .header__bottom .nav_list .nav_item .child_nav-list li:not(:last-child) {
        margin-bottom: 0.729vw;
    }
}

@media only screen and (max-width: 991px) {

    .header__top .contact_link-wrapper ul li a img,
    .header__top .social_links-wrapper ul li a img {
        max-width: 30px;
        height: 30px;
    }

    .header_outer-wrapper .header_main-wrapper .header__top {
        justify-content: center;
        padding-right: 0px;
    }

    .header__top .contact_link-wrapper ul li a {
        font-size: 12px;
    }

    .header__bottom .logo {
        max-width: 154px;
    }

    .header__bottom .header__nav {
        padding: 0px 28px;
    }

    .header__bottom .header__nav>.nav_list .nav_item {
        padding: 20px 0px;
    }

    .header__bottom .nav_list .nav_item a {
        font-size: 12px;
    }

    .header__bottom .nav_list .nav_item .child_nav-list {
        top: 50px;
    }
}


@media only screen and (max-width: 991px) {

    .header__bottom .header__nav,
    .header_outer-wrapper .header_main-wrapper .header__top {
        display: none;
    }

    .header_hamburger-menu,
    .header__bottom .header-mobile-content {
        display: block;
    }

    .header__bottom .logo {
        /* max-width: 130px; */
        /* max-width: 129px; */
        max-width: 170px;
    }

    .header_hamburger-menu .hamburger_open-img,
    .header_hamburger-menu .hamburger_close-img,
    .header__bottom .header-mobile-content {
        max-width: 16px;
        width: 100%;
        height: 14px;
    }

    .header_hamburger-menu .hamburger_open-img img,
    .header_hamburger-menu .hamburger_close-img img {
        width: 100%;
    }

    .header_main-wrapper .header__bottom {
        padding: 39px 0px 29px;
    }

    .hamburger_nav,
    .header_hamburger-menu .hamburger_close-img {
        display: none;
    }

    .header_hamburger-menu.active .hamburger_close-img {
        display: block;
    }

    .header_hamburger-menu.active .hamburger_open-img {
        display: none;
    }

    /* .header_hamburger-menu .mobile-hamburger_nav {
        display: none;
    }

    .header_hamburger-menu.active .mobile-hamburger_nav {
        display: block;
    } */

    .header_hamburger-menu .mobile-hamburger_nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s ease;
        overflow-y: auto;
        z-index: 999;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
    }

    .header_hamburger-menu.active .mobile-hamburger_nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* .mobile_child_nav-list {
        display: none;
    }

    .mobile_nav_item.active .mobile_child_nav-list {
        display: block;
    } */

    .mobile_child_nav-list {
        display: block;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    }

    .mobile_nav_item.has-child.active .mobile_child_nav-list {
        opacity: 1;
        transform: translateY(0);
    }

    .header_hamburger-menu .mobile-hamburger_nav {
        /* position: absolute;
        width: 100%;
        height: 100vh;
        top: 105px;
        right: 0;
        left: 0; */
        position: absolute;
        /* important */
        top: 105px;
        left: 0;
        width: 100%;
        height: calc(100dvh - 105px);
        overflow-y: auto;
        /* ✅ अंदर scroll */
        -webkit-overflow-scrolling: touch;
        /* smooth scroll for mobile */
        z-index: 999;
        background-color: var(--bg-primary);
        padding-bottom: 40px;
    }

    .mobile_header_nav {
        background-color: var(--bg-primary);
        padding-bottom: 40px;
    }

    .header_hamburger-menu .mobile-hamburger_nav .mobile_header_nav .mobile_nav_item a {
        font-family: var(--font-itcavantgarde-medium);
        font-weight: 500;
        font-size: 16px;
        line-height: 1.2;
        color: var(--text-white);
        text-transform: uppercase;
        display: block;
        padding: 12px 0px;
        text-align: center;
    }

    .header_hamburger-menu .mobile-hamburger_nav .mobile_header_nav .mobile_nav_item:last-child {
        display: flex;
        justify-content: center;
    }

    .header_hamburger-menu .mobile-hamburger_nav .mobile_header_nav .mobile_nav_item:last-child a {
        /* padding: 6px 12px 4px; */
        padding: 8px 12px 2px;
        background-color: var(--bg-white);
        color: var(--bg-primary);
        border-radius: 8px;
        margin-top: 10px;
    }

    .mobile-hamburger_nav .mobile-social-links {
        margin-top: 28px;
    }

    .mobile-hamburger_nav .mobile-social-links ul {
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .mobile-hamburger_nav .mobile-social-links ul li a img {
        max-width: 27px;
        width: 100%;
        height: 27px;
    }
}


/* Header Section CSS End Here*/

/* Banner Section CSS Start Here*/

.banner_section {
    background-color: var(--bg-primary);
}

.banner_section .banner-section_bg-img-wrapper {
    max-width: 1287px;
    width: 100%;
    margin-left: auto;
    display: flex;
    margin-top: -93px;
    position: relative;
    z-index: 0;
}

.banner_section .banner-section_bg-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_section .banner_content-wrapper {
    max-width: 1015px;
    width: 100%;
    margin: 0 auto;
    padding-top: 95px;
}

body.body-work-page .banner_section .banner_content-wrapper .content-heading {
    max-width: 80%;
    margin: 0 auto;
}

.banner_section .banner_content-wrapper .content-heading h1 {
    /* font-size: 96px; */
    font-size: 111px;
    font-family: var(--font-fatfrank);
    color: rgb(255, 255, 255);
    line-height: 0.957;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0px 7px 12.6px rgba(0, 0, 0, 0.29);
    -moz-transform: matrix(1.15947469594905, 0, -5.09124746524064e-16, 1.15943180230107, 0, 0);
    -webkit-transform: matrix(1.15947469594905, 0, -5.09124746524064e-16, 1.15943180230107, 0, 0);
    -ms-transform: matrix(1.15947469594905, 0, -5.09124746524064e-16, 1.15943180230107, 0, 0);
}

.banner_section .banner_content-wrapper .content-heading h1 span {
    display: block;
}

.banner_content-wrapper .post-code_search-bar .post-code_search-bar-wrapper {
    max-width: 598px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    position: relative;
    z-index: 1;
    gap: 8px;
    margin-top: 45px;
    background-color: var(--bg-white);
    /* padding: 14px 14px 13px 24px; */
    padding: 10px 14px 10px 24px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.post-code_search-bar .post-code_search-bar-wrapper input {
    width: 100%;
    border: none;
    outline: none;
    font-family: var(--font-itcavantgarde);
    font-weight: 500;
    font-size: 27px;
    line-height: 1.2;
    background-color: transparent;
    color: var(--text-gray);
    padding: 0px;
}

.post-code_search-bar .post-code_search-bar-wrapper button {
    /* padding: 8px 16px; */
    padding: 13px 30px 10px 31px;
    background-color: var(--bg-primary);
    color: var(--text-white);
    font-family: var(--font-itcavantgarde-medium);
    font-weight: 500;
    font-size: 27px;
    line-height: 1.2;
    border: 1px solid transparent;
    outline: none;
    border-radius: 12px;
    cursor: pointer;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.post-code_search-bar .post-code_search-bar-wrapper button:hover {
    background-color: var(--bg-white);
    color: var(--bg-primary);
    border-color: var(--bg-primary);
}

.banner_section {
    position: relative;
}

.banner_section .banner-bottom-content {
    display: none;
}

.banner_content-wrapper .post-code_search-bar.mobile {
    display: none;
}

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .banner_section .banner-section_bg-img-wrapper {
        max-width: 67.031vw;
        margin-top: -4.844vw;
    }

    .banner_section .banner_content-wrapper {
        max-width: 52.865vw;
        padding-top: 4.948vw;
    }

    .banner_section .banner_content-wrapper .content-heading h1 {
        /* font-size: 5.000vw; */
        font-size: 5.781vw;
        text-shadow: 0.000vw 0.365vw 0.656vw rgba(0, 0, 0, 0.29);
    }

    .banner_content-wrapper .post-code_search-bar .post-code_search-bar-wrapper {
        max-width: 31.146vw;
        gap: 0.417vw;
        margin-top: 2.344vw;
        /* padding: 0.729vw 0.729vw 0.677vw 1.250vw; */
        padding: 0.521vw 0.729vw 0.521vw 1.250vw;
        border-radius: 0.781vw;
    }

    .post-code_search-bar .post-code_search-bar-wrapper input {
        font-size: 1.406vw;
    }

    .post-code_search-bar .post-code_search-bar-wrapper button {
        /* padding: 0.417vw 0.833vw; */
        padding: 0.677vw 1.563vw 0.521vw 1.615vw;
        font-size: 1.406vw;
        line-height: 1.2;
        border: 0.052vw solid transparent;
        border-radius: 0.625vw;
    }
}

@media only screen and (max-width: 991px) {
    .banner_section .banner_content-wrapper {
        max-width: 80%;
    }

    body.body-work-page .banner_section .banner_content-wrapper .content-heading {
        max-width: 75%;
        margin: 0 auto;
    }

    .banner_section .banner_content-wrapper .content-heading h1 {
        font-size: 54px;
    }

    .banner_content-wrapper .post-code_search-bar .post-code_search-bar-wrapper {
        max-width: 490px;
    }

    .banner_section .banner-bottom-content {
        display: block;
        position: absolute;
        width: 100%;
        bottom: 0px;
        /* padding: 12px 0px; */
        padding: 20px 0px;
        background-color: var(--bg-dark);
    }

    .banner-bottom-content .banner-bottom-content-wrapper {
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .banner-bottom-content .banner-bottom-content-wrapper a {
        font-family: var(--font-itcavantgarde-medium);
        font-weight: 500;
        /* font-size: 12px; */
        font-size: 18px;
        line-height: 1.2;
        color: var(--text-white);
        text-transform: capitalize;
        /* padding: 6px 12px 4px; */
        padding: 7px 12px 3px;
        background-color: var(--bg-primary);
        border-radius: 8px;
        transition: all 0.4s ease-in-out;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
    }

    .banner-bottom-content .banner-bottom-content-wrapper a:first-child {
        color: var(--text-white);
        background-color: var(--bg-primary);
    }

    .banner-bottom-content .banner-bottom-content-wrapper a:last-child {
        color: var(--text-dark);
        background-color: var(--bg-white);
        border-radius: 8px;
    }

    .banner-bottom-content .banner-bottom-content-wrapper a:first-child:hover {
        color: var(--text-dark);
        background-color: var(--bg-white);
    }

    .banner-bottom-content .banner-bottom-content-wrapper a:last-child:hover {
        color: var(--text-white);
        background-color: var(--bg-primary);
        border-radius: 8px;
    }

    .banner_section .banner-section_bg-img-wrapper {
        position: relative;
        padding-bottom: 48%;
        margin-top: -68px;
    }

    .banner_section .banner-section_bg-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        inset: 0;
    }

    .post-code_search-bar .post-code_search-bar-wrapper input {
        font-size: 20px;
    }

    .post-code_search-bar .post-code_search-bar-wrapper button {
        font-size: 20px;
        padding: 7px 26px 8px 27px;
    }

    .banner_content-wrapper .post-code_search-bar.mobile {
        display: block;
    }

    .banner_content-wrapper .post-code_search-bar.desktop {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .banner_section .banner_content-wrapper {
        max-width: 100%;
    }

    .banner_section .banner_content-wrapper .content-heading h1 {
        font-size: 34px;
    }

    .banner_content-wrapper .post-code_search-bar .post-code_search-bar-wrapper {
        max-width: 80%;
        /* padding: 10px; */
        padding: 4px 4px 4px 10px;
        margin-top: 24px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }

    .post-code_search-bar .post-code_search-bar-wrapper input,
    .post-code_search-bar .post-code_search-bar-wrapper button {
        font-size: 12px;
    }

    .post-code_search-bar .post-code_search-bar-wrapper input {
        padding-top: 3px;
    }

    .post-code_search-bar .post-code_search-bar-wrapper button {
        /* padding: 6px 16px; */
        padding: 7px 16px 5px;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }

    .banner_section .banner_content-wrapper {
        padding-top: 20px;
    }
    
    .banner_section .banner-section_bg-img-wrapper {
        /* margin-top: -23px;
        padding-bottom: 65%; */
        margin-top: 0px;
        padding-bottom: 43.3%;
    }
}

@media only screen and (max-width: 365px) {
    .banner-bottom-content .banner-bottom-content-wrapper a {
        font-size: 14px;
    }
}

/* Banner Section CSS End Here*/

/* CTA Section CSS Start Here*/

.cta-section {
    padding: 112px 0px 92px;
    background-color: var(--bg-gray);
}

.cta-section_wrapper .cta-top_card-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-section_wrapper .cta-top_card-wrapper .card-main_wrapper {
    background-color: var(--bg-primary);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    /* min-width: 537px; */
    width: 100%;
    padding-bottom: 19.3%;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
}

.card-main_wrapper .card-content_wrapper {
    padding: 84px 20px 0px;
    position: relative;
    z-index: 1;
}

.cta-top_card-wrapper .card-main_wrapper .heading {
    max-width: 90%;
    margin: 0 auto;
}

.cta-top_card-wrapper .card-main_wrapper .heading h2 {
    font-family: var(--font-fatfrank);
    font-size: 80px;
    line-height: 0.865;
    color: var(--text-white);
    text-shadow: 0px 7px 12.6px rgba(0, 0, 0, 0.29);
    text-align: center;
    text-transform: uppercase;
}

.cta-top_card-wrapper .card-main_wrapper .card-btn {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}

.cta-top_card-wrapper .card-main_wrapper a {
    display: inline-block;
    padding: 14px 30px 11px 29px;
    background-color: var(--bg-white);
    color: var(--text-dark);
    /* font-family: var(--font-itcavantgarde-medium); */
    font-family: var(--font-itcavantgarde);
    font-weight: 500;
    font-size: 27px;
    line-height: 1.2;
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.cta-top_card-wrapper .card-main_wrapper a:hover {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.cta-top_card-wrapper .card-main_wrapper .card-img_wrapper {
    position: absolute;
    bottom: 0;
    display: flex;
    z-index: 0;
}

.cta-top_card-wrapper .card-main_wrapper .card-img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section .cta-bottom_card-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    /* margin-top: 60px; */
    margin-top: 32px;
    padding: 100px 76px;
    background-color: var(--bg-primary);
    border-radius: 22px;
}

.cta-section .cta-bottom_card-wrapper .heading_content {
    max-width: 48%;
    width: 100%;
}

.cta-section .cta-bottom_card-wrapper .desc_content {
    max-width: 39%;
    width: 100%;
}

.cta-section .cta-bottom_card-wrapper .heading_content h2 {
    font-family: var(--font-fatfrank);
    font-size: 88px;
    line-height: 0.92;
    color: var(--text-white);
    text-shadow: 0px 7px 12.6px rgba(0, 0, 0, 0.29);
    text-align: start;
}

.cta-section .cta-bottom_card-wrapper .heading_content h2 span {
    display: block;
}

.cta-section .cta-bottom_card-wrapper .desc_content p {
    font-family: var(--font-itcavantgarde);
    font-weight: 500;
    font-size: 27px;
    line-height: 1.15;
    color: var(--text-white);
}

.cta-section .cta-bottom_card-wrapper .desc_content a {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 30px 10px 29px;
    background-color: var(--bg-white);
    color: var(--text-dark);
    /* font-family: var(--font-itcavantgarde-medium); */
    font-family: var(--font-itcavantgarde);
    font-weight: 500;
    font-size: 27px;
    line-height: 1.2;
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.cta-section .cta-bottom_card-wrapper .desc_content a:hover {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .cta-section {
        padding: 5.833vw 0.000vw 4.792vw;
    }

    .cta-section_wrapper .cta-top_card-wrapper {
        gap: 1.563vw;
    }

    .cta-section_wrapper .cta-top_card-wrapper .card-main_wrapper {
        border-radius: 1.146vw;
        /* min-width: 27.969vw; */
    }

    .card-main_wrapper .card-content_wrapper {
        padding: 4.375vw 1.042vw 0.000vw;
    }

    .cta-top_card-wrapper .card-main_wrapper .heading h2 {
        font-size: 4.167vw;
        text-shadow: 0.000vw 0.365vw 0.656vw rgba(0, 0, 0, 0.29);
    }

    .cta-top_card-wrapper .card-main_wrapper .card-btn {
        margin-top: 1.979vw;
    }

    .cta-top_card-wrapper .card-main_wrapper a {
        padding: 0.729vw 1.563vw 0.573vw 1.510vw;
        font-size: 1.406vw;
        border-radius: 0.625vw;
    }

    .cta-section .cta-bottom_card-wrapper {
        gap: 1.563vw;
        /* margin-top: 3.125vw; */
        margin-top: 1.667vw;
        padding: 5.208vw 3.958vw;
        border-radius: 1.146vw;
    }

    .cta-section .cta-bottom_card-wrapper .heading_content h2 {
        font-size: 4.583vw;
        text-shadow: 0.000vw 0.365vw 0.656vw rgba(0, 0, 0, 0.29);
    }

    .cta-section .cta-bottom_card-wrapper .desc_content p {
        font-size: 1.406vw;
    }

    .cta-section .cta-bottom_card-wrapper .desc_content a {
        margin-top: 2.083vw;
        padding: 0.729vw 1.563vw 0.521vw 1.510vw;
        font-size: 1.406vw;
        border-radius: 0.625vw;
    }
}

@media only screen and (max-width: 991px) {
    .cta-top-wrapper .container {
        padding: 0px;
    }

    .cta-section_wrapper .cta-top_card-wrapper {
        overflow-x: auto;
        padding: 0px 35px;
    }

    .cta-section_wrapper .cta-top_card-wrapper {
        overflow: auto;
        /* or scroll if you're using it */

        /* Hide scrollbar - Chrome, Safari */
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE and Edge */
    }

    .cta-section_wrapper .cta-top_card-wrapper::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari */
    }

    .cta-section .cta-bottom_card-wrapper {
        flex-direction: column;
        padding: 65px 30px;
    }

    .cta-section .cta-bottom_card-wrapper .heading_content,
    .cta-section .cta-bottom_card-wrapper .desc_content {
        max-width: 100%;
        width: 100%;
    }

    .cta-section .cta-bottom_card-wrapper .heading_content h2,
    .cta-section .cta-bottom_card-wrapper .desc_content p {
        text-align: center;
    }

    .cta-section .cta-bottom_card-wrapper .heading_content h2 {
        font-size: 60px;
    }

    .cta-section .cta-bottom_card-wrapper .desc_content p {
        font-size: 22px;
    }

    .cta-section .cta-bottom_card-wrapper .desc_content a {
        font-size: 20px;
    }

    .cta-section .cta-bottom_card-wrapper .cta-bottom_btn-wrapper {
        display: flex;
        justify-content: center;
    }

    .cta-section_wrapper .cta-top_card-wrapper .card-main_wrapper {
        padding-bottom: 35.3%;
        min-width: 430px;
    }

    .cta-top_card-wrapper .card-main_wrapper .heading h2 {
        font-size: 60px;
    }

    .cta-section {
        padding: 80px 0px;
    }
}

@media only screen and (max-width: 767px) {
    .cta-section {
        padding: 35px 0px 34px;
    }

    .cta-section_wrapper .cta-top_card-wrapper .card-main_wrapper {
        min-width: 187px;
        width: 100%;
    }

    .cta-top_card-wrapper .card-main_wrapper .heading {
        max-width: 100%;
    }

    .cta-top_card-wrapper .card-main_wrapper .heading h2 {
        font-size: 28px;
    }

    .card-main_wrapper .card-content_wrapper {
        padding: 30px 15px 0px;
    }

    .cta-top_card-wrapper .card-main_wrapper a {
        /* padding: 7px 12px 5px 11px; */
        padding: 8px 12px 4px 11px;
        font-size: 12px;
        border-radius: 8px;
    }

    .cta-section_wrapper .cta-top_card-wrapper {
        gap: 10px;
    }

    .cta-top_card-wrapper .card-main_wrapper .card-btn {
        margin-top: 14px;
    }

    .cta-section_wrapper .cta-top_card-wrapper .card-main_wrapper {
        padding-bottom: 32.242%;
    }

    .cta-section .cta-bottom_card-wrapper {
        margin-top: 12px;
        gap: 12px;
        padding: 34px;
    }

    .cta-section .cta-bottom_card-wrapper .heading_content h2 {
        font-size: 30px;
    }

    .cta-section .cta-bottom_card-wrapper .desc_content p {
        /* font-size: 12px; */
        font-size: 14px;
    }

    .cta-section .cta-bottom_card-wrapper .desc_content a {
        margin-top: 16px;
        font-size: 12px;
        /* padding: 8px 12px 6px; */
        padding: 9px 12px 5px;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }
}

/* CTA Section CSS End Here*/

/* App Section CSS Start Here*/

.app-section {
    background-color: var(--bg-primary);
    position: relative;
}

.app-section .app-section_overlay {
    display: flex;
    max-width: 100%;
    width: 100%;
    position: relative;
    padding-bottom: 38.6%;
}

.app-section .app-section_overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.app-section .app-section_overlay img.app-img-mobile {
    display: none;
}

.app-section .app-section_content-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    max-width: 25%;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.app-section .app-section_content-wrapper .heading h2 {
    font-family: var(--font-fatfrank);
    font-size: 88px;
    line-height: 0.865;
    color: var(--text-white);
    text-shadow: 0px 7px 12.6px rgba(0, 0, 0, 0.29);
    text-align: start;
    text-transform: uppercase;
}

.app-section .app-section_content-wrapper .desc p {
    font-family: var(--font-itcavantgarde);
    font-weight: 500;
    font-size: 27px;
    line-height: 1.15;
    color: var(--text-white);
    margin-top: 38px;
    margin-bottom: 40px;
}

.app-section .app-section_content-wrapper .download_app {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.app-section .app-section_content-wrapper .download_app a {
    display: flex;
    width: fit-content;
}

.app-section .app-section_content-wrapper .download_app a img {
    max-width: 300px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    overflow: hidden;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .app-section .app-section_content-wrapper .heading h2 {
        font-size: 4.583vw;
        text-shadow: 0.000vw 0.365vw 0.656vw rgba(0, 0, 0, 0.29);
    }

    .app-section .app-section_content-wrapper .desc p {
        font-size: 1.406vw;
        margin-top: 1.979vw;
        margin-bottom: 2.083vw;
    }

    .app-section .app-section_content-wrapper .download_app {
        gap: 0.729vw;
    }

    .app-section .app-section_content-wrapper .download_app a img {
        max-width: 15.625vw;
        border-radius: 0.625vw;
    }
}

@media only screen and (max-width: 991px) {
    .app-section .app-section_content-wrapper .heading h2 {
        font-size: 60px;
    }

    .app-section .app-section_content-wrapper .desc p {
        font-size: 22px;
    }

    .app-section .app-section_content-wrapper {
        max-width: 42%;
    }

    .app-section .app-section_content-wrapper .download_app a img {
        max-width: 200px;
    }

    .app-section .app-section_overlay {
        padding-bottom: 72%;
    }

    .app-section .app-section_overlay img.app-img-desktop {
        display: none;
    }

    .app-section .app-section_overlay img.app-img-mobile {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .app-section .app-section_content-wrapper .heading h2 {
        font-size: 30px;
    }

    .app-section .app-section_content-wrapper .desc p {
        /* font-size: 12px; */
        font-size: 14px;
        margin-top: 12px;
        margin-bottom: 14px;
    }

    .app-section .app-section_content-wrapper {
        max-width: 45%;
    }

    .app-section .app-section_content-wrapper .download_app a img {
        max-width: 104px;
        border-radius: 6px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -ms-border-radius: 6px;
        -o-border-radius: 6px;
    }

    .app-section .app-section_overlay {
        padding-bottom: 65.7%;
    }

    .app-section .app-section_content-wrapper .download_app {
        gap: 4px;
    }
}

/* App Section CSS End Here*/


/* background-color: rgb(112, 112, 112);
  box-shadow: 0px 23px 32px 0px rgba(0, 0, 0, 0.29); */

/* More Info Section CSS Start Here*/

.more-info_section {
    padding: 90px 0px 80px;
    background-color: var(--bg-white);
}

.more-info_section .more-info__main-wrapper {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    gap: 30px;
}

.more-info__main-wrapper .more-info__left-wrapper .more-info_top-main-wrapper {
    background-color: var(--bg-primary);
    border-radius: 22px;
    padding: 50px 75px;
    /* padding: 60px 75px; */
    /* max-width: 1102px; */
    width: 100%;
}

.more-info__left-wrapper {
    overflow: hidden;
    /* max-width: 67.2%; */
    /* max-width: 66.048%; */
    max-width: 1103px;
    width: 100%;
}

.more-info_top-wrapper .slider-card {
    padding: 0 60px;
}

.more-info_top-wrapper .slick-list {
    margin: 0 -60px;
    overflow: visible;
}

.more-info_top-wrapper .slider-card .slider-card-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 58px;
}

.more-info_top-wrapper .slider-card .slider-card_main-wrapper {
    background-color: var(--bg-white);
    padding: 22px;
    width: fit-content;
    box-shadow: 0px 23px 32px 0px rgba(0, 0, 0, 0.29);
    rotate: -5deg;
}

.more-info_top-wrapper .slider-card .slider-card-wrapper .img-outer-wrapper {
    position: relative;
    z-index: 1;
}

.more-info_top-wrapper .slider-card .slider-card-wrapper .img-outer-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-white);
    z-index: -1;
}

.more-info_top-wrapper .slider-card .slider-card_main-wrapper .slider-card_img-wrapper {
    min-width: 368px;
    width: 100%;
    position: relative;
    padding-bottom: 100%;
    background-color: rgb(112, 112, 112);
}

.more-info_top-wrapper .slider-card .slider-card_main-wrapper .slider-card_img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.more-info_top-wrapper .slider-card .slider-card_main-wrapper .img-content_wrapper h4 {
    font-family: var(--font-corbellion);
    font-weight: 600;
    font-size: 38px;
    line-height: 1;
    color: var(--text-dark);
    /* margin-top: 14px; */
    padding-top: 20px;
    text-align: center;
}

.more-info_top-wrapper .slider-card .slider-card_main-wrapper .img-content_wrapper p {
    font-family: var(--font-corbellion);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: var(--text-dark);
    margin-top: 14px;
    text-align: center;
}

.more-info_top-wrapper .slider-card .slider-card_content-wrapper h3 {
    font-family: var(--font-fatfrank);
    font-weight: 600;
    font-size: 88px;
    line-height: 1;
    color: var(--text-white);
    text-align: start;
    text-transform: uppercase;
    max-width: 50%;
    text-shadow: 0px 7px 12.6px rgba(0, 0, 0, 0.29);
}

.more-info_top-wrapper .slider-card .slider-card_content-wrapper p {
    font-family: var(--font-itcavantgarde);
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
    color: var(--text-white);
    margin-top: 30px;
    text-align: start;
}

.more-info_top-wrapper .slider-card .slider-card_content-wrapper a {
    display: inline-block;
    margin-top: 38px;
    padding: 12px 26px 11px 26px;
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: var(--font-itcavantgarde);
    font-weight: 500;
    font-size: 28px;
    line-height: 1.2;
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.more-info_top-wrapper .slider-card .slider-card_content-wrapper a:hover {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.more-info_top-wrapper.slick-dotted.slick-slider {
    margin-bottom: 0px;
}

.more-info_top-wrapper.slick-slider {
    position: unset;
}

.more-info__main-wrapper .more-info__left-wrapper .more-info_top-main-wrapper {
    position: relative;
}

.more-info_top-main-wrapper .slick-dots {
    bottom: 10px;
    left: 0;
}

.more-info_top-main-wrapper .slick-dots li button:before {
    font-size: 10px;
    color: var(--text-white);
}

.more-info_top-main-wrapper .slick-dots li.slick-active button:before {
    color: var(--text-white);
}

.more-info_top-main-wrapper .slick-dots li {
    margin: 0px;
}

.more-info_bottom-main-wrapper {
    background-color: var(--bg-primary);
    border-radius: 22px;
    padding: 55px 68px;
    overflow: hidden;
    /* margin-top: 38px; */
    margin-top: 33px;
    /* max-width: 1102px; */
    width: 100%;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
    position: relative;
}

.more-info_bottom-main-wrapper h3 {
    font-family: var(--font-fatfrank);
    font-weight: 600;
    font-size: 56px;
    line-height: 0.85;
    color: var(--text-white);
    text-align: start;
    text-shadow: 0px 7px 12.6px rgba(0, 0, 0, 0.29);
}

.more-info_bottom-main-wrapper .more-info_bottom-wrapper .email_search-bar-wrapper {
    max-width: 600px;
    width: 100%;
    display: flex;
    gap: 8px;
    margin-top: 22px;
    background-color: var(--bg-white);
    /* padding: 14px 14px 14px 24px; */
    padding: 11px 14px 11px 24px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.more-info_bottom-wrapper .email_search-bar-wrapper input {
    width: 100%;
    border: none;
    outline: none;
    font-family: var(--font-itcavantgarde);
    font-weight: 500;
    font-size: 27px;
    line-height: 1.2;
    background-color: transparent;
    color: var(--text-gray);
}

.more-info_bottom-wrapper .email_search-bar-wrapper input.newsletter-submit-button {
    /* padding: 8px 16px; */
    padding: 11px 30px;
    width: fit-content;
    background-color: var(--bg-primary);
    color: var(--text-white);
    font-family: var(--font-itcavantgarde-medium);
    font-weight: 500;
    font-size: 27px;
    line-height: 1.2;
    border: 1px solid transparent;
    outline: none;
    border-radius: 12px;
    cursor: pointer;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.more-info_bottom-wrapper .email_search-bar-wrapper input.newsletter-submit-button:hover {
    background-color: var(--bg-white);
    color: var(--bg-primary);
    border-color: var(--bg-primary);
}

.more-info_bottom-wrapper .image-wrapper {
    position: absolute;
    right: -45px;
    top: 20px;
    max-width: 350px;
    width: 100%;
}

.more-info_bottom-wrapper .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more-info__right-wrapper {
    width: 100%;
    /* height: 100%; */
    max-width: 538px;
    /* max-width: 32%; */
    /* max-width: 32.16%; */
    overflow: hidden;
    position: relative;
}

.more-info__right-wrapper .more-info_slider-wrapper,
.more-info__right-wrapper .more-info_slider-wrapper .slider-card_wrapper {
    height: 100%;
}

.more-info__right-wrapper .more-info_slider-wrapper .slider-card .slider-img-wrapper {
    position: relative;
    padding-bottom: 164.5%;
    max-width: 100%;
    width: 100%;
    height: 100%;
    /* border-radius: 22px; */
    /* overflow: hidden; */
}

.more-info__right-wrapper .more-info_slider-wrapper .slider-card .slider-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.more-info__right-wrapper .more-info_slider-arrows {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90.5%;
}

.more-info__right-wrapper .more-info_slider-arrows .arrow {
    max-width: 47px;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.more-info__right-wrapper .more-info_slider-arrows .arrow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 20px 28px rgba(0, 0, 0, 0.29);
    overflow: hidden;
    border-radius: 47px;
}

.more-info_slider-wrapper.slick-initialized .slick-list {
    border-radius: 22px;
    height: 100%;
    overflow: hidden;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
}

.more-info_slider-wrapper.slick-initialized .slick-list .slick-track {
    height: 100%;
}

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .more-info_section {
        padding: 4.688vw 0.000vw 4.167vw;
    }

    .more-info_section .more-info__main-wrapper {
        gap: 1.563vw;
    }

    .more-info__main-wrapper .more-info__left-wrapper .more-info_top-main-wrapper {
        border-radius: 1.146vw;
        padding: 3.125vw 3.906vw;
        /* padding: 3.125vw 3.906vw; */
        /* max-width: 57.396vw; */
    }

    .more-info__left-wrapper {
        max-width: 57.448vw;
    }

    .more-info_top-wrapper .slider-card {
        padding: 0 3.125vw;
    }

    .more-info_top-wrapper .slick-list {
        margin: 0 -3.125vw;
    }

    .more-info_top-wrapper .slider-card .slider-card-wrapper {
        gap: 3.021vw;
    }

    .more-info_top-wrapper .slider-card .slider-card_main-wrapper {
        padding: 1.146vw;
        box-shadow: 0.000vw 1.198vw 1.667vw 0.000vw rgba(0, 0, 0, 0.29);
    }

    .more-info_top-wrapper .slider-card .slider-card_main-wrapper .slider-card_img-wrapper {
        min-width: 19.167vw;
    }

    .more-info_top-wrapper .slider-card .slider-card_main-wrapper .img-content_wrapper h4 {
        font-size: 1.979vw;
        /* margin-top: 0.729vw; */
        padding-top: 1.042vw;
    }

    .more-info_top-wrapper .slider-card .slider-card_main-wrapper .img-content_wrapper p {
        font-size: 0.833vw;
        margin-top: 0.729vw;
    }

    .more-info_top-wrapper .slider-card .slider-card_content-wrapper h3 {
        font-size: 4.583vw;
    }

    .more-info_top-wrapper .slider-card .slider-card_content-wrapper p {
        font-size: 1.458vw;
        margin-top: 1.563vw;
    }

    .more-info_top-wrapper .slider-card .slider-card_content-wrapper a {
        margin-top: 1.979vw;
        padding: 0.625vw 1.354vw 0.573vw 1.354vw;
        font-size: 1.458vw;
        border-radius: 0.625vw;
    }

    .more-info_top-main-wrapper .slick-dots li button:before {
        font-size: 0.521vw;
    }

    .more-info_bottom-main-wrapper {
        border-radius: 1.146vw;
        padding: 2.865vw 3.542vw;
        margin-top: 1.719vw;
        /* margin-top: 1.979vw; */
        /* max-width: 57.396vw; */
    }

    .more-info_bottom-main-wrapper h3 {
        font-size: 2.917vw;
        text-shadow: 0.000vw 0.365vw 0.656vw rgba(0, 0, 0, 0.29);
    }

    .more-info_bottom-main-wrapper .more-info_bottom-wrapper .email_search-bar-wrapper {
        max-width: 31.250vw;
        gap: 0.417vw;
        margin-top: 1.146vw;
        /* padding: 0.729vw 0.729vw 0.729vw 1.250vw; */
        padding: 0.573vw 0.729vw 0.573vw 1.250vw;
        border-radius: 0.781vw;
    }

    .more-info_bottom-wrapper .email_search-bar-wrapper input {
        font-size: 1.406vw;
    }

    .more-info_bottom-wrapper .email_search-bar-wrapper input.newsletter-submit-button {
        /* padding: 0.417vw 0.833vw; */
        padding: 0.573vw 1.563vw;
        font-size: 1.406vw;
        border: 0.052vw solid transparent;
        border-radius: 0.625vw;
    }

    .more-info_bottom-wrapper .image-wrapper {
        right: -2.344vw;
        top: 1.042vw;
        max-width: 18.229vw;
    }

    .more-info__right-wrapper {
        max-width: 28.021vw;
    }

    .more-info__right-wrapper .more-info_slider-arrows .arrow {
        max-width: 2.448vw;
    }

    .more-info__right-wrapper .more-info_slider-arrows .arrow img {
        box-shadow: 0.000vw 1.042vw 1.458vw rgba(0, 0, 0, 0.29);
        border-radius: 2.448vw;
    }

    .more-info_slider-wrapper.slick-initialized .slick-list {
        border-radius: 1.146vw;
    }
}

@media only screen and (max-width: 991px) {
    /* .more-info__main-wrapper .more-info__left-wrapper .more-info_top-main-wrapper{
        max-width: 100%;
    } */

    .more-info__left-wrapper {
        max-width: 100%;
    }

    .more-info_section .more-info__main-wrapper {
        display: block;
    }

    .more-info_top-wrapper .slider-card .slider-card_main-wrapper .slider-card_img-wrapper {
        min-width: 205px;
    }

    .more-info_top-wrapper .slider-card .slider-card_main-wrapper .img-content_wrapper h4 {
        font-size: 26px;
    }

    .more-info_top-wrapper .slider-card .slider-card_main-wrapper .img-content_wrapper p {
        font-size: 12px;
    }

    .more-info_top-wrapper .slider-card .slider-card_content-wrapper h3 {
        font-size: 56px;
    }

    .more-info_top-wrapper .slider-card .slider-card_content-wrapper p {
        font-size: 20px;
    }

    .more-info_top-wrapper .slider-card .slider-card_content-wrapper a {
        font-size: 20px;
        padding: 11px 20px 10px 20px;
    }

    .more-info_top-main-wrapper .slick-dots li button:before {
        font-size: 8px;
    }

    .more-info_bottom-main-wrapper h3 {
        font-size: 40px;
    }

    .more-info__main-wrapper .more-info__left-wrapper .more-info_top-main-wrapper {
        padding: 40px;
    }

    .more-info_top-wrapper .slider-card {
        padding: 0 40px;
    }

    .more-info_top-wrapper .slick-list {
        margin: 0 -40px;
    }

    .more-info_bottom-wrapper .image-wrapper {
        max-width: 200px;
        width: 100%;
        right: -25px;
        top: 75px;
    }

    .more-info_bottom-wrapper .image-wrapper img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .more-info_bottom-main-wrapper .more-info_bottom-wrapper .email_search-bar-wrapper {
        max-width: 440px;
    }

    .more-info_bottom-wrapper .email_search-bar-wrapper input,
    .more-info_bottom-wrapper .email_search-bar-wrapper input.newsletter-submit-button {
        font-size: 22px;
        padding: 9px 16px 7px;
    }

    .more-info_bottom-main-wrapper {
        padding: 40px;
    }

    .more-info__right-wrapper {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .more-info_section {
        padding: 21px 0px;
    }

    .more-info_bottom-main-wrapper {
        margin-top: 10px;
    }

    .more-info_top-wrapper .slider-card .slider-card_main-wrapper .slider-card_img-wrapper {
        min-width: 108px;
    }

    .more-info_top-wrapper .slider-card .slider-card_main-wrapper .img-content_wrapper h4 {
        font-size: 16px;
        /* margin-top: 10px; */
        padding-top: 10px;
    }

    .more-info_top-wrapper .slider-card .slider-card_main-wrapper .img-content_wrapper p {
        font-size: 10px;
        margin-top: 5px;
    }

    .more-info_top-wrapper .slider-card .slider-card_main-wrapper {
        padding: 10px;
    }

    .more-info_top-wrapper .slider-card .slider-card_content-wrapper h3 {
        font-size: 30px;
    }

    .more-info_top-wrapper .slider-card .slider-card_content-wrapper p {
        /* font-size: 12px; */
        font-size: 14px;
        margin-top: 10px;
    }

    .more-info_top-wrapper .slider-card .slider-card_content-wrapper a {
        font-size: 12px;
        /* padding: 5px 12px 4px 12px; */
        padding: 7px 12px 2px 12px;
        border-radius: 4px;
        margin-top: 16px;
    }

    .more-info_top-main-wrapper .slick-dots {
        bottom: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }

    .more-info_top-main-wrapper .slick-dots li,
    .more-info_top-main-wrapper .slick-dots li button {
        width: 6px;
        height: 6px;
        padding: 0px;
    }

    .more-info_top-main-wrapper .slick-dots li button:before {
        font-size: 6px;
    }

    .more-info_top-wrapper .slider-card .slider-card-wrapper {
        gap: 24px;
    }

    .more-info__main-wrapper .more-info__left-wrapper .more-info_top-main-wrapper {
        /* padding: 28px 18px; */
        padding: 20px 18px;
    }

    .more-info_top-wrapper .slider-card {
        padding: 0 18px;
    }

    .more-info_top-wrapper .slick-list {
        margin: 0 -18px;
        overflow: visible;
    }

    .more-info_bottom-wrapper .image-wrapper {
        display: none;
    }

    .more-info_bottom-main-wrapper h3 {
        font-size: 20px;
        text-align: center;
    }

    .more-info_bottom-main-wrapper {
        padding: 20px 30px;
    }

    .more-info_bottom-main-wrapper .more-info_bottom-wrapper .email_search-bar-wrapper {
        /* max-width: 208px; */
        max-width: 100%;
        margin: 0 auto;
        margin-top: 10px;
        padding: 5px;
        padding-left: 10px;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }

    .more-info_bottom-wrapper .email_search-bar-wrapper input,
    .more-info_bottom-wrapper .email_search-bar-wrapper input.newsletter-submit-button {
        font-size: 12px;
    }

    .more-info_bottom-wrapper .email_search-bar-wrapper input.newsletter-submit-button {
        /* padding: 5px 16px; */
        padding: 6px 16px 4px;
        border-radius: 6px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -ms-border-radius: 6px;
        -o-border-radius: 6px;
    }

}

/* More Info Section CSS End Here*/

/* Instagram Section CSS Start Here*/

.instagram-section {
    padding-bottom: 98px;
    background-color: var(--bg-white);
}

.instagram-section .instagram_top-wrapper .instagram-logo {
    max-width: 240px;
    width: 100%;
}

.instagram-section .instagram_top-wrapper .instagram-logo .instagram-logo_wrapper {
    height: 240px;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: 0px 10px 28px 0px rgba(0, 0, 0, 0.16);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.instagram-logo .instagram-logo_wrapper .logo-img-wrapper {
    max-width: 176px;
    width: 100%;
    display: flex;
}

.instagram-logo .instagram-logo_wrapper .logo-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-section .instagram_top-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 52px;
}

.instagram_top-wrapper .instagram-content_wrapper .ac-id-heading {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 16px;
}

.instagram_top-wrapper .instagram-content_wrapper .ac-id-heading h4 {
    font-family: var(--font-satoshi-bold);
    color: var(--text-dark);
    font-size: 42px;
    line-height: 1;
    font-weight: 400;
}

.instagram_top-wrapper .instagram-content_wrapper .ac-id-heading img {
    max-width: 47px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram_top-wrapper .instagram-content_wrapper .ac-name-heading {
    margin-top: 10px;
}

.instagram_top-wrapper .instagram-content_wrapper .ac-name-heading h4 {
    font-family: var(--font-satoshi-regular);
    color: var(--text-dark);
    font-size: 26px;
    line-height: 1;
    font-weight: 400;
}

.instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper {
    display: flex;
    justify-content: start;
    gap: 16px;
    margin: 22px 0px;
}

.instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-posts,
.instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-followers,
.instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-following {
    display: flex;
    justify-content: start;
    gap: 10px;
}

.instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-posts h4,
.instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-followers h4,
.instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-following h4,
.instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-posts p,
.instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-followers p,
.instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-following p {
    font-family: var(--font-satoshi);
    font-size: 26px;
    line-height: 1;
    font-weight: 600;
    color: var(--text-dark);
}

.instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-posts h4,
.instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-followers h4,
.instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-following h4 {
     font-family: var(--font-satoshi-bold);
}

.instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-posts p,
.instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-followers p,
.instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-following p {
    font-weight: 500;
}

.instagram_top-wrapper .instagram-content_wrapper .ac-follow-btn a {
    font-family: var(--font-itcavantgarde-medium);
    display: block;
    width: fit-content;
    font-size: 28px;
    line-height: 1;
    color: var(--text-white);
    background-color: var(--bg-primary);
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 14px 16px;
    transition: all 0.4s ease-in-out;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.instagram_top-wrapper .instagram-content_wrapper .ac-follow-btn a:hover {
    background-color: transparent;
    color: var(--bg-primary);
    border-color: var(--bg-primary);
}

.instagram-section .instagram_bottom-wrapper {
    margin-top: 86px;
}

.instagram_bottom-wrapper .slider-card .slider-card_wrapper .slider-img-wrapper {
    border-radius: 18px;
    width: 100%;
    padding-bottom: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
}

.instagram_bottom-wrapper .slider-card .slider-card_wrapper .slider-img-wrapper img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.instagram_bottom-wrapper .slider-card .slider-card_wrapper {
    padding: 0px 9px;
}

.instagram_bottom-wrapper .instagram-slider_wrapper .slick-list {
    margin: 0 -9px;
    overflow: visible;
}

.instagram-section .instagram_main-wrapper {
    overflow: hidden;
}

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .instagram-section {
        padding-bottom: 5.104vw;
    }

    .instagram-section .instagram_top-wrapper .instagram-logo {
        max-width: 12.500vw;
    }

    .instagram-section .instagram_top-wrapper .instagram-logo .instagram-logo_wrapper {
        height: 12.500vw;
        box-shadow: 0.000vw 0.521vw 1.458vw 0.000vw rgba(0, 0, 0, 0.16);
    }

    .instagram-logo .instagram-logo_wrapper .logo-img-wrapper {
        max-width: 9.167vw;
    }

    .instagram-section .instagram_top-wrapper {
        gap: 2.708vw;
    }

    .instagram_top-wrapper .instagram-content_wrapper .ac-id-heading {
        gap: 0.833vw;
    }

    .instagram_top-wrapper .instagram-content_wrapper .ac-id-heading h4 {
        font-size: 2.188vw;
    }

    .instagram_top-wrapper .instagram-content_wrapper .ac-id-heading img {
        max-width: 2.448vw;
    }

    .instagram_top-wrapper .instagram-content_wrapper .ac-name-heading {
        margin-top: 0.521vw;
    }

    .instagram_top-wrapper .instagram-content_wrapper .ac-name-heading h4 {
        /* font-size: 1.250vw; */
        font-size: 1.354vw;
    }

    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper {
        gap: 0.833vw;
        margin: 1.146vw 0.000vw;
    }

    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-posts,
    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-followers,
    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-following {
        gap: 0.521vw;
    }

    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-posts h4,
    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-followers h4,
    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-following h4,
    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-posts p,
    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-followers p,
    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-following p {
        font-size: 1.354vw;
    }

    .instagram_top-wrapper .instagram-content_wrapper .ac-follow-btn a {
        font-size: 1.458vw;
        border-radius: 0.625vw;
        padding: 0.729vw 0.833vw;
    }

    .instagram-section .instagram_bottom-wrapper {
        margin-top: 4.479vw;
    }

    .instagram_bottom-wrapper .slider-card .slider-card_wrapper .slider-img-wrapper {
        border-radius: 0.938vw;
    }

    .instagram_bottom-wrapper .slider-card .slider-card_wrapper {
        padding: 0.000vw 0.469vw;
    }

    .instagram_bottom-wrapper .instagram-slider_wrapper .slick-list {
        margin: 0 -0.469vw;
    }
}

@media only screen and (max-width: 991px) {
    .instagram-section {
        padding-bottom: 50px;
    }

    .instagram-section .instagram_top-wrapper {
        justify-content: center;
    }

    .instagram-section .instagram_top-wrapper .instagram-logo {
        max-width: 200px;
    }

    .instagram-section .instagram_top-wrapper .instagram-logo .instagram-logo_wrapper {
        height: 200px;
    }

    .instagram-logo .instagram-logo_wrapper .logo-img-wrapper {
        max-width: 130px;
    }

    .instagram_top-wrapper .instagram-content_wrapper .ac-id-heading {
        gap: 6px;
    }

    .instagram_top-wrapper .instagram-content_wrapper .ac-id-heading h4 {
        font-size: 36px;
    }

    .instagram_top-wrapper .instagram-content_wrapper .ac-id-heading img {
        max-width: 35px;
    }

    .instagram_top-wrapper .instagram-content_wrapper .ac-name-heading h4 {
        font-size: 22px;
    }

    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-posts h4,
    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-followers h4,
    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-following h4,
    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-posts p,
    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-followers p,
    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-following p,
    .instagram_top-wrapper .instagram-content_wrapper .ac-follow-btn a {
        font-size: 20px;
    }

    .instagram-section .instagram_bottom-wrapper {
        margin-top: 56px;
    }
}

@media only screen and (max-width: 767px) {
    .instagram-section {
        padding-bottom: 28px;
    }

    .instagram-section .instagram_top-wrapper .instagram-logo {
        max-width: 83px;
    }

    .instagram-section .instagram_top-wrapper .instagram-logo .instagram-logo_wrapper {
        height: 83px;
    }

    .instagram-logo .instagram-logo_wrapper .logo-img-wrapper {
        max-width: 61px;
    }

    .instagram_top-wrapper .instagram-content_wrapper .ac-id-heading h4 {
        font-size: 16px;
    }

    .instagram_top-wrapper .instagram-content_wrapper .ac-id-heading img {
        max-width: 15px;
    }

    .instagram_top-wrapper .instagram-content_wrapper .ac-name-heading h4 {
        font-size: 14px;
    }

    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-posts h4,
    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-followers h4,
    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-following h4,
    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-posts p,
    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-followers p,
    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-following p,
    .instagram_top-wrapper .instagram-content_wrapper .ac-follow-btn a {
        font-size: 12px;
    }

    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-posts,
    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-followers,
    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper .ac-following {
        gap: 3px;
    }

    .instagram_top-wrapper .instagram-content_wrapper .ac-name-heading {
        margin-top: 6px;
    }

    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper {
        margin: 6px 0px 10px;
        gap: 6px;
    }

    .instagram-section .instagram_top-wrapper {
        gap: 18px;
    }

    .instagram_top-wrapper .instagram-content_wrapper .ac-follow-btn a {
        /* padding: 7px 12px; */
        padding: 8px 12px 6px;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }

    .instagram_bottom-wrapper .slider-card .slider-card_wrapper {
        padding: 0px 5px;
    }

    .instagram_bottom-wrapper .instagram-slider_wrapper .slick-list {
        margin: 0 -5px;
        overflow: visible;
    }

    .instagram_bottom-wrapper .slider-card .slider-card_wrapper .slider-img-wrapper {
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }

    .instagram-section .instagram_bottom-wrapper {
        margin-top: 22px;
    }
}

@media only screen and (max-width: 380px) {
    .instagram_top-wrapper .instagram-content_wrapper .ac-detail-wrapper {
        flex-wrap: wrap;
    }
}


/* Instagram Section CSS End Here*/


/* Footer Section CSS Start Here*/

.footer-section .footer-top_wrapper {
    padding: 78px 0px 86px;
    background-color: var(--bg-primary);
}

.footer-top_wrapper .footer-logo_main-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-top_wrapper .footer-logo_main-wrapper .footer-logo {
    max-width: 287px;
    width: 100%;
}

.footer-top_wrapper .footer-logo_main-wrapper .footer-logo a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 28.8%;
}

.footer-top_wrapper .footer-logo_main-wrapper .footer-logo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-top_wrapper .footer-logo_main-wrapper .social-logo-main-wrapper {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 18px;
}

.footer-top_wrapper .footer-logo_main-wrapper .social-logo-main-wrapper .social-logo_img-wrapper {
    max-width: 45px;
    width: 100%;
    height: 45px;
}

.footer-logo_main-wrapper .social-logo-main-wrapper .social-logo_img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-section .footer-top_wrapper .footer-email_main-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 90px;
    margin-top: 60px;
}

.footer-top_wrapper .footer-email_main-wrapper .email-content_wrapper h5 {
    font-family: var(--font-itcavantgarde);
    font-size: 30px;
    line-height: 1;
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 8px;
}

.footer-top_wrapper .footer-email_main-wrapper .email-content_wrapper a {
    font-family: var(--font-itcavantgarde-medium);
    font-size: 30px;
    line-height: 1;
    color: var(--text-white);
    font-weight: 400;
}

.footer-top_wrapper .footer-links_main-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 44px;
    margin-top: 55px;
    transition: all 0.4s ease-in-out;
}

.footer-top_wrapper .footer-links_main-wrapper a {
    font-family: var(--font-itcavantgarde-medium);
    font-size: 30px;
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 6px;
    font-weight: 500;
    color: var(--text-white);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.footer-top_wrapper .footer-links_main-wrapper:hover a {
    opacity: 0.6;
}

/* Keep hovered link fully visible */
.footer-top_wrapper .footer-links_main-wrapper a:hover {
    opacity: 1;
}

.footer-bottom_wrapper {
    background-color: var(--bg-dark);
    padding: 32px 0px;
}

.footer-bottom_wrapper .footer-copyright_main-wrapper p {
    font-family: var(--font-itcavantgarde-medium);
    font-size: 20px;
    color: var(--text-white);
    line-height: 1;
    font-weight: 400;
}

.footer-bottom_wrapper .footer-copyright_main-wrapper a {
    text-decoration: underline;
    text-underline-offset: 6px;
}

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .footer-section .footer-top_wrapper {
        padding: 4.063vw 0.000vw 4.479vw;
    }

    .footer-top_wrapper .footer-logo_main-wrapper .footer-logo {
        max-width: 14.948vw;
        width: 100%;
    }

    .footer-top_wrapper .footer-logo_main-wrapper .social-logo-main-wrapper {
        gap: 0.938vw;
    }

    .footer-top_wrapper .footer-logo_main-wrapper .social-logo-main-wrapper .social-logo_img-wrapper {
        max-width: 2.344vw;
        height: 2.344vw;
    }

    .footer-section .footer-top_wrapper .footer-email_main-wrapper {
        gap: 4.688vw;
        margin-top: 3.125vw;
    }

    .footer-top_wrapper .footer-email_main-wrapper .email-content_wrapper h5 {
        font-size: 1.563vw;
        margin-bottom: 0.417vw;
    }

    .footer-top_wrapper .footer-email_main-wrapper .email-content_wrapper a {
        font-size: 1.563vw;
    }

    .footer-top_wrapper .footer-links_main-wrapper {
        gap: 2.292vw;
        margin-top: 2.865vw;
    }

    .footer-top_wrapper .footer-links_main-wrapper a {
        font-size: 1.563vw;
        text-underline-offset: 0.313vw;
    }

    .footer-bottom_wrapper {
        padding: 1.667vw 0vw;
    }

    .footer-bottom_wrapper .footer-copyright_main-wrapper p {
        font-size: 1.042vw;
    }

    .footer-bottom_wrapper .footer-copyright_main-wrapper a {
        text-underline-offset: 0.313vw;
    }
}

@media only screen and (max-width: 991px) {

    .footer-section .footer-top_wrapper .footer-email_main-wrapper,
    .footer-top_wrapper .footer-links_main-wrapper {
        flex-direction: column;
        gap: 35px;
    }

    .footer-top_wrapper .footer-email_main-wrapper .email-content_wrapper h5,
    .footer-top_wrapper .footer-email_main-wrapper .email-content_wrapper a {
        text-align: center;
    }
}

@media only screen and (max-width: 680px) {
    .footer-section .footer-top_wrapper {
        padding: 32px 0px 28px;
    }

    .footer-top_wrapper .footer-logo_main-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .footer-top_wrapper .footer-logo_main-wrapper .footer-logo {
        max-width: 130px;
    }

    .footer-top_wrapper .footer-logo_main-wrapper .social-logo-main-wrapper {
        gap: 10px;
    }

    .footer-top_wrapper .footer-logo_main-wrapper .social-logo-main-wrapper .social-logo_img-wrapper {
        max-width: 25px;
        height: 25px;
    }

    .footer-top_wrapper .footer-email_main-wrapper .email-content_wrapper h5,
    .footer-top_wrapper .footer-email_main-wrapper .email-content_wrapper a,
    .footer-top_wrapper .footer-links_main-wrapper a {
        /* font-size: 12px; */
        font-size: 16px;
    }

    .footer-section .footer-top_wrapper .footer-email_main-wrapper,
    .footer-top_wrapper .footer-links_main-wrapper {
        margin-top: 23px;
    }

    .footer-section .footer-top_wrapper .footer-email_main-wrapper {
        gap: 14px;
    }

    .footer-top_wrapper .footer-links_main-wrapper {
        gap: 12px;
        width: fit-content;
        margin: 23px auto 0px;
    }

    .footer-top_wrapper .footer-links_main-wrapper a {
        text-underline-offset: 2px;
    }

    .footer-bottom_wrapper {
        padding: 12px 0px;
    }

    .footer-bottom_wrapper .footer-copyright_main-wrapper p {
        font-size: 10px;
        text-align: center;
    }

    .footer-bottom_wrapper .footer-copyright_main-wrapper p a {
        text-underline-offset: 2px;
    }

    .footer-top_wrapper .footer-email_main-wrapper .email-content_wrapper h5 {
        margin-bottom: 0px;
    }
}


/* Footer Section CSS End Here*/

/* Banner Headung Section CSS Start Here*/

.banner-heading-section {
    background-color: var(--bg-primary);
    padding: 82px 0px 106px;
}

.banner-heading-section .heading h1 {
    font-size: 112px;
    font-family: var(--font-fatfrank);
    line-height: 0.98;
    color: var(--text-white);
    text-shadow: 0px 7px 12.6px rgba(0, 0, 0, 0.29);
    text-align: center;
    text-transform: uppercase;
}

.banner-heading-section .heading {
    max-width: 70%;
    width: 100%;
    margin: 0 auto;
}

/* Banner Headung Section CSS End Here*/

/* Story Section CSS Start Here*/

.story-section {
    padding: 118px 0px;
    background-color: var(--bg-gray);
}

.story-section .story-section_main-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 90px;
    align-items: start;
}

.story-section_main-wrapper .story-section_left-content-wrapper {
    max-width: 46.5%;
    width: 100%;
}

.story-section_main-wrapper .story-section_left-content-wrapper .left-content_heading {
    max-width: 50%;
    width: 100%;
}

.story-section_main-wrapper .story-section_left-content-wrapper .left-content_heading h2 {
    font-family: var(--font-fatfrank);
    font-size: 58px;
    line-height: 0.98;
    color: var(--text-dark);
    text-transform: uppercase;
}

.story-section_left-content-wrapper .left-content_desc {
    padding-top: 46px;
    padding-bottom: 44px;
}

.story-section_left-content-wrapper .left-content_desc p {
    font-family: var(--font-itcavantgarde-medium);
    font-size: 28px;
    /* line-height: 1.04; */
    line-height: 1.28;
    color: var(--text-dark);
}

.story-section_left-content-wrapper .left-content_desc p:not(:first-child) {
    padding-top: 43px;
}

.story-section_left-content-wrapper .explore-btn a {
    font-family: var(--font-itcavantgarde);
    font-size: 28px;
    line-height: 1;
    text-transform: capitalize;
    color: var(--text-white);
    background-color: var(--bg-primary);
    display: block;
    width: fit-content;
    padding: 13px 22px;
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
    border: 1px solid transparent;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.story-section_left-content-wrapper .explore-btn a:hover {
    color: var(--text-red);
    border-color: var(--bg-primary);
    background-color: transparent;
}

/* .story-page_right-content-wrapper {
    padding-left: 86px;
} */

.story-page_right-content-wrapper .right-content_wrapper .story-card {
    padding-left: 86px;
    position: relative;
    padding-bottom: 46px;
}

.story-page_right-content-wrapper .right-content_wrapper .story-card:last-child {
    padding-bottom: 0;
}

.story-page_right-content-wrapper .right-content_wrapper .story-card span {
    display: block;
    max-width: 34px;
    width: 100%;
    height: 34px;
    background-color: var(--bg-dark);
    position: absolute;
    top: 50%;
    left: 0;
    border-radius: 34px;
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    -ms-border-radius: 34px;
    -o-border-radius: 34px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.story-page_right-content-wrapper .right-content_wrapper .story-card::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 13px;
    width: 8px;
    background: var(--bg-dark);
    height: 100%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 0;
}

.story-page_right-content-wrapper .right-content_wrapper .story-card:nth-last-child(2):before {
    height: calc(100% - 17px);
}

/* .story-page_right-content-wrapper .right-content_wrapper .story-card.active span{
    background-color: red;
}
.story-page_right-content-wrapper .right-content_wrapper .story-card::after {
    content: '';
    position: absolute;
    top: 96%;
    left: 13px;
    width: 8px;
    background: red;
    height: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: -1;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}
.story-page_right-content-wrapper .right-content_wrapper .story-card.active::after{
    height: 100%;
} */
.story-page_right-content-wrapper .right-content_wrapper .story-card:last-child::before,
.story-page_right-content-wrapper .right-content_wrapper .story-card:last-child::after {
    display: none;
}

.story-page_right-content-wrapper .right-content_wrapper .story-card .story-card_wrapper {
    padding: 51px 35px 51px 42px;
    background-color: var(--bg-dark);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.right-content_wrapper .story-card .story-year h3 {
    font-size: 50px;
    font-family: var(--font-fatfrank);
    line-height: 0.98;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 22px;
}

.right-content_wrapper .story-card .story-desc p {
    font-size: 28px;
    line-height: 1.04;
    font-family: var(--font-itcavantgarde-medium);
    color: var(--text-white);
}

body.body-story-page .more-info_top-wrapper .slider-card .slider-card-wrapper {
    justify-content: start;
}

body.body-story-page .more-info_top-wrapper .slider-card .slider-card_content-wrapper h3 {
    max-width: 100%;
}

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .banner-heading-section {
        padding: 4.271vw 0.000vw 5.521vw;
    }

    .banner-heading-section .heading h1 {
        font-size: 5.833vw;
    }

    .story-section {
        padding: 6.146vw 0.000vw;
    }

    .story-section .story-section_main-wrapper {
        gap: 4.688vw;
    }

    .story-section_main-wrapper .story-section_left-content-wrapper .left-content_heading h2 {
        font-size: 3.021vw;
    }

    .story-section_left-content-wrapper .left-content_desc {
        padding-top: 2.396vw;
        padding-bottom: 2.292vw;
    }

    .story-section_left-content-wrapper .left-content_desc p {
        font-size: 1.458vw;
    }

    .story-section_left-content-wrapper .left-content_desc p:not(:first-child) {
        padding-top: 2.240vw;
    }

    .story-section_left-content-wrapper .explore-btn a {
        font-size: 1.458vw;
        padding: 0.677vw 1.146vw;
        border-radius: 0.625vw;
        transition: all 0.4s ease-in-out;
        border: 0.052vw solid transparent;
    }

    /* .story-page_right-content-wrapper {
        padding-left: 4.479vw;
    } */

    .story-page_right-content-wrapper .right-content_wrapper .story-card {
        padding-left: 4.479vw;
        padding-bottom: 2.396vw;
    }

    .story-page_right-content-wrapper .right-content_wrapper .story-card span {
        max-width: 1.771vw;
        height: 1.771vw;
        border-radius: 1.771vw;
        -webkit-border-radius: 1.771vw;
        -moz-border-radius: 1.771vw;
        -ms-border-radius: 1.771vw;
        -o-border-radius: 1.771vw;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }

    .story-page_right-content-wrapper .right-content_wrapper .story-card::before {
        left: 0.677vw;
        width: 0.417vw;
    }

    .story-page_right-content-wrapper .right-content_wrapper .story-card .story-card_wrapper {
        padding: 2.656vw 1.823vw 2.656vw 2.188vw;
        border-radius: 0.833vw;
        -webkit-border-radius: 0.833vw;
        -moz-border-radius: 0.833vw;
        -ms-border-radius: 0.833vw;
        -o-border-radius: 0.833vw;
    }

    .right-content_wrapper .story-card .story-year h3 {
        font-size: 2.604vw;
        margin-bottom: 1.146vw;
    }

    .right-content_wrapper .story-card .story-desc p {
        font-size: 1.458vw;
    }
}

@media only screen and (max-width: 991px) {
    .banner-heading-section {
        padding: 70px 0px;
    }

    .banner-heading-section .heading {
        max-width: 85%;
    }

    .banner-heading-section .heading h1 {
        font-size: 80px;
    }

    .story-section {
        padding: 60px 0px;
    }

    .story-section .story-section_main-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .story-page_right-content-wrapper .right-content_wrapper .story-card .story-card_wrapper {
        padding: 40px 35px;
    }

    .story-section_main-wrapper .story-section_left-content-wrapper {
        max-width: 100%;
    }

    .story-section_main-wrapper .story-section_left-content-wrapper .left-content_heading {
        margin: 0 auto;
    }

    .story-section_main-wrapper .story-section_left-content-wrapper .left-content_heading h2 {
        text-align: center;
    }

    .story-section_left-content-wrapper .left-content_desc p {
        text-align: center;
    }

    .story-section_left-content-wrapper .explore-btn {
        display: flex;
        justify-content: center;
    }
}

@media only screen and (max-width: 580px) {
    .banner-heading-section {
        padding: 7px 0px 46px;
    }

    .banner-heading-section .heading {
        max-width: 85%;
    }

    .banner-heading-section .heading h1 {
        font-size: 36px;
    }

    .story-section {
        padding: 25px 0px;
    }

    .story-section_main-wrapper .story-section_left-content-wrapper .left-content_heading {
        /* max-width: 45%; */
        max-width: 60%;
    }

    .story-section_main-wrapper .story-section_left-content-wrapper .left-content_heading h2 {
        /* font-size: 22px; */
        font-size: 30px;
    }

    .story-section_left-content-wrapper .left-content_desc p {
        /* font-size: 12px; */
        font-size: 14px;
    }

    .story-section_left-content-wrapper .left-content_desc {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .story-section_left-content-wrapper .left-content_desc p:not(:first-child) {
        padding-top: 14px;
    }

    .story-section_left-content-wrapper .explore-btn a {
        font-size: 12px;
        /* padding: 6px 10px; */
        padding: 7px 10px 5px;
        border-radius: 6px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -ms-border-radius: 6px;
        -o-border-radius: 6px;
    }

    .story-section .story-section_main-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .story-page_right-content-wrapper .right-content_wrapper .story-card .story-card_wrapper {
        padding: 14px 14px 13px;
        border-radius: 6px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -ms-border-radius: 6px;
        -o-border-radius: 6px;
    }

    .story-section_main-wrapper .story-section_left-content-wrapper {
        max-width: 100%;
    }

    .right-content_wrapper .story-card .story-year h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .right-content_wrapper .story-card .story-desc p {
        font-size: 12px;
    }

    .story-page_right-content-wrapper .right-content_wrapper .story-card {
        padding-left: 30px;
        padding-bottom: 15px;
    }

    .story-page_right-content-wrapper .right-content_wrapper .story-card span {
        max-width: 15px;
        height: 15px;
    }

    .story-page_right-content-wrapper .right-content_wrapper .story-card::before {
        width: 3px;
        left: 6px;
    }

    .story-section_main-wrapper .story-section_left-content-wrapper .left-content_heading {
        margin: 0 auto;
    }

    .story-section_main-wrapper .story-section_left-content-wrapper .left-content_heading h2 {
        text-align: center;
    }

    .story-section_left-content-wrapper .left-content_desc p {
        text-align: center;
    }

    .story-section_left-content-wrapper .explore-btn {
        display: flex;
        justify-content: center;
    }

    .story-page_right-content-wrapper .right-content_wrapper .story-card:nth-last-child(2):before {
        height: 100%;
    }
}

body.body-story-page .more-info_section .more-info__right-wrapper {
    display: none;
}

body.body-story-page .more-info_section .more-info__left-wrapper {
    max-width: 100%;
}

body.body-story-page .more-info_top-wrapper .slider-card .slider-card_content-wrapper p {
    max-width: 80%;
}

body.body-story-page .more-info_bottom-wrapper .image-wrapper {
    position: absolute;
    right: 28px;
    top: -100px;
    max-width: 520px;
    width: 100%;
}

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    body.body-story-page .more-info_bottom-wrapper .image-wrapper {
        right: 1.458vw;
        top: -5.208vw;
        max-width: 27.083vw;
    }
}

@media only screen and (max-width: 991px) {
    body.body-story-page .more-info_top-wrapper .slider-card .slider-card_content-wrapper p {
        max-width: 100%;
    }

    body.body-story-page .more-info_bottom-wrapper .image-wrapper {
        display: none;
    }

    body.body-story-page .more-info_bottom-main-wrapper h3 {
        text-align: center;
    }

    body.body-story-page .more-info_bottom-main-wrapper .more-info_bottom-wrapper .email_search-bar-wrapper {
        margin: 22px auto 0px;
    }
}

@media only screen and (max-width: 767px) {
    body.body-story-page .more-info_bottom-main-wrapper .more-info_bottom-wrapper .email_search-bar-wrapper {
        margin: 10px auto 0px;
    }
}

/*Story section CSS End Here*/


/* Store Page CSS Start Here */


.banner-heading-section .banner-heading-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 12px; */
    margin-top: 20px;
}

.banner-heading-section .banner-heading-btn a {
    font-size: 28px;
    display: block;
    font-family: var(--font-itcavantgarde);
    line-height: 1;
    color: var(--text-dark);
    background-color: var(--bg-white);
    /* padding: 11px 28px 12px; */
    padding: 14px 28px 15px;
    text-transform: capitalize;
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.banner-heading-section .banner-heading-btn a:hover {
    background-color: var(--bg-dark);
    color: var(--text-white)
}

.store-section {
    padding: 108px 0px 90px;
    background-color: var(--bg-white);
}

.store-section .store-section_main-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.store-section .store-section_left-wrapper {
    /* max-width: 73.659%; */
    max-width: 72.276%;
    width: 100%;
}

.store-section .store-section_right-wrapper {
    max-width: 23%;
    width: 100%;
}

.store-section .store-section_left-wrapper .map-wrapper {
    max-width: 100%;
    width: 100%;
    padding-bottom: 63.42%;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
}

.store-section .store-section_left-wrapper .map-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-section .store-section_right-wrapper h3 {
    font-size: 48px;
    font-family: var(--font-fatfrank);
    line-height: 0.98;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.store-section .store-section_right-wrapper p {
    font-size: 28px;
    font-family: var(--font-itcavantgarde-medium);
    line-height: 1.28;
    color: var(--text-dark);
    text-transform: uppercase;
    font-weight: 400;
}

.store-section .store-section_right-wrapper .location-detail_wrapper p span {
    display: block;
}

.store-section .store-section_right-wrapper a {
    font-size: 28px;
    font-family: var(--font-itcavantgarde-medium);
    line-height: 1.28;
    color: var(--text-dark);
    font-weight: 400;
    display: block;
}

.store-section .store-section_right-wrapper .content_wrapper,
.store-section .store-section_right-wrapper .content_wrapper .content-top-wrapper {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

body.body-store-page .instagram-section {
    padding-top: 90px;
}

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .banner-heading-section .banner-heading-btn {
        /* margin-top: 0.625vw; */
        margin-top: 1.042vw;
    }

    .banner-heading-section .banner-heading-btn a {
        font-size: 1.458vw;
        /* padding: 0.573vw 1.458vw 0.625vw; */
        padding: 0.729vw 1.458vw 0.781vw;
        border-radius: 0.625vw;
    }

    .store-section {
        padding: 5.625vw 0.000vw 4.688vw;
    }

    .store-section .store-section_main-wrapper {
        gap: 2.500vw;
    }

    .store-section .store-section_left-wrapper .map-wrapper {
        border-radius: 0.938vw;
    }

    .store-section .store-section_right-wrapper h3 {
        font-size: 2.500vw;
        margin-bottom: 0.521vw;
    }

    .store-section .store-section_right-wrapper p {
        font-size: 1.458vw;
        font-weight: 400;
    }

    .store-section .store-section_right-wrapper a {
        font-size: 1.458vw;
    }

    .store-section .store-section_right-wrapper .content_wrapper,
    .store-section .store-section_right-wrapper .content_wrapper .content-top-wrapper {
        gap: 1.354vw;
    }

    body.body-store-page .instagram-section {
        padding-top: 4.688vw;
    }
}

@media only screen and (max-width: 991px) {
    .banner-heading-section .banner-heading-btn {
        margin-top: 10px;
    }

    .store-section {
        padding: 70px 0px;
    }

    .store-section .store-section_main-wrapper {
        flex-direction: column;
    }

    .store-section .store-section_left-wrapper,
    .store-section .store-section_right-wrapper {
        max-width: 100%;
    }

    .store-section .store-section_right-wrapper .content_wrapper .content-top-wrapper {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .store-section .store-section_right-wrapper .content_wrapper {
        align-items: center;
    }

    .store-section .store-section_right-wrapper h3,
    .store-section .store-section_right-wrapper p,
    .store-section .store-section_right-wrapper a {
        text-align: center;
    }

    .banner-heading-section .banner-heading-btn a {
        font-size: 20px;
        padding: 11px 22px 12px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-heading-section .banner-heading-btn {
        margin-top: 5px;
    }

    .banner-heading-section .banner-heading-btn a {
        font-size: 12px;
        /* padding: 10px; */
        /* padding: 7px 10px; */
        padding: 9px 10px 5px;
        border-radius: 6px;
    }

    .store-section {
        padding: 36px 0px 34px;
    }

    .store-section .store-section_main-wrapper {
        gap: 22px;
    }

    .store-section .store-section_right-wrapper h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .store-section .store-section_right-wrapper p,
    .store-section .store-section_right-wrapper a {
        font-size: 12px;
    }

    .store-section .store-section_right-wrapper .content_wrapper .content-top-wrapper {
        justify-content: center;
        gap: 70px;
    }

    .store-section .store-section_right-wrapper .content_wrapper {
        gap: 18px;
    }

    body.body-store-page .instagram-section {
        padding-top: 24px;
    }
}

@media only screen and (max-width: 340px) {
    .store-section .store-section_right-wrapper .content_wrapper .content-top-wrapper {
        flex-direction: column;
        gap: 18px;
    }
}

/* Store Page CSS End Here */

/* Order online page css start here */


body.body-order-online-page .banner-heading-section .heading h1 {
    line-height: 0.947;
}

.banner-heading-section .heading h2 {
    font-size: 82px;
    font-family: var(--font-fatfrank);
    line-height: 0.95123;
    color: var(--text-white);
    text-shadow: 0px 7px 12.6px rgba(0, 0, 0, 0.29);
    text-align: center;
    text-transform: uppercase;
}

.order-section {
    background-color: var(--bg-primary);
    padding-bottom: 120px;
}

.order-section .order-section_main-wrapper {
    /* max-width: 69.511%; */
    max-width: 83.114%;
    width: 100%;
    margin: 0 auto;
}

.order-section .order-section_main-wrapper .order-wrapper {
    max-width: 100%;
    width: 100%;
    position: relative;
    padding-bottom: 121.758%;
    /* padding-bottom: 95.758%; for fit iframe content of current iframe*/
}

.order-section .order-section_main-wrapper .order-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.body-order-online-page .instagram-section {
    padding-top: 80px;
}

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .banner-heading-section .heading h2 {
        font-size: 4.271vw;
        text-shadow: 0.000vw 0.365vw 0.656vw rgba(0, 0, 0, 0.29);
    }

    .order-section {
        padding-bottom: 6.250vw;
    }

    body.body-order-online-page .instagram-section {
        padding-top: 4.167vw;
    }
}

@media only screen and (max-width: 1380px) {
    .order-section .order-section_main-wrapper {
        max-width: 100%;
    }
}

@media only screen and (max-width: 991px) {
    .banner-heading-section .heading h2 {
        font-size: 65px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-heading-section .heading h2 {
        font-size: 24px;
    }

    body.body-order-online-page .banner-heading-section {
        padding-top: 20px;
    }

    .order-section {
        padding: 20px 0px 35px;
    }

    body.body-order-online-page .instagram-section {
        padding-top: 28px;
    }
}


/* Order online page css end here */

/* Menu page css start here */

.menu-section {
    padding: 108px 0px 98px;
    background-color: var(--bg-white);
}

.menu-section .menu-slider_wrapper {
    /* max-width: 1456px; */
    max-width: 87.186%;
    width: 100%;
    margin: 0 auto;
}

.menu-section .menu-slider_wrapper .slick-list {
    box-shadow: 7px 27px 9px rgba(0, 0, 0, 0.17);
}

.menu-section .menu-slider_wrapper .slider-card .slider-card_wrapper {
    position: relative;
    max-width: 100%;
    width: 100%;
    /* padding-bottom: 56.1%; */
    padding-bottom: 56.25%;
}

.menu-section .menu-slider_wrapper .slider-card .slider-card_wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-section .menu-section_main-wrapper {
    position: relative;
}

.menu-section .menu-section_main-wrapper .menu_slider-arrows {
    max-width: 97.126%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.menu-section .menu-section_main-wrapper .menu_slider-arrows .arrow {
    max-width: 52px;
    width: 100%;
    height: 52px;
    cursor: pointer;
}

.menu-section .menu-section_main-wrapper .menu_slider-arrows .arrow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.body-menu-page .instagram-section {
    padding-top: 90px;
}

/* 1456 * 816 */

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .menu-section {
        padding: 5.625vw 0.000vw 5.104vw;
    }

    /* .menu-section .menu-slider_wrapper {
        max-width: 75.833vw;
    } */

    .menu-section .menu-section_main-wrapper .menu_slider-arrows .arrow {
        max-width: 2.708vw;
        height: 2.708vw;
    }

    body.body-menu-page .instagram-section {
        padding-top: 4.688vw;
    }
}

@media only screen and (max-width: 991px) {
    .menu-section {
        padding: 80px 0px;
    }

    .menu-section .menu-slider_wrapper {
        max-width: 100%;
    }

    .menu-section .menu-section_main-wrapper .menu_slider-arrows .arrow {
        max-width: 40px;
        height: 40px;
    }

    .menu-section .menu-section_main-wrapper .menu_slider-arrows {
        position: unset;
        transform: none;
        padding-top: 30px;
        justify-content: center;
        gap: 26px;
    }

    .menu-section .menu-slider_wrapper .slick-list {
        box-shadow: 0px 17px 43px rgba(0, 0, 0, 0.11);
    }
}

@media only screen and (max-width: 580px) {
    .menu-section {
        padding: 18px 0px 26px;
    }

    .menu-section .menu-section_main-wrapper .menu_slider-arrows .arrow {
        max-width: 25px;
        height: 25px;
    }

    .menu-section .menu-section_main-wrapper .menu_slider-arrows {
        padding-top: 15px;
        gap: 15px;
    }

    body.body-menu-page .instagram-section {
        padding-top: 20px;
    }
}

/* Menu page css end here */

/* Work Page CSS Start Here */

body.body-work-page .banner-heading-section .heading {
    max-width: 45%;
}

body.body-work-page .instagram-section {
    padding-top: 90px;
}

.work-section .work-section_content-wrapper {
    padding: 102px 0px 98px;
    max-width: 56.769%;
    margin: 0 auto;
}

.work-section .work-section_content-wrapper .content_heading h3 {
    font-size: 58px;
    line-height: 0.94;
    font-family: var(--font-fatfrank);
    text-transform: capitalize;
    color: var(--text-dark);
    text-align: center;
}

.work-section .work-section_content-wrapper .content_desc {
    padding: 44px 0px 32px;
}

.work-section .work-section_content-wrapper .content_desc p {
    font-size: 28px;
    font-family: var(--font-itcavantgarde-medium);
    line-height: 1.28;
    color: var(--text-dark);
    text-align: center;
}

.work-section .work-section_content-wrapper .content_desc p:not(:last-child) {
    padding-bottom: 35px;
}

.work-section .work-section_content-wrapper .apply-btn {
    display: flex;
    justify-content: center;
}

.work-section .work-section_content-wrapper .apply-btn a {
    display: block;
    font-size: 28px;
    line-height: 1;
    font-family: var(--font-itcavantgarde);
    color: var(--text-white);
    background-color: var(--bg-primary);
    padding: 13px 28px;
    border: 1px solid transparent;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.work-section .work-section_content-wrapper .apply-btn a:hover {
    background-color: transparent;
    color: var(--text-red);
    border-color: var(--bg-primary);
}

.work-section .work-section_outer-wrapper .img_main-wrapper {
    background-color: var(--bg-white);
    padding: 22px 22px 60px;
    width: fit-content;
    box-shadow: 0px 23px 32px 0px rgba(0, 0, 0, 0.29);
    rotate: -5deg;
}

.work-section .work-section_outer-wrapper .img_main-wrapper .img-wrapper {
    min-width: 415px;
    width: 100%;
    position: relative;
    padding-bottom: 100%;
    background-color: rgb(112, 112, 112);
}

.work-section .work-section_outer-wrapper .img_main-wrapper .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.work-section .work-section_outer-wrapper .img-outer-wrapper {
    position: relative;
    max-width: 450px;
    width: 100%;
    z-index: 1;
}

.work-section .work-section_outer-wrapper .img-outer-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-white);
    z-index: -1;
    box-shadow: 0px 23px 32px 0px rgba(0, 0, 0, 0.29);
}

.work-section {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-gray);
}

.work-section .work-section_outer-wrapper .img-outer-wrapper.right {
    position: absolute;
    top: 70px;
    right: -30px;
}

.work-section .work-section_outer-wrapper .img-outer-wrapper.right .img_main-wrapper {
    rotate: -8deg;
}

.work-section .work-section_outer-wrapper .img-outer-wrapper.left {
    position: absolute;
    bottom: 95px;
    left: -60px;
    max-width: 385px;
}

.work-section .work-section_outer-wrapper .img-outer-wrapper.right {
    max-width: 385px;
}

.work-section .work-section_outer-wrapper .img-outer-wrapper.left::before {
    rotate: 20deg;
}

.work-section .work-section_outer-wrapper .img-outer-wrapper.left .img_main-wrapper {
    rotate: 12deg;
}

.work-section .work-section_outer-wrapper .img-outer-wrapper.left .img-wrapper,
.work-section .work-section_outer-wrapper .img-outer-wrapper.right .img-wrapper {
    min-width: 340px;
}


@media only screen and (max-width: 1919px) and (min-width: 992px) {
    body.body-work-page .instagram-section {
        padding-top: 4.688vw;
    }

    .work-section .work-section_content-wrapper {
        padding: 5.313vw 0.000vw 5.104vw;
    }

    .work-section .work-section_content-wrapper .content_heading h3 {
        font-size: 3.021vw;
    }

    .work-section .work-section_content-wrapper .content_desc {
        padding: 2.292vw 0.000vw 1.667vw;
    }

    .work-section .work-section_content-wrapper .content_desc p {
        font-size: 1.458vw;
    }

    .work-section .work-section_content-wrapper .content_desc p:not(:last-child) {
        padding-bottom: 1.823vw;
    }

    .work-section .work-section_content-wrapper .apply-btn a {
        font-size: 1.458vw;
        padding: 0.677vw 1.458vw;
        border: 0.052vw solid transparent;
        border-radius: 0.625vw;
    }

    .work-section .work-section_outer-wrapper .img_main-wrapper {
        background-color: var(--bg-white);
        box-shadow: 0.000vw 1.198vw 1.667vw 0.000vw rgba(0, 0, 0, 0.29);
        padding: 1.146vw 1.146vw 3.125vw;
    }

    .work-section .work-section_outer-wrapper .img_main-wrapper .img-wrapper {
        min-width: 21.615vw;
    }

    .work-section .work-section_outer-wrapper .img-outer-wrapper {
        max-width: 23.438vw;
    }

    .work-section .work-section_outer-wrapper .img-outer-wrapper.right {
        top: 3.646vw;
        right: -1.563vw;
    }

    .work-section .work-section_outer-wrapper .img-outer-wrapper.left {
        bottom: 4.948vw;
        left: -3.125vw;
        max-width: 20.052vw;
    }

    .work-section .work-section_outer-wrapper .img-outer-wrapper.right {
        max-width: 20.052vw;
    }

    .work-section .work-section_outer-wrapper .img-outer-wrapper.left .img-wrapper,
    .work-section .work-section_outer-wrapper .img-outer-wrapper.right .img-wrapper {
        min-width: 17.708vw;
    }
}

@media only screen and (min-width: 1800px) {
    body.body-work-page .banner-heading-section .heading {
        max-width: 50%;
    }
}

@media only screen and (max-width: 991px) {
    body.body-work-page .banner-heading-section .heading {
        max-width: 75%;
    }

    .work-section .work-section_content-wrapper {
        padding: 70px 0px;
    }

    .work-section .work-section_content-wrapper .content_heading h3 {
        font-size: 26px;
    }

    .work-section .work-section_content-wrapper .content_desc p {
        font-size: 16px;
    }

    .work-section .work-section_content-wrapper .content_desc p:not(:last-child) {
        padding-bottom: 25px;
    }

    .work-section .work-section_content-wrapper .apply-btn a {
        font-size: 16px;
        padding: 10px 25px;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }

    .work-section .work-section_outer-wrapper .img-outer-wrapper.left .img-wrapper,
    .work-section .work-section_outer-wrapper .img-outer-wrapper.right .img-wrapper {
        min-width: 155px;
    }

    .work-section .work-section_outer-wrapper .img-outer-wrapper.right,
    .work-section .work-section_outer-wrapper .img-outer-wrapper.left {
        max-width: 190px;
    }

    .work-section .work-section_outer-wrapper .img_main-wrapper {
        padding: 15px 15px 35px;
    }
}

@media only screen and (max-width: 767px) {
    .work-section .work-section_outer-wrapper .img-outer-wrapper.right {
        top: 32px;
        right: -60px;
    }

    .work-section .work-section_outer-wrapper .img-outer-wrapper.left {
        bottom: 80px;
        left: -65px;
    }

    .work-section .work-section_outer-wrapper .img_main-wrapper {
        padding: 10px 10px 30px;
    }

    .work-section .work-section_outer-wrapper .img-outer-wrapper.left .img-wrapper,
    .work-section .work-section_outer-wrapper .img-outer-wrapper.right .img-wrapper {
        min-width: 100px;
    }

    .work-section .work-section_outer-wrapper .img-outer-wrapper.right,
    .work-section .work-section_outer-wrapper .img-outer-wrapper.left {
        max-width: 120px;
    }
}

@media only screen and (max-width: 580px) {
    .work-section .work-section_content-wrapper {
        padding: 32px 0px 30px;
    }

    .work-section .work-section_content-wrapper .content_desc {
        padding: 14px 0px 10px;
    }

    .work-section .work-section_content-wrapper .content_heading h3 {
        /* font-size: 20px; */
        font-size: 30px;
    }

    .work-section .work-section_content-wrapper .content_desc p {
        /* font-size: 12px; */
        font-size: 14px;
    }

    .work-section .work-section_content-wrapper .content_desc p:not(:last-child) {
        padding-bottom: 10px;
    }

    .work-section .work-section_content-wrapper .apply-btn a {
        font-size: 12px;
        /* padding: 8px 20px; */
        padding: 9px 20px 7px;
    }

    .work-section .work-section_content-wrapper {
        max-width: 75%;
    }

    body.body-work-page .instagram-section {
        padding-top: 22px;
    }

}

@media only screen and (max-width: 380px) {
    .work-section .work-section_outer-wrapper .img-outer-wrapper.left {
        left: -75px;
    }
}

@media only screen and (max-width: 340px) {
    body.body-work-page .banner-heading-section .heading {
        max-width: 80%;
    }

    body.body-work-page .instagram-section {
        padding-top: 28px;
    }
}


/* Work Page CSS End Here */


/* Franchise Page CSS Start Here */

/* body.body-franchise-page {
    background-color: var(--bg-gray);
} */

/* Movement Section CSS Start Here */

.work-section .work-section_content-wrapper .email-main_wrapper {
    max-width: 795px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    background-color: var(--bg-white);
    padding: 10px 14px 10px 24px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.work-section_content-wrapper .email-main_wrapper input {
    width: 55%;
    border: none;
    outline: none;
    font-family: var(--font-itcavantgarde);
    font-weight: 500;
    font-size: 27px;
    line-height: 1.2;
    background-color: transparent;
    color: var(--text-gray);
    width: 100%;
}


.work-section_content-wrapper .email-main_wrapper input.newsletter-submit-button {
    padding: 11px 22px 10px;
    background-color: var(--bg-primary);
    color: var(--text-white);
    font-family: var(--font-itcavantgarde-medium);
    font-weight: 500;
    font-size: 28px;
    line-height: 1.2;
    border: 1px solid transparent;
    outline: none;
    border-radius: 12px;
    cursor: pointer;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.work-section_content-wrapper .email-main_wrapper input.newsletter-submit-button:hover {
    background-color: var(--bg-white);
    color: var(--bg-primary);
    border-color: var(--bg-primary);
}

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .work-section .work-section_content-wrapper .email-main_wrapper {
        max-width: 41.406vw;
        gap: 0.417vw;
        padding: 0.521vw 0.729vw 0.521vw 1.250vw;
        border-radius: 0.781vw;
    }

    .work-section_content-wrapper .email-main_wrapper input {
        font-size: 1.406vw;
    }

    .work-section_content-wrapper .email-main_wrapper input.newsletter-submit-button {
        padding: 0.573vw 1.146vw 0.521vw;
        font-size: 1.458vw;
        border: 0.052vw solid transparent;
        border-radius: 0.625vw;
        cursor: pointer;
    }
}

@media only screen and (max-width: 991px) {

    .work-section_content-wrapper .email-main_wrapper input,
    .work-section_content-wrapper .email-main_wrapper input.newsletter-submit-button {
        font-size: 16px;
    }

    .work-section .work-section_content-wrapper .email-main_wrapper {
        /* padding: 10px 14px; */
        flex-direction: column;
        background-color: transparent;
    }

    .work-section_content-wrapper .email-main_wrapper input {
        background-color: var(--bg-white);
        padding: 10px 14px;
        width: 100%;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }

    .work-section_content-wrapper .email-main_wrapper input.newsletter-submit-button {
        width: fit-content;
        margin: 0 auto;
        padding: 7px 14px 6px;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }
}

@media only screen and (max-width: 580px) {

    .work-section_content-wrapper .email-main_wrapper input,
    .work-section_content-wrapper .email-main_wrapper input.newsletter-submit-button {
        font-size: 12px;
    }

    .work-section_content-wrapper .email-main_wrapper input {
        background-color: var(--bg-white);
        padding: 12px 10px 8px;
        width: 100%;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }

    .work-section_content-wrapper .email-main_wrapper input.newsletter-submit-button {
        /* padding: 7px 10px 6px; */
        padding: 8px 10px 5px;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }
}

/* Movement Section CSS End Here */

/* Our Support Section CSS Start Here*/


.our-support-section .our-section_main-wrapper {
    padding: 90px 180px;
    background-color: var(--bg-primary);
    border-radius: 22px;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
}

.our-support-section .our-section_main-wrapper .content_heading h3 {
    font-size: 58px;
    font-family: var(--font-fatfrank);
    line-height: 1;
    color: var(--text-white);
    text-align: center;
}

.our-support-section .our-section_main-wrapper .content-small_heading h4 {
    font-size: 28px;
    font-family: var(--font-itcavantgarde-bold);
    line-height: 1.28;
    color: var(--text-white);
    text-align: center;
    padding: 42px 0px 36px;
}

.our-support-section .our-section_main-wrapper .content_desc p {
    font-size: 28px;
    font-family: var(--font-itcavantgarde-medium);
    line-height: 1.28;
    color: var(--text-white);
    text-align: center;
}

.our-support-section .our-section_main-wrapper .content_desc p:not(:last-child) {
    padding-bottom: 36px;
}

.our-support-section {
    position: relative;
    padding-bottom: 93px;
    overflow-x: clip;
    background-color: var(--bg-gray);
}

.our-support_outer-wrapper .img-outer-wrapper .img-wrapper {
    min-width: 280px;
    width: 100%;
    position: relative;
    padding-bottom: 100%;
    background-color: rgb(112, 112, 112);
}

.our-support_outer-wrapper .img-outer-wrapper .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.our-support_outer-wrapper .img-outer-wrapper .img_main-wrapper {
    background-color: var(--bg-white);
    padding: 22px 22px 70px;
    width: fit-content;
    box-shadow: 0px 23px 32px 0px rgba(0, 0, 0, 0.29);
    rotate: -5deg;
}

.our-support_outer-wrapper .img-outer-wrapper.right .img_main-wrapper {
    rotate: 8deg;
    top: -90px;
    right: -80px;
    position: absolute;
}

.our-support_outer-wrapper .img-outer-wrapper.left .img_main-wrapper {
    position: absolute;
    bottom: 0px;
    left: -100px;
    z-index: 1;
}

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .our-support-section .our-section_main-wrapper {
        padding: 4.688vw 9.375vw;
        border-radius: 1.146vw;
    }

    .our-support-section .our-section_main-wrapper .content_heading h3 {
        font-size: 3.021vw;
    }

    .our-support-section .our-section_main-wrapper .content-small_heading h4 {
        font-size: 1.458vw;
        padding: 2.188vw 0.000vw 1.875vw;
    }

    .our-support-section .our-section_main-wrapper .content_desc p {
        font-size: 1.458vw;
    }

    .our-support-section .our-section_main-wrapper .content_desc p:not(:last-child) {
        padding-bottom: 1.875vw;
    }

    .our-support-section {
        padding-bottom: 4.844vw;
    }

    .our-support_outer-wrapper .img-outer-wrapper .img-wrapper {
        min-width: 14.583vw;
    }

    .our-support_outer-wrapper .img-outer-wrapper .img_main-wrapper {
        padding: 1.146vw 1.146vw 3.646vw;
        box-shadow: 0.000vw 1.198vw 1.667vw 0.000vw rgba(0, 0, 0, 0.29);
    }

    .our-support_outer-wrapper .img-outer-wrapper.right .img_main-wrapper {
        top: -4.688vw;
        right: -4.167vw;
    }

    .our-support_outer-wrapper .img-outer-wrapper.left .img_main-wrapper {
        bottom: 0.000vw;
        left: -5.208vw;
    }
}

@media only screen and (max-width: 991px) {
    .our-support-section .our-section_main-wrapper {
        padding: 60px 50px;
    }

    .our-support-section .our-section_main-wrapper .content_heading h3 {
        font-size: 46px;
    }

    .our-support-section .our-section_main-wrapper .content-small_heading h4 {
        font-size: 22px;
        padding: 25px 0px;
    }

    .our-support-section .our-section_main-wrapper .content_desc p {
        font-size: 18px;
    }

    .our-support-section .our-section_main-wrapper .content_desc p:not(:last-child) {
        padding-bottom: 20px;
    }

    .our-support_outer-wrapper .img-outer-wrapper .img-wrapper {
        min-width: 150px;
    }

    .our-support_outer-wrapper .img-outer-wrapper .img_main-wrapper {
        padding: 15px 15px 45px;
    }

    .our-support_outer-wrapper .img-outer-wrapper.right .img_main-wrapper {
        right: -65px;
    }
}

@media only screen and (max-width: 767px) {
    .our-support-section .our-section_main-wrapper .content_heading h3 {
        /* font-size: 22px; */
        font-size: 30px;
    }

    .our-support-section .our-section_main-wrapper .content-small_heading h4,
    .our-support-section .our-section_main-wrapper .content_desc p {
        /* font-size: 12px; */
        font-size: 14px;
    }

    .our-support-section .our-section_main-wrapper {
        padding: 32px 22px;
    }

    .our-support-section .our-section_main-wrapper .content-small_heading h4 {
        padding: 10px 0px;
    }

    .our-support-section .our-section_main-wrapper .content_desc p:not(:last-child) {
        padding-bottom: 12px;
    }

    .our-support_outer-wrapper .img-outer-wrapper .img-wrapper {
        min-width: 100px;
    }

    .our-support_outer-wrapper .img-outer-wrapper .img_main-wrapper {
        padding: 10px 10px 30px;
    }

    .our-support_outer-wrapper .img-outer-wrapper.right .img_main-wrapper {
        right: -45px;
    }

    .our-support_outer-wrapper .img-outer-wrapper.left .img_main-wrapper {
        bottom: -15px;
        left: -65px;
    }

    .our-support-section {
        padding-bottom: 30px;
    }
}

/* Our Support Section CSS End Here*/

/* Finance Section CSS Start Here */

.finance-section {
    position: relative;
    padding-bottom: 96px;
    overflow: hidden;
    background-color: var(--bg-gray);
}

.finance-section .finance-section_wrapper {
    max-width: 63%;
    width: 100%;
    margin: 0 auto;
}

.finance-section .finance-section_wrapper .content_wrapper .heading h3 {
    font-family: var(--font-fatfrank);
    font-size: 58px;
    line-height: 0.98;
    color: var(--text-dark);
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 40px;
}

.finance-section .finance-section_wrapper .content_wrapper .content-desc p {
    font-family: var(--font-itcavantgarde-medium);
    font-size: 28px;
    line-height: 1.28;
    color: var(--text-dark);
    text-align: center;
}

.finance-section .finance-section_wrapper .content_wrapper .content-desc p:not(:last-child) {
    padding-bottom: 35px;
}

.finance-section .finance-section_wrapper .all-card_main-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 76px;
}

.finance-section .finance-section_wrapper .all-card_main-wrapper .card_wrapper {
    background-color: var(--bg-white);
    min-width: 346px;
    padding: 40px 15px;
    /* padding: 48px 28px; */
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.finance-section .finance-section_wrapper .all-card_main-wrapper .heading h4 {
    font-family: var(--font-itcavantgarde-bold);
    font-size: 32px;
    line-height: 1.34;
    text-transform: uppercase;
    text-align: center;
    color: var(--text-dark);
}

.finance-section .finance-section_wrapper .all-card_main-wrapper .content p {
    font-family: var(--font-itcavantgarde-medium);
    font-size: 26px;
    line-height: 1.23;
    text-align: center;
    color: var(--text-dark);
    padding-top: 36px;
}

.finance-section .finance-section_outer-wraper .img_main-wrapper {
    background-color: var(--bg-white);
    padding: 22px 22px 70px;
    width: fit-content;
    box-shadow: 0px 23px 32px 0px rgba(0, 0, 0, 0.29);
    rotate: 5deg;
    position: absolute;
    bottom: 115px;
    right: -190px;
}

.finance-section .finance-section_outer-wraper .img_main-wrapper .img-wrapper {
    min-width: 450px;
    width: 100%;
    position: relative;
    padding-bottom: 100%;
    background-color: rgb(112, 112, 112);
}

.finance-section .finance-section_outer-wraper .img_main-wrapper .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .finance-section {
        padding-bottom: 5.000vw;
    }

    .finance-section .finance-section_wrapper .content_wrapper .heading h3 {
        font-size: 3.021vw;
        padding-bottom: 2.083vw;
    }

    .finance-section .finance-section_wrapper .content_wrapper .content-desc p {
        font-size: 1.458vw;
    }

    .finance-section .finance-section_wrapper .content_wrapper .content-desc p:not(:last-child) {
        padding-bottom: 1.823vw;
    }

    .finance-section .finance-section_wrapper .all-card_main-wrapper {
        gap: 1.354vw;
        margin-top: 3.958vw;
    }

    .finance-section .finance-section_wrapper .all-card_main-wrapper .card_wrapper {
        /* padding: 2.500vw 1.458vw; */
        min-width: 18.021vw;
        padding: 2.083vw 0.781vw;
        border-radius: 0.417vw;
    }

    .finance-section .finance-section_wrapper .all-card_main-wrapper .heading h4 {
        font-size: 1.667vw;
    }

    .finance-section .finance-section_wrapper .all-card_main-wrapper .content p {
        font-size: 1.354vw;
        padding-top: 1.875vw;
    }

    .finance-section .finance-section_outer-wraper .img_main-wrapper {
        padding: 1.146vw 1.146vw 3.646vw;
        box-shadow: 0.000vw 1.198vw 1.667vw 0.000vw rgba(0, 0, 0, 0.29);
        bottom: 5.990vw;
        right: -9.896vw;
    }

    .finance-section .finance-section_outer-wraper .img_main-wrapper .img-wrapper {
        min-width: 23.438vw;
    }
}

@media only screen and (max-width: 991px) {
    .finance-section .finance-section_wrapper .content_wrapper .heading h3 {
        font-size: 46px;
        padding-bottom: 30px;
    }

    .finance-section .finance-section_wrapper .content_wrapper .content-desc p {
        font-size: 18px;
    }

    .finance-section .finance-section_wrapper .content_wrapper .content-desc p:not(:last-child) {
        padding-bottom: 20px;
    }

    .finance-section .finance-section_wrapper {
        max-width: 100%;
    }

    .finance-section .finance-section_wrapper .all-card_main-wrapper {
        /* flex-direction: column; */
        gap: 20px;
        margin-top: 50px;
    }

    .finance-section .finance-section_wrapper .all-card_main-wrapper .heading h4 {
        font-size: 20px;
    }

    .finance-section .finance-section_wrapper .all-card_main-wrapper .content p {
        font-size: 16px;
        padding-top: 20px;
    }

    .finance-section .finance-section_wrapper .all-card_main-wrapper .card_wrapper {
        min-width: 215px;
        padding: 35px 20px;
    }

    .finance-section .finance-section_outer-wraper {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .finance-section .finance-section_wrapper .content_wrapper .heading h3 {
        /* font-size: 20px; */
        font-size: 30px;
        padding-bottom: 12px;
    }

    .finance-section .finance-section_wrapper .content_wrapper .content-desc p {
        /* font-size: 12px; */
        font-size: 14px;
    }

    .finance-section .finance-section_wrapper .content_wrapper .content-desc p:not(:last-child) {
        padding-bottom: 10px;
    }

    .finance-section .finance-section_wrapper .all-card_main-wrapper {
        margin-top: 24px;
    }

    .finance-section .finance-section_wrapper .all-card_main-wrapper .heading h4 {
        font-size: 12px;
    }

    .finance-section .finance-section_wrapper .all-card_main-wrapper .content p {
        font-size: 12px;
        padding: 8px;
    }

    .finance-section .finance-section_wrapper .all-card_main-wrapper .card_wrapper {
        padding: 14px 8px;
    }

    .finance-section .finance-section_wrapper .all-card_main-wrapper {
        /* flex-direction: column; */
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }

    .finance-section {
        padding-bottom: 22px;
    }
}

/* Finance Section CSS End Here */

/* Our Franchise Section CSS Start Here*/

.our-franchise-section {
    background-color: var(--bg-gray);
    padding-bottom: 103px;
}

.our-franchise-section .our-franchise_main-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
    background-color: var(--bg-primary);
    border-radius: 22px;
    overflow: hidden;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
}

.our-franchise-section .our-franchise_main-wrapper .img-main_wrapper {
    max-width: 495px;
    width: 100%;
}

.our-franchise-section .our-franchise_main-wrapper .img-main_wrapper .img-wrapper {
    position: relative;
    max-width: 100%;
    width: 100%;
    padding-bottom: 114.144%;
}

.our-franchise-section .our-franchise_main-wrapper .img-main_wrapper .img-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.our-franchise-section .our-franchise_main-wrapper .content_wrapper {
    padding: 10px 90px 10px 60px;
}

.our-franchise-section .our-franchise_main-wrapper .content_wrapper .heading h3 {
    font-size: 58px;
    line-height: 0.98;
    font-family: var(--font-fatfrank);
    text-transform: uppercase;
    color: var(--text-white);
    padding-bottom: 34px;
}

.our-franchise-section .our-franchise_main-wrapper .content_wrapper .content p {
    font-size: 28px;
    line-height: 1.23;
    font-family: var(--font-itcavantgarde-medium);
    color: var(--text-white);
    text-align: left;
}

.our-franchise-section .our-franchise_main-wrapper .content_wrapper .content p:not(:last-child) {
    padding-bottom: 40px;
}

.our-franchise-section .our-franchise_main-wrapper .content_wrapper .name h5 {
    font-size: 28px;
    line-height: 1.23;
    font-family: var(--font-itcavantgarde-bold);
    color: var(--text-white);
    text-align: left;
    text-transform: capitalize;
    padding-top: 42px;
}

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .our-franchise-section {
        padding-bottom: 5.365vw;
    }

    .our-franchise-section .our-franchise_main-wrapper {
        border-radius: 1.146vw;
    }

    .our-franchise-section .our-franchise_main-wrapper .img-main_wrapper {
        max-width: 25.781vw;
    }

    .our-franchise-section .our-franchise_main-wrapper .content_wrapper {
        padding: 0.521vw 4.688vw 0.521vw 3.125vw;
    }

    .our-franchise-section .our-franchise_main-wrapper .content_wrapper .heading h3 {
        font-size: 3.021vw;
        padding-bottom: 1.771vw;
    }

    .our-franchise-section .our-franchise_main-wrapper .content_wrapper .content p {
        font-size: 1.458vw;
    }

    .our-franchise-section .our-franchise_main-wrapper .content_wrapper .content p:not(:last-child) {
        padding-bottom: 2.083vw;
    }

    .our-franchise-section .our-franchise_main-wrapper .content_wrapper .name h5 {
        font-size: 1.458vw;
        padding-top: 2.188vw;
    }
}

@media only screen and (max-width: 991px) {
    /* .our-franchise-section .our-franchise_main-wrapper {
        flex-direction: column;
    } */

    .our-franchise-section {
        padding-bottom: 70px;
    }

    .our-franchise-section .our-franchise_main-wrapper .img-main_wrapper {
        max-width: 100%;
        min-width: 45%;
    }

    .our-franchise-section .our-franchise_main-wrapper .img-main_wrapper .img-wrapper {
        padding-bottom: 156%;
    }

    .our-franchise-section .our-franchise_main-wrapper .content_wrapper {
        padding: 20px 30px;
    }

    .our-franchise-section .our-franchise_main-wrapper .content_wrapper .heading h3 {
        font-size: 40px;
        padding-bottom: 20px;
    }

    .our-franchise-section .our-franchise_main-wrapper .content_wrapper .content p,
    .our-franchise-section .our-franchise_main-wrapper .content_wrapper .name h5 {
        font-size: 18px;
    }

    .our-franchise-section .our-franchise_main-wrapper .content_wrapper .content p:not(:last-child) {
        padding-bottom: 20px;
    }

    .our-franchise-section .our-franchise_main-wrapper .content_wrapper .name h5 {
        padding-top: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .our-franchise-section {
        padding-bottom: 32px;
    }

    .our-franchise-section .our-franchise_main-wrapper {
        /* display: block; */
        flex-direction: column;
    }

    .our-franchise-section .our-franchise_main-wrapper .img-main_wrapper .img-wrapper {
        padding-bottom: 60%;
    }
}

@media only screen and (max-width: 580px) {
    .our-franchise-section .our-franchise_main-wrapper .img-main_wrapper .img-wrapper {
        padding-bottom: 96%;
    }

    .our-franchise-section .our-franchise_main-wrapper .content_wrapper {
        padding: 28px 24px 23px 23px;
    }

    .our-franchise-section .our-franchise_main-wrapper .content_wrapper .heading h3 {
        /* font-size: 20px; */
        font-size: 30px;
        padding-bottom: 12px;
        text-align: center;
    }

    .our-franchise-section .our-franchise_main-wrapper .content_wrapper .content p,
    .our-franchise-section .our-franchise_main-wrapper .content_wrapper .name h5 {
        /* font-size: 12px; */
        font-size: 14px;
        text-align: center;
    }

    .our-franchise-section .our-franchise_main-wrapper .content_wrapper .content p:not(:last-child) {
        padding-bottom: 10px;
    }

    .our-franchise-section .our-franchise_main-wrapper .content_wrapper .name h5 {
        padding-top: 10px;
    }
}

/* Our Franchise Section CSS End Here*/

/* Enquire Section CSS Start Here*/

.enquire-section {
    background-color: var(--bg-primary);
    padding: 100px 0px;
}

.enquire-section .enquire-section_main-wrapper  {
    position: relative;
}

.enquire-section .enquire-section_main-wrapper .heading h3 {
    font-family: var(--font-fatfrank);
    font-size: 58px;
    line-height: 0.98;
    text-transform: uppercase;
    color: var(--text-white);
    text-align: center;
}

.enquire-section .enquire-section_main-wrapper .heading h3 span {
    display: block;
}

.enquire-section .enquire-section_main-wrapper .enquire-form {
    margin-top: 50px;
}

.enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 18px;
}

.enquire-section .enquire-section_main-wrapper .enquire-form .check-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 35px 0px 28px;
}

.enquire-section .enquire-section_main-wrapper .enquire-form .check-wrapper {
    display: flex;
    align-items: flex-start;
}

/* Wrapper */
.enquire-section .check-wrapper .custom-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

/* Hide default checkbox */
.enquire-section .check-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

/* Text + checkmark container */
.enquire-section .check-wrapper .wpcf7-list-item-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

/* Custom box */
.enquire-section .check-wrapper .checkmark {
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
}

/* Checked state */
.enquire-section 
.check-wrapper 
input[type="checkbox"]:checked 
~ .wpcf7-list-item-label 
.checkmark {
    background: var(--bg-dark);
}

/* Tick mark */
.enquire-section .check-wrapper .checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

/* Show tick */
.enquire-section 
.check-wrapper 
input[type="checkbox"]:checked 
~ .wpcf7-list-item-label 
.checkmark::after {
    display: block;
}

/* Tick style */
.enquire-section .check-wrapper .checkmark::after {
    left: 11px;
    top: 6px;
    width: 7px;
    height: 14px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.enquire-section .enquire-section_main-wrapper .enquire-form .check-wrapper p {
    font-size: 20px;
    line-height: 1;
    font-family: var(--font-itcavantgarde);
    color: var(--text-white);
}

.enquire-section .enquire-section_main-wrapper .enquire-form .submit-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.enquire-section .enquire-section_main-wrapper .enquire-form .wpcf7-form input.submit-btn {
    font-size: 28px;
    line-height: 1;
    color: var(--text-dark);
    font-family: var(--font-itcavantgarde);
    border: none;
    outline: none;
    background-color: var(--bg-white);
    padding: 14px 59px;
    text-transform: capitalize;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.enquire-section .enquire-section_main-wrapper .enquire-form .wpcf7-form input.submit-btn:hover {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 28px;
    line-height: 1;
    font-family: var(--font-itcavantgarde);
    color: var(--text-dark);
    /* text-transform: capitalize; */
    padding: 21px 23px;
    background-color: var(--bg-white);
    border-radius: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    -o-border-radius: 14px;
}

.enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input::placeholder {
    text-transform: capitalize;
}

/* .enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input::-webkit-datetime-edit-day-field,
.enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input::-webkit-datetime-edit-text,
.enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input::-webkit-datetime-edit-month-field ,
.enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input::-webkit-datetime-edit-year-field {
    opacity: 0.55;
}

.enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input:valid::-webkit-datetime-edit-day-field,
.enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input:valid::-webkit-datetime-edit-text,
.enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input:valid::-webkit-datetime-edit-month-field,
.enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input:valid::-webkit-datetime-edit-year-field {
    opacity: 1;
} */

.enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input.hasDatepicker {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='512' height='512' x='0' y='0' viewBox='0 0 48 48' style='enable-background:new 0 0 512 512' xml:space='preserve' class='hovered-paths'%3E%3Cg%3E%3Cpath d='M9.8 30.5h5.3c.8 0 1.5-.7 1.5-1.5v-5.3c0-.8-.7-1.5-1.5-1.5H9.8c-.8 0-1.5.7-1.5 1.5V29c0 .8.7 1.5 1.5 1.5zM9.8 41.8h5.3c.8 0 1.5-.7 1.5-1.5V35c0-.8-.7-1.5-1.5-1.5H9.8c-.8 0-1.5.7-1.5 1.5v5.3c0 .9.7 1.5 1.5 1.5zM21.3 30.5h5.3c.8 0 1.5-.7 1.5-1.5v-5.3c0-.8-.7-1.5-1.5-1.5h-5.3c-.8 0-1.5.7-1.5 1.5V29c0 .8.7 1.5 1.5 1.5zM21.3 41.8h5.3c.8 0 1.5-.7 1.5-1.5V35c0-.8-.7-1.5-1.5-1.5h-5.3c-.8 0-1.5.7-1.5 1.5v5.3c0 .9.7 1.5 1.5 1.5zM32.9 30.5h5.3c.8 0 1.5-.7 1.5-1.5v-5.3c0-.8-.7-1.5-1.5-1.5h-5.3c-.8 0-1.5.7-1.5 1.5V29c0 .8.6 1.5 1.5 1.5zM32.9 41.8h5.3c.8 0 1.5-.7 1.5-1.5V35c0-.8-.7-1.5-1.5-1.5h-5.3c-.8 0-1.5.7-1.5 1.5v5.3c0 .9.6 1.5 1.5 1.5z' fill='%23848484' opacity='1' data-original='%23848484' class='hovered-path'%3E%3C/path%3E%3Cpath d='M41.4 5.5h-6.2v4.9c.7.5 1.2 1.3 1.2 2.2 0 1.5-1.2 2.7-2.7 2.7S31 14.1 31 12.6c0-.9.5-1.7 1.2-2.2V5.5H15.9v4.9c.7.5 1.2 1.3 1.2 2.2 0 1.5-1.2 2.7-2.7 2.7s-2.7-1.2-2.7-2.7c0-.9.5-1.7 1.2-2.2V5.5H6.6C4.6 5.5 3 7.2 3 9.2v34.7c0 2 1.6 3.6 3.6 3.6h34.7c2 0 3.6-1.6 3.6-3.6V9.2c.1-2-1.5-3.7-3.5-3.7zm.6 38.4c0 .3-.3.6-.6.6H6.6c-.3 0-.6-.3-.6-.6V19.5h36z' fill='%23848484' opacity='1' data-original='%23848484' class='hovered-path'%3E%3C/path%3E%3Cpath d='M35.1 2c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5v3.5h3zM15.9 2c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5v3.5h3z' fill='%23848484' opacity='1' data-original='%23848484' class='hovered-path'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 25px;
}

body.body-franchise-page .instagram-section {
    padding-top: 90px;
}

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .enquire-section {
        padding: 5.208vw 0.000vw;
    }

    .enquire-section .enquire-section_main-wrapper .heading h3 {
        font-size: 3.021vw;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form {
        margin-top: 2.604vw;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper {
        gap: 0.729vw 0.938vw;
    }

    /* Text + checkmark container */
    .enquire-section .check-wrapper .wpcf7-list-item-label {
        gap: 0.625vw;
    }

    /* Custom box */
    .enquire-section .check-wrapper .checkmark {
        width: 1.771vw;
        height: 1.771vw;
        border-radius: 0.313vw;
    }

    /* Tick style */
    .enquire-section .check-wrapper .checkmark::after {
        left: 0.573vw;
        top: 0.313vw;
        width: 0.365vw;
        height: 0.729vw;
        border-width: 0 0.156vw 0.156vw 0;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form .check-wrapper p {
        font-size: 1.042vw;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form .wpcf7-form input.submit-btn {
        font-size: 1.458vw;
        padding: 0.729vw 3.073vw;
        border-radius: 0.625vw;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input {
        font-size: 1.458vw;
        padding: 1.094vw 1.198vw;
        border-radius: 0.729vw;
    }

    body.body-franchise-page .instagram-section {
        padding-top: 4.688vw;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input.hasDatepicker {
        background-position: right 0.833vw center;
        background-repeat: no-repeat;
        background-size: 1.302vw;
    }
}

@media only screen and (max-width: 991px) {
    .enquire-section {
        padding: 70px 0px;
    }

    .enquire-section .enquire-section_main-wrapper .heading h3 {
        font-size: 46px;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input {
        font-size: 18px;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form .check-wrapper p {
        font-size: 18px;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form .wpcf7-form input.submit-btn {
        font-size: 18px;
        padding: 14px 40px;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form .check-wrapper .checkmark::before,
    .enquire-section .check-wrapper .checkmark {
        width: 30px;
        height: 30px;
    }

    .enquire-section .check-wrapper .checkmark::after {
        top: 5px;
        width: 6px;
        height: 12px;
    }

    body.body-franchise-page .instagram-section {
        padding-top: 22px;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input.hasDatepicker {
        background-size: 20px;
    }
}

@media only screen and (max-width: 580px) {
    .enquire-section {
        padding: 37px 0px 45px;
    }

    .enquire-section .enquire-section_main-wrapper .heading h3 {
        /* font-size: 20px; */
        font-size: 30px;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input {
        font-size: 12px;
        /* padding: 11px 10px; */
        padding: 14px 10px 8px;
        border-radius: 6px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -ms-border-radius: 6px;
        -o-border-radius: 6px;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form .check-wrapper p {
        font-size: 12px;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form .wpcf7-form input.submit-btn {
        font-size: 12px;
        /* padding: 10px 34px; */
        padding: 12px 34px 8px;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form .check-wrapper .checkmark::before,
    .enquire-section .enquire-section_main-wrapper .enquire-form .check-wrapper .checkmark {
        width: 16px;
        height: 16px;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form .check-wrapper .custom-checkbox {
        gap: 10px;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form {
        margin-top: 23px;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form .check-wrapper {
        margin: 11px 0px;
    }

    body.body-franchise-page .instagram-section {
        padding-top: 28px;
    }

    .enquire-section .check-wrapper .checkmark::after {
        top: 3px;
        width: 3px;
        height: 6px;
        left: 5px;
        border-width: 0 2px 2px 0;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input.hasDatepicker {
        background-position: right 10px center;
        background-size: 14px;
    }
}

/* Enquire Section CSS End Here*/

/* Franchise Page CSS End Here*/

body.body-cms-page .terms-section {
    background-color: var(--bg-gray);
}

.terms-section .terms-section_wrapper {
    padding: 130px 0px 95px;
}

.terms-section_wrapper .date-info p {
    font-family: var(--font-itcavantgarde-medium);
    font-size: 28px;
    line-height: 1.23;
    text-align: left;
    font-weight: 400;
    color: var(--text-dark)
}

.terms-section_wrapper .terms-detail {
    margin-top: 40px;
}

.terms-section_wrapper .terms-detail h6,
.terms-section_wrapper .terms-detail p {
    font-family: var(--font-itcavantgarde-medium);
    font-size: 28px;
    line-height: 1.23;
    text-align: left;
    font-weight: 400;
    color: var(--text-dark);
    padding-bottom: 40px;
}

.terms-section_wrapper .terms-detail p:last-child {
    padding-bottom: 0px;
}

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .terms-section .terms-section_wrapper {
        padding: 6.771vw 0.000vw 4.948vw;
    }

    .terms-section_wrapper .date-info p {
        font-size: 1.458vw;
    }

    .terms-section_wrapper .terms-detail {
        margin-top: 2.083vw;
    }

    .terms-section_wrapper .terms-detail h6,
    .terms-section_wrapper .terms-detail p {
        font-size: 1.458vw;
        padding-bottom: 2.083vw;
    }
}

@media only screen and (max-width: 991px) {
    .terms-section .terms-section_wrapper {
        padding: 70px 0px;
    }

    .terms-section_wrapper .date-info p,
    .terms-section_wrapper .terms-detail h6,
    .terms-section_wrapper .terms-detail p {
        font-size: 22px;
    }

    .terms-section_wrapper .terms-detail h6,
    .terms-section_wrapper .terms-detail p {
        padding-bottom: 25px;
    }
}

@media only screen and (max-width: 580px) {
    .terms-section .terms-section_wrapper {
        padding: 32px 0px 26px;
    }

    .terms-section_wrapper .terms-detail {
        margin-top: 12px;
    }

    .terms-section_wrapper .date-info p,
    .terms-section_wrapper .terms-detail h6,
    .terms-section_wrapper .terms-detail p {
        font-size: 12px;
    }

    .terms-section_wrapper .terms-detail h6,
    .terms-section_wrapper .terms-detail p {
        padding-bottom: 6px;
    }
}

/* News Section start CSS */
.news-section {
    width: 100%;
    padding: 87px 0px 90px;
    background-color: var(--bg-gray);
}

.news__nav {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 24px;
}

.news-section .news__nav h2 {
    font-family: var(--font-fatfrank);
    font-size: 50px;
    line-height: 0.96;
    text-transform: uppercase;
    color: var(--text-dark);
}

.news__content {
    /* display: flex; */
    /* justify-content: flex-start; */
    /* margin: 0 -16px; */

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 78px;
}

.news__box-wrapper {
    /* max-width: 33.33%; */
    width: 100%;
    /* padding: 0 16px; */
}

.news__box {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    background-color: var(--bg-white);
}

.news__box-media {
    width: 100%;
    position: relative;
    padding-bottom: 66.14%;
    margin: 0;
}

.news__box-media img,
.news__box-media video,
.news__box-media iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news__box-content {
    width: 100%;
    padding: 34px 34px 40px 34px;
}

.news__box-title {
    font-family: var(--font-fatfrank);
    font-size: 34px;
    line-height: 1.05;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.news__box-desc {
    font-size: 27px;
    font-family: var(--font-itcavantgarde-medium);
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.news__box-content .news__box-button {
    display: block;
    max-width: 52px;
    width: 100%;
    height: 52px;
}

.news__box-content .news__box-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news__nav-form {
    width: 72%;
}

.news__nav-form .filter-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 30px;
}

.news__nav-form .filter-wrapper input.date-filter,
.news__nav-form .filter-wrapper select.sort-by-filter {
    font-family: var(--font-itcavantgarde);
    font-size: 22px;
    line-height: 1;
    background-color: var(--bg-white);
    color: var(--text-gray);
    padding: 16px 20px;
    border: none;
    outline: none;
    cursor: pointer;
    max-width: 318px;
    position: relative;
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

/* .news__nav-form .filter-wrapper input.date-filter[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
} */

.news__nav-form .filter-wrapper select.sort-by-filter {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.news__nav-form .filter-wrapper select.sort-by-filter {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='512' height='512' x='0' y='0' viewBox='0 0 451.847 451.847' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cpath d='M225.923 354.706c-8.098 0-16.195-3.092-22.369-9.263L9.27 151.157c-12.359-12.359-12.359-32.397 0-44.751 12.354-12.354 32.388-12.354 44.748 0l171.905 171.915 171.906-171.909c12.359-12.354 32.391-12.354 44.744 0 12.365 12.354 12.365 32.392 0 44.751L248.292 345.449c-6.177 6.172-14.274 9.257-22.369 9.257z' fill='%23848484' opacity='1' data-original='%23848484' class=''%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    /* background-position: right 8px center; */
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.news__nav-form .filter-wrapper input.date-filter {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='512' height='512' x='0' y='0' viewBox='0 0 48 48' style='enable-background:new 0 0 512 512' xml:space='preserve' class='hovered-paths'%3E%3Cg%3E%3Cpath d='M9.8 30.5h5.3c.8 0 1.5-.7 1.5-1.5v-5.3c0-.8-.7-1.5-1.5-1.5H9.8c-.8 0-1.5.7-1.5 1.5V29c0 .8.7 1.5 1.5 1.5zM9.8 41.8h5.3c.8 0 1.5-.7 1.5-1.5V35c0-.8-.7-1.5-1.5-1.5H9.8c-.8 0-1.5.7-1.5 1.5v5.3c0 .9.7 1.5 1.5 1.5zM21.3 30.5h5.3c.8 0 1.5-.7 1.5-1.5v-5.3c0-.8-.7-1.5-1.5-1.5h-5.3c-.8 0-1.5.7-1.5 1.5V29c0 .8.7 1.5 1.5 1.5zM21.3 41.8h5.3c.8 0 1.5-.7 1.5-1.5V35c0-.8-.7-1.5-1.5-1.5h-5.3c-.8 0-1.5.7-1.5 1.5v5.3c0 .9.7 1.5 1.5 1.5zM32.9 30.5h5.3c.8 0 1.5-.7 1.5-1.5v-5.3c0-.8-.7-1.5-1.5-1.5h-5.3c-.8 0-1.5.7-1.5 1.5V29c0 .8.6 1.5 1.5 1.5zM32.9 41.8h5.3c.8 0 1.5-.7 1.5-1.5V35c0-.8-.7-1.5-1.5-1.5h-5.3c-.8 0-1.5.7-1.5 1.5v5.3c0 .9.6 1.5 1.5 1.5z' fill='%23848484' opacity='1' data-original='%23848484' class='hovered-path'%3E%3C/path%3E%3Cpath d='M41.4 5.5h-6.2v4.9c.7.5 1.2 1.3 1.2 2.2 0 1.5-1.2 2.7-2.7 2.7S31 14.1 31 12.6c0-.9.5-1.7 1.2-2.2V5.5H15.9v4.9c.7.5 1.2 1.3 1.2 2.2 0 1.5-1.2 2.7-2.7 2.7s-2.7-1.2-2.7-2.7c0-.9.5-1.7 1.2-2.2V5.5H6.6C4.6 5.5 3 7.2 3 9.2v34.7c0 2 1.6 3.6 3.6 3.6h34.7c2 0 3.6-1.6 3.6-3.6V9.2c.1-2-1.5-3.7-3.5-3.7zm.6 38.4c0 .3-.3.6-.6.6H6.6c-.3 0-.6-.3-.6-.6V19.5h36z' fill='%23848484' opacity='1' data-original='%23848484' class='hovered-path'%3E%3C/path%3E%3Cpath d='M35.1 2c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5v3.5h3zM15.9 2c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5v3.5h3z' fill='%23848484' opacity='1' data-original='%23848484' class='hovered-path'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 20px;
}

.news__nav-form .filter-wrapper button.filter-btn,
.news__nav-form .filter-wrapper button.reset-btn-filter {
    font-family: var(--font-itcavantgarde-medium);
    font-size: 27px;
    /* font-size: 29px; */
    line-height: 1.1;
    color: var(--text-white);
    text-transform: capitalize;
    background-color: var(--bg-primary);
    /* padding: 12px 45px 13px; */
    padding: 12px 45px 11px;
    border: 1px solid transparent;
    outline: none;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.4s all ease-in-out;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-transition: 0.4s all ease-in-out;
    -moz-transition: 0.4s all ease-in-out;
    -ms-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
}

.news__nav-form .filter-wrapper button.filter-btn:hover,
.news__nav-form .filter-wrapper button.reset-btn-filter:hover {
    color: var(--text-red);
    background-color: transparent;
    border-color: var(--bg-primary);
}

body.body-news-page .instagram-section {
    padding-top: 90px;
}

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .news-section {
        padding: 4.531vw 0.000vw 4.688vw;
    }

    .news__nav {
        gap: 1.250vw;
    }

    .news-section .news__nav h2 {
        font-size: 2.604vw;
    }

    .news__content {
        /* margin: 0 -0.833vw; */
        margin-top: 4.063vw;
        gap: 1.563vw;
    }

    .news__box {
        border-radius: 1.563vw;
    }

    .news__box-content {
        padding: 1.771vw 1.771vw 2.083vw 1.771vw;
    }

    .news__box-title {
        font-size: 1.771vw;
        margin-bottom: 0.938vw;
    }

    .news__box-desc {
        font-size: 1.406vw;
        margin-bottom: 0.938vw;
    }

    .news__box-content .news__box-button {
        max-width: 2.708vw;
        height: 2.708vw;
    }

    .news__nav-form .filter-wrapper {
        gap: 1.563vw;
    }

    .news__nav-form .filter-wrapper input.date-filter,
    .news__nav-form .filter-wrapper select.sort-by-filter {
        font-size: 1.146vw;
        padding: 0.833vw 1.042vw;
        max-width: 16.563vw;
        border-radius: 0.521vw;
    }

    .news__nav-form .filter-wrapper select.sort-by-filter {
        background-size: 0.833vw;
        background-position: right 0.833vw center;
    }

    .news__nav-form .filter-wrapper input.date-filter {
        background-position: right 0.833vw center;
        background-size: 1.042vw;
    }

    .news__nav-form .filter-wrapper button.filter-btn,
    .news__nav-form .filter-wrapper button.reset-btn-filter {
        /* font-size: 1.510vw; */
        font-size: 1.146vw;
        /* padding: 0.625vw 2.344vw 0.677vw; */
        padding: 0.625vw 2.344vw 0.573vw;
        border: 0.052vw solid transparent;
        border-radius: 0.521vw;
    }

    body.body-news-page .instagram-section {
        padding-top: 4.688vw;
    }
}

@media only screen and (max-width: 991px) {
    .news-section {
        padding: 70px 0px;
    }

    .news__nav {
        flex-direction: column;
    }

    .news__nav-form {
        width: 100%;
    }

    .news__nav-form .filter-wrapper {
        justify-content: center;
        flex-wrap: wrap;
    }

    .news__nav-form .filter-wrapper button.filter-btn
    .news__nav-form .filter-wrapper button.reset-btn-filter {
        font-size: 22px;
        padding: 12px 32px 10px;
    }

    .news__box-content {
        padding: 20px;
    }

    .news__box-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .news__box-desc {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .news__box-content .news__box-button {
        max-width: 35px;
        height: 35px;
    }

    .news__box-media {
        padding-bottom: 70%;
    }

    /* .news__box-wrapper {
        padding: 0 8px;
    } */

    .news__content {
        margin-top: 50px;
        gap: 16px;
    }

    .news__box {
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
    }

    body.body-news-page .instagram-section {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 680px) {
    .news-section .news__nav h2 {
        font-size: 18px;
    }

    .news-section {
        padding: 28px 0px;
    }

    .news__nav-form .filter-wrapper {
        gap: 10px;
    }

    .news__nav-form .filter-wrapper input.date-filter,
    .news__nav-form .filter-wrapper select.sort-by-filter {
        font-size: 12px;
        max-width: 48%;
        /* padding: 10px; */
        /* margin: 0px;
        line-height: 1.1;
        padding: 11px 10px 9px; */
        margin: 0px;
        line-height: 1.1;
        padding: 11px 10px 9px;
        border-radius: 6px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -ms-border-radius: 6px;
        -o-border-radius: 6px;
    }

    .news__nav-form .filter-wrapper select.sort-by-filter {
        background-size: 10px;
        background-position: right 12px center;
    }

    .news__nav-form .filter-wrapper input.date-filter {
        background-size: 14px;
        background-position: right 12px center;
    }

    .news__nav-form .filter-wrapper button.filter-btn,
    .news__nav-form .filter-wrapper button.reset-btn-filter  {
        font-size: 12px;
        /* padding: 8px 17px 7px; */
        padding: 9px 17px 6px;
        border-radius: 6px;
    }

    .news__content {
        margin: 22px 0px 0px;
        /* flex-direction: column; */
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
/* 
    .news__box-wrapper {
        max-width: 100%;
        padding: 0px;
    } */

    .news__box-media {
        padding-bottom: 35.94%;
    }

    .news__box-content {
        padding: 16px;
    }

    .news__box-title {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .news__box {
        border-radius: 12px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        -ms-border-radius: 12px;
        -o-border-radius: 12px;
    }

    .news__box-content .news__box-button {
        max-width: 30px;
        height: 30px;
    }

    .news__nav {
        gap: 12px;
    }

    body.body-news-page .instagram-section {
        padding-top: 25px;
    }
}

/* News Section end CSS */

/* News Inner Page CSS Start Here*/

.news-inner-section {
    background-color: var(--bg-gray);
    padding: 122px 0px 105px;
}

.news-inner-section .news-inner_main-wrapper {
    display: flex;
    justify-content: start;
    /* gap: 70px; */
    gap: 68px;
}

.news-inner-section .news-inner_main-wrapper .news-content_wrapper {
    max-width: 62.677%;
    width: 100%;
}

.news-inner-section .app-section {
    max-width: 34.072%;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    position: sticky;
    top: 20px;
    height: fit-content;
}

.news-inner-section .news-inner_main-wrapper .news-content_wrapper h2 {
    font-size: 58px;
    font-family: var(--font-fatfrank);
    line-height: 0.96;
    text-transform: uppercase;
    color: var(--text-dark);
    max-width: 65%;
    width: 100%;
    margin-bottom: 40px;
}

.news-inner-section .news-inner_main-wrapper .news-content_wrapper p {
    font-size: 28px;
    font-family: var(--font-itcavantgarde-medium);
    line-height: 1.23;
    color: var(--text-dark);
    margin-bottom: 38px;
}

.news-inner-section .news-inner_main-wrapper .news-content_wrapper p:last-child {
    margin-bottom: 0px;
}

.news-inner-section .news-inner_main-wrapper .news-content_wrapper img {
    margin: 60px 0px;
    width: 100%;
    /* height: 460px; */
    height: 463px;
    object-fit: cover;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}

.news-inner-section .app-section .app-section_overlay {
    /* padding-bottom: 129.8%; */
    padding-bottom: 129.526%;
}

.news-inner-section .app-section .app-section_bottom-img {
    position: absolute;
    bottom: 0;
    display: flex;
    right: 0;
    max-width: 495px;
    width: 100%;
    padding-bottom: 79%;
}

.news-inner-section .app-section .app-section_bottom-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
}

.news-inner-section .app-section .app-section_content-wrapper .heading h2 {
    font-size: 76px;
    line-height: 0.973;
}

.news-inner-section .app-section .app-section_content-wrapper {
    max-width: 70%;
    top: 74px;
    left: 62px;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}

.news-inner-section .app-section .app-section_content-wrapper .desc p {
    margin-top: 26px;
    margin-bottom: 36px;
    font-size: 24px;
    font-family: var(--font-itcavantgarde-medium);
}

.news-inner-section .app-section .app-section_content-wrapper .download_app {
    gap: 11px;
}

.news-inner-section .app-section .app-section_content-wrapper .download_app a img {
    max-width: 260px;
}

body.body-news-inner-page .instagram-section {
    padding-top: 85px;
}

body.body-news-inner-page section.app-section {
    display: none;
}

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .news-inner-section {
        padding: 6.354vw 0.000vw 5.469vw;
    }

    .news-inner-section .news-inner_main-wrapper {
        /* gap: 3.646vw; */
        gap: 3.542vw;
    }

    .news-inner-section .app-section {
        border-radius: 0.938vw;
    }

    .news-inner-section .news-inner_main-wrapper .news-content_wrapper h2 {
        font-size: 3.021vw;
        margin-bottom: 2.083vw;
    }

    .news-inner-section .news-inner_main-wrapper .news-content_wrapper p {
        font-size: 1.458vw;
        margin-bottom: 1.979vw;
    }

    .news-inner-section .news-inner_main-wrapper .news-content_wrapper img {
        margin: 3.125vw 0.000vw;
        /* height: 23.958vw; */
        height: 24.115vw;
        border-radius: 1.250vw;
    }

    .news-inner-section .app-section .app-section_bottom-img {
        max-width: 25.781vw;
        width: 100%;
        padding-bottom: 79%;
    }

    .news-inner-section .app-section .app-section_content-wrapper .heading h2 {
        font-size: 3.958vw;
    }

    .news-inner-section .app-section .app-section_content-wrapper {
        max-width: 70%;
        top: 3.854vw;
        left: 3.229vw;
    }

    .news-inner-section .app-section .app-section_content-wrapper .desc p {
        margin-top: 1.354vw;
        margin-bottom: 1.875vw;
        font-size: 1.250vw;
    }

    .news-inner-section .app-section .app-section_content-wrapper .download_app {
        gap: 0.573vw;
    }

    .news-inner-section .app-section .app-section_content-wrapper .download_app a img {
        max-width: 13.542vw;
    }

    body.body-news-inner-page .instagram-section {
        padding-top: 4.427vw;
    }
}

@media only screen and (max-width: 991px) {
    .news-inner-section .news-inner_main-wrapper {
        display: block;
    }

    .news-inner-section .news-inner_main-wrapper .news-content_wrapper {
        max-width: 100%;
    }

    .news-inner-section .app-section {
        display: none;
    }

    body.body-news-inner-page section.app-section {
        display: block;
    }

    .news-inner-section {
        padding: 70px 0px;
    }

    .news-inner-section .news-inner_main-wrapper .news-content_wrapper h2 {
        font-size: 46px;
        max-width: 82%;
        margin-bottom: 25px;
    }

    .news-inner-section .news-inner_main-wrapper .news-content_wrapper p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .news-inner-section .news-inner_main-wrapper .news-content_wrapper img {
        margin: 30px 0px;
    }

    body.body-news-inner-page .instagram-section {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 680px) {
    .news-inner-section {
        padding: 30px 0px;
    }

    .news-inner-section .news-inner_main-wrapper .news-content_wrapper h2 {
        font-size: 18px;
        max-width: 70%;
        margin-bottom: 11px;
    }

    .news-inner-section .news-inner_main-wrapper .news-content_wrapper p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .news-inner-section .news-inner_main-wrapper .news-content_wrapper img {
        margin: 18px 0px;
        height: 142px;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }

    body.body-news-inner-page .instagram-section {
        padding-top: 24px;
    }
}

/* News Inner Page CSS End Here*/


/* Safari All Padding Issue Resolve CSS Start Here */

body.browser-safari .header__bottom .header__nav>.nav_list .nav_item {
    padding: 36px 0px 24px;
}

body.browser-safari .header__bottom .nav_list .nav_item:last-child a {
    padding: 14px 28px 4px 29px;
}

body.browser-safari .cta-top_card-wrapper .card-main_wrapper a {
    padding: 17px 30px 8px 29px;
}

body.browser-safari .cta-section .cta-bottom_card-wrapper .desc_content a {
    padding: 17px 30px 8px 29px;
}

body.browser-safari .more-info_top-wrapper .slider-card .slider-card_content-wrapper a {
    padding: 16px 26px 7px 26px;
}

body.browser-safari .instagram_top-wrapper .instagram-content_wrapper .ac-follow-btn a {
    padding: 17px 16px 11px;
}

body.browser-safari .story-section_left-content-wrapper .explore-btn a {
    padding: 16px 22px 10px;
}

body.browser-safari .post-code_search-bar .post-code_search-bar-wrapper button {
    padding: 12px 16px 4px;
}

body.browser-safari .work-section .work-section_content-wrapper .apply-btn a {
    padding: 15px 28px 11px;
}

body.browser-safari .more-info_bottom-wrapper .email_search-bar-wrapper input.newsletter-submit-button {
    /* padding: 11px 16px 5px; */
    padding: 15px 30px 8px 31px;
}

body.browser-safari .enquire-section .enquire-section_main-wrapper .enquire-form .wpcf7-form input.submit-btn {
    padding: 17px 59px 11px;
}

body.browser-safari .banner-heading-section .banner-heading-btn a {
    /* padding: 14px 28px 9px; */
    padding: 17px 28px 12px;
}

body.browser-safari .news__nav-form .filter-wrapper button.filter-btn,
body.browser-safari .news__nav-form .filter-wrapper button.reset-btn-filter  {
    padding: 17px 48px 8px;
}

body.browser-safari .news-section .load-more-wrapper button {
    padding: 16px 48px 9px;
}

body.browser-safari .work-section_content-wrapper .email-main_wrapper input.newsletter-submit-button {
    padding: 15px 22px 6px;
}

body.browser-safari .enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input {
    padding: 25px 23px 17px;
}

body.browser-safari .post-code_search-bar .post-code_search-bar-wrapper input,
body.browser-safari .more-info_bottom-wrapper .email_search-bar-wrapper input {
    padding-top: 10px;
}

/* body.browser-safari .work-section_content-wrapper .email-main_wrapper input {
    padding-top: 10px;
} */


@media only screen and (max-width: 1919px) and (min-width: 992px) {
    body.browser-safari .header__bottom .header__nav>.nav_list .nav_item {
        padding: 1.875vw 0.000vw 1.250vw;
    }

    body.browser-safari .header__bottom .nav_list .nav_item:last-child a {
        padding: 0.729vw 1.458vw 0.208vw 1.510vw;
    }

    body.browser-safari .cta-top_card-wrapper .card-main_wrapper a {
        padding: 0.885vw 1.563vw 0.417vw 1.510vw;
    }

    body.browser-safari .cta-section .cta-bottom_card-wrapper .desc_content a {
        padding: 0.885vw 1.563vw 0.417vw 1.510vw;
    }

    body.browser-safari .more-info_top-wrapper .slider-card .slider-card_content-wrapper a {
        padding: 0.833vw 1.354vw 0.365vw 1.354vw;
    }

    body.browser-safari .instagram_top-wrapper .instagram-content_wrapper .ac-follow-btn a {
        padding: 0.885vw 0.833vw 0.573vw;
    }

    body.browser-safari .story-section_left-content-wrapper .explore-btn a {
        padding: 0.833vw 1.146vw 0.521vw;
    }

    body.browser-safari .post-code_search-bar .post-code_search-bar-wrapper button {
        padding: 0.625vw 0.833vw 0.208vw;
    }

    body.browser-safari .work-section .work-section_content-wrapper .apply-btn a {
        padding: 0.781vw 1.458vw 0.573vw;
    }

    body.browser-safari .more-info_bottom-wrapper .email_search-bar-wrapper input.newsletter-submit-button {
        /* padding: 0.573vw 0.833vw 0.260vw; */
        padding: 0.781vw 1.563vw 0.417vw 1.615vw;
    }

    body.browser-safari .enquire-section .enquire-section_main-wrapper .enquire-form .wpcf7-form input.submit-btn {
        padding: 0.885vw 3.073vw 0.573vw;
    }

    body.browser-safari .banner-heading-section .banner-heading-btn a {
        /* padding: 0.729vw 1.458vw 0.469vw; */
        padding: 0.885vw 1.458vw 0.625vw;
    }

    body.browser-safari .news__nav-form .filter-wrapper button.filter-btn
    body.browser-safari .news__nav-form .filter-wrapper button.reset-btn-filter {
        padding: 0.885vw 2.500vw 0.417vw;
    }

    body.browser-safari .news-section .load-more-wrapper button {
        padding: 0.833vw 2.500vw 0.469vw;
    }
    
    body.browser-safari .work-section_content-wrapper .email-main_wrapper input.newsletter-submit-button {
        padding: 0.781vw 1.146vw 0.313vw;
    }

    body.browser-safari .enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input {
        padding: 1.302vw 1.198vw 0.885vw;
    }

    body.browser-safari .post-code_search-bar .post-code_search-bar-wrapper input,
    body.browser-safari .more-info_bottom-wrapper .email_search-bar-wrapper input {
        padding-top: 0.521vw;
    }

    /* body.browser-safari .work-section_content-wrapper .email-main_wrapper input {
        padding-top: 0.521vw;
    } */
}

@media only screen and (max-width: 991px) {
    body.browser-safari .header__bottom .header__nav>.nav_list .nav_item {
        padding: 20px 0px 19px;
    }

    body.browser-safari .header__bottom .nav_list .nav_item:last-child a {
        padding: 12px 28px 7px 29px;
    }

    body.browser-safari .cta-top_card-wrapper .card-main_wrapper a {
        padding: 17px 30px 8px 29px;
    }

    body.browser-safari .cta-section .cta-bottom_card-wrapper .desc_content a {
        padding: 16px 30px 8px 29px;
    }

    body.browser-safari .more-info_top-wrapper .slider-card .slider-card_content-wrapper a {
        padding: 14px 20px 7px 20px;
    }

    body.browser-safari .instagram_top-wrapper .instagram-content_wrapper .ac-follow-btn a {
        padding: 17px 16px 11px;
    }

    body.browser-safari .story-section_left-content-wrapper .explore-btn a {
        padding: 16px 22px 10px;
    }

    body.browser-safari .post-code_search-bar .post-code_search-bar-wrapper button {
        padding: 12px 16px 4px;
    }

    body.browser-safari .work-section .work-section_content-wrapper .apply-btn a {
        padding: 12px 25px 8px;
    }

    body.browser-safari .banner-bottom-content .banner-bottom-content-wrapper a {
        padding: 8px 12px 2px;
    }

    body.browser-safari .more-info_bottom-wrapper .email_search-bar-wrapper input.newsletter-submit-button {
        padding: 11px 16px 5px;
    }

    body.browser-safari .enquire-section .enquire-section_main-wrapper .enquire-form .wpcf7-form input.submit-btn {
        padding: 16px 40px 11px;
    }

    body.browser-safari .banner-heading-section .banner-heading-btn a {
        padding: 14px 22px 9px;
    }

    body.browser-safari .news__nav-form .filter-wrapper button.filter-btn,
    body.browser-safari .news__nav-form .filter-wrapper button.reset-btn-filter {
        padding: 14px 32px 8px;
    }

    body.browser-safari .news-section .load-more-wrapper button {
        padding: 9px 17px 6px;
    }

    body.browser-safari .work-section_content-wrapper .email-main_wrapper input.newsletter-submit-button {
        padding: 8px 14px 5px;
    }

    body.browser-safari .enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input {
        padding: 25px 23px 17px;
    }
}

@media only screen and (max-width: 767px) {
    body.browser-safari .header_hamburger-menu .mobile-hamburger_nav .mobile_header_nav .mobile_nav_item:last-child a {
        padding: 8px 12px 2px;
    }
}

@media only screen and (max-width: 580px) {
    body.browser-safari .cta-top_card-wrapper .card-main_wrapper a {
        padding: 8px 12px 4px 11px;
    }

    body.browser-safari .cta-section .cta-bottom_card-wrapper .desc_content a {
        padding: 9px 12px 5px;
    }

    body.browser-safari .more-info_top-wrapper .slider-card .slider-card_content-wrapper a {
        padding: 7px 12px 3px 12px;
    }

    body.browser-safari .instagram_top-wrapper .instagram-content_wrapper .ac-follow-btn a {
        padding: 9px 12px 5px;
    }

    body.browser-safari .story-section_left-content-wrapper .explore-btn a {
        padding: 8px 10px 4px;
    }

    body.browser-safari .post-code_search-bar .post-code_search-bar-wrapper button {
        padding: 10px 16px 6px;
    }

    body.browser-safari .work-section .work-section_content-wrapper .apply-btn a {
        padding: 12px 25px 8px;
    }

    body.browser-safari .banner-bottom-content .banner-bottom-content-wrapper a {
        padding: 7px 12px 3px;
    }

    body.browser-safari .more-info_bottom-wrapper .email_search-bar-wrapper input.newsletter-submit-button {
        padding: 7px 16px 3px;
        /* padding: 15px 30px 8px 31px; */
    }

    body.browser-safari .enquire-section .enquire-section_main-wrapper .enquire-form .wpcf7-form input.submit-btn {
        padding: 12px 34px 8px;
    }

    body.browser-safari .banner-heading-section .banner-heading-btn a {
        padding: 11px 10px 8px;
    }

    body.browser-safari .news__nav-form .filter-wrapper button.filter-btn,
    body.browser-safari .news__nav-form .filter-wrapper button.reset-btn-filter {
        padding: 10px 17px 5px;
    }

    body.browser-safari .news-section .load-more-wrapper button {
        padding: 10px 17px 5px;
    }

    body.browser-safari .work-section_content-wrapper .email-main_wrapper input.newsletter-submit-button {
        padding: 8px 10px 5px;
    }

    body.browser-safari .enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input {
        padding: 13px 10px 9px;
    }

    body.browser-safari .enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input[type="date"] {
        width: 100%;
        min-width: 100%;
    }

    body.browser-safari .enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input[type="date"]::-webkit-date-and-time-value {
        text-align: start;
        inline-size: auto;
    } 

    body.browser-safari .enquire-section .enquire-section_main-wrapper .enquire-form .wpcf7-form .form-input_wrapper div {
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        border-radius: 6px;
    }

    body.browser-safari .post-code_search-bar .post-code_search-bar-wrapper input,
    body.browser-safari .more-info_bottom-wrapper .email_search-bar-wrapper input {
        padding-top: 5px;
    }

    /* body.browser-safari .work-section_content-wrapper .email-main_wrapper input {
        padding-top: 5px;
    } */
}

/* Safari All Padding Issue Resolve CSS End Here */

/* UI CHanges 22-04-2026 Start Here*/

.more-info_bottom-main-wrapper .more-info_bottom-wrapper .email_search-bar-wrapper .wpcf7-form {
    display: flex;
    gap: 8px;
}

.more-info_bottom-main-wrapper .more-info_bottom-wrapper .email_search-bar-wrapper {
    position: relative;
}

.more-info_bottom-main-wrapper .more-info_bottom-wrapper .email_search-bar-wrapper .wpcf7-form .wpcf7-response-output {
    position: absolute;
    bottom: -25px;
    left: 15px;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-family: var(--font-itcavantgarde-medium);
}

.more-info_bottom-main-wrapper .more-info_bottom-wrapper .email_search-bar-wrapper .wpcf7-form .wpcf7-not-valid-tip {
    font-size: 14px;
    font-family: var(--font-itcavantgarde-medium);
    position: absolute;
    bottom: -25px;
    left: 5px;
}

.more-info_bottom-main-wrapper .more-info_bottom-wrapper .email_search-bar-wrapper .wpcf7-form .wpcf7-spinner {
    display: none;
}

.more-info_bottom-main-wrapper .more-info_bottom-wrapper .email_search-bar-wrapper .wpcf7-form div {
    display: flex;
    align-items: center;
}

.enquire-section .enquire-section_main-wrapper .enquire-form .wpcf7-form .form-input_wrapper div {
    position: relative;
}

.enquire-section .enquire-section_main-wrapper .enquire-form .wpcf7-form .form-input_wrapper .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -22px;
    left: 25px;
    font-size: 14px;
    font-family: var(--font-itcavantgarde-medium);
}

.enquire-section .enquire-section_main-wrapper .enquire-form .wpcf7 form.sent .wpcf7-response-output {
    border: none;
    color: #46b450;
    font-size: 18px;
    line-height: 1;
    font-family: var(--font-itcavantgarde);
    margin: 0px;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
    width: 100%;
}

.banner_section.banner-heading-section {
    padding-top: 0px;
}

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .more-info_bottom-main-wrapper .more-info_bottom-wrapper .email_search-bar-wrapper .wpcf7-form {
        gap: 0.417vw;
    }

    .more-info_bottom-main-wrapper .more-info_bottom-wrapper .email_search-bar-wrapper .wpcf7-form .wpcf7-response-output {
        bottom: -1.302vw;
        left: 0.781vw;
        font-size: 0.729vw;
    }

    .more-info_bottom-main-wrapper .more-info_bottom-wrapper .email_search-bar-wrapper .wpcf7-form .wpcf7-not-valid-tip {
        font-size: 0.729vw;
        bottom: -1.302vw;
        left: 0.260vw;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form .wpcf7-form .form-input_wrapper .wpcf7-not-valid-tip {
        bottom: -1.146vw;
        left: 1.302vw;
        font-size: 0.729vw;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form .wpcf7 form.sent .wpcf7-response-output {
        font-size: 0.938vw;
        bottom: -2.083vw;
    }
}

@media only screen and (max-width: 580px) {
    .more-info_bottom-main-wrapper .more-info_bottom-wrapper .email_search-bar-wrapper .wpcf7-form .wpcf7-not-valid-tip {
        font-size: 10px;
        bottom: -12px;
    }

    .more-info_bottom-wrapper .email_search-bar-wrapper input {
        padding: 0px;
    }

    .more-info_bottom-main-wrapper .more-info_bottom-wrapper .email_search-bar-wrapper .wpcf7-form .wpcf7-response-output {
        font-size: 10px;
        min-width: 250px;
        width: 100%;
        bottom: -18px;
        left: -5px;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form .wpcf7-form .form-input_wrapper .wpcf7-not-valid-tip {
        bottom: -12px;
        left: 10px;
        font-size: 10px;
    }

    .enquire-section .enquire-section_main-wrapper .enquire-form .wpcf7 form.sent .wpcf7-response-output {
        width: 100%;
        font-size: 14px;
        bottom: -30px;
    }
}

/* UI CHanges 22-04-2026 End Here*/

/* UI CHanges 23-04-2026 Start Here*/

.enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input::-webkit-datetime-edit-fields-wrapper {
    width: 100%;
}

.enquire-section .enquire-section_main-wrapper .enquire-form .check-wrapper .custom-checkbox .wpcf7-list-item {
    margin: 0px;
}

.enquire-section .enquire-section_main-wrapper .enquire-form .submit-btn p {
    position: relative;
}

.enquire-section .enquire-section_main-wrapper .enquire-form .submit-btn .wpcf7-spinner {
    margin: 0;
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
}

.news-section .load-more-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.news-section .load-more-wrapper button {
    font-family: var(--font-itcavantgarde-medium);
    font-size: 28px;
    line-height: 1;
    color: var(--text-white);
    text-transform: capitalize;
    background-color: var(--bg-primary);
    padding: 12px 45px 13px;
    border: 1px solid transparent;
    outline: none;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.4s all ease-in-out;
}

.news-section .load-more-wrapper button:hover {
    color: var(--text-red);
    background-color: transparent;
    border-color: var(--bg-primary);
}

.work-section .work-section_content-wrapper .email-main_wrapper .wpcf7-form {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}
.work-section .work-section_content-wrapper .email-main_wrapper .wpcf7-form > div {
    display: flex;
    align-items: center;
} 

.work-section .work-section_content-wrapper .email-main_wrapper {
    position: relative;
}

.work-section .work-section_content-wrapper .email-main_wrapper .wpcf7-form .wpcf7-spinner {
    position: absolute;
    right: -25px;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
}

.work-section .work-section_content-wrapper .email-main_wrapper .wpcf7-form .wpcf7-not-valid-tip {
    position: absolute;
    margin: 0;
    bottom: -22px;
    border: 0px;
    font-family: var(--font-itcavantgarde);
    font-size: 14px;
    left: 4px;
}

.work-section .work-section_content-wrapper .email-main_wrapper .wpcf7-form.init .wpcf7-response-output,
.work-section .work-section_content-wrapper .email-main_wrapper .wpcf7-form.submitting .wpcf7-response-output {
    display: none;
}

.work-section .work-section_content-wrapper .email-main_wrapper .wpcf7-form.failed .wpcf7-response-output {
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: -30px;
    font-family: var(--font-itcavantgarde);
    font-size: 18px;
}

.work-section .work-section_content-wrapper .email-main_wrapper .wpcf7-form.invalid .wpcf7-response-output {
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: -30px;
    font-family: var(--font-itcavantgarde);
    font-size: 18px;
}

.work-section .work-section_content-wrapper .email-main_wrapper .wpcf7 form.sent .wpcf7-response-output {
    border: none;
    color: #46b450;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: -30px;
    font-family: var(--font-itcavantgarde);
    font-size: 18px;
}

.news-section .no-posts {
    font-family: var(--font-itcavantgarde);
    font-size: 22px;
    line-height: 1;
    padding: 10px 0px;
}

.enquire-form .wpcf7-form.invalid .wpcf7-response-output {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    font-family: var(--font-itcavantgarde);
    font-size: 16px;
    margin: 0px;
}


@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .news-section .load-more-wrapper {
        margin-top: 1.563vw;
    }

    .news-section .load-more-wrapper button {
        font-size: 1.458vw;
        padding: 0.625vw 2.344vw 0.677vw;
        border: 0.052vw solid transparent;
        border-radius: 0.521vw;
    }

    .work-section .work-section_content-wrapper .email-main_wrapper .wpcf7-form {
        gap: 0.417vw;
    }
 
    .work-section .work-section_content-wrapper .email-main_wrapper .wpcf7-form .wpcf7-spinner {
        right: -1.302vw;
    }

    .work-section .work-section_content-wrapper .email-main_wrapper .wpcf7-form .wpcf7-not-valid-tip {
        bottom: -1.146vw;
        font-size: 0.729vw;
        left: 0.208vw;
    }

    .news-section .no-posts {
        font-size: 1.146vw;
    }

    .enquire-form .wpcf7-form.invalid .wpcf7-response-output {
        bottom: -1.823vw;
        font-size: 0.833vw;
        margin: 0.000vw;
    }

    .work-section .work-section_content-wrapper .email-main_wrapper .wpcf7-form.failed .wpcf7-response-output {
        bottom: -1.563vw;
        font-size: 0.938vw;
    }

    .work-section .work-section_content-wrapper .email-main_wrapper .wpcf7-form.invalid .wpcf7-response-output {
        bottom: -1.563vw;
        font-size: 0.938vw;
    }

    .work-section .work-section_content-wrapper .email-main_wrapper .wpcf7 form.sent .wpcf7-response-output {
        bottom: -1.563vw;
        font-size: 0.938vw;
    }
}

@media only screen and (max-width: 991px) {
    .news-section .load-more-wrapper button {
        font-size: 18px;
        padding: 12px 28px 10px;
    }

    .work-section .work-section_content-wrapper .email-main_wrapper .wpcf7-form {
        flex-direction: column;
        align-items: center;
    }

    .news-section .news__content .no-posts  {
        text-align: center;
    }

    .enquire-form .wpcf7-form.invalid .wpcf7-response-output  {
        min-width: 425px;
     }

     .work-section .work-section_content-wrapper .email-main_wrapper .wpcf7-form .wpcf7-not-valid-tip {
        bottom: -12px;
        font-size: 10px;
        left: 15px;
}

     .work-section .work-section_content-wrapper .email-main_wrapper .wpcf7-form.invalid .wpcf7-response-output {
        font-size: 14px;
        bottom: -15px;
     }

     .work-section .work-section_content-wrapper .email-main_wrapper .wpcf7 form.sent .wpcf7-response-output {
        font-size: 11px;
        bottom: -25px;
        text-align: center;
    } 
}

@media only screen and (max-width: 767px) {
    .news-section .no-posts {
        font-size: 16px;
    }

    .work-section .work-section_content-wrapper .email-main_wrapper .wpcf7-form.invalid .wpcf7-response-output {
        font-size: 10px;
        width: 100%;
        bottom: -20px;
    }

    .work-section .work-section_content-wrapper .email-main_wrapper .wpcf7-form .wpcf7-not-valid-tip {
        bottom: -9px;
        font-size: 9px;
        left: 10px;
    }

}

@media only screen and (max-width: 580px) {
    .news-section .load-more-wrapper button {
        font-size: 12px;
        /* padding: 8px 17px 7px; */
        padding: 9px 17px 6px;
        border-radius: 6px;
    }

    .enquire-form .wpcf7-form.invalid .wpcf7-response-output  {
        font-size: 12px;
        margin: 0;
        min-width: 325px;
     }

    .enquire-section .enquire-section_main-wrapper .enquire-form .wpcf7-form .form-input_wrapper .wpcf7-not-valid-tip {
        min-width: 95px;
        width: 100%;
    }
}


/* No value */
.enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input[type="date"]::-webkit-datetime-edit-day-field,
.enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input[type="date"]::-webkit-datetime-edit-month-field,
.enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input[type="date"]::-webkit-datetime-edit-year-field,
.enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input[type="date"]::-webkit-datetime-edit-text {
    opacity: 0.55;
}

/* With value */
.enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input[type="date"].has-value::-webkit-datetime-edit-day-field,
.enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input[type="date"].has-value::-webkit-datetime-edit-month-field,
.enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input[type="date"].has-value::-webkit-datetime-edit-year-field,
.enquire-section .enquire-section_main-wrapper .enquire-form .form-input_wrapper input[type="date"].has-value::-webkit-datetime-edit-text  {
    opacity: 1;
}

/* UI CHanges 23-04-2026 End Here*/

/* UI changes 24-04-2026 Start Here*/

/*404 Not Found Page CSS Start Here*/

.not-found_section {
    background-color: var(--bg-white);
}

.not-found_section .not-found_main-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.not-found_section .not-found_main-wrapper .content_wrapper,
.not-found_section .not-found_main-wrapper .image_main-wrapper {
    max-width: 50%;
    width: 100%;
}

.not-found_section .not-found_main-wrapper .content_wrapper {
        padding-left: 90px;
}

.not-found_section .not-found_main-wrapper .image_main-wrapper .img-wrapper {
    max-width: 100%;
    width: 100%;
    position: relative;
    padding-bottom: 96%;
}

.not-found_section .not-found_main-wrapper .image_main-wrapper .img-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.not-found_section .not-found_main-wrapper h1 {
    font-size: 100px;
    font-family: var(--font-fatfrank);
    line-height: 0.96;
    color: var(--text-dark);
    text-align: start;
    text-transform: capitalize;
    padding-bottom: 20px;
}

.not-found_section .not-found_main-wrapper h3 {
    font-size: 32px;
    font-family: var(--font-fatfrank);
    line-height: 1;
    color: var(--text-dark);
    text-align: start;
    text-transform: capitalize;
    padding-bottom: 30px;
}

.not-found_section .not-found_main-wrapper a {
    font-size: 16px;
    font-family: var(--font-itcavantgarde);
    line-height: 1;
    color: var(--text-white);
    display: block;
    border: 1px solid transparent;
    width: fit-content;
    background-color: var(--bg-primary);
    padding: 10px 20px;
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.not-found_section .not-found_main-wrapper a:hover {
    border-color: var(--bg-primary);
    color: var(--text-red);
    background-color: transparent;
}

body.browser-safari .not-found_section .not-found_main-wrapper a {
    padding: 12px 20px 8px;
}

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .not-found_section .not-found_main-wrapper .content_wrapper {
            padding-left: 4.688vw;
    }
}

@media only screen and (max-width: 991px) {
    .not-found_section .not-found_main-wrapper .content_wrapper {
        padding-left: 35px;
    }

    .not-found_section .not-found_main-wrapper h1 {
        font-size: 64px;
        padding-bottom: 10px;
    }

    .not-found_section .not-found_main-wrapper h3 {
        font-size: 22px;
        padding-bottom: 20px;
    }

    .not-found_section .not-found_main-wrapper a {
        font-size: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .not-found_section .not-found_main-wrapper {
        flex-direction: column;
    }

    .not-found_section .not-found_main-wrapper .content_wrapper,
    .not-found_section .not-found_main-wrapper .image_main-wrapper {
        max-width: 100%;
    }

    .not-found_section .not-found_main-wrapper .content_wrapper {
        padding: 110px 0px;
    }

    .not-found_section .not-found_main-wrapper .image_main-wrapper .img-wrapper {
        padding-bottom: 90%;
    }

    .not-found_section .not-found_main-wrapper h1 {
        font-size: 52px;
        padding-bottom: 10px;
        text-align: center;
    }

    .not-found_section .not-found_main-wrapper h3 {
        font-size: 16px;
        padding-bottom: 20px;
        text-align: center;
    }

    .not-found_section .not-found_main-wrapper a {
        font-size: 12px;
        margin:  0 auto;
    }
}

/*404 Not Found Page CSS End Here*/

/* Story Page New Changes Start here*/

.story-page_right-content-wrapper .right-content_wrapper .story-card .story-card_wrapper {
    position: relative;
}

.story-card_wrapper .story-card_img-main-wrapper {
    max-width: 168px;
    width: 100%;
    height: 168px;
    padding: 9px;
    background-color: #393939;
    border-radius: 168px;
    /* box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.9); */
    box-shadow: 1px 4px 4px 3px rgba(0, 0, 0, 0.9);
    position: absolute;
    top: -65px;
    right: 53px;
    overflow: hidden;
    -webkit-border-radius: 168px;
    -moz-border-radius: 168px;
    -ms-border-radius: 168px;
    -o-border-radius: 168px;
}

.story-card_wrapper .story-card_img-main-wrapper .img-inner-wrapper {
    max-width: 100%;
    width: 100%;
    position: relative;
    padding-bottom: 100%;
    border-radius: 168px;
    overflow: hidden;
}

.story-card_wrapper .story-card_img-main-wrapper .img-inner-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 1919px) and (min-width: 992px) {
    .story-card_wrapper .story-card_img-main-wrapper {
        max-width: 8.750vw;
        height: 8.750vw;
        padding: 0.469vw;
        border-radius: 8.750vw;
        /* box-shadow: 0.208vw 0.208vw 0.365vw rgba(0, 0, 0, 0.9); */
        box-shadow: 0.052vw 0.208vw 0.208vw 0.156vw rgba(0, 0, 0, 0.9);
        top: -3.385vw;
        right: 2.760vw;
    }

    .story-card_wrapper .story-card_img-main-wrapper .img-inner-wrapper {
        border-radius: 8.750vw;
    }
}

@media only screen and (max-width: 991px) {
    .story-card_wrapper .story-card_img-main-wrapper {
        top: -70px;
    }
}

@media only screen and (max-width: 767px) {
    .story-card_wrapper .story-card_img-main-wrapper {
        max-width: 60px;
        height: 60px;
        box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.9);
        padding: 4px;
        top: -27px;
        right: 10px;
    }
}


/* Story Page New Changes End here*/

.news__nav-form .filter-wrapper input.date-filter::-webkit-input-placeholder {
  opacity: 1;
  color: var(--text-gray);
}

.news__nav-form .filter-wrapper input.date-filter::-moz-placeholder {
  opacity: 1;
  color: var(--text-gray);
}

.news__nav-form .filter-wrapper input.date-filter:-ms-input-placeholder {
  opacity: 1;
  color: var(--text-gray);
}

.news__nav-form .filter-wrapper input.date-filter::placeholder {
  opacity: 1;
  color: var(--text-gray);
}