@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* 
  font-family: "Poppins", sans-serif;
font-family: "DM Serif Display", serif;
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all .2s linear;
    outline: none;
    text-decoration: none;
}

a {
    cursor: pointer;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}


/* *********************************** */
/* Utility Classes: start */

:root {
    /* colors */
    --primary__color: #9D8849;
    --off__black: #221F20;
    --para__color: #797776;
    --normal__white: #ffffff;

    /* typefaces */
    --primary__typeface: "DM Serif Display", serif;
    --secondary__typeface: "Poppins", sans-serif;
}

.highlight__text {
    color: var(--primary__color);
}

.desktop__max__width {
    max-width: 130rem;
    padding: 0 2.4rem;
    margin: 0 auto;
}

.section__margin__bottom {
    margin-bottom: 10rem;
}

.section__heading__left {
    font-family: var(--primary__typeface);
    font-size: 6.4rem;
    font-weight: 800;
    color: var(--off__black);
    line-height: 125%;
    margin-bottom: 2.4rem;
}

.section__heading__center {
    font-family: var(--primary__typeface);
    font-size: 6.4rem;
    font-weight: 800;
    color: var(--off__black);
    line-height: 125%;
    text-align: center;
    margin-bottom: 4.8rem;
}

.general__para {
    font-family: var(--secondary__typeface);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--para__color);
    line-height: 150%;
}

.primary__btn {
    height: 5.6rem;
    width: max-content;
    padding: 1.6rem 4rem;

    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 2.4rem;
    border-bottom-right-radius: 2.4rem;
    background: var(--primary__color);

    font-family: var(--secondary__typeface);
    font-size: 1.8rem;
    color: var(--normal__white);

    box-shadow: 0 12px 24px hsla(44, 37%, 26%, 0.6);
}

.primary__btn:hover {
    background: #927F44;
}

.secondary__btn {
    height: 5.6rem;
    width: max-content;
    padding: 1.6rem 4rem;

    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 2.4rem;
    border-bottom-right-radius: 2.4rem;
    background: transparent;

    font-family: var(--secondary__typeface);
    font-size: 1.8rem;
    color: var(--off__black);
    border: 1px solid var(--primary__color);
}

.secondary__btn:hover {
    background: #F5F2EA;
}

/* Utility Classes: end */
/* *********************************** */



/* hero: start */
.hero__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.hero__heading {
    font-family: var(--primary__typeface);
    font-size: 7.2rem;
    font-weight: 800;
    line-height: 100%;
    color: var(--off__black);
    margin-bottom: 1.6rem;
}

.hero__para {
    font-family: var(--secondary__typeface);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--para__color);
    line-height: 150%;
    margin-bottom: 4.8rem;
}

.hero__image {
    width: 64rem;
    height: auto;
    object-fit: contain;
}

.logo__container {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero__logo__image {
    width: 10rem;
    height: auto;
    object-fit: contain;
    margin-top: 2.4rem;
}

.hero__btns {
    display: flex;
    align-items: center;
    gap: 3.2rem;
    height: 100%;
}

.video__play__btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;

    font-family: var(--secondary__typeface);
    font-size: 1.8rem;
    color: var(--off__black);
    font-weight: 400;
}

.play__icon {
    width: 7.2rem;
    height: auto;
    object-fit: contain;

    box-shadow: 0 12px 24px hsla(44, 37%, 26%, 0.6);
    border-radius: 100%;
}

/* video overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px); */
    background: hsla(0, 0%, 20%, 0.2);
    backdrop-filter: blur(10px);
    z-index: 9999;
    text-align: center;
}

.video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 1.6rem;
    border-radius: 1.6rem;
    /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); */

    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;

    max-width: 130rem;
    max-height: calc(100vh - 7.2rem);
    margin: 0rem auto;
}

#video-player {
    width: 100%;
    border-radius: 1.6rem;
}

.video__close__btn {
    font-size: 2.4rem;
    font-weight: bold;
    outline: none;
    border: none;
    background: white;
    position: absolute;
    height: 2.4rem;
    width: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.4rem;
    border-radius: 99rem;

    top: 5rem;
    right: 5rem;
}

/* hero: end */



/* featured: start */
.featured__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured__image {
    width: 90rem;
    height: auto;
    object-fit: contain;
    margin: 0rem auto;
}

