/* ===== Breath Landing Page ===== */
/* ================================= */
/* ===== Base / Reset (minimal) ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

a {
    text-decoration: none;
    transition: 0.2s all ease-in-out;
    cursor: pointer;
}

a:-webkit-any-link:focus-visible {
    /* outline: 0px; */
    outline-color: transparent;
}

p {
    margin: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

/* =================== */
/* ===== Body ===== */
html {
    scroll-behavior: smooth;
}

body {
    color: var(--clr-body, black);
    background: var(--bg-body, white);
    font-size: var(--body-fs, 1rem);
    font-weight: 400;
    font-family: var(--body-ff, 'Arial'), sans-serif;
    position: relative;
}

/* ======================== */
/* ===== Variables ===== */
:root {
    --bg-body: #ffffff;
    --clr-body: #4A5565;
    --body-fs: 1rem;
    --body-ff: 'Inter';
    /* --body-ff: 'Ibarra Real Nova'; */

    --container-width: min(1120px, 92vw);

    --clr-primary: #03AAF0;
    --clr-secondary: #AE864B;
    --clr-warning: #f7a022;
    --clr-success: #09ca5f;
    --clr-danger: #09ca5f;

    --header-top: clamp(7vh, 3vw, 2vh);
}

/* ======================== */
/* ===== Components ===== */
.brth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid;
    padding: 1rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    border-radius: 1rem;
    cursor: pointer;
    box-sizing: border-box;
}

.brth-btn.btn-lg {
    height: 74px;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    border-width: 3px;
}

.brth-btn.btn-primary {
    border-color: #00B8DB;
    background-color: var(--clr-primary);
    color: white;

}

