*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #f1f1f1;
}

.container{
    width: 100%;
    max-width: 1300px;
    margin: auto;
}

.margin-top{
    margin-top: 58px !important;
}

.mt9{
    margin-top: 9px !important;
}

.mb0{
    margin-bottom: 0px !important;
}

.red{
    color: #d43035;
}

/* FIRST SECTION - VIDEO */

.title-container{
    width: 100%;
    background: linear-gradient(180deg, #dd363b 0.45%, #8d0206 199.14%);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 700px;
    height: 100%;
    padding-bottom: 50px;
}

.title{
    color: #fff;
    text-align: center;
    margin: 20px;

}

.video-container{
    max-width: 900px;
    margin-top: 10px;
}

.video{
    width: 900px;
}
.mobile-video{
    display: none;
}

.sound-on-container{
    margin-top: 10px;
    text-align: center;
    color: #fff;

}

.bold{
    font-weight: 500;
    text-decoration: underline;
    font-size: 20px;
    letter-spacing: 1px;
}

/* PRODUCT CONTAINER */

.discount-container{
    margin-top:20px;
}

.people-choose{
    background-color: #d43035;
    color: #fff;
    width: fit-content;
    padding: 10px 20px;
    margin: auto;
    position: relative;
    animation: bounce-slow 2s infinite;
    font-weight: 500;
    font-size: 14px;
}

.people-choose::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -9px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #d43035; 
}

@keyframes bounce-slow {
    0%, 100% {
        transform: translateY(0);
    }
    
    50% {
        transform: translateY(-50%);
    }
}

.discount-container h2{
    font-weight: 500;
    text-align: center;
    font-size: 34px;
    width: 80%;
    margin: auto;
    margin-bottom: 30px;
}

.pulse-animation {
    animation: pulse 1s ease-in-out;
}

.discount-container h2 span{
    font-weight: 700;
}

.products-container{
    display: flex;
    justify-content: space-evenly;
    margin-top:20px;
}

.product{
    border: 2px solid #c2c2c2;
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 5px;
    transition: 1s;
    background-color: #edeff4;
}

.product:hover{
    transform: scale(1.05);
}

.active{
    border: 3px solid #4caf50;
}
.product h3{
    font-size: 24px;
}

.product-img-container{
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 250px;
}

.product-img-container img{
    width: 100%;
    margin: auto;
}

.price{
    display: flex;
    align-items: center;
}

.price h2{
    font-weight: 700;
    font-size: 50px;
    margin: 0;
}

.price p{
    font-size: 14px;
}

.extra-products p i{
    color: #d43035;
    font-size: 24px;
    margin-right: 5px;
}

.extra-products p{
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 14px;
}

.total{
    position: relative;
    display: inline-block;
}
    
.total::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: red;
    top: 42%;
    left: 1px;
    transform: rotate(-20deg);
}

.product-bold{
    font-weight: 700;
    margin-bottom: 5px;
}

.product-red{
    color: #d43035;
    font-weight: 700;
    margin-bottom: 32px !important;
}

.product-button{
    cursor: pointer;
    background-color: #ffd814;
    border: none;
    color: #000;
    border: 1px solid #fcd200;
    font-weight: 600;
    padding: 1rem 0;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 5px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
    width: 97%;
    margin: 20px 0;
    transition: .5s;
    text-align: center;
    text-decoration: none;
}

.product-button:hover{
    background-color: #f7ca00;
}

.guarantee{
    font-size: 14px;
}

.cards{
    width: 50%;
    margin: 20px 0;
}

.total-container{
    display: flex;
    flex-direction: column;
    margin: auto;
    justify-content: center;
    align-items: center;
}

.old-price{
    position: relative;
    display: inline-block;
    font-weight: 400;
}

.old-price::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: red;
    transform: rotate(-15deg);
    transform-origin: center;
}

.total-price{
    font-weight: 600;
}

/* SECOND SECTION */

