.about-container{
    background:#F7F8FC;
    padding-top: 10vh;
    padding-bottom: 10vh;
    padding-left: 10vw;
    padding-right: 10vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row-reverse;
}


.about-header{
    font-size: 3vw;
    margin-bottom: 3vh;
    color: #272727;
    font-weight: 600;
}

.about-description{
    width: 31vw;
    font-size: 1.2vw;
    color: #272727;
}

.about-image{
    width: 35vw;
}

.about-explore {
    margin-top: 6vh;
    background: #1F3741;
    width: 20vw;
    height: 8vh;
    border-radius: 20vw;
    border-style: hidden;
    box-shadow: 0.25vw 0.5vh 1vh #243e4957;
}

.about-explore-content {
    margin-left: 2vw;
    font-size: 1.5vw;
    color: aliceblue;
    float: left;
}

.about-header-mobile{
    display: none;
}

@media screen and (max-width: 1000px) {

    .about-container {
        display: flex;
        flex-direction: column-reverse;
    }

    .about-text-holder {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-header-mobile{
        display: block;
        clear: both;
        text-align: center;
        font-size: 8vw;
        color: #272727;
        font-weight: 600;
        margin-top: -2vh;
        margin-bottom: 2vh;
    } 

    .about-header {
        display: none;
    }

    .about-image-holder {
        text-align: center;
        padding-top: 2vh;
    }

    .about-image{
        width: 100%;
    }

    .about-description {
        color: #272727;
        width: 100%;
        font-size: 3vw;
        margin-top: 4vh;
        text-align: justify;  
    }
}