/**
 * Variables
 */
/* ==========================================================================
   Mixins
   ========================================================================== */
/*
 * Mixin for easy media queries
 * @include bp(tablet) { SCSS here };
*/
/*
 * Mixin for clearfix
 * @include clearfix;
*/
/*
 * Mixin for basic CSS triangles
 * @include triangle(up, #000, 50px)
*/
/*
 * @font-face mixin
 * Bulletproof font-face via Font Squirrel
 * @include fontface('family', 'assets/fonts/', 'myfontname');
 */

html,
body {
  height: 100%;
}

.block-employees h3 {
  text-align: center;
}

.block-employees .employees {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
  grid-gap: 20px;
}

@media (max-width: 1024px) {
  .block-employees .employees {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .block-employees .employees {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .block-employees .employees {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.block-employees .employees .single-employee .image {
  min-height: 350px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.block-employees .employees .single-employee .image img {
  border-top-left-radius: 25px;
  height: auto;
  width: 100%;
}

.block-employees .employees .single-employee .image h4.employee {
  padding-left: 0.4em;
  line-height: 1em;
  color: #fff;
  font-size: 1.2em;
  bottom: 0;
  position: absolute;
  text-shadow: #000 1px 1px 10px;
  margin: 0 0 0.5em;
}

@media (max-width: 480px) {
  .block-employees .employees .single-employee .image h4.employee {
    width: 80%;
  }
}

.block-employees .employees .single-employee .information {
  background-color: #6bc62e;
  color: #000;
  border-bottom-right-radius: 25px;
  padding: 0.5em 0.5em;
  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-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  position: relative;
}

.block-employees .employees .single-employee .information .phone,
.block-employees .employees .single-employee .information .email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.block-employees .employees .single-employee .information .phone img {
  width: 25px;
}

.block-employees .employees .single-employee .information .email {
  gap: 5px;
}

.block-employees .employees .single-employee .information p {
  -ms-flex-preferred-size: 70%;
  flex-basis: 70%;
  font-weight: 800;
  font-size: 0.7em;
  margin: 0.3em 0 0 0;
  display: inline-block;
}
.block-employees .employees .single-employee .information a {
  -ms-flex-preferred-size: 15%;
  flex-basis: 15%;
  text-decoration: none;
  font-weight: 400;
  color: #000;
}
.block-employees .employees .single-employee .information .employee-button {
  width: 30px;
  margin-left: auto;
  right: 5px;
  position: absolute;
  top: 5px;
  padding-top: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.block-employees
  .employees
  .single-employee
  .information
  .employee-button
  .employee-info {
  position: relative;
  width: 50px;
  padding: 0;
}

.block-employees .employees .single-employee .information .position {
  padding-right: 20px;
}

.block-employees .employees .single-employee .information span {
  font-size: 0.7em;
}

.block-employees .employees .single-employee .information .modal-button {
  background: url("../../../assets/images/infoIconWin3x.png");
  position: absolute;
  background-color: transparent;
  border: none;
  width: 30px;
  height: 30px;
  right: 0px;
  top: 8px;
  cursor: pointer;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 20px;
}

.block-employees .employees-infobox-wrapper {
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-content: center;
  position: fixed;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}

.block-employees .employees-infobox-wrapper .close {
  cursor: pointer;
}

.block-employees .employees-infobox-wrapper .employees-infobox {
  background-color: #a8e67e;
  border-radius: 20px;
  position: fixed;
  padding: 15px;
  top: 100px;
  margin-top: auto;
  margin-bottom: auto;
}

.block-employees .employees-infobox-wrapper .single-employee {
  min-width: 200px;
  max-width: 400px;
}

.block-employees .employees-infobox-wrapper .single-employee .image {
  height: 400px;
  width: 400px;
  margin: auto;
  display: block;
}

.block-employees .employees-infobox-wrapper .single-employee .information {
  background-color: transparent;
}

.block-employees
  .employees-infobox-wrapper
  .single-employee
  .information
  .description {
  font-weight: 400;
}

@media (max-width: 480px) {
  .block-employees .employees .single-employee .information p {
    font-size: 0.5em;
    margin: 0.8em 0 0 0;
  }
  .block-employees .employees-infobox-wrapper .single-employee .image {
    height: 250px;
    width: 250px;
    margin: auto;
    display: block;
  }
}

/*# sourceMappingURL=employees.css.map */
