* {
    box-sizing: border-box;
}

:root {
    --viewport-width: 2560;
    --black: #121013;
    --white: #ffffff;
    --purple: #391F4F;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0 20px 20px;
    font-family: 'Gotham';
    background: #FFFFFF;
    /* font-family: 'Corbert'; */
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: 'Corbert';
}

p {
    color: #000;
    font-size: clamp(16px, calc(20 / var(--viewport-width) * 100vw), 24px);
    font-weight: 300;
    line-height: 190%;
    margin: 0;
}


a {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    outline: none !important;
}

.h1-heading {
    color: #FFF;
    display: block;
    font-family: 'Corbert';
    font-size: clamp(30px, calc(55 / var(--viewport-width) * 100vw), 70px);
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.h2-heading {
    color: #000;
    display: block;
    font-family: 'Corbert';
    font-size: clamp(26px, calc(46 / var(--viewport-width) * 100vw), 54px);
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
    margin-bottom: 64px;
}

.h3-heading {
    color: #000;
    font-family: 'Corbert';
    font-size: clamp(22px, calc(32 / var(--viewport-width) * 100vw), 36px);
    font-weight: 400;
    line-height: 180%;
    text-transform: uppercase;
    display: block;
    margin-bottom: 18px;
}

.sub-heading {
    color: #565656;
    font-size: clamp(18px, calc(24 / var(--viewport-width) * 100vw), 30px);
    font-weight: 300;
    display: block;
    line-height: normal;
    margin-bottom: 16px;
}

.sub-text {
    color: #FFF;
    font-family: 'Corbert';
    font-size: clamp(20px, calc(28.461 / var(--viewport-width) * 100vw), 32px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.container {
    max-width: 95%;
    width: calc(100% - 200px);
    margin: 0 auto;
}

.container-fluid {
    width: 100%;
    margin: 0 auto;
}

.customslider {
    padding-left: 100px;
    padding-right: 700px;
}

.custom-slider {
    margin: 0 auto;
    display: flex;
    grid-gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
}

.slider-container {
    overflow: hidden;
}

.slider-inner {
    overflow: hidden;
    margin-right: -160px;
    padding-right: 160px;
}

.custom-slider .apply-box {
    min-width: 562px;
    display: flex;
    scroll-snap-align: start;
    flex-shrink: 0;
    overflow: hidden;
    /* flex: 0 0 auto; */
    scroll-snap-align: start;
    overflow: hidden;
}

.primary-btn {
    padding: 14px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #FFF;
    color: #000;
    font-size: clamp(16px, calc(20 / var(--viewport-width) * 100vw), 24px);
    font-weight: 400;
    line-height: normal;
    transition: all 0.5s ease;
}

.primary-btn:hover {
    background: #444242 !important;
    color: #FFF;
}

.hide-desktop {
    display: none;
}

.buttons-wrapper {
    display: flex;
    align-items: center;
    margin-top: 64px;
    gap: 40px;
}

.link-apply {
    color: #FFF;
    font-size: clamp(16px, calc(20 / var(--viewport-width) * 100vw), 24px);
    font-weight: 400;
    line-height: 100%;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.link-apply::before {
    content: '';
    position: relative;
    display: inline-flex;
    width: 24px;
    height: 24px;
    background: url(../images/jla_stopuhr.svg) center no-repeat;
    background-size: 20px;
}

.link-apply::after {
    content: '';
    position: absolute;
    width: calc(100% - 36px);
    height: 1px;
    left: 36px;
    bottom: -2px;
    background: #fff;
    transition: all 0.5s ease;
    transform-origin: left;
    transform: scaleX(0);
}

.link-apply:hover::after {
    transform: scaleX(1);
}

section {
    position: relative;
}

/* Header and Navigation Styles */
.header {
    position: sticky;
    padding: 32px 0;
    top: 0;
    background: #fff;
    transition: all 0.5s ease;
    z-index: 3;
}

.header.sticky {
    padding: 20px 0;
    /* box-shadow: 0px 20px 50px 0 #00000008; */
}

.navigation-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper img {
    max-width: 167px;
    width: 100%;
}

nav.navigation {
    max-width: 1200px;
    width: 100%;
}

.navigation .nav {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 20px;
    justify-content: space-between;
}

.navigation .nav .nav-link {
    color: #000;
    font-size: clamp(16px, calc(20 / var(--viewport-width) * 100vw), 24px);
    font-weight: 500;
    line-height: normal;
    position: relative;
}

.navigation .nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    height: 2px;
    perspective-origin: center;
    background: #000;
    width: 100%;
    transition: all 0.5s ease;
    transform-origin: center;
    transform: scaleX(0);
}

.navigation .nav .menu_active .nav-link::after,
.navigation .nav .nav-link:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.header .primary-btn {
    background: #000;
    color: #fff;
}

/* Hero Banner Styles */
.hero_banner {
    height: calc(100vh - 131px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 77px 0;
    gap: 50px;
    min-height: 700px;
}

.hero_banner .hero-image {
    position: absolute;
    width: 100%;
    left: 0;
    height: 100%;
    top: 0;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-wrapper .hero-content {
    max-width: 1045px;
}

.hero-content .sub-text {
    position: relative;
    top: -4px;
}

.hero-content p {
    color: #FFF;
    font-size: clamp(14px, calc(18 / var(--viewport-width) * 100vw), 24px);
    font-weight: 400;
    line-height: 180%;
    text-transform: uppercase;
    max-width: 930px;
}

.banner-bottom-title {
    color: #FFF;
    font-family: 'Corbert';
    font-size: clamp(22px, calc(28 / var(--viewport-width) * 100vw), 36px);
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 32px;
}

.banner-bottom-title::before {
    content: '';
    position: relative;
    display: inline-flex;
    width: 60px;
    height: 1.3px;
    background: #FFF;
    bottom: -3px;
}

.banner-bottom-items {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
}

.banner-bottom-items .favour-text {
    color: #FFF;
    font-family: 'Corbert';
    font-size: clamp(16px, calc(20 / var(--viewport-width) * 100vw), 24px);
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
    padding: 18px 32px 18px;
    border: 1.3px solid #FFF;
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: default;
}

.banner-bottom-items a.favour-text {
    cursor: pointer;
}

.banner-bottom-items a.favour-text::after {
    content: '';
    position: relative;
    display: inline-flex;
    width: 24px;
    height: 24px;
    background: url(../images/jla_arrow_right.svg) center no-repeat;
    background-size: 17px;
    transition: all 0.5s ease;
    top: 2px;
}

.banner-bottom-items a.favour-text:hover {
    background: #FFF;
    color: #000;
}

.banner-bottom-items a.favour-text:hover::after {
    filter: invert(1);
}

/* Iframe Section Styles */
.iframe-section {
    padding-top: 175px;
    text-align: center;
}

.iframe-container {
    max-width: 1538px;
    margin: 0 auto;
}

.iframe-container .form-iframe {
    width: 100%;
    min-height: 741px;
    background: #D9D9D9;
}

/* Offer We Bring Section Styles */
.offer-section {
    margin-top: 175px;
}

.offer-section-wrapper {
    background: #F7F7F7;
    padding: 175px 0;
}

.offer-container {
    display: flex;
    max-width: 1782px;
    margin: 0 auto;
}

.offer-column-lg {
    width: 64.5%;
    padding-right: 120px;
    border-right: 1px solid #B6B6B6;
}

.offer-column {
    width: 35.5%;
    padding-left: 120px;
}

.offer-list-wrapper {
    display: flex;
    gap: 80px;
}

.offer-column-lg .offer-list {
    width: calc(50% - 40px);
}

.offer-list-wrapper .offer-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.offer-list li {
    color: #000;
    font-size: clamp(14px, calc(18 / var(--viewport-width) * 100vw), 24px);
    font-weight: 400;
    line-height: 160%;
    display: flex;
    align-items: center;
    gap: 12px;
    align-self: stretch;
}

.offer-list li::before {
    content: '';
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: url(../images/jla_checkmark.svg) center no-repeat;
    background-size: 17px;
}

/* Quick CTA Section Styles */
.quick-apply-bgImage {
    display: flex;
    position: relative;
}

.quick-apply-bgImage img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.quick-apply-bgImage::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    transition: all 0.5s ease;
    opacity: 0;
}

.in-view .quick-apply-bgImage::before {
    opacity: 1;
}

.quick-apply-banner .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    transition: all 0.5s ease;
    transition-delay: 0.5s;
    margin-top: 30px;
    opacity: 0;
}

.quick-apply-banner.in-view .container {
    margin-top: 0;
    opacity: 1;
}

.quick-apply-content .h2-heading {
    color: #fff;
    margin-bottom: 32px;
}

/* Gellary Section Styles */
.manage-slider-section {
    background: #000;
    padding: 175px 0;
}

.manage-slider-section .h2-heading {
    color: #fff;
    margin-bottom: 32px;
}

.customslider {
    padding-bottom: 20px;
    margin-bottom: -20px;
}

.slider-container .gallery-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
}

.slider-container .gallery-slider .gallery-slider-box {
    flex: 0 0 auto;
    scroll-snap-align: start;
    overflow: hidden;
}

.gellary-slider img,
.slider-container .gallery-slider .gallery-slider-box img {
    height: 735px;
}


.splide-actions,
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 45px;
    position: relative;
    min-height: 50px;
}

.splide__arrows,
.slider-arrow {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-end;
    position: absolute;
    right: 100px;
}

.splide__arrows .splide__arrow,
.slider-arrow .arrow {
    background: url(../images/jla_arrwo_left.svg) center no-repeat;
    background-size: 35px;
    height: 50px;
    width: 50px;
    font-size: 0;
    border-radius: 0;
    opacity: 1;
    outline: none;
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    transition: opacity 0.5s ease;
    padding: 0;
}

.splide__arrows .splide__arrow[disabled],
.slider-arrow .arrow.disabled {
    opacity: 0.3;
    cursor: auto;
}

.splide__arrows .splide__arrow.splide__arrow--next,
.slider-arrow .arrow.right {
    right: 0;
    background: url(../images/jla_arrow_right.svg) center no-repeat;
    background-size: 35px;
}

.splide__pagination,
.dots {
    position: relative;
    bottom: 0;
    padding: 0;
    display: flex;
    gap: 18px;
}

.splide__pagination li {
    display: flex;
}

.splide__pagination .splide__pagination__page,
.dots span {
    margin: 0;
    width: 12px;
    height: 12px;
    opacity: 1;
    background: #383838;
    transform: scale(0.8);
    border-radius: 0;
    transition: all 0.5s ease;
    cursor: pointer;
}

.splide__pagination .splide__pagination__page.is-active,
.dots span.active {
    background: #fff;
    transform: scale(1);
}

/* Testimonial Section Styles */
.testimonial-section {
    padding: 175px 0 0;
}

.testimonial-section .sub-heading,
.testimonial-section .h2-heading,
.apply-slider-section .sub-heading,
.apply-slider-section .h2-heading,
.faq-section .sub-heading,
.faq-section .h2-heading {
    text-align: center;
}

.testimonial-review-wrapper {
    display: flex;
    gap: 24px;
}

.review-wrapper {
    width: calc(76% - 24px);
}

.review-tab-wrapper {
    display: flex;
    align-items: stretch;
    gap: 24px;
    height: 100%;
}

.review-tabs {
    width: calc(37% - 24px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-tabs .review-tab {
    color: #BEBEBE;
    font-family: 'Corbert';
    font-size: clamp(26px, calc(46 / var(--viewport-width) * 100vw), 54px);
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    text-wrap: balance;
}

.review-tabs .review-tab::before {
    content: '';
    width: 12px;
    height: 12px;
    min-width: 12px;
    border-radius: 50%;
    background: #000;
    opacity: 0;
    transition: all 0.5s ease;
}

.review-tabs .review-tab+.review-tab {
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid #000;
}

.review-tabs .review-tab.active,
.review-tabs .review-tab:hover {
    color: #000;
}

.review-tabs .review-tab.active::before {
    opacity: 1;
}

.review-contents {
    width: 63%;
    background: #000;
    padding: 60px 100px 65px;
}

.review-contents .review-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    height: 100%;
}

.review-contents .review-content.active {
    display: block;
}

.review-contents .review-content.is-visible {
    opacity: 1;
}

.review-slider .progress-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 53px;
    margin-top: -9px;
}

.review-slider .progress-bar span {
    flex: 1;
    height: 20px;
    background: transparent;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.review-slider .progress-bar span::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    margin: 9px 0;
    background: #6E6E6E;
}

.review-slider .progress-bar span i {
    display: block;
    height: 2px;
    margin: 9px 0;
    width: 0%;
    background: #fff;
    position: relative;
    z-index: 1;
    transition: width 0.1s linear;
}

.review-slider .splide__slide {
    opacity: 0 !important;
    transition: opacity 1.2s linear, visibility 1.2s linear !;
    visibility: hidden;
    z-index: 0;
}

.review-slider .splide__track {
    margin-right: -75px;
}

.review-slider .splide__slide.is-active {
    opacity: 1 !important;
    visibility: visible;
    z-index: 2;
}

.review-slider .splide__slide.is-prev,
.review-slider .splide__slide.is-next {
    z-index: 1;
}

.review-box {
    height: 100%;
}

.review-box .review-content-text {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.review-box .review-text {
    max-height: 310px;
    min-height: 310px;
    overflow-y: auto;
    padding-right: 75px;
    position: relative;
}

.review-box .review-text::-webkit-scrollbar-track {
    width: 2px;
    background-color: #6E6E6E;
}

.review-box .review-text::-webkit-scrollbar {
    width: 2px;
    background-color: #6E6E6E;
}

.review-box .review-text::-webkit-scrollbar-thumb {
    width: 3px;
    background-color: #fff;
}

.review-box .review-text::after {
    content: '';
    position: sticky;
    display: flex;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 30px;
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.review-box .review-text p {
    color: #FFF;
    font-size: clamp(16px, calc(20 / var(--viewport-width) * 100vw), 24px);
    font-weight: 400;
    line-height: 190%;
}

.review-box .review-text p+p {
    margin-top: 20px;
}

.review-content-text .review-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 43px;
    justify-content: space-between;
    padding-right: 75px;
    min-height: 86px;
}

.review-info-wrap .review-name {
    display: block;
    color: #FFF;
    font-size: clamp(14px, calc(18 / var(--viewport-width) * 100vw), 22px);
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 4px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.review-info-wrap .review-name::before {
    content: '';
    position: relative;
    display: inline-flex;
    min-width: 26px;
    height: 1.5px;
    background: #fff;
}

.review-info-wrap .review-position {
    color: #FFF;
    font-size: clamp(14px, calc(18 / var(--viewport-width) * 100vw), 22px);
    font-weight: 300;
    line-height: 160%;
    text-transform: uppercase;
    padding-left: 38px;
}

.review-imager-wrapper {
    width: 24%;
    position: relative;
    display: flex;
}

.review-imager-wrapper .review-image {
    display: flex;
    position: relative;
}

.review-imager-wrapper .review-image:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0) 40%, transparent 55%);
    opacity: 1;
}

