#about{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 300px 200px 300px 200px;
    overflow: hidden;
    /* border: 2px solid #e41300; */
}
#colLeft{
    background-image: url(../img/background-About.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 1000px;
    height: 600px;
    border-radius: 25px;
    box-shadow: -4px 4px 5px 5px rgba(0, 0, 0, 0.4);
}
#colRight{
    width: 700px;
    height: 400px;
    border-radius: 25px;
    box-shadow: -4px 4px 5px 5px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    padding: 40px 40px 40px 40px;
    text-align: center;
    background-color: #fff;
    transform: translateX(-200px) ; 
    z-index: 900;
    transition: 0.5s;
}
#colRight:hover{
    background-color: #ffffff44;
    backdrop-filter: blur(7px);
}
#colRight h1{
    font-size: 40px;
}
#colRight h1 span{
    color: #e34a3c;
    font-weight: 800;
}
@media screen and (max-width: 721px){

   
}
@media screen and (max-width: 400px){
    #about{
        background-image: url(../img/background-About.jpg);
        background-size: cover;
        width: 100%;
        height: 100vh;
        padding: 10px;
        
    }
    #colLeft{
        display: none;
    }
    #colRight{
        background-color: #fff;
        width: 100%;
        padding: 20px;
    }
    #colRight h1{
        text-align: center;
        font-size: 30px;
    }
   
}