/* Default body */

* {
    padding: 0px;
    margin: 0px;
}



/*Middle Body*/

.we-are-block {
  padding: 20px;
}

#who-section, #about-us-section {
  display: flex;
  padding: 20px;
}

.about-us-info, .who-info {
  width: 50%;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.about-us-image, .who-image {
  width: 50%;
  box-sizing: border-box;
  padding: 20px;
}

.about-us-image img, .who-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#about-us-section
{
  flex-direction: row-reverse;
}

.about-us-info h2, .who-info h2{
  font-family: 'Times New Roman', Times, serif;
  font-weight: bolder;
  color: rgb(46, 42, 95);
  font-size: 40px;
  padding:10px;

}

.about-us-info p, .who-info p{
  padding: 20px;
  font-size: 20px;
}

.about-us-info a, .who-info a{
  box-sizing: border-box;
  padding: 10px;
  border-radius: 5px;
  background-color: rgb(27, 27, 61);
  width: 180px;
  color: white;
  font-size: 25px;
  text-align: center;

}

.about-us-info{
  text-align: right;
  place-items: flex-end;
}

.who-info{
  text-align: left;
}

.about-us-info a:hover, .who-info a:hover{
  background-color: grey;
  font-size: 30px;
}

@media screen and (max-width: 850px) {
  #who-section, #about-us-section{
    flex-direction: column;
  }
  .about-us-image, .who-image , .about-us-info, .who-info{
    width: 100%;
    align-items: center;
  }
  .about-us-info, .who-info{
    text-align: center;
  }
}


