/* Color styles */
/* Social colors */
/* Effects */
/* Text-size styles */
/* Font family */
/* Effect styles */
/* Grid */
.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 12px 0 16px;
  list-style: none;
  font-size: 14px;
  color: #9799b1;
}
.breadcrumbs__item:not(:nth-last-child(2)) {
  display: none;
}
.breadcrumbs__text {
  gap: 0.25em;
}
.breadcrumbs__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  color: #585b75;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.breadcrumbs__link:hover {
  color: #6ba100;
}
.breadcrumbs__link svg {
  margin: 0.15em 0.25em 0 -0.25em;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  color: #ccd2e3;
  width: 1.25em;
  height: 1.25em;
}

@media screen and (min-width: 768px) {
  .breadcrumbs {
    margin: 16px 0 24px;
  }
}
@media screen and (min-width: 1004px) {
  .breadcrumbs {
    font-size: 15px;
  }
}
@media screen and (min-width: 1260px) {
  .breadcrumbs {
    margin: 20px 0 28px;
  }
  .breadcrumbs__item:not(:nth-last-child(2)) {
    display: block;
  }
  .breadcrumbs__link {
    display: inline;
  }
  .breadcrumbs__link svg {
    display: inline-block;
    vertical-align: top;
    margin: 0.15em 0.25em 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.page__thumb {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 12px;
}
.page__thumb--full-height {
  height: 100%;
}

.swiper {
  position: relative;
  overflow: hidden;
  list-style: none;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-scrollbar {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin: 24px 0 0;
  -ms-touch-action: none;
}
.swiper-scrollbar:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  height: 1px;
  background: #e6ebf4;
}
.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none;
}
.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  height: 3px;
}
.swiper-vertical > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  z-index: 50;
  width: 3px;
  height: 100%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: #ccd2e3;
  border-radius: 3px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-pagination-bullets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 0.5;
  border-radius: 50%;
  background: #9799b1;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  -webkit-box-shadow: 0 10px 40px rgba(11, 11, 15, 0.05);
  box-shadow: 0 10px 40px rgba(11, 11, 15, 0.05);
}
.swiper-pagination-bullet-active {
  opacity: 1;
  width: 12px;
  height: 12px;
  background: #6ba100;
}

.swiper-navigation {
  display: none;
}

.swiper-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 4px;
}

.swiper-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  color: #585b75;
  border: 0;
  width: 36px;
  height: 36px;
  background: #ffffff;
  cursor: pointer;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
.swiper-button:hover {
  color: #6ba100;
}
.swiper-button--prev svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.swiper-button svg {
  width: 24px;
  height: 24px;
}

