/* =========================================================
   FIRE YOUR BOSS
   FUNNEL VISUAL STYLE GUIDE
   VERSION 1.0

   Desktop + Mobile
========================================================= */


/* =========================================================
   1. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;

    background: #FFFFFF;

    color: #111111;

    font-family:
        "Poppins",
        "Montserrat",
        "Helvetica Neue",
        Arial,
        sans-serif;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


img {
    display: block;

    max-width: 100%;

    height: auto;
}


button,
input {
    font-family: inherit;
}


button {
    cursor: pointer;
}


input {
    outline: none;
}


.desktop-only {
    display: inline;
}


/* =========================================================
   2. LANDING PAGE
========================================================= */

.landing-page {
    width: 100%;

    min-height: 100vh;

    background: #FFFFFF;
}


.landing-wrapper {
    width: 100%;

    min-height: 100vh;
}


.landing-section {
    width: 100%;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding:
        20px
        60px;
}


/* =========================================================
   3. DESKTOP CONTAINER
========================================================= */

.landing-container {
    width: 100%;

    max-width: 1700px;

    min-height: 800px;

    margin:
        0
        auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(450px, 0.85fr);

    align-items: center;

    gap: 70px;
}


/* =========================================================
   4. LEFT CONTENT
========================================================= */

.landing-content {
    width: 100%;

    max-width: 850px;

    margin-left: auto;
}


/* =========================================================
   5. HEADLINE
========================================================= */

.landing-header {
    width: 100%;

    text-align: center;
}


.landing-heading {
    margin: 0;

    font-family:
        "Bebas Neue",
        "Oswald",
        "Arial Narrow",
        sans-serif;

    font-weight: 400;

    line-height: 1;

    letter-spacing: 0;
}


/* Small headline */

.heading-small {
    display: block;

    font-size:
        clamp(
            46px,
            4vw,
            76px
        );

    line-height: 0.95;

    color: #111111;
}


/* Main headline */

.heading-main {
    display: block;

    margin-top: 8px;

    font-size:
        clamp(
            85px,
            7.5vw,
            140px
        );

    line-height: 0.85;

    white-space: nowrap;
}


.heading-main .gold {
    color: #E89A12;
}


.heading-main .black {
    color: #111111;
}


/* =========================================================
   6. GOLD DECORATIVE BRUSH
========================================================= */

.heading-brush {
    width: 340px;

    height: 12px;

    margin:
        32px
        auto
        28px;

    background: #E89A12;

    clip-path: polygon(
        0 35%,
        8% 20%,
        17% 38%,
        28% 18%,
        40% 40%,
        52% 15%,
        65% 36%,
        78% 20%,
        90% 38%,
        100% 25%,
        95% 70%,
        82% 58%,
        70% 82%,
        55% 60%,
        43% 80%,
        30% 60%,
        15% 75%,
        0 62%
    );
}


/* =========================================================
   7. SUBTITLE
========================================================= */

.landing-subtitle {
    margin:
        0
        auto
        50px;

    max-width: 700px;

    color: #4F4F4F;

    font-family:
        "Poppins",
        "Montserrat",
        "Helvetica Neue",
        Arial,
        sans-serif;

    font-size:
        clamp(
            18px,
            1.4vw,
            25px
        );

    line-height: 1.55;

    font-weight: 400;
}


/* =========================================================
   8. MOBILE BOOK

   Hidden on desktop.

   On mobile:
   Heading
   ↓
   Subtitle
   ↓
   Book
   ↓
   Form
========================================================= */

.mobile-book {
    display: none;

    width: 100%;

    justify-content: center;

    margin:
        0
        auto
        32px;
}


.mobile-book img {
    width: 88%;

    max-width: 380px;

    height: auto;

    object-fit: contain;
}


/* =========================================================
   9. DESKTOP BOOK
========================================================= */

.desktop-book {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;
}


.desktop-book img {
    width:
        min(
            100%,
            680px
        );

    max-height: 850px;

    object-fit: contain;

    filter:
        drop-shadow(
            0
            20px
            25px
            rgba(
                0,
                0,
                0,
                0.16
            )
        );
}


/* =========================================================
   10. FORM
========================================================= */

