.team-two-block {
  padding: 80px 0 0 0;
  background-color: var(--bg-primary-second);
}
.team-two-block h2.block-title span {
  font-weight: inherit;
  color: var(--colors-second);
}
.team-two-block .top-side {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}
.team-two-block .mark {
  display: flex;
  flex-direction: row;
  gap: 10px;
  background: var(--bg-primary-main);
  border-radius: 100px;
  padding: 10px 20px;
  align-items: center;
  width: fit-content;
  height: fit-content;
}
.team-two-block .text {
  color: var(--text-primary-main);
}
.team-two-block .icon {
  width: 24px;
  height: 24px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.team-two-block .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.team-two-block .team {
  display: grid;
  /* grid-gap: 30px; */
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}
.team-two-block .member {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: var(--bg-light);
  padding: 30px;
  height: 100%;
}
.team-two-block .member__photo {
  width: 100%;
  height: 390px;
  object-fit: cover;
  margin-bottom: 30px;
}
.team-two-block .member__info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 5px 10px;
  flex-wrap: wrap;
  width: 100%;
}
.team-two-block .member__name {
  font-weight: 800;
  font-size: 24px;
  line-height: 110%;
  color: var(--bg-alt-main);
}
.team-two-block .member__since {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--text-primary-main);
}
.team-two-block .member__desc {
  margin-top: 20px;
}
.team-two-block .member__desc p {
  font-family: var(--second-family);
}
.team-two-block .swiper-button-next {
  color: var(--bg-light);
  background: var(--primary);
  width: 60px;
  height: 60px;
  border-radius: 5px;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  margin: 0;
  transition: background 0.3s ease-in;
  z-index: 1;
  border: 1px solid var(--primary);
}
.team-two-block .swiper-button-next:hover {
  background: var(--hover);
}
.team-two-block .swiper-button-next svg {
  width: 24px;
  height: 24px;
}
.team-two-block .swiper-button-next svg path {
  fill: var(--bg-light);
}
.team-two-block .swiper-button-next:hover svg path {
  fill: var(--bg-light);
}
.team-two-block .swiper-button-next:after {
  display: none;
}
.team-two-block .swiper-button-prev {
  color: var(--bg-light);
  background: var(--primary);
  width: 60px;
  height: 60px;
  border-radius: 5px;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  margin: 0;
  transition: background 0.3s ease-in;
  z-index: 1;
  border: 1px solid var(--primary);
}
.team-two-block .swiper-button-prev:hover {
  background: var(--hover);
}
.team-two-block .swiper-button-prev svg {
  width: 24px;
  height: 24px;
}
.team-two-block .swiper-button-prev svg path {
  fill: var(--bg-light);
}
.team-two-block .swiper-button-prev:hover svg path {
  fill: var(--bg-light);
}
.team-two-block .swiper-button-prev:after {
  display: none;
}
.team-two-block .swiper-nav-buttons {
  display: flex;
  gap: 15px;
  /* margin-top: 30px; */
  justify-content: flex-start;
}
.team-two-block .swiper-pagination {
  position: relative;
  display: flex;
  margin-top: 20px;
  width: 100% !important;
  justify-content: flex-end;
}
.team-two-block .swiper-button-disabled {
  border: none;
}
.team-two-block .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: var(--additional-second) !important;
  opacity: 1;
  border-radius: 50%;
  margin: 0 8px !important;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--colors-second) !important;
}
.team-two-block .swiper-pagination-bullet-active {
  background-color: var(--colors-second) !important;
  transform: scale(1.2);
}
.team-two-block .swiper-controls-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 1025px) {
  .team-two-block .team-two-block .team {
    /* grid-gap: 20px; */
  }
  .team-two-block .team-two-block .member {
    padding: 20px;
  }
  .team-two-block .team-two-block .member__name {
    font-size: 20px;
  }
}
@media (max-width: 769px) {
  .team-two-block .team-two-block .team {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 498px) {
  .team-two-block .team-two-block .team {
    grid-template-columns: 1fr;
  }
}

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