body, html {
    font-size: clamp(17px, calc(17px + (8 * ((100vw - 1200px) / 720))), 24px);
}

body {
    overflow-x: hidden;
    font-family: 'Raleway', sans-serif;
    line-height: 1.5;
    color: #000000;
    font-weight: 300;
    background: #FFFFFF;
}

body.loading {
    overflow: hidden;
}

.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: white;
    display: flex;
}

.loader {
    width: 50px;
    height: 28px;
    --_g: no-repeat radial-gradient(farthest-side,#000 94%,#0000);
    background:
        var(--_g) 50%  0,
        var(--_g) 100% 0;
    background-size: 12px 12px;
    position: relative;
    animation: l23-0 1.5s linear infinite;
}

.loader:before {
    content: "";
    position: absolute;
    height: 12px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #EE7874;
    left:0;
    top:0;
    animation: 
        l23-1 1.5s linear infinite,
        l23-2 0.5s cubic-bezier(0,200,.8,200) infinite;
}

@keyframes l23-0 {
    0%,31%  {background-position: 50% 0   ,100% 0}
    33%     {background-position: 50% 100%,100% 0}
    43%,64% {background-position: 50% 0   ,100% 0}
    66%     {background-position: 50% 0   ,100% 100%}
    79%     {background-position: 50% 0   ,100% 0}
    100%    {transform:translateX(calc(-100%/3))}
}

@keyframes l23-1 {
    100% {left:calc(100% + 7px)}
}

@keyframes l23-2 {
    100% {top:-0.1px}
}

.py-6 {
    padding-block: 5rem;
}

.container-fluid {
    padding-inline: 10rem;
    max-width: 1920px;
}

.siteHeader {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 99;
    background: #f0f0f0;
    padding: 0.789rem 0;
    transition: top 0.3s ease;
}

.siteLogo img {
    height: auto;
    width: 10.41rem;
}

.siteBtn {
    background: transparent;
    font-size: 0.947rem;
    color: white;
    text-transform: capitalize;
    border: none;
    border-radius: 5rem;
    line-height: 1.5;
    padding: 0.6rem 1.11rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 2.68rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}

.siteBtn::after {
    position: absolute;
    inset: 1px;
    content: "";
    border-radius: 5rem;
    background: #EE7874;
    z-index: 1;
    transform: scale(1);
    transform-origin: center bottom;
    transition: transform 0.3s ease;
}

.siteBtn_outline {
    color: #EE7874;
}

.siteBtn_outline::after {
    background: transparent;
    border: 1px solid #EE7874;
}

.siteBtn::before {
    position: absolute;
    inset: -2px;
    content: "";
    border-radius: 5rem;
    background: #000000;
    z-index: 2;
    transform: translateY(110%);
    transition: transform 0.3s ease;
}

.siteBtn_alt::after {
    background: #aaa;
}

.siteBtn_white::before {
    background: white;
}

.siteBtn:hover {
    background: transparent;
    color: white;
}

.siteBtn:hover::before {
    transform: translateY(0);
}

.siteBtn:hover::after {
    transform: scale(0.75);
}

.siteBtn span {
    position: relative;
    z-index: 3;
}

.bannerSection .container-fluid {
    gap: 3rem;
}

.bannerSection_content {
    gap: 1.5rem;
}

.bannerSection h1 {
    font-size: 2.4rem;
    line-height: 1.18;
}

.certifications {
    gap: 2.5rem;
}

.certifications img {
    width: auto;
    height: 2.4rem;
    filter: grayscale(1);
}
    
.featuresSection,
.storySection {
    background: #F5F5F7;
    padding-bottom: 3.75rem;
}

.productSection {
    padding-bottom: 3.75rem;
}

.featured_inner {
    width: 44.167rem;
    max-width: 100%;
}

.featuresSlider_nav {
    position: absolute;
    right: 0rem;
    width: 2.3rem;
    height: 2.3rem;
    background-color: #EE7874;
    z-index: 4;
    border-radius: 50%;
    top: 50%;
    transform: translateY(calc(-50% - 0.75rem)) translateX(50%);
    background-image: url(assets/icons/right.svg);
    background-size: contain;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.featuresSlider_nav.hidden {
    opacity: 0;
    pointer-events: none;
}

.featuresSlider_nav.prev {
    right: none;
    left: 0;
    transform: translateY(calc(-50% - 0.75rem)) translateX(-55%) rotate(180deg);
}

.sectionHead {
    font-size: 1.83rem;
    line-height: 1.18;
}

.featureSlide {
    background: #FFFFFF;
    padding: 1.25rem 1.25rem;
    border-radius: 0.833rem;
    min-height: 10rem;
    display: flex;
    align-items: center;
}

.featureSlide p {
    font-weight: 500;
    font-size: 1.05rem;
}

.featuresSection .splide__track {
    border-radius: 0.833rem;
}

.splide__pagination {
    position: static;
    margin-top: 0.5rem;
}

.splide__pagination__page {
    height: 3px;
    width: 1.25rem;
    border-radius: 5px;
    background: #000000;
    opacity: 0.15;
}

.splide__pagination__page.is-active {
    transform: none;
    background: #000000;
    opacity: 1;
}

.storySection .splide__pagination__page,
.storySection .splide__pagination__page.is-active {
    background: white;
}

.highlightSection {
    background: #F5F5F7;
}

.highlight h6 {
    font-size: 1rem;
    line-height: 1.33;
    font-weight: 300;
    margin: 0;
}

.highlight h5 {
    font-family: "Readex Pro", sans-serif;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 200;
    color: #000000;
    margin: 0;
    min-width: 2.6rem;
    padding-right: 0.4rem;
    text-align: right;
}

.numbersText {
    font-family: "Readex Pro", sans-serif;
}

.partners {
    gap: 2.5rem;
}

.partners img {
    width: auto;
    height: 6rem;
    filter: grayscale(1);
}

.benefitsSection {
    background: #F5F5F7;
}

.benefitWrap {
    background: white;
    display: flex;
    gap: 0.4rem;
    align-items: center;
    border-radius: 0.833rem;
    padding: 1rem 0.5rem;
    height: 100%;
}

.benefitWrap img {
    width: 5rem;
}

.benefitWrap h4 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.33;
    font-weight: 500;
}

.benefitWrap p {
    margin-bottom: 0.4rem;
}

.faqSection {
    background: #F5F5F7;
}

.accordion,
.accordion * {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.accordion-button {
    background-color: white !important;
    color: #000000 !important;
    font-size: 1.15rem;
    line-height: 1.33;
    font-weight: 400;
    align-items: start;
}

.accordion-item {
    border-radius: 0.833rem !important;
    overflow: hidden;
}

.accordion-button::after {
    width: 1rem;
    height: 1rem;
    margin-top: 0.3rem;
    background-image: url(assets/icons/minus.svg) !important;
    background-size: cover;
}

.accordion-button:not(.collapsed)::after {
    transform: none !important;
    background-image: url(assets/icons/close.svg) !important;
}

.siteFooter {
    background: white;
}

.socialLinks,
.contactBoxWrap {
    gap: 1rem;
}

.contactBox {
    position: relative;
    z-index: 1;
    padding-left: 1.5rem;
}

.contactBox img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 0.9rem;
    height: 0.9rem;
    object-fit: contain;
    object-position: center center;
}

.contactBox p {
    margin: 0;
}

.socialLinks img {
    width: 0.9rem;
    height: 0.9rem;
}

.footerBottom {
    font-size: 0.84rem;
}

/*---------------- PRODUCT CARD ----------------*/

.producContent_price {
    font-size: 1.35rem;
    line-height: 1.33;
    font-family: "Readex Pro", sans-serif;
    font-weight: 400;
    margin-bottom: 1.25rem;
}

.producContent_price small {
    font-family: 'Raleway', sans-serif;
    font-size: 0.5em;
}

.producContent_qty {
    background: #F5F5F7;
    width: 17.368rem;
    height: 2.68rem;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    margin-bottom: 0.667rem;
}

.producContent_qty .change_qty {
    width: 1.368rem;
    height: 1.368rem;
    cursor: pointer;
}

.producContent_qty .change_qty img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    vertical-align: top !important;
}

