.about-page {
  padding: 8rem 0;
  background-color: #f5f7f9;
}
.about-page-info {
  position: relative;
  width: 100%;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-page-info__content {
  width: 48%;
}
.about-page-info__content p {
  text-align: left;
}
.about-page-info__img {
  width: 48%;
  margin-top: -3rem;
}
.about-page-info__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-page-info .text--mobile {
  display: none;
  width: 0;
  height: 0;
}
.about-page-referal {
  padding-top: 6rem;
  text-align: center;
}
.about-page-referal-block {
  position: relative;
  width: 60%;
  margin: 2rem auto 0;
  padding: 2rem 2rem;
}
.about-page-referal-block::before, .about-page-referal-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.6rem;
  height: 100%;
  background-color: #80bb2e;
}
.about-page-referal-block::after {
  right: 0;
  left: auto;
}
.about-page-referal a {
  margin-top: 3rem;
}

.history {
  position: relative;
  margin-top: 8rem;
  margin-left: 5%;
  scroll-behavior: smooth;
  scroll-margin-top: 100px;
}
.history-slider {
  margin-top: 2.5rem;
}
.history-slider__item {
  padding-right: 3rem;
  text-align: left;
}
.history-slider__item h4 {
  padding-bottom: 0.7rem;
  border-bottom: 2px solid #80bb2e;
}
.history-slider__item p {
  margin-top: 0.9rem;
  text-align: left;
}
.history-slider .slick-prev,
.history-slider .slick-next {
  top: -4.5rem;
}

.advantages {
  padding-top: 2rem;
}
.advantages-list {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.advantages-list__item {
  position: relative;
  padding: 4.5rem 1rem 0;
  width: 30%;
}
.advantages-list__item::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 1.9rem;
  background: url("../img/icons/adv.svg") no-repeat center/contain;
}
.advantages-numbers {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.advantages-numbers__item {
  width: 18%;
}
.advantages-numbers__item span {
  display: block;
  font-weight: 700;
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 0.7rem;
}
.advantages-block {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.advantages-block__item {
  width: 48%;
  padding: 3.2rem 2.5rem;
  background-color: #ffffff;
}
.advantages-block__item p {
  line-height: 1.2;
}

.mission {
  padding-top: 6rem;
}
.mission-block {
  position: relative;
  margin-top: 1rem;
  padding: 2.5rem 7.5%;
}
.mission-block::before, .mission-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.6rem;
  height: 100%;
  background-color: #80bb2e;
}
.mission-block::after {
  right: 0;
  left: auto;
}

.values {
  padding-top: 6rem;
}
.values-block {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.values-block-col {
  width: 48.3%;
}
.values-block__item {
  padding: 2.5rem;
  background: #ffffff;
  margin-bottom: 2.5rem;
}
.values-block__item p {
  text-align: left;
}
.values-block__item a {
  margin-top: 1.5rem;
}

.team {
  position: relative;
  margin-top: 4rem;
  scroll-behavior: smooth;
  scroll-margin-top: 100px;
}
.team h3 {
  margin-left: 5%;
}
.team-slider {
  margin-top: 2rem;
}
.team-slider__item p:first-of-type {
  position: relative;
}
.team-slider__item p:first-of-type::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 5%;
  width: 90%;
  height: 2px;
  background-color: #80bb2e;
}
.team-slider__img {
  text-align: center;
}
.team-slider__img img {
  width: 80%;
  margin: 0 auto 0.7rem;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: 2rem;
  height: 2rem;
  background-color: #80bb2e;
  right: 5%;
  top: 0;
  z-index: 2;
  cursor: pointer;
}
.swiper-button-prev::before,
.swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 1.5px solid #ffffff;
  border-right: 1.5px solid #ffffff;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 2;
  width: 0.6rem;
  height: 0.6rem;
}

.swiper-button-prev {
  right: 10%;
}
.swiper-button-prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.swiper-button-disabled {
  background-color: #e8e8e8;
  cursor: default;
}