#title-hero{
    width: 100%;
    height: 50vh;
    background: url(../images/bg-cta.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.overlay{
    border-image-source: linear-gradient(rgba(0, 174, 235, 0.7), rgba(0, 174, 235, 0.7));
    border-image-slice: fill 1;
}
.header-text{
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.header-text h1{
    font-size: 5rem !important;
    font-family:'Poppins paragraph' !important;
    font-weight: 400;
    color: #fff;
    
}
@media screen and (max-width: 420px){
    #title-hero{
        height: 30vh;
    }
    .header-text{
        height: 30vh;
    }
    .header-text h1{
        font-size: 3.5rem !important;
        
    }
}