html {
    background-color: #fff !important;
}

.header .header-wrapper .header-main .header-inner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.thank-you-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: auto;
    min-height: calc(100vh - 74px);
}

.thank-you-page-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 310px;
    flex: 0 0 310px;
    max-width: 100%;
    text-align: center;
    color: #011c33;
}

.thank-you-page-content img {
    width: 120px;
    height: 120px;
    margin-bottom: 40px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.thank-you-page-content .thank-you-title {
    margin-bottom: 20px;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.5;
}

.thank-you-page-content .thank-you-title span{
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.thank-you-page-content .thank-you-description {
    margin-bottom: 60px;
    font-size: 16px;
    font-weight: 400;
}

.thank-you-page-content a {
    padding: 10px 15px;
    border-radius: 22px;
    background-color: #011c33;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s ease-in;
}

.thank-you-page-content a:hover{
    color: #fff;
    opacity: 0.8;
}

