.contacts.page section {
    padding: 0;
    margin: 10rem 0;
}

body .contacts .title-1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    line-height: 48px;
}

body .contacts .title-2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    line-height: 48px;
}

body .contacts .title-3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    line-height: 32px;
}

@media (max-width: 768px) {
    body .contacts .title-1 {
        font-size: 28px;
        line-height: 40px;
    }

    body .contacts .title-2 {
        font-size: 20px;
        line-height: 32px;
    }
}

@media(max-width: 560px) {
    .contacts.page .container {
        padding: 0 12px;
    }

    .contacts.page section {
        margin: 4rem 0;
    }
}

/* CONTACT FORM */
form .frm_form_fields  .frm_fields_container .frm_primary_label {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
}

form .frm_form_fields  .frm_fields_container {
    grid-gap: 0 24px;
}

form .frm_form_fields  .frm_fields_container .frm_form_field {
    margin-bottom: 32px;
}

form .frm_form_fields  .frm_fields_container input {
    height: 60px;
}

form .frm_form_fields  .frm_fields_container textarea {
    margin-top: 0;
}

form .frm_form_fields  .frm_fields_container input,
form .frm_form_fields  .frm_fields_container textarea {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 18px 16px;
}

form .frm_form_fields  .frm_fields_container button.frm_button_submit {
    background: #248700;
    border-color: #248700;
    border-radius: 63px;
    padding: 8px 16px;
    min-width: 160px;

    font-size: 18px;
    line-height: 32px;
    color: #fff;
    text-transform: none;
}

form .frm_form_fields  .frm_fields_container .frm_submit {
    text-align: center;
}

form .frm_form_fields  .frm_fields_container .frm_button_submit:hover {
    background: #E0E0E0;
    color: #333;
    text-decoration: none;
}

.contact-us .frm_forms .frm_message,
.contact-us .frm_forms .frm_error_style {
    box-shadow: 0 24px 24px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    position: relative;
    padding-left: 50px;
}

.contact-us .frm_forms .frm_message {
    background: #E7F8F0;
    border: 1px solid #12B76A;
}

.contact-us .frm_forms .frm_message::before {
    content: url(../../images/Circle_Check.svg);
    position: absolute;
    top: 4px;
    left: 15px;
    bottom: 0;
    display: flex;
    align-items: center;
}

.contact-us .frm_forms .frm_message p {
    margin: 0;
}

.contact-us {
    position: relative;
}

.contact-us .image {
    position: absolute;
    width: 50%;
    padding-right: 32px;
}

.contact-us .image .mobile {
    display: none;
}

.contact-us-content {
    min-height: 520px;
}

.contact-us-content .title-1 {
    margin-bottom: 16px;
}

.contact-us-content .description {
    margin-bottom: 32px;
}

.contact-us-content .description * {
    font-size: 20px;
    line-height: 32px;
}

@media (max-width: 992px) {
    .contact-us .image {
        position: static;
        padding: 0;
        display: flex;
        justify-content: flex-end;
        width: 100%;
        margin-bottom: 32px;
    }

    .contact-us .image .mobile {
        display: block;
        width: 500px;
    }

    .contact-us .image .desktop {
        display: none;
    }

    .contact-us-content {
        min-height: none;
    }
}

@media (max-width: 560px) {
    .contact-us .image .mobile {
        width: auto;
    }
}

/* FAQ BLOCK */
.faq {

}

.faq .title-2 {
    margin-bottom: 40px;
}

.faq .faq-item {
    position: relative;
    padding: 32px 24px;
    margin-bottom: 16px;
    border: 1px solid #E0E0E0;
    border-radius: 16px;
    transition: 300ms all linear;
}

.faq .faq-item .question {
    padding-right: 60px;
}

.faq .faq-item .answer {
    display: none;
    opacity: 0;
    margin-top: 30px;
    padding-top: 32px;
    border-top: 1px dashed #BBDAB0;
    transition: 300ms opacity linear;
}

.faq .faq-item .open-close {
    position: absolute;
    width: 48px;
    height: 48px;
    background-image: url("../../images/faq-closed.svg");
    top: 24px;
    right: 24px;
    cursor: pointer;
    z-index: 1;
}

.faq .faq-item.open {
    margin-bottom: 32px;
    box-shadow: 0 24px 24px rgba(0, 0, 0, 0.05);
}

.faq .faq-item.open .answer {
    opacity: 1;
}

.faq .faq-item.open .open-close {
    background-image: url("../../images/faq-open.svg");
}

@media (max-width: 768px) {
    .faq .title-2 {
        margin-bottom: 16px;
    }

    .faq .faq-item {
        padding: 16px;
    }
}