@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

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

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

html,
body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    cursor: pointer;
}

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

:root {
    /* colors */
    --primary-color: #CEA397;
    --primary-cta-color: #4DB898;
    --main-heading-color: #452921;
    --main-para-color: #3B2F2B;
    --normal-white: #ffffff;

    /* typeface */
    --primary-font: "Nunito Sans", sans-serif;
}

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

.section-margin-bottom {
    margin-bottom: 15rem;
}

.section-heading-left {
    font-family: var(--primary-font);
    font-size: 4rem;
    letter-spacing: -1px;
    font-weight: 400;
    line-height: 125%;
    text-align: left;
    margin-bottom: 2.4rem;
    color: var(--main-heading-color);
}

.section-heading-center {
    font-family: var(--primary-font);
    font-size: 4rem;
    letter-spacing: -1px;
    font-weight: 400;
    line-height: 125%;
    text-align: center;
    margin-bottom: 2.4rem;
    color: var(--main-heading-color);
}

.heading-top-text {
    font-family: var(--primary-font);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--primary-cta-color);
}

.main-cta {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    padding: 1.8rem 4.0rem;
    background: var(--primary-cta-color);
    color: var(--normal-white);
    border-radius: 1.2rem;
    box-shadow: 0px 16px 24px rgba(69, 41, 33, 0.35);
}

.main-cta:hover {
    box-shadow: 0px 16px 24px rgba(69, 41, 33, 0.35);
    background: #3caf8d;
}

/* Utility Classes: end */


/* hero section: start */

header {
    background: #F7F0EE;
    padding-bottom: 4.0rem;
    margin-bottom: 15rem;
}

.logo-bar {
    padding-top: 1.2rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-content {
    display: flex;
    gap: 4.0rem;
    justify-content: space-between;
    height: 100%;
}

.hero-content .hero-image {
    height: 64rem;
    width: auto;
}

.hero-content .hero-text-content {
    margin-top: 10.4rem;
}

.hero-content .hero-text-content .hero-heading {
    font-family: var(--primary-font);
    font-size: 8rem;
    letter-spacing: -3px;
    font-weight: 400;
    line-height: 115%;
    color: var(--main-heading-color);
}

.hero-content .hero-text-content .hero-para {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 150%;
    margin-bottom: 4.8rem;
    color: var(--main-para-color);
}

.return-refund {
    display: flex;
    gap: 0.8rem;
    margin-top: 12rem;
}

.return-refund .refund-sign {
    height: auto;
    width: 12rem;
    object-fit: contain;
}

.return-refund h3 {
    font-family: var(--primary-font);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: .4rem;
    color: var(--main-para-color);
}

.return-refund p {
    font-family: var(--primary-font);
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 150%;
    color: #765E56;
}

/* hero section: end */



/* opt-in form: 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%;
    font-family: var(--primary-font);
}

.form__container {
    background: var(--normal-white);
    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(--primary-font);
    font-size: 4rem;
    color: var(--main-heading-color);
    font-weight: 800;
}

.form__para {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    color: var(--main-para-color);
    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(--primary-font);
    font-size: 1.8rem;
    font-weight: 300;
    color: #333333;
}

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

input::placeholder {
    font-family: var(--primary-font);
    font-size: 1.6rem;
    font-weight: 300;
    color: #b4b4b4;
}

.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;
    /* border: 1px solid rgba(119, 119, 119, 0.5); */

    font-size: 1.8rem;
    font-weight: 400;
    color: #333333;

    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-cta-color);
    width: max-content;
    background: var(--primary-cta-color);

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

.form__submit:hover {
    background: #3caf8d;
}

/* opt-in form: end */



/* about section: start  */

#about {
    display: flex;
    gap: 16.4rem;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15rem;
}

.about-para {
    font-family: var(--primary-font);
    font-size: 1.6rem;
    line-height: 150%;
    color: var(--main-para-color);
    margin-bottom: 4.8rem;
}

.about-image {
    width: 60rem;
    height: auto;
    margin-right: -10rem;
}

/* about section: end  */



/* benefits section: start */
#benefit {
    display: flex;
    gap: 16.4rem;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15rem;
}

.benefit-image {
    width: 60rem;
    height: auto;
    margin-left: -10rem;
}

.benefit-group {
    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;
    border: 1px solid #333333;

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

.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: #333333;

    /* Body/SB-1 */
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 600;
    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 {
    color: #666666;
    font-family: var(--primary-font);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 175%;
    max-width: 90%;
    height: fit-content;
}

/* benefits section: end */


/* review section: start */
#review {
    margin-bottom: 15rem;
}

.main-review {
    cursor: grab;
}

.review-text {
    font-family: var(--primary-font);
    color: var(--main-para-color);
    font-size: 1.8rem;
    line-height: 175%;
    margin: 2.4rem 0rem;
}

.quote {
    width: 100%;
}

.quote-1 {
    display: flex;
    justify-content: flex-start;
}

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


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

.reviewer img {
    height: 5rem;
    width: auto;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-details h6 {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 600;
    color: #333333;
}

.reviewer-details p {
    font-family: var(--primary-font);
    font-size: 1.6rem;
    font-weight: 400;
    color: #666666;
}

.slide-content {
    width: 50%;
    overflow: hidden;
}

.slide-container {
    width: 100%;
    /* background: gray; */
    padding: 4rem 0rem;
    display: flex;
    justify-content: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}

/* review section: end */


/* pricing section: start */
#pricing {
    background: #F7F0EE;
    padding: 8rem 0rem;
    margin-bottom: 15rem;
}

.pricing-tables {
    display: flex;
    gap: 2.4rem;
    justify-content: center;
    align-items: center;
}

.table {
    border-radius: 2.4rem;
    width: 48rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.table div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 4.8rem;
}

.offer {
    font-family: var(--primary-font);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;

    padding: 1.2rem 1.6rem;
    border: 1px solid #CEA397;
    background: #F4E9E7;
    color: #BA7E6D;
    border-radius: 12.4rem;
}

.table-1 {
    border: 1px solid var(--primary-color);
    padding: 4.8rem 3.2rem;
}

.package-type {
    font-family: var(--primary-font);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    padding: 1.2rem 1.6rem;
    color: var(--primary-color);
}

.package-image-1,
.package-image-2 {
    height: 24rem;
    width: auto;
    margin-bottom: 4.8rem;
}

.price {
    font-family: var(--primary-font);
    font-size: 4.8rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #333333;
}

.package-detail {
    font-family: var(--primary-font);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 2.0rem;
    color: #666666;
    text-align: center;
}

.table-2 {
    background: #FCF9F8;
    padding: 6.4rem 3.2rem;
    box-shadow: 0px 40px 72px rgba(206, 163, 151, 0.24);
}

.pricing-refund {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5.6rem;
}

.pricing-refund h3,
.pricing-refund p {
    text-align: center;
}

/* pricing section: end */



/* faq section: start */
#faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15rem;
}

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

.faq-item {
    width: 75%;
}

/* faq section: 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(--primary-font);
}

.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(--main-heading-color);
}

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

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

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

/* Blog: end */



/* footer: start */
footer {
    padding: 1.6rem 0rem;
    background: #FCF9F8;
}

footer div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer img {
    width: 24rem;
    height: auto;
}

footer p,
.footer-links a {
    font-family: var(--primary-font);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--main-para-color);
}

.footer-links {
    display: flex;
    gap: 2.4rem;
}

/* footer: end */