/* MARK: Variables 
*/
:root {
    --font-urbanist: "Urbanist", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-libre: "Libre Bodoni", ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
    --font-inter: "Inter", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-barlow: "Barlow Condensed", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-opensans: "Open Sans", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-feature: 'liga' off, 'clig' off;
    --max-width: 73rem;
    --header-top-padding: calc(3.52rem + 0.62rem);
    --header-bottom-padding: 3rem;
    --header-height: 3.5rem;
}

/* MARK: General Styling 
*/
html {
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: never;
}
body {
    position: relative;
}

.heading-pill {
    margin: unset;
    padding-inline: 2rem;
    padding-block: 0.62rem;
    border-radius: 2rem;
    font-family: var(--font-urbanist);
    font-feature-settings: var(--font-feature);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5rem;
    display: inline-block;
}

select {
    appearance: none;
    background-color: transparent;
    border: none;
    padding: 0 1em 0 0;
    margin: 0;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
}

.academy-contact-text-container {
    display: flex;
    gap: 0.5rem;
}
.academy-contact-icon-container {
    position: relative;
    width: 1.87rem;
    height: 1.41rem;
}
.academy-contact-icon-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #064A4F;
    opacity: 0.65;
    mix-blend-mode: hue;
}
.academy-contact-icon-container img {
    max-width: 100%;
}
.academy-contact-text {
    color: #142F46;
    font-family: var(--font-urbanist);
    font-feature-settings: var(--font-feature);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5rem;
}
.academy-contact-text-link {
    color: #1A9590;
    text-decoration: underline;
}

/* MARK: Header Styles 
*/
.ych-academy-header {
    position: absolute;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
}
.ych-academy-header.mobile {
    display: none;
}

.ych-academy-header-content {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    height: var(--header-height);
    padding-top: var(--header-top-padding);
    padding-bottom: var(--header-bottom-padding);
}

.ych-academy-header-menu {
    display: flex;
    list-style: none;
    gap: 2.25rem;   
    margin-inline-start: 0;
    padding-inline-start: 0;
}
.ych-academy-header-menu li a {
    color: #000000;
    font-family: var(--font-urbanist);
    font-feature-settings: var(--font-feature);
    font-size: 1rem;
    font-style: normal;
    line-height: 1.25rem;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color .3s ease-in-out, border-color .3s ease-in-out;
}
.ych-academy-header-menu li a:hover {
    color: #7ABFAF;
    border-color: #7ABFAF;
}

/* MARK: Buttons 
*/
.ych-academy-landing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2.5rem;
    background: linear-gradient(0deg, #0F878B 0%, #2BAB97 100%);
    box-shadow: 0 0 3px 0 rgba(255, 255, 255, 0.20) inset, 0 0 20px 0 rgba(198, 233, 160, 0.50) inset;
    text-decoration: none;
    color: #FFFFFF;
    font-family: var(--font-urbanist);
    font-feature-settings: var(--font-feature);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 800;
    line-height: 1.25rem;
    letter-spacing: -0.015rem;
    border: none;
    transition: box-shadow .3s ease-in-out;
}
.ych-academy-landing-btn:hover {
    box-shadow: 0 0 0px 0 rgba(255, 255, 255, 0.20) inset, 0 0 0px 0 rgba(198, 233, 160, 0.50) inset;
}

.ych-academy-header-btn {
    height: 2.5rem;
    padding-inline: 1.25rem;
    font-size: 1rem;
}
.academy-apply-btn, .academy-apply-form-apply-btn {
    padding-block: 1.25rem;
    padding-inline: 2.25rem;
    cursor: pointer;
}

/* MARK: Hero Section 
*/
#hero-section {
    display: flex;
    justify-content: center;
    padding-block-start: calc(var(--header-top-padding) + var(--header-height) + var(--header-bottom-padding));
    background: url('../assets/hero/hero-bg.png'), #ECF6F0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0.62rem;
    border-radius: 2rem;
    padding-block-end: 5.5rem;
    position: relative;
    z-index: 0;
}

.academy-hero-section-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
    max-width: var(--max-width);
}

.academy-hero-image {
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 37.5rem;
    width: 28.75rem;
    position: relative;
}

.academy-hero-image img {
    max-width: 100%;
}

.academy-hero-text-heading {
    margin: unset;
    color: #000000;
    font-family: var(--font-urbanist);
    font-feature-settings: var(--font-feature);
    font-size: 3.625rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.35rem;
    margin-block-end: 1rem;
}
.academy-hero-text-heading span {
    font-family: var(--font-libre);
    font-feature-settings: var(--font-feature);
    font-style: italic;
    font-weight: 600;
}
.academy-hero-text-paragraph {
    margin: unset;
    color: #000000;
    font-family: var(--font-urbanist);
    font-feature-settings: var(--font-feature);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.95rem;
    width: 100%;
    max-width: 35rem;
}
.academy-hero-text-cta-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-block-start: 4.5rem;
    margin-block-end: 1.53rem;
}
.nbhwc-badge { 
    display: flex;
    align-items: center;
    gap: 0.62rem;
}
.nbhwc-badge img {
    width: 10.875rem;
    height: auto;
}
/* .nbhwc-badge .nbhwc-badge-text{
    margin: unset;
    color: #000000;
    font-family: var(--font-urbanist);
    font-feature-settings: var(--font-feature);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    width: 100%;
    max-width: 7.375rem;
} */

