.title-section{
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: var(--primaryColor);
}
.title-section .container{
    color: #fff;
    font-family: 'Poppins';
    text-align: center;
    font-size: 25px;
    width: 1400px;
    padding: 10px;
    font-weight: 700;
}
@media screen and (max-width: 767px){
    .title-section .container{
        font-size: 15px;
    }
}