.show_box {
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: calc(100% + 10px);
  display: inline-block;
  vertical-align: top;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 3;
}
.show_box.is_loading {
  opacity: 1;
  visibility: visible;
}
.show_box .loader {
  margin: 0 auto;
  width: 30px;
  position: relative;
}
.show_box .loader:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.show_box .circular {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  transform-origin: center center;
  animation: rotate 2s linear infinite;
}
.show_box .path {
  stroke-width: 3;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  stroke-dasharray: 1, 200;
  animation: dash 1.5s ease-in-out infinite, color 3s ease-in-out infinite;
  -webkit-animation: dash 1.5s ease-in-out infinite, color 3s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes color {
  100%, 0% {
    stroke: #d42900;
  }
  40% {
    stroke: #d42900;
  }
  66% {
    stroke: #d42900;
  }
  80%, 90% {
    stroke: #d42900;
  }
}
.load_more_holder {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 1;
}

.loader_holder {
  height: 48px;
  position: relative;
  z-index: 0;
  pointer-events: none;
}
.loader_holder .show_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.team_container {
  row-gap: 60px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .team_container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    width: 100%;
    grid-gap: 40px;
  }
}
@media screen and (max-width: 1599px) and (min-width: 1025px) {
  .team_container {
    row-gap: 40px;
  }
}

.member_item {
  position: relative;
  grid-column: span 4;
  padding-bottom: 9px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .member_item {
    grid-column: span 6;
  }
}
@media screen and (max-width: 767px) {
  .member_item {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .member_item:nth-child(3n+1):not(:first-child):before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    display: block;
    width: calc(200% + 40px);
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
  }
}
.member_item:nth-child(3n+2):before, .member_item:nth-child(3n+3):before {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  display: block;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1024px) {
  .member_item:nth-child(3n+3) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .member_item:not(:first-child):before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
  }
}
.member_item__name, .member_item__role {
  margin-bottom: 15px;
}
@media screen and (min-width: 1600px) {
  .member_item__name, .member_item__role {
    margin-bottom: 20px;
  }
}
.member_item__role {
  font-size: 14px;
  font-weight: 500;
}

@media screen and (min-width: 1025px) {
  .loader_holder {
    grid-column: span 12;
  }
}
@media screen and (max-width: 1024px) {
  .loader_holder {
    bottom: -13px;
  }
}

.loader_holder.visible .show_box {
  opacity: 1;
  visibility: visible;
}

.only_1_lines {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.only_2_lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.only_3_lines {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.only_4_lines {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/*# sourceMappingURL=member-item.css.map */