.academy-hero-section-ribbon {
    position: absolute;
    right: 0;
    bottom: 0;
    
}

.ribbon-with-text {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
#ribbon-text {
    font-size: 0.875rem;
}

/* MARK: Animated Block
*/
#animated-section {
    width: 100%;
    position: relative;
    background: image-set(
        url('../assets/block-images/animated-block/animated-section-bg-1x.png') 1x,
        url('../assets/block-images/animated-block/animated-section-bg-2x.png') 2x
    );
    background-position: center;
    background-repeat: no-repeat;
}
.animated-section-content {
    height: calc(22.56rem * 2);
    width: 100%;
}

.animated-text-items {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.animated-text-item-slide {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    display: flex;
    justify-content: center;
}

.animated-text-item {
    margin: unset;
    color: #000000;
    text-align: center;
    font-family: var(--font-inter);
    font-size: 3rem;
    font-style: normal;
    font-weight: 300;
    line-height: 4.5rem;
    width: 100%;
    max-width: 66.7rem;
}

.animated-text-w-bg {
    color: #FFFFFF;
    font-family: var(--font-libre);
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    padding-inline: 1.88rem;
    padding-block-end: 0.2rem;
    border-radius: 1rem;
    background: #7ABFAF;
    box-shadow: 0 0 18px 0 #FFF inset;
}


/* MARK: Why YCH Academy
*/
#why-ych-academy {
    background: url('../assets/block-images/why-yourcoach-academy-bg.png'), #ECF6F0;
    background-size: 60%;
    background-position: top right;
    background-repeat: no-repeat;
    margin: 0.62rem;
    border-radius: 2rem;
    display: flex;
    justify-content: center;
}
.why-ych-academy-content {
    width: 100%;
    max-width: var(--max-width);
    padding-block: 9rem;
}
.why-ych-academy-heading-pill {
    background: #FFFFFF;
    color: #000000;
}
.why-ych-academy-subheading {
    margin: unset;
    color: #000000;
    font-family: var(--font-libre);
    font-feature-settings: var(--font-feature);
    font-size: 3rem;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    margin-top: 1.56rem;
    width: 100%;
    max-width: 51rem;
}
.why-ych-academy-paragraphs-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.6fr 0.1fr;
    gap: 2.5rem;
    margin-top: 1.69rem;
    margin-block-end: 2.97rem;
}
.why-ych-academy-paragraph {
    margin: unset;
    color: #000000;
    font-family: var(--font-inter);
    font-size: 1.25rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.875rem;
}

/* MARK: What You Learn
*/
#what-you-learn {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 8.31rem;
}
.what-you-learn-content {
    width: 100%;
    max-width: var(--max-width);
}
.what-you-learn-heading-pill {
    background: #ECF6F0;
    color: #000000;
}
.what-you-learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.69rem 2.5rem;
    margin-top: 1.56rem;
}
.what-you-learn-main-text {
    grid-column: span 2;
    margin: unset;
    color: #000000;
    font-family: var(--font-libre);
    font-feature-settings: var(--font-feature);
    font-size: 2.25rem;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    width: 100%;
}
.what-you-learn-grid-item {
    background: linear-gradient(32deg, rgba(255, 255, 255, 0.00) 25.95%, rgba(255, 255, 255, 0.30) 89.9%), #6BB8A6;
    border-radius: 2rem;
    position: relative;
    padding-inline: 1.75rem;
    padding-block-start: 2.24rem;
    padding-block-end: 2.75rem;
}
.what-you-learn-grid-item-only-text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block-start: 3rem;
    padding-block-end: 3.69rem;
    width: 100%;
}
.what-you-learn-grid-item-icon {
    width: 100%;
    max-width: 5.4rem;
    height: 100%;
    max-height: 4.82rem;
}
.what-you-learn-grid-item-icon img {
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(7px 11px 18.7px rgba(20, 84, 43, 0.08));
}
.what-you-learn-grid-item-text {
    margin: unset;
    color: #FFFFFF;
    font-family: var(--font-urbanist);
    font-feature-settings: var(--font-feature);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.8rem;
    width: 100%;
    max-width: 15.25rem;
    margin-top: 1.15rem;
}
.what-you-learn-grid-item-only-text-paragraph {
    margin: unset;
    color: #000000;
    font-family: var(--font-urbanist);
    font-feature-settings: var(--font-feature);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.95rem;
    width: 100%;
    max-width: 18.5rem;
}

/* MARK: How It Works
*/
#how-it-works {
    display: flex;
    justify-content: center;
    background: url('../assets/block-images/how-it-works/how-it-works-bg.png'), #DAEEE1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0.62rem;
    border-radius: 2rem;
    padding-block-start: 7.13rem;
    padding-block-end: 8.69rem;
    margin-top: 9.63rem;
}
.how-it-works-content {
    width: 100%;
    max-width: var(--max-width);
}
.how-it-works-heading-pill {
    background: #FFFFFF;
    color: #000000;
}
.how-it-works-next-cohort-container {
    display: flex;
    justify-content: flex-end;
}
.how-it-works-next-cohort-container.mobile {
    display: none;
}
.how-it-works-next-cohort {
    background: rgba(255, 255, 255, 0.40);
    box-shadow: 0 0 16.6px 0 #FFF inset;
    border-radius: 1rem;
    font-weight: 500;
}
.how-it-works-main-content {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    width: 100%;
    gap: 4.56rem;
    align-items: end;
    margin-top: 0.8rem;
}
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4.44rem 3.5rem;
}
.how-it-works-grid-item {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.69rem;
    align-items: flex-start;
}
.how-it-works-grid-item img {
    width: 100%;
    max-width: 4.61rem;
    filter: drop-shadow(7px 11px 18.7px rgba(20, 84, 43, 0.08));
}
.how-it-works-grid-item-text {
    margin: unset;
    color: #142F46;
    font-family: var(--font-urbanist);
    font-feature-settings: var(--font-feature);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.8rem;
    width: 100%;
    max-width: 14.125rem;
}