.review-imager-wrapper .review-image:after {
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    bottom: 0;
    z-index: 1;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    mask-image: linear-gradient(to top, black 0%, black 15%, transparent 55%);
    -webkit-mask-image: linear-gradient(to top, black 0%, black 15%, transparent 55%);
}

.review-imager-wrapper .review-image img {
    object-fit: cover;
}

.review-info img.customer-image {
    max-width: 86px;
    height: auto;
}

.review-info img.customer-image.round-img {
    border-radius: 50%;
}

.review-imager-content {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
    z-index: 2;
}

.review-imager-content .review-imager-title {
    display: block;
    color: #FFF;
    font-size: clamp(18px, calc(24 / var(--viewport-width) * 100vw), 32px);
    font-weight: 700;
    line-height: 190%;
    text-transform: uppercase;
    margin-bottom: 32px;
}

/* Apply Section */
.apply-slider-section-wrapper {
    margin-top: 175px;
}

.apply-slider-section {
    background: #F7F7F7;
    padding: 175px 0;
}

.apply-box {
    position: relative;
    max-width: 562px;
    height: 100%;
}

.apply-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apply-box .apply-title {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 68px;
    text-align: center;
    font-size: clamp(28px, calc(32 / var(--viewport-width) * 100vw), 36px);
    line-height: 140%;
    font-weight: bold;
    color: #fff;
    padding: 0 80px;
    text-transform: uppercase;
    z-index: 2;
}

