@import url('https://fonts.googleapis.com/css2?family=Inter:slnt,wght@-10..0,100..900&display=swap');
/* font-family: "Inter", sans-serif; */

* {
    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;
}

body {
    background-color: var(--page-bg);
    font-family: var(--primary-font);
}

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

:root {
    /* colors */
    --primary-color: #EA5B09;
    --page-bg: #1F1B19;
    --main-para-color: #9E9E9E;
    --off-white: #FFF9F5;
    --normal-white: #ffffff;

    /* typeface */
    --primary-font: "Inter", 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: 18rem;
}

.ball {
    z-index: -99;
}

.section-heading-left {
    font-family: var(--primary-font);
    font-size: 6.4rem;
    font-weight: 800;
    color: var(--off-white);
    line-height: 125%;
    margin-bottom: 4rem;
}

.section-heading-center {
    font-family: var(--primary-font);
    font-size: 6.4rem;
    font-weight: 800;
    color: var(--off-white);
    line-height: 125%;
    text-align: center;
    margin-bottom: 4rem;
}

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


/* hero section: start */
#hero {
    background: url(../assets/hero/hero_image_2a.png) no-repeat center center/cover;
    width: 100vw;
    height: 90rem;
    object-fit: contain;
    margin-bottom: 12.4rem;
}

.logo-image {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.flow-logo {
    margin: 1.6rem;
    height: 8rem;
    width: 8rem;
}

.hero-content {
    height: 100%;
}

.hero-text-content-box {
    height: 100%;
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -10rem;
}

.hero-main-heading {
    font-family: var(--primary-font);
    font-size: 7.2rem;
    font-weight: 800;
    color: var(--off-white);
    line-height: 115%;
    margin-bottom: 1.6rem;
}

.hero-para {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--main-para-color);
    line-height: 175%;
    margin-bottom: 5.6rem;
}

.cta-box {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    margin-bottom: 6.4rem;
}

.primary-cta {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--off-white);
    padding: 2.4rem 4.8rem;
    border-radius: 0.8rem;
    background-color: var(--primary-color);
    box-shadow: 0px 24px 40px rgba(234, 91, 9, .4);
}

.primary-cta:hover {
    background-color: #c74d07;
}

.cta-box div {
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
}

.cta-box div h3 {
    font-family: var(--primary-font);
    font-size: 4.8rem;
    font-weight: 400;
    color: var(--off-white);
    line-height: 100%;
}

.cta-box div h6 {
    font-family: var(--primary-font);
    font-size: 4.8rem;
    font-weight: 200;
    color: var(--main-para-color);
    line-height: 100%;
}

.million {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.million div h4 {
    font-family: var(--primary-font);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--off-white);
    line-height: 100%;
    margin-bottom: 1rem;
}

.million div p {
    font-family: var(--primary-font);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--off-white);
    line-height: 100%;
}

/* hero section: end */



/* instructor section: start */
.general-para-1 {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--off-white);
    line-height: 175%;
}

#instructor {
    display: flex;
}

.instructor-image {
    width: 62rem;
    height: auto;
}

.ball {
    height: 10rem;
    width: 10rem;
    border-radius: 999rem;
    margin: 4.2rem auto;
    background: rgba(234, 91, 9, 0.80);
    filter: blur(72px);
}

.instructor-image-box {
    position: relative;
}

.ball {
    position: absolute;
}

.ball-1 {
    top: 2.4rem;
    left: 6.4rem;
}

.ball-2 {
    bottom: 2.4rem;
    right: 2.4rem;
}

/* instructor section: end */



/* about section: start */
#about .general-para-1 {
    width: 80%;
    margin: 0rem auto;
    margin-bottom: 4.0rem;
}

.stripe h3 {
    font-family: var(--primary-font);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 100%;
    color: var(--primary-color);
    height: 5rem;
    width: 8rem;
    border-radius: 999rem;
    background: #2A2224;
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0px 0px 16px rgba(234, 91, 9, 0.12);
}

