/*** thankyou css ***/
.thankyouImage {
    background: url(../images/thankyou.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 586px;
    display: flex;
    align-items: center;
    position: relative;
}

    .thankyouImage:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .thankyouImage .thankyouText {
        position: relative;
        width: 460px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        z-index: 2;
    }

        .thankyouImage .thankyouText h1 {
            font-size: 56px;
            line-height: 67px;
            color: #ffffff;
            margin: 0;
            font-weight: bold;
        }

        .thankyouImage .thankyouText p {
            font-size: 24px;
            line-height: 36px;
            color: #ffffff;
            margin: 0;
        }

        .thankyouImage .thankyouText a {
            padding: 16px;
            background: #ff7555;
            border-radius: 10px;
            text-align: center;
            font-size: 36px;
            line-height: 43px;
            color: #ffffff;
            font-weight: bold;
            width: 100%;
        }

        .thankyouImage .thankyouText > *:not(:first-child) {
            margin-top: 22px;
        }




