.thanks_bg {
    height: 80vh;
    background-image: url("../images/thanks_bg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.thanks_bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.8;
}
.thanks_bg > * {
    position: relative;
    z-index: 1;
}

.thanks_bg img {
    height: 200px;
}
.thanks_bg h1 {
    font-size: 40px;
    font-weight: 500;
    color: var(--secondary);
    text-transform: uppercase;
    line-height: 1;
}
.thanks_bg p {
    font-size: 24px;
    color: var(--light);
}
.thanks_bg h6 {
    font-size: 18px;
    padding: 10px 0px;
    background-color: var(--light);
    text-transform: capitalize;
    letter-spacing: 6px;
}
.thanks_bg h5 {
    font-size: 20px;
    color: var(--light);
    text-transform: capitalize;
}
.thanks_bg a {
    color: var(--secondary);
    font-size: 22px;
}