.how-it-works-countdown-block {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background: #ECF6F0;
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
}
.how-it-works-countdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 2.31rem;
    padding-block-start: 2.1rem;
    padding-block-end: 1.85rem;
}
.how-it-works-countdown-header-text {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: #000000;
    font-family: var(--font-urbanist);
    font-feature-settings: var(--font-feature);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.8rem;
}
.how-it-works-countdown-close-time {
    margin: unset;
    color: #000000;
    font-family: var(--font-urbanist);
    font-feature-settings: var(--font-feature);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.4rem;
}
.how-it-works-countdown-timer-block {
    flex-grow: 1;
    min-height: 0;
    padding-inline: 2.5rem;
    padding-block-start: 2.8rem;
    padding-block-end: 3.13rem;
    background: #FFFFFF;
    border-radius: 1.25rem;
    box-shadow: 0 0 64px 0 #EAF5EF inset;
}
.how-it-works-countdown-timer-heading {
    margin: unset;
    color: #000000;
    font-family: var(--font-urbanist);
    font-feature-settings: var(--font-feature);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.8rem;
}
.how-it-works-countdown-timer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 0.81rem;
    gap: 0.25rem;
}
.how-it-works-countdown-timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.how-it-works-countdown-timer-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 7.5rem;
    background: #ECF6F0;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}
.how-it-works-countdown-timer-time-text {
    margin: unset;
    color: #000000;
    font-family: var(--font-barlow);
    font-feature-settings: var(--font-feature);
    font-size: 4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 4.8rem;
    position: absolute;
}
.how-it-works-countdown-timer-time-description {
    margin: unset;
    color: #000000;
    font-family: var(--font-urbanist);
    font-feature-settings: var(--font-feature);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.05rem;
    opacity: 0.6;
    text-transform: uppercase;
    margin-top: 0.44rem;
}
/* CountDown Timer Anim Styles */
.hiw-countdown-slide-in {
    animation: hiw-countdown-slide-in-anim 0.5s forwards ease-in-out;
}

.hiw-countdown-slide-out {
    animation: hiw-countdown-slide-out-anim 0.5s forwards ease-in-out;
}

@keyframes hiw-countdown-slide-in-anim {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes hiw-countdown-slide-out-anim {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/** MARK: Price Block
*/
#program-cost {
    background: url('../assets/block-images/price-block/price-block-bg.png'), #6BB8A6;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0.62rem;
    border-radius: 2rem;
    padding-inline-start: 7.94rem;
    padding-inline-end: 8.13rem;
    padding-block-start: 5rem;
    padding-block-end: 5.5rem;
    display: flex;
    justify-content: center;
    margin-block-start: 4.37rem;
}
.program-cost-content {
    width: 100%;
    max-width: var(--max-width);
}
.program-cost-heading {
    margin: unset;
    color: #FFFFFF;
    font-family: var(--font-libre);
    font-feature-settings: var(--font-feature);
    font-size: 4rem;
    font-style: italic;
    font-weight: 600;
    line-height: normal;
}
.program-cost-price-description-block {
    display: flex;
    align-items: center;
    gap: 7.5rem;
}
.program-cost-price-description-text {
    margin: unset;
    color: #ffffff;
    font-family: var(--font-urbanist);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2.25rem;
    margin-block-start: 2.25rem;
}
.program-cost-price-description-text:first-child {
    margin-block-start: 1.5rem;
}
.program-cost-price-container {
    background: #FFFFFF;
    border-radius: 2rem;
    box-shadow: 0 0 48.711px 0 #DBF0E5 inset;
    padding-block-start: 3.88rem;
    padding-block-end: 3.81rem;
    padding-inline-start: 2.56rem;
    padding-inline-end: 2.44rem;
    width: 100%;
    max-width: 23.7rem;
}
.program-cost-price {
    margin: unset;
    color: #000000;
    font-family: var(--font-libre);
    font-feature-settings: var(--font-feature);
    font-size: 4rem;
    font-style: italic;
    font-weight: 600;
    line-height: normal;
}
.program-cost-price-additional-info {
    margin: unset;
    color: #000000;
    font-family: var(--font-inter);
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.1rem;
    margin-block-start: 1.37rem;
}
.price-block-apply-btn {
    margin-block-start: 1.13rem;
}
.program-cost-academy-fee-header {
    margin: unset;
    color: #FFFFFF;
    font-family: var(--font-libre);
    font-feature-settings: var(--font-feature);
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 600;
    line-height: normal;
    margin-block-start: 6rem;
}
.program-cost-academy-fee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-block-start: 2.74rem;
}
.program-cost-academy-fee-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.12rem;
}
.program-cost-academy-fee-grid-item-image {
    height: 100%;
    max-height: 6rem;
    flex-shrink: 0;
}
#hipaa-compliant-icon-desktop {
    display: block;
}
#hipaa-compliant-icon-mobile {
    display: none;
}
.program-cost-academy-fee-grid-item-text {
    margin: unset;
    color: #FFFFFF;
    font-family: var(--font-urbanist);
    font-feature-settings: var(--font-feature);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    text-align: center;
}
#program-cost-academy-fee-grid-item-text-width {
    max-width: 13rem;
}
.program-cost-contact-text-container {
    display: flex;
    justify-content: center;
    margin-block-start: 5.69rem;
}
.price-block-contact-container {
    justify-content: center;
    padding-inline-start: 4.69rem;
    padding-inline-end: 4.74rem;
    padding-block: 1.6rem;
    background: #FFFFFF;
    border-radius: 1.25rem;
}

