.thank-you-banner {
    background: url(/img/upsell/featureBox.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 30px 0 0;
    overflow: hidden;

    @media (max-width: 767.98px) {
        overflow: hidden;
        padding-top: 68px;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
    }

    .banner-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;

        @media (max-width: 767.98px) {
            flex-direction: column;
            gap: 24px;
        }
    }

    .thankyou-left {
        width: 50%;
        position: relative;

        @media (max-width: 767.98px) {
            width: 300px;
        }

        .thankyou-left-img {
            max-width: 700px;
            height: auto;
            flex-shrink: 0;
            position: absolute;
            top: 50%;
            left: 52%;
            transform: translate(-50%, -50%);

            @media (max-width: 767.98px) {
                max-width: 400px;
            }

            @media (min-width: 768px) and (max-width: 991.98px) {
                max-width: 464px;
            }

            @media (min-width: 992px) and (max-width: 1024px) {
                max-width: 576px;
            }

            @media (min-width: 1025px) and (max-width: 1350px) {
                max-width: 676px;
            }
        }

        .thankyou-left-content {
            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: center;
            position: relative;
            padding: 95px 64px 0;
            gap: 10px;

            @media (max-width: 767.98px) {
                padding: 52px 0 0;
                gap: 0;
            }

            @media (min-width: 768px) and (max-width: 1024px) {
                padding: 70px 55px 0;
                gap: 0;
            }

            img {
                width: 310px;
                height: auto;

                @media (max-width: 767.98px) {
                    width: 180px;
                }

                @media (min-width: 768px) and (max-width: 1024px) {
                    width: 200px;
                }
            }
            h3 {
                color: #231F20;
                text-align: center;
                font-size: 30px;
                font-style: normal;
                font-weight: 700;
                line-height: 30px;

                @media (max-width: 767.98px) {
                    font-size: 13px;
                    padding: 8px 0;
                    line-height: 15px;
                }

                @media (min-width: 768px) and (max-width: 1024px) {
                    font-size: 18px;
                    line-height: 20px;
                }

                @media (min-width: 1025px) and (max-width: 1350px) {
                    font-size: 28px;
                    padding: 10px 0;
                }
            }

            p {
                color: #231F20;
                text-align: center;
                font-family: "SF Pro Display";
                font-size: 18.814px;
                font-style: normal;
                font-weight: 400;
                line-height: 25.399px;
                /* 135% */

                @media (max-width: 767.98px) {
                    font-size: 12px;
                    line-height: 16px;
                }

                @media (min-width: 768px) and (max-width: 1024px) {
                    font-size: 14px;
                    line-height: 18px;
                }

                @media (min-width: 1025px) and (max-width: 1350px) {
                    font-size: 20px;
                    line-height: 26px;
                }
            }

            .signature {
                h2 {
                    color: #000;
                    text-align: center;
                    font-family: Allura;
                    font-size: 26.698px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 36.709px; /* 137.5% */
                    @media (min-width: 768px) and (max-width: 1024px) {
                        padding-top: 0;
                    }
                    @media (max-width: 767.98px) {
                        font-size: 23.698px;
                        line-height: 36.709px;
                        padding-top: 0;
                    }
                }

                p {
                    color: #000;
                    text-align: center;
                    font-family: "SF Pro Display";
                    font-size: 12.783px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 17.577px;
                    /* 137.5% */
                }
            }
        }
    }

    .thankyou-right {
        width: 50%;
        display: flex;

        @media (max-width: 640px) {
            width: 90%;
        }

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