.featured__image__mobile {
    display: none;
}

/* featured: end */



/* ************ details: start ************ */
/* intro */
.intro__container {
    display: flex;
    gap: 15.6rem;
    align-items: center;
    justify-content: space-between;
}

.intro__image__1 {
    width: 50rem;
    height: auto;
    object-fit: contain;
}

.intro {
    margin-bottom: 16.4rem;
}

.intro,
.about {
    z-index: 99;
}

.about__container {
    gap: 8rem;
}

.intro__image__2 {
    width: 56rem;
    height: auto;
    object-fit: contain;
}

.details {
    background: #E5DFCE;
    border-top-left-radius: 20rem;
    border-bottom-right-radius: 20rem;
    padding: 12.4rem 0rem;

    position: relative;
    overflow: hidden;
}

.details__image {
    width: 16rem;
    height: auto;
    object-fit: contain;
}

.details__image__1 {
    width: 16rem;
    height: auto;
    object-fit: contain;

    position: absolute;
    top: -4.8rem;
    right: 0;
    transform: rotate(-145deg);
}

.details__image__2 {
    position: absolute;
    top: 52%;
    left: -1rem;
    transform: rotate(24deg);
}

.details__image__3 {
    position: absolute;
    bottom: 0;
    left: 42%;
    transform: rotate(12deg);
}

/* ************ details: end ************ */



/* benefit: start */
.benefit__name {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.benefit__image {
    width: 6rem;
    height: auto;
    object-fit: contain;
}

.benefit__text {
    font-family: var(--secondary__typeface);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--off__black);
}

.benefits__box {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-column-gap: 16rem;
    grid-row-gap: 5.6rem;
}

/* benefit: end */



/* tech: start */
.tech__container {
    display: flex;
    gap: 4.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tech__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;

    flex: 1;
    max-width: 38rem;
    min-width: 30rem;
}

.tech__image {
    width: 12rem;
    height: auto;
    object-fit: contain;
}

.tech__text {
    font-family: var(--primary__typeface);
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--off__black);
    text-align: center;
}

/* tech: end */



/* scientific reference: start */
.sci__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sci__image {
    width: 112rem;
    height: auto;
    object-fit: contain;
    margin-bottom: 4.8rem;
}

.sci__image__mobile {
    display: none;
}

/* scientific reference: end */



/* reviews: start */
.review__box {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-column-gap: 4rem;
    grid-row-gap: 4.8rem;
    place-items: center;
}

.review__card {
    padding: 3.2rem 3.2rem;
    background: #E5DFCE;
    border-top-left-radius: 3.2rem;
    border-bottom-right-radius: 3.2rem;
    min-height: 56rem;

    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    justify-content: space-between;
}

.reviewer {
    display: flex;
    gap: .8rem;
    align-items: center;
}

.reviewer__text {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    justify-content: center;
}

.reviewer__name {
    font-family: var(--secondary__typeface);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--off__black);
}

.reviewer__image {
    width: 7rem;
    height: 7rem;
    object-fit: contain;
}

.stars__image {
    width: 15rem;
    height: auto;
    object-fit: contain;
}

/* reviews: end */



/* faq: start */
.faq {
    display: flex;
    gap: 8.4rem;
    justify-content: space-between;
    align-items: center;
}

.faq__image {
    width: 60rem;
    height: auto;
    object-fit: contain;
}

.faq__box {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.accordion-group .accordion-item {
    padding: 1.8rem;

    border-radius: 1.4rem;
    cursor: pointer;
    overflow: hidden;
    margin-bottom: 1.8rem;

    max-width: 90%;
    border: 2px solid #E5DFCE;
}

.accordion-group .accordion-item.active {
    background: #F8F3F1;
}

.accordion-group .accordion-item .accordion-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-group .accordion-item .accordion-question h3 {
    color: var(--off__black);

    /* Body/SB-1 */
    font-family: var(--secondary__typeface);
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 125%;
    max-width: 90%;
    height: fit-content;
}

.accordion-group .accordion-item .accordion-question .chevron-icon {
    width: 3.2rem;
    height: auto;
    transition: transform 0.2s;
}

.accordion-group .accordion-item .accordion-question .chevron-icon.active {
    transform: rotate(-180deg);
}

.accordion-group .accordion-item .accordion-answer {
    overflow: hidden;
    max-height: 0rem;
    transition: margin-top .3s, max-height .3s;
}

.accordion-group .accordion-item .accordion-answer p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 175%;
    max-width: 90%;
    height: fit-content;
}