/* MARK: Our Coaches
*/
#our-coaches {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 9rem;
}
.our-coaches-bg-line {
    position: absolute;
    top: 0;
    left: -5rem;
    width: calc(100% + 5rem);
    height: 100%;
}
.our-coaches-bg-line svg {
    height: 100%;
    width: 100%;
}
.our-coaches-content {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5.87rem;
    position: relative;
}
.our-coaches-pill {
    background: #EBF7ED;
    color: #000000;
}
.our-coaches-pill.mobile {
    display: none;
}
.our-coaches-text-content {
    flex-shrink: 0;
}
.our-coaches-main-text {
    margin: unset;
    color: #000000;
    font-family: var(--font-libre);
    font-feature-settings: var(--font-feature);
    font-size: 2rem;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    width: 100%;
    max-width: 37.32rem;
    margin-top: 2.12rem;
}
.our-coaches-image-w-text-container {
    width: 100%;
}
.our-coaches-image-w-text-container img {
    max-width: 100%;
}
.our-coaches-image-content {
    position: relative;
}
.our-coaches-image-text {
    position: absolute;
    left: 3.13rem;
    bottom: 2.5rem;
}
.our-coaches-image-text-coach-name {
    margin: unset;
    color: #FFFFFF;
    font-family: var(--font-urbanist);
    font-feature-settings: var(--font-feature);
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.7rem;
}
.our-coaches-image-text-coach-title {
    margin: unset;
    color: #FFFFFF;
    font-family: var(--font-urbanist);
    font-feature-settings: var(--font-feature);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.8rem;
    margin-top: 0.5rem;
}