.apply-box:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0) 40%, transparent 55%);
    opacity: 1;
}

.custom-slider .apply-box:after {
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    bottom: 0;
    z-index: 1;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    mask-image: linear-gradient(to top, black 0%, black 15%, transparent 55%);
    -webkit-mask-image: linear-gradient(to top, black 0%, black 15%, transparent 55%);
}

.apply-slider-section .splide__pagination .splide__pagination__page,
.apply-slider-section .dots span {
    background: #D3D3D3;
}

.apply-slider-section .splide__pagination .splide__pagination__page.is-active,
.apply-slider-section .dots span.active {
    background: #000000;
}

.apply-slider-section .splide__arrows .splide__arrow,
.apply-slider-section .slider-arrow .arrow {
    filter: brightness(0);
}

/* Faq's Section */
.faq-section {
    padding: 175px 0;
}

.faq-container {
    max-width: 1538px;
    margin: 0 auto;
}

.accordion-box .faq-item {
    padding: 24px 196px 24px 32px;
    border: 0.5px solid #000000;
    cursor: pointer;
    position: relative;
}

.accordion-box .faq-item:before {
    content: '';
    width: 24.38px;
    height: 2px;
    position: absolute;
    background: #000;
    top: 35px;
    right: 43.25px;
    transition: 0.5s all;
    opacity: 1;
}

.accordion-box .faq-item:after {
    content: '';
    width: 2px;
    height: 24.38px;
    position: absolute;
    background: #000;
    top: 24px;
    right: 54px;
    transition: 0.5s all;
    opacity: 1;
}

.accordion-box .faq-item.active::after {
    opacity: 0;
}

.accordion-box .faq-item:not(:last-child) {
    margin-bottom: 32px;
}

.accordion-box .faq-item .faq-question {
    font-size: clamp(20px, calc(24 / var(--viewport-width) * 100vw), 30px);
    text-transform: uppercase;
    font-weight: normal;
    color: #000000;
}

.accordion-box .faq-item .faq-question:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.accordion-box .faq-item .faq-answer p {
    margin-top: 12px;
}

/* CTA Section */
.bottom-cta-bgImage {
    display: flex;
    align-items: center;
}

.bottom-cta-bgImage img {
    width: 100%;
}

.bottom-cta-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 1045px;
    width: 1045px;
}

.bottom-cta-content .buttons-wrapper {
    justify-content: center;
}

/* Floating Link Section Styling */

.floating-social-links {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
    z-index: 2;
}

.floating-social-links a.social-link-item {
    width: 70px;
    min-width: 70px;
    height: 70px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transition: all 0.5s ease;
    font-size: 0px;
}

.floating-social-links a.social-link-item:hover {
    background: #444242;
}