/* faq: end */



/* Blog: start */
.blog__card__container {
    display: flex;
    gap: 3.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.blog__card {
    flex: 1;
    max-width: 38rem;
    min-width: 30rem;

    display: flex;
    flex-direction: column;
    gap: 1.6rem;

    font-family: var(--secondary__typeface);
}

.blog__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 1.6rem;
}

.blog__heading a {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 150%;
    color: var(--off__black);
}

.blog__text {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 150%;
    color: var(--para__color);
}

.read__more__cta {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 175%;
    color: var(--para__color);
    text-decoration: underline;
}

.blog__card a:hover {
    text-decoration: underline;
}

/* Blog: end */



/* footer: start */
footer {
    background: var(--primary__color);
    border-top-left-radius: 12.4rem;
    padding: 6.4rem 0rem;
}

.footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;
}

.footer__logo {
    width: 9rem;
    height: auto;
    object-fit: contain;
}

.quick__links a,
.copyright {
    text-decoration: none;
    font-family: var(--secondary__typeface);
    color: var(--normal__white);
    font-size: 1.8rem;
    font-weight: 300;
}

.quick__links {
    display: flex;
    gap: 2.4rem;
}

.quick__links a:hover {
    text-decoration: underline;
}

/* footer: end */



/* offer: start */
.main__price,
.total__price,
.shipping__price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.main__price {
    margin-bottom: 1.6rem;
}

.shipping__price {
    margin-bottom: 3.2rem;
}

.price__box {
    display: flex;
    gap: 3.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.price__card {
    flex: 1;
    max-width: 40rem;
    min-width: 30rem;

    display: flex;
    flex-direction: column;
    align-items: center;

    border: 1px solid #E5DFCE;
    border-top-left-radius: 3.2rem;
    border-bottom-right-radius: 3.2rem;

    padding: 5.6rem 3.2rem;

    position: relative;
}

.bottle__no {
    font-family: var(--secondary__typeface);
    color: var(--off__black);
    font-size: 2rem;
    font-weight: 500;
}

.bottle__price {
    font-family: var(--secondary__typeface);
    color: var(--off__black);
    font-size: 3.2rem;
    font-weight: 600;
}

.bottle__price span {
    font-size: 1.4rem;
    font-weight: 400;
}

.total__price p:first-child,
.shipping__price p:first-child {
    font-weight: 400;
}

.total__price p:last-child,
.shipping__price p:last-child {
    font-weight: 500;
}

.money__back {
    display: flex;
    align-items: center;
    gap: 1.2rem;

    margin-bottom: 3.2rem;
    width: 100%;
}

.money__back img {
    width: 2.4rem;
    height: auto;
    object-fit: contain;
}

.money__back p {
    font-family: var(--secondary__typeface);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--off__black);
    line-height: 125%;
}

.price__box .primary__btn {
    width: 100%;
}

.product__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 3.2rem;
}

.price__card__2 {
    outline: 14px solid #F6F4EE;
    border: none;
    background-color: #E5DFCE;
}

.bonus__badge {
    font-family: var(--secondary__typeface);
    color: var(--off__black);
    font-size: 1.4rem;
    line-height: 100%;
    padding: 1rem 1.6rem;
    background: #C2F2C7;
    border: 1px solid #7CE287;
    border-radius: 99rem;

    position: absolute;
    right: 1rem;
    top: 1rem;
}

.payment__icons {
    display: flex;
    gap: 1.6rem;
    width: 100%;
    justify-content: center;
    align-items: center;
    /* margin-top: 7.2rem; */
    margin: 7.2rem auto;
}

.payment__icons img {
    width: 10rem;
    height: auto;
    object-fit: contain;
}

.bonus__container .section__heading__center {
    margin-bottom: 1.6rem;
}

.bonus__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bonus__title__text {
    font-family: var(--secondary__typeface);
    font-size: 3.2rem;
    color: var(--off__black);
    line-height: 150%;
    text-align: center;
    margin-bottom: 4.8rem;
    max-width: 61rem;
}

.bonus__card {
    background: #f6f4ee;
    border: none;
}

.bonus__card img {
    width: 72%;
}

