



#about {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    background-color: var(--bg-color);
    color: var(--text-color);
}

#about .info {
    flex: 2;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

#about .info .content {
    width: 70%;
    text-align: justify;
    height: 100%;
    padding: 2rem;
    box-sizing: border-box;
}




#about img {
    flex: 1;
    height: auto;
    object-fit: cover;
    align-items: stretch;
}


#objectives {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    background-color: var(--bg-color);
}

#objectives .info {
     flex: 2;
    flex-shrink: 1;
    flex-basis: 0;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

#objectives .info .content {
    width: 70%;
    text-align: justify;
    height: 100%;
    padding: 2rem;
    box-sizing: border-box;
}




#objectives  img {
    flex: 1;
    height: auto;
    object-fit: cover;
    align-items: stretch;
}

@media screen and (max-width: 1000px) {
    #about #info {
        flex: 3;
    }
    #about .info .content, #objectives .info .content {
        width: 100%;
    }
    #about {
        flex-direction: column;
    }
    
    #about img, #objectives img {
        display: none;

    }
}
