.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;
}

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

.mentions>.presentation-title {
    margin-bottom: 2rem;
    color: var(--secondary-color);
    text-align: center;
    font-size: clamp(32px, 3vw, 60px);
}

.mentions>.presentation {
    font-size: clamp(14px, 3vw, 18px);
    color: var(--font-grey);
    text-align: justify;
}

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

    .mentions {
        width: 95%;
    }

    .hero>h1 {
        top: 70%;
    }

    .mentions {
        padding: 20px;
      }
}