/*---------------title-----------------*/
.title-section{
    position: relative;
    z-index: 10;
}
.title-section{

}
.title-section::before{
    position: absolute;
    content: "";
    top:-50px;
    left:-20px;
    width: 70px;
    height: 140px;
    border-radius: 50%;
    background: var(--main-color-orange);
    z-index: -10;
    transform: rotate(50deg);
}
.title-section h2{
    margin: 0 0 -16px;
    font-size: 4rem;
    color: var(--text-color-black);
}
.title-section p{
    margin: 0;
    padding: 10px 0 30px;
    font-weight: 100;
}


@media screen and (max-width: 768px) {
    .title-section h2 {
        margin: 0 0 -16px;
        font-size: 3rem;
    }
    .title-section::before {
        left: 0px;
    }
}
