/* ________ HERO __________ */

.title-page{
    position: relative;
    height: 285px;
    overflow: hidden;
    margin-bottom: 40px;
}

.background-title-page{
    position: absolute;
    width: 570px;
    height: 570px;
    content: "";
    border-radius: 285px;
    background-color: var(--main-color-4);
    top : -285px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
    -webkit-transform-origin: center;
    transform-origin: center;
}

.title-page-position{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 285px;
    padding-top: 50px;
}

/* _________ MEDIA QUERIES ___________ */

@media (max-width: 768px){
    .title-page{
        height: 250px;
    }
    
    .title-page-position{
        height: 250px;
    }

    .background-title-page{
        width: 400px;
        height: 400px;
        border-radius: 200px;
        top : -200px;
    }
}

@media (max-width: 576px){
    .title-page{
        height: 200px;
    }
    
    .title-page-position{
        height: 200px;
    }

    .background-title-page{
        width: 300px;
        height: 300px;
        border-radius: 150px;
        top : -150px;
    }
}