/*
.about-us{
    min-height: 100vh;
    padding:80px 0px;
    background-color: rgba(21, 59, 40, 0.267);
}
.container2{
    max-width: 1600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    border-radius: 10px;
    margin: 0px auto;
}
.about-image{
width:50%;
overflow:hidden;
box-shadow: 0 0 10px rgba(0,0,0,0.2);

margin-left: 5%;
margin-right: 20%;

}

.about-image img{
    display:block;
   width:100%;
    height: auto;
    transition: transform 0.3s ease;
    

}
 .about-image :hover img{
    transform: scale(1.1);
 }   
 .about-content{
    width: 50%;
    margin-left: 50px;
 }
 .about-content h2{
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
 }
 .about-content p{
    color: #181212;
    font-size:17px ;
    line-height: 1.6;
    margin-bottom: 20px;

    
 }
 .social-links{
    margin-bottom: 20px;
 }
 .social-links a{
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
 }
 .social-links a :hover{
    color: #fff;
 }
 .button{
    font-size: 17px;
    display: inline-block;
    padding:12px 16px;
    background-color: #567579;
    color:#fff;
    text-decoration: none;
    border-radius: 5px;
 }
 .button i{
    margin-right: 5px;
 }
 .button :hover{
    background-color: #4ca3af;
 }
 @media screen and(max-width:768px){
    .container2{
        flex-direction: column;
        text-align: center;
    }
    .about-image, .about-content{
        width: 100%;
        height:100%;

    }
    .about-content{
        padding: 0px;
        margin-top: 50px;
        margin-left: 0px;
    }
 }
*/
.aboutus{
   width: 100%;
   min-height: 100vh;
   background-color: #ddd;


}
.aboutus .about-title{
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   text-transform: uppercase;
   font-size: 22px;
   color: #222;
   letter-spacing: 1.5px;
   padding: 50px 0px ;
}
.aboutus .about-title h1::after{
   content:"";
   height:6px;
   background-color: #222;
   border-radius: 6px;
   position: relative;
   display: block;
   margin: auto;

}
.about-content{
   width: 90%;
   display:grid;
   grid-template-columns: repeat(2, 1fr);
   grid-gap:40px;
   margin: 30px auto;
}
.about-content .about-article{
   box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.2);
   background-color: #8d8686;
   padding: 25px 25px;
}
.about-content .about-article h2{
   color:#5ebdd7;
   font-size: 22px;
   line-height: 1.5;
   letter-spacing: 1px;
}
.about-content .about-article p{
   margin-top: 30px;
   font-size: 15px;
   line-height: 1.5;
   color:#222;

}

@media screen and(max-width:900px) {
   .about-content{
      grid-template-columns: repeat(2, 1fr);
   }
   
}