.stripe p {
    font-family: var(--primary-font);
    color: var(--off-white);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 150%;
}

.program-highlights {
    display: flex;
    max-width: 100%;
    justify-content: center;
    gap: 3.2rem;
    margin-top: 6.4rem;
    z-index: 2;
    position: relative;
}

.stripe-1,
.stripe-2 {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;

    flex: 1 1 50%;
}

.stripe {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    width: 100%;
    padding: 2.4rem 2.4rem;
    height: 10.2rem;
    background: rgba(234, 91, 9, 0.04);
    border-radius: 1.6rem;
}

/* about section: end */



/* featured section: start */
.featured-places {
    display: flex;
    gap: 2.4rem;
}

.featured_1 {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.featured_2 {
    display: none;
}

/* featured section: end */




/* best section: start */
#best {
    display: flex;
    gap: 6.4rem;
    align-items: center;
    justify-content: space-between;
}

.best-image-box {
    position: relative;
}

.best-image {
    width: 64rem;
    height: auto;
    margin-right: -8rem;
    z-index: 2;
}

.best-box {
    margin-bottom: 2.4rem;
}

.ball-3 {
    position: absolute;
    top: 0;
    left: 0;
}

.best-box div {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    margin-bottom: 0.8rem;
}

.best-box div img {
    height: 2.2rem;
    width: 2.2rem;
}

.best-box div h3 {
    font-family: var(--primary-font);
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 175%;
    color: var(--off-white);
}

.best-box p {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 175%;
    color: var(--main-para-color);
}

/* best section: end */




/* benefit section: start */
#benefit {
    display: flex;
    gap: 3.2rem;
    align-items: center;
    justify-content: space-between;
}

.benefit-group {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
}

.benefit-group .stripe {
    height: 8rem;
}

.benefit-group .stripe h3 {
    height: 6rem;
    width: 6rem;
}

.benefit-image-box {
    position: relative;
    ;
}

.ball-4 {
    position: absolute;
    top: 10rem;
    left: 0;
    right: 0;
    height: 20rem;
    width: 20rem;
    filter: blur(144px);
}

.benefit-image {
    width: 64rem;
    height: auto;
    z-index: 2;
}

/* benefit section: end */



/* review section: start */
.million-review {
    justify-content: center;
}

.review-box {
    margin-top: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8.0rem;
}

.review-group {
    display: flex;
    justify-content: center;
    gap: 8.0rem;
}

.review-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.reviewer-image {
    height: 15.6rem;
    height: 15.6rem;
    margin-bottom: 2.8rem;
}

.name {
    font-family: var(--primary-font);
    font-size: 2rem;
    font-weight: 500;
    color: var(--off-white);
    line-height: 100%;
    margin-bottom: 0.8rem;
}

.age {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--main-para-color);
    line-height: 100%;
    margin-bottom: 2.4rem;
}

.stars-image {
    margin-bottom: 2.4rem;
}

.main-review {
    font-family: var(--primary-font);
    font-size: 2.0rem;
    font-weight: 300;
    color: var(--off-white);
    line-height: 155%;
}

/* review section: end */



/* buy section: start */
#buy {
    padding: 5.6rem 3.2rem;
    border-radius: 3.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: #25201E;
    position: relative;
    overflow: hidden;
}

.ball-5,
.ball-6 {
    position: absolute;
    height: 18rem;
    width: 18rem;
    border-radius: 999rem;
    background: rgba(234, 91, 9, 0.72);
    filter: blur(32rem);
}

.ball-5 {
    top: 0rem;
    left: 0rem;
}

.ball-6 {
    bottom: -1rem;
    right: -1rem;
}

.product-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
    margin-bottom: 4.8rem;
    z-index: 2;
    width: 100%;
}

.buy-heading {
    font-size: 4rem;
}

.buy-para-1 {
    color: var(--off-white);
    font-family: var(--primary-font);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 135%;
    margin-bottom: 3.2rem;
}