.bonus__card__heading {
    font-family: var(--secondary__typeface);
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1.6rem;
    text-align: center;
}

.bonus__card__text {
    text-align: center;
    margin-bottom: 1.6rem;
}

.bonus__card__free {
    font-family: var(--secondary__typeface);
    font-size: 3.2rem;
    font-weight: 600;
    text-align: center;
}

/* offer: end */
.label {
    width: 100%;
}

.label img {
    width: 100%;
    height: auto;
    object-fit: contain;

    outline: 10px solid #59468C;
    border-radius: 1.6rem;
}

/* opt-in fform: start */
.popupform {
    width: 100%;
    height: 100%;
    /* display: flex;
    align-items: center;
    justify-content: center; */

    background: hsla(0, 0%, 20%, 0.2);
    backdrop-filter: blur(10px);

    display: none;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    overflow: auto;
}

form {
    width: 100%;
}

.form__container {
    background: #ffffff;
    padding: 5.6rem;
    border-radius: 1.6rem;
    width: 80%;
    max-width: 48rem;

    margin: 10% auto;

    /* box-shadow: 0px 16px 48px rgba(0, 0, 0, 0.315); */

    position: relative;
}

.form__heading {
    font-family: var(--secondary__typeface);
    font-size: 4rem;
    color: var(--primary__color);
    font-weight: 800;
}

.form__para {
    font-family: var(--secondary__typeface);
    font-size: 1.8rem;
    color: var(--off__black);
    font-weight: 300;
    margin-bottom: 4rem;
}

form input[type="text"],
form input[type="email"] {
    padding: 1.4rem 1.8rem;
    border: none;
    outline: none;
    border-radius: .8rem;
    background: hsla(340, 5%, 13%, 0.04);
    width: 100%;
    margin-bottom: 1.2rem;

    font-family: var(--secondary__typeface);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--off__black);
}

form input[type="email"] {
    margin-bottom: 4rem;
}

input::placeholder {
    font-family: var(--secondary__typeface);
    font-size: 1.6rem;
    font-weight: 300;
    color: hsla(0, 0%, 20%, 0.4);
}

.form__btns {
    display: flex;
    gap: 1.6rem;
}

.form__close,
.form__submit {
    flex: 1;

    cursor: pointer;
}

.form__close {
    position: absolute;
    top: .8rem;
    right: .8rem;
}

.form__close {
    height: 4rem;
    width: 4rem;
    padding: .4rem;
    border-radius: 99rem;

    font-family: var(--secondary__typeface);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--off__black);

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

.form__close img {
    width: 100%;
    height: 100%;
    border-radius: 99rem;
}

.form__close:hover {
    background: rgba(119, 119, 119, 0.08);
}

.form__submit {
    height: 5.6rem;
    padding: 1.6rem 3.2rem;
    outline: none;
    border: none;
    border-radius: .8rem;
    border: 1px solid var(--primary__color);
    width: max-content;
    background: var(--primary__color);

    font-family: var(--secondary__typeface);
    font-size: 1.8rem;
    font-weight: 400;
    color: white;
}

.form__submit:hover {
    background: hsl(45, 37%, 42%);
}

/* subscbribe message */
.swal2-title {
    font-family: var(--secondary__typeface);
    font-size: 4rem;
    color: var(--off__black);
    font-weight: 700;
    padding: initial;
    margin: initial;
}

#swal2-html-container {
    font-family: var(--secondary__typeface);
    font-size: 1.8rem;
    color: var(--para__color);
    font-weight: 300;
    margin-bottom: 4rem;
    padding: initial;
    margin: initial;
}

.swal2-popup {
    padding: 2.4rem;
    border-radius: 1.6rem;
}

.swal2-styled {
    font-family: var(--secondary__typeface);
    font-size: 1.8rem;
    padding: 1.8rem 4.0rem;
    background: var(--primary__color);
    color: var(--normal__white);
    border-radius: 1.2rem;
    box-shadow: 0px 16px 24px rgba(69, 41, 33, 0.08);
}

.swal2-styled:hover {
    background: hsl(45, 37%, 42%);
}

/* opt-in form: end */



/* *************** Scientific Reference Page *************** */
.hero__logo__container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4.8rem;
}

.document__listing li {
    margin-bottom: 1rem;
    margin-left: 1rem;
}