/* COMMON CSS */

h2 {
    font-size: 28pt;
}

.hidden-content {
    display: none;
}

/* END COMMON CSS */
/* VIDEO STYLES */
.video-overlay-image-desktop {
    background-image: url('/lander-vsl/imgs/bg-overlay5.png');
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
    animation-name: scale;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-play-state: running;
    background-position: center;
    background-size: cover;
}

.fa-play {
    font-size: 4rem;
}

.button-holder {
    margin-bottom: 1rem;
}

#restart-video:hover {
    background-color: #000000a8;
}

#resume-video::after {
    content: "";
    /* This is necessary for ::after to work */
    /* Or inline-block, depending on your layout needs */
    width: 59px;
    /* Set the width of the image */
    height: 85px;
    /* Set the height of the image */
    background-image: url('/lander-vsl/imgs/arrow-3.png');
    background-size: cover;
    /* This ensures the image covers the pseudo-element area */
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    top: 15px;
    left: 20px;
    transform: rotate(10deg);
}

.video-overlay-image-mobile {
    background-image: url('/lander-vsl/imgs/bg-overlay-mobile4.png');
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
    animation-name: scale;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-play-state: running;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.video-holder {
    margin: auto;
    padding-top: 0px;
    padding-bottom: 4rem;
    width: 100%;
    max-height: 100vh;
    max-width: calc(100vh* 1.30);
}

.overlay-desktop-video {
    position: absolute;
    z-index: 1;
}

.overlay-mobile-video {
    position: absolute;
    z-index: 1;
    object-fit: cover;
    object-position: top;
}

iframe#player {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.player-clear-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    cursor: pointer;
    z-index: 1;
    background-color: black;
}

.player-paused-overlay {
    background-image: url(/lander-vsl/imgs/TransparentOverlayD.png);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    display: none;
    background-repeat: no-repeat;
    background-color: #00000063;
    cursor: pointer;
    background-position: center;
    background-size: contain;
}

.resume-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff00;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 2;
    text-align: center;
    padding: 1rem;
}

.resume-overlay {
    display: none;
}

.video-overlay-image-desktop {
    display: none;
}

.video-overlay-image-mobile {
    display: none;
}

.resume-overlay button {
    background-color: #000000a8;
    border: none;
    padding: 1rem;
    border-radius: 1px;
    font-size: 23px;
    display: block;
    width: 100%;
    color: white;
    max-width: 300px;
    text-align: center;
    margin: auto;
    position: relative;
    font-weight: 800;
}

.resume-overlay p {
    font-size: 22px;
}

.video-holder-full {
    max-width: 100% !important;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
}