.producContent_cart img {
    width: 1.368rem;
    height: 1.368rem;
    object-fit: contain;
    object-position: center center;
    vertical-align: top !important;
}

.producContent_cart span {
    line-height: 1;
    font-family: "Readex Pro", sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
}

.producContent_buy_now {
    height: 2.68rem;
    width: 17.368rem;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 0.667rem;
}

.producContent_buy_now sup {
    font-size: 0.5rem;
}

.producContent_note {
    font-size: 0.85rem;
    line-height: 1.3;
}

.producContent_footer {
    margin-top: 2.5rem;
    line-height: 1.8rem;
}

.productSlide {
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.productSlide_header {
    padding-block: 2.5rem 1rem;
}

.productSlide_header img {
    width: 8.4167rem;
    height: auto;
}

.productSlide_body {
    position: relative;
    z-index: 1;
}

.productSlide_body img {
    width: 100%;
    object-fit: contain;
    object-position: right center;
    padding-right: 7rem;
    position: relative;
    z-index: 1;
}

.productFeatures {
    padding: 1.5rem;
}

.featureIcon {
    display: flex;
    gap: 0.66rem;
    align-items: center;
}

.featureIcon img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    object-position: right center;
}

.featureIcon h5 {
    font-weight: 300;
    font-size: 1.578rem;
    margin-bottom: 0.2166rem;
    line-height: 1;
}

