/* OVERLAY */
.hero__overlay {
    bottom: 0%;
    transform: translate(-50%, 30%);
}

.hero__image {
    height: 15rem;
}

@media (min-width: 450px) {
   .hero__overlay {
        bottom: 0%;
        transform: translate(-50%, 48%);
    }  

    .hero__image {
        height: 25.63rem;
    }
}

@media (min-width: 1024px) {
   .hero__overlay {
        bottom: 0%;
        transform: translate(-50%, -28%);
    }  
    .hero__image img {
        object-position: 50% 17%;
    }
}

/* SECTION INFOS */
.section-contact-infos.section__padding {
    padding-block: 5rem; 
}

.section-contact-infos h2 {
    text-align: center;
}
.section-contact-infos h2::after{
    display: none;
}

.section-contact-infos__email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-contact-infos__email img {
    width: 3.125rem;
    height: auto;
}

.section-contact-infos__email a {
    text-decoration: underline;
    font-weight: 700;
    color: var(--focale);
    transition: all 0.3s ease-in-out;
}

.section-contact-infos__email a:hover {
    filter: brightness(75%);
}

.section-contact-infos__description {
    text-align: center;
    padding-top: 1rem;
}

@media (min-width:450px) {
    .section-contact-infos {
        height: 100vh;
    }
    .section-contact-infos.section__padding {
        padding-block: 0; 
    }
    .section-contact-infos .container {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-bottom: 0;
    }
}

