.contact-container  .wrapper {
    position: relative;
    max-width: 920px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-container .contact-media {
    width: 100%;
    position: relative;
}

.contact-container .contact-hero {
    width: 100%;
    display: block;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0px 6px 12px rgba(0,0,0,0.15);
}

.contact-container .contact-form {
    width: 100%;
    max-width: 100%;
    padding: 57px 55px 63px 55px;
    margin-top: -90px;
    position: relative;
    background-color: white;
    border-radius: 20px;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    -moz-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    z-index: 1;
}

.contact-container .border {
    border-bottom: solid 2px #A1AB96;
}

.contact-container .contact-title {
    display: flex;
    justify-content: center;
    margin-top: 74px;
}

.contact-container .contact-title h2 {
    font-family: "Valky";
    font-weight: 400;
    color: #A1AB96;
    font-size: 56px;
    font-weight: 400;
}

.contact-container .contact-info {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-top: 33px;
}
.contact-container .contact-info > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
}
.contact-container .contact-info img {
    width: 30px;
    height: 30px;
}
.contact-container .contact-info p {
    font-size: 24px;
    line-height: 31px;
    color: #A1AB96;
}


/* Form */
.contact-container .wpcf7-form {
    width: 100%;
}
.contact-container .wpcf7-form p:last-of-type {
    display: flex;
}
.contact-container .wpcf7-form-control-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 23px;
}
.contact-container .wpcf7-form-control:not(.wpcf7-radio) {
    width: 100%;
    height: 56px;
    border: 1px solid #D0D0D0;
    padding: 17px 24px;
    color: #808080;
    font-size: 16px;
    line-height: 24px;
}
.contact-container .wpcf7-form-control:focus {
    outline-color: #A1AB96;
}
.contact-container .wpcf7-form-control::placeholder {
    color: #808080;
}

/* List items (Checkboxes and radiobuttons) */
.contact-container .wpcf7-form-control.wpcf7-radio {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    margin-bottom: 25px;
    padding-top: 11px;
}
.contact-container .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
    margin: 0;
}
.contact-container .wpcf7-form-control.wpcf7-radio .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-container .wpcf7-form-control input[type="radio"] {
    background-color: unset;
    appearance: unset;
    margin: 0;
    padding: 0;
    border: none;
}
.contact-container .wpcf7-form-control input[type="radio"]::before {
    display: inline-block;
    content: "";
    width: 22px;
    height: 22px;
    border: 1px solid #D0D0D0;
}

.contact-container .wpcf7-form-control input[type="radio"]:checked::before {
    background-color: #A1AB96;
}

.contact-container #form_hidden_input {
    display: none;
}

.contact-container .wpcf7-form-control p {
    margin-top: 20px;
    font-weight: bold;
}

.contact-container .wpcf7 {
    display: flex;
    justify-content: center;
    margin-top: 33px;
}

.contact-container .wpcf7-textarea {
    height: 259px;
}

.contact-container .wpcf7-textarea span {
    padding-top: 10px;
    font-size: 16px;
}

.contact-container label {
    font-weight: 700;
    color: #484848;
    font-size: 16px;
    line-height: 20px;
}

.contact-container .wpcf7-submit {
    border-radius: 20px !important;
    background-color: #A1AB96 !important;
    border: none !important;
    color: white !important;
    font-size: 20px !important;
    font-weight: 200 !important;
    width: 283px !important;
    left: 50% !important;
    margin: 0 auto !important;
}

@media screen and (max-width: 1180px) and (orientation: portrait), screen and ( max-width: 1024px) {

    .contact-container .wrapper {
        justify-content: center;
    }

    .contact-container .contact-form {
        padding: 35px 30px 30px 30px;
        margin-top: -60px;
        -webkit-box-shadow: 0px 6px 12px 0px rgba(0,0,0,0.16);
        -moz-box-shadow: 0px 6px 12px 0px rgba(0,0,0,0.16);
        box-shadow: 0px 6px 12px 0px rgba(0,0,0,0.16);
        z-index: 1;
    }

    .contact-container .contact-logo {
        width: 83px;
        transform: translate(-50%, -60%);
    }

    .contact-container .contact-title {
        margin-top: 40px;
    }
    .contact-container .contact-title h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .contact-container .contact-info {
        display: none;
    }

    .contact-container .wpcf7 {
        margin-top: 17px;
    }

}

@media screen and (max-width: 767px) {

}