/*HERO debut */
.hero {
    height: calc(110svh - 30px);
    width: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: flex-end;
    padding-left: 80px !important;
    padding-right: 80px !important;
    padding-bottom: 120px !important;
    position: relative;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.649);
    z-index: 0;
}

.hero h1 {
    position: relative;
    z-index: 1;
    padding-bottom: 150px;
    width: 70%;
}

.intro.page {
    margin-top: -150px !important;
    padding-bottom: 0px !important;
}

/*contact*/ 
.fiche {
    position: relative;
    color: white !important;
    z-index: 1;
    padding-bottom: 150px !important;
}

.fiche .icone  {
    gap: 20px !important;
    text-align: center;
}

.fiche .icone  a {
    color: white ;
    transition: color 0.3s;
}

.fiche .icone a:hover  {
    color: var(--wp--preset--color--primaire);
}


@media (max-width: 1024px) {

    .hero {
        display: flex;
        flex-direction:column-reverse;
        align-items: start;
    }

    .fiche {
        padding-bottom: 40px !important;
    }
    .fiche .icone .bot {
        display: flex;
        flex-direction: row !important;
    }

    .fiche .icone {
        align-items: start;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-left: 40px !important;
        padding-right: 40px !important;
        padding-bottom: 150px !important;
    }

}

@media (max-width: 640px) {
    .hero {
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-bottom: 100px !important;
    }

    .hero h1 {
        width: 100%;
    }

}

@media not all and (min-width: 501px) {

}