/* RESPONSIVE OVERRIDES — append last
**************************************************/

/* GENERAL
**************************************************/
@media (max-width: 1100px) {
    body {
        overflow-x: hidden;
    }
}


/* SEARCH MODAL
**************************************************/
@media (max-width: 900px) {
    .search-modal-wrapper {
        width: calc(100vw - 24px);
        max-height: calc(100dvh - 80px);
    }
    .search-modal-inner {
        width: 100%;
        min-height: auto;
        max-height: calc(100dvh - 140px);
    }
    .esc-key {
        display: none;
    }
    .quick-searches {
        flex-wrap: wrap;
    }
    .results {
        overflow-y: auto;
    }
    .result {
        width: 100%;
        max-width: 100%;
        white-space: normal;
    }
    #modalInput {
        font-size: 13px;
        padding-right: 30px;
    }
}

@media (max-width: 380px) {
    .search-footer {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 8px;
        height: auto;
        padding: 14px;
    }
    .shortcuts {
        display: none;
    }
}


/* HEADER
**************************************************/
@media (max-width: 1350px) {
    .bottom-bar-inner,
    .top-bar-inner {
        padding-left: 24px;
        padding-right: 24px;
    }
    .top-bar {
        height: 35px;
    }
    .logo {
        margin-right: 10px;
    }
    .main-nav {
        gap: 2px;
    }
    .main-nav a {
        padding: 0 10px;
    }
    .right-group {
        gap: 0;
    }
    .search-wrapper {
        width: 215px;
    }
    .secondary-btn {
        width: 145px;
        margin-left: 10px;
    }
    .supplementen-badge {
        transform: rotate(11deg) scale(.8);
    }
    .nav-dropdown {
        top: 115px;
    }
}
@media (max-width: 1160px) {
    .nav {
        gap: 6px;
    }
    .lang-switch {
        gap: 6px;
    }
    .left-group {
        gap: 10px;
    }
    .main-nav a {
        padding: 0 10px;
    }
    .right-group {
        gap: 15px;
    }
    .header-liv-btn,
    .search-wrapper,
    .secondary-btn {
        margin-left: 0;
        margin-right: -20px;
        transform: scale(.9);    
    }
    .cart {
        margin-left: 5px;
        transform: scale(.9);    
    }
}

