/* 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%;
}

.advantages__intro {
  margin: 0 0 40px;
}
.advantages__intro-img {
  margin: 0 0 24px;
  border-radius: 5px;
  overflow: hidden;
}
.advantages__intro-img img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.advantages__intro-text {
  font-size: 16px;
  line-height: 1.5;
  color: #585b75;
}
.advantages__intro-text p {
  margin: 0 0 1em;
}
.advantages__intro-text p:last-child {
  margin-bottom: 0;
}
.advantages__benefits {
  margin: 24px 0 0;
}
.advantages__benefits-title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  color: #21222c;
}
.advantages__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.advantages__benefits-item {
  position: relative;
  padding: 0 0 0 32px;
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 26px;
  color: #585b75;
}
.advantages__benefits-item:last-child {
  margin-bottom: 0;
}
.advantages__benefits-icon {
  position: absolute;
  top: 4px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #9fe04e;
}
.advantages__benefits-icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 6px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  -webkit-transform: translate(-50%, -60%) rotate(-45deg);
  -ms-transform: translate(-50%, -60%) rotate(-45deg);
  transform: translate(-50%, -60%) rotate(-45deg);
}
.advantages__cards {
  margin: 0 -5vw 40px;
  padding: 40px 5vw;
  background: #f6f8fb;
}
.advantages__cards-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 30px;
}
.advantages__cards-item-icon {
  width: 80px;
  height: 80px;
  margin: 0 0 16px;
}
.advantages__cards-item-icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left bottom;
  object-position: left bottom;
}
.advantages__cards-item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #21222c;
  margin: 0 0 8px;
}
.advantages__cards-item-text {
  font-size: 16px;
  line-height: 1.5;
  color: #585b75;
}
.advantages__description {
  margin: 0 0 40px;
  font-size: 16px;
  line-height: 1.5;
  color: #585b75;
}
.advantages__description p {
  margin: 0 0 1em;
}
.advantages__description p:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .advantages__intro {
    margin: 0 0 50px;
  }
  .advantages__intro-img {
    margin: 0;
  }
  .advantages__benefits-item {
    font-size: 17px;
  }
  .advantages__cards {
    margin: 0 -32px 50px;
    padding: 50px 32px;
  }
  .advantages__cards-list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 24px;
  }
  .advantages__cards-item-icon {
    height: 90px;
  }
  .advantages__description {
    margin: 0 0 50px;
    font-size: 17px;
  }
}
@media screen and (min-width: 1260px) {
  .advantages__intro {
    margin: 0 0 60px;
  }
  .advantages__intro-text {
    font-size: 18px;
  }
  .advantages__benefits-title {
    font-size: 20px;
  }
  .advantages__benefits-item {
    font-size: 18px;
  }
  .advantages__cards {
    margin: 0 -3vw 60px;
    padding: 60px 3vw;
  }
  .advantages__cards-list {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
  }
  .advantages__cards-item-icon {
    height: 100px;
  }
  .advantages__cards-item-title {
    font-size: 20px;
  }
  .advantages__cards-item-text {
    font-size: 18px;
  }
  .advantages__description {
    margin: 0 0 60px;
    font-size: 18px;
  }
}
@media screen and (min-width: 1900px) {
  .advantages__cards {
    margin: 0 calc((-100vw + 1530px) / 2) 80px;
    padding: 80px calc((100vw - 1530px) / 2);
  }
}
/*# sourceMappingURL=advantages.css.map */
