.about-home{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 98%;
    height: 98%;
    gap: 2%;
}
.about-home > .info-about{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    width: 96%;
    height: 100%;
    padding: 2%;    

}
.about-home > .info-about > h3{
    width: 100%;
    font-size: 2.2em;
    color: #006CF6;
}
.about-home > .info-about > p{
    width: 100%;
    height: 100%;
    font-size: 1.2em;
    margin-top: 6%;
}
.about-home > .info-about > a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 50px;
    background-color: #006CF6;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 6%;
}
.about-home > .gallery-img {
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1%;
}
.about-home > .gallery-img  > div{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 98%;
    height: 80%;
}
.about-home > .gallery-img  > div > .img-1{
    width: 100%;
    height: 500px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.199));
}


@media only screen and (min-width: 1024px) and ( max-width: 1440px ){ 
    .about-home{
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        width: 98%;
        height: 100%;
        gap: 0;
    }
    .about-home .info-about{
        align-items: flex-start;
        width: 60%;
        height: 70vh;
    }
    .about-home > .info-about > h3{
        width: 100%;
        font-size: 3.4em;
        color: #006CF6;
    }
    .about-home > .info-about > p{
        margin-top: 2%;
        width: 90%;
    }
    .about-home > .info-about > a{
        margin-top: 2%;
        height: 70px;
    }
    .about-home .gallery-img{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: flex-end;
        width: 40%;
        height: 90vh;
           
    }
    .about-home .gallery-img div{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 98%;
    }
    
    
}