.about_page{
    display:flex;
    width:100%;
    justify-content:space-around;
    align-items:flex-start;
    margin:50px 0;
    
}
.about-item{
    width:40%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}
header{
    min-height:auto;
    height:auto !important;
}
.about-item_img{
    width:50%;
    margin:0 auto;
}
.about-item_text{
    margin:0 auto;
    font-size:21px;
}
@media screen and (max-width:800px){
    .about_page{
    flex-wrap:wrap;
    margin:50px 0;
    
}
.about-item{
    width:90%;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}
 
}