.form-group {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group>label {
    display: block;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #44403B;
    /* margin-bottom: 0.5rem; */
}

.brth-form-control {
    border: 1px solid #D6D3D1;
    /* width: 100%; */
    flex: 1;
    padding: 9px 12px;
    border-radius: 40vw;
    font-size: 14px;
    line-height: 1.2;
    color: #44403B;
}

.brth-form-control::placeholder {
    color: #717182;
}

.brth-form-control:focus,
.brth-form-control:focus-visible {
    outline-color: var(--clr-primary);
}

.group-input {
    display: grid;
    align-items: center;
}

.group-input>.svg-icon,
.group-input>input {
    grid-area: 1 / 1;
}

.group-input>input {
    padding-inline-start: 40px;
}

.group-input>.svg-icon {
    justify-self: start;
    margin-inline-start: 0.75rem;
    pointer-events: none;
    display: inline-grid;
    place-items: center;
    color: #A6A09B;
}

/* FLuent Form */
.ff-el-group .ff-el-input--label {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #44403B;
}

.ff-default .ff-el-group .ff-el-form-control {
    border: 1px solid #D6D3D1;
    flex: 1;
    padding: 9px 16px;
    border-radius: 40vw;
    font-size: 14px;
    line-height: 1.2;
    color: #44403B;
}

.ff-el-input--content:has(> #ff_3_phone_first_name_),
.ff-el-input--content:has(> #ff_3_email) {
    position: relative;
}

.ff-el-input--content:has(> #ff_3_phone_first_name_) .ff-el-form-control,
.ff-el-input--content:has(> #ff_3_email) .ff-el-form-control {
    padding-inline-start: 40px;
}

.ff-el-input--content:has(> #ff_3_phone_first_name_):before,
.ff-el-input--content:has(> #ff_3_email):before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    inset-inline-start: 12px;
    inset-block: 0;
    margin-block: 8px 0;
    background-image: var(--form-input-icon);
    background-repeat: no-repeat;
    background-size: contain;
}

.ff-el-input--content:has(> #ff_3_phone_first_name_) {
    --form-input-icon: url('../media/icons/phone.svg');
}

.ff-el-input--content:has(> #ff_3_email) {
    --form-input-icon: url('../media/icons/email.svg');
}

.ff_submit_btn_wrapper .ff-btn.ff-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid;
    padding: 1rem;
    border-radius: 1rem;
    cursor: pointer;
    box-sizing: border-box;
    height: 74px;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    border-width: 3px;
    border-color: #00B8DB;
    background-color: var(--clr-primary);
    color: white;
    width: 100%;
}

/* ======================== */
/* ===== LAYOUT ===== */
/* --- Containers --- */
.container {
    width: var(--container-width);
    margin-inline: auto;
}

.grid {
    display: grid;
    gap: clamp(16px, 3vw, 32px)
}

@media (min-width: 900px) {
    .grid-2 {
        grid-template-columns: 1.05fr .95fr;
        align-items: center;
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ======================== */
/* ===== General ===== */
.svg-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-part-wrapper {
    display: grid;
    width: 100%;
    height: 100%;
}

.img-part-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    grid-area: 1/1;
}

.img-part {
    grid-area: 1/1;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.img-part h4 {
    font-size: 64px;
    font-weight: 700;
    line-height: 40px;
    color: #1F293A80;
}

.img-part p {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #44403B;
    text-transform: uppercase;
    letter-spacing: 4px;
    width: 100%;
    text-align: end;
}

.content-tag {
    background: #00364C;
    display: inline-flex;
    border-radius: 40vw;
    padding: 9px 12px;
    color: #F8FBFF;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.content-tag.tag-white {
    background-color: white;
    border: 1px solid #E5E7EB;
    color: #4BB5C8;
}

/* ======================== */
/* ===== Sections ===== */

/* =-=-= Header =-=-= */
.brth-header {
    /* padding-block: 3rem; */
    position: absolute;
    top: var(--header-top, 54px);
    inset-inline: 0;
    /* background-color: red; */
    z-index: 5;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    container-type: inline-size;
    container-name: header;
}

@container header (max-width: 450px) {
.brand:has(> .logo-najahi) {
        scale: 0.7;
    }
    .brand .logo-breathe svg {
        width: 130px;
        height: auto;
    }
}

/* =-=-=-=-=-=-=-=-=-= */
/* =-=-= HERO =-=-= */
.brth-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(33, 102, 131, 0.19) 0%, rgba(0, 8, 31, 0.95) 100%);
    z-index: 1;
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(110%) contrast(105%);
}

.brth-hero {
    position: relative;
    --hero-ptop: calc(var(--header-top) + 70px + 50px);
    padding-top: var(--hero-ptop);
    padding-bottom: 60px;
    min-height: calc(100vh - var(--hero-ptop) - 60px);
    background: gray;
    place-content: center;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: min(3rem, 1rem);
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-family: 'Ibarra Real Nova';
    font-weight: 700;
    font-size: clamp(2.2rem, 7vw, 5.5rem);
    line-height: 1.2;
    color: #DFF5FF;
    margin-bottom: 24px;
}

.hero-content>p {
    font-family: 'Ibarra Real Nova';
    font-weight: 600;
    font-size: clamp(16px, 3vw, 30px);
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
}

.hero-speaker {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 1rem;
}

.hero-speaker .speaker-img {
    width: 114px;
    height: 110px;
    border-radius: 100%;
}

.hero-speaker .speaker-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-speaker .speaker-name {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: white;
}

.hero-tags,
.thankyou-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.thankyou-tags [class^='tag-'],
.hero-tags [class^='tag-'] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3572;
    border-radius: 40vw;
    min-width: max-content;
}

.tag-day {
    background: #3ECDFF;
    color: #310031;
}

.tag-time {
    background: #CEFAFB;
    color: #292524;
}

.tag-attendance {
    background: #0F6988;
    color: white;
}

@media screen and (max-width: 550px) {
    .tag-attendance {
        display: none !important;
    }
}

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

    .forwho-img>img:nth-child(2),
    .forwho-img>img:nth-child(3) {
        display: none;
    }
}

/* =-=-= FORM =-=-= */
.breathe-form {
    padding: 30px 20px;
    background: rgb(255 255 255 / 90%);
    border-radius: 32px;
    border: 1px solid #CEFAFE;
    /* justify-self: end; */
}

@media screen and (min-width: 992px) {
    .breathe-form {
        padding: 40px;
        justify-self: end;
    }
}

.breathe-form>h2 {
    font-family: 'Ibarra Real Nova';
    font-weight: 700;
    font-size: clamp(35px, 3vw, 40px);
    line-height: 36px;
    margin-bottom: 0.5rem;
    color: #1D293D;
    text-align: center;
}

.breathe-form>p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 1.5rem;
    color: #45556C;
    text-align: center;
}