/* MARK: Enrollment Section
*/
#enrollment {
    display: flex;
    justify-content: center;
    background: url('../assets/block-images/how-it-works/how-it-works-bg.png'), #DAEEE1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0.62rem;
    border-radius: 2rem;
    padding-block-start: 7.13rem;
    padding-block-end: 6rem;
    margin-top: 5.75rem;
}
.enrollment-content {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.enrollment-pill {
    background: #FFFFFF;
    color: #000000;
}
.enrollment-main-text {
    margin: unset;
    color: #000000;
    text-align: center;
    font-family: var(--font-libre);
    font-feature-settings: var(--font-feature);
    font-size: 4rem;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    width: 100%;
    max-width: 62rem;
    margin-top: 2.44rem;
}
.enrollment-info-container {
    display: flex;
    align-items: center;
    gap: 5.5rem;
    margin-top: 3rem;
}
.enrollment-info-item {
    display: flex;
    align-items: center;
    gap: 2.19rem;
}
.enrollment-info-item svg {
    filter: drop-shadow(7px 11px 18.7px rgba(20, 84, 43, 0.08));
}
.enrollment-info-item-text {
    margin: unset;
    color: #000000;
    font-family: var(--font-urbanist);
    font-feature-settings: var(--font-feature);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.8rem;
}
.enrollment-info-item-text span {
    margin: unset;
    display: block;
    color: #000000;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.7rem;
}
.enrollment-apply-btn {
    margin-top: 5.12rem;
    padding-inline: 3rem;
    padding-block: 1.25rem;
    margin-block-end: 2.5rem;
}

.enrollment-contact-container {
    background-color: #FFFFFF;
    padding-block: 1.5rem;
    padding-inline: 4.69rem;
    border-radius: 1.25rem;
    box-shadow: 0 0 64px 0 #EAF5EF inset;
}


/* MARK: FAQ Section
*/
#faq {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 7rem;
}
.faq-content {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.faq-pill {
    background: #ECF6F0;
    color: #000000;
}
.faq-main-text {
    margin: unset;
    color: #000000;
    text-align: center;
    font-family: var(--font-libre);
    font-feature-settings: var(--font-feature);
    font-size: 4rem;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    margin-top: 1.69rem;
}
.faq-items {
    width: 100%;
    max-width: 47.5rem;
    margin-top: 2.87rem;
}
.faq-item {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    padding-block: 0.2rem;
    padding-block-end: 0.7rem;
}
.faq-item:not(:first-of-type) {
    margin-block-start: 1rem;
}
.faq-item:not(:last-of-type) {
    margin-block-end: 1rem;
}
.faq-item-opener {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-item-opener svg {
    color: #142F46;
    transform: rotate(0);
    transition: color .3s ease-in-out, transform .3s ease-in-out;
}
.faq-item-opener-heading {
    margin: unset;
    color: #142F46;
    font-family: var(--font-urbanist);
    font-feature-settings: var(--font-feature);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5rem;
    transition: color .3s ease-in-out;
}
.faq-item-opener:hover .faq-item-opener-heading, .faq-item-opener:hover svg,
.faq-item-opener.active .faq-item-opener-heading, .faq-item-opener.active svg {
    color: #0F878B;
}
.faq-item-opener.active svg {
    transform: rotate(180deg);
}
.faq-item-drop {
    margin: unset;
    color: #819AA9;
    font-family: var(--font-inter);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    margin-top: 1.34rem;
    display: none;    
}

/* MARK: Certificate Block
*/
#certification {
    display: flex;
    justify-content: center;
    background: image-set(
        url('../assets/block-images/certification/cert-bg-image-1x.png') 1x,
        url('../assets/block-images/certification/cert-bg-image-2x.png') 2x
    ), #ECF6F0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0.62rem;
    border-radius: 2rem;
    padding-block-start: 7.13rem;
    padding-block-end: 6rem;
    margin-top: 8.87rem;
}
.certification-content {
    width: 100%;
    max-width: var(--max-width);
}
.certification-pill {
    background: #FFFFFF;
    color: #000000;
}
.certification-main-text {
    margin: unset;
    color: #000000;
    font-family: var(--font-urbanist);
    font-feature-settings: var(--font-feature);
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.925rem;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 39rem;
}
.certification-main-text span {
    display: block;
    margin: unset;
    font-family: var(--font-libre);
    font-feature-settings: var(--font-feature);
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    margin-top: 1rem;
}
.certification-apply-btn {
    margin-top: 2.25rem;
}

.certification-certificate-image-mobile {
    display: none;
}

/* MARK: Footer
*/
.footer {
    width: 100%;
    margin-top: 0.75rem;
}
.footer .content {
    margin: 0.62rem;
    background: #142F46;
    border-radius: 1rem;
    padding-inline: 8.12rem;
    padding-block-start: 4rem;
}

.footer_cols {
    display: grid;
    grid-template-columns: 0.5fr 1.2fr 0.5fr;
    gap: 5.6rem;
}
.footer_apps {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer_apps_item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 1.25rem;
    padding-block: 0.62rem;
    border-radius: 0.625rem;
    background: #3E5867;
}

.footer .social {
    padding: 0;
    width: 100%;
    max-width: 9rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    list-style: none;
}

.footer .social li {
    box-sizing: border-box;
    width: 44px;
    height: 44px;
    padding: 0.5rem;
    background: #3E5867;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer .social li a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .footer_cnt {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.footer .footer_cols_item .nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.footer .footer_cols_item .nav ul li a {
    color: #FFFFFF;
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem;
    text-decoration: none;
}
.footer .footer_right {
    display: flex;
    flex-direction: column;
}
.footer .footer_title {
    color: #FFFFFF;
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.25rem;
}
.footer .form-control.subsc_inp {
    background: transparent;
    border-radius: 0.5rem;
    border: 1px solid #819AA9;
    padding-block: 0.75rem;
    font-family: "Lato", sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    width: 100%;
    box-sizing: border-box;
    color: #ffffff;
}
.footer .form-control.subsc_inp::placeholder {
    padding-inline-start: 0.75rem;
}
.footer .form-control.subsc_inp:focus-visible {
    outline: none;
}
.footer .subsc {
    display: flex;
    margin-top: 1rem;
}
.footer .subsc .mc4wp-form-fields {
    width: 100%;
    position: relative;
}
.footer .subsc .subsc_btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 2.75rem;
    background: #819AA9;
    border: none;
    border-radius: 0 0.5rem 0.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer .subsc .subsc_btn::after {
    content: "";
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTIuMTU1IDEuMzE2YS42MjUuNjI1IDAgMDAtLjg5My42ODFMMy4wMTYgOC4wNmEuNjMuNjMgMCAwMC40OTYuNDQybDcuMTEzIDEuMTkyYy4zMzUuMDY2LjMzNS41NDYgMCAuNjEybC03LjExMyAxLjE5MWEuNjMuNjMgMCAwMC0uNDk2LjQ0M2wtMS43NTQgNi4wNjJhLjYyNS42MjUgMCAwMC44OTMuNjgxbDE2LjI1LTguMTI0YS42MjQuNjI0IDAgMDAwLTEuMTE4eiIvPjwvc3ZnPg==");
    background-size: contain;
    background-repeat: no-repeat;
}

.footer .footer-hipaa-logo {
    margin-top: 2rem;
}
.footer .copy {
    margin: unset;
    font-family: "Lato", sans-serif;
    font-size: 0.75rem;
    color: #819AA9;
    font-weight: 400;
    line-height: 1.25rem;
    text-align: center;
    padding-block-start: 1.5rem;
    padding-block-end: 2.88rem;
    border-top: 1px solid #4A6170;
    margin-top: 2.5rem;
}
.footer .copy a {
    color: #819AA9;
    font-weight: 400;
    text-decoration-color: #819AA9;
}


/* MARK: Modal Styles
*/
.applymodal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(124, 159, 138, 0.50);
    backdrop-filter: blur(6px);
    display: none; 
    z-index: 40;
}
.academy-landing-apply-modal, .academy-landing-confirmation-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    padding-inline: 2.62rem;
    padding-block: 2rem;
    box-sizing: border-box;
    background: #FFFFFF;
    border-radius: 2rem;
    box-shadow: 0 0 48.711px 0 #DBF0E5 inset;
    width: 90%;
    max-width: 34.2rem;
    z-index: 50;
    height: 97%;
    max-height: 97%;
}
.academy-apply-modal-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.12rem;
}
.modal-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal-title {
    margin: unset;
    color: #142F46;
    font-family: var(--font-urbanist);
    font-feature-settings: var(--font-feature);
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.4rem;
}
.modal-close-btn {
    border: none;
    background: rgb(from #E5ECF0 r g b / 80%);
    cursor: pointer;
    border-radius: 2.5rem;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-body {
    overflow: auto;
    height: 100%;
}
.modal-body::-webkit-scrollbar {
    display: none;
}
#academy-apply-form {
    height: 100%;
}

/* Modal Form */
.academy-apply-form-fields {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.12rem;
}
.academy-apply-form-section-header {
    color: #1B9690;
    font-family: var(--font-urbanist);
    font-feature-settings: var(--font-feature);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.05rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 1.12rem;
    margin: 0;
}
.academy-apply-form-section-divider {
    margin: 0;
    border-bottom: 1px solid #F1F5F6;
    opacity: 0.2;
}
.academy-apply-form-section-header::after {
    display: block;
    content: " ";
    border-bottom: 1px solid;
    border-color: #819AA9;
    opacity: 0.4;
    flex: 1 1 auto;
}
.academy-apply-form-field {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.academy-apply-form-fieldset {
    margin: 0;
    border: none;
    padding-inline: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    max-width: 18.5rem;
}
.academy-apply-form-fieldset-fullwidth {
    max-width: 100%;
}
.academy-apply-form-fieldset-field {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.academy-apply-form-field-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;   
}
.academy-apply-form-field.checkbox-field {
    flex-direction: row;
    align-items: center;
}
.academy-apply-form-field label {
    margin: unset;
    color: #000000;
    font-family: var(--font-opensans);
    font-feature-settings: var(--font-feature);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.25rem;
}
.academy-apply-form-field label.checkbox-label {
    color: #819AA9;
}
.academy-apply-form-field label.academy-apply-form-fieldset-checkbox-label {
    color: #000000;
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.25rem;
    letter-spacing: -0.015rem;
}
.academy-apply-form-input {
    box-sizing: border-box;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #E5ECF0;
    border-radius: 0.5rem;
    padding: 0.88rem 1rem;
    color: #000000;
    font-family: var(--font-opensans);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem;
    outline-color: transparent;
    transition: outline-color .3s ease-in-out;
}
.academy-apply-form-input::placeholder {
    color: #819AA9;
    font-family: var(--font-opensans);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem;
}
.academy-apply-form-input:focus-visible {
    outline-color: #0F878B;
}
.academy-apply-form-select {
    box-sizing: border-box;
    width: 100%;
    padding: 0.88rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #E5ECF0;
    background: #FFFFFF;
    outline-color: #0F878B;
    position: relative;
    display: grid;
    justify-content: space-between;
    align-items: center;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxMCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iIzgxOUFBOSIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNLjQ3Ljk3YS43NS43NSAwIDAxMS4wNiAwTDggNy40NCAxNC40Ny45N2EuNzUuNzUgMCAxMTEuMDYgMS4wNmwtNyA3YS43NS43NSAwIDAxLTEuMDYgMGwtNy03YS43NS43NSAwIDAxMC0xLjA2IiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: .96rem .53rem;
    print-color-adjust: exact;
    font-family: var(--font-opensans);

}
.academy-apply-form-checkbox {
    box-sizing: border-box;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    border: 2px solid #E5ECF0;
    border-radius: 0.4rem;
    appearance: none;
    background-color: transparent;
    outline: none;
    flex-shrink: 0;
}
.academy-apply-form-checkbox:checked {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' aria-hidden='true' viewBox='0 0 16 12'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M1 5.917 5.724 10.5 15 1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: .55em .55em;
    background-color: #0F878B;
    background-position: 50%;
    border-color: transparent;
}
.academy-apply-form-apply-btn-container {
    display: flex;
    justify-content: center;
    margin-top: auto;
}
.academy-apply-form-apply-btn {
    padding-inline: 6.72rem;
}
.academy-apply-form-additional-field-container {
    display: none;
}
.academy-apply-form-additional-text {
    display: block;
    color: #819AA9;
    font-family: var(--font-opensans);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: -0.015rem;
    margin-block: 0.25rem;
}
.academy-apply-form-field label.academy-apply-form-additional-form-field-label {
    color: #819AA9;
    font-family: var(--font-opensans);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: -0.015rem;
}

/* MARK: Validation Styles
*/
.academy-apply-form-field .is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}
.academy-apply-form-checkbox.is-invalid {
    background-image: none;
}

/* MARK: DATEPICKER STYLES
*/
.qs-datepicker-container {
    border-radius: 1rem;
    border-color: #DAEEE1;
    width: 18rem;
}
.qs-controls {
    background: #FFFFFF;
    padding-block: 0.5rem;
}
.qs-month-year {
    font-family: var(--font-opensans);
}
.qs-squares {
    font-family: var(--font-opensans);
}
.qs-day {
    color: #1B9690;
}
.qs-current {
    text-decoration: none;
    color: #1B9690;
}
.qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
    background-color: #0F878B;
    color: #FFFFFF;
}
.qs-overlay {
    background: rgba(124, 159, 138, 0.50);
    gap: 0.2rem;
}
.qs-overlay-month-container {
    color: #142F46;
    font-weight: 700;
}
.qs-overlay .qs-overlay-year {
    color: #142F46;
}
.qs-overlay .qs-overlay-year::placeholder {
    color: #142F46;
}
.qs-overlay .qs-submit {
    border: none;
    background: #142F46;

}


