
#about-us {
    width: 100%;
}

#about-us .container {
    width: 100%;
    height: 800px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

#about-us-img {
    display: flex;
    height: 500px;
    border-radius: 50%;
    border: 8px dashed white;
    -webkit-user-drag: none;
}

#about-us-text {
    text-align: center;
    color: white;
    direction: rtl;
    user-select: none;
}

#about-us-text h3 {
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 50px;
    font-weight: bold;
}

#about-us-text p {
    font-size: 15px;
    width: 30vw;
}

@media only screen and (max-width:1200px) {

    #about-us-img {
        width: 400px;
        height: 500px;
    }

    #about-us-text h3 {
        font-size: 50px;
    }

    #about-us-text p {
        font-size: 16px;
        width: 34vw;
    }

}

@media only screen and (max-width:992px) {

    #about-us-img {
        width: 350px;
        height: 450px;
        border: 7px dashed white;
    }

    #about-us-text h3 {
        font-size: 40px;
    }

    #about-us-text p {
        font-size: 14px;
        width: 34vw;
    }

}

@media only screen and (max-width:768px) {

    #about-us {
        margin-bottom: 100px;
    }

    #about-us .container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 100px;
    }

    #about-us-img {
        width: 350px;
        height: 400px;
        margin-bottom: 60px;
        z-index: 1;
        border: 0.3rem dashed white;
    }

    #about-us-text {
        z-index: 1;
        margin-bottom: 30px;
    }

    #about-us-text h3 {
        font-size: 25px;
        margin-bottom: 30px;
    }

    #about-us-text p {
        font-size: 13px;
        width: 50vw;
    }

}

@media only screen and (max-width:576px) {

    #about-us {
        margin-bottom: 100px;
    }

    #about-us .container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 100px;
    }

    #about-us-img {
        width: 250px;
        height: 300px;
        margin-bottom: 60px;
        z-index: 1;
        border: 0.3rem dashed white;
    }

    #about-us-text {
        z-index: 1;
    }

    #about-us-text h3 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    #about-us-text p {
        font-size: 13px;
        width: 75vw;
    }
}