#aboutUs {
    background-image: linear-gradient(rgba(21, 11, 99, 0.9), rgba(21, 11, 99, 0.9)), url(../img/img9.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 10vh;
}

.aboutUsContent {
    color: white;
    height: 90vh;
}

.aboutHead {
    height: 20vh;
    margin: auto;
    padding-left: 7vw;
    display: flex;
    align-items: center;
    font-size: 3.5vw;
}

.aboutHead img {
    width: 4vw;
}

.aboutWriting{
    height: 60vh;
    background: white;
    color: black;
    display: flex;
    justify-content: space-between;
}

.aboutWriting p {
    padding-left: 7vw;
    padding-top: 2vw;
    font-size: 2.2vh;
    width: 55vw;
    text-align: justify;
}

.aboutWriting div {
    background: #3A75AA;
    width: 40vw;
    border-radius: 100% 0 0 0;
}

#aboutImage {
    width: 27vw;
    border-radius: 50%;
    position: relative;
    left: 59vw;
    top: -35vw;
}

@media (max-width: 767px) {
    #aboutUs {
        padding: 9vh 0;
        height: fit-content;
    }

    .aboutUsContent {
        height: fit-content;
    }
    .aboutHead {
        height: 13vh;
        font-size: 7vw;
        font-family: 'Roboto', sans-serif;
    }

    .aboutHead img {
        width: 12vw;
    }

    .aboutHead pre {
        font-family: 'Roboto', sans-serif;
        margin: 0;
    }

    .aboutWriting {
        flex-direction: column;
        padding: 5vw;
        height: fit-content;
    }

    .aboutWriting p {
        width: 100%;
        padding: 0;
        font-size: 3.5vw;
        margin: 0;
    }

    #aboutImage {
        display: none;
    }
}