.about-section{
    display: grid;
    grid-template-columns: 50% 50%;
    height: 45vw !important;
}

.logo-img{
    width: 30vw;
    height: auto;
}

.about-info, .img-container{
    display:flex;
    flex-direction: column;
    justify-content: center;
}
h1{
    color: var(--light-blue);
    font-size: 4vw;
    margin: 1vw 0;
    height: 4vw;
}

p{
    font-size: 1.5vw;
}
.about-img{
    width: 40vw;
    height: auto;
}

@media (max-width:996px){
    .about-section{
        display: grid;
        grid-template-columns: 1fr;
        height: 130vw !important;
    }
    .logo-img{
        width: 60vw;
        height: auto;
    }
    
    .about-info, .img-container{
        display:flex;
        flex-direction: column;
        justify-content: center;
    }
    h1{
        color: var(--light-blue);
        font-size: 8vw;
        margin: 3vw 0;
        height: 8vw;
    }
    
    p{
        font-size: 3vw;
    }
    .about-img{
        width: 80vw;
        height: auto;
    }
}