@media all and (min-width: 768px) {
  .swiper-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1px;
    margin: 24px 0 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    overflow: hidden;
    background: #e6ebf4;
    border: 1px solid #e6ebf4;
    border-radius: 4px;
  }
  .swiper-navigation .swiper-scrollbar {
    margin: 0;
  }
}
.about__intro {
  max-width: 1400px;
  margin: 0 0 40px;
  font-size: 16px;
  line-height: 1.5;
  color: #21222c;
}
.about__advantage {
  margin: 0 0 50px;
}
.about__advantage-title {
  margin: 0 0 24px;
}
.about__advantage-img {
  margin: 0 0 24px;
  border-radius: 5px;
  overflow: hidden;
}
.about__advantage-img img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.about__advantage-text {
  font-size: 16px;
  line-height: 1.5;
  color: #21222c;
}
.about__advantage-text p {
  margin: 0 0 1em;
}
.about__advantage-text p:last-child {
  margin-bottom: 0;
}
.about__strengths {
  margin: 0 0 50px;
}
.about__strengths-header {
  margin: 0 0 30px;
}
.about__strengths-title {
  margin: 0 0 8px;
}
.about__strengths-subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #9799b1;
}
.about__strengths-line {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  background: #ccd2e3;
}
.about__strengths-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 0 0 30px;
}
.about__strengths-item {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.about__strengths-icon {
  width: 80px;
  height: 80px;
  margin: 0 0 12px;
}
.about__strengths-icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left bottom;
  object-position: left bottom;
}
.about__strengths-name {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #21222c;
}
.about__strengths-desc {
  font-size: 16px;
  line-height: 1.5;
  color: #21222c;
}
.about__strengths-desc p {
  margin: 0 0 1em;
}
.about__strengths-desc p:last-child {
  margin-bottom: 0;
}
.about__team {
  margin: 0 -5vw 50px;
  padding: 40px 5vw;
  background: #f6f8fb;
}
.about__team-title {
  margin: 0 0 16px;
}
.about__team-desc {
  max-width: 1530px;
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.5;
  color: #21222c;
}
.about__team-desc p {
  margin: 0;
}
.about__team-slider .swiper-slide {
  width: 200px;
}
.about__team-member {
  text-align: center;
}
.about__team-photo {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 12px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}
.about__team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about__team-name {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #21222c;
  margin: 0 0 4px;
}
.about__team-role {
  font-size: 16px;
  line-height: 1.5;
  color: #21222c;
}
.about__partners {
  margin: 0 0 50px;
}
.about__partners-title {
  margin: 0 0 24px;
}
.about__partners-slider .swiper-slide {
  width: 242px;
}
.about__partners-card {
  border: 1px solid #ccd2e3;
  border-radius: 5px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 16px;
  background: #ffffff;
}
.about__partners-card img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.about__reviews {
  margin: 0 0 50px;
}
.about__reviews-title {
  margin: 0 0 24px;
}
.about__reviews-slider .swiper-slide {
  width: 319px;
}
.about__reviews-card {
  border: 1px solid #ccd2e3;
  border-radius: 5px;
  padding: 36px;
  background: #ffffff;
  height: 100%;
}
.about__reviews-header {
  margin: 0 0 12px;
}
.about__reviews-name {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #333;
}
.about__reviews-position {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: #333;
  margin: 8px 0 0;
}
.about__reviews-stars {
  margin: 0 0 20px;
}
.about__reviews-stars img {
  display: block;
  height: 18px;
  width: auto;
}
.about__reviews-text {
  font-size: 14px;
  line-height: 1.4;
  color: #585b75;
  margin: 0 0 20px;
}
.about__reviews-photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.about__reviews-photo {
  width: 120px;
  height: 100px;
  background: #d9d9d9;
  border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .about__intro {
    margin: 0 0 50px;
  }
  .about__advantage {
    margin: 0 0 60px;
  }
  .about__advantage-img {
    margin: 0;
  }
  .about__advantage-title {
    margin: 0 0 30px;
  }
  .about__strengths {
    margin: 0 0 60px;
  }
  .about__strengths-list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 24px;
  }
  .about__strengths-subtitle {
    font-size: 16px;
  }
  .about__strengths-icon {
    height: 90px;
  }
  .about__team {
    margin: 0 -32px 60px;
    padding: 50px 32px;
  }
  .about__team-slider {
    overflow: visible;
  }
  .about__team-slider .swiper-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
  }
  .about__team-slider .swiper-slide {
    width: auto !important;
  }
  .about__team-slider .swiper-controls {
    display: none;
  }
  .about__team-photo {
    max-width: 240px;
  }
  .about__partners {
    margin: 0 0 60px;
  }
  .about__partners-slider .swiper-slide {
    width: 280px;
  }
  .about__partners-card {
    height: 100px;
  }
  .about__reviews {
    margin: 0 0 60px;
  }
  .about__reviews-slider .swiper-slide {
    width: 363px;
  }
}
@media screen and (min-width: 1260px) {
  .about__intro {
    margin: 0 auto 60px;
    text-align: center;
  }
  .about__advantage {
    margin: 0 0 80px;
  }
  .about__advantage-title {
    margin: 0 0 40px;
  }
  .about__strengths {
    margin: 0 0 80px;
  }
  .about__strengths-header {
    margin: 0 0 50px;
  }
  .about__strengths-subtitle {
    font-size: 18px;
  }
  .about__strengths-list {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
  }
  .about__strengths-icon {
    height: 100px;
  }
  .about__strengths-name {
    font-size: 24px;
  }
  .about__team {
    margin: 0 -3vw 80px;
    padding: 60px 3vw;
  }
  .about__team-members {
    gap: 40px;
  }
  .about__team-photo {
    max-width: 305px;
  }
  .about__team-name {
    font-size: 24px;
  }
  .about__partners {
    margin: 0 0 80px;
  }
  .about__partners-title {
    margin: 0 0 30px;
  }
  .about__partners-slider .swiper-slide {
    width: 363px;
  }
  .about__partners-card {
    height: 120px;
  }
  .about__reviews {
    margin: 0 0 80px;
  }
  .about__reviews-title {
    margin: 0 0 30px;
  }
}
@media screen and (min-width: 1900px) {
  .about__team {
    margin: 0 calc((-100vw + 1530px) / 2) 100px;
    padding: 80px calc((100vw - 1530px) / 2);
  }
}
/*# sourceMappingURL=about.css.map */
