* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #13499f;
}
body {
    overflow-x: hidden;
}
.body_bg {
    background: #f6fbff;
    font-family: "Hanken Grotesk", sans-serif !important;
}
.body_bg h1,
.body_bg h2,
.body_bg h3,
.body_bg h4,
.body_bg h5,
.body_bg h6,
.navbar-brand {
    font-family: "Poppins", sans-serif;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
    gap: 8px;
    height: 48px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgb(19 73 159 / 25%);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    font-size: 15px;
    border-radius: 999px;
    background-color: #fff;
    border: 1px solid #1a1a1a;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    gap: 10px;
    box-sizing: border-box;
    height: 48px;
}
.btn-light {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #111;
    padding: 14px 34px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    gap: 10px;
}

.btn-light:hover {
    transform: translateY(-2px);
}
/*--- Custom Container ---*/
.custom_container_one {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}
.custom_container_two {
    max-width: 1199px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/*--- Header ---*/
.tele-header {
    background: #fff;
    position: relative;
}
.tele-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
    position: relative;
    z-index: 1001;
    background-color: #fff;
}

/* Logo */
.tele-logo {
}

/* Desktop Nav */
.tele-nav {
    gap: 20px;
    margin-right: 20px;
}

.tele-nav a,
.tele-nav .tele-nav-trigger {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    position: relative;
    transition: 0.3s;
}

.tele-nav a:hover,
.tele-nav .tele-nav-trigger:hover,
.tele-nav .tele-nav-trigger[aria-expanded="true"],
.tele-nav .tele-nav-dropdown:focus-within .tele-nav-trigger {
    color: #174ea6;
}

.tele-nav-item {
    position: relative;
}

.tele-nav .tele-nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.tele-nav-caret {
    /* width: 7px;
    height: 4px; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0deg);
    transform-origin: center;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.tele-nav-caret svg {
    display: block;
    /* width: 7px;
    height: 4px; */
}

.tele-nav .tele-nav-trigger[aria-expanded="true"] .tele-nav-caret,
.tele-mobile-menu
    .nav-item-has-children
    .nav-link-toggle[aria-expanded="true"]
    .tele-nav-caret {
    transform: rotate(180deg);
}

.tele-submenu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    min-width: 220px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    border: 1px solid rgba(19, 73, 159, 0.08);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(10, 33, 79, 0.12);
    transform: translateX(-50%);
    z-index: 1105;
}

.tele-submenu a {
    padding: 10px 12px;
    border-radius: 10px;
    white-space: nowrap;
}

.tele-submenu a:hover,
.tele-submenu a:focus-visible {
    color: #174ea6;
    background: rgba(19, 73, 159, 0.06);
}

/* CTA Button */
.tele-btn {
}

/* Hamburger */
.tele-hamburger {
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    background: linear-gradient(90deg, #13499f 0%, #25bdbd 100%);
    border-radius: 8px;
    display: inline-flex;
    line-height: 0;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
}

/* Overlay */
.tele-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    z-index: 1000;
}
.tele-mobile-menu {
    position: absolute;
    top: 68px;
    right: 16px;
    width: 260px;
    background: #04448b;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 26px;
    z-index: 1100;
}
.tele-mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.tele-mobile-menu .navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tele-mobile-menu .nav-item {
    margin: 0;
}

.tele-mobile-menu .nav-link,
.tele-mobile-menu .nav-link-toggle {
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    background: transparent;
    border: 0;
}

.tele-mobile-menu .nav-submenu {
    margin: 12px 0 0;
    padding: 0 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.tele-mobile-menu .nav-submenu .nav-link {
    color: rgba(255, 255, 255, 0.84);
    justify-content: flex-start;
}

/*--- Hero Sec ---*/
.hero-section {
    background: radial-gradient(
        68.82% 68.82% at 50% 50.06%,
        #d4e9ff 0%,
        #ffffff 89.95%
    );
    padding: 60px 0 26px;
}
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-title {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-desc {
    font-size: 17px;
    color: #000;
    margin-bottom: 32px;
    max-width: 420px;
}
.hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}
.hero-list {
    margin-bottom: 40px;
}
.serm-hero-list {
    margin-bottom: 40px;
}
.custom_list {
    list-style: none;
    padding: 0;
}
.custom_list li {
    position: relative;
    margin-bottom: 14px;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 400;
    font-family: "Hanken Grotesk";
    color: #000;
}
.custom_list li .round-check-icon-svg {
    width: 17px;
    height: 17px;
    color: #3175c1;
    flex-shrink: 0;
    display: block;
    transform: translateY(5px);
}
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    align-items: stretch;
}
.hero-images picture {
    display: block;
    width: 100%;
    height: 100%;
}
.hero-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}
.hero-img-grid {
    display: grid;
    gap: 16px;
}
.hero-img-wide {
    grid-column: 1 / span 2;
}