.second-section-container{
    width: 100%;
    max-width: 1100px;
    margin: auto;
    background-color: #d7d7d7;
    margin-top: 80px;
    border-radius: 5px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.money-back {
    position: absolute;
    left: 50%;
    top: -2.5px;
    transform: translate(-50%, -50%);
    width: 170px !important;
    height: auto;
}

.second-section-container h2{
    font-size: 46px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.second-section-p{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 16px;
}

.second-section-p h3{
    margin: 30px;
    font-style: italic;
    font-weight: 600;
}

.second-section-container img{
    width: 305px;
}

/* THIRD SECTION */

.third-section-container{
    width: 100%;
    max-width: 1300px;
    margin: auto;
    margin-top: 70px;
    border-radius: 5px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    color: #fff;
    align-items: center;
}

.free-title{
    text-align: center;
    font-size: 46px;
    width: 61%;
    margin: auto;
    font-weight: 500;
    color: #000;
}

.free-title span{
    font-weight: 700;
}

.free-bonus-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 65%;
    margin: auto;
    margin-top: 40px;
}

.free-bonus-container img{
    max-width: 550px;
    margin: auto;
}

.free-button{
    cursor: pointer;
    background-color: #ffd814;
    border: none;
    color: #000;
    border: 1px solid #fcd200;
    font-weight: 600;
    padding: 1rem 5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 5px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
    margin: 60px 0 0px 0;
    transition: .5s;
    width: 30%;
}

.free-button:hover{
    background-color: #f7ca00;
}

/* FOURTH SECTION */

.fourth-section-bg{
    background: linear-gradient(180deg, #dd363b 0.45%, #8d0206 199.14%);
}

.fourth-section-container{
    width: 100%;
    max-width: 1100px;
    margin: auto;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fourth-section-container h2{
    font-size: 46px;
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: 500;
    text-align: center;
    color: #fff;
}

.fourth-section-container h2 span{
    font-weight: 700;
}

.fourth-section-subtitle{
    margin-bottom: 10px;
    text-align: center;
    color: #fff;
}

.background-image{
    border-radius: 5px;
    padding: 20px;
}

.background-image img{
    width: 150px;
    height: 150px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #e5e5e5;
}

.ingredients p{
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.ingredients-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: hidden;
}

.ingredients {
    flex: 0 0 24%; 
    box-sizing: border-box;
    display: none; 
    min-height: 300px; 
    padding: 10px;
    text-align: center;
}

.ingredients.visible {
    display: block;
}

.ingredients .background-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.ingredients .background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.ingredients h3 {
    font-size: 22px;
    color: #fff;
}

.ingredients p {
    font-size: 0.9rem;
    line-height: 1.4;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #b3001b;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.indicator.active1 {
    background-color: #f1f1f1; 
}

/* FIFHT SECTION */

.fifth-section-container{
    width: 100%;
    max-width: 1300px;
    margin: auto;
    background: linear-gradient(127deg, #b3001b -16.14%, #931f1d 33.43%);
    margin-top: 70px;
    border-radius: 5px;
    padding: 3rem;
    display: flex;
    color: #fff;
    justify-content: space-around;
}

.fifth-left{
    padding-right: 3rem;
    padding-left: 3rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 20px;
}

.fifth-left h3{
    font-size: 38px;
    font-weight: 500;
    width: 75%;
}

.fifth-button{
    cursor: pointer;
    background-color: #ffd814;
    border: none;
    color: #000;
    border: 1px solid #fcd200;
    font-weight: 600;
    padding: 1rem 5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 5px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
    margin: 20px 0;
    transition: .5s;
    width: 50%;
}

.fifth-button:hover{
    background-color: #f7ca00;
}

.fifth-right{
    display: flex;
    justify-content: center;
    width: 50%;
    align-items: center;
}

.fifth-right img{
    width: 500px;
}

/* REVIEWS */

.reviews-container{
    width: 100%;
    max-width: 1300px;
    margin: auto;
    margin-top: 30px;
    border-radius: 5px;
    padding: 3rem;
    display: flex;
    flex-direction: row;
    flex-direction: column;
}

.reviews-container h3{
    font-size: 46px;
    font-weight: 500;
    text-align: center;
}

.reviews{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 30px;
}

.review{
    background-color: #fff;
    display: flex;
    text-align: left;
    width: 370px;
    border-radius: 5px;
    align-items: flex-start;
    flex-direction: column;
    box-shadow: 0px 2px 4px 0px #000;
    padding: 15px;
}

.profile{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.profile-info{
    display: flex;
    align-items: center;
}

.review img{
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.flag-container{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.flag-container p{
    font-size: 12px;
}

.flag{
    border-radius: 0 !important;
    width: 25px !important;
    height: 20px !important;
    margin: 0 !important;
}

.review-data{
    padding: 10px;
    text-align: center;
}

.review-data h3{
    font-size: 16px;
    text-align: left;
    margin-bottom: 10px;
}

.verified-review{
    color: #4caf50;
    font-weight: 600;
    font-size: 14px;
}

.comment{
    font-size: 14px;
    text-align: left;
    margin-bottom: 10px;
}

.verified-purchase{
    display: flex;
    margin-top: 10px;
    align-items: center;
    flex-direction: column;
    margin-left: 5px;
}

.verified-purchase i{
    color: #ffc107;
    font-size: 16px;
}

.verified-purchase p{
    font-size: 10px;
}

.reviews-container h2{
    text-align: center;
    margin-top: 70px;
    font-size: 30px;
    font-weight: 500;
    color: #d43035;
    text-decoration: underline;
}

.reviews-container h2 span{
    font-weight: 700;
}
/* FAQ */

.faq-container{
    width: 100%;
    max-width: 1300px;
    margin: auto;
    background: linear-gradient(180deg, #dd363b 0.45%, #8d0206 199.14%);
    margin-top: 70px;
    border-radius: 5px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-container h2{
    font-size: 46px;
    font-weight: 500;
    text-align: center;
    color: #fff;
}

.faq{
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 90%;
    margin-top: 30px;
    gap: 20px;
}

.question-container{
    border-radius: 5px;
    cursor: pointer;
    background-color: #fcfcfd;
}

.question{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #edeff4;
    border-radius: 5px;
    padding: 1.5rem;
}

.question img{
    width: 20px;
}

.answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.3s ease, opacity 0.3s ease;
    padding: 0; 
    text-align: left;
}

.answer.display-none {
    height: 0;
    opacity: 0;
    padding: 0;
}

.answer.show {

    opacity: 1;
    padding: 1.5rem; 
}

/* CHARACTERISTICS */

.characteristics-container{
    width: 100%;
    max-width: 1200px;
    display: flex;
    margin: auto;
    justify-content: space-between;
    margin-top: 100px;
}

.characteristics-img{
    width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.characteristics-img img{
    width: 500px;
}

.characteristics{
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    width: 800px;
}

.characteristics h3{
    font-size: 38px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
}

.characteristics ul{
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
    margin: 20px auto;
}

.characteristics ul li{
    width: 30%;
}

.characteristics ul li i{
    margin-right: 2px;
}

.characteristics-button{
    cursor: pointer;
    background-color: #ffd814;
    border: none;
    color: #000;
    border: 1px solid #fcd200;
    font-weight: 600;
    padding: 1rem 5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 5px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
    margin: 20px 0;
    width: fit-content;
    transition: .5s;
}

.characteristics-button:hover{
    background-color: #f7ca00;
}

/* SATISFACTION GUARANTEED */

.satisfaction-guaranteed-container{
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: auto;
    background: linear-gradient(180deg, #dd363b 0.45%, #8d0206 199.14%);
    margin-top: 70px;
    border-radius: 5px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    color: #fff;
    align-items: center;
    padding-bottom: 5rem ;
}



.satisfaction-guaranteed-container h2, 
.satisfaction-guaranteed-container p {
    text-align: center;
}

.satisfaction-guaranteed-container h2{
    font-size: 48px;
    font-weight: 500;
}

.satisfaction-guaranteed-container p{
    width: 90%;
    margin: 30px auto 0 auto;
    line-height: 2;
}

/* SCIENTIFIC REFERENCES */

.scientific-references-container{
    width: 100%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    font-size: 12px;
}

.scientific-references-container h2{
    font-size: 40px;
    font-weight: 500;
}

.scientific-references-container h2 span{
    font-weight: 700;
}

.ref-imgs {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.ref-imgs img{
    width: 300px;
}

.pmc{
    width: 150px !important;
}

.scientific-references-container ul {
    columns: 2;
    column-gap: 30px;
    list-style-type: decimal;
    padding-left: 20px;
    margin: 0 auto;
    max-width: 800px;
    text-align: left;
}

.scientific-references-container li {
    break-inside: avoid; 
}

.scientific-references-container p{
    margin-bottom: 20px;
}

/* LAST IMAGE */

.last-image-container{
    display: flex;
    width: 100%;
    max-width: 500px;
    margin: auto;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 30px;
}

.last-image-container img{
    width: 100%;
}

.last-image-container div{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ec2d32;
    border: 0;
    border-radius: 5px;
    padding: .75rem 1rem;
    color: #fff;
    cursor: pointer;
    box-shadow: 0px 0px 9px #000;
}

/* POP UP */

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    border-radius: 5px;
}

.popup img {
    max-width: 100%;
    height: auto;
    box-shadow: 0px 0px 5px #000;
}

.popup button {
    margin-top: 10px;
    margin-top: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.popup button i{
    font-size: 20px;
}

.popup.hidden {
    display: none;
}

/* NOTIFICATION */

.purchase{
    display: flex;
    width: fit-content;
    background-color: #2c2c2c;
    border-radius: 5px;
    padding: 5px;
    color: #e1e5ee;
    align-items: center;
    font-size: 14px;
    position: fixed;
    bottom: 2%;
    left: 1%;
    z-index: 1000;
    padding-right: 15px;
}

.image-purchase-container{
    max-width: 120px;
}

.image-purchase-container img{
    width: 100%;
}

.check{
    width: 15px !important;
}

.verified{
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 12px;
}

.bottle-quantity{
    font-weight: 600;
}

.time{
    font-size: 12px;
}

.hidden {
    display: none;
}

/* FIRST-SECOND EXIT POP UP */

.firstexitpopup {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 700px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    z-index: 1000000;
    transform: translate(-50%, -50%); 
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 5px; 
    padding: 20px;
}

.close-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff4444;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

/* FIRST EXIT */

.firstexitpopup h2{
    text-transform: uppercase;
    color: #d43035;
    font-weight: 600;
    padding: 10px;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(0);
    }
    
    50% {
        transform: scale(1.1);
    }
}

.subtitle-popup{
    text-align: center;
    font-size: 16px;
    padding: 10px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 10px !important;
}

.subtitle{
    font-size: 26px;
    margin-bottom: 0 !important;
}

.first-exit-popup-container{
    display: flex;
    width: 80%;
    gap: 10px;
    align-items: center;
}

.popup-img-container img{
    max-width: 225px;
    border-radius: 5px;
}

.first-exit-popup-container p{
    line-height: 2;
    margin: 0;
    font-size: 15px;
    text-align: left;
}

.stay-tuned{
    margin-top: 30px;
    background-color: #ffd814;
    color: #000000;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    width: 70%;
    line-height: 2;
    cursor: pointer;
}

.close-btn-exit{
    position: absolute;
    top: 10px;
    right: 10px; 
    background: #d43035;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
}

.text-version{
    cursor: pointer;
    background-color: transparent;
    border: none;
    background-color: #d43035;
    padding: 5px 10px;
    color: #fff;
    text-decoration: underline;
    margin: 10px;
    font-size: 14px;
}

.stay-reading{
    font-size: 14px;
    margin-top: 10px;
}


/* FOOTER */

footer ul{
    display: flex;
    list-style-type: none;
    width: 100%;
    justify-content: center;
    gap: 30px;
    margin: 60px auto 30px auto;
    flex-wrap: wrap;
}

footer ul li{
    cursor: pointer;
}

footer ul li a{
    color: #212529;
    text-decoration: none;
}

/* TEXT VERSION */

.text-title-container{
    display: flex;
    align-items: center;
    margin: auto;
    color: #fdfdfd;
    width: 60%;
}

.info-title-text{
    margin: auto;
    color: #fdfdfd;
    width: 60%;
    padding-bottom: 30px;
}

.info-title-text p{
    font-weight: 600;
    font-size: 16px;
}

.info-title-text ul{
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    gap: 30px;
    margin: 20px auto;
    justify-content: center;
}

.info-title-text ul li{
    width: 30%;
    font-size: 15px;
}

.info-title-text ul li i{
    margin-right: 6px;
}

.text-title-bg{
    background: linear-gradient(180deg, #dd363b 0.45%, #8d0206 199.14%);
    width: 100%;
}

.text-title-container h2, .text-title-container h3{
    text-align: right;
}

.text-title-container h2{
    font-size: 36px;
    margin-bottom: 30px;
}

.text-title-container h3{
    font-size: 28px;
}

.body-textversion{
    background-color: #f1f1f1;
}

.text-title{
    text-align: center;
    margin: auto;
    font-size: 34px;
    margin-bottom: 0;
    width: 50%;
    margin-top: 30px;
}

.text-version-container{
    display: flex;
    padding: 20px;
    max-width: 1200px;
    align-items: center;
    flex-direction: column;
    margin: auto;
}

.text-version-container h4{
    width: 80%;
    font-size: 23px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.text-version-container h3{
    font-size: 24px;
    margin: 20px 0;
}

.flexbox{
    width: 80%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px 0;
}

.flexbox img{
    width: 400px;
    border-radius: 5px;
}

.bottle-img{
    width: 300px;
}

.text-version-image-container{
    margin: 20px auto;
    max-width: 1200px;
    width: 80%;
}

.cells{
    width: 300px !important;
}

.text-version-container p{
    width: 80%;
    line-height: 2.5;
}

.text-version-image-container img{
    border-radius: 5px;
    width: 100%;
}

.bottle-text{
    background-color: #d43035;
    padding: 15px;
    border-radius: 5px;
    color: #fff;
}

.bottle-text p{
    padding-right: 40px;
}

.bottle-3{
    max-width: 600px;
    width: 100%;
}

.reference{
    font-size: 12px !important;
}

.logo-container{
    max-width: 500px;
    margin: auto;
}

.logo-container img{
    width: 100%;
}

.in-response{
    display: flex;
    padding: 20px;
    max-width: 1200px;
    align-items: center;
    flex-direction: column;
    margin: auto;
    text-align: center;
    margin-top: 30px;
}

.in-response h2{
    font-size: 60px;
    font-style: italic;
}

/* CONTACT */

.contact-container{
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    margin: auto;
    align-items: center;
    width: 100%;
    padding: 0 16px;
}

.contact-subtitle{
    margin: 30px auto;
    line-height: 2;
    padding: 20px;
    text-align: center;
}

.contact-info{
    background-color: #fff;
    display: flex;
    flex-direction: column;
    width: fit-content;
    padding: 30px;
    gap: 20px;
    border-radius: 5px;
}

.email, .phone{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.email p, .phone p{
    font-size: 16px;
}

.email i, .phone i{
    color: #d43035;
    font-size: 24px;
}

.phone i {
    padding-left: 4px;
}

.contact-time{
    text-align: center;
}

/* SHIPPING AND RETURNS */

.navbar{
    display: flex;
    justify-content: center;
    width: 100%;
}

.navbar-img-cont{
    max-width: 200px;
}

.navbar-img-cont img{
    width: 100%;
}

.shipping-container{
    max-width: 1200px;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    margin: auto;
    align-items: center;
}

.shipping-divs{
    text-align: justify;
}

.shipping-divs h3{
    font-size: 20px;
    margin: 10px 0;
}

.shipping-divs p{
    line-height: 2;
}

.return-address{
    margin: 20px;
}

/* TERMS & CONDITIONS */

.terms-container{
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    margin: auto;
    align-items: center;
    padding: 0 16px;
}


.products-container-mobile{
    display: none;
}

/* MEDIA Q */

@media (max-width: 450px) {
    .products-container, .characteristics-container, .ingredients-container, .first-exit-popup-container{
        flex-direction: column;
    }
    .characteristics, .video, .characteristics-img img, .last-image-container img, .satisfaction-guaranteed-container p{
        width: 100%;
    }
    .video-container, .characteristics-img{
        width: 95%;
        margin: auto;
    }
    .product{
        width: 90%;
        margin: auto;
    }
    .firstexitpopup, .secondexitpopup, .faq, .stay-tuned{
        width: 95%;
    }
    .products-container{
        display: none;
    }
    .rating{
        width: 80%;
        line-height: 2;
    }
    .fourth-section-container h2{
        width: 80%;
        font-size: 36px;
    }
    .reviews-container{
        padding: 10px;
    }
    .reviews{
        justify-content: center;
    }
    .second-section-container{
        margin-top: 120px;
        width: 90%;
    }
    .second-section-container h2{
        width: 95%;
        font-size: 32px;
    }
    .faq-container{
        padding: 20px;
    }
    .question{
        gap: 10px;
    }
    .characteristics h3, .satisfaction-guaranteed-container h2{
        font-size: 33px;
        text-align: center;
    }
    .characteristics ul{
        justify-content: space-around;
    }
    .characteristics ul li {
        width: auto;
    }
    .characteristics{
        align-items: center;
    }
    .satisfaction-guaranteed-container p{
        line-height: 2;
    }
    .scientific-references-container h2 {
        font-size: 36px;
        width: 80%;
        margin: auto;
        text-align: center;
    }
    .first-exit-popup-container p, .advantage{
        text-align: center;
    }
    .first-exit-popup-container{
        width: 90%;
    }
    .secondexitpopup h2{
        width: 100% !important;
    }
    .discount{
        width: 130px;
        height: 110px;
    }
    .second-exit-popup-container p{
        line-height: 1.5;
    }
    .discount-button{
        width: 85%;
    }
    .scientific-references-container ul{
        display: flex;
        flex-direction: column;
        width: 75%;
        margin: auto;
    }
    .scientific-references-container p{
        width: 80%;
        margin-top: 20px;
    }
    /* TEXT VERSION */
    .flexbox{
        flex-direction: column;
        width: 90%;
        gap: 20px;
    }
    .text-version-image-container{
        width: 100%;
    }
    .text-version-image-container img{
        width: 100%;
    }
    .flexbox img{
        width: 60%;
    }
    .text-title{
        width: 90%;
    }
    .bottle-text p{
        padding: 0;
        text-align: center;
    }
    .text-title-container, .info-title-text{
        flex-direction: column;
        width: 100%;
    }
    .bottle-3,.info-title-text ul,.text-version-container p,.flexbox,.text-version-container h4 {
        width: 100%;
    }
    .text-title-container h2, .text-title-container h3, .info-title-text p, .info-title-text ul li{
        text-align: center;
    }
    .text-title-container h2{
        margin-top: 20px;
    }
    .info-title-text{
        flex-direction: column;
        width: 100%;
    }
    .last-image-container {
        width: 90%;
    }
    /* TERMS AND CONDITIONS */
    .terms-container, .shipping-container, .contact-container{
        width: 90%;
    }
    /* FOOTER */
    footer ul{
        width: 95%;
        margin: 10px 0px;
    }
    .contact-container{
        margin: auto;
    }
    .products-container-mobile{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

@media (min-width: 450px) and (max-width: 768px) {
    .video-container, .characteristics-img {
        width: 95%;
        margin: auto;
    }
    .video{
        width: 100%;
    }
    .products-container{
        flex-direction: column;
        gap: 20px;
    }
    .product{
        width: 95%;
        margin: auto;
    }
    .fourth-section-container h2,.second-section-container h2{
        font-size: 33px;
    }
    .products-container, .characteristics-container, .ingredients-container, .first-exit-popup-container {
        flex-direction: column;
    }
    .reviews{
        justify-content: center;
    }
    .characteristics{
        width: 95%;
        margin: auto;
        align-items: center;
        text-align: center;
    }
    .characteristics ul{
        justify-content: space-between;
    }
    .characteristics ul li{
        width: 47%;
    }
    .scientific-references-container ul{
        columns: 1;
        width: 90%;
        margin: auto;
    }
    .scientific-references-container p{
        text-align: center;
        margin-top: 10px;
    }
    .firstexitpopup{
        width: 95%;
    }
    .text-title-container, .info-title-text{
        flex-direction: column;
        width: 100%;
    }
    .flexbox{
        width: 100%;
        flex-direction: column;
    }
    .bottle-3{
        width: 100%;
    }
    .text-title-container h2, .text-title-container h3, .info-title-text p, .info-title-text ul li {
        text-align: center;
    }
    .rating {
        width: 80%;
    }
    .terms-container, .shipping-container, .faq-container{
        width: 95%;
    }
    
}

@media only screen and (max-width: 600px) {
    .title {
        font-size: 6px;
        margin: 9px;
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    .video-container, .characteristics-img {
        width: 95%;
        margin: auto;
    }
    .video{
        width: 100%;
    }
    .products-container{
        flex-direction: column;
        gap: 20px;
    }
    .product{
        width: 95%;
        margin: auto;
    }
    .fourth-section-container h2,.second-section-container h2{
        font-size: 33px;
    }
    .products-container, .characteristics-container, .ingredients-container, .first-exit-popup-container {
        flex-direction: column;
    }
    .reviews{
        justify-content: center;
    }
    .review{
        width: 350px;
    }
    .characteristics{
        width: 95%;
        margin: auto;
        align-items: center;
        text-align: center;
    }
    .characteristics ul{
        justify-content: space-between;
    }
    .characteristics ul li{
        width: 47%;
    }
    .scientific-references-container ul{
        columns: 1;
        width: 90%;
        margin: auto;
    }
    .scientific-references-container p{
        text-align: center;
        margin-top: 10px;
    }
    .product-img-container{
        max-width: 600px;
    }
    .title-container{
        height: 710px;
    }
    .text-title-container, .info-title-text{
        flex-direction: column;
        width: 100%;
    }
    .flexbox{
        width: 100%;
        flex-direction: column;
    }
    .bottle-3{
        width: 75%;
    }
    .text-title-container h2, .text-title-container h3, .info-title-text p, .info-title-text ul li {
        text-align: center;
    }
    .text-version-image-container, .text-version-container p, .text-version-container h4{
        width: 100%;
    }
    .bottle-text p{
        text-align: center;
        padding: 0;
    }
    .info-title-text{
        width: 95%;
    }
    .terms-container, .shipping-container, .faq-container{
        width: 95%;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .product-button{
        font-size: 15px;
    }
    .reviews {
        justify-content: center;
    }
    .review{
        width: 300px;
    }
    .title-container{
        height: 720px;
    }
    .text-title-container, .info-title-text{
        flex-direction: column;
        width: 90%;
    }
    .text-title-container h2, .text-title-container h3, .info-title-text p{
        text-align: center;
    }
    .info-title-text ul{
        width: 50%;
    }
    .terms-container, .shipping-container, .faq-container{
        width: 95%;
    }
}

@media all and (max-width: 450px) {
    .video{
        display: none;
    }
    .mobile-video{
        width: 100%;
        display: block;
    }
    .mobile-video > div {
        max-width: 100% !important;
    }
}

.mt22{
    margin-top: 22px;
}


.hide{
    display: none;
}

