.team_hover-module .team_hover-flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex !important;
  flex-flow: row wrap !important;
  -moz-flex-flow: row wrap !important;
  -webkit-flex-flow: row wrap !important;
  -o-flex-flow: row wrap !important;
  justify-content: flex-start;  
  margin-right: -10px;
  margin-left: -10px;
}
.team_hover-module .flex-item {
  flex-basis: 25%;
  -moz-flex-basis: 25%;
  -webkit-flex-basis: 25%;
  -o-flex-basis: 25%;
  padding: 0 10px;
}
@media screen and (max-width: 990px){
  .team_hover-module .flex-item{ 
    flex-basis: 33.33%;
    -moz-flex-basis: 33.33%;
    -webkit-flex-basis: 33.33%;
    -o-flex-basis: 33.33%;
    margin-bottom: 20px;
    justify-content: flex-start;
  }
  .team_module-box {
    margin: 15px!important;
  }  
}
@media screen and (max-width: 768px){
  .team_hover-module .flex-item{ 
    flex-basis: 50%;
    -moz-flex-basis: 50%;
    -webkit-flex-basis: 50%;
    -o-flex-basis: 50%;
  }
}
@media screen and (max-width: 551px){
  .team_hover-module .flex-item{ 
    flex-basis: 100%;
    -moz-flex-basis: 100%;
    -webkit-flex-basis: 100%;
    -o-flex-basis: 100%;
  }
}
.team_hover-module .content {
  position: relative;  
  height: 350px;  
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.team_hover-module .content img.content-image {
  border-radius: 4px;
  height: auto;
  min-height: 350px;
  height: 100%;
  width: 100%;  
  object-fit: cover;
  object-position: center;
}
.team_hover-module .content .content-overlay {
  background-image: linear-gradient(180deg, #ffffff00, #f2832d85, #F2832D);
  position: absolute;
  min-height: 350px;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.team_hover-module .content:hover .content-overlay{
  opacity: 1;
}
.team_hover-module .content-details {
  position: absolute;
  text-align: center;  
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.team_hover-module .content:hover .content-details{
  bottom: 5%;
  left: 50%;
  opacity: 1;
}
.team_hover-module .fadeIn-bottom{
  top: 82%;
}
.team_hover-module .title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 5px;
  margin: 0;
}
.team_hover-module .subtitle {
  color: #fff;
  font-size: 14px;
}
@media (max-width: 768px) {
 .team_hover-module .content {
   width: 95%;
  }
}
@media (max-width: 425px) {
 .team_hover-module .content {
   width: 100%!important;
  }
}