.hero-reveal,
.hero-media-reveal {
    opacity: 0;
    will-change: transform, opacity;
}

.hero-reveal {
    transform: translate3d(0, 28px, 0);
    transition:
        opacity 0.75s ease,
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--hero-delay, 0s);
}

.hero-media-reveal {
    transform: translate3d(0, 36px, 0) scale(0.96);
    transform-origin: center center;
    transition:
        opacity 0.8s ease,
        transform 0.95s cubic-bezier(0.2, 0.95, 0.3, 1);
    transition-delay: var(--hero-delay, 0s);
}

.hero-section.is-loaded .hero-reveal,
.hero-section.is-loaded .hero-media-reveal {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.hero-section.is-loaded .hero-buttons .btn-primary,
.hero-section.is-loaded .hero-buttons .btn-outline {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

[data-reveal] {
    --reveal-delay: 0ms;
    --reveal-duration: 760ms;
    --reveal-distance: 18px;
    --reveal-scale: 0.995;
    opacity: 0;
    transform: translate3d(0, var(--reveal-distance), 0)
        scale(var(--reveal-scale));
    transition:
        opacity calc(var(--reveal-duration) * 0.72) ease,
        transform var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay);
    will-change: transform, opacity;
}

[data-reveal="soft"] {
    --reveal-distance: 12px;
    --reveal-scale: 0.998;
}

[data-reveal="card"] {
    --reveal-distance: 22px;
    --reveal-scale: 0.99;
    transform-origin: 50% 100%;
}

[data-reveal="media"] {
    --reveal-distance: 20px;
    --reveal-scale: 0.99;
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    .hero-reveal,
    .hero-media-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/*--- Ticker Sec ---*/
.ticker-section {
    padding: 14px 0;
    overflow: hidden;
    margin-top: 28px;
}
.ticker-container {
    max-width: 1500px;
    margin: 0 auto;
    overflow: hidden;
}
.ticker {
    width: 100%;
    overflow: hidden;
}
.ticker-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: tickerMove 35s linear infinite;
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    font-family: "Inter", sans-serif;
}
.ticker-item svg {
    width: 18px;
    height: 18px;
    fill: #6b7280;
    flex-shrink: 0;
}
.ticker-track:hover {
    animation-play-state: paused;
}
@keyframes tickerMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/*--- Home Product Section ---*/
.products-section {
    padding: 100px 0 80px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px 50px;
}
.product-card {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 30px 20px 160px;
    background: radial-gradient(80% 80% at 50% 50%, #ffffff 0%, #dbe9f8 100%);
    border-radius: 20px;
    overflow: visible;
    transition: transform 0.3s ease;
    cursor: pointer;
    height: 228px;
}
.product-card:hover {
    transform: translateY(-2px);
}
.index-product-img {
    position: absolute;
    left: 20px;
    bottom: 20px;
}
.index-product-img img {
    width: 120px;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}
.product-content {
    flex: 1;
    width: 100%;
}
.product-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}
.product-content h3 {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.2px;
    margin-bottom: 8px;
}
.product-content h3 span.bold {
    font-weight: 600;
}
.price {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 0;
}
.stock-badge {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px 12px;
    color: #5d748e;
    font-weight: 400;
    border-radius: 12px;
    border: 1px solid #5d748e;
    background: #fff;
    flex-shrink: 0;
}
.product-card .btn-primary {
}

/* --- Home Steps Section --- */
.steps-section {
    padding: 20px 0 40px;
}
.steps_container {
    max-width: 1099px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}
.section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
}
.section-header h2 {
    font-size: clamp(28px, 3vw, 30px);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 16px;
}
.section-header p {
    color: #000;
    font-size: 17px;
}
.step-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
}
.steps_list .step-row:last-child {
    margin-bottom: 0;
}
.step-row.reverse {
    direction: rtl;
}
.step-row.reverse .step-content {
    direction: ltr;
}
.step-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.05));
}
.step-content {
    position: relative;
}
.step-number {
    color: #ecececad;
    font-size: 65px;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    letter-spacing: 4px;
    display: inline-flex;
}
.step-content h3 {
    font-size: 26px;
    color: #000;
    font-weight: 600;
    margin-bottom: 16px;
}

.step-content p {
    font-size: 17px;
    color: #000;
    margin-bottom: 20px;
}

.step-content ul {
    margin-bottom: 30px;
    padding-left: 18px;
}

.step-content ul li {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 8px;
    position: relative;
}
.step-content ul li::before {
    content: "\25A0";
    position: absolute;
    left: -15px;
    top: 8px;
    /* transform: translateY(-50%); */
    color: inherit;
    font-size: 8px;
}