/* MARK: Mobile Styles
*/
@media screen and (max-width: 768px) {

    .ych-academy-header {
        display: none;
    }
    .ych-academy-header.mobile {
        display: block;
        padding-inline: 1rem;
    }
    .ych-academy-header.mobile .ych-academy-header-content-inside {
        display: none;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(6px);
        padding-block: 2rem;
        padding-inline: 1rem;
        border-radius: 2rem;
    }
    .ych-academy-header.mobile .ych-academy-header-content-inside .ych-academy-header-menu {
        flex-direction: column;
        align-items: center;
    }
    .ych-academy-header.mobile .ych-academy-header-mobile-opener {
        cursor: pointer;
    }

    .ych-academy-landing-btn {
        font-size: 1rem;
    }

    .academy-contact-text-container {
        align-items: center;
    }
    .academy-contact-text {
        font-size: 0.875rem;
    }


    /* Hero Section */
    #hero-section {
        padding-inline: 1rem;
        padding-block: 2.3rem;
        overflow-x: hidden;
        padding-block-start: 10rem
    }
    .academy-hero-section-content {
        flex-direction: column;
    }
    .academy-hero-text-heading {
        font-size: 1.96rem;
        line-height: 2.36rem;
    }
    .academy-hero-text-paragraph {
        font-size: 0.95rem;
        line-height: 1.24rem;
    }
    .nbhwc-badge-text {
        font-size: 0.73rem;
    }
    .academy-hero-text-cta-container {
        margin-block-start: 1.5rem;
    }
    .academy-hero-text-cta-container .ych-academy-landing-btn {
        flex-shrink: 0;
    }
    .academy-hero-image {
        width: auto;
        align-items: flex-end;
        height: auto;
    }
    .academy-hero-section-ribbon {
        right: -19rem;
    }

    /* Animated Section */
    #animated-section {
        padding-inline: 1rem;
        width: auto;
    }
    .animated-text-item {
        font-size: 1.6rem;
        line-height: 2.5rem;
    }

    /* Why Academy */
    #why-ych-academy {
        padding-inline: 1rem;
        padding-block: 2.12rem;
        background: image-set(
            url('../assets/block-images/why-yourcoach/why-yourcoach-mobile-bg-1x.png') 1x,
            url('../assets/block-images/why-yourcoach/why-yourcoach-mobile-bg-2x.png') 2x
        ), #ECF6F0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .why-ych-academy-content {
        padding-block-end: 3.14rem;
        padding-block-start: 0;
    }
    .heading-pill {
        width: 14.35rem;
        font-size: 1.125rem;
        box-sizing: border-box;
        padding-inline: 1.8rem;
        padding-block: 0.5rem;
    }
    .why-ych-academy-subheading {
        font-size: 1.75rem;
        line-height: normal;
        margin-top: 11.36rem;
    }
    .why-ych-academy-paragraphs-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }
    .why-ych-academy-paragraph {
        font-size: 0.75rem;
        line-height: 1.125rem;
    }


    /* What you learn */
    #what-you-learn {
        padding-inline: 2rem;
        box-sizing: border-box;
    }
    .what-you-learn-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.69rem 0.72rem;
    }
    .what-you-learn-main-text {
        font-size: 1.75rem;
        line-height: normal;
    }
    .what-you-learn-grid-item {
        display: flex;
        align-items: center;
        padding-block: 0.81rem;
        padding-inline: 0.75rem;
        gap: 0.69rem;
        border-radius: 0.87rem;
    }
    .what-you-learn-grid-item-text {
        font-size: 0.65rem;
        line-height: 0.78rem;
        margin: 0;
    }
    .what-you-learn-grid-item-icon {
        max-width: 1.9rem;
        height: auto;
    }
    .what-you-learn-grid-item-only-text {
        grid-column: span 2;
        padding: 0;
    }
    .what-you-learn-grid-item-only-text-paragraph {
        max-width: initial;
        font-size: 0.94rem;
        line-height: 1.21rem;
    }

    /* How it Works */
    #how-it-works {
        padding-block: 2.7rem;
        padding-inline: 1rem;
        background-position: initial;
    }
    .how-it-works-heading-pill {
        width: auto;
    }
    .how-it-works-next-cohort-container.desktop {
        display: none;
    }
    .how-it-works-next-cohort-container.mobile {
        display: flex;
        margin-top: 3.12rem;
    }
    .how-it-works-next-cohort {
        font-size: 0.8rem;
        width: auto;
    }
    .how-it-works-main-content {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 3.3rem;
    }
    .how-it-works-countdown-block {
        margin-top: 1.33rem;
    }
    .how-it-works-grid-item-text {
        font-size: 1rem;
        line-height: 1.22rem;
    }
    .how-it-works-grid {
        align-items: baseline;
        gap: 0.94rem 3.47rem;
    }
    .how-it-works-countdown-header-text {
        font-size: 0.96rem;
        gap: 0.2rem;
    }
    .how-it-works-countdown-close-time {
        font-size: 1rem;
    }
    .how-it-works-countdown-header {
        padding-inline: 1.48rem;
        padding-block: 1.34rem;
    }
    .how-it-works-countdown-timer-heading {
        font-size: 0.96rem;
    }
    .how-it-works-countdown-timer-time-text {
        font-size: 2.56rem;
    }
    .how-it-works-countdown-timer-holder {
        height: 4.80rem;
    }
    .how-it-works-countdown-timer-time-description {
        font-size: 0.56rem;
    }

    #program-cost {
        padding-block: 2.7rem;
        padding-block-start: 3.69rem;
        padding-inline: 1rem;
        background: url('../assets/block-images/price-block/price-block-bg-mobile.png'), #6BB8A6;
        background-size: cover;
        background-position: center;
    }
    .program-cost-heading {
        font-size: 2.5rem;
    }
    .program-cost-price-description-block {
        flex-direction: column;
        gap: 1rem;
    }
    .program-cost-price-description-text {
        font-size: 1.25rem;
    }
    .program-cost-price-container {
        width: auto;
    }
    .program-cost-price {
        font-size: 3rem;
    }
    .program-cost-price-additional-info {
        font-size: 1.25rem;
    }
    .price-block-apply-btn {
        margin-block-start: 1.33rem;
    }
    .program-cost-academy-fee-header {
        font-size: 2rem;
        margin-block-start: 3.5rem;
    }
    .program-cost-academy-fee-grid {
        grid-template-columns: 1fr;
    }
    .program-cost-academy-fee-grid-item {
        flex-direction: row;
    }
    .program-cost-academy-fee-grid-item-text {
        font-size: 1rem;
    }
    #program-cost-academy-fee-grid-item-text-width {
        max-width: inherit;
    }
    .program-cost-academy-fee-grid-item-image {
        width: 3.73rem;
    }
    #hipaa-compliant-icon-mobile {
        display: block;
    }
    #hipaa-compliant-icon-desktop {
        display: none;
    }
    .program-cost-academy-fee-grid-item-text {
        text-align: left;
    }
    .price-block-contact-container, .enrollment-contact-container {
        padding-inline: 1.19rem;
        padding-block: 1.44rem;
        gap: 1.36rem;
    }
    .price-block-contact-container .academy-contact-text, .enrollment-contact-container .academy-contact-text{
        font-size: 1rem;
    }
    .price-block-contact-container .academy-contact-icon-container, .enrollment-contact-container .academy-contact-icon-container {
        flex-shrink: 0;
    }

    .our-coaches-bg-line {
        left: -15rem;
        width: calc(100% + 40rem);
    }
    .our-coaches-content {
        padding-inline: 2.55rem;
        display: flex;
        flex-direction: column-reverse;
        gap: 3.13rem;
    }
    .our-coaches-pill {
        font-size: 1.125rem;
        width: auto;
    }
    .our-coaches-pill.desktop {
        display: none;
    }
    .our-coaches-pill.mobile {
        display: block;
        align-self: baseline;
    }
    .our-coaches-main-text {
        font-size: 1.75rem;
        line-height: normal;
    }

    #enrollment {
        padding-inline: 1rem;
        padding-block: 2.63rem;
        background-position: initial;
    }
    .enrollment-info-container {
        flex-direction: column;
        gap: 1.33rem;
        align-items: baseline;
    }
    .enrollment-pill {
        width: auto;
        align-self: baseline;
    }
    .enrollment-main-text {
        font-size: 1.75rem;
        line-height: normal;
    }
    .enrollment-info-item-text {
        font-size: 1.16rem;
        line-height: 1.38rem;
    }
    .enrollment-info-item-text span {
        font-size: 1.74rem;
        line-height: 2rem;
    }
    .enrollment-info-item svg {
        width: 3.34rem;
        height: 3.34rem;
    }
    .enrollment-apply-btn {
        margin-top: 4.56rem;
    }

    #faq {
        padding-inline: 1rem;
        box-sizing: border-box;
    }
    .faq-pill {
        width: auto;
        align-self: baseline;
    }
    .faq-main-text {
        font-size: 1.75rem;
        margin-top: 3.13rem;
    }
    .faq-items {
        margin-top: 3.13rem;
    }
    .faq-item-opener-heading {
        font-size: 0.75rem;
        line-height: 1.125rem;
    }
    .faq-item-drop {
        font-size: 0.75rem;
        line-height: 1.125rem;
    }

    #certification {
        padding-inline: 1rem;
        background: image-set(
            url('../assets/block-images/certification/cert-mobile-bg-lines-1x.png') 1x,
            url('../assets/block-images/certification/cert-mobile-bg-lines-2x.png') 2x
        ), #ECF6F0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .certification-pill {
        width: auto;
    }
    .certification-main-text {
        font-size: 1.75rem;
        line-height: 2.275rem;
    }
    .certification-certificate-image-mobile {
        display: block;
        width: 100%;
        position: relative;
        right: -1rem;
        margin-top: 1.75rem;
    }
    .certification-apply-btn {
        font-size: 1.3rem;
        margin-top: 0;
    }

    .footer .content.max_and_margin {
        padding-inline: 1rem;
    }
    .footer_cols {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    .footer_left {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .footer_left .social {
        max-width: none;
        display: flex;
        justify-content: center;
    }
    .footer .footer_cnt {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer_cols_item {
        text-align: center;
        font-size: 1.12rem;
    }
    .footer_right {
        width: 100%;
    }

    .academy-apply-form-field-group {
        flex-direction: column;
    }
}