.breathe-form form .brth-btn {
    margin-bottom: 1rem;
}

.breathe-form form>p {
    font-weight: 400;
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
    color: #62748E;
}

/* =-=-=-=-=-=-=-=-=-= */
/* =-=-= ABOUT =-=-= */
.brth-about {
    background: linear-gradient(135deg, rgba(0, 184, 219, 0.14) 0%, rgba(0, 166, 244, 0.14) 50%, rgba(43, 127, 255, 0.14) 100%);
    padding-block: 100px;
    /* height: calc(100vh - 100px); */
}

.about-wrapper {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: min(3rem, 1rem);
}

.about-content p {
    font-size: 16px;
    line-height: 26px;
    color: #05293F;
}

.about-content p:not(:last-child) {
    margin-bottom: 24px;
}

.najahi-logo-wrapper {
    margin-bottom: 28px;
}

.najahi-logo-wrapper svg {
    width: 103px;
    height: auto;
}

.breathe-logo-wrapper {
    padding-bottom: 32px;
    margin-bottom: 23px;
    position: relative;
}

.breathe-logo-wrapper::after {
    content: '';
    position: absolute;
    width: 45px;
    height: 3px;
    background: black;
    bottom: 0;
}

.breathe-logo-wrapper svg {
    width: 512px;
}

.breathe-logo-wrapper svg .breathe-main {
    fill: var(--clr-primary);
}

.breathe-logo-wrapper svg .breathe-secondary {
    fill: #1F293A;
}

@media screen and (min-width: 992px) {
    .about-logos {
        grid-area: 1/2;
    }
}

.about-logos>p {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    text-align: center;
    color: #05293F;
}

/* =-=-=-=-=-=-=-=-=-= */
/* =-=-= WHY =-=-= */

.brth-why {
    --middle-gap: 8px;
    --padding-inline: 4vw;
    --content-max-width: min(1120px, 92vw);
    --content-padding: min(calc(100% - (var(--padding-inline) * 2)), calc(var(--content-max-width) / 2));

    display: grid;
    grid-template-columns:
        [full-width-start] minmax(var(--padding-inline), 1fr) [content-start] var(--content-padding) [first-gap] var(--middle-gap, 0) [split-middle] var(--middle-gap, 0) [second-gap] var(--content-padding) [content-end] minmax(var(--padding-inline), 1fr) [full-width-end];
    align-items: stretch;
}

.why-img {
    grid-column: second-gap / full-width-end;
}

.why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-content {
    grid-column: content-start / first-gap;
    /* max-width: 50%; */
    padding-block: 54px 80px;
}

.why-content h2 {
    font-family: 'Ibarra Real Nova', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 58px;
    color: #1F293A;
    margin-bottom: 19px;
}

.why-content h3 {
    font-family: 'Ibarra Real Nova', sans-serif;
    font-size: clamp(40px, 7vw, 90px);
    font-weight: 600;
    line-height: 1;
    color: #1F293A;
    margin-bottom: 39px;
}

.why-content>p {
    font-size: 18px;
    font-weight: 400;
    line-height: 43px;
    color: #1F293A;
}

.why-content>p:not(:last-of-type) {
    margin-bottom: 54px;
}

.why-content>p:last-of-type {
    font-size: 14px;
    font-weight: 500;
    line-height: 58px;
    color: #310031;
}