.container-full {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.headline-full {
    display: none;
}

.col-md-12-full {
    padding-left: 0;
    padding-right: 0;
}


@keyframes scaleLarger {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

/* @media stuff */
@media screen and (max-width: 1471px) {
    .video-holder {
        width: 100%;
        max-height: 100vh;
        max-width: calc(100vh* 1.30);
    }
}

@media screen and (max-width: 500px) {


    .video-overlay-image-mobile {
        background-size: auto;
    }
}

/* END VIDEO STYLE */
/* FIRST SECTION */
.headline {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: 800;
    max-width: 850px;
    margin: auto;
    font-size: 40pt;
    /* text-shadow: -1px -1px 1px #a7a7a7; */
    line-height: 57px;
    letter-spacing: -1px;
}

.first-section {
    background: rgb(212,242,210);
    background: linear-gradient(180deg, rgb(255 255 255) 0%, #96c9bc 100%);
    height: 100vh;
}

/* END FIRST SECTION */
/* SECOND SECTION TIMER */
.second-section-timer {
    background-color: #ffffff;
    padding-top: 2rem;
    position: relative;
    padding-bottom: 1rem;
    border-top: 2px solid white;
}

.second-section-timer h2 {
    text-align: center;
    color: #212529;
    font-weight: 600;
    max-width: 600px;
    margin: auto;
}

.second-section-timer::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 0;
    height: 0px;
    border-style: solid;
    border-width: 35px 150px 0 150px;
    /* Adjust size of the triangle */
    border-color: #ffffff transparent transparent transparent;
    /* Match the banner color */
    transform: translateX(-50%);
}

.timer-text {
    color: #e11c1c !important;
    letter-spacing: 2px;
}

/* SECOND SECTION TIMER END */
/* SECOND SECTION CTA */
.second-section {
   
    padding-bottom: 2rem;
  
}

.second-section .container {
    padding-top: 0rem;
    /* max-width: 62%; */
}

/*.cta-boxes:hover {
    box-shadow: 0px 0px 1px #5c5c5c;
}*/
.cta-boxes {
    box-shadow: 0 0 20px -2px rgb(0 0 0 / 10%);
    text-align: center;
    background-color: white;
    max-width: 275px;
    padding: 2rem 1rem 2rem 1rem;
    border: 0px solid black;
    cursor: pointer;
}

.cta-boxes-two {
    border: 0px solid #F44336;
}

.add-six-middle {
    border-left: none !important;
    border-right: none !important;
}

.second-section .col-md-4 {
    justify-content: center;
    display: flex;
    align-items: center;
    max-width: 100%;
    padding-left: 2px;
    padding-right: 2px;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    border-left: 1px solid black;
    border-right: 1px solid black;
}

.second-section .row {
    justify-content: center;
    max-width: 80%;
    margin: auto;
    /* border-left: 1px solid #000000; */
    /* border-right: 1px solid #000000; */
}

.cta-boxes h3 {
    font-weight: 600;
    margin-bottom: 0;
    padding-bottom: 5px;
    font-size: 1.75rem;
}

.cta-boxes h4 {
    color: #212529;
    font-size: .875em;
}

.bottle-image img {
    width: 100%;
   /* max-width: 245px; */
}

.price-area h3 {
    font-size: 40pt;
}

.red-price-text {
    font-weight: bold;
    color: red;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.price-area p {
    text-align: left;
    margin-top: 10px;
    line-height: 15px;
    color: #9a9a9a;
    margin-left: 5px;
    font-weight: 400;
}

.price-area {
    display: flex;
    justify-content: center;
    align-items: center;
}

.add-cart {
    width: 100%;
    padding: 10px 10px 10px 10px;
    max-width: 100%;
    background: linear-gradient(to bottom, #fbfb36 0%, #fdf283 50%, #fde218 50%, #fcca02 100%);
    border: 2px solid #f8c913;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    margin-bottom: 10px;
    margin-top: 5px;
}

.add-cart p {
    padding-bottom: 0;
    margin-bottom: 0;
    font-weight: 700;
    font-size: 14pt;
}

.small-text-cta p {
    font-weight: 400;
    color: #322f32;
    font-size: .875em;
    line-height: normal;
    text-align: center;
    margin-bottom: 5px;
}

.bottle-image {
    padding-bottom: 1rem;
    padding-top: 1rem;
}

.lower-price-cta p {
    margin-bottom: 0;
    line-height: 18px;
    font-weight: 400;
    padding-bottom: 5px;
}

.lower-price-cta {
    margin-top: 10px;
}

.third-section-alternate {
    margin-top: 6rem;
}

.third-section .container {
    position: relative;
}

.third-section .container::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 50%;
    width: 200px;
    height: 100px;
    background-color: #ffffff;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.money-back-box {
    text-align: center;
    position: relative;
}

.money-back-box img {
    position: absolute;
    top: 25px;
    z-index: 2;
    left: 50%;
    transform: translate(-50%, -50%);
}

.money-back-text h3 {
    font-weight: 600;
    font-size: clamp(1.75rem, 3vw, 3rem);
    margin-bottom: 1rem;
}

.money-back-text {
    text-align: center;
    max-width: 755px;
    margin: auto;
    padding-top: 8rem;
}

.money-back-text p {
    font-weight: 400;
    font-size: 1.25rem;
}

.quality-logos {
    text-align: center;
}

/* END SECOND SECTION CTA */
/* THIRD SECTION START */
.fourth-section {
    background: rgb(233,251,228);
    background: linear-gradient(180deg, #cbeecd 0%, #c9e5d6 100%);
    margin-top: 0rem;
    padding-bottom: 3rem;
}

.fourth-section .container {
    padding-top: 3rem;
    max-width: 898px;
}

.fourth-section-first-headline {
    text-align: center;
    padding-bottom: 2rem;
}

.fourth-section-first-headline h3 {
    font-size: 28pt;
}

.bonus-box-image {
    background-color: white;
    padding: 2rem 1rem 1rem 1rem;
    border: 5px solid #a9d1b8;
    text-align: center;
}

.bonus-text-upper {
    background-color: #aad1b9;
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: -1.3rem;
}

.bonus-text-upper h3 {
    color: white;
    font-size: 18pt;
    font-weight: 600;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 0;
}

.bonus-box-image img {
    padding-bottom: 1rem;
}

.bonus-box {
    justify-content: center;
    display: inline-flex;
    flex-wrap: wrap;
    align-content: center;
    width: 100%;
}

.under-bonus-text h2 {
    text-align: center;
}

.under-bonus-text {
    padding-top: 1rem;
}

span.fw-extra-bold {
    font-weight: 800;
}

.under-bonus-text p {
    text-align: center;
    font-size: 14pt;
}

.red-strike {
    position: relative;
}

.red-strike::before {
    content: "";
    position: absolute;
    left: 0;
    top: 48%;
    width: 100%;
    height: 4px;
    background-color: red;
    transform: rotate(-15deg);
}

.small-digital-holder {
    text-align: center;
}

.small-digital {
    font-size: 10pt;
    color: #ffffff;
}

.free-shipping-area {
    max-width: 810px;
    margin: auto;
    padding-top: 15px;
}

.free-shipping-text h4 {
    font-weight: 600;
    font-size: 18pt;
    margin-bottom: 2px;
}

.free-shipping-text p {
    font-size: 12pt;
    margin-bottom: 0;
    padding-bottom: 0;
}

.free-shipping-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.free-shipping-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
}

/* FOURTH SECTION END */
/* FIFTH SECTION START */
.fifth-section {
    padding-top: 3rem;
    background-color: #ffffff;
    padding-bottom: 3rem;
}

.ingredients-logo-holder {
    text-align: center;
}

.icon-top-holder {
    max-width: 915px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    padding-top: 2rem;
}

.icon-top-holder .col-md-4 {
    justify-content: space-between;
    display: inline-flex;
    align-items: center;
}

.ingredients-icon-holder {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.ingredients-icon-holder p {
    margin-bottom: 0;
    padding-left: 15px;
    font-size: 17pt;
    line-height: 28px;
}

/* FIFTH SECTION END */
/* SIXTH SECTION START */
.sixth-section .container {
    max-width: 890px;
    margin: auto;
}

.sixth-section {
    padding-top: 3rem;
    background: linear-gradient(180deg, #cae5d7 0%, #9db9d6 100%);
}

.testimonials-headline {
    text-align: center;
}

.testimonials-headline h3 {
    font-size: 30pt;
    font-weight: 600;
    padding-bottom: 1rem;
}

.testimonials-headline u {
    text-decoration-color: #d1d1d1;
    font-weight: 800;
}

.testimonials-banner {
    padding-bottom: 0rem;
}

.testimonials-one {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials-one img {
    border: 5px solid #ddede9;
}

.testimonials-text h3 {
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonials-text img {
    padding-bottom: 1rem;
}

.testimonials-text p {
    font-size: 14pt;
}

.main-testimonials-holder {
    align-items: flex-start;
    padding-bottom: 3rem;
}

/* SIXTH SECTION END */
/* NINTH SECTION START */
.ninth-section {
    padding-top: 3rem;
    background-color: #ddede9;
    margin-top: 2rem;
    padding-bottom: 3rem;
    background: linear-gradient(180deg, #d5f0d7 0%, #e6fbdf 100%);
}

.ninth-section .container {
    max-width: 920px;
    margin: auto;
}

.faq-headline {
    text-align: center;
    padding-bottom: 2rem;
}

.faq-headline h2 {
    font-weight: 600;
    font-size: 30pt;
}

.faq-item {
    padding: 1rem;
    background-color: white;
    margin-bottom: 15px;
    cursor: pointer;
}

.faq-item p {
    margin-bottom: 0;
    font-size: 18pt;
    font-weight: 400;
}

.answer {
    padding-top: 1rem;
    font-size: 13pt !important;
    line-height: 30px;
}

/* NINTH SECTION END */
/* ELEVENTH SECTION START */
.second-section-alternate {
    padding-bottom: 4rem !important;
    background: linear-gradient(180deg, #e7fbe1 0%, #ffffff 100%);
}

.ref-image {
    text-align: center;
    padding-bottom: 1rem;
}

.eleventh-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-top: 1px solid #d1d1d1;
}

.ref-image img {
    max-width: 550px;
}

.ref-text p {
    font-size: 9pt;
    color: #919f9b;
    font-weight: 300;
}

/* ELEVENTH SECTION END */
/* FOOTER SECTION */
.footer-container {
    background-color: #fbfbfb;
    padding-top: 2rem;
    border-top: 1px solid black;
}

.footer-links {
    display: flex;
    align-items: center;
    font-weight: 300;
}

.right-footer-links {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
}

.right-footer-links p {
    margin-left: 10px;
    margin-right: 10px;
}

.footer-container p {
    font-size: 9pt;
    font-weight: 300;
}

.right-footer-links a {
    color: inherit;
}

/* FOOTER SECTION END */
/* CUSTOM ALTERNATE STYLES */
.second-section-two {
    background: linear-gradient(180deg, #9db9d6 0%, #d1ecd6 100%);
    padding-bottom: 3rem;
    padding-top: 2rem;
}

/* Custom Changes 2024-05-17 */
.mobile-add-carts {
    display: block;
}

.mobile-add-carts .col-4 {
    width: 93%;
    background: white;
    padding: 10px;
    margin-bottom: 15px;
    margin-left: 0;
    margin-right: 0;
    box-shadow: 0 0 20px -2px rgb(0 0 0 / 10%);
}


.md-cart-left h3 {
    text-align: center;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.75rem;
}

.md-cart-left h4 {
    color: #212529;
    text-align: center;
    font-size: .875em;
}

.md-prod-image img {
    width: 100%;
}

.per-bottle-md p {
    font-size: 28pt;
    font-weight: 700;
    margin-bottom: 0;
}

.one-line-md p {
    font-size: 10pt;
    padding-bottom: 0;
    margin-bottom: 0;
    color: #9a9a9a;
    font-weight: inherit;
}

.one-line-md {
    padding-left: 5px;
}

.per-bottle-md {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.two-free-bonus p {
    margin-bottom: 0;
}

.md-add-cart p {
    margin-bottom: 0;
}

.two-free-bonus p {
    font-size: 8pt;
    text-align: center;
    font-weight: 600;
}

.md-add-cart {
    width: 100%;
    padding: 5px 5px 5px 5px;
    background: linear-gradient(to bottom, #fbfb36 0%, #fdf283 50%, #fde218 50%, #fcca02 100%);
    border: 2px solid #f8c913;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    margin-bottom: 10px;
    margin-top: 5px;
}

.md-cart-right {
}

.mobile-add-carts .col-6 {
    padding-left: 10px;
    padding-right: 10px;
}

.total-md {
    padding-top: 10px;
    text-align: center;
}

.total-md h5 {
    font-weight: 700;
    font-size: 16px;
}

.md-grey {
    color: #9a9a9a;
    font-weight: 600;
}

.md-icon-row .col-6 {
    justify-content: center;
    align-items: center;
    display: flex;
}

.md-icon-holder {
    text-align: center;
}

.results-text {
    font-size: 12px;
}

.md-cc-logo img {
    width: 100%;
}

.mobile-add-carts .col-4 .row {
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-top: none;
}

.mobile-add-carts hr {
    height: 1px;
    color: black;
    opacity: unset;
}

.col-4.add-md-one.add-one {
    margin-top: 1rem;
}

.bottom-cr {
    margin-top: 1rem;
    text-align: center;
}

.small-strike-out {
    text-decoration: line-through;
    font-weight: 400;
}

.strike-out-small-mobile {
    text-decoration: line-through;
}

/* Media Querys */
@media screen and (max-width: 1440px) {
    .cta-boxes {
        margin-left: 10px;
        margin-right: 10px;
    }

    .tenth-section .col-md-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .second-section .col-md-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

@media screen and (max-width: 1024px) {
    .tenth-section .row {
        max-width: 100%;
    }
}

@media only screen and (max-width: 991px) {
    .second-section .col-md-4 {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media only screen and (min-width: 768px) {
    .mobile-add-carts .col-4 .row {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .desktop-none {
        display: none;
    }

    .second-section .row {
        max-width: 100%;
    }

    .cta-boxes h3 {
        font-size: 1.5rem;
    }

    .price-area h3 {
        font-size: 40pt;
    }
}

@media only screen and (max-width: 767px) {
    .mobile-none {
        display: none !important;
    }

    .footer-links {
        display: inline;
    }

    .footer-container a {
        white-space: nowrap;
    }

    .right-footer-links {
        display: inline-block;
        padding-top: 1rem;
        padding-bottom: 1rem;
        width: 100%;
    }

    .footer-container p {
        display: inline;
        margin-left: 0;
    }

    .footer-container p {
        font-size: 8pt;
    }

    .second-section {
        padding-left: 0;
        padding-right: 0px;
    }

    .second-section .row {
        justify-content: center;
        align-items: center;
        display: flex;
        border-bottom: 1px solid #000000;
        border-top: 1px solid #000000;
        border-left: 1px solid black;
        border-right: 1px solid black;
    }

    .second-section .container {
        max-width: 875px;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .headline {
        padding-top: 1rem;
        padding-bottom: 15px;
        font-size: 26px;
        text-shadow: none;
        line-height: normal;
    }

    .video-holder {
        padding-bottom: 3rem;
    }

    .second-section .col-md-4 {
        margin-bottom: 2rem;
    }

    .free-shipping-text {
        justify-content: center;
        padding-top: 1rem;
    }

    .ingredients-icon-holder p {
        font-size: 18px;
        line-height: normal;
    }

    .ingredients-icon-holder img {
        max-width: 35px;
    }

    .ingredients-icon-holder {
        display: block;
        text-align: center;
    }

    .icon-top-holder {
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
    }

    .icon-top-holder .col-md-4 {
        width: 100%;
        max-width: 100%;
        display: inline;
    }

    .fifth-section .container {
        width: 100%;
        max-width: 100%;
    }

    .testimonials-one {
        justify-content: flex-start;
        padding-bottom: 1rem;
    }

    .main-testimonials-holder {
        padding-bottom: 2rem;
    }
}

@media only screen and (max-width: 575px) {
    .ref-image img {
        max-width: 100%;
    }

    .justify-footer {
        text-align: justify;
        line-height: 1.1;
    }
}

@media only screen and (max-width: 480px) {
    .player-paused-overlay {
        background-image: url(/lander-vsl/imgs/TransparentOverlayM.png);
    }

    .second-section .row {
        max-width: 100%;
    }

    .row.desktop-none.mobile-add-carts {
        margin-left: auto;
        margin-right: auto;
        max-width: 95%;
    }
}

@media only screen and (max-width: 425px) {
    .second-section-timer h2 {
        font-size: 30px;
    }

    .icon-top-holder {
        display: block;
        padding-top: 0;
    }

    .ingredients-icon-holder p {
        padding-left: 0;
        width: 100%;
        padding-right: 0;
        padding-top: 0px;
        padding-bottom: 20px;
    }

    .ingredients-icon-holder img {
        max-width: 100%;
    }

    .ingredients-logo-holder {
        padding-bottom: 2rem;
    }

    .footer-links {
        display: block;
    }

    .free-shipping-text {
        text-align: center;
    }

    .main-testimonials-holder {
        text-align: center;
    }

    .testimonials-one {
        justify-content: center;
    }
}
