.contact-wrapper {
    text-align: center;
    position: relative;
    padding: 0;
}

.contact-btn {
    display: inline-block;
    margin: auto auto 0;
}

.contact-form-block-wrapper {
    padding: 100px 0;
    background-repeat: no-repeat;
    background-position: 0 90%;
    width: 100%;
    background-size: cover;
    overflow: hidden;
}

.contact-form-wrapper {
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    max-width: 720px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-radius: 25px;
}

.contact-form-wrapper:before {
    /*content: "";*/
    /*background: var(--blue);*/
    /*width: 125%;*/
    /*aspect-ratio: 1 / 1;*/
    /*display: block;*/
    /*position: absolute;*/
    /*transform: translate(-50%, -50%);*/
    /*top: 50%;*/
    /*left: 50%;*/
    /*z-index: 1;*/
    /*border-radius: 800px;*/
    /*opacity: .5;*/
}

.contact-form-wrapper .wpcf7 {
    z-index: 9;
}

.contact-form-info-block {
    width: 49%;
    text-align: left;
    padding: 0 20px;
    font-size: 1.2rem;
}

.contact-form-info-block h2 {
    margin: 0;
    font-size: 3rem;
    line-height: 3.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-form-info-block h3 {
    margin: 20px 0;
    font-size: 2.5rem;
    line-height: 3rem;
    font-weight: 500;
}

.email-info-block {
    margin: 20px 0;
    color: var(--black);
    text-decoration: none;
    font-size: 1rem;
}

.email-info-block a {
    text-decoration: none;
}

.email-info-block svg {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.contact-form-info-block p {
    margin: 20px 0;
}

.contact-social-media-block {
    margin-top: 10px;
}

.contact-social-media-link {
    width: 30px;
    height: 30px;
    display: inline-block;
}

.contact-social-media-link {
    margin-right: 4px;
}

.contact-social-media-link:last-child {
    margin-right: 0;
}

.contact-social-media-link svg {
    width: 30px;
    height: 30px;
}

.contact-form-wrapper .wpcf7 {
    width: 49%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 13px;
    text-align: left;
}

.contact-form p {
    margin: 0;
}

.contact-form label {
    text-align: left;
}

.contact-form input[type="text"], .contact-form select,
.contact-form input[type="email"], .contact-form input[type="tel"] {
    padding: 24px;
    height: 31px;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    font-size: 1.1rem;
}

.contact-form .wpcf7-acceptance span {
    text-align: left;
    margin: 0;
}

.contact-form .wpcf7-acceptance label {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-form .wpcf7-acceptance label a {
    text-decoration: none;
}

.contact-form .wpcf7-acceptance input[type="checkbox"] {
    background: rgba(255, 255, 255, 0.7);
    opacity: 0.7;
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.contact-form .button {
    width: 100%;
}

.contact-form .wpcf7-spinner {
    display: none;
}

.wpcf7 form.contact-form .wpcf7-response-output {
    margin-top: 10px;
}

.wpcf7 form.contact-form.invalid .wpcf7-response-output {
    color: red;
    border-color: red;
}

.wpcf7 form.contact-form.sent .wpcf7-response-output {
    color: #46b450;
    border-color: #46b450;
}

@media (max-width: 800px) {

    .contact-form-block-wrapper {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        width: 90%;
    }

    .vacancies {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 750px) {
    .contact-form-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .contact-form-info-block {
        width: 100%;
        text-align: center;
    }

    .email-info-block {
        justify-content: center;
    }

    .contact-form-wrapper .wpcf7 {
        width: 100%;
    }
}

@media (max-width: 500px) {

    .vacancies {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .vacancies-wrapper h2 {
        font-size: 2rem;
        line-height: 2rem;
    }
}