.why-content>.brth-btn {
    min-width: 65%;
    width: max-content;
}

@media screen and (max-width:1200px) {
    .brth-why {
        --middle-gap: 0px
    }

    .why-content {
        margin-inline-end: 7px;
    }
}

@media screen and (max-width:992px) {
    .why-content {
        margin: 0;
        grid-column: content-start / content-end;
    }

    .why-content>.brth-btn {
        width: auto;
    }

    .why-img {
        grid-column: full-width-start / full-width-end;
    }

}


/* =-=-=-=-=-=-=-=-=-= */
/* =-=-= TEACHING =-=-= */
.brth-teaching {
    background-color: #BEDBFF4D;
    padding-block: 54px 68px;
}

.teaching-title h2 {
    font-family: 'Ibarra Real Nova';
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
    color: #1F293A;
    margin-bottom: 4px;
    text-align: center;
}

.teaching-title p {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #1F293A;
    margin-bottom: 75px;
    text-align: center;
}

.teaching-wrapper {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.teaching-img .img-part {
    justify-self: start;
    margin-top: 40px;
    margin-inline-start: 25px;
}

.teaching-content h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    color: #1F293A;
    margin-bottom: 24px;
}

.teaching-content h3 span {
    font-weight: 800;
}

.teaching-content p {
    font-size: 18px;
    line-height: 33px;
    color: #1F293A;
    margin-bottom: 24px;
}

.teaching-content>.brth-btn {
    width: 100%;
}

.teaching-content>.brth-btn+p {
    font-size: 14px;
    font-weight: 500;
    line-height: 58px;
    color: #310031;
}

/* ======================== */
/* ===== Techniques ===== */
.brth-techniques {
    background-color: #BEDBFF4D;
    padding-block: 54px 68px;
}

.techniques-wrapper {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.techniques-content h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    color: #1F293A;
    margin-bottom: 24px;
}

.techniques-content h3 span {
    font-weight: 800;
}

.techniques-content p {
    font-size: 18px;
    line-height: 33px;
    color: #1F293A;
    margin-bottom: 24px;
}

.techniques-content ul {
    margin-bottom: 30px;
}

.techniques-content ul li {
    font-size: 18px;
    font-weight: 600;
    line-height: 33px;
    color: #1F293A;
    margin-bottom: 16px;
    padding-inline-start: 24px;
    position: relative;
}

.techniques-content ul li:before {
    content: '';
    width: 7px;
    height: 7px;
    background-color: #1F293A;
    border-radius: 100%;
    position: absolute;
    top: 13px;
    inset-inline-start: 0;
}

.techniques-content>.brth-btn {
    width: 100%;
}

.techniques-content>.brth-btn+p {
    font-size: 14px;
    font-weight: 500;
    line-height: 58px;
    color: #310031;
    margin-bottom: 0;
}

.techniques-img .img-part {
    justify-self: start;
    align-self: end;
    margin-bottom: 60px;
    margin-inline-start: 40px;
}

/* ======================== */
/* ===== CEREMONY ===== */
.brth-ceremony {
    background-color: #BEDBFF4D;
    padding-block: 54px 68px;
}

.ceremony-title {
    text-align: center;
}

.ceremony-title h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    color: #1F293A;
    margin-bottom: 5px;
}

.ceremony-title p {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    color: #1F293A;
    margin-bottom: 35px;
}

.ceremony-wrapper {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 60px;
}

.ceremony-content>p {
    font-size: 18px;
    line-height: 33px;
    color: #1F293A;
    margin-bottom: 24px;
}

.ceremony-content>ul {
    margin-bottom: 30px;
}

.ceremony-content>ul li {
    font-size: 18px;
    font-weight: 600;
    line-height: 33px;
    color: #1F293A;
    margin-bottom: 16px;
    padding-inline-start: 24px;
    position: relative;
}

.ceremony-content>ul li:before {
    content: '';
    width: 7px;
    height: 7px;
    background-color: #1F293A;
    border-radius: 100%;
    position: absolute;
    top: 13px;
    inset-inline-start: 0;
}

