/* VARIABLES */
:root {
    /* font-family */
    --ktf-font-family-DM-Sans: 'DM Sans', sans-serif;

    /* color */
    --kft-color-white: #FFF;
    --kft-color-full-black: #000;
    --kft-color-black: #222;
    --kft-color-gray: #D9D9D9;
    --kft-color-blue: #234BA0;
    --kft-color-bright-blue: #0079FF;
    --kft-color-dull-blue: #4976C5;
    --kft-color-light-blue: #B5D8EC;
    --kft-color-very-light-blue: #E5F6FF;

    /* color gradients */
    --kft-gradient: linear-gradient(0deg, #2E47A3 23.7%, #5083CE 42.08%, #B7D8EB 64.39%, #D5F0FF 76.46%);
    --kft-gradient-light: linear-gradient(180deg, #D8F1FF 0%, var(--kft-color-white) 100%);

    /* spacers */
    --kft-spacer-5px: 5px;
    --kft-spacer-10px: 10px;
    --kft-spacer-12px: 12px;
    --kft-spacer-15px: 15px;
    --kft-spacer-18px: 18px;
    --kft-spacer-20px: 20px;
    --kft-spacer-22px: 22px;
    --kft-spacer-25px: 25px;
    --kft-spacer-30px: 30px;
    --kft-spacer-50px: 50px;
    --kft-spacer-60px: 60px;
    --kft-spacer-70px: 70px;
    --kft-spacer-80px: 80px;
    --kft-spacer-90px: 90px;
    --kft-spacer-120px: 120px;

    /* font-size */
    --kft-fs-12px: 12px;
    --kft-fs-root: 16px;
    --kft-fs-body: var(--kft-fs-root);
    --kft-fs-18px: 18px;
    --kft-fs-20px: 20px;
    --kft-fs-24px: 24px;
    --kft-fs-38px: 38px;
    --kft-fs-45px: 45px;
    --kft-fs-55px: 55px;

    --kft-fs-3: 24px;

    /* line-height */
    --kft-lh-root: normal;
    --kft-lh-body: var(--kft-lh-root);

    /* font-weight */
    --kft-fw-bold: 700;

    /* h1 */
    --kft-fs-h1-m: var(--kft-fs-45px);
    --kft-lh-h1-m: 108%;
    --kft-fs-h1-d: var(--kft-fs-55px);
    --kft-lh-h1-d: 118.182%;

    /* h2 */
    --kft-fs-h2-m: var(--kft-fs-38px);
    --kft-lh-h2-m: 118.421%;
    --kft-fs-h2-d: var(--kft-fs-38px);
    --kft-lh-h2-d: var(--kft-lh-body);

    /* h3 */
    --kft-fs-h3-m: var(--kft-fs-24px);
    --kft-fs-h3-d: var(--kft-fs-24px);

    /* containers */
    --kft-section-border-radius: 30px;

    /* button */
    --kft-btn-border-radius: 100px;
}

/* VARIABLES -END */

/* RESETS and OVERRIDES */
body {
    color: var(--kft-color-black);
    font-family: var(--ktf-font-family-DM-Sans) !important;
    font-smooth: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container-fluid {
    max-width: 1200px;
    --bs-gutter-x: 40px;
    /* MF-TODO: Remove Style when bootstrap 4 is disabled */
    padding-left: 20px;
    /* MF-TODO: Remove Style when bootstrap 4 is disabled */
    padding-right: 20px;
}

p {
    font-family: var(--ktf-font-family-DM-Sans);
    font-size: var(--kft-fs-body);
}

p:last-child {
    margin-bottom: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-weight: var(--kft-fw-bold);
}

h1,
.h1 {
    color: var(--kft-color-blue);
    font-size: var(--kft-fs-h1-m);
    line-height: var(--kft-lh-h1-m) !important;
    margin-bottom: var(--kft-spacer-12px);
}

h2,
.h2 {
    font-size: var(--kft-fs-h2-m);
    line-height: var(--kft-lh-h2-m) !important;
    margin-bottom: var(--kft-spacer-20px);
}

h3,
.h3 {
    font-size: var(--kft-fs-h3-m);
}

.btn {
    font-size: var(--kft-fs-body);
    line-height: var(--kft-lh-body);
    border-radius: var(--kft-btn-border-radius);
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.btn-primary {
    background-color: var(--kft-color-blue) !important;
    border-color: var(--kft-color-blue) !important;
}

.btn-primary:hover {
    color: var(--kft-color-blue);
    background-color: var(--kft-color-white) !important;
}

.btn-outline-primary {
    color: var(--kft-color-blue);
    background: var(--kft-color-white);
    border-color: var(--kft-color-blue);
}

.btn-outline-primary:hover {
    color: var(--kft-color-white);
    background-color: var(--kft-color-blue);
    border-color: var(--kft-color-blue);
}

@media screen and (min-width: 576px) {
    .btn {
        min-width: 160px;
        width: auto;
    }
}

/* MF-TODO: Remove when all pages and theme files are updated  */
/* Override for old bootstrap */
@media screen and (max-width: 991.98px) {
    body:not(.home) .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (min-width: 768px) {
    .btn {
        max-width: 180px;
    }
}

@media screen and (min-width: 992px) {

    h1,
    .h1 {
        font-size: var(--kft-fs-h1-d);
        line-height: var(--kft-lh-h1-d) !important;
    }

    h2,
    .h2 {
        font-size: var(--kft-fs-h2-d);
        line-height: var(--kft-lh-h2-d) !important;
        margin-bottom: var(--kft-spacer-15px);
    }

    h3,
    .h3 {
        font-size: var(--kft-fs-h3-d);
    }
}

hr {
    height: 2px;
}

.section-inner-wrap.rounded-top {
    border-top-right-radius: var(--kft-section-border-radius) !important;
    border-top-left-radius: var(--kft-section-border-radius) !important;
}

.section-inner-wrap.rounded-bottom {
    border-bottom-right-radius: var(--kft-section-border-radius) !important;
    border-bottom-left-radius: var(--kft-section-border-radius) !important;
}

@media screen and (min-width: 1400px) {
    .container {
        max-width: 1200px !important;
    }
}

/* RESETS and OVERRIDES -END */


/* COMPONENTS */
.section-inner-wrap {
    padding-top: var(--kft-spacer-80px);
    padding-bottom: var(--kft-spacer-80px);
}

.kft-mb-25px {
    margin-bottom: var(--kft-spacer-25px);
}

.kft-mb-30px {
    margin-bottom: var(--kft-spacer-30px);
}

.kft-fs-3 {
    font-size: var(--kft-fs-3) !important;
}

.kft-color-blue {
    color: var(--kft-color-blue);
}

.kft-bg-blue {
    background: var(--kft-color-blue);
}

.kft-bg-gray {
    background: var(--kft-color-gray);
}

.kft-bg-gradient-light {
    background: var(--kft-gradient-light);
}

.kft-bg-gradient {
    background: var(--kft-gradient);
}

:has(> .kft-tag) {
    container-type: inline-size;
    container-name: kft-tag-wrap;
}

.kft-tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: var(--kft-fs-body);
    line-height: var(--kft-lh-body);
    color: var(--kft-color-bright-blue);
    background: var(--kft-color-white);
    padding: 10px 20px;
    border-radius: 106px;
    margin-bottom: var(--kft-spacer-18px);
}

/* MF-TODO: Remove When new template is created */
.comments-area {
    margin-bottom: var(--kft-spacer-50px);
}

@container kft-tag-wrap (width < 375px) {
    .kft-tag {
        font-size: var(--kft-spacer-12px) !important;
    }
}

.kft-tag--blue {
    color: var(--kft-color-blue);
}

.kft-tag.border {
    border-width: 2px !important;
    border-color: var(--kft-color-blue) !important;
}

.footnotes {
    font-size: 12px !important;
}

@media screen and (min-width: 768px) {
    .kft-tag {
        font-size: var(--kft-fs-20px);
        padding: 8px 15px;
    }
}

@media screen and (min-width: 992px) {
    .section-inner-wrap {
        padding-top: var(--kft-spacer-120px);
        padding-bottom: var(--kft-spacer-120px);
    }
}

.splide__pagination__page {
    background: var(--kft-color-gray);
    transform: none;
    opacity: .3;
}

.splide__pagination__page.is-active {
    background: var(--kft-color-gray);
    transform: none;
    opacity: 1;
}

/* COMPONENTS > FAQ -START */
.kft-faq-section .section-inner-wrap {
    background: var(--kft-color-white);
}
.kft-faq-accordion {
    margin-left: -15px;
    margin-right: -15px;
    .accordion-item {
        border-bottom: 1px solid #000 !important;
    }
    .accordion-item:not(:last-child) {
        margin-bottom: var(--kft-spacer-10px);
    }
    .accordion-button {
        color: #000;
        font-size: var(--kft-fs-20px);
        padding: var(--kft-spacer-20px);
    }
    .accordion-button:not(.collapsed) {
        background: none;
        box-shadow: none;
    }
    .accordion-button:not(.collapsed)::after {
        transform: rotate(-135deg);
    }
    .accordion-button:focus {
        box-shadow: none;
    }
    .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus-lg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-size: 1.25rem;
        transition: transform 0.2s ease-in-out;
    }
    .accordion-body {
        color: #000;
        padding: var(--kft-spacer-20px);
        padding-top: var(--kft-spacer-30px);
    }
}
@media screen and (min-width: 768px) {
    .kft-faq-accordion {
        margin-left: -15px;
        margin-right: -15px;
    }
}
/* COMPONENTS > FAQ -END */
/* COMPONENTS -END */

/* SECTION: HEADER */
:has(> .site-header) {
    position: relative;
}

.site-header {
    box-shadow: 0 4px 14.4px 0 rgba(0, 0, 0, 0.05);
    background: var(--kft-color-white);
    padding-top: var(--kft-spacer-22px);
    padding-bottom: var(--kft-spacer-22px);
    position: sticky;
    top: 0;
    z-index: 1020;
    /* bootstrap value */
    backdrop-filter: blur(15px);
    background: #FFFFFFB7;
}

.header-logo {
    max-width: 180px;
}

.site-header .navbar {
    padding: 0;
}

/* MF-TODO: Remove When bootstrap 4 is no longer needed */
.site-header .navbar {
    line-height: normal;
}

.site-header .navbar-toggler {
    border: none;
}

.site-header .navbar-toggler:focus {
    border: none;
    box-shadow: unset;
}

.site-header .navbar-toggler {
    border: none;
    padding: 0;
    outline: none !important;
    /* Remove focus ring */
}

.toggler-bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--kft-color-black);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

.navbar-toggler:not(.collapsed)[aria-expanded="true"] .top-bar {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler:not(.collapsed)[aria-expanded="true"] .middle-bar {
    opacity: 0;
}

.navbar-toggler:not(.collapsed)[aria-expanded="true"] .bottom-bar {
    transform: translateY(-8px) rotate(-45deg);
}

.site-header .navbar-nav>.nav-item {
    font-size: var(--kft-fs-18px);
    padding-top: var(--kft-spacer-18px);
    padding-bottom: var(--kft-spacer-18px);
    border-bottom: 1px solid var(--kft-color-gray);
}

.site-header .navbar-nav .dropdown-menu {
    background: none;
    padding-left: 24px;
    border: 0;
}

.site-header .navbar-nav .dropdown-menu .menu-item:not(:last-child) {
    padding-bottom: var(--kft-spacer-15px);
    margin-bottom: var(--kft-spacer-15px);
    border-bottom: 1px solid var(--kft-color-gray);
}

.site-header .navbar-nav .dropdown-item:hover {
    background: none;
}

.site-header .nav-item:hover>.nav-link,
.site-header .navbar-nav li:hover>a {
    color: var(--kft-color-blue);
}

.site-header .nav-link {
    color: var(--kft-color-full-black);
    opacity: 1;
    padding-left: var(--kft-spacer-20px);
    padding-right: var(--kft-spacer-20px);
}

.site-header .btn {
    margin-top: var(--kft-spacer-30px);
    margin-bottom: var(--kft-spacer-30px);
}

#how-it-works,
#reviews,
#shops {
    scroll-margin-top: 150px;
}
@media screen and (min-width: 992px) {
    .site-header .navbar-expand-lg .navbar-collapse {
        padding-bottom: 0;
    }

    .site-header .navbar-expand-lg .navbar-nav {
        margin-right: var(--kft-spacer-10px);
    }

    .site-header .navbar-expand-lg .navbar-nav .dropdown-menu {
        background: var(--kft-color-white);
    }

    .site-header .navbar-expand-lg .navbar-nav>.nav-item {
        font-size: var(--kft-fs-root);
        padding-top: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .site-header .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .site-header .navbar-expand-lg .navbar-nav .dropdown-menu.show {
        padding: 20px;
        border: none;
        border-radius: 20px;
        filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.15));
    }

    .site-header .navbar-expand-lg .navbar-nav .dropdown-menu.show hr {
        height: 1px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .site-header .navbar-expand-lg .btn {
        min-width: unset;
        margin-top: 0;
        margin-bottom: 0;
    }
}

/* SECTION: Header -END */

/* SECTION: Footer Top */
.footer-top {
    background: var(--kft-color-bright-blue);
    color: var(--kft-color-white);
    font-size: var(--kft-fs-12px);
    padding-top: var(--kft-spacer-12px);
    padding-bottom: var(--kft-spacer-12px);
}

.footer-top p {
    margin-bottom: 0;
}

/* SECTION: Footer Top -END */

/* SECTION: Footer Main */
.footer-main {
    background: var(--kft-color-blue);
}

.footer-main__row {
    row-gap: var(--kft-spacer-60px);
}

.footer-logo {
    margin-bottom: var(--kft-spacer-10px);
    max-width: 183px;
}

.footer-copyright {
    font-size: var(--kft-fs-12px);
    color: var(--kft-color-white);
    margin-bottom: var(--kft-spacer-20px);
}

.footer-socials__nav-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-socials__nav-item {
    display: inline-block;
}

.footer-socials__nav-item:not(:last-child) {
    margin-right: var(--kft-spacer-10px);
}

.footer-column__heading {
    color: var(--kft-color-very-light-blue);
    font-weight: var(--kft-fw-bold);
    margin-bottom: var(--kft-spacer-12px);
}

.footer-column__nav-list {
    list-style: none;
    padding: 0;
}

.footer-column__nav-item {
    margin-bottom: var(--kft-spacer-12px);
}

.footer-column__nav-item:hover .footer-column__nav-link {
    text-decoration: underline;
}

.site-footer .footer-column__nav-link {
    text-decoration: none;
    color: var(--kft-color-white) !important;
}

@media screen and (min-width: 768px) {
    .footer-socials__nav-item img {
        max-width: 33px;
    }

    .footer-socials__nav-item:not(:last-child) {
        margin-right: var(--kft-spacer-5px);
    }
}

/* SECTION: Footer Main -END */

/* ========================================================================== */
/* PAGES */
/* ========================================================================== */

/* SPECIFICS */
/* PAGE: Home */
/* SECTION: hero-banner */
.section.hero-banner {
    background: #D5F0FF;
}

.section.hero-banner .section-inner-wrap {
    /* background:
        url(../images/homepage/kftech_homepage_hero_banner_img.png) left bottom / 120% no-repeat, var(--kft-gradient-light); */
    padding-bottom: 0;
    overflow: hidden;
}

.hero-banner__row {
    row-gap: 35px;
}

.section.hero-banner .kft-layout-spacer {
    height: 100vw;
}

.hero-banner-col {
    padding: 0;
    margin-left: 12px;
    margin-right: 12px;
}

.hero-banner-img {
    width: 100vw;
    margin-left: -20px;
    margin-right: -20px;
}

.section.hero-banner .sub-heading p{
    font-size: var(--kft-fs-18px);
    margin-bottom: var(--kft-spacer-30px);
}

.section.hero-banner .btn-row {
    row-gap: var(--kft-spacer-15px);
    column-gap: var(--kft-spacer-20px);
}

.section.hero-banner .btn-row .btn {
    flex: 1 0 50%;
}

@media screen and (min-width: 576px) {
    .section.hero-banner .section-inner-wrap {
        background-position: right bottom;
        background-size: 100%;
    }

    .section.hero-banner .kft-layout-spacer {
        height: 50vw;
    }
}

@media screen and (min-width: 768px) {
    .hero-banner-col {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-left: auto;
        margin-right: auto;
    }

    .hero-banner-img {
        width: 100%;
        margin-left: auto;
        margin-right: -40px;
        -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    }

    .section.hero-banner .section-inner-wrap {
        background:
        url(../images/homepage/kftech_homepage_hero_banner_img_expanded_gradient.png) left calc(50% + (100vw - 20px) * .55) center / contain no-repeat, var(--kft-gradient-light);
    }

    .section.hero-banner .section-inner-wrap {
        padding-top: var(--kft-spacer-120px);
        padding-bottom: var(--kft-spacer-120px);
    }

    .section.hero-banner .sub-heading {
        font-size: var(--kft-fs-20px);
    }
}

@media screen and (min-width: 992px) {

    /* MF-TODO: temporary delete when not in use */
    .section.hero-banner .section-inner-wrap {
        background:
        url(../images/homepage/kftech_homepage_hero_banner_img_expanded_gradient.png) left calc(50% + (100vw - 20px) * .6) center / contain no-repeat, var(--kft-gradient-light);
    }

    .section.hero-banner .kft-layout-spacer {
        height: 0;
    }
}

@media screen and (min-width: 1200px) {
    /* MF-TODO: temporary delete when not in use */
    .section.hero-banner .section-inner-wrap {
        background:
        url(../images/homepage/kftech_homepage_hero_banner_img_expanded.png) left calc(50% + 1200px * .65) bottom / contain no-repeat, var(--kft-gradient-light);
    }
}

@media screen and (min-width: 1400px) {
    .section.hero-banner .section-inner-wrap {
        background:
            url(../images/homepage/kftech_homepage_hero_banner_img_expanded.png) left calc(50% + 1200px * .7) bottom / contain no-repeat, var(--kft-gradient-light);
    }
}

/* SECTION: hero-banner -END */


/* SECTION: selling-point */
/* Slider */
.main-banner-slider,
.banner-slide {
    border-radius: 25px;
    overflow: hidden;
}

.main-banner-slider {
    margin-bottom: var(--kft-spacer-90px);
}

.banner__slide img {
    width: 100%;
    height: auto;
    border-radius: 25px;
}

.product-info {
    margin-bottom: var(--kft-spacer-20px);
    row-gap: var(--kft-spacer-50px);
}

.product-info .sub-heading {
    margin-bottom: var(--kft-spacer-20px);
}

.arrow-body {
    position: absolute;
    top: 60%;
    max-width: max-content;
    left: 60%;
    right: 5%;
}

.arrow-body::before {
    display: block;
    content: " ";
    position: absolute;
    top: -2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--kft-color-bright-blue);
}

.arrow-body::after {
    display: block;
    content: " ";
    position: absolute;
    top: 0;
    width: 70%;
    height: 1px;
    border-top: 1px solid var(--kft-color-bright-blue);
}

.arrow-body>p {
    font-size: 12px;
    position: relative;
    top: 20px;
    left: 20%;
}

.arrow-body>p::before {
    display: block;
    content: " ";
    position: absolute;
    top: -20px;
    left: 50%;
    width: 1px;
    height: 20px;
    border-right: 1px solid var(--kft-color-bright-blue);
}

.product-usps {
    row-gap: var(--kft-spacer-25px);
}

.product-usp {
    text-align: center;
}

.product-usp__title {
    color: var(--kft-color-white);
    font-size: var(--kft-fs-18px);
    margin-bottom: var(--kft-spacer-5px);
}

.product-usp__desc {
    color: var(--kft-color-white);
    margin-bottom: 0;
}

.selling-point hr {
    background-color: #E5F6FF;
    margin-top: var(--kft-spacer-50px);
    margin-bottom: var(--kft-spacer-50px);
}

.product-trust {
    row-gap: var(--kft-spacer-25px);
}

@media screen and (min-width: 768px) {
    .arrow-body::after {
        width: 100%;
    }
    .arrow-body>p {
        left: 50%;
    }
    .product-usp__title {
        font-size: var(--kft-fs-20px);
    }

    .product-usp__desc {
        color: var(--kft-color-white);
        margin-bottom: 0;
    }
}

/* SECTION: selling-point -END */

/* SECTION: life-moments */
.section.life-moments {
    position: relative;
    background: #2E47A3;
}

.section.life-moments .section-inner-wrap {
    background: var(--kft-color-white);
}

.section.life-moments .section-heading {
    position: sticky;
    top: var(--kft-spacer-120px);
    margin-bottom: var(--kft-spacer-50px);
}

.kft-lmoments {
    row-gap: var(--kft-spacer-50px);
}

.kft-lmoment a {
    text-decoration: none !important;
}

.kft-lmoment__figure {
    margin-top: 0;
    margin-bottom: 0;
}

.kft-lmoment img {
    border-radius: 20px;
    margin-bottom: var(--kft-spacer-25px);
}

.kft-lmoment figcaption {
    color: var(--kft-color-black);
    padding-bottom: 0;
}

.kft-lmoment__title {
    color: var(--kft-color-blue);
    text-decoration: none !important;
    margin-bottom: var(--kft-spacer-5px);
}

@media screen and (min-width: 768px) {
    .section.life-moments .section-heading {
        margin-bottom: 0;
    }
}

/* SECTION: life-moments -END */

/* SECTION: product-package */
.section.product-package {
    background-color: var(--kft-color-white);
}

.section.product-package .section-inner-wrap {
    background:
        linear-gradient(#072881ee, #072881ee), url('../images/homepage/kftech_product_package_bg.png') center / cover no-repeat;
    background-color: #072881;
}

.section.product-package .sub-heading {
    margin-bottom: var(--kft-spacer-30px);
}

.kft-products {
    margin-bottom: var(--kft-spacer-70px);
}

.kft-products>div:not(:last-child)::after {
    content: " ";
    display: block;
    width: 100%;
    height: 0;
    border-bottom: 1px solid #E5F6FF;
}

.kft-product__figure {
    text-align: center;
    margin-top: 35px;
    margin-bottom: 35px;
}

.kft-product__figcaption {
    padding: 0;
}

.kft-product__title {
    font-size: var(--kft-fs-body) !important;
    margin-bottom: var(--kft-spacer-10px);
}

.kft-product__title,
.kft-product__desc {
    text-align: center;
    color: var(--kft-color-white);
}

@media screen and (min-width: 768px) {
    .section.product-package .section-inner-wrap {
        background:
            linear-gradient(#072881ee, #072881ee), url('../images/homepage/kftech_product_package_bg.png') center / 200% no-repeat;
    }

    .kft-product__figure {
        margin-top: 0;
        margin-bottom: 0;
    }

    .section.product-package .btn {
        max-width: unset;
    }

    .kft-products>div:not(:last-child) {
        border-right: 1px solid #E5F6FF;
    }

    .kft-products>div:not(:last-child)::after {
        content: none;
    }

    .kft-product__img-wrap {
        display: block;
        width: 100%;
        height: 0;
        padding-bottom: 100%;
        position: relative;
    }

    .kft-product__img-wrap img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-height: 100%;
    }
}

/* SECTION: product-package -END */

/* SECTION: Testimonials & Stores */
.section.testimonials-stores hr {
    margin-top: var(--kft-spacer-70px);
    margin-bottom: var(--kft-spacer-70px);
}

/* Testimonials */
.kft-testimonials .section-heading {
    margin-bottom: var(--kft-spacer-22px);
}

.kft-testimonials .sub-heading {
    margin-bottom: var(--kft-spacer-50px) !important;
}

.testimonial-slider {
    margin-bottom: var(--kft-spacer-25px);

    .splide__arrows {
        position: absolute;
        /* 50px - margin from previous element */
        /* 32px - current height of this element */
        top: calc((50px + 32px/2) * -1);
        right: 0;
        width: 75px;
    }

    .splide__arrow {
        opacity: 1;
        position: absolute;
        border: 2px solid var(--kft-color-blue);
        background: var(--kft-color-white);
    }

    .splide__arrow svg {
        fill: var(--kft-color-blue);
    }

    .splide__arrow:hover:not(:disabled) {
        opacity: 9;
        background: var(--kft-color-blue);
    }

    .splide__arrow:hover:not(:disabled) svg {
        fill: var(--kft-color-white);
    }

    .splide__arrow--prev {
        left: 0px;
    }

    .splide__arrow--next {
        right: 0px;
    }

    .splide__pagination {
        position: static;
        margin-top: var(--kft-spacer-25px);
        margin-bottom: var(--kft-spacer-50px);
    }
}

.testimonial {
    background:
        url('../images/homepage/top-quote.svg') left 25px top 18px / auto no-repeat,
        url('../images/homepage/top-quote.svg') left -10px top 18px / auto no-repeat,
        url('../images/homepage/bottom-quote.svg') right 25px bottom 18px / auto no-repeat,
        url('../images/homepage/bottom-quote.svg') right -10px bottom 18px / auto no-repeat,
        var(--kft-color-very-light-blue);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    height: 100%;
    /* max-height: 250px; */
    padding: 30px;
    border-radius: 20px;
    /* margin-right: 15px; */
}

.testimonial__content {
    /* display: -webkit-box; */
    /* -webkit-line-clamp: 7; */
    /* Show exactly 3 lines */
    /* -webkit-box-orient: vertical; */
    /* overflow: hidden; */
    display: -webkit-box;
    /* Required for line-clamp to work */
    -webkit-box-orient: vertical;
    /* Required to define box flow direction */
    -webkit-line-clamp: 5;
    line-clamp: 5;
    /* Number of lines to show before ellipsis */
    overflow: hidden;
}

.testimonial__author {
    font-size: var(--kft-fs-12px);
    font-weight: var(--kft-fw-bold);
    margin-top: 0;
    margin-bottom: 0;
}

.testimonial__author-title {
    font-size: var(--kft-fs-12px);
    margin-bottom: 0;
}

/* Stores */
.kft-stores>.row {
    row-gap: var(--kft-spacer-60px);
}

.kft-store__btn.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    width: 100%;
    height: 60px;
    max-width: unset;
    margin-bottom: var(--kft-spacer-22px);
}

.kft-store__btn.btn:hover {
    background: white;
}

.kft-store__logo {
    width: auto;
    height: auto;
    max-width: 150px;
    max-height: 45px;
}

@media screen and (min-width: 992px) {
    .section.kft-testimonials .section-heading {
        margin-bottom: var(--kft-spacer-10px);
    }
    .testimonial-slider {
        .splide__track {
            -webkit-mask-image: linear-gradient(to right, black 98%, transparent 100%);
            mask-image: linear-gradient(to right, black 98%, transparent 100%);
        }
    }
}

/* SECTION: Testimonials & Stores -END */



/* SECTION: Closing */
.section.closing {
    background: linear-gradient();
}

.section.closing .section-inner-wrap {
    background:
        url('../images/homepage/kftech_homepage_closing_couple_bg.png') bottom / auto no-repeat, linear-gradient(0, #71C9F6 0%, #AADEF9 45%, #D1ECF8 100%);
}

.section.closing hr {
    margin-top: var(--kft-spacer-30px);
    margin-bottom: var(--kft-spacer-30px);
}

.section.closing .kft-layout-spacer {
    height: 50vh;
}

@media screen and (min-width: 768px) {
    .section.closing .section-inner-wrap {
        background:
            url('../images/homepage/kftech_homepage_closing_couple_bg.png') left bottom/ 60% no-repeat, linear-gradient(90deg, #71C9F6 0%, #AADEF9 45%, #D1ECF8 100%);
    }

    .section.closing .kft-layout-spacer {
        height: auto;
    }
}

@media screen and (min-width: 1200px) {
    .section.closing .section-inner-wrap {
        background-size: auto;
    }
}

@media screen and (min-width: 1440px) {
    .section.closing .section-inner-wrap {
        background:
            url('../images/homepage/kftech_homepage_closing_couple_bg.png') calc(50% - 300px) bottom/ auto no-repeat, linear-gradient(90deg, #71C9F6 0%, #AADEF9 45%, #D1ECF8 100%);
    }
}

/* SECTION: Closing -END */
/* PAGE: Home -END */
/* PAGE: Medicated Plaster */
/* SECTION: Medicated Plaster > Hero Section, Product Info, Product Specs */
.hero-info-spec-group {
    background-color: var(--kft-color-very-light-blue);
}
.mp-hero__figure {
    margin-bottom: var(--kft-spacer-60px);
}
.mp-hero-section .section-heading,
.mp-hero-section .page-heading {
    margin-bottom: var(--kft-spacer-60px);
}
.mp-hero__desc {
    background-color: var(--kft-color-white);
    padding: var(--kft-spacer-30px);
    border-radius: var(--kft-section-border-radius);
}

.mp-product-info {
    margin-bottom: var(--kft-spacer-60px);
}
.product-spec-row {
    row-gap: var(--kft-spacer-60px);
    align-items: center;
}
.product-spec-slider-wrap {
    position: relative;
    background: var(--kft-color-light-blue);
    padding: var(--kft-spacer-30px);
    padding-right: 0;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: var(--kft-spacer-30px);
}
.product-spec-slider .splide__pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(var(--kft-spacer-70px) * -1);
    margin-right: var(--kft-spacer-30px);
}
.product-spec-slider {
    .splide__slide img {
        aspect-ratio: 4 / 3;
        object-fit: contain;
    }
}
.mp-product-info .section-heading {}
@media screen and (min-width: 768px) {
    .mp-hero__figure {
        margin-bottom: var(--kft-spacer-70px);
    }
    .mp-hero-section .section-heading,
    .mp-hero-section .page-heading {
        margin-bottom: var(--kft-spacer-70px);
    }
    .mp-hero__desc {
        padding: var(--kft-spacer-60px);
        margin-left: auto;
        margin-right: auto;
    }
    .mp-product-info {
        margin-bottom: var(--kft-spacer-80px);
    }
    .product-spec-slider-wrap {
        border-radius: var(--kft-section-border-radius);
        margin-left: 0;
        margin-right: 0;
    }
}
/* SECTION: Medicated Plaster > Hero Section, Product Info, Product Specs -END */

/* SECTION: Medicated Plaster > USP */
.mp-usp-section {
    color: var(--kft-color-white);
    background: var(--kft-color-very-light-blue);
}
.mp-usp-section .section-inner-wrap {
    background-color: var(--kft-color-dull-blue);
}
.mp-usp-section .section-heading {
    margin-bottom: var(--kft-spacer-60px);
}
.mp-usps .usp.usp--wide:not(:last-child){
    padding-bottom: var(--kft-spacer-90px);
    border-bottom: 1px solid var(--kft-color-light-blue);
    margin-bottom: var(--kft-spacer-90px);
}
.usp.usp--wide {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    .usp__header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        row-gap: var(--kft-spacer-10px);
    }
}
@media screen and (min-width: 768px) {
    .mp-usp-section .section-heading {
        position: sticky;
        top: var(--kft-spacer-120px);
        margin-bottom: 0;
    }
    .usp.usp--wide {
        .usp__header {
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
            column-gap: var(--kft-spacer-10px);
            row-gap: var(--kft-spacer-10px);
        }
        .usp__img {
            max-width: 100px;
            max-height: 100px;
        }
    }
}
/* SECTION: Medicated Plaster > USP -END */

/* SECTION: Medicated Plaster > Testimonails, Stores */
.page-medicated-plaster .testimonials-stores {
    background-color: #D5F0FF;
}
.page-medicated-plaster .testimonials-stores .section-inner-wrap{
    background-color: var(--kft-color-white);
}
.page-medicated-plaster .testimonial-slider     .splide__arrows {
    top: calc((22px + 32px/2) * -1);
}
/* SECTION: Medicated Plaster > Testimonials, Stores -END */

/* SECTION: Medicated Plaster > How To Use, Cautionary Notes */
.usage-caution-group {
    background: var(--kft-gradient);
}
.how-to-use-section {
    margin-bottom: var(--kft-spacer-60px);
}
.how-to-use__row {
    row-gap: var(--kft-spacer-60px);
}
.how-to-use__desc {
    color: var(--kft-color-black);
}
.how-to-use__desc ol {
    padding-left: 1.5rem;
}
.how-to-use__img {
    border-radius: var(--kft-section-border-radius);
}
.cautionary-notes-wrap {
    background: var(--kft-color-white);
    padding: var(--kft-spacer-30px);
    border-radius: var(--kft-section-border-radius);
}
.note__heading {
    font-size: var(--kft-fs-root);
    font-weight: bold;
    margin-bottom: 0;
}
.note__list {
    padding-left: 1rem;
}
@media screen and (min-width: 768px) {
    .cautionary-notes-wrap {
        padding: 0;
        padding-top: var(--kft-spacer-90px);
        padding-bottom: var(--kft-spacer-90px);
    }
}
/* SECTION: Medicated Plaster > How To Use, Cautionary Notes -END */

/* SECTION: Medicated Plaster > FAQ */
.page-medicated-plaster {
    .kft-faq-section {
        background: #2E47A3;
    }
}
/* SECTION: Medicated Plaster > FAQ -END */
/* PAGE: Medicated Plaster -END */
/* SPECIFICS -END */