.teachers {
  padding-top: 50px;
  padding-bottom: 100px;
}
.teachers .section-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 50px;
}

.teachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  transition: opacity 0.2s ease-in-out, filter 0.2s ease-in-out;
}
.teachers-grid.loading {
  pointer-events: none;
  opacity: 0.5;
  filter: blur(3px);
  transition: opacity 0.2s ease-in-out, filter 0.2s ease-in-out;
}

.teachers-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.teachers-search-form {
  position: relative;
  margin-bottom: 24px;
  z-index: 0;
}
.teachers-search-form input[type=search] {
  border: 1px solid #EAEAEA;
  background-color: #fff;
  box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  color: var(--grey);
  font-size: 18px;
  line-height: 145%;
  padding: 8.5px 5px 8.5px 56px;
}
.teachers-search-form input[type=search]::-moz-placeholder {
  color: var(--grey);
}
.teachers-search-form input[type=search]::placeholder {
  color: var(--grey);
}
.teachers-search-form button[type=submit] {
  position: absolute;
  z-index: 1;
  left: 5px;
  top: 0;
  padding: 12px;
  background-color: transparent;
  width: 44px;
  height: 100%;
}

.teacher-card {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #EAEAEA;
  background-color: #fff;
  box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.07);
  padding: 20px;
  transition: box-shadow 0.25s ease-in, border-color 0.25s ease-in;
}
@media (any-hover: hover) {
  .teacher-card:hover {
    border-color: var(--blue6);
    box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.25s ease-in, border-color 0.25s ease-in;
  }
}
.teacher-card__name {
  color: var(--blue1);
  font-weight: bold;
  line-height: 150%;
}
.teacher-card__categories {
  color: var(--blue3);
  line-height: 150%;
}
.teacher-card__content {
  color: var(--grey);
  margin-bottom: 20px;
}
.teacher-card__content p {
  margin-bottom: 8px;
}
.teacher-card__content ul {
  font-size: 16px;
  line-height: 150%;
}
.teacher-card__contact {
  display: flex;
  align-items: center;
  flex: 0 1 32%;
  color: var(--grey);
  gap: 8px;
  flex-wrap: nowrap;
}
.teacher-card__contact span[class*=icon-] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--grey);
  width: 44px;
  height: 44px;
  padding: 10px;
}
.teacher-card__contact span[class*=icon-].icon-mail:before {
  font-size: 16px;
}
.teacher-card__foot {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1279px) {
  .teachers .section-title {
    font-size: 17px;
  }
  .teacher-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .teacher-card__contact {
    font-size: 17px;
  }
  .teachers-search-form input[type=search] {
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  .teachers {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .teachers .section-title {
    font-size: 16px;
  }
  .teacher-card__contact {
    font-size: 16px;
  }
  .teachers-search-form input[type=search] {
    font-size: 16px;
  }
}/*# sourceMappingURL=teachers-block.css.map */