.about_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: max-content;
    margin-top: 25vh;
    overflow: hidden;
    padding-bottom: 10vh;
    gap: 5vh;

    .about_image{
        width: 40vw;
        height: 85vh;
        background-size: cover;
        background-position: 50% 50%;
    }

    span{
        width:40vw ;
        font-size: 1.2vw;
        font-weight: 500;
    }

}



/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

    nav {
        display: none;
    }

    .mobile_nav {
        display: flex;
    }

    .about_container {
        margin-top: 20vh;
        gap: 5vh;

        .about_image{
            width: 80vw;
            height: 60vh;
            background-size: cover;
        }

        span{
            width:80vw ;
            font-size: 2.5vw;
            font-weight: 500;
        }

    }

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-device-width: 1028px) and (orientation: portrait) {
    nav {
        display: none;
    }

    .mobile_nav {
        display: flex;
    }

    .about_container {
        margin-top: 20vh;
        gap: 5vh;

        .about_image{
            width: 80vw;
            height: 60vh;
            background-size: cover;
        }

        span{
            width:80vw ;
            font-size: 3vw;
            font-weight: 500;
        }

    }


    footer {
        display: none;
    }

    .mobile_footer {
        display: flex;
    }




}

@media only screen and (min-width: 600px) and (max-device-width: 1028px) and (orientation: landscape) {
    footer {
        display: flex;
    }

    .mobile_footer {
        display: none;
    }
}