.product-text div {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-bottom: 1.6em;
    max-width: 56rem;
}

.product-text div img {
    height: 2.6rem;
    width: 2.6rem
}

.buy-para-2 {
    color: var(--off-white);
    font-family: var(--primary-font);
    font-size: 2.0rem;
    font-weight: 200;
    line-height: 175%;
}

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

.buy-pricing {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 2.4rem;
    margin-bottom: 3.2rem;
    z-index: 2;
}

.old-pricing {
    color: var(--main-para-color);
    font-family: var(--primary-font);
    font-size: 6.4rem;
    font-weight: 200;
    line-height: 100%;
    text-decoration: line-through;
}

.new-pricing {
    color: var(--off-white);
    font-family: var(--primary-font);
    font-size: 6.4rem;
    font-weight: 600;
    line-height: 100%;
}

.payment-gateways {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 2.4rem 0rem;
    z-index: 2;
}

.secure-payment {
    width: 18rem;
    height: auto;
    object-fit: contain;
}

.payment-methods {
    width: 40rem;
    height: auto;
    object-fit: contain;
}

.assure {
    color: var(--off-white);
    font-family: var(--primary-font);
    font-size: 2rem;
    font-weight: 300;
    line-height: 135%;
    text-align: center;
}

/* buy section: end */



/* quarantee section: start */
#guarantee {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.guarantee-heading {
    font-size: 5.6rem;
    margin-bottom: 4.0rem;
}

.guarantee-image {
    height: 16rem;
    width: 17rem;
    margin-bottom: 4.8rem;
}

.guarantee-text {
    width: 75%;
    font-family: var(--primary-font);
    font-size: 2.0rem;
    font-weight: 400;
    color: var(--off-white);
    line-height: 150%;
}

/* quarantee section: end */



/* FAQ: start */
.faq-container .faq-group {
    max-width: 80%;
    margin: 0 auto;
}

.faq-container .faq-group .faq-item {
    padding: 24px;

    border-radius: 1.6rem;
    border: 1px solid rgba(234, 91, 9, .60);
    cursor: pointer;
    overflow: hidden;
    margin-bottom: 2.4rem;
}

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

.faq-container .faq-group .faq-item .faq-question h3 {
    color: var(--off-white);
    font-family: var(--primary-font);
    font-size: 2.0rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    max-width: 90%;
    height: fit-content;
}

.faq-container .faq-group .faq-item .faq-question .chevron-icon {
    width: 3.2rem;
    height: auto;
    transition: transform 0.2s;
    color: var(--off-white);
}

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

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

.faq-container .faq-group .faq-item .faq-answer p {
    color: var(--off-white);
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 175%;
    letter-spacing: 0.018rem;
    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(--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(--normal-white);
}

.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 {
    background: #271C16;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;
    text-align: center;

}

.footer-content img {
    height: 6.4rem;
    width: 6.4rem;
}

.policy {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.policy a {
    font-family: var(--primary-font);
    color: var(--off-white);
    font-size: 1.6rem;
    font-weight: 200;
}

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

.footer-content p {
    font-family: var(--primary-font);
    color: var(--off-white);
    font-size: 1.6rem;
    font-weight: 200;
}

/* footer: 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%;
}

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

.form__para {
    font-size: 1.8rem;
    color: #ffffff;
    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(22, 93%, 48%, 0.09);
    width: 100%;
    margin-bottom: 1.2rem;

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

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

input::placeholder {
    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;

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

    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-size: 1.8rem;
    font-weight: 400;
    color: white;
}

.form__submit:hover {
    background: #c74d07;
}

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

    margin-top: .8rem;
}

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

.swal2-popup {
    background: var(--page-bg);
    padding: 2.4rem;
    border-radius: 1.6rem;
    box-shadow: 0 16px 48px #000000;
}

.swal2-styled {
    font-family: var(--primary-font);
    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: #c74d07;
}

/* opt-in form: end */