.ceremony-report {
    background: white;
    padding: 32px;
    border-radius: 16px;
}

.ceremony-report h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #1F293A;
    margin-bottom: 24px;
}

.ceremony-report ul {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ceremony-report ul li {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: calc(50% - 16px);
    color: #1F293A;
}

.ceremony-report ul li .svg-icon {
    color: var(--clr-primary);
}

.ceremony-actions {
    text-align: center;
}

.ceremony-actions>p {
    font-size: 14px;
    font-weight: 500;
    line-height: 58px;
    color: #310031;
    margin-bottom: 0;
}

.ceremony-img img {
    object-position: right;
}

.ceremony-img .img-part {
    justify-self: end;
    align-self: end;
    margin-bottom: 30px;
    margin-inline-end: 30px;
}

/* ======================== */
/* ===== FOR WHO ===== */
.brth-forwho {
    background: #152645;
    padding-block: 45px 100px;
    --middle-gap: 8px;
    --padding-inline: 4vw;
    --content-max-width: min(1120px, 92vw);
    --content-padding: min(calc(100% - (var(--padding-inline) * 2)), calc(var(--content-max-width) / 2));

    display: grid;
    grid-template-columns:
        [full-width-start] minmax(var(--padding-inline), 1fr) [content-start] var(--content-padding) [first-gap] var(--middle-gap, 0) [split-middle] var(--middle-gap, 0) [second-gap] var(--content-padding) [content-end] minmax(var(--padding-inline), 1fr) [full-width-end];
    align-items: stretch;
}

.forwho-content {
    grid-column: content-start / first-gap;
    padding-block: 54px 0;
}

.forwho-content h2 {
    font-family: 'Ibarra Real Nova', sans-serif;
    font-size: clamp(30px, 5vw, 40px);
    font-weight: 700;
    line-height: 69px;
    color: #A2F4FD;
    margin-bottom: 29px;
}

.forwho-content p {
    font-size: 18px;
    line-height: 33px;
    color: white;
    margin-bottom: 24px;
}

.forwho-content ul {
    padding-inline-start: 10px;
    margin-bottom: 60px;
}

.forwho-content ul li {
    font-size: 18px;
    line-height: 33px;
    color: white;
    padding-inline-start: 24px;
    position: relative;
}

.forwho-content ul li:not(:last-child) {
    margin-bottom: 16px;
}

.forwho-content ul li::before {
    content: '';
    width: 7px;
    height: 7px;
    background-color: white;
    border-radius: 100%;
    position: absolute;
    top: 13px;
    inset-inline-start: 0;
}

.forwho-content>.brth-btn+p {
    font-size: 14px;
    font-weight: 500;
    line-height: 58px;
    color: white;
    margin-bottom: 0;
}

.forwho-img {
    grid-column: second-gap / full-width-end;
    text-align: end;
}

.forwho-img>img {
    object-fit: cover;
}

.forwho-img>img:first-child,
.forwho-img>img:last-child {
    object-position: center;
}

.forwho-img>img:nth-child(2) {
    object-position: bottom;
}

/* TEST */
/* .forwho-img img{width: auto; height: 326px; object-fit: cover} */
.forwho-img {
    position: relative;
    align-self: stretch;
}

@media screen and (min-width: 992px) {
    .forwho-content p:first-child {
        max-width: 40ch;
    }

    .forwho-img img {
        position: absolute;
        width: 390px;
        height: 326px;
        object-fit: cover;
    }

    .forwho-img img:first-child {
        inset-inline-end: 0;
        top: 0;
    }

    .forwho-img img:nth-child(2) {
        inset-inline-end: 337px;
        top: 206px;
        z-index: 2;
    }

    .forwho-img img:last-child {
        inset-inline-end: 63px;
        top: 427px;
        z-index: 1;
    }
}

@media screen and (max-width:1410px) {
    .brth-forwho {
        --middle-gap: 0px
    }

    .forwho-content {
        margin-inline-end: 7px;
    }
     .forwho-img {
          grid-column: second-gap / content-end;
     }
     .forwho-img img:not(:first-child){display: none;}
     .forwho-img img:first-child{
          position: initial;
          width:100%;
          height: 100%;
           object-fit: cover;
     }
}

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

    .forwho-content,
    .forwho-img {
        grid-column: content-start / content-end;
    }
     .forwho-img {
          grid-column: content-start / content-end;
     }

    .forwho-content>.brth-btn {
        width: auto;
    }

    .forwho-content {
        padding-top: 0;
    }

    .forwho-img {
        margin-top: 24px;
    }

    .forwho-img img {
        width: 100%;
        height: auto;
    }

    .forwho-img img:not(:last-child) {
        margin-bottom: 20px;
    }
}