/* ---  Home Features Section */
.features-section {
    padding: 60px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.feature-card {
    border-radius: 20px;
    background: radial-gradient(
        70.01% 70.01% at 50% 50%,
        #fff 0%,
        #e0efff 100%
    );
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 520px;
    transition: 0.3s ease;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-6px);
}
.feature-card .feature-content {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}
.feature-content h3 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 14px;
    color: #111827;
    text-align: left;
    max-width: 446px;
}

.feature-content p {
    font-size: 17px;
    color: #000;
    max-width: 420px;
    text-align: left;
}

.feature-media {
    margin: 40px 0;
    text-align: center;
}

.feature-media img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* START Testimonials Section */
.testimonials-section {
    padding: 40px 0 48px;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-size: 40px;
    margin-bottom: 14px;
    font-weight: 500;
}
.testimonials-header p {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 0;
}

.trust-badges {
    display: flex;
    gap: 16px;
}

/* SWIPER */
.testimonialSwiper {
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    /* overflow: visible; */
}

.testimonialSwiper .swiper-slide {
    width: 340px;
}

/* CARD */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    /* width: 320px; */
    overflow: hidden;
}

.testimonial-card.large img {
    /* width: 100%;
  height: 520px;
  object-fit: cover; */
}

/* Overlay */
.testi-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0), transparent);
    border-radius: 20px;
}

/* Play */
.play-btn {
    object-fit: contain;
    cursor: pointer;
}

/* NAV */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.custom-prev,
.custom-next {
    color: #111;
    position: static;
}

.testimonial-nav .swiper-button-next::after,
.testimonial-nav .swiper-button-prev::after {
    content: none !important;
}
.custom-prev svg,
.custom-next svg {
    transform: scale(1.5);
}

/* 4K */
@media (min-width: 1800px) {
    .testimonial-card.large {
        width: 480px;
    }

    .testimonial-card.large img {
        height: 620px;
    }
}
/* End Testimonials Section */

/* Start FAQ */
/* ============================= */
.faq-section {
    padding: 20px 0 40px;
}

.faq-title {
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 60px;
}

/* ============================= */
.faq-list {
    max-width: 930px;
    margin: 0 auto;
}

/* ITEM */
.faq-item {
    border-bottom: 1px solid #d1d5db;
    padding: 26px 0;
}
.faq-item:last-child {
    border-bottom: none;
}
/* QUESTION */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 38px;
}

/* ICON */
.faq-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-icon.rotate {
    transform: rotate(180deg);
}

.faq-icon svg {
    width: 100%;
    height: 100%;
}

/* ANSWER */
.faq-answer {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.7;
    color: #000;
    max-width: 90%;
    width: 100%;
}
.faq-answer p {
    margin-bottom: 0;
}

/* ============================= */
/* 4K Scaling */
@media (min-width: 1800px) {
    .faq-title {
        font-size: 52px;
    }

    .faq-question {
        font-size: 22px;
    }

    .faq-answer {
        font-size: 17px;
    }
}
/* END FAQ */

/*--- Home Footer CTA Section ---*/
.cta-hero {
    padding: 100px 0;
    background: #f8fafc;
}
.cta-box {
    background: rgb(37 189 189 / 30%);
    border-radius: 20px;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    justify-content: flex-end;
    background-image: url(../images/footer-cta-curve-bg.svg);
    background-size: contain;
    background-position: 0px -20px;
    background-repeat: no-repeat;
}
.cta-media {
    position: absolute;
    left: 50px;
    top: -50px;
}
.f-cta-img img {
    max-width: 100%;
    height: auto;
    position: relative;
}
.cta-content {
    flex: 0 0 45%;
}
.cta-content h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #111827;
}
.cta-content p {
    font-size: 17px;
    color: #000;
    margin-bottom: 30px;
    max-width: 520px;
    font-weight: 500;
}
@media (min-width: 1800px) {
    .cta-content h2 {
        font-size: 48px;
    }

    .cta-bottle img {
        max-width: 320px;
    }

    .cta-laptop img {
        max-width: 600px;
    }
}
/* End Footer CTA */

/* Footer Section */
.site-footer {
    position: relative;
    background: #0f3a5a;
    color: #fff;
    padding: 60px 0 60px;
    overflow: hidden;
}

/* Background image */
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;

    /* Fallback for very old browsers */
    background-image: url("../images/footer-bg.jpg");
    background-size: cover;
    background-position: center;

    /* Modern browsers */
    background-image: image-set(
        url("../images/footer-bg.webp") type("image/webp") 1x,
        url("../images/footer-bg@2x.webp") type("image/webp") 2x,
        url("../images/footer-bg.jpg") type("image/jpeg") 1x,
        url("../images/footer-bg@2x.jpg") type("image/jpeg") 2x
    );
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: #13499fed;
    opacity: 0.93;
    z-index: 1;
}

.footer-inner {
    position: relative;
    z-index: 2;
}

/* ============================= */
/* Top CTA */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-top h2 {
    font-size: 30px;
    font-weight: 500;
    max-width: 478px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 0;
}

