/* Fold */

.fold {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc(2 * var(--space-xxxl));

    padding: calc(2 * var(--space-xxxl)) var(--space-xxxl);

    position: relative;
}

.fold__img-wrapper {
    width: 100%;
    height: 100%;

    display: flex;

    position: absolute;

    top: 0;
    left: 0;
}

.fold__img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.fold__body {
    width: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-m);

    position: relative;

    z-index: 2;
}

.fold__heading-line {
    text-align: center;
}

/* Contacts */

.contacts {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: var(--space-m);

    /* padding: calc(2 * var(--space-xxxl)) var(--space-xxxl) var(--space-xxxl) var(--space-xxxl); */
    padding: var(--space-xxxl);
}

.contacts__body {
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
}

.contacts__wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
}

.contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.contact__name-group {
    display: flex;
    align-items: center;
    gap: var(--space-m);
}

.contact__name-group > .c-decorated-dash  {
    width: calc(4 * var(--space-xs));
}

/* Form */

.form {
    padding: var(--space-xxxl);
}

.contact__form {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: var(--space-m);
}

.contact__form > .c-field-wrapper {
    width: 100%;
}

.contact-btn__label {
    width: 100%;

    justify-content: center;
}

@media (max-width: 1280px) {
    /* Contacts */

    .contacts__wrapper {
        flex-direction: column;
    }

    .contact {
        width: max-content;
    }
}

@media (max-width: 1024px) {
    
}

@media (max-width: 768px) {
    /* Fold */

    .fold__body {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Contacts */
    
    .contact > .c-subheading {
        font-size: var(--font-size-m);
    }
}