/* Color styles */
/* Social colors */
/* Effects */
/* Text-size styles */
/* Font family */
/* Effect styles */
/* Grid */
.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;
  }
}
.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;
  }
}
.service-item {
  position: relative;
  height: 100%;
}
.service-item--default:hover .service-item__img, .service-item--small:hover .service-item__img {
  -webkit-box-shadow: 0 0 0 1px #7dc623;
  box-shadow: 0 0 0 1px #7dc623;
}
.service-item--large {
  overflow: hidden;
  background: #fafafa;
  border-radius: 12px;
}
.service-item__title {
  display: block;
  font-weight: 700;
  color: #21222c;
  line-height: 1.3;
}
.service-item__title--default, .service-item__title--small {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.service-item__title--default:hover, .service-item__title--small:hover {
  color: #6ba100;
}
.service-item__title--default:before, .service-item__title--small:before {
  content: "";
  position: absolute;
  inset: 0;
}
.service-item__title--small {
  font-size: 14px;
}
.service-item__img {
  display: block;
  width: 100%;
}
.service-item__img--small, .service-item__img--default {
  margin: 0 0 0.75em;
  border-radius: 12px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.service-item__img--small {
  aspect-ratio: 1/1;
}
.service-item__img--default {
  aspect-ratio: 16/9;
}
.service-item__info {
  padding: 16px 5vw 20px;
}
.service-item__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  margin: 0.7em 0 0;
  list-style: none;
  line-height: 1.3;
  font-size: 14px;
}
.service-item__list-link {
  color: #585b75;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.service-item__list-link:hover {
  color: #6ba100;
}

@media screen and (min-width: 768px) {
  .service-item__info {
    padding: 20px 20px 20px 0;
  }
  .service-item__title--small {
    font-size: inherit;
  }
}
@media screen and (min-width: 1004px) {
  .service-item__info {
    padding: 24px 24px 24px 0;
  }
  .service-item__list {
    font-size: 16px;
  }
}
@media screen and (min-width: 1900px) {
  .service-item__info {
    padding: 28px 28px 28px 0;
  }
  .service-item__list {
    font-size: 18px;
  }
}
.feature-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.feature-item__inner {
  position: absolute;
  left: 0;
  z-index: 1;
  padding: 24px;
}
.feature-item__inner--top {
  top: 0;
}
.feature-item__inner--center {
  top: 20%;
}
.feature-item__icon {
  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;
  width: 36px;
  height: 36px;
  color: #ffffff;
  background: #9fe04e;
  border-radius: 4px;
}
.feature-item__icon svg {
  width: 100%;
  height: 100%;
}
.feature-item__title {
  line-height: 1.3;
}
.feature-item__title--green {
  color: #6ba100;
  font-size: 18px;
  font-weight: 700;
}
.feature-item__title--default {
  font-size: 0.9em;
}
.feature-item__title--default b {
  display: block;
  margin: 0.6em 0 0.2em;
  text-transform: uppercase;
  font-size: 1.4em;
  font-weight: 700;
  color: #21222c;
}
.feature-item__img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.feature-item__img--green {
  aspect-ratio: 1/1;
}
.feature-item__img--default {
  aspect-ratio: 360/300;
}

@media screen and (min-width: 768px) {
  .feature-item__inner {
    padding: 32px;
  }
}
@media screen and (min-width: 1004px) {
  .feature-item__inner {
    padding: 20px;
  }
  .feature-item__inner--center {
    top: 0;
  }
  .feature-item__title--green {
    font-size: 16px;
  }
  .feature-item__title--default {
    font-size: 0.8em;
  }
}
@media screen and (min-width: 1260px) {
  .feature-item__inner {
    padding: 24px;
  }
  .feature-item__inner--center {
    top: 20%;
  }
  .feature-item__title--green {
    font-size: 18px;
  }
  .feature-item__title--green--default {
    font-size: 14px;
  }
}
@media screen and (min-width: 1900px) {
  .feature-item__inner {
    padding: 32px;
  }
  .feature-item__icon {
    width: 40px;
    height: 40px;
  }
  .feature-item__title--green {
    font-size: 20px;
  }
  .feature-item__title--default {
    font-size: 16px;
  }
}
.features {
  row-gap: 20px;
}

@media screen and (min-width: 768px) {
  .features {
    row-gap: 24px;
  }
}
@media screen and (min-width: 1260px) {
  .features {
    row-gap: 30px;
  }
}
.object-item__gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin: 0 0 12px;
}
.object-item__gallery-img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 8px;
}
.object-item__gallery-link:first-child {
  -ms-grid-column-span: 3;
  grid-column: span 3;
}
.object-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 12px;
  margin: 0 0 12px;
  border-bottom: 1px solid #e6ebf4;
}
.object-item__head-title {
  color: #21222c;
  font-weight: 700;
  line-height: 1.2;
}
.object-item__head-area {
  padding: 0.5em 0.8em;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  font-weight: 700;
  color: #21222c;
  background: #f6f8fb;
  border: 1px solid #ccd2e3;
  border-radius: 4px;
}
.object-item__about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.object-item__about-title {
  margin: 0 0 8px;
  font-weight: 700;
  color: #21222c;
}
.object-item__about-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.object-item__about-list li {
  margin: 8px 0 0 0;
}

@media screen and (min-width: 768px) {
  .object-item {
    padding: 24px;
    border: 1px solid #ccd2e3;
    border-radius: 12px;
  }
  .object-item__gallery {
    gap: 12px;
    margin: 0 0 16px;
  }
}
@media screen and (min-width: 1004px) {
  .object-item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .object-item__head {
    font-size: 20px;
  }
  .object-item__head-title, .object-item__head-area {
    font-size: inherit;
  }
}
@media screen and (min-width: 1260px) {
  .object-item {
    gap: 30px;
    padding: 30px;
  }
  .object-item__head {
    padding: 0 0 24px;
    margin: 0 0 24px;
    font-size: 24px;
  }
  .object-item__about {
    gap: 20px;
  }
}
.objects-gallery {
  overflow: visible;
}
.objects-gallery .swiper-slide {
  max-width: 284px;
}

@media screen and (max-width: 359px) {
  .objects-gallery .swiper-slide {
    max-width: 276px;
  }
}
@media screen and (min-width: 768px) {
  .objects-gallery .swiper-slide {
    max-width: 560px;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .objects-gallery .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1004px) {
  .objects-gallery .swiper-slide {
    max-width: 100%;
  }
}
.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%;
}

.montage-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  font-size: 0.9em;
  background: #f6f8fb;
  border-radius: 12px;
}

@media screen and (min-width: 1260px) {
  .montage-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 48px;
    padding: 24px 28px;
    margin: 48px 0 0;
  }
}
@media screen and (min-width: 1900px) {
  .montage-action {
    gap: 60px;
    padding: 28px 32px;
    margin: 56px 0 0;
  }
}
/*# sourceMappingURL=montage.css.map */
