.about {
    display: flex;
    flex-direction: row;
    justify-content: space-between;   
    margin-bottom: 70px;
}
.about__text {    
    width: calc(60% - 60px);
    font-size: 25px;
    line-height: 1.3em;
    text-align: justify;   
    padding-bottom: 15px; 
}
.about__text h3{    
    font-size: 50px;  
    margin-bottom: 30px;  
}
.about__image {
    width: calc(40% - 60px);
    align-self: center;
    line-height: 0;
}
@media(max-width:1200px) {
    .about__text h3{    
        font-size: 40px; 
        margin-bottom: 25px;   
    }
    .about__text {      
        font-size: 20px;
        width: calc(60% - 50px);
    }
    .about__image {
        width: calc(40% - 50px);
    }
}
@media(max-width:1000px) {
    .about__text h3{    
        font-size: 33px;  
        margin-bottom: 20px;   
    }
    .about__text {      
        font-size: 18px; 
        width: calc(50% - 20px);      
    }
    .about__image {
        width: calc(50% - 20px);
    }
}
@media(max-width:760px) {
    .about__image {
        display:none;
    }
    .about__text {      
        font-size: 18px; 
        width: 100%;      
    }
}
@media(max-width:580px) {
    .about__text h3{    
        font-size: 30px;         
    }
    .about__text {      
        font-size: 16px;            
    }   
}