* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
.AboutUs{
width: 100%;
/* background-color: red; */
display: flex;
justify-content: center;
}
.AboutUsInner{
    width: 80%;
    background-color: white;
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.AboutUsInnerInner{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    
}
.AboutUsInner h2{
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 3rem;
    font-weight: 700;

}
.AboutUsInnerInner h2{
    margin-top: 100px;
    margin-left: 40px;
    font-size: 2rem;
}
.AboutUsInnerInner p{
    margin-left: 40px;
    font-size: 1.2rem;
    margin-right: 40px;
    margin-bottom: 100px;
    text-align: center;
}
.AboutUsInnerInnerLeft{
    width: 50%;
    background-color: #86211B;
    color: white;
    
}
.AboutUsInnerInnerRight{
    width: 40%;
    /* background-color: rgb(0, 255, 8); */
}  
.AboutUsInnerInnerRight img{
   
    /* background-color: rgb(0, 255, 8); */
    width: 100%;
}

@media only screen and (max-width: 1093px) {
    
.AboutUsInnerInner{
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.AboutUsInnerInnerLeft{
    width: 100%;
    background-color: #86211B;
    color: white;
    
}
.AboutUsInnerInnerRight{
   margin-top: 30px;
    /* background-color: rgb(0, 255, 8); */
    width: 50%;
}

}