/* 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) calc(4 * var(--space-xxxl) + 1px) 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;
}

/* Intro */

.materials {
    width: 100%;

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

    padding: var(--space-xxxl);
}

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

/* Gallery */

.gallery {
    width: 100%;

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

.gallery__media-wrapper {
    width: calc(100% / 3 - (2 * var(--space-m) / 3));

    display: flex;

    position: relative;
}

.gallery__media {
    width: 100%;
    height: 100%;
}

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

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

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

    .fold__body {
        width: 100%;
    }

    /* Quality */

    .gallery {
        flex-direction: column;
    }

    .gallery__media-wrapper--01,
    .gallery__right {
        width: 100%;
    }
}

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