.featureIcon p {
    font-size: 0.842rem;
    line-height: 1;
    font-weight: 400;
}

.productFeatures ul {
    font-size: 0.9rem;
}


/*------------- STORIES --------------*/

.storySlide {
    background: white;
    border-radius: 0.833rem;
    overflow: hidden;
}

.storySection .splide__track {
    border-radius: 0.833rem;
}

.storySlide_contentWrap {
    height: 100%;
    position: relative;
    height: 25rem;
}

.storySlide_contentWrap img {
    position: relative;
    width: 50%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 2;
    left: 0;
    transition: left 0.3s ease-in-out;
}

.storySlide_content {
    position: absolute;
    left: 0;
    width: 50%;
    top: 0;
    height: 100%;
    z-index: 1;
    padding: 1.25rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    transition: left 0.3s ease-in-out;
}

.storySlide_content h3 {
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.2;
}

.storySlide_content h6 {
    font-size: 0.66rem;
    line-height: 1.2;
}

.is-visible .storySlide_content {
    left: 50%;
}

.is-prev .storySlide_contentWrap img {
    left: 50%;
}

.modal-dialog {
    max-width: 50rem !important;
}



/*-------------- CONCENT ---------------*/

.consent-popup {
    position: fixed;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    border-radius: 0.8rem;
    background: black;
    z-index: 99;
    transform: translateY(0);
    transition: transform 0.5s ease;
    display: none;
}

.consent-popup p {
    font-size: 0.75rem;
}

.consent-popup .siteBtn {
    font-size: 0.75rem !important;
}

.consent-popup .siteBtn:hover {
    color: black !important;
}

.consent-popup .siteBtn:hover::before {
    background: white !important;
}

.sectionFocus {
    position: relative;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.productSection {
    overflow: hidden;
}

.sectionFocus::after {
    position: absolute;
    inset: -2rem;
    content: "";
    border: 0rem solid #ddd;
    z-index: 1;
    border-radius: 2rem;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.sectionFocus.onFocus {
    transform: scale(0.95);
}

.onFocus::after {
    border-width: 0.35rem;
}

.videoPopup .modal-content {
    background: transparent !important;
}

.videoPopup * {
    border: none !important;
    border-radius: 0 !important;
}

iframe {
    aspect-ratio: 16/9;
}

.videoSection img {
    border-radius: 0.5rem;
    cursor: pointer;
}