@media (max-width: 1100px) {
    .top-bar-inner {
        padding: 0 10px 0 10px;
    }
    .nav {
        font-size: 10px;
        gap: 5px;
    }
    .top-bar .hide-on-mobile {
        display: none;
    }
    .lang-switch {
        font-size: 10px;
        gap: 5px;
    }
    .left-group,
    .right-group {
        display:none;
    }
    .bottom-bar {
        height: 64px;
    }

    /* hide dropdowns */
    .nav-overlay,
    .nav-dropdown {
        display: none;
    }

    /* mobile header */
    .mobile-header {
        width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .mobile-menu-button {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-left: -8px;
    }
    .mobile-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%) translateY(-2px);
    }
    .mobile-logo .logo {
        display: block;
        max-height: 40px;
    }
    .mobile-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 14px;
        width: 60px;
    }
    .mobile-menu-button img,
    .mobile-user img,
    .mobile-cart img {
        cursor: pointer;
        display: block;
    }
    .mobile-cart img {
        margin-right: -8px;
    }

    /* mobile menu */
    .mobile-menu {
        position: fixed;
        z-index: 500;
        inset: 0;

        display: flex;
        justify-content: center;
        align-items: flex-start;
        overflow-y: auto;

        padding: 125px 0 50px 0;
        box-sizing: border-box;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition:
            opacity 0.2s ease,
            visibility 0.2s ease,
            transform 0.2s ease;

        background-color: rgba(248, 246, 242, 1);
    }
    .mobile-menu .mobile-nav {
        width: 100%;
        margin-block: auto;
    }
    .mobile-menu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .mobile-nav {
        margin-top: 115px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .mobile-nav a {
        text-align: center;
        font-family: "Encode Sans Semi Expanded";
        font-size: 30px;
        font-weight: 600;
        line-height: 120%;
        text-decoration: none;

        background: linear-gradient(90deg, #082848 0%, #8033A6 90%, rgba(116, 63, 97, 0.85) 100%);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;

        opacity: 0;
        transform: translateY(12px);
        transition:
        opacity 0.35s ease,
        transform 0.35s ease;
    }
    .mobile-menu.is-open .mobile-nav a {
        opacity: 1;
        transform: translateY(0);
    }
    .mobile-menu.is-open .mobile-nav a:nth-child(1) {
        transition-delay: 0.08s;
    }
    .mobile-menu.is-open .mobile-nav a:nth-child(2) {
        transition-delay: 0.14s;
    }
    .mobile-menu.is-open .mobile-nav a:nth-child(3) {
        transition-delay: 0.20s;
    }
    .mobile-menu.is-open .mobile-nav a:nth-child(4) {
        transition-delay: 0.26s;
    }
    .mobile-menu.is-open .mobile-nav a:nth-child(5) {
        transition-delay: 0.32s;
    }
    .mobile-menu.is-open .mobile-nav a:nth-child(6) {
        transition-delay: 0.38s;
    }
    .mobile-menu.is-open .mobile-nav .search-wrapper {
        transition-delay: 0.44s;
    }

    .mobile-menu .search-wrapper {
        margin:20px 0 0 0;
        opacity: 0;
        transform: translateY(12px);
        transition:
        opacity 0.35s ease,
        transform 0.35s ease;
    }
    .mobile-menu.is-open .search-wrapper {
        opacity: 1;
        transform: translateY(0) scale(1.35);
        width: 195px;
        padding-right: 15px;
    }
    .mobile-menu .search-wrapper::before {
        display:none;
    }
    .search-modal {
        z-index: 9000;
    }
    .search-modal-wrapper {
        z-index:10000;
    }

    /* hide search popup footer */
    .search-footer {
        display: none;
    }

    /* show search close button on mobile only */
    .search-modal-close {
        display: inline;
        position: absolute;
        z-index: 5;
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        border: 1px solid rgba(8, 40, 72, .15);
        border-radius: 50%;
        background: rgba(8, 40, 72, 0.05);
        font-size: 22px;
        font-weight: 500;
        color: rgba(8, 40, 72, .75);
        transform: rotate(45deg);
        transition: all .2s ease;
        cursor: pointer;
    }
    .search-modal-close span {
        display:block;
        transform: translateY(-1.5px);
    }

}
@media (max-width: 370px) {
    .mobile-logo .logo {
        max-height: 30px;
    }
}

/* HERO SECTION
**************************************************/
@media (max-width: 1280px) {
    .hero-card {
        margin-right: 20px;
    }
}

@media (max-width: 1100px) {
    .hero {
        margin-top: 95px;
        padding:  0;
    }
    .hero-inner {
        padding: 150px 15px 36px 15px;
        gap: 35px;
    }
    .hero-left {
        margin-left: 20px;
    }
    .hero-webinar-wrap {
        position: absolute;
        top: 25px;
        margin-left: 0;
        padding: 0 10px;
    }
    .hero-left h1 {
        font-size: clamp(38px, calc(38px + 12 * ((100vw - 760px) / 340)), 50px);
    }
    .hero-sub {
        margin: 0 auto 15px auto;
        font-size: clamp(16px, calc(16px + 4 * ((100vw - 760px) / 340)), 20px);
    }
    .hero-quote {
        font-size: 13px;
        margin-left: 0;
        margin-right: auto;
        margin-bottom: 40px;
        max-width:450px;
        padding:0 25px;
    }
    .hero-actions {
        gap: 10px;
    }
    .hero-primary {
        height: clamp(52px, calc(52px + 4 * ((100vw - 760px) / 340)), 56px);
        padding: 0 19px;
        font-size: 13px;
    }
    .hero-secondary {
        height: clamp(52px, calc(52px + 4 * ((100vw - 760px) / 340)), 56px);
        padding: 0 clamp(20px, calc(20px + 3 * ((100vw - 760px) / 340)), 23px);
        font-size: 13px;
    }

}
@media (max-width: 900px) {
    .hero-inner {
        padding-top: 50px;
        flex-direction: column;
    }
    .hero-webinar-wrap {
        display:none;
    }
    .hero-left {
        align-self: flex-start;
        padding-top:15px;
        margin: 0 auto;
        text-align: center;
    }
    .hero-quote {
        font-size: 12px;
        margin-top: 20px;
    }
    .hero-quote::before {
        display: none;
    }
    .hero-actions {
        margin: 0 auto;
        width: max-content;
    }
    .hero-card {
        margin-top: 30px;
        margin-right: 0px;
    }
}
@media (max-width: 590px) {
    .hero-card {
        width: 380px;
        margin: 0 auto;
    }
    .hero-quote {
        margin-bottom: 0;
    }
    .hero-actions {
        flex-direction: column;
        gap: 20px;
    }
    .hero-sub {
        padding:0 20px 0 20px;
    }
    .hero-actions.hide-on-mobile {
        display: none;
    }
    .hero-actions.show-on-mobile {
        display: block;
        width: 100%;
        margin-top: 30px;
    }
    .hero-actions.show-on-mobile button {
        width: 100%;
        margin-bottom: 15px;
    }
}
@media (max-width: 400px) {
    .hero-card {
        width: clamp(300px, calc(300px + 80 * ((100vw - 320px) / 80)), 380px);
        height: clamp(500px, calc(500px + 90 * ((100vw - 320px) / 80)), 590px);
    }
    .hero-sub {
        padding:0;
    }
    .hero-quote {
        padding:0 5px;
    }
}


/* TYPES SECTION
**************************************************/
@media (max-width: 1100px) {
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .types-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 560px) {
    .types-section {
        padding: 40px 15px 50px 15px;
    }
}
@media (max-width: 400px) {
    .types-section h2 {
        margin-bottom: 30px;
    }
}


/* INTAKE SECTION
**************************************************/
@media (max-width: 1100px) {
    .liv-intake-inner {
        grid-template-columns: 1fr;
        padding: 70px 28px 70px;
    }
    .liv-intake-copy {
        text-align: center;
        margin: 0 auto;
        transform: none;
    }
    .liv-intake-copy h2 {
        font-size: clamp(38px, 6vw, 52px);
    }
    .liv-intake-copy p {
        font-size: clamp(20px, 4vw, 30px);
    }
    .liv-intake-card {
        margin: 40px 0 -24px 0;
        justify-self: center;
        border-bottom: 0;
    }
    .liv-intake-copy h2 {
        font-size: clamp(40px, calc(40px + 6 * ((100vw - 760px) / 340)), 46px);
    }
    .liv-intake-copy p {
        font-size: clamp(20px, calc(20px + 4 * ((100vw - 760px) / 340)), 24px);
    }
    .liv-intake-disclaimer {
        z-index: 1;
        padding-right: 15px;
        padding-right: 50px;
        font-size: 10px;
    }
}
@media (max-width: 560px) {
    .liv-intake-section {
        padding-left: 14px;
        padding-right: 14px;
    }
    .liv-intake-inner {
        padding: 46px 16px 76px;
    }
    .liv-intake-card {
        padding: 22px 16px 26px 16px;
        margin-bottom: -29px;
    }
    .intake-option {
    grid-template-columns: 30px 1fr 24px;
    padding: 10px 12px;
    }
    .liv-intake-disclaimer {
    padding: 0px 12px 0px 0;
    }
    .liv-intake-disclaimer span {
    line-height:100%;
    margin-top:-1px;
    }
    
}
@media (max-width: 400px) {
    .liv-intake-copy h2 {
        font-size: 30px;
        line-height: 110%;
        margin-bottom: 15px;
    }
    .liv-intake-copy p {
        font-size: 16px;
    }
}


/* PEOPLE SECTION
**************************************************/
@media (max-width: 1100px) {
    .people-grid-section {
        padding-left: 0;
        padding-right: 0;
    }
    .people-grid-section::before {
        display: none;
    }
    .people-heading {
        padding-left: 30px;
    }
    .people-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
    .tile {
        grid-row: span 2;
    }
    .people-grid {
        grid-auto-rows: 250px;
    } 
    .tile:nth-child(1) {
        grid-column: 1;
        grid-row: span 2;
    }
    .tile:nth-child(2) {
        grid-column: 2;
        grid-row: span 2;
    }
    .tile:nth-child(3) {
        grid-column: 1;
        grid-row: span 1;
    }
    .tile:nth-child(4) {
        grid-column: 2;
        grid-row: span 2;
    }
    .tile:nth-child(5) {
        grid-column: 1;
        grid-row: span 2;
    }
    .tile:nth-child(6) {
        grid-column: 2;
        grid-row: span 1;
    }
    .tile:nth-child(7) {
        grid-column: 1;
        grid-row: span 2;
    }
    .tile:nth-child(8) {
        grid-column: 2;
        grid-row: span 2;
    }
    .tile:nth-child(9) {
        grid-column: 1;
        grid-row: span 1;
    }
    .tile:nth-child(10) {
        grid-column: 2;
        grid-row: span 2;
    }
    .tile:nth-child(11) {
        grid-column: 1;
        grid-row: span 2;
    }
    .tile:nth-child(12) {
        grid-column: 2;
        grid-row: span 1;
    }
}

@media (max-width: 760px) {
    .people-grid-section {
        padding-left: 0;
        padding-right: 14px;
        margin-bottom: 40px;
    }
    .people-heading h2 {
        font-size:40px;
    }
    .people-heading p {
        font-size:18px;
    }
    .people-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .tile,
    .tile:nth-child(1),
    .tile:nth-child(2),
    .tile:nth-child(3),
    .tile:nth-child(4),
    .tile:nth-child(5),
    .tile:nth-child(6),
    .tile:nth-child(7),
    .tile:nth-child(8),
    .tile:nth-child(9),
    .tile:nth-child(10),
    .tile:nth-child(11),
    .tile:nth-child(12) {
        grid-column: 1;
    }
    .tile:nth-child(1),
    .tile:nth-child(2),
    .tile:nth-child(4),
    .tile:nth-child(5),
    .tile:nth-child(7),
    .tile:nth-child(8),
    .tile:nth-child(10),
    .tile:nth-child(11) {
        grid-row: span 2;
    }
    .tile:nth-child(3),
    .tile:nth-child(6),
    .tile:nth-child(9),
    .tile:nth-child(12) {
        grid-row: span 1;
    }
}

@media (max-width: 560px) {
    .people-heading {
        padding-left: 14px;
    }
    .people-heading h2 {
        font-size:28px;
    }
    .people-heading p {
        font-size:14px;
    }
}


/* PEOPLE HORIZONTAL SLIDER BELOW 1100PX
**************************************************/
.people-slider {
    position: relative;
}

@media (min-width: 1101px) {
    .people-arrow {
        display: none;
    }
}

@media (max-width: 1100px) {
    .people-grid-section {
        overflow: hidden;
    }

    .people-slider {
        position: relative;
    }

    .people-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 24px;

        overflow-x: auto;
        overflow-y: hidden;

        margin: 0 auto;
        padding: 20px 100px 20px 30px;

        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .people-grid::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .tile,
    .tile:nth-child(1),
    .tile:nth-child(2),
    .tile:nth-child(3),
    .tile:nth-child(4),
    .tile:nth-child(5),
    .tile:nth-child(6),
    .tile:nth-child(7),
    .tile:nth-child(8),
    .tile:nth-child(9),
    .tile:nth-child(10),
    .tile:nth-child(11),
    .tile:nth-child(12) {
        grid-column: auto;
        grid-row: auto;

        flex: 0 0 330px;
        width: 330px;
        min-width: 330px;
        height: 430px;
    }

    .quote {
        justify-content: flex-end;
    }

    .people-slider::before,
    .people-slider::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100px !important;
        z-index: 4;
        pointer-events: none;
        opacity: 1;
        transition: opacity 0.25s ease;
    }

    .people-slider::before {
        left: 0;
        background: linear-gradient(
            90deg,
            #fff 0%,
            rgba(255, 255, 255, 0) 100%
        );
    }

    .people-slider::after {
        right: 0;
        background: linear-gradient(
            270deg,
            #fff 0%,
            rgba(255, 255, 255, 0) 100%
        );
    }

    .people-slider.at-start::before,
    .people-slider:not(.is-scrollable)::before {
        opacity: 0;
    }

    .people-slider.at-end::after,
    .people-slider:not(.is-scrollable)::after {
        opacity: 0;
    }

    .people-arrow {
        position: absolute;
        z-index: 6;
        top: 50%;
        width: 41px;
        height: 41px;
        border: 1.28px solid #EEEEEE;
        border-radius: 50%;
        background: #F8F6F2;
        cursor: pointer;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .people-arrow-left {
        left: 15px;
        transform: translateY(-50%);
    }

    .people-arrow-right {
        right: 15px;
        transform: translateY(-50%) scaleX(-1);
    }

    .people-arrow:disabled {
        opacity: 0.3;
        pointer-events: none;
    }
}

@media (max-width: 560px) {
    .people-grid {
        gap: 18px;
        padding: 20px 80px 20px 14px;
    }

    .tile,
    .tile:nth-child(1),
    .tile:nth-child(2),
    .tile:nth-child(3),
    .tile:nth-child(4),
    .tile:nth-child(5),
    .tile:nth-child(6),
    .tile:nth-child(7),
    .tile:nth-child(8),
    .tile:nth-child(9),
    .tile:nth-child(10),
    .tile:nth-child(11),
    .tile:nth-child(12) {
        flex-basis: 300px;
        width: 300px;
        min-width: 300px;
        height: 410px;
    }

    .people-slider::before,
    .people-slider::after {
        width: 70px;
    }

    .people-arrow {
        width: 51px;
        height: 51px;
    }

    .people-arrow-left {
        left: 10px;
    }

    .people-arrow-right {
        right: 10px;
    }
}


/* INSIGHTS SECTION
**************************************************/
@media (max-width: 1100px) {
    .insights-inner {
        z-index: 500;
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 28px 0 28px;
    }
    .insights-card-wrap {
        order: 2;
        margin-left: 0;
        align-items: center;
        padding-top:20px;
    }
    .insights-card-wrap::before,
    .insights-card-wrap::after {
        display: none;
    }
    .insights-copy {
        order: 1;
        padding-top: 0;
        text-align: center;
        margin: 0 auto;
    }
    .insights-copy h2 {
        font-size: clamp(34px, calc(34px + 2 * ((100vw - 760px) / 340)), 36px);
        margin-left: auto;
        margin-right: auto;
    }
    .insights-copy p {
        font-size: clamp(13px, calc(13px + 1 * ((100vw - 760px) / 340)), 14px);
    }
    .peer-badge {
        top: -25px;
        right: -35px;
        transform: rotate(11deg) scale(.9);
    }
    .expert-meta strong,
    .expert-meta span {
        font-size: 11px;
    }
}

@media (max-width: 560px) {
    .insights-section {
        padding-left: 0;
        padding-right: 0;
    }
    .insights-inner {
        padding-left: 10px;
        padding-right: 10px;
    }
    .insights-copy h2 {
        font-size: 28px;
        padding: 0 25px;
    }
    .insights-copy p {
        font-size: 12px;
        padding: 0 25px;
    }
    .expert-card { 
        height: max-content;
        width:100%;
        max-width:480px;
        padding: 14px 15px;
    }
    .expert-avatar {
        width:80px;
        height:80px;
    }
    .expert-meta strong,
    .expert-meta span {
        font-size: 9px;
    }
    .peer-badge {
        top: -55px;
        right: -25px;
        transform: rotate(11deg) scale(.7);
    }
    .expert-scrollbar {
        bottom: 5px;
        right: 0px;
        width:20px;
        height:145px;
    }
}
@media (max-width: 370px) {
    .insights-card-wrap {
        overflow: hidden;
    }
    .expert-card {
        transform: scale(.86);
        transform-origin: center bottom;
        margin-top: -40px;
    }
    .role-pill {
        font-size: 10px;
        padding:0 15px;
    }
    .expert-scroll .mini-avatar {
        width:40px;
        height:40px;
    }
    .expert-row {
        grid-template-columns: 44px 1fr auto;
    }
    .expert-row div strong {
        font-size: 10px;
    }
    .expert-row div span {
        font-size: 8px;
    }
    .expert-scrollbar {
        bottom: 5px;
        right: 0px;
        width:20px;
        height:120px;
    }
    .expert-scrollbar::after {
        height:100px;
    }
}


/* SUPPLEMENT PICKS SECTION
**************************************************/



/* KNOWLEDGE SECTION
**************************************************/
@media (max-width: 1100px) {
    .knowledge-inner {
        grid-template-columns: 1fr;
    }
    .knowledge-image-wrap {
        margin-top:30px;
    }
}

@media (max-width: 900px) {
    
}
@media (max-width: 560px) {
    .knowledge-section {
        padding-left: 14px;
        padding-right: 14px;
        padding-bottom: 0;
    }
    .knowledge-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
}


/* FAQ SECTION
**************************************************/
@media (max-width: 900px) {
    .faq-answers > div {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .faq-answer h4 {
        font-size: 20px;
    }

    .faq-answer p {
        font-size: 16px;
    }
}

@media (max-width: 560px) {
    .faq-section {
        padding-left: 14px;
        padding-right: 14px;
    }
    .faq-toggle {
        min-height: 92px;
        padding: 0;
    }
    .faq-toggle span:first-child {
        font-size: 30px;
    }
    .faq-item.active .faq-answers > div {
        padding: 20px 0 50px;
    }
    .faq-answers > div {
        gap: 40px;
        padding-left:0;
    }
    .faq-item.active .faq-answers > div {
        padding-left: 0;
    }
}


/* START OPTIONS SECTION
**************************************************/
@media (max-width: 1200px) {
    .start-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .start-options-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .start-options-section {
        padding-left: 14px;
        padding-right: 14px;
    }
    .start-options-heading h2 {
        font-size: 30px;
    }

    .start-card {
        min-height: auto;
    }

    .family-table {
        padding-left: 0;
        padding-right: 0;
    }

    .family-table div {
        grid-template-columns: 48px 1fr;
        row-gap: 0;
    }

    .family-table strong {
        grid-column: 2;
    }

    .start-options-footer {
        flex-direction: column;
    }
}

@media (max-width: 380px) {
    .start-price {
        font-size: 26px;
        margin-left: 15px;
    }

    .start-card ul {
        margin-left: 15px;
    }
}


/* CTA BANNER
**************************************************/
@media (max-width: 1280px) {
    .cta-inner {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 1100px) {
    .cta-right {
        gap: 12px;
    }
}
@media (max-width: 1100px) {
    .cta-right {
        gap: 12px;
    }
}
@media (max-width: 700px) {
    .cta-inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;

        text-align: center;
    }
    .cta-right {
        width: 100%;
        flex-direction: column;
    }
}




/* FOOTER
**************************************************/
@media (max-width: 1280px) {
    .footer-inner {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 1100px) {
    .footer-top .footer-inner {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-top .footer-inner .footer-col:first-of-type {
        margin-left: 0px;
    }
    .footer-badges {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding-left: 24px;
        padding-right: 24px;
        padding-top:30px;
        padding-bottom:30px;
    }
    .footer-badges span:first-of-type,
    .footer-badges span:last-of-type {
        padding: 0;
        justify-self: start;
    }
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-top: 30px;
    }
    .footer-right {
        flex-wrap: wrap;
        padding-left: 5px;
    }
}

@media (max-width: 760px) {
    .footer-top .footer-inner,
    .footer-badges {
        grid-template-columns: 1fr;
    }

    .footer-top .footer-inner .footer-col:first-of-type {
        margin-left: 0;
    }
}

@media (max-width: 560px) {
    .footer-inner {
        padding-left: 14px;
        padding-right: 14px;
    }
    .footer-bottom-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-right {
        gap: 10px;
    }

    .footer-right .footer-lang {
        margin-left: 0;
        width: 100%;
    }
}


/* LIV FLOAT / POPUP
**************************************************/
@media (max-width: 760px) {

    .liv-float-close {
        top: 13px;
        right: 13px;
        width: 36px;
        height: 36px;
        font-size: 26px;
    }
    .liv-float-close span {
        margin-top:-4px;
        margin-left:1px;
    }
    .liv-float.is-open {
        border-radius: 0;
        z-index:5000 !important;
        right: 0px;
        bottom: 0px;
        width: calc(100vw - 0px);
        height: calc(100dvh - 0px);
    }
    .liv-float.is-open .liv-float-inner-inner,
    .liv-float.is-open iframe {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    /* no close animation */
        #livFloat.no-close-animation,
        #livFloat.no-close-animation * {
          transition: none !important;
          animation: none !important;
        }
      
}


/* SUPPLEMENTEN DROPDOWN MENU
**************************************************/
@media (max-width: 1280px) {
    .supplementen-menu {
        grid-template-columns: 30% 22% 24% 24%;
    }
}




@media (max-width: 760px) {
    .picks-section {
        padding-top: 70px;
    }
    .supplement-cards {
        padding-top: 0;
    }
    .picks-heading h2 {
        font-size: 24px;
        padding: 0 25px;
        max-width: 375px;
        margin: 0 auto;
    }
    .supplement-bottom {
        flex-direction: column;
        margin-top: 20px;
        text-align: center;
    }
}
@media (max-width: 560px) {
    .picks-heading p {
        font-size: 11px;
        margin-bottom: 5px;
    }
    
    .supplement-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    .supplement-bottom {
        padding-left: 14px;
        padding-right: 14px;
    }
    .supplement-cards {
        margin-top: -30px;
        margin-bottom: -130px;
    }
    .supplement-card {
        transform: scale(.65);
        transform-origin: top left;
        margin-left:-140px;
    }
    .supplement-card:first-of-type {
        margin-left:0;
    }
    .supplement-card:last-of-type {
        margin-right:-150px;
    }
    .supplement-slider::before,
    .supplement-slider::after {
        width: 50px;
        transform: translateY(-80px) scaleY(.6);
    }
    .supplement-arrow {
        top: 34%;
        width: 51px;
        height: 51px;
    }
    .supplement-arrow-left {
        left: 10px;
    }
    .supplement-arrow-right {
        right: 10px;
    }
}