/* GLOBAL */

body {
    font-family: "ClashDisplay", sans-serif;
    font-size: 16px;
    line-height: 18px;
}


/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 80px;

    position: sticky;
    top: 0;
    z-index: 10;
    background: white;
}

header img {
    width: 166px;
    height: 58px;
}

header nav ul {
    list-style: none;
}

.section.section--main {
    position: relative;
}

/* SECTION - SECTION MAIN */
.section.section--main img {
    width: 100%;
    height: calc(100vh - 118px);
    object-fit: cover;
}

.section.section--main .section__text {
    position: absolute;
    left: 80px;
    bottom: 80px;
    color: #FFFFFF;
    width: 27%;
    min-width: 338px;
}

.section.section--main .section__text h1 {
    font-family: 'Black Mango';
    font-weight: 300;
    font-size: 65px;
    line-height: 58px;
}

.section__text h2 {
    font-family: 'Clash Display';
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 28px;

    margin: 1em 0;
}

/* SECTION - SECTION INFORMATION */
/* SECTION - SECTION CONTACT */
.section.section--information,
.section.section--contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px;
}

.section.section--information h2,
.section.section--contact h2 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 57px;
    text-align: center;

    color: #17332B;

    margin-bottom: 1em;
}

.section.section--information p,
.section.section--contact p {
    font-size: 20px;
    line-height: 25px;
    color: rgba(0, 0, 0, 0.55);
    margin: 2em 0;
    text-align: center;
}

.section.section--information ul,
.section.section--contact ul {
    display: flex;
    gap: 8px;
}

.section.section--information ul li,
.section.section--contact ul li {
    padding: 12px 16px;
    border-radius: 12px;

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

    text-align: center;
}

.section.section--information ul li:first-child,
.section.section--contact ul li:first-child {
    color: #FFFFFF;
    background: #AD1923;
}

.section.section--information ul li:last-child,
.section.section--contact ul li:last-child {
    border: 2px solid rgba(0, 0, 0, 0.15);
    color: #AD1923;
}

/* SECTION - SECTION DESCRIPTION */
/* SECTION - SECTION EXPERIENCE */
.section.section--content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 40px;
}

.section.section--content img,
.section.section--content .section__text {
    max-width: 640px;
    width: 100%;
    padding: 40px;
    color: #FFFFFF;
}

.section.section--content .section__text p {
    margin: 1em 0;
}

.section.section--content .section__text img {
    width: 51px;
    margin: 2em auto 0;
    padding: 0;
}

.section.section--content .section__text ul {
    width: 100%;
    list-style: circle;
    margin-top: 1em;
    margin-left: 1em;
}

.section.section--description {
    background: #AD1923;
}

.section.section--experience {
    background: #17332B;
    flex-direction: row-reverse;
}

/* FOOTER */
footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 80px;
    padding-top: 40px;
}

footer p {
    font-family: 'Clash Display';
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 21px;
    text-align: center;

    color: #17332B;
}

footer p:first-of-type {
    margin-top: 40px;
}

footer .footer__ecofast {
    max-width: 341px;
    width: 100%;
    margin-top: 2em;
}

footer .footer__cupae {
    max-width: 561px;
    width: 100%;
    margin: 4em;
}

footer .footer__instagram {
    max-width: 53px;
    width: 100%;
    margin: 1em;
}

/* MEDIA QUERY */
@media screen and (max-width: 1100px) {
    .section.section--content {
        flex-direction: column !important;
    }

    .section.section--content img,
    .section.section--content .section__text {
        padding: 0;
    }
}

@media screen and (max-width: 498px) {
    header {
        padding: 30px 40px;
    }

    .section.section--main img {
        min-height: 500px;
    }

    .section.section--main .section__text h1 {
        font-size: 55px;
        line-height: 48px;
    }

    .section.section--main .section__text {
        position: absolute;
        left: 40px;
        bottom: 60px;
        min-width: auto;
        width: calc(100% - 80px);
    }

    .section.section--information,
    .section.section--contact {
        padding: 60px 40px;
    }

    .section.section--information h2,
    .section.section--contact h2 {
        font-size: 30px;
        line-height: 37px;
        width: 100%;
    }

    .section.section--information ul,
    .section.section--contact ul {
        flex-direction: column;
    }

    footer {
        padding: 40px;
    }

}

@media screen and (max-width: 375px) {
    .section.section--main .section__text h1 {
        font-size: 45px;
        line-height: 38px;
    }

    .section__text h2 {
        font-size: 18px;
        line-height: 22px;
    }
}