h1,
h2,h3 {
    color: var(--theme_primary);
    margin: 0;
}

.about-us-main {
    padding: 30px;
    padding-top: 115px;
    background-color: var(--background_secondary);
}

#about-us-container {
    max-width: 1700px;
    margin: auto;
}

.about-us-wrapper h3{
    font-size: 24px;
    margin: 0;
    padding-bottom: 15px;
}
.about-us-wrapper h2{
    font-size: 28px;
    padding-bottom: 15px;
}
.about-us-wrapper p{
    color: var(--normal_text);
}
.about-us-wrapper{
    padding-bottom: 15px;
    display: flex; 
    flex-wrap: wrap;
}
.about-us-img img{
    height: 500px;
}
.about-us-img{
    width: 40%; text-align: center;
}
.about-us-text{
    width: 60%; padding-top: 50px;
    display: flex;
    align-items: center;
}
.about-us-text>ul>li{
    display: inline-block;
    padding-right: 25px;
    padding-bottom: 15px;
}
.about-us-text>ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 1300px) {
    .about-us-img img{
        height: 400px;
    }
}
@media (max-width: 1070px) {
    .about-us-img{
        width: 50%;
        }    
        .about-us-text{
        width: 50%;
    }
}
@media (max-width: 920px) {

    .about-us-main{
        display: block; 
    }
    .about-us-img{
        width: 100%; 
    }
    .about-us-text{
        width: 100%;
    }
}
@media (max-width: 500px) {
    .about-us-img img{
        height: 300px;
    }
}
@media (max-width: 350px) {
    .about-us-img img{
        height: 200px;
    }
}

#about-us-description>p{
    color: var(--normal_text);
    font-size: 20px;
}