section {
    padding: 120px 80px 80px 80px;
    /* max-width: 90%; */
    margin: 0 auto;
}

section>h1 {
    font-size: var(--fz-40);
    font-weight: var(--fw-light);
    letter-spacing: 0.024em;
    margin-bottom: 40px;
}

section>h1 span {
    display: block;
    font-family: var(--libre-bodoni-font);
    font-size: var(--fz-50);
    font-weight: var(--fw-regular);
    letter-spacing: 0.024em;
}

p {
    font-weight: var(--fw-light);
    letter-spacing: 0.024em;
    font-size: var(--fz-25);
    max-width: 700px;
    line-height: 150%;
}

section>p:first-of-type {
    margin-bottom: 20px;
}

section>p:last-of-type {
    margin-bottom: 60px;
}

section>p span {
    font-weight: var(--fw-regular);
}

/* COLLECTION */
.container-collection {
    display: flex;
    flex-direction: column;
    padding: 0px 80px 80px 80px;
    gap: 80px;
}

.collection {
    width: 100%;
    display: flex;
    gap: 60px;
}

.collection:nth-of-type(2) .img-collection {
    order: 2;
}

.collection:nth-of-type(2) .collection-description {
    order: 1;
}

.collection .img-collection {
    width: 50%;
    overflow: hidden;
}

.collection-description {
    width: 50%;
    padding: 40px 0;
}

.collection .img-collection img {
    width: 100%;
    height: 100%;
    /* min-height: 1000px; */
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection .img-collection img:hover {
    transform: scale(1.02);
}

.collection-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.collection h2 {
    font-size: var(--fz-40);
    font-weight: var(--fw-medium);
    font-family: var(--libre-bodoni-font);
    letter-spacing: 0.024em;
}

.collection a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    width: 237px;
    height: 56px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-size: var(--fz-16);
    letter-spacing: 0.024em;
    font-weight: var(--fw-regular);
}

.collection a:hover {
    background: #111;
}

/* END COLLECTION */
@media(max-width: 1500px) {
    section {
        padding: 120px 40px;
        max-width: unset;
    }

    .container-collection {
        padding: 0px 40px 40px 40px;
    }
}

@media(max-width: 1000px) {
    section {
        padding: 120px 40px 40px 40px;
        max-width: unset;
    }

    section>h1 {
        font-size: var(--fz-30);

    }

    section>h1 span {
        font-size: var(--fz-40);
    }

    p {
        font-size: var(--fz-20);
    }
}

@media(max-width: 770px) {
    section {
        padding: 100px 20px 40px 20px;
    }


    .container-collection {
        padding: 0 0 40px 0;
    }


    .collection {
        flex-direction: column;
    }

    .collection:nth-of-type(2) .img-collection {
        order: 1;
    }

    .collection:nth-of-type(2) .collection-description {
        order: 2;
    }

    .collection .img-collection,
    .collection-description {
        width: 100%;
    }

    .collection-description {
        padding: 0 20px;

    }

    .collection:nth-of-type(2) .img-collection {
        order: 1;
    }

    .collection:nth-of-type(2) .collection-description {
        order: 2;
    }
}