/* Divider */
.footer-divider {
    border: none;
    height: 1px;
    background: #d3d3d3;
    margin: 50px 0;
}

/* ============================= */
/* Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.25fr 1.25fr 1fr 1fr;
    gap: 50px;
}
.footer_logo {
    display: inline-flex;
    margin-bottom: 16px;
}
.footer-about p {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 15px;
}

.footer-links h4 {
    margin-bottom: 16px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
}

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

.footer-links li {
    margin-bottom: 10px;
    line-height: 1.3;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

/* ============================= */
/* Right */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-end;
}
.footer-links .socials {
    margin-top: 32px;
}
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: #fff;
    color: #0f3a5a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-decoration: none;
}

.footer-right .badges {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.badges img {
    width: 80px;
    height: auto;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.disclaimer {
    font-size: 12px;
    color: #c5c5c5;
    /* max-width: 900px; */
    margin-bottom: 0;
    font-weight: 400;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-legal .copy-txt {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 13px;
}
.legal-links {
    display: flex;
    gap: 6px;
    color: #fff;
    font-size: 12px;
}

.legal-links a {
    color: inherit;
    text-decoration: none;
}
/* End Footer Section */

/* Serm Hero Container */
.serm-hero-section {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        #d6eaff 100%
    );
    padding: 60px 0 0;
    border-radius: 0 0 30px 30px;
}
.serm-hero-container {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: flex-end;
}
.serm-hero-container .hero-content {
    margin-bottom: 58px;
}
.serm-hero-container .hero-title {
    line-height: 1.4;
}
.serm-hero-container .hero-desc {
    max-width: 540px;
}
.serm-hero-list li {
    text-transform: capitalize;
}
.sermolin-hero-img {
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.sermolin-hero-img img {
    max-width: 100%;
    height: auto;
}
.floating_tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
}
.restore-tag {
    z-index: 1;
    white-space: nowrap;
    left: 18px;
    top: 58px;
}
.recovery-tag {
    z-index: 1;
    white-space: nowrap;
    top: 45%;
    right: 0;
}
.hurry-up-tag {
    z-index: 1;
    white-space: nowrap;
    left: -158px;
    bottom: 68px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
.hurry-up-tag h4 {
    margin-bottom: 0px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
}
.hurry-up-tag p {
    margin-bottom: 0px;
    color: #959595;
    font-size: 11px;
}
.slot_list {
    line-height: 0;
}
.slot_list .slot_item {
    width: 24px;
    height: 24px;
    display: inline-flex;
    background-color: #d9d9d9;
    border-radius: 4px;
}
.slot_list .slot_item.blue_slot {
    background-color: #25bdbd;
}

/* Serm Support Sec */
.support_sec {
    padding-top: 70px;
    padding-bottom: 140px;
}
.serm_sup_container {
    max-width: 1199px;
    margin: 0 auto;
    padding: 0 24px;
}
.support_sec_header {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}
.support_sec_header h2 {
    font-size: 40px;
    margin-bottom: 1.25rem;
}
.support_sec_header .sec_subhead_p {
    font-weight: 500;
    font-size: 17px;
}
.support_sec_header .sec_desc_p {
    margin-bottom: 0;
    font-size: 17px;
}
.serm_support_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 38px;
}
.serm_support_list .serm_support_item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}
.serm_support_item .serm_support_img {
    max-width: 100%;
    height: auto;
}
.serm_support_list .serm_support_item .item_txt {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 52.55%,
        #3175c1 100%
    );
}
.serm_support_list .serm_support_item .item_txt h3 {
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    margin-bottom: 0;
    /* // text-transform: capitalize; */
}

/* Serm Growth Sec */
.serm_growth_sec {
    border-radius: 30px 30px 0 0;
    background: linear-gradient(180deg, #ffffff 0%, #e0efff 100%);
}
.serm_growth_container {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 50px;
}
.serm_growth_left {
    position: relative;
    display: flex;
    justify-content: center;
}
.serm_growth_img {
    position: absolute;
    bottom: 0;
}
.serm_growth_img img {
    max-width: 100%;
    height: auto;
}
.serm_growth_img .restore-tag {
    right: 68px;
    top: 28%;
    bottom: unset;
    left: unset;
}
.serm_growth_img .recovery-tag {
    bottom: 88px;
    left: -30px;
    top: unset;
    right: unset;
}
.serm_growth_content {
    padding-top: 60px;
    padding-bottom: 60px;
}
.serm_growth_content .serm_growth_heading {
    font-size: 35px;
    font-weight: 500;
    color: #000;
}
.serm_growth_content .serm_growth_desc {
    font-size: 17px;
    max-width: 550px;
    color: #000;
}
.serm_growth_content .serm_growth_list {
    margin-bottom: 26px;
    margin-top: 26px;
}
.serm_growth_list li {
    text-transform: capitalize;
    color: #000;
}
.serm_growth_content .trust-badges {
    margin-top: 28px;
}

/* Serm Badges Sec */
.serm_badges_sec {
    padding-top: 62px;
    padding-bottom: 32px;
    overflow: hidden;
}
.serm_badges_list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: nowrap;
    width: max-content;
    gap: 30px;
    width: 100%;
}
.serm_badge_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-shrink: 0;
}

