.has-services-hero{
    padding: 0 calc(var(--gutters) / 2);
}

.services-hero{
    display: flex;
    width: 100%;
    position: relative;
    height: 90vh;
}
.services-hero__bkg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.services-hero__bkg::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}
.services-hero__bkg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services-hero__content{
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 3rem;
    transform: translateY(-60px);
}
.services-hero__logo{
    width: 270px;
}
.services-hero__text{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
}
.services-hero__text h1, .services-hero__text p{
    color: var(--wp--preset--color--blanc)!important;
    margin: 0;
}
.services-hero__text h1{
    display: flex;
    width: 100%;
    justify-content: center;
}