.lead-form {
    width: 100%;

    max-width: 850px;

    margin:
        0
        auto;
}


/* =========================================================
   11. FORM FIELD

   Approved:
   Height: 70px
   Border: 1px #D9D9D9
========================================================= */

.form-field {
    width: 100%;

    height: 70px;

    margin-bottom: 16px;

    display: flex;

    align-items: center;

    background: #FFFFFF;

    border:
        1px solid
        #D9D9D9;

    border-radius: 8px;

    transition:
        border-color
        0.2s
        ease,

        box-shadow
        0.2s
        ease;
}


.form-field:focus-within {
    border-color: #5A2BA0;

    box-shadow:
        0
        0
        0
        3px
        rgba(
            90,
            43,
            160,
            0.10
        );
}


/* =========================================================
   12. FORM ICON
========================================================= */

.field-icon {
    width: 68px;

    min-width: 68px;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;
}


.field-icon svg {
    width: 30px;

    height: 30px;

    fill: none;

    stroke: #4F4F4F;

    stroke-width: 1.6;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================================
   13. INPUT
========================================================= */

.form-field input {
    width: 100%;

    height: 100%;

    padding:
        0
        22px
        0
        0;

    border: 0;

    background: transparent;

    color: #111111;

    font-family:
        "Poppins",
        "Montserrat",
        "Helvetica Neue",
        Arial,
        sans-serif;

    font-size: 17px;

    font-weight: 400;
}


.form-field input::placeholder {
    color: #4F4F4F;

    opacity: 1;
}


/* =========================================================
   14. PRIMARY CTA

   Approved:
   Height: 72px
   Radius: 8px
   Gradient:
   #6A28B8 -> #4D247B
========================================================= */

.download-button {
    width: 100%;

    height: 72px;

    padding:
        0
        25px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 16px;

    border: 0;

    border-radius: 8px;

    background:
        linear-gradient(
            90deg,
            #6A28B8 0%,
            #4D247B 100%
        );

    color: #FFFFFF;

    font-family:
        "Bebas Neue",
        "Oswald",
        "Arial Narrow",
        sans-serif;

    font-size: 28px;

    font-weight: 400;

    line-height: 1;

    letter-spacing: 0.5px;

    transition:
        transform
        0.2s
        ease,

        box-shadow
        0.2s
        ease;
}


.download-button:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0
        10px
        25px
        rgba(
            77,
            36,
            123,
            0.25
        );
}


.download-button:active {
    transform:
        translateY(0);
}


/* =========================================================
   15. DOWNLOAD ICON
========================================================= */

