.head-section{
    background: #000;
    height: 30vh;
    justify-content: center;
    align-items: end;
    display: flex;
    padding: 0 0 4vh 0;
    /* background-image: url(../img/bg/about-us-bg.png); */
}

.head-section{
    -webkit-box-pack: flex-end;
        -ms-flex-pack: flex-end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.main-text-wrap h1{
    text-align: center;
}

.about-text{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 67%;
    font-size: 1em;
}

.about-text a {
    color: #000;
}


@media (max-width: 1300px){
    .about-text{
        width: 100%;
    }  
    
    html .head-section{
        height: 33vh;
    }

}