.serm_badge_item h3 {
    margin-bottom: 0;
    color: #051d40;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

/* Serm Plan Sec */
.serm_plan_sec {
    padding-top: 48px;
    padding-bottom: 48px;
}
.serm_plan_heading {
    text-align: center;
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 20px;
}
.serm_plan_desc {
    text-align: center;
    font-size: 17px;
    margin-bottom: 0;
}
.serm_plan_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    margin-top: 88px;
}
.serm_plan_item {
    background-color: #e6f2ff;
    border-radius: 20px;
    position: relative;
    padding: 20px 30px 30px;
}
.serm_plan_item .plan_guaranty_tag {
    position: absolute;
    top: 0;
    left: 38px;
}
.serm_plan_item .plan_img {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.serm_plan_item.plan_1 .plan_img img {
    position: relative;
    top: -52px;
}
.serm_plan_item.plan_2 .plan_img img {
    position: relative;
    top: -28px;
    width: 309px;
    height: auto;
}
.serm_plan_item .plan_title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #000;
}
.serm_plan_item .serm_plan_ul {
    margin-bottom: 26px;
}
.serm_plan_ul li {
    text-transform: capitalize;
    color: #000;
}
.serm_plan_item .plan_price {
    font-size: 22px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}
.serm_plan_item .plan_price .bold {
    font-weight: 600;
}
.serm_plan_item .plan_note {
    color: #737373;
    font-size: 17px;
    max-width: 480px;
    min-height: 52px;
}
.custom-square-checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid #04448b;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: all 0.2s;
    background-color: #fff;
}
.custom-square-checkbox.checked {
    background-color: #e4edf2;
    border-color: #04448b;
}
.form-check-label {
    cursor: pointer;
}
.form-check-label .label_txt {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #000;
}
.how-to-use-section {
    background-image: url("../images/how-to-use-desktop.jpg");
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    min-height: 442px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.how-to-use-section .custom_container_one {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.how-to-use-section .hero-title {
    font-weight: 600;
}
.how-to-use-section .hero-desc {
    font-size: 20px;
    max-width: 520px;
    font-family: "Poppins", sans-serif;
}
.htu_right .main_img {
    display: block;
    margin: 0 auto;
}
.how-to-use-steps-sec {
    padding-top: 45px;
}
.htu_img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}
.htu_step .content {
    text-align: center;
    padding: 28px;
}
.htu_step .content h2 {
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}
.htu_step p {
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    margin-bottom: 0;
}
.contact-support-container {
    max-width: 928px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    align-items: center;
}
.contact-support-sec {
    padding: 30px 24px 80px;
}
.contact_support_left {
    border: 1px solid #e5e2dc;
    border-radius: 12px;
    padding: 26px;
}
.header_exclaim {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}
.header_exclaim h2 {
    margin-bottom: 0;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
}
.contact_support_left ul li {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    margin-bottom: 6px;
    list-style: disc;
}
.contact_support_left ul li:last-child {
    margin-bottom: 0;
}
.contact_support_right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px;
    align-items: flex-start;

    /* Fallback for very old browsers */
    background-image: url("../images/how-to-support-bg.png");
    background-size: cover;
    background-position: center;

    /* Modern browsers */
    background-image: image-set(
        url("../images/how-to-support-bg.webp") type("image/webp") 1x,
        url("../images/how-to-support-bg@2x.webp") type("image/webp") 2x,
        url("../images/how-to-support-bg.png") type("image/png") 1x,
        url("../images/how-to-support-bg@2x.png") type("image/png") 2x
    );
    border-radius: 10px;
}
.contact_support_right h3 {
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #000;
}
.contact_support_right p {
    padding-right: 152px;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #000;
}
.contact_support_right .btn-primary {
    border: none;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
}
@media (min-width: 2560px) {
    .custom_container_one {
        max-width: 1900px;
    }
    /* .testimonialSwiper .swiper-slide {
        width: 600px;
    } */
}

@media (min-width: 1920px) {
    .custom_container_one {
        max-width: 1700px;
        padding-left: 60px;
        padding-right: 60px;
    }
    /*--- Header ---*/
    .tele-nav a {
        font-size: 18px;
    }

    .tele-nav .tele-nav-trigger {
        font-size: 18px;
    }

    /*--- Hero Sec ---*/
    .hero-container {
        gap: 80px;
    }
    .hero-title {
        font-size: 40px;
        line-height: 1.3;
    }
}