.floating-social-links a.social-link-item+a.social-link-item {
    border-top: 0.5px solid #B6B6B6;
}

/* Footer Part */
.footer {
    background: #000;
    padding: 0 0 32px;
}

.footer-top {
    padding: 120px 0;
}

.footer-top .footer-row {
    display: flex;
    flex-wrap: wrap;
    column-gap: 130px;
    justify-content: space-between;
}

.footer-top .footer-row .col-1 {
    width: 32.2%;
}

.footer-top .footer-row .col-2 {
    width: 16%;
}

.footer-top .footer-row .col-3 {
    width: 32.7%;
}

.footer-top .footer-row .col-1 span.h1-heading {
    display: block;
}

.footer-top .footer-row .col-1 p {
    color: #FFF;
    font-size: clamp(14px, calc(18 / var(--viewport-width) * 100vw), 22px);
    font-weight: 400;
    line-height: 180%;
    text-transform: uppercase;
    color: #fff;
}

.footer-top .footer-row .col-2 .footer-col-title,
.review-info .footer-col-title {
    font-size: clamp(16px, calc(20 / var(--viewport-width) * 100vw), 24px);
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 180%;
    display: block;
    margin-bottom: 32px;
}

.footer-top .footer-row .col-2 ul.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.footer-top .footer-row .col-2 ul.footer-links a.nav-link {
    color: #fff;
    font-weight: 300;
    text-transform: uppercase;
    font-size: clamp(14px, calc(18 / var(--viewport-width) * 100vw), 22px);
    line-height: 180%;
    position: relative;
    transition: all 0.5s ease;
}

.footer-top .footer-row .col-2 ul.footer-links a.nav-link::after,
.footer-bottom a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background: #fff;
    transition: all 0.5s ease;
    transform-origin: left;
    transform: scaleX(0);
}

.footer-top .footer-row .col-2 ul.footer-links a.nav-link:hover::after,
.footer-bottom a:hover::after {
    transform: scaleX(1);
}

.footer-review-box {
    display: flex;
    flex-wrap: wrap;
    gap: 23px;
}

.footer-review-box>img {
    width: calc(50% - 12px);
    object-fit: cover;
}

.footer-review-box .footer-review-content {
    width: calc(50% - 11px);
}

.footer-review-content .review-info {
    padding-bottom: 48px;
    border-bottom: 0.5px solid #fff;
    margin-bottom: 48px;
}

.review-info .footer-col-title {
    margin-bottom: 0;
}

.review-info .footer-review-name {
    color: #FFF;
    font-size: clamp(14px, calc(18 / var(--viewport-width) * 100vw), 22px);
    font-weight: 300;
    line-height: 160%;
    text-transform: uppercase;
    display: block;
}

p.footer-review-text {
    color: #FFF;
    font-size: clamp(26px, calc(46 / var(--viewport-width) * 100vw), 54px);
    font-style: italic;
    font-weight: 300;
    line-height: 136.957%;
}

.footer-bottom .container {
    border-top: 0.5px solid #fff;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    gap: 20px;
}

.footer-bottom .copyright {
    color: #FFF;
    font-size: clamp(14px, calc(18 / var(--viewport-width) * 100vw), 22px);
    font-weight: 400;
    line-height: 160%;
}

.footer-bottom-links {
    display: inline-flex;
    align-items: center;
    gap: 52px;
}

.footer-bottom a {
    color: #FFF;
    text-align: center;
    font-size: clamp(14px, calc(18 / var(--viewport-width) * 100vw), 22px);
    font-weight: 400;
    line-height: 160%;
    position: relative;
}

/* CMS Popup Styling */
.cms-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    padding: 100px 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s all ease;
    transition-delay: 0.5s;
}

.cms-popup.popup-open {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.cms-popup .popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s all ease;
    transition-delay: 0.4s;
}

.cms-popup.popup-open .popup-overlay {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.cms-popup .popup-overlay-inner {
    position: relative;
    z-index: 2;
    max-height: calc(100vh - 200px);
    min-height: calc(100vh - 200px);
    overflow-y: auto;
    background: #fff;
    max-width: 95%;
    width: calc(100% - 200px);
    margin: 0 auto;
    transition: 0.5s all;
    visibility: hidden;
    opacity: 0;
    transition-delay: 0s;
}

.cms-popup.popup-open .popup-overlay-inner {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.2s;
}

.cms-popup .popup-close {
    width: 46px;
    height: 46px;
    position: sticky;
    margin-left: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 32px;
    margin-top: -46px;
    margin-right: -66px;
    background: #fff url(../images/close.svg) center no-repeat !important;
    font-size: 0;
    cursor: pointer;
}

.cms-popup .popup-content {
    padding: 77px 100px 175px;
}

.cms-popup .h1-heading {
    color: #000;
    display: block;
    margin-bottom: clamp(30px, calc(64 / var(--viewport-width) * 100vw), 70px);
}

.cms-popup .h2-heading {
    display: block;
    margin-bottom: clamp(20px, calc(32 / var(--viewport-width) * 100vw), 35px);
}

.cms-popup p {
    font-size: clamp(14px, calc(18 / var(--viewport-width) * 100vw), 22px);
    line-height: 180%;
    margin-bottom: clamp(18px, calc(24 / var(--viewport-width) * 100vw), 28px);
    word-break: break-word;
}

.cms-popup ul {
    margin: clamp(18px, calc(24 / var(--viewport-width) * 100vw), 28px) 0;
    padding-left: 20px;
}

.cms-popup li {
    font-size: clamp(14px, calc(18 / var(--viewport-width) * 100vw), 22px);
    line-height: 180%;
    font-weight: 300;
}

.cms-popup b {
    font-weight: 700;
}

.cms-popup p+.h2-heading,
.cms-popup li+.h2-heading {
    margin-top: clamp(30px, calc(64 / var(--viewport-width) * 100vw), 70px);
}

.cms-popup p+.h3-heading,
.cms-popup li+.h3-heading {
    margin-top: clamp(22px, calc(28 / var(--viewport-width) * 100vw), 30px);
}

.cms-popup a {
    text-decoration: underline;
}

.impressum-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: clamp(30px, calc(100 / var(--viewport-width) * 100vw), 100px);
}

.impressum-content {
    width: 55%;
}

.impressum-box {
    width: 35%;
}

.mipe-media-details {
    border: 1px solid #000;
    padding: clamp(20px, calc(80 / var(--viewport-width) * 100vw), 100px);
}

