.page-template-contact {
    color: #000;
    background: #fff;
}

.page-template-contact .site_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
}

.header_logotype {
    text-align: center;
}

.header_logotype img {
    max-width: 120px;
    width: 100%;
    height: 80px;
    object-fit: contain;
    margin: 0 auto;
}

.container {
    max-width: 930px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.page_contact {
    margin-top: 85px;
    padding-top: 56px;
    padding-bottom: 40px;
}

.headline {
    text-align: center;
}

.headline__title {
    margin-bottom: 12px;
    font-size: 25px;
    line-height: 1.8;
    text-transform: uppercase;
}

.headline__address {
    font-size: 15px;
}

.form_block {
    padding-top: 36px;
}

.form_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form_row .col-6,
.form_row .col-12 {
    width: 100%;
}

.field_item {
    margin-bottom: 17px;
}

.field_item label {
    width: 100%;
    display: block;
    margin-bottom: 7px;
    font-size: 11px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.field_item.required label::after {
    content: "*";
    margin-left: 4px;
    color: #e80000;
}

.field_item .wpcf7-not-valid-tip {
    display: block !important;
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 1.1px;
    color: rgb(181, 74, 74);
}

.field_item input,
.field_item select,
.field_item textarea {
    width: 100%;
    appearance: none;
    border: 1px solid #E1E1E1;
    padding: 16px 10px 16px 15px;
    font-size: 14px;
}

.field_item input:focus-visible,
.field_item select:focus-visible,
.field_item textarea:focus-visible {
    border-color: #000;
    box-shadow: none;
    outline: none;
}

.field_item textarea {
    height: 100px;
}

.checkbox_item {
    width: 100%;
}

.checkbox_item .wpcf7-list-item {
    margin: 0;
    min-height: 30px;
}

.checkbox_item label {
    position: relative;
    cursor: pointer;
}

.checkbox_item label input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.checkbox_item label span {
    position: relative;
    padding-left: 40px;
    font-size: 15px;
    letter-spacing: 0.2px;
}

.checkbox_item label span::before {
    content: "";
    position: absolute;
    top: -6px;
    left: -1px;
    width: 28px;
    height: 28px;
    border: 1px solid #E1E1E1;
    margin-right: 10px;
}

.checkbox_item label span::after {
    content: "";
    position: absolute;
    left: 10px;
    top: -3px;
    width: 8px;
    height: 18px;
    border: solid #000;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
    transition: 0.3s all;
    opacity: 0;
    visibility: hidden;
}

.checkbox_item label input:checked ~ span::after {
    opacity: 1;
    visibility: visible;
}

.btn_box {
    width: 100%;
    padding-top: 13px;
    text-align: center;
}

.form_block .wpcf7-response-output,
.btn_box .wpcf7-spinner {
    display: none !important;
}

.form_block .wpcf7 form.sent .wpcf7-response-output {
    display: block !important;
    text-align: center;
    font-size: 16px;
    color: #46b450;
    border: 0;
}

.btn_box .wpcf7-submit {
    padding: 0 0 9px;
    font-size: 15px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    border: 0;
    border-bottom: 1px solid #000;
    background: transparent;
    cursor: pointer;
}

.fade-in-up {
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 0s;
    animation-timing-function: ease-out;
    animation-name: fade-in-up-ks;
}

@keyframes fade-in-up-ks {
    0% {
        opacity: 0;
        transform: translate3d(0, 100px, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (min-width: 992px) {
    .page_contact {
        padding-top: 115px;
    }

    .headline__title {
        margin-bottom: 29px;
    }

    .form_block {
        padding-top: 62px;
    }

    .form_row .col-6 {
        width: 48%;
    }
}