@media (min-width: 1800px) {
    .custom_container_one {
        max-width: 1600px;
    }
    .footer-about h3 {
        font-size: 34px;
    }
    /* .testimonialSwiper .swiper-slide {
        width: 520px;
    } */
    .restore-tag {
        left: 52px;
    }
    .hurry-up-tag {
        left: -120px;
    }
}

@media (min-width: 1440px) {
    .custom-container_one {
        max-width: 1500px;
    }
}
@media (min-width: 1200px) {
    /* .testimonialSwiper .swiper-slide {
        width: 480px;
    } */
}
@media (max-width: 1199px) {
    .hero-images {
        gap: 18px;
    }
    .hero-img-grid {
        gap: 18px;
    }
    .products-grid {
        gap: 50px 30px;
    }
    .hero-images img {
        border-radius: 18px;
    }
    .product-card {
        padding: 20px 20px 20px 140px;
        min-height: unset;
        height: 208px;
    }
    .index-product-img {
        position: absolute;
        left: 20px;
        bottom: 18px;
    }
    .index-product-img img {
        width: 102px;
    }
    .product-content h3 {
        font-size: 18px;
    }
    .stock-badge {
        font-size: 12px;
        border-radius: 10px;
    }
    .cta-media {
        position: absolute;
        left: 20px;
        top: -30px;
    }
    .f-cta-img img {
        max-width: 500px;
    }
    .cta-content h2 {
        font-size: 30px;
    }
    .hero-title {
        font-size: 32px;
    }
    .serm-hero-container {
        grid-template-columns: 1fr 1fr;
    }
    .serm_growth_content .serm_growth_heading {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .tele-mobile-menu {
        top: 88px;
        right: 22px;
    }
    /*--- Hero Sec ---*/
    .hero-container {
        grid-template-columns: 1fr;
    }
    .hero-images {
        order: -1;
    }
    .hero-img-grid {
    }

    /* --- Home Steps Section --- */
    .step-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 100px;
    }

    .step-row.reverse {
        direction: ltr;
    }

    .step-number {
        font-size: 80px;
        top: -50px;
    }

    .step-image img {
        max-width: 100%;
    }

    .section-header {
        margin-bottom: 60px;
    }

    /* --- Home Features Section --- */
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 576px;
        margin: 0 auto;
        gap: 30px;
    }

    .feature-card {
        padding: 40px 30px;
        min-height: auto;
    }

    .feature-media {
        margin: 30px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
    .product-card {
        width: 100%;
        max-width: 576px;
        margin: 0 auto;
        height: 206px;
    }

    .steps_list {
        max-width: 576px;
        margin: 0 auto;
    }

    .cta-box {
        grid-template-columns: 1fr;
        padding: 50px 30px;
        gap: 40px;
    }

    .cta-media {
        justify-content: center;
    }

    .cta-laptop img {
        margin-left: -30px;
        max-width: 360px;
    }

    .cta-bottle img {
        max-width: 180px;
    }
    .cta-content {
        text-align: left;
    }
    .cta-content h2 {
        font-size: 24px;
    }
    .f-cta-img img {
        max-width: 430px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-about {
        grid-column: span 3;
    }

    .footer-right {
        align-items: flex-start;
        grid-column: span 3;
        flex-direction: row;
        justify-content: space-between;
    }
    .footer-right .badges {
        flex-direction: row;
    }

    .footer-legal {
        flex-direction: column;
    }
    .serm_growth_content .serm_growth_heading {
        font-size: 28px;
        margin-bottom: 18px;
    }
    .serm_plan_list {
        gap: 18px;
    }
    .serm_plan_item .plan_guaranty_tag {
        left: 20px;
        max-height: 100px;
    }
}

@media (max-width: 840px) {
    .cta-content h2 {
        font-size: 20px;
    }
    .cta-media {
        position: absolute;
        left: 20px;
        top: -20px;
    }
    .cta-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .f-cta-img img {
        max-width: 376px;
    }
    .site-footer::before {
        background-position: 69% 50%;
    }
    .serm-hero-container {
        grid-template-columns: 1fr;
    }
    .sermolin-hero-img .restore-tag {
        left: 15%;
    }
    .sermolin-hero-img .hurry-up-tag {
        left: 0px;
    }
    .support_sec {
        padding-bottom: 70px;
    }
    .serm_growth_sec .serm_growth_right {
        order: 0;
    }
    .serm_growth_sec .serm_growth_left {
        order: 1;
    }
    .serm_growth_container {
        grid-template-columns: 1fr;
    }
    .serm_growth_img {
        position: static;
    }
    .serm_growth_img .restore-tag {
        right: 19%;
    }
    .serm_growth_img .recovery-tag {
        left: 70px;
    }
}

@media (max-width: 768px) {
    /*--- Custom Container ---*/
    .custom_container_one {
        padding-left: 16px;
        padding-right: 16px;
    }
    .custom_container_two {
        padding-left: 16px;
        padding-right: 16px;
    }

    /*--- Header Sec ---*/
    .tele-container {
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .tele-logo img {
        width: 114px;
        height: auto;
    }
    .tele-mobile-menu {
        top: 68px;
        right: 16px;
    }

    /*--- Hero Sec ---*/
    .hero-section {
        padding: 32px 0;
    }
    .hero-container {
        gap: 36px;
    }
    .hero-images {
        gap: 10px;
    }
    .hero-img-grid {
        display: grid;
        gap: 10px;
    }
    .hero-images img {
        object-fit: cover;
        border-radius: 20px;
    }
    .custom_list li {
        gap: 8px;
    }

    /*--- Home Product Section ---*/
    .products-section {
        padding: 62px 0 50px;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }
    .product-card {
        padding: 32px 20px 32px 150px;
    }

    .index-product-img {
        left: 18px;
        bottom: 18px;
    }
    .index-product-img img {
        width: 110px;
    }
    .product-top {
        gap: 12px;
    }

    .steps_container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /*--- Home Testimonials ---*/
    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .testimonials-header h2 {
        font-size: 30px;
    }
    /* .testimonialSwiper .swiper-slide {
        width: 420px;
    } */

    .testimonials-header p {
        margin-bottom: 16px;
    }
    .faq-title {
        text-align: left;
        margin-bottom: 50px;
    }

    .faq-question {
        font-size: 18px;
        gap: 40px;
    }

    .faq-answer {
        font-size: 18px;
    }
    .cta-media {
        position: static;
    }
    .f-cta-img img {
        max-width: 100%;
    }
    .cta-box {
        padding: 30px 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    .footer-legal {
        align-items: center;
        gap: 6px;
    }
    .serm-hero-container {
        gap: 10px;
    }
    .sermolin-hero-img .floating_tag {
        font-size: 10px;
        padding: 8px 8px;
        border-radius: 12px;
    }
    .sermolin-hero-img .floating_tag svg {
        width: 26px;
        height: auto;
    }
    .hurry-up-tag h4 {
        font-size: 10px;
    }
    .slot_list .slot_item {
        width: 16px;
        height: 16px;
    }
    .hurry-up-tag p {
        font-size: 8px;
    }
    .sermolin-hero-img .floating_tag {
        gap: 5px;
    }
    .serm_sup_container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .support_sec_header {
        text-align: left;
    }
    .support_sec_header h2 {
        font-size: 30px;
        margin-bottom: 16px;
    }
    .serm_plan_sec {
        padding-bottom: 20px;
    }
    .serm_plan_list {
        grid-template-columns: 1fr;
    }
    .contact-support-container {
        grid-template-columns: 1fr;
    }
    .htu_step .content {
        text-align: left;
        padding: 28px 0;
    }
    .how-to-use-section .custom_container_one {
        grid-template-columns: 1fr;
    }
    .htu_right .main_img {
        max-width: 218px;
        height: auto;
        margin-left: auto;
        margin-right: 28px;
    }
    .htu_step .content h2 {
        font-size: 16px;
    }
    .htu_step p {
        font-size: 13px;
    }
    .how-to-use-section .hero-title {
        line-height: 1.1;
        padding-right: 80px;
        margin-bottom: 12px;
    }
    .contact-support-sec {
        padding: 30px 16px 80px;
    }
    .how-to-use-section .hero-desc {
        font-size: 16px;
    }
    .header_exclaim h2 {
        font-size: 16px;
        /* margin-bottom: 16px; */
    }
    .contact_support_left {
        padding: 26px 16px;
    }
    .contact_support_right p {
        padding-right: 130px;
    }
}

@media (max-width: 576px) {
    .tele-mobile-menu {
        top: 68px;
        right: 15px;
    }
    /*--- Hero Sec ---*/
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-buttons {
        gap: 10px;
    }
    .hero-buttons .btn-primary {
        font-size: 14px;
        padding: 12px 18px;
    }
    .hero-buttons .btn-outline {
        font-size: 14px;
        padding: 12px 18px;
    }

    /*--- Home Product Section ---*/
    .product-card {
        max-width: 100%;
    }
    .index-product-img img {
        width: 110px;
    }
    .product-card {
        padding: 18px 18px 18px 146px;
        height: 220px;
    }
    .index-product-img {
        left: 18px;
        bottom: 18px;
    }
    .product-top {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .product-content h3 {
        font-size: 22px;
        margin-bottom: 4px;
    }
    .product-content .btn-primary {
        padding: 12px 18px;
        gap: 10px;
        height: 46px;
    }
    .section-header {
        text-align: left;
        margin-bottom: 30px;
    }
    .section-header h2 {
        font-size: 30px;
    }
    .section-header p {
        font-size: 16px;
    }
    .step-row {
        margin-bottom: 60px;
        gap: 24px;
    }
    .step-number {
        font-size: 60px;
    }
    .step-content h3 {
        font-size: 24px;
    }
    .features-section {
        padding: 20px 0;
    }
    .features-grid .feature-card:nth-child(4) .feature-media img {
        max-height: unset;
        max-width: 100%;
    }
    .feature-card {
        padding: 26px 20px;
    }
    .feature-content h3 {
        font-size: 30px;
    }
    .feature-content p {
        /* font-size: 18px; */
    }
    .feature-media img {
        max-height: 268px;
        width: auto;
    }
    .testimonials-header h2 {
        font-size: 34px;
    }
    .testimonialSwiper .swiper-slide {
        width: 300px;
    }
    .testimonial-card img {
        max-width: 100%;
    }
    .testimonial-nav {
        margin-top: 45px;
    }
    .faq-title {
        margin-bottom: 14px;
        font-size: 30px;
        line-height: 1.5;
    }
    .cta-box {
        flex-direction: column-reverse;
        background-image: url(../images/f-cta-curve-mob.svg);
        background-size: contain;
        background-position: 100% 50%;
    }
    .cta-hero {
        padding: 20px 0 50px;
    }
    .cta-content h2 {
        font-size: 30px;
    }
    .site-footer {
        padding: 48px 0 24px;
    }
    .footer-top {
        margin-bottom: 0;
    }
    .footer-top h2 {
        font-size: 30px;
    }
    .footer-divider {
        margin: 24px 0;
    }

    .footer-grid {
        gap: 25px 8px;
    }
    .footer-right {
        align-items: center;
    }
    .socials h4 {
        margin-bottom: 16px;
        font-weight: 600;
        font-family: "Raleway", sans-serif;
        font-size: 15px;
    }
    .social-icons {
        display: flex;
        gap: 4px;
    }
    .social-icons a {
        width: 30px;
        height: 30px;
    }
    .footer-right .badges {
        gap: 12px;
    }
    .badges img {
        width: 64px;
    }
    .sermolin-hero-img img {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }
    .sermolin-hero-img .restore-tag {
        left: 5%;
        top: 40px;
    }
    .sermolin-hero-img .recovery-tag {
        top: 55%;
        right: 0;
    }
    .sermolin-hero-img .hurry-up-tag {
        right: 0px;
        left: unset;
        top: -34px;
        bottom: unset;
    }
    .serm_badges_list {
        animation: tickerMove 10s linear infinite;
        gap: 60px;
    }
    .serm_badge_item h3 {
        font-size: 14px;
    }
    .serm_growth_content {
        padding-bottom: 0;
    }
    .serm_growth_img .restore-tag {
        right: 3%;
        left: unset;
    }
    .serm_growth_img .recovery-tag {
        bottom: 22px;
        left: -3px;
    }
    .serm_plan_heading {
        text-align: left;
        font-size: 30px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    .serm_plan_desc {
        text-align: left;
    }
    .serm_support_list {
        gap: 12px;
    }
    .serm_support_list .serm_support_item {
        width: calc(50% - 6px);
    }
    .serm_support_list .serm_support_item .item_txt {
        padding: 10px 5px;
    }
    .serm_support_list .serm_support_item .item_txt h3 {
        font-size: 14px;
    }
    .serm_plan_item .plan_img img {
        max-width: 100%;
        height: auto;
    }
    .serm_plan_item .plan_img {
        justify-content: flex-start;
        /* height: 200px; */
    }
    .serm_plan_item.plan_two .plan_img {
        height: 150px;
        align-items: baseline;
    }
    .serm_plan_item.plan_two .plan_img img {
        max-width: 70%;
    }
    .serm_plan_item .plan_guaranty_tag {
        top: 0;
        right: 24px;
        left: unset;
        max-width: 100px;
    }
    .serm_plan_item {
        padding: 20px 20px 30px;
    }
    .serm_plan_ul li {
        padding-right: 20px;
    }
    .step-content ul li::before {
        top: 9px;
        font-size: 6px;
    }
    .how-to-use-section {
        background-image: url(../images/how-to-use-mob.jpg);
    }
}

@media (max-width: 400px) {
    .product-card {
        padding: 18px 18px 18px 130px;
        height: 212px;
    }
    .index-product-img {
        left: 10px;
        bottom: 10px;
    }
    .index-product-img img {
        width: 110px;
    }
    .product-content h3 {
        font-size: 20px;
        margin-bottom: 4px;
    }
    .section-header h2 {
        font-size: 24px;
    }
    .feature-content h3 {
        font-size: 30px;
        line-height: 1.4;
    }
    .feature-content p {
        font-size: 18px;
    }
    .testimonials-header h2 {
        font-size: 30px;
    }
    .serm_support_list .serm_support_item .item_txt h3 {
        font-size: 12px;
    }
    .footer-top h2 {
        font-size: 24px;
    }
}

.error-text:empty {
    display: none;
}
