* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Baloo 2', cursive; */
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #efefef;
  flex-wrap: wrap;
}

.card {
  position: relative;
  width: 200px;
  height: 300px;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  transition: .5s;
  margin: 15px 20px;
}

.card:hover {
  box-shadow: 0 5px 15px #1d8034;
  transform: translateY(-15px);
}

.card .head {
  height: 125px;
  width: 100%;
  position: relative;
}

.card .head .circle {
  position: absolute;
  width: 200px;
  height: 220px;
  border-radius: 50%;
  background: #1d8034;
  bottom: 0;
}

.card .head .img {
  width: 120px;
  height: 120px;
  position: absolute;
  background: #fff;
  padding: 2px;
  border-radius: 50%;
  bottom: -11%;
  left: 50%;
  transform: translate(-50%);
}

.card .head .img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.card .description {
  height: 200px;
  padding: 5px 20px 20px 20px;
  /* border-bottom: solid 1px #1A682C; */
  text-align: center;
}

.card .description h5 {
  color: #1d8034;
}

.card .description h4 {
  color: #1d8034;
}

.card .description p {
  margin-top: 20px;
  font-size: 13px;
}

.card .masinfo {
  width: 100%;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center{
	text-align: center;
	color: #181818;
}

.card .masinfo a {
  text-decoration: none;
  color: #fff;
  background: #1d8034;
  padding: 5px 20px;
  border-radius: 5px;
  transition: .3s;
}

.card .masinfo a:hover {
  background: rgb(9, 92, 41);
}

#formulary {
  align-items: center;
  color: #000000;
}

@media only screen and (min-width: 768px) {
  #formulary .social-icons {
    font-size: 20px;
  }
}