.mipe-media-details b {
    color: #000;
    font-size: clamp(16px, calc(20 / var(--viewport-width) * 100vw), 24px);
    line-height: 180%;
    text-transform: uppercase;
    display: block;
    margin: clamp(30px, calc(64 / var(--viewport-width) * 100vw), 70px) 0 clamp(20px, calc(32 / var(--viewport-width) * 100vw), 35px);
}

/* Responsive Style */
@media (min-width: 2600px) {
    .offer-container {
        max-width: 2150px;
    }

    .hero-content-wrapper .hero-content {
        max-width: 1315px;
    }

    .bottom-cta-content {
        max-width: 1315px;
        width: 1315px;
    }

    .review-box .review-text {
        max-height: 550px;
        min-height: 550px;
    }

    .hero-content p {
        max-width: 1200px;
    }
}

@media(max-width:2150px) {



    .custom-slider .apply-box {
        min-width: 520px;
    }

    .hero_banner {
        height: calc(100vh - 128px);
    }

    .hero-content-wrapper .hero-content {
        max-width: 800px;
    }

    .hero-content p {
        max-width: 700px;
    }

    .bottom-cta-content .hero-content p {
        margin: 0 auto;
    }

    .navigation .nav {
        justify-content: center;
        gap: 100px;
    }

    .footer-top .footer-row .col-1 {
        width: 32.2%;
    }

    .accordion-box .faq-item:before {
        top: 33px;
    }

    .accordion-box .faq-item:after {
        top: 22px;
    }

    .apply-box {
        max-width: 520px;
    }

    .review-box .review-text {
        max-height: 237px;
        min-height: 237px;
    }

    .bottom-cta-content {
        max-width: 835px;
        width: 835px;
    }
}

@media(max-width:1849px) {


    .customslider {
        padding-right: 420px;
    }

    nav.navigation {
        max-width: 800px;
    }

    .navigation .nav {
        gap: 75px;
    }

    .gellary-slider img,
    .slider-container .gallery-slider .gallery-slider-box img {
        height: 550px;
    }

    .review-imager-wrapper .review-image img {
        object-fit: cover;
    }

    .review-contents {
        padding: 60px 60px 60px 60px;
    }

    .review-slider .progress-bar {
        margin-bottom: 40px;
    }

    .review-slider .splide__track {
        margin-right: -20px;
    }

    .review-box .review-text {
        max-height: 205px;
        min-height: 205px;
        padding-right: 20px;
    }

    .review-content-text .review-info {
        margin-top: 35px;
        padding-right: 20px;
    }

    .footer-top .footer-row {
        column-gap: 120px;
    }

    .footer-review-content .review-info {
        padding-bottom: 35px;
        margin-bottom: 35px;
    }

    .cms-popup .popup-content {
        padding: 70px 80px 140px;
    }

    .cms-popup .popup-close {
        margin-right: -46px;
    }
}

