.main__container {
  max-width: 1200px;
  margin: auto;
}
.main__employees {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.main__employees-title {
  font-size: 30px;
  text-align: center;
}
.main__employees .employees__item {
  cursor: pointer;
  position: relative;
  width: 250px;
  margin: 20px;
  overflow: hidden;
  border-radius: 0px 10px 10px 0px;
  -webkit-box-shadow: 0px 1px 1px rgba(9, 30, 66, 0.2509803922), 0px 0px 1px rgba(9, 30, 66, 0.3098039216);
          box-shadow: 0px 1px 1px rgba(9, 30, 66, 0.2509803922), 0px 0px 1px rgba(9, 30, 66, 0.3098039216);
}
.main__employees .employees__item:hover img {
  opacity: 0.5;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.main__employees .employees__img {
  width: 100%;
  height: 100%;
}
.main__employees .employees__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.main__employees .employees__name {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  text-align: center;
  font-size: 18px;
  padding: 10px 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgb(30, 30, 28);
  color: #B6C2CF;
}
.main__employees .employees__status {
  top: 2px;
  padding: 2px 2px 2px 8px;
  background: purple;
  color: white;
  border-radius: 0px 3px 3px 0px;
  position: absolute;
}

@media (max-width: 800px) {
  .main__employees {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main__employees .employees__item {
    width: 80%;
  }
}