.hero {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero>img {
    width: 100%;
    max-height: 100vh;
    object-fit: cover
}

.hero>h1 {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-family-Poppins-bold);
    font-size: clamp(30px, 3vw, 80px);
    color: var(--ash);
    text-transform: uppercase;
}

.apropos {
    margin: 2.5rem auto;
    padding: 40px;
    background-color: var(--tertiary-color);
    border-radius: 35px;
    max-width: 1700px;
}

.apropos>.presentation-title {
    margin-bottom: 2rem;
    color: var(--secondary-color);
    text-align: center;
    font-size: clamp(30px, 2vw, 50px);
}

.apropos>.presentation {
    max-width: 1175px;
    margin: auto;
    text-align: center;
    font-size: clamp(15px, 2vw, 20px);
    color: var(--font-grey);
    margin-bottom: 2rem;
}

@media screen and (max-width: 1200px) {
    .hero {
        padding-top: 72px;
    }

    .apropos {
        width: 95%;
    }

    .hero>h1 {
        top: 67%;
    }
}