.home_title{
    position: relative;
    margin-top: 50px;
    min-height: 100vh;
}
.home_title .home_title_cont{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    position: relative;
}
.home_title .home_title_cont h1{
    background-color: #ffffff;
    margin: 0;
    text-align: center;
    max-width: 1350px; 
    font-size: 80px;
}
.home_title .home_title_cont > svg {
    position: absolute;
    top: 0;
    left: 38%; /* 50% avant animation js */
    right: 0;
    z-index: -1;
    transform: translateX(-50%);
    height: 100%;
}

.home_title .icon_scroll{
    display: block;
    text-align: center;
    margin-top: 15px;
}

/* Mobile */
@media (max-width: 768px) {
    .home_title .home_title_cont h1{
        font-size: 35px;
    }
    .home_title .home_title_cont > svg {
        left: 10%; 
    }
}