/* Thank you page */
.grid--thankyou-page {
    grid-template-areas:
        '. G_TYC G_TYC G_TYC G_TYC G_TYC G_TYC G_TYC G_TYC G_TYC G_TYC .';
    padding: 0;
}

.thankyou__content {
    grid-area: G_TYC;
    padding: 1rem 0 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thankyou__content .banner-image {
    width: 400px;
    aspect-ratio: 1;
    padding-bottom: 2rem;
}

.thankyou__content .title {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: bold;
    width: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
}

.thankyou__content .desc {
    font-size: 1.25rem;
    line-height: 1.3;
    width: 100%;
    text-align: center;
    margin-bottom: .5rem;
}

.thankyou__content .btn-blue {
    margin-top: 2rem;
    padding: 1.25rem 6rem;
    background-color: var(--color-primary-1);
    font-size: 1.125rem;
    line-height: 1.3;
    font-weight: bold;
    justify-content: center;
}

/* Start -> Media Queries */

/* -- For Mobile -- */
@media screen and (max-width: 480px) {

    /* Thank you page */
    .thankyou__content .banner-image {
        width: 100%;
    }

    .thankyou__content .title {
        font-size: 1.7rem;
    }

    .thankyou__content .btn-blue {
        padding: 1.25rem 0rem;
        width: 100%;
    }
}

/* -- For iPad / Tablets -- */
@media screen and (min-width: 481px) and (max-width: 768px) {

    .thankyou__content .banner-image {
        width: 80%;
    }

    .thankyou__content .btn-blue {
        padding: 1.25rem 5rem;
    }

}

/* -- For Mobile / iPad / Tablets -- */
@media screen and (max-width: 768px) {

    /* Thank you page */
    .grid--thankyou-page {
        grid-template-areas:
            'G_TYC';
    }


}

/* -- For Small Screen / Laptops / Desktops -- */
@media screen and (min-width: 769px) and (max-width: 1150px) {



}

/* -- For Large Screen / Mac -- */
@media screen and (min-width: 1151px) and (max-width: 1440px) {


}