
.contactForm-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 0;
    
}
.contactForm-wrapper::before {
    content: '';
    background-image: var(--mobilefirst-bg-image);
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-color: var(--main-bg-color);
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.5;
}

#contactForm {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (min-width: 410px) {
.contactForm-wrapper {

 
}
}
@media (min-width: 500px) {
    .contactForm-wrapper {
    background-color: var(--main-bg-color);
    }
}

@media (min-width: 769px) {
.contactForm-wrapper::before {
    background-image: var(--tablet-bg-image);
}
}
@media (min-width: 955px) {
.contactForm-wrapper::before {
        background-image: var(--desktop-bg-image);
    }
}
@media (min-width: 1010px) {
 .contactForm-wrapper {
margin-top: 16rem;
}
}

@media (min-width: 1500px) {
 .contactForm-wrapper {
padding-bottom: 6em;
}
}
@media (min-width: 1800px) {
    .contactForm-wrapper {
        padding-bottom: 9em;
        padding-top: 3em;
        flex-grow: 1;
    }
}

@media (min-height: 1200px) {
    .contactForm-wrapper {
        padding-bottom: 11em;
    }
}