.contact-confirmation {
    position: relative;
    margin-top: -98px !important;
}

@media screen and (min-width: 1024px) {
    .contact-confirmation {
        margin-top: -112px !important;
    }
}

.contact-confirmation::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(39, 45, 48, 0) 71.35%, #272D30 100%), linear-gradient(0deg, rgba(39, 45, 48, 0.88) 0%, rgba(39, 45, 48, 0.88) 100%);
    background-blend-mode: normal, normal, luminosity;
    z-index: -1;
}

.contact-confirmation--container {
    padding: 164px 16px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .contact-confirmation--container {
        padding: 164px 40px 64px;
    }
}

@media screen and (min-width: 1280px) {
    .contact-confirmation--container {
        padding: 222px 0 180px;
    }
}

.contact-confirmation--btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

@media screen and (min-width: 1024px) {
    .contact-confirmation--btn-container {
        flex-direction: row;
        gap: 48px;
    }
}

.contact-confirmation h1 {
    max-width: 940px;
}

.contact-confirmation p {
    max-width: 700px;
    margin-inline: auto;
}

.contact-confirmation .back-home {
    font-family: var(--bebas);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    display: flex;
    gap: 16px;
    align-items: center;
    transition: all .4s;
}

.contact-confirmation .back-home:hover {
    color: var(--yellow);
}

.contact-confirmation .back-home::before {
    content: '';
    width: 20px;
    height: 20px;
    -webkit-mask: url("../images/icon-home.svg") no-repeat center;
    mask: url("../images/icon-home.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: var(--yellow);
}