/* 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__wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-m);
}

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

/* Products */

.products {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);

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

/* CTA */

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

.cta__wrapper {
    background-image: url("../../assets/media/pages/home/cta.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;

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

    position: relative;
}

.cta__body {
    width: 50%;

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

    position: relative;

    z-index: 2;
}

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

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

@media (max-width: 768px) {
    /* Fold */
    
    .fold__body {
        width: 100%;
    }
}

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