/* ======================== */
/* ===== Belief ===== */
.brth-belief {
    padding: 50px 30px;
    background-image: url('../media/images/belief.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    isolation: isolate;
    min-height: 338px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brth-belief:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
    background: linear-gradient(90deg, rgba(12, 41, 51, 0.78) 0%, rgba(26, 35, 50, 0.78) 100%);
    z-index: -1;
}

.brth-belief h2 {
    font-family: 'Ibarra Real Nova';
    font-size: clamp(20px, 5vw, 30px);
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    color: white;
}

.brth-belief h3 {
    font-family: 'Ibarra Real Nova';
    font-size: clamp(36px, 5vw, 50px);
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    color: #58CEFF;

}

/* ======================== */
/* ===== FACILITATOR ===== */
.brth-facilitator {
    background-color: #F8F9FA;
    padding-block: 66px 76px;
}

.facilitator-wrapper {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.facilitator-img {
    overflow: clip;
    border-radius: 16px;
    width: 100%;
    height: 100%;
}

.facilitator-img img {
    border-radius: 16px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    /* scale: 1.5; */
    box-shadow: 0px 25px 50px -12px #00000040;

}

.facilitator-content h2 {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: #3E2723;
    margin-bottom: 24px;
}

.facilitator-content p {
    font-size: 20px;
    line-height: 33px;
    color: #364153;
    margin-bottom: 50px;
}

.facilitator-content ul {
    margin-bottom: 40px;
}

.facilitator-content ul li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.facilitator-content ul li .svg-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 14px;
    color: white;
    background-color: var(--clr-primary);
}

.facilitator-content ul li .item-content h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: #3E2723;
    margin-bottom: 4px;
}

.facilitator-content ul li .item-content p {
    font-size: 16px;
    line-height: 24px;
    color: #4A5565;
    margin-bottom: 0;
}

.facilitator-content ul li:not(:last-child) {
    margin-bottom: 24px;
}

.facilitator-quote {
    background-color: white;
    padding: 32px;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
}

.facilitator-quote p {
    font-style: italic;
    font-size: 18px;
    line-height: 28px;
    color: #364153;
    margin-bottom: 0;
}