@media(max-width:1599px) {
    .customslider {
        padding-right: 280px;
    }

    .custom-slider .apply-box {
        min-width: 400px;
        max-width: 400px;
    }

    .custom-slider {
        grid-gap: 20px;
    }

    .bottom-cta-content {
        max-width: 815px;
        width: 815px;
    }

    .container {
        width: calc(100% - 150px);
    }

    nav.navigation {
        max-width: 700px;
    }

    .navigation .nav {
        gap: 50px;
    }

    .h1-heading {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .offer-column-lg {
        padding-right: 60px;
    }

    .offer-column {
        padding-left: 60px;
    }

    .quick-apply-bgImage img {
        height: 430px;
    }

    .review-contents {
        padding: 50px;
    }

    .review-slider .progress-bar {
        margin-bottom: 30px;
    }

    .review-box .review-text p {
        font-size: 16px;
    }

    .review-info img.customer-image {
        max-width: 73px;
    }

    .review-content-text .review-info {
        min-height: 73px;
    }

    .apply-box .apply-title {
        font-size: 24px;
    }

    .apply-box {
        max-width: 400px;
    }

    .faq-container {
        width: 100%;
    }

    .footer-top .footer-row {
        column-gap: 70px;
    }

    .footer-top .footer-row .col-2 {
        width: 17%;
    }

    .footer-top .footer-row .col-1 {
        width: 37.2%;
    }

    .cms-popup {
        padding: 75px 0;
    }

    .cms-popup .popup-overlay-inner {
        width: calc(100% - 150px);
        max-height: calc(100vh - 150px);
        min-height: calc(100vh - 150px);
    }

    .cms-popup .popup-content {
        padding: 60px 60px;
    }
}

@media(max-width:1399px) {
    .hero_banner {
        height: calc(100vh - 115px);
    }

    nav.navigation {
        max-width: 600px;
    }

    .navigation .nav {
        gap: 32px;
    }

    .navigation .nav .nav-link {
        font-size: 14px;
    }

    .primary-btn {
        font-size: 14px;
        padding: 14px 20px;
    }

    .banner-bottom-items .favour-text {
        font-size: 14px;
        padding: 16px 28px 16px;
    }

    .banner-bottom-items {
        gap: 20px;
    }

    .iframe-section {
        padding-top: 140px;
    }

    .offer-section {
        margin-top: 140px;
    }

    .offer-section-wrapper {
        padding: 140px 0;
    }

    .offer-list-wrapper {
        gap: 60px;
    }

    .manage-slider-section {
        padding: 140px 0;
    }

    .gellary-slider img,
    .slider-container .gallery-slider .gallery-slider-box img {
        height: 450px;
    }

    .splide__arrows .splide__arrow,
    .slider-arrow .arrow {
        height: 30px;
        background-size: 25px;
        width: 30px;
    }

    .splide__arrows .splide__arrow.splide__arrow--next,
    .slider-arrow .arrow.right {
        background-size: 25px;
    }

    .testimonial-section {
        padding: 140px 0 0;
    }

    .review-tab-wrapper {
        flex-wrap: wrap;
    }

    .apply-slider-section-wrapper {
        margin-top: 140px;
    }

    .apply-slider-section {
        padding: 140px 0;
    }

    .faq-section {
        padding: 140px 0;
    }

    .footer-top .footer-row {
        column-gap: 60px;
    }

    .buttons-wrapper {
        gap: 30px;
    }

    .link-apply {
        font-size: 14px;
    }

    .cms-popup {
        padding: 75px 0;
    }

    .cms-popup .popup-overlay-inner {
        width: calc(100% - 150px);
        max-height: calc(100vh - 150px);
        min-height: calc(100vh - 150px);
    }

    .cms-popup .popup-content {
        padding: 80px 60px;
    }

    .customslider {
        padding-right: 200px;
    }
}

@media(max-width:1239px) {
    .customslider {
        padding-right: 160px;
    }

    .custom-slider .apply-box {
        min-width: 353px;
        max-width: 353px;
    }

    .container {
        width: calc(100% - 100px);
    }

    .navigation .nav {
        gap: 20px;
    }

    nav.navigation {
        max-width: 520px;
    }

    .banner-bottom-items .favour-text {
        font-size: 14px;
        padding: 14px 20px 14px;
    }

    .gellary-slider img,
    .slider-container .gallery-slider .gallery-slider-box img {
        height: 400px;
    }

    .review-wrapper {
        width: 100%;
    }

    .testimonial-review-wrapper {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .review-imager-wrapper {
        width: 63%;
    }

    .review-tabs .review-tab {
        padding-right: 20px;
    }

    .apply-box img {
        max-height: 380px;
        object-fit: cover;
    }

    .apply-box .apply-title {
        font-size: 20px;
        padding: 0 40px;
        bottom: 40px;
    }

    .bottom-cta-content {
        width: 740px;
    }

    .footer-top .footer-row {
        column-gap: 35px;
    }

    .footer-top .footer-row .col-1 {
        width: 40.2%;
    }

    .footer-bottom-links {
        gap: 25px;
    }

    .cms-popup .popup-close {
        top: 22px;
        right: 22px;
    }

    .cms-popup .popup-content {
        padding: 80px 50px;
    }

    .impressum-box {
        width: 39%;
    }

    .cms-popup {
        padding: 50px 0;
    }

    .cms-popup .popup-overlay-inner {
        width: calc(100% - 100px);
        max-height: calc(100vh - 100px);
        min-height: calc(100vh - 100px);
    }

    .cms-popup .popup-content {
        padding: 80px 50px;
    }
}

@media(max-width:1099px) {
    body {
        font-family: 'Corbert';
    }

    .logo-wrapper img {
        max-width: 130px;
    }

    .h1-heading {
        font-size: 35px;
        margin-bottom: 26px;
    }

    .hero-content-wrapper .hero-content {
        max-width: 700px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .buttons-wrapper {
        gap: 20px;
        margin-top: 55px;
        flex-wrap: wrap;
    }

    .banner-bottom-title {
        font-size: 20px;
    }

    .hero-content .sub-text {
        position: relative;
        top: -2px;
    }

    .offer-column-lg {
        padding-right: 30px;
        width: 68%;
    }

    .offer-column {
        padding-left: 30px;
        width: 32%;
    }

    .review-actions .splide__arrows {
        position: absolute;
        left: -5px;
        right: -5px;
        top: -5px;
        justify-content: space-between;
    }

    .review-slider .progress-bar {
        max-width: calc(100% - 80px);
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 1;
    }

    .review-slider .progress-bar span i {
        opacity: 0;
        width: 100% !important;
    }

    .review-slider .progress-bar span.active i {
        opacity: 1;
    }

    .accordion-box .faq-item .faq-question {
        font-size: 18px;
    }

    .accordion-box .faq-item:not(:last-child) {
        margin-bottom: 26px;
    }

    .floating-social-links a.social-link-item {
        width: 50px;
        min-width: 50px;
        height: 50px;
    }

    .floating-social-links a.social-link-item img {
        max-width: 18px;
        max-height: 18px;
    }
}

@media(max-width:1023px) {
    .customslider {
        padding-left: 50px;
    }

    .custom-slider .apply-box {
        min-width: 279px;
        max-width: 279px;
    }

    .header.sticky:has(.open-nav) {
        box-shadow: none;
    }

    .hero_banner {
        height: calc(100vh - 95px);
    }

    .hero-content-wrapper .hero-content {
        max-width: 610px;
    }

    .h1-heading {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .buttons-wrapper {
        gap: 25px;
        margin-top: 50px;
        flex-wrap: wrap;
    }

    .sub-heading {
        margin-bottom: 10px;
    }

    .h2-heading {
        font-size: 24px;
        margin-bottom: 50px;
    }

    .hide-desktop {
        display: block;
    }

    .header {
        padding: 25px 0;
    }

    .logo-wrapper {
        width: 100%;
    }

    .navigation-button {
        width: 45px;
        height: 45px;
        background: #000;
        display: flex;
        flex-direction: column;
        row-gap: 5px;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }

    .navigation-button .bar {
        height: 2px;
        background: #fff;
        width: 25px;
        transition: all 0.35s ease;
    }

    .open-nav .navigation-button .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .open-nav .navigation-button .bar:nth-child(2) {
        transform: scaleX(0);
        transform-origin: left;
    }

    .open-nav .navigation-button .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    nav.navigation {
        position: fixed;
        width: 100%;
        max-width: 100%;
        height: calc(100vh - 95px);
        left: 0;
        top: 95px;
        background: #fff;
        transform: scaleY(0);
        transition: all 0.5s ease;
        transition-delay: 0.3s;
        transform-origin: top;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 120px;
    }

    .sticky nav.navigation {
        height: calc(100vh - 85px);
        top: 85px;
    }

    .open-nav nav.navigation {
        transform: scaleY(1);
        transition-delay: 0s;
    }

    .navigation .nav {
        flex-direction: column;
        text-align: center;
        row-gap: 30px;
        width: 100%;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s ease;
    }

    .open-nav .navigation .nav,
    .open-nav .primary-btn.hide-desktop {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.3s;
    }

    .primary-btn.hide-desktop {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s ease;
    }

    .navigation .nav .nav-link {
        font-size: 16px;
    }

    .navigation .nav .nav-link::after {
        opacity: 0;
    }

    .navigation .nav .active .nav-link::after,
    .navigation .nav .nav-link:hover::after {
        opacity: 1;
    }

    .header-btn {
        display: none;
    }

    .iframe-container .form-iframe {
        min-height: 500px;
    }

    .review-box .review-text {
        max-height: 270px;
        min-height: 270px;
    }

    /* .review-slider .splide__track {
        margin-right: 0;
    }

    .review-box .review-text {
        max-height: 100%;
        padding-right: 0px;
    }

    .review-box .review-text::after {
        content: none;
    }

    .review-content-text .review-info {
        padding-right: 0;
    } */

    .offer-container {
        flex-wrap: wrap;
        max-width: 100%;
        gap: 50px;
    }

    .offer-column-lg {
        padding-right: 0px;
        width: 100%;
        border: 0;
    }

    .offer-list-wrapper .offer-list {
        width: 50%;
        gap: 10px;
    }

    .offer-column {
        padding-left: 0;
        width: 100%;
    }

    .quick-apply-bgImage img {
        height: 350px;
    }

    .gellary-slider img,
    .slider-container .gallery-slider .gallery-slider-box img {
        height: 300px;
    }

    .review-tabs {
        width: 100%;
    }

    .review-contents {
        padding: 60px 60px 60px 60px;
        width: 100%;
    }

    .review-tab-wrapper {
        gap: 55px;
    }

    .testimonial-review-wrapper {
        gap: 20px;
    }

    .review-imager-wrapper {
        width: 100%;
    }

    .review-tabs .review-tab {
        font-size: 22px;
        gap: 20px;
        padding-right: 0px;
    }

    .review-tabs .review-tab::before {
        margin-top: 4px;
    }

    .review-tabs .review-tab+.review-tab {
        padding-top: 20px;
        margin-top: 20px;
    }

    .apply-box img {
        max-height: 300px;
    }

    .apply-box .apply-title {
        font-size: 18px;
        padding: 0 20px;
        bottom: 25px;
    }

    .splide__arrows,
    .slider-arrow {
        right: 50px;
    }

    .accordion-box .faq-item {
        padding: 20px 85px 20px 30px;
    }

    .accordion-box .faq-item:after {
        right: 41px;
        top: 17px;
    }

    .accordion-box .faq-item:before {
        right: 30px;
        top: 28px;
    }

    p {
        line-height: 150%;
    }

    .bottom-cta-content {
        width: 100%;
        padding: 0 60px;
    }

    .footer-top .footer-row .col-1 {
        width: calc(65% - 45px);
    }

    .footer-top .footer-row .col-2 {
        width: 35%;
    }

    .footer-top .footer-row .col-3 {
        width: 100%;
    }

    .footer-top .footer-row {
        column-gap: 45px;
        row-gap: 60px;
    }

    .footer-top {
        padding: 100px 0;
    }

    .footer-bottom .container {
        flex-wrap: wrap;
    }

    .footer-bottom .copyright {
        order: 1;
    }

    .footer-bottom-links {
        order: 2;
        width: 100%;
        justify-content: center;
    }

    .cms-popup .popup-content {
        padding: 60px;
    }

    .impressum-content,
    .impressum-box {
        width: 100%;
    }
}

@media(max-width:767px) {
    body {
        font-family: 'Gotham';
    }

    .customslider {
        padding-left: 35px;
        padding-right: 100px;
    }

    .custom-slider .apply-box {
        min-width: 232px;
        max-width: 232px;
    }

    .container {
        width: calc(100% - 80px);
    }

    .banner-bottom-title {
        font-size: 18px;
    }

    .iframe-section {
        padding-top: 120px;
    }

    .offer-section {
        margin-top: 120px;
    }

    body {
        padding: 0 14px 14px;
    }

    .offer-section-wrapper {
        padding: 120px 0;
    }

    .offer-list-wrapper {
        gap: 8px;
        flex-wrap: wrap;
    }

    .offer-list-wrapper .offer-list {
        width: 100%;
        gap: 10px;
    }

    .offer-container {
        gap: 70px;
    }

    .manage-slider-section {
        padding: 120px 0;
    }

    .gellary-slider img,
    .slider-container .gallery-slider .gallery-slider-box img {
        height: 250px;
    }

    .splide-actions,
    .slider-controls {
        min-height: 35px;
        margin-top: 40px;
    }

    .testimonial-section {
        padding: 120px 0 0;
    }

    .review-content-text .review-info {
        margin-top: 30px;
    }

    .apply-slider-section {
        padding: 120px 0;
    }

    .apply-box img {
        max-height: 250px;
    }

    .apply-box .apply-title {
        font-size: 16px;
        padding: 0 15px;
        bottom: 20px;
    }

    .quick-apply-bgImage img {
        height: 300px;
    }

    .faq-section {
        padding: 120px 0;
    }

    .accordion-box .faq-item .faq-question {
        font-size: 16px;
        line-height: 145%;
    }

    .accordion-box .faq-item:after {
        right: 39px;
        width: 2px;
        height: 20px;
        top: 21px;
    }

    .accordion-box .faq-item:before {
        right: 30px;
        width: 20px;
        top: 30px;
    }

    .bottom-cta-bgImage img {
        min-height: 480px;
        object-fit: cover;
    }

    .bottom-cta-content {
        width: 100%;
        padding: 0 35px;
    }

    .cms-popup {
        padding: 40px 0;
    }

    .cms-popup .popup-overlay-inner {
        width: calc(100% - 80px);
        max-height: calc(100vh - 80px);
        min-height: calc(100vh - 80px);
    }

    .cms-popup .popup-content {
        padding: 30px;
    }

    .cms-popup .popup-close {
        top: 18px;
        right: 18px;
        margin-right: -10px;
    }

    .cms-popup .h2-heading,
    .cms-popup .h3-heading {
        word-break: break-word;
    }
}

@media(max-width:599px) {
    .hero_banner {
        height: auto;
        gap: 110px;
        padding: 70px 0;
    }

    .h2-heading {
        margin-bottom: 40px;
    }

    .iframe-section .h2-heading {
        max-width: 320px;
        margin: 0 auto 40px;
    }

    .apply-slider-section .h2-heading {
        max-width: 290px;
        margin: 0 auto 40px;
    }

    .iframe-container div[data-tf-medium="snippet"] {
        min-height: 560px;
    }

    .review-tabs .review-tab {
        font-size: 20px;
        gap: 18px;
    }

    .review-tabs .review-tab::before {
        width: 8px;
        height: 8px;
        min-width: 8px;
    }

    .review-tab-wrapper {
        gap: 40px;
    }

    .review-contents {
        padding: 40px 40px 40px 40px;
        width: 100%;
    }

    .review-slider .progress-bar {
        margin-bottom: 40px;
    }

    .splide__arrows .splide__arrow,
    .slider-arrow .arrow {
        height: 24px;
        background-size: 20px;
        width: 24px;
    }

    .splide__arrows .splide__arrow.splide__arrow--next,
    .slider-arrow .arrow.right {
        background-size: 20px;
    }

    .splide__arrows,
    .slider-arrow {
        right: 45px;
    }

    .splide-actions,
    .slider-controls {
        min-height: 24px;
        margin-top: 40px;
    }

    .splide__pagination,
    .dots {
        gap: 12px;
    }

    .review-actions .splide__arrows {
        left: -2px;
        right: -2px;
        top: -2px;
    }

    .splide__pagination li {
        display: flex;
    }

    .splide__arrows,
    .slider-arrow {
        right: 40px;
    }

    .accordion-box .faq-item:not(:last-child) {
        margin-bottom: 18px;
    }

    .footer-top .footer-row .col-1 {
        width: 100%;
    }

    .footer-top .footer-row .col-2 {
        width: 100%;
    }

    .footer-top .footer-row .col-2 .footer-col-title,
    .review-info .footer-col-title {
        margin-bottom: 18px;
        line-height: 130%;
    }

    .footer-review-content .review-info {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }

    .footer-bottom .copyright {
        order: 1;
        width: 100%;
        text-align: center;
    }

    .footer-bottom .container {
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media(max-width:519px) {
    .custom-slider {
        grid-gap: 10px;
    }

    .customslider {
        padding-left: 30px;
        padding-right: 50px;
    }

    .slider-container .gallery-slider {
        gap: 10px;
    }

    body {
        padding: 0 8px 8px;
    }

    .header {
        padding: 15px 0;
    }

    .header.sticky {
        padding: 10px 0;
    }

    .logo-wrapper img {
        max-width: 100px;
    }

    .navigation-button {
        width: 35px;
        height: 35px;
        padding: 0;
    }

    .buttons-wrapper a.primary-btn {
        min-width: 185px;
    }

    .navigation-button .bar {
        width: 20px;
    }

    nav.navigation {
        height: calc(100vh - 65px);
        top: 65px;
    }

    .sticky nav.navigation {
        height: calc(100vh - 55px);
        top: 55px;
    }

    .container {
        width: calc(100% - 60px);
    }

    .buttons-wrapper {
        gap: 20px;
        margin-top: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .banner-bottom-items {
        gap: 12px;
    }

    .banner-bottom-items .favour-text {
        height: 45px;
    }

    .iframe-section {
        padding-top: 100px;
    }

    .iframe-container .form-iframe {
        min-height: 350px;
    }

    .offer-section {
        margin-top: 100px;
    }

    .offer-section-wrapper {
        padding: 100px 0;
    }

    .manage-slider-section {
        padding: 100px 0;
    }

    .gellary-slider img,
    .slider-container .gallery-slider .gallery-slider-box img {
        height: 200px;
    }

    .splide-actions,
    .slider-controls {
        min-height: 24px;
        margin-top: 30px;
        justify-content: flex-start;
        padding-left: 30px;
    }

    .splide__arrows,
    .slider-arrow {
        right: 30px;
    }

    .gellary-slider .splide__slide {
        max-width: calc(100vw - 60px);
    }

    .testimonial-section {
        padding: 100px 0 0;
    }

    .review-tabs .review-tab {
        font-size: 18px;
        gap: 14px;
    }

    .review-box .review-text p {
        font-size: 14px;
    }

    .review-contents {
        padding: 30px 30px 30px 30px;
        width: 100%;
    }

    .review-info img.customer-image {
        max-width: 30px;
    }

    .review-content-text .review-info {
        min-height: auto;
    }

    .apply-slider-section-wrapper {
        margin-top: 120px;
    }

    .apply-slider-section {
        padding: 100px 0;
    }

    .faq-section {
        padding: 100px 0;
    }

    .floating-social-links {
        transform: none;
        top: auto;
        bottom: 0;
        flex-direction: row;
        width: 100%;
        left: 0;
        border-top: 0.5px solid #B6B6B6;
        background: #000;
        z-index: 1;
    }

    .floating-social-links a.social-link-item {
        width: calc(100% / 3);
        min-width: 35px;
        height: 35px;
        color: #fff;
        align-items: center;
        gap: 10px;
        font-size: 14px;
    }

    .floating-social-links a.social-link-item img {
        max-width: 15px;
        max-height: 15px;
    }

    .floating-social-links a.social-link-item+a.social-link-item {
        border-top: none;
        border-left: 0.5px solid #B6B6B6;
    }

    .review-imager-content {
        bottom: 40px;
    }

    .review-imager-content .review-imager-title {
        margin-bottom: 20px;
    }

    .accordion-box .faq-item {
        padding: 20px 60px 20px 25px;
    }

    .accordion-box .faq-item:before {
        right: 20px;
        width: 20px;
    }

    .accordion-box .faq-item:after {
        right: 29px;
    }

    p {
        font-size: 14px;
        line-height: 130%;
    }

    .bottom-cta-bgImage img {
        height: 600px;
    }

    .footer {
        padding-bottom: 50px;
    }

    p.footer-review-text {
        font-size: 20px;
    }

    .footer-top .footer-row .col-2 ul.footer-links a.nav-link {
        line-height: 130%;
    }

    .footer-top .footer-row {
        row-gap: 70px;
    }

    .review-info .footer-col-title {
        margin-bottom: 5px !important;
    }

    .footer-bottom-links {
        gap: 15px;
    }

    .cms-popup {
        padding: 30px 0;
    }

    .cms-popup .popup-overlay-inner {
        width: calc(100% - 60px);
        max-height: calc(100vh - 60px);
        min-height: calc(100vh - 60px);
    }

    .cms-popup .popup-content {
        padding: 35px 20px;
    }

    .cms-popup .popup-close {
        top: 15px;
        right: 15px;
    }
}

@media(max-width:419px) {
    .h1-heading {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 12px;
        line-height: 140%;
    }

    .banner-bottom-items .favour-text {
        font-size: 12px;
        padding: 14px 18px 14px;
    }

    .bottom-cta-bgImage img {
        height: 540px;
    }

    .bottom-cta-content {
        width: 100%;
        padding: 0 30px;
    }

    .footer-top .footer-row .col-1 p {
        font-size: 12px;
        line-height: 140%;
    }

    .footer-top .footer-row .col-2 .footer-col-title,
    .review-info .footer-col-title {
        margin-bottom: 18px;
        line-height: 130%;
        font-size: 14px;
    }

    .footer-top .footer-row .col-2 ul.footer-links a.nav-link {
        line-height: 130%;
        font-size: 12px;
    }

    .footer-bottom .copyright {
        font-size: 12px;
    }

    .footer-bottom a {
        font-size: 12px;
    }
}

@media (max-width: 399px) {
    .iframe-container div[data-tf-medium="snippet"] {
        min-height: 600px;
    }
}