.download-icon {
    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.download-icon svg {
    width: 32px;

    height: 32px;

    fill: none;

    stroke: #FFFFFF;

    stroke-width: 2;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================================
   16. TABLET
========================================================= */

@media (max-width: 1200px) {


    .landing-section {
        padding:
            40px;
    }


    .landing-container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(350px, 0.8fr);

        gap: 45px;
    }


    .heading-small {
        font-size: 52px;
    }


    .heading-main {
        font-size: 95px;
    }


    .desktop-book img {
        max-width: 560px;
    }


}


/* =========================================================
   17. TABLET / MOBILE BREAKPOINT

   Desktop book disappears.

   Mobile book appears.

   Layout becomes one column.
========================================================= */

@media (max-width: 900px) {


    .landing-section {
        min-height: auto;

        padding:
            45px
            25px
            60px;
    }


    .landing-container {
        width: 100%;

        max-width: 700px;

        min-height: auto;

        display: block;

        margin:
            0
            auto;
    }


    .landing-content {
        width: 100%;

        max-width: 700px;

        margin:
            0
            auto;
    }


    /* Hide desktop book */

    .desktop-book {
        display: none;
    }


    /* Show mobile book */

    .mobile-book {
        display: flex;
    }


    .heading-small {
        font-size: 44px;
    }


    .heading-main {
        font-size: 78px;
    }


    .landing-subtitle {
        font-size: 19px;

        margin-bottom: 30px;
    }


}


/* =========================================================
   18. MOBILE
========================================================= */

@media (max-width: 600px) {

.fyb-thank-you-page iframe {
  width: 100vw !important;
  height: auto !important;
	aspect-ratio: inherit !important;
}
    .landing-section {
        width: 100%;

        min-height: 100vh;

        padding:
            28px
            18px
            45px;
    }


    .landing-container {
        width: 100%;

        max-width: 100%;
    }


    .landing-content {
        width: 100%;

        max-width: 100%;
    }


    /* =========================================
       HEADLINE
    ========================================== */

    .heading-small {
        font-family:
            "Bebas Neue",
            "Oswald",
            "Arial Narrow",
            sans-serif;

        font-size: 34px;

        line-height: 1;

        letter-spacing: 0;
    }


    .heading-main {
        margin-top: 7px;

        font-family:
            "Bebas Neue",
            "Oswald",
            "Arial Narrow",
            sans-serif;

        font-size: 61px;

        line-height: 0.86;

        letter-spacing: 0;

        white-space: nowrap;
    }


    /* =========================================
       GOLD BRUSH
    ========================================== */

    .heading-brush {
        width: 220px;

        height: 8px;

        margin:
            20px
            auto
            18px;
    }


    /* =========================================
       SUBTITLE
    ========================================== */

    .landing-subtitle {
        max-width: 340px;

        margin:
            0
            auto
            24px;

        color: #4F4F4F;

        font-family:
            "Poppins",
            "Montserrat",
            "Helvetica Neue",
            Arial,
            sans-serif;

        font-size: 16px;

        line-height: 1.5;

        font-weight: 400;
    }


    /* =========================================
       BOOK

       IMPORTANT:

       The book is above the form.
    ========================================== */

    .mobile-book {
        width: 100%;

        display: flex;

        margin:
            0
            auto
            28px;
    }


    .mobile-book img {
        width: 88%;

        max-width: 360px;

        margin:
            0
            auto;
    }


    /* =========================================
       FORM
    ========================================== */

    .lead-form {
        width: 100%;

        margin: 0;
    }


    /* =========================================
       INPUT

       Approved height:
       70px
    ========================================== */

    .form-field {
        width: 100%;

        height: 70px;

        margin-bottom: 14px;

        border-radius: 8px;
    }


    .field-icon {
        width: 55px;

        min-width: 55px;
    }


    .field-icon svg {
        width: 27px;

        height: 27px;
    }


    .form-field input {
        font-size: 16px;

        padding:
            0
            15px
            0
            0;
    }


    /* =========================================
       CTA

       Approved height:
       72px

       Approved radius:
       8px
    ========================================== */

    .download-button {
        width: 100%;

        height: 72px;

        padding:
            0
            15px;

        gap: 10px;

        border-radius: 8px;

        font-size: 23px;

        letter-spacing: 0.3px;
    }


    .download-icon {
        width: 32px;

        height: 32px;
    }


    .download-icon svg {
        width: 30px;

        height: 30px;
    }


    .desktop-only {
        display: none;
    }


}


/* =========================================================
   19. SMALL MOBILE
========================================================= */

@media (max-width: 380px) {


    .landing-section {
        padding-left: 15px;

        padding-right: 15px;
    }


    .heading-small {
        font-size: 31px;
    }


    .heading-main {
        font-size: 53px;
    }


    .landing-subtitle {
        font-size: 15px;
    }


    .mobile-book img {
        width: 92%;
    }


    .form-field {
        height: 70px;
    }


    .download-button {
        height: 72px;

        font-size: 21px;
    }


}

/* =========================================================
   FIRE YOUR BOSS
   THANK YOU PAGE
   DESKTOP + MOBILE
========================================================= */


/* =========================================================
   RESET / PAGE
========================================================= */

/* =========================================================
   FIRE YOUR BOSS
   THANK YOU PAGE
   DESKTOP + MOBILE
========================================================= */


/* =========================================================
   PAGE RESET
========================================================= */

.fyb-thank-you-page {
    margin: 0;
    padding: 0;

    background: #ffffff;

    color: #111111;

    font-family:
        "Poppins",
        "Montserrat",
        "Helvetica Neue",
        Arial,
        sans-serif;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.fyb-thank-you-page *,
.fyb-thank-you-page *::before,
.fyb-thank-you-page *::after {
    box-sizing: border-box;
}


.fyb-thank-you-page img,
.fyb-thank-you-page iframe {
    max-width: 100%;
}


/* =========================================================
   THANK YOU HEADER
========================================================= */

.fyb-thank-you-header {
    width: 100%;

    background:
        linear-gradient(
            110deg,
            #2A074F 0%,
            #1A033E 100%
        );

    overflow: hidden;
}


/* =========================================================
   HEADER INNER
========================================================= */

.fyb-thank-you-header-inner {

    width: 100%;

    max-width: 1440px;

    min-height: 130px;

    margin: 0 auto;

    padding:
        15px
        55px;

    display: flex;

    align-items: center;

    gap: 20px;
}


/* =========================================================
   THANK / YOU TITLE
========================================================= */

.fyb-thank-you-title {

    margin: 0;

    font-family:
        "Bebas Neue",
        "Oswald",
        "Arial Narrow",
        sans-serif;

    font-size:
        clamp(
            68px,
            7vw,
            108px
        );

    line-height: 0.82;

    letter-spacing: 1px;

    color: #ffffff;

    white-space: nowrap;
}


/* =========================================================
   GOLD YOU
========================================================= */

.fyb-thank-you-title-gold {

    color: #E89A12;
}


/* =========================================================
   HEADER MESSAGE
========================================================= */

.fyb-thank-you-header-message {

    margin-left: auto;

    display: flex;

    flex-direction: column;

    justify-content: center;

    font-family:
        "Bebas Neue",
        "Oswald",
        "Arial Narrow",
        sans-serif;

    font-size:
        clamp(
            34px,
            3.5vw,
            54px
        );

    line-height: 0.95;

    letter-spacing: 1px;

    color: #ffffff;

    text-transform: uppercase;

    white-space: nowrap;
}


/* =========================================================
   GOLD UNDERLINE
========================================================= */

.fyb-thank-you-header-message::after {

    content: "";

    display: block;

    width: 220px;

    max-width: 100%;

    height: 4px;

    margin-top: 10px;

    background: #E89A12;

    transform: skewX(-25deg);
}


/* =========================================================
   MAIN AREA
========================================================= */

.fyb-thank-you-main {

    width: 100%;

    background: #ffffff;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.fyb-thank-you-container {

    width: 100%;

    max-width: 1440px;

    margin: 0 auto;

    padding:
        22px
        55px
        35px;
}


/* =========================================================
   TOP CONTENT

   DESKTOP:

   BOOK | MESSAGE
        | VIDEO
        | BUTTONS
========================================================= */

.fyb-thank-you-top {

    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(280px, 380px)
        minmax(0, 1fr);

    column-gap: 45px;

    align-items: start;
}


/* =========================================================
   BOOK COLUMN
========================================================= */

.fyb-thank-you-book-column {

    width: 100%;

    display: flex;

    justify-content: center;

    align-items: flex-start;
}


/* =========================================================
   BOOK IMAGE
========================================================= */

.fyb-thank-you-book {

    display: block;

    width: 100%;

    max-width: 370px;

    max-height: 650px;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0
            15px
            20px
            rgba(
                0,
                0,
                0,
                0.14
            )
        );
}


/* =========================================================
   RIGHT CONTENT COLUMN
========================================================= */

.fyb-thank-you-content-column {

    width: 100%;

    min-width: 0;

    display: flex;

    flex-direction: column;
}


/* =========================================================
   MESSAGE
========================================================= */

.fyb-thank-you-message {

    width: 100%;

    padding: 0;

    margin:
        0
        0
        18px;

    font-size: 21px;

    line-height: 1.45;

    font-weight: 400;

    color: #111111;
}


.fyb-thank-you-message p {

    margin:
        0
        0
        10px;
}


.fyb-thank-you-message p:last-child {

    margin-bottom: 0;
}


/* =========================================================
   ITALIC FIRE YOUR BOSS
========================================================= */

.fyb-thank-you-message em {

    color: #5A2BA0;

    font-style: italic;

    font-weight: 600;
}


/* =========================================================
   VIDEO WRAPPER
========================================================= */

.fyb-video-wrapper {

    width: 100%;

    position: relative;

    overflow: hidden;

    border-radius: 12px;

    background: #111111;

    aspect-ratio: 16 / 9;
}


/* =========================================================
   VIMEO IFRAME
========================================================= */

.fyb-thank-you-video {

    display: block;

    width: 100% !important;

    height: 100% !important;

    max-width: none !important;

    border: 0;

    background: #111111;
}


/* =========================================================
   ACTION BUTTONS

   DESKTOP:

   BUTTON → ARROW → BUTTON
========================================================= */

.fyb-thank-you-actions {

    width: 100%;

    margin-top: 22px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        70px
        minmax(0, 1fr);

    align-items: stretch;

    column-gap: 16px;
}


/* =========================================================
   DOWNLOAD BUTTON
========================================================= */

.fyb-thank-you-download-btn {

    min-height: 68px;

    padding:
        10px
        20px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #6A28B8 0%,
            #4D247B 100%
        );

    color: #ffffff;

    font-family:
        "Bebas Neue",
        "Oswald",
        "Arial Narrow",
        sans-serif;

    font-size: 27px;

    line-height: 0.95;

    letter-spacing: 0.8px;

    text-align: center;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.fyb-thank-you-download-btn:hover {

    color: #ffffff;

    transform:
        translateY(-2px);

    box-shadow:
        0
        8px
        20px
        rgba(
            77,
            36,
            123,
            0.25
        );
}


/* =========================================================
   DOWNLOAD ICON
========================================================= */

.fyb-download-icon {

    width: 44px;

    height: 44px;

    flex:
        0 0
        44px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.fyb-download-icon svg {

    display: block;

    width: 100%;

    height: 100%;
}


/* =========================================================
   ARROW
========================================================= */

.fyb-thank-you-arrow {

    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #5A2BA0;
}


.fyb-thank-you-arrow svg {

    display: block;

    width: 100%;

    max-width: 70px;

    height: auto;
}


/* =========================================================
   OPPORTUNITY BUTTON
========================================================= */

.fyb-thank-you-opportunity-btn {

    min-height: 68px;

    padding:
        10px
        20px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    border:
        3px solid
        #5A2BA0;

    border-radius: 8px;

    background: #ffffff;

    color: #5A2BA0;

    font-family:
        "Bebas Neue",
        "Oswald",
        "Arial Narrow",
        sans-serif;

    font-size: 27px;

    line-height: 0.95;

    letter-spacing: 0.8px;

    text-align: center;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.fyb-thank-you-opportunity-btn:hover {

    background: #5A2BA0;

    color: #ffffff;

    transform:
        translateY(-2px);
}


/* =========================================================
   OPPORTUNITY ICON
========================================================= */

.fyb-opportunity-icon {

    width: 45px;

    height: 45px;

    flex:
        0 0
        45px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.fyb-opportunity-icon svg {

    display: block;

    width: 100%;

    height: 100%;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1440px) {


    .fyb-thank-you-header-inner {

        max-width: 1500px;

        padding-left: 70px;

        padding-right: 70px;
    }


    .fyb-thank-you-container {

        max-width: 1500px;

        padding-left: 70px;

        padding-right: 70px;

        padding-top: 25px;
    }


    .fyb-thank-you-top {

        grid-template-columns:
            400px
            minmax(0, 1fr);

        column-gap: 55px;
    }


    .fyb-thank-you-book {

        max-width: 390px;

        max-height: 680px;
    }


    .fyb-thank-you-message {

        font-size: 23px;

        line-height: 1.45;
    }


    .fyb-thank-you-actions {

        margin-top: 24px;

        column-gap: 20px;
    }


    .fyb-thank-you-download-btn,
    .fyb-thank-you-opportunity-btn {

        font-size: 30px;
    }

}


/* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 1100px) {


    .fyb-thank-you-header-inner {

        min-height: 120px;

        padding:
            15px
            35px;

        gap: 15px;
    }


    .fyb-thank-you-title {

        font-size: 75px;
    }


    .fyb-thank-you-header-message {

        font-size: 35px;
    }


    .fyb-thank-you-container {

        padding:
            20px
            35px
            35px;
    }


    .fyb-thank-you-top {

        grid-template-columns:
            minmax(230px, 300px)
            minmax(0, 1fr);

        column-gap: 30px;
    }


    .fyb-thank-you-book {

        max-width: 300px;
    }


    .fyb-thank-you-message {

        font-size: 18px;

        line-height: 1.45;
    }


    .fyb-thank-you-actions {

        grid-template-columns:
            minmax(0, 1fr)
            55px
            minmax(0, 1fr);

        column-gap: 10px;

        margin-top: 18px;
    }


    .fyb-thank-you-download-btn,
    .fyb-thank-you-opportunity-btn {

        min-height: 64px;

        padding:
            8px
            12px;

        gap: 8px;

        font-size: 23px;
    }


    .fyb-download-icon,
    .fyb-opportunity-icon {

        width: 38px;

        height: 38px;

        flex-basis: 38px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {


    /* =====================================================
       HEADER
    ====================================================== */

    .fyb-thank-you-header-inner {

        min-height: auto;

        padding:
            22px
            18px
            25px;

        display: grid;

        grid-template-columns:
            1fr
            1fr;

        gap: 0;

        align-items: center;
    }


    .fyb-thank-you-title {

        font-size:
            clamp(
                62px,
                21vw,
                100px
            );

        line-height: 0.78;

        letter-spacing: 1px;
    }


    .fyb-thank-you-title-gold {

        text-align: left;
    }


    .fyb-thank-you-header-message {

        grid-column:
            1 /
            -1;

        margin:
            20px
            0
            0;

        font-size:
            clamp(
                30px,
                8.5vw,
                48px
            );

        line-height: 0.95;

        text-align: center;

        align-items: center;

        white-space: normal;
    }


    .fyb-thank-you-header-message::after {

        width: 190px;

        margin-top: 10px;
    }



    /* =====================================================
       MAIN CONTAINER
    ====================================================== */

    .fyb-thank-you-container {

        width: 100%;

        padding:
            18px
            16px
            35px;
    }



    /* =====================================================
       MOBILE MAIN LAYOUT

       REQUIRED ORDER:

       1. VIDEO
       2. BUTTON
       3. BUTTON
       4. BOOK
       5. MESSAGE
    ====================================================== */

    .fyb-thank-you-top {

        width: 100%;

        display: flex;

        flex-direction: column;
    }



    /* =====================================================
       CONTENT COLUMN

       Move content visually before book.
    ====================================================== */

    .fyb-thank-you-content-column {

        width: 100%;

        display: flex;

        flex-direction: column;

        order: 1;
    }



    /* =====================================================
       VIDEO

       First visible item after banner.
    ====================================================== */

    .fyb-video-wrapper {

        width: 100%;

        aspect-ratio:
            16 /
            9;

        border-radius: 9px;

        margin:
            0
            0
            18px;

        order: 1;
    }


    .fyb-thank-you-video {

        width: 100% !important;

        height: 100% !important;
    }



    /* =====================================================
       BUTTONS

       Video
       ↓
       Button
       ↓
       Button
    ====================================================== */

    .fyb-thank-you-actions {

        width: 100%;

        margin: 0;

        display: flex;

        flex-direction: column;

        gap: 14px;

        order: 2;
    }


    /* =====================================================
       DOWNLOAD BUTTON
    ====================================================== */

    .fyb-thank-you-download-btn {

        width: 100%;

        min-height: 68px;

        padding:
            12px
            15px;

        gap: 12px;

        font-size:
            clamp(
                25px,
                7vw,
                34px
            );

        line-height: 0.9;
    }



    /* =====================================================
       HIDE ARROW ON MOBILE
    ====================================================== */

    .fyb-thank-you-arrow {

        display: none;
    }



    /* =====================================================
       OPPORTUNITY BUTTON
    ====================================================== */

    .fyb-thank-you-opportunity-btn {

        width: 100%;

        min-height: 68px;

        padding:
            12px
            15px;

        gap: 12px;

        font-size:
            clamp(
                23px,
                6.5vw,
                32px
            );

        line-height: 0.9;
    }


    .fyb-download-icon {

        width: 43px;

        height: 43px;

        flex-basis: 43px;
    }


    .fyb-opportunity-icon {

        width: 43px;

        height: 43px;

        flex-basis: 43px;
    }



    /* =====================================================
       BOOK

       Comes AFTER both buttons.
    ====================================================== */

    .fyb-thank-you-book-column {

        width: 100%;

        margin:
            28px
            auto
            20px;

        display: flex;

        justify-content: center;

        align-items: flex-start;

        order: 2;
    }


    .fyb-thank-you-book {

        width: auto;

        max-width: 82%;

        max-height: 430px;

        height: auto;

        object-fit: contain;
    }



    /* =====================================================
       MESSAGE

       Comes AFTER BOOK.
    ====================================================== */

    .fyb-thank-you-message {

        width: 100%;

        padding: 0;

        margin:
            0
            0
            5px;

        font-size:
            clamp(
                17px,
                4.8vw,
                21px
            );

        line-height: 1.6;

        text-align: left;

        order: 3;
    }


    .fyb-thank-you-message p {

        margin:
            0
            0
            14px;
    }


    .fyb-thank-you-message p:last-child {

        margin-bottom: 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {


    .fyb-thank-you-header-inner {

        padding:
            20px
            15px
            23px;
    }


    .fyb-thank-you-title {

        font-size:
            clamp(
                58px,
                20vw,
                90px
            );
    }


    .fyb-thank-you-header-message {

        margin-top: 18px;

        font-size:
            clamp(
                27px,
                8.2vw,
                40px
            );
    }


    .fyb-thank-you-header-message::after {

        width: 175px;

        height: 4px;

        margin-top: 9px;
    }


    .fyb-thank-you-container {

        padding:
            16px
            14px
            30px;
    }


    .fyb-video-wrapper {

        margin-bottom: 15px;

        border-radius: 8px;
    }


    .fyb-thank-you-actions {

        gap: 12px;
    }


    .fyb-thank-you-download-btn,
    .fyb-thank-you-opportunity-btn {

        min-height: 66px;

        padding:
            10px
            12px;

        gap: 10px;

        font-size: 23px;
    }


    .fyb-download-icon,
    .fyb-opportunity-icon {

        width: 40px;

        height: 40px;

        flex-basis: 40px;
    }


    .fyb-thank-you-book-column {

        margin-top: 25px;

        margin-bottom: 18px;
    }


    .fyb-thank-you-book {

        max-width: 88%;

        max-height: 410px;
    }


    .fyb-thank-you-message {

        font-size: 17px;

        line-height: 1.6;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {


    .fyb-thank-you-title {

        font-size: 56px;
    }


    .fyb-thank-you-header-message {

        font-size: 26px;
    }


    .fyb-thank-you-book {

        max-width: 92%;

        max-height: 380px;
    }


    .fyb-thank-you-download-btn,
    .fyb-thank-you-opportunity-btn {

        font-size: 21px;

        gap: 8px;
    }


    .fyb-download-icon,
    .fyb-opportunity-icon {

        width: 37px;

        height: 37px;

        flex-basis: 37px;
    }

}
/* =========================================================
   THANK YOU HEADER - ASSOCIATE CONTACT
========================================================= */

.fyb-thank-you-associate {

    display: flex;

    align-items: center;

    gap: 15px;

    flex: 0 0 auto;

    margin-left: 25px;

    margin-right: 25px;

    color: #ffffff;

    background: transparent;

    border: 0;

    box-shadow: none;
}


.fyb-thank-you-associate-photo {

    width: 75px;

    min-width: 75px;

    height: 88px;

    overflow: hidden;
}


.fyb-thank-you-associate-photo img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;
}


.fyb-thank-you-associate-info {

    display: flex;

    flex-direction: column;

    justify-content: center;

    min-width: 0;
}


.fyb-thank-you-associate-name {

    color: #ffffff;

    font-family:
        "Poppins",
        "Montserrat",
        "Helvetica Neue",
        Arial,
        sans-serif;

    font-size: 18px;

    line-height: 1.25;

    font-weight: 600;

    margin-bottom: 3px;
}


.fyb-thank-you-associate-line {

    color: #ffffff;

    font-family:
        "Poppins",
        "Montserrat",
        "Helvetica Neue",
        Arial,
        sans-serif;

    font-size: 13px;

    line-height: 1.45;

    font-weight: 400;

    white-space: nowrap;
}