/* ======================== */
/* ===== Invitation ===== */
.brth-invitation {
    padding-block: 30svh 15svh;
    background-image: url('../media/images/breathe.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    position: relative;
    isolation: isolate;
}

.brth-invitation::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
    background: linear-gradient(0deg, #00081F -6.43%, rgba(15, 51, 61, 0) 50.89%);
    background-blend-mode: multiply;
    z-index: -1;
}

.invitation-wrapper {
    text-align: center;
}

.invitation-wrapper>.svg-icon {
    margin-bottom: 120px;
}

.invitation-wrapper h2,
.invitation-wrapper>p {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
    color: white;
    text-align: center;
}

.invitation-wrapper>p {
    margin-bottom: 30px;
    font-size: clamp(20px, 5vw, 30px);
}

@media screen and (min-width: 768px) {
    .invitation-wrapper>.brth-btn {
        min-width: 480px;
    }
}

.invitation-wrapper>.brth-btn+p {
    font-size: 14px;
    font-weight: 500;
    line-height: 58px;
    color: white;
    margin-bottom: 0;
}

/* ======================== */
/* ===== FAQ ===== */
.brth-faq {
    padding-block: 54px 68px;
}

.faq-title {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title h2 {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 500;
    line-height: 1.2;
    color: #292524;
    margin-bottom: 15px;
}

.faq-title p {
    font-size: clamp(14px, 3vw, 16px);
    line-height: 24px;
    color: #57534D;
    margin-bottom: 0;
}

.faq-item {
    margin-inline: auto;
    border: 1px solid #E7E5E4;
    border-radius: 14px;
}

.faq-item:not(:last-child) {
    margin-bottom: 16px;
}

.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: 20px 24px;
    background: white;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    color: #292524;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

@media screen and (min-width: 768px) {
    .faq-item {
        max-width: 70%;
    }
}

.faq-btn:hover,
.faq-btn:focus-visible {
    outline: 0;
    box-shadow: none;
    /* border-color: var(--clr-primary); */
    color: var(--clr-primary);
}

.faq-icon {
    width: 12px;
    height: auto;
    transition: transform 220ms ease;
    color: #717182;
}

/* panel */
.faq-a {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 260ms ease, opacity 200ms ease;
}

.faq-item.is-open .faq-btn {
    color: var(--clr-primary);
}

.faq-item.is-open .faq-a {
    opacity: 1;
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
}

.faq-a-inner {
    padding: 1rem;
}

.faq-a-inner>p {
    color: #1F293A;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}


/* ======================== */
/* ===== Footer ===== */
.brth-footer {
    background-color: #04AAF0;
    padding-block: 32px;
}

.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

@media screen and (max-width: 450px) {
    .footer-wrapper {
        justify-content: center;
    }
}

.brth-footer-links {
    background: #152645;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    min-height: 54px;
}

.brth-footer-links> a {
    margin-inline: 16px;
    position: relative;
    color: white;
    font-size: 10px;
    text-transform: uppercase;
}
.brth-footer-links> a:not(:last-child):before{
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: white;
    inset-inline-end: -16px;
}

/* ======================== */
/* ===== THANKYOU ===== */
.brth-thankyou {
    min-height: 100svh;
    background-image: url('../media/images/breathe.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    position: relative;
    isolation: isolate;
    place-content: center;
}

.brth-thankyou::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
    background: linear-gradient(0deg, #00081F -6.43%, rgba(15, 51, 61, 0) 50.89%);
    background-blend-mode: multiply;
    z-index: -1;
}

.thankyou-wrapper {
    text-align: center;
}

.thankyou-wrapper h2 {
    font-size: clamp(20px, 5vw, 30px);
    font-weight: 400;
    line-height: 1.3;
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.thankyou-wrapper h3 {
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 600;
    line-height: 1.3;
    color: white;
    text-align: center;
    margin-bottom: 16px;
}

.thankyou-wrapper>p {
    font-size: clamp(16px, 5vw, 22px);
    font-weight: 400;
    line-height: 1.3;
    color: white;
    text-align: center;
    margin-bottom: 16px;
}

.thankyou-wrapper>p:last-of-type {
    /* font-size: clamp(20px, 5vw, 30px); */
    margin-bottom: 30px;
}

.thankyou-tags {
    justify-content: center;
}

/* ======================== */
/* ===== GENERAL  ===== */
@media screen and (max-width: 768px) {

    .forwho-content>.brth-btn+p,
    .why-content>p:last-of-type,
    .teaching-content>.brth-btn+p,
    .techniques-content>.brth-btn+p,
    .invitation-wrapper>.brth-btn+p {
        line-height: 1.5;
        margin-top: 0.5rem;
    }

}

/* ======================== */
/* ===== Utilities ===== */
.w-100 {
    width: 100%;
}

.fw-semibold {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.mb-8 {
    margin-bottom: 8px !important;
}

.mb-32 {
    margin-bottom: 32px;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
}