.who_section .who_container {
  padding: 25px 45px;
}

.who_container p, ul {
	text-align: left;
}

.who_section .who_box {
  position: relative;
  border-radius: 0%;
  overflow: hidden;
  margin: 25px 0;
}

.who_section .who_box .img-box img {
	width: 100%;
	animation: fadeInAnimation ease 3s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.who_section .who_box .detail-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(163, 67, 24, 0.9);
  color: #ffffff;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.who_section .who_box .detail-box h5 {
  font-weight: 600;
}

.who_section h4 {
  font-size: 20px;
	font-style: italic;
	margin-bottom: 30px;
	margin-top: 30px;
  text-transform: uppercase;
}

.who_section .who_box .detail-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 45px;
  height: 45px;
  background-color: #ffffff;
  border-radius: 100%;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  color: #000000;
  font-size: 24px;
}

.who_section .who_box .detail-box a:hover {
  background-color: rgba(228, 234, 234, 0.9);
}

.who_section .who_box:hover .detail-box {
  opacity: 1;
  visibility: visible;
}

.who_section .read_btn {
  display: inline-block;
  background-color: #85310c;
  color: #ffffff;
  padding: 7px 30px;
  border: 1px solid #85310c;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: uppercase;
  margin-top: 50px;
  margin-bottom: 50px;
}

.who_section .read_btn:hover {
  background-color: transparent;
  color: #85310c;
}

.contact_section {
  position: relative;
}

.heading_container h3 {
  padding-top: 20px;
}

.email_content
{
	font-family: "Courier New";
	margin-left: 30px;
	margin-right: 30px;
}

.horizontal
{
	margin-bottom: 20px;
	margin-top: 30px;
	width: 50%;
}