@charset "UTF-8";
:root {
  --mobile: 767px;
  --tablet: 1280px;
  --laptop: 1440px;
  --realMobile: 644px;
}

:root {
  --header-margin: 24px;
  --container-padding: 16px;
  --container-width: 1280px;
  --default-duration: .3s;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.accordion {
  display: grid;
  grid-template-rows: 1fr auto;
  height: -moz-min-content;
  height: min-content;
}
.accordion__toggler {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}
.accordion__controller:is(input[type=checkbox]) {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.accordion__wrapper {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows var(--default-duration) ease;
}
.accordion__controller:checked ~ .accordion__wrapper {
  grid-template-rows: 1fr;
}
.accordion__content {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

section.container-1440 {
  --containerWidth: 1470px;
}
@media (max-width: 1536px) {
  section.container-1440 {
    --containerWidth: 1470px;
  }
}
@media (max-width: 1500px) {
  section.container-1440 {
    --containerWidth: calc(100vw - 30px);
  }
}
@media (max-width: 1200px) {
  section.container-1440 {
    --containerWidth: 962px;
    margin: 0 auto;
  }
}
@media (max-width: 992px) {
  section.container-1440 {
    --containerWidth: 690px;
  }
}
@media (max-width: 767px) {
  section.container-1440 {
    --containerWidth: 510px;
  }
}
@media (max-width: 540px) {
  section.container-1440 {
    --containerWidth: calc(100vw - 30px);
  }
}

.new-ad__arrow-button, .page-wrap .splide__arrows .splide__arrow, .new-ad__services__card__button {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px;
  border-radius: 6px;
  border: 2px solid var(--accent);
  background-color: #FFF;
  --color: var(--accent);
  transition-property: border-color, color, background-color;
  transition-duration: var(--default-duration);
  transition-timing-function: ease;
}
.new-ad__arrow-button:hover, .page-wrap .splide__arrows .splide__arrow:hover, .new-ad__services__card__button:hover, .new-ad__arrow-button--hover {
  background-color: var(--accent);
  border: 2px solid var(--accent);
  --color: var(--White, #fff);
}
.new-ad__arrow-button--pink, .page-wrap .splide__arrows .splide__arrow {
  --accent: var(--basic-colors-pink, #E42E87);
}
.new-ad__arrow-button--green, .new-ad__services__card__button {
  --accent: var(--direction-green, #80DC31);
}
.new-ad__header {
  margin: 40px 0 20px 0;
  color: var(--direction-green, #80DC31);
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  font-family: Cuprum;
}
@media (max-width: 1280px) {
  .new-ad__header {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .new-ad__header {
    font-size: 27px;
  }
}
.new-ad__header__inner {
  padding: 40px;
  border: 2px solid var(--direction-green, #80DC31);
}
.new-ad__header__inner:is(h1) {
  font-size: inherit;
  font-weight: bold;
  line-height: 1.1;
  color: inherit;
}
@media (max-width: 767px) {
  .new-ad__header__inner {
    padding: 20px;
  }
}
.new-ad__infoslider {
  margin: 80px 0;
}
.new-ad__infoslider__slide {
  display: grid;
  grid-template-columns: 75fr 100fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 1280px) {
  .new-ad__infoslider__slide {
    grid-template-columns: 1fr;
  }
}
.new-ad__infoslider__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1280px) {
  .new-ad__infoslider__text {
    max-width: 603px;
  }
}
.new-ad__infoslider__title {
  color: var(--basic-colors-blue, #30549A);
  font-family: Cuprum;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .new-ad__infoslider__title {
    font-size: 28px;
  }
}
.new-ad__infoslider__paragraph {
  color: var(--Black, #000);
  font-family: "Open Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.new-ad__infoslider__paragraph a {
  text-decoration: none;
  border-bottom: none;
  color: var(--basic-colors-pink, #E42E87);
  font-weight: 700;
}
@media (max-width: 1280px) {
  .new-ad__infoslider__paragraph {
    font-size: 14px;
  }
}
.new-ad__infoslider__img {
  width: 100%;
  height: 100%;
}
.new-ad__infoslider__img img {
  min-height: 100%;
  width: 100%;
  display: block;
  height: auto;
  aspect-ratio: 845/417;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media (max-width: 1280px) {
  .new-ad__infoslider__img img {
    aspect-ratio: 672/417;
  }
}
@media (max-width: 767px) {
  .new-ad__infoslider__img img {
    aspect-ratio: 330/258;
  }
}
.new-ad__infoslider .splide {
  position: relative;
}
.new-ad__infoslider .splide__slide:not(.is-active) {
  height: 0;
}
.new-ad__infoslider .splide__arrows {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.new-ad__advantages {
  margin: 40px 0;
  padding: 60px 0;
  background-color: #E3F4E4;
}
.new-ad__advantages__inner {
  display: grid;
  grid-template-columns: 9fr 3fr;
  gap: 30px;
}
@media (max-width: 1280px) {
  .new-ad__advantages__inner {
    grid-template-columns: 1fr;
  }
}
.new-ad__advantages__bigtext {
  font: 700 70px/1 Cuprum;
  text-transform: uppercase;
}
.new-ad__advantages__bigtext span {
  font-size: 0.7em;
}
@media (max-width: 1280px) {
  .new-ad__advantages__bigtext {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .new-ad__advantages__bigtext {
    font-size: 50px;
  }
}
.new-ad__advantages__midtext {
  font: normal 28px/1.2 Cuprum;
}
@media (max-width: 1280px) {
  .new-ad__advantages__midtext {
    font-size: 18px;
  }
}
.new-ad__advantages__smalltext {
  font: 700 24px/1.2 Cuprum;
  text-transform: uppercase;
}
.new-ad__advantages__xsmalltext {
  font: normal 22px/1.2 Cuprum;
}
.new-ad__advantages__item {
  padding: 20px;
  border-radius: 6px;
  color: var(--text);
}
@media (max-width: 1280px) {
  .new-ad__advantages__item:nth-child(1) {
    order: 1;
  }
}
@media (max-width: 1280px) {
  .new-ad__advantages__item:nth-child(2) {
    order: 3;
  }
}
@media (max-width: 767px) {
  .new-ad__advantages__item:nth-child(2) {
    order: 4;
  }
}
@media (max-width: 1280px) {
  .new-ad__advantages__item:nth-child(3) {
    order: 2;
  }
}
@media (max-width: 767px) {
  .new-ad__advantages__item:nth-child(3) {
    order: 3;
  }
}
@media (max-width: 1280px) {
  .new-ad__advantages__item:nth-child(4) {
    order: 4;
  }
}
@media (max-width: 767px) {
  .new-ad__advantages__item:nth-child(4) {
    order: 2;
  }
}
.new-ad__advantages__item:nth-child(4) img {
  width: 100%;
}
.new-ad__advantages__item:nth-child(2n) {
  gap: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1280px) {
  .new-ad__advantages__item:nth-child(2n) {
    display: grid;
    grid-template-columns: minmax(min-content, 241px) 1fr;
    align-items: center;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .new-ad__advantages__item:nth-child(2n) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.new-ad__advantages__item:nth-child(2n+1) {
  display: grid;
  grid-template-columns: minmax(max-content, 241px) 1fr;
  align-items: center;
  gap: 120px;
}
@media (max-width: 1280px) {
  .new-ad__advantages__item:nth-child(2n+1) {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .new-ad__advantages__item:nth-child(2n+1) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.new-ad__advantages__item--green {
  --accent: var(--direction-green, #80DC31);
  --text: var(--White, #fff);
}
.new-ad__advantages__item--white {
  --accent: var(--White, #fff);
  --text: var(--basic-colors-blue, #30549A);
}
.new-ad__advantages__item--fill {
  background-color: var(--accent);
}
.new-ad__advantages__item--stroke {
  border: 1px solid var(--accent);
  --text: var(--basic-colors-blue, #30549A);
}
.new-ad__advantages__item__group {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
@media (max-width: 1280px) {
  .new-ad__advantages__item__group {
    gap: 20px;
  }
}
.new-ad__advantages__item img {
  height: auto;
  max-width: 169px;
}
@media (max-width: 1280px) {
  .new-ad__advantages__item img {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .new-ad__advantages__item img {
    max-width: 205px;
  }
}
.new-ad__solutions {
  padding: 40px 0;
  margin: 40px 0;
  overflow: hidden;
}
.new-ad__solutions__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow: hidden;
}
.new-ad__solutions__inner .new-ad__solutions__slider .splide__arrows {
  display: none;
}
.new-ad__solutions .swiper-wrapper {
  display: flex;
  margin: 0;
}
.new-ad__solutions .swiper-slide {
  list-style: none;
  flex-shrink: 0;
}
.new-ad__solutions .swiper-button-disabled {
  pointer-events: none;
}
.new-ad__solutions__title {
  color: var(--basic-colors-blue, #30549A);
  font-family: Cuprum;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .new-ad__solutions__title {
    font-size: 28px;
  }
}
.new-ad__solutions__card {
  display: grid;
  grid-template-columns: 93px 1fr;
  align-items: flex-start;
}
@media (max-width: 1280px) {
  .new-ad__solutions__card {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .new-ad__solutions__card {
    grid-template-columns: 63px 1fr;
    align-items: flex-start;
  }
}
.new-ad__solutions__card__img img {
  width: 100%;
  display: block;
  height: auto;
}
.new-ad__solutions__card__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .new-ad__solutions__card__text {
    gap: 12px;
  }
}
.new-ad__solutions__card__title {
  color: var(--basic-colors-blue, #30549A);
  font-family: Cuprum;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .new-ad__solutions__card__title {
    font-size: 20px;
  }
}
.new-ad__solutions__card__paragraph {
  color: var(--basic-colors-dark-grey, #535B6B);
  font-family: Cuprum;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
@media (max-width: 767px) {
  .new-ad__solutions__card__paragraph {
    font-size: 16px;
  }
}
.new-ad__services {
  padding: 40px 0;
  margin: 40px 0;
  overflow: hidden;
}
.new-ad__services__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.new-ad__services__title {
  color: var(--basic-colors-blue, #30549A);
  font-family: Cuprum;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .new-ad__services__title {
    font-size: 28px;
  }
}
.new-ad__services__block {
  height: 100%;
}
@media (min-width: 767px) {
  .new-ad__services__block {
    display: contents;
  }
}
@media (min-width: 767px) {
  .new-ad__services .splide__slide {
    display: contents;
  }
}
@media (min-width: 767px) {
  .new-ad__services .splide__arrows {
    display: none !important;
  }
}
@media (min-width: 767px) {
  .new-ad__services .splide__list:is(.is-initialized:not(.is-active) *) {
    display: grid;
    grid-auto-rows: 1fr;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .new-ad__services .splide__list:is(.is-initialized:not(.is-active) *) {
    grid-template-columns: repeat(6, 1fr);
  }
}
.new-ad__services .splide__track {
  overflow: visible;
}
.new-ad__services__item {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .new-ad__services__item:nth-child(2) {
    display: none;
  }
}
.new-ad__services__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}
.new-ad__services__card {
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 24px 20px 20px 24px;
  color: var(--basic-colors-blue, #30549A);
  font: 800 16px/1.1 "Open Sans";
  text-transform: uppercase;
  border: 2px solid var(--basic-colors-dark-grey, #535B6B);
  background: #FFF;
  height: 100%;
  justify-content: space-between;
  transition-property: color, border-color;
  transition-duration: var(--default-duration);
  transition-timing-function: ease;
  /* &:hover {
  	color: var(--basic-colors-pink, #E42E87);
  	border: 2px solid var(--basic-colors-pink, #E42E87);
  }

  &:hover &__button {
  	@extend .new-ad__arrow-button--pink, .new-ad__arrow-button--hover;
  } */
}
.new-ad__services__card__button {
  align-self: flex-end;
  pointer-events: none;
}
.new-ad__services__card__button::after {
  content: "";
  transition: background-color var(--default-duration) ease;
}
.new-ad__achievements {
  padding: 60px 0;
  background-color: #E3F4E4;
  margin: 40px 0;
}
.new-ad__achievements__inner {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 100px;
}
@media (max-width: 1280px) {
  .new-ad__achievements__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.new-ad__achievements__header {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1280px) {
  .new-ad__achievements__header {
    display: contents;
  }
}
.new-ad__achievements__title {
  color: var(--basic-colors-blue, #30549A);
  font-family: Cuprum;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .new-ad__achievements__title {
    font-size: 28px;
  }
}
@media (max-width: 1280px) {
  .new-ad__achievements__controls {
    order: 10;
  }
}
.new-ad__achievements__slider {
  min-width: 0;
}
.new-ad__achievements__slide {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.new-ad__achievements__slide__title {
  color: var(--basic-colors-blue, #30549A);
  font-family: Cuprum;
  font-size: 58px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .new-ad__achievements__slide__title {
    font-size: 38px;
  }
}
.new-ad__achievements__slide__text {
  color: var(--basic-colors-blue, #30549A);
  font-family: Cuprum;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 767px) {
  .new-ad__achievements__slide__text {
    font-size: 16px;
  }
}
.new-ad__achievements .splide__slide:not(.is-active) {
  height: 0;
}

.page-wrap .splide__arrows {
  display: flex;
  gap: 10px;
}
.page-wrap .splide__arrows .splide__arrow::after {
  content: "";
}
.icon--arrow-down {
  -webkit-mask-image: url(/local/templates/.default/img/icon/stack.svg#arrow-down);
  mask-image: url(/local/templates/.default/img/icon/stack.svg#arrow-down);
}

.icon--arrow-left, .page-wrap .splide__arrows .splide__arrow--prev::after {
  -webkit-mask-image: url(/local/templates/.default/img/icon/stack.svg#arrow-left);
  mask-image: url(/local/templates/.default/img/icon/stack.svg#arrow-left);
}

.icon--arrow-right, .new-ad__services__card__button::after, .page-wrap .splide__arrows .splide__arrow--next::after {
  -webkit-mask-image: url(/local/templates/.default/img/icon/stack.svg#arrow-right);
  mask-image: url(/local/templates/.default/img/icon/stack.svg#arrow-right);
}

.icon--arrow-up {
  -webkit-mask-image: url(/local/templates/.default/img/icon/stack.svg#arrow-up);
  mask-image: url(/local/templates/.default/img/icon/stack.svg#arrow-up);
}

.icon--chevron-down {
  -webkit-mask-image: url(/local/templates/.default/img/icon/stack.svg#chevron-down);
  mask-image: url(/local/templates/.default/img/icon/stack.svg#chevron-down);
}

.icon--headphones {
  -webkit-mask-image: url(/local/templates/.default/img/icon/stack.svg#headphones);
  mask-image: url(/local/templates/.default/img/icon/stack.svg#headphones);
}

.icon--new-ad__solutions1 {
  -webkit-mask-image: url(/local/templates/.default/img/icon/stack.svg#new-ad__solutions1);
  mask-image: url(/local/templates/.default/img/icon/stack.svg#new-ad__solutions1);
}

.icon--new-ad__solutions2 {
  -webkit-mask-image: url(/local/templates/.default/img/icon/stack.svg#new-ad__solutions2);
  mask-image: url(/local/templates/.default/img/icon/stack.svg#new-ad__solutions2);
}

.icon--new-ad__solutions3 {
  -webkit-mask-image: url(/local/templates/.default/img/icon/stack.svg#new-ad__solutions3);
  mask-image: url(/local/templates/.default/img/icon/stack.svg#new-ad__solutions3);
}

.icon--new-ad__solutions4 {
  -webkit-mask-image: url(/local/templates/.default/img/icon/stack.svg#new-ad__solutions4);
  mask-image: url(/local/templates/.default/img/icon/stack.svg#new-ad__solutions4);
}

.icon--phone {
  -webkit-mask-image: url(/local/templates/.default/img/icon/stack.svg#phone);
  mask-image: url(/local/templates/.default/img/icon/stack.svg#phone);
}

.icon--search {
  -webkit-mask-image: url(/local/templates/.default/img/icon/stack.svg#search);
  mask-image: url(/local/templates/.default/img/icon/stack.svg#search);
}

.icon--tg {
  -webkit-mask-image: url(/local/templates/.default/img/icon/stack.svg#tg);
  mask-image: url(/local/templates/.default/img/icon/stack.svg#tg);
}

.icon, .new-ad__services__card__button::after, .page-wrap .splide__arrows .splide__arrow::after {
  display: inline-flex;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  flex-shrink: 0;
  transition-duration: var(--default-duration);
  transition-timing-function: ease;
  transition-property: opacity, background-color, transform;
  width: var(--icon-width, var(--size, 24px));
  height: var(--icon-height, var(--size, 24px));
  background-color: var(--color, currentColor);
}

:root {
  --direction-green: #80DC31;
  --basic-colors-light-grey: #EAEBF5;
  --basic-colors-pink: #E42E87;
  --White: #FFF;
  --Black: #000;
}

.container-1440 {
  --containerWidth: 1470px;
  width: 100%;
  max-width: var(--containerWidth);
  margin: 0 auto;
}
@media (max-width: 1536px) {
  .container-1440 {
    --containerWidth: calc(100vw - 30px);
    margin: 0 15px;
  }
}

.section-header {
  color: #30549a;
  font: 700 36px/1.1 Cuprum;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 768px) {
  .section-header {
    font-size: 28px;
  }
}

.header-with-arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.header-with-arrows .header-arrows {
  display: flex;
  gap: 10px;
}
.header-with-arrows .header-arrows .arrow-prev, .header-with-arrows .header-arrows .arrow-next {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: #fff;
  border: 2px solid #e42e87;
  border-radius: 6px;
  transition: all 0.2s linear;
}
.header-with-arrows .header-arrows .arrow-prev:is(.arrow-prev), .header-with-arrows .header-arrows .arrow-next:is(.arrow-prev) {
  transform: rotate(180deg);
}
.header-with-arrows .header-arrows .arrow-prev svg path, .header-with-arrows .header-arrows .arrow-next svg path {
  transition: stroke 0.2s linear;
}
.header-with-arrows .header-arrows .arrow-prev:hover, .header-with-arrows .header-arrows .arrow-next:hover {
  background-color: #e42e87;
}
.header-with-arrows .header-arrows .arrow-prev:hover svg path, .header-with-arrows .header-arrows .arrow-next:hover svg path {
  stroke: #fff;
}

section.main-banner {
  font-size: 0;
}
section.main-banner header {
  padding: 40px 40px 50px;
  border: 2px solid #80dc31;
  border-radius: 2px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
section.main-banner h2 {
  color: #30549A;
  font: bold 60px/1.1 Cuprum;
  margin: 0;
  max-width: 650px;
}
section.main-banner h2 span {
  color: #80dc31;
}
section.main-banner .info {
  font: normal 20px/1.4 "Open Sans";
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
  max-width: 521px;
}
section.main-banner .info p {
  margin: 0;
}
section.main-banner .button-link {
  align-self: flex-end;
  background-color: #e5087c;
  padding: 16px 24px;
  border-radius: 6px;
  font: normal 20px/1 "Open Sans";
  color: #fff;
  text-decoration: none;
  border: none;
  transition: background 0.2s linear;
}
section.main-banner .button-link:hover {
  background-color: #30549a;
}
section.main-banner .windmill {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: none;
  border-radius: 0 0 6px 6px;
}
@media (min-width: 1281px) {
  section.main-banner .windmill.fullsize {
    display: block;
  }
}
@media (max-width: 1280px) {
  section.main-banner .windmill.middlesize {
    display: block;
  }
}
@media (max-width: 1280px) {
  section.main-banner header {
    flex-direction: column;
    gap: 30px;
  }
  section.main-banner h2, section.main-banner .info {
    max-width: 100%;
  }
  section.main-banner h2 {
    font-size: 50px;
  }
  section.main-banner .info {
    font-size: 18px;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  section.main-banner header {
    padding: 20px;
  }
  section.main-banner h2 {
    font-size: 27px;
  }
  section.main-banner .info {
    font-size: 14px;
  }
  section.main-banner .windmill.middlesize {
    display: none;
  }
  section.main-banner .windmill.smallsize {
    display: block;
  }
}

section.page-menu {
  margin-top: 20px;
  width: 100%;
  height: 82px;
  background-color: #eaebf5;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 297px 1fr;
  border-radius: 6px;
}
@media (max-width: 1280px) {
  section.page-menu {
    height: auto;
    grid-template-columns: 100%;
  }
}
section.page-menu .menu-element-wrapper {
  position: relative;
}
section.page-menu .menu-element-wrapper:first-child .menu-element {
  border-radius: 6px 0 0 6px;
}
section.page-menu .menu-element-wrapper:last-child .menu-element {
  border-radius: 0 6px 6px 0;
}
section.page-menu .menu-element-wrapper .submenu {
  --normalColor: #000;
  --hoverColor: #e42e87;
  display: none;
  position: absolute;
  top: 100%;
  left: 0px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 10px 14px 0px rgba(17, 64, 110, 0.149);
  padding: 30px;
  margin: 0;
  z-index: 3;
  list-style: none;
}
section.page-menu .menu-element-wrapper .submenu li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
section.page-menu .menu-element-wrapper .submenu li:last-child {
  margin-bottom: 0;
}
section.page-menu .menu-element-wrapper .submenu li svg {
  flex-shrink: 0;
}
section.page-menu .menu-element-wrapper .submenu li a {
  font: normal 14px/1.4 "Open Sans";
  color: var(--normalColor);
  border-bottom: none;
}
section.page-menu .menu-element-wrapper .submenu li:where(:hover, :active, :focus) {
  cursor: pointer;
}
section.page-menu .menu-element-wrapper .submenu li:where(:hover, :active, :focus) svg path {
  stroke: var(--hoverColor);
  transition: stroke 0.2s linear;
}
section.page-menu .menu-element-wrapper .submenu li:where(:hover, :active, :focus) a {
  font-weight: 700;
  color: var(--hoverColor);
}
@media (max-width: 1280px) {
  section.page-menu .menu-element-wrapper .submenu {
    position: static;
  }
}
@media (min-width: 1281px) {
  section.page-menu .menu-element-wrapper:hover .menu-element {
    --textColor: #fff;
    background-color: #e42e87;
  }
  section.page-menu .menu-element-wrapper:hover .menu-element::after {
    filter: brightness(10);
    transform: rotate(-180deg);
  }
  section.page-menu .menu-element-wrapper:hover .submenu {
    display: block;
  }
}
@media (min-width: 1281px) and (max-width: 1280px) {
  section.page-menu .menu-element-wrapper:hover:where(.open) .menu-element {
    padding-bottom: 10px;
  }
  section.page-menu .menu-element-wrapper:hover:where(.open) .submenu {
    --normalColor: #fff;
    --hoverColor: #fff;
    padding: 0 20px 20px;
    position: static;
    background-color: #e42e87;
  }
  section.page-menu .menu-element-wrapper:hover:where(.open) .submenu li {
    opacity: 0.7;
  }
  section.page-menu .menu-element-wrapper:hover:where(.open) .submenu li:hover {
    opacity: 1;
  }
  section.page-menu .menu-element-wrapper:hover:where(.open) .submenu li svg path {
    stroke: #fff;
  }
}
@media (max-width: 1280px) {
  section.page-menu .menu-element-wrapper.open {
    background-color: #e42e87;
    display: flex;
    flex-direction: column;
  }
  section.page-menu .menu-element-wrapper.open .menu-element {
    --textColor: #fff;
    background-color: #e42e87;
  }
  section.page-menu .menu-element-wrapper.open .menu-element::after {
    filter: brightness(10);
    transform: rotate(-180deg);
  }
  section.page-menu .menu-element-wrapper.open .submenu {
    display: block;
  }
}
@media (max-width: 1280px) and (max-width: 1280px) {
  section.page-menu .menu-element-wrapper.open:where(.open) .menu-element {
    padding-bottom: 10px;
  }
  section.page-menu .menu-element-wrapper.open:where(.open) .submenu {
    --normalColor: #fff;
    --hoverColor: #fff;
    padding: 0 20px 20px;
    position: static;
    background-color: #e42e87;
  }
  section.page-menu .menu-element-wrapper.open:where(.open) .submenu li {
    opacity: 0.7;
  }
  section.page-menu .menu-element-wrapper.open:where(.open) .submenu li:hover {
    opacity: 1;
  }
  section.page-menu .menu-element-wrapper.open:where(.open) .submenu li svg path {
    stroke: #fff;
  }
}
@media (max-width: 1280px) {
  section.page-menu .menu-element-wrapper.with-submenu .menu-element::after {
    transition: all 0.2s linear;
    height: 24px;
    content: url("./img/svg/menu-arrow.svg");
  }
}
section.page-menu .menu-element {
  --textColor: #30549a;
  padding-left: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s linear;
}
section.page-menu .menu-element > :where(a, span) {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font: 700 20px/1.1 "Open Sans";
  color: var(--textColor);
  text-decoration: none;
  border-bottom: none;
}
@media (max-width: 1280px) {
  section.page-menu .menu-element {
    padding: 20px;
  }
  section.page-menu .menu-element > :where(a, span) {
    text-align: left;
  }
}
@media (max-width: 768px) {
  section.page-menu .menu-element {
    padding: 16px 20px;
  }
  section.page-menu .menu-element > :where(a, span) {
    font-size: 18px;
  }
}

section.our-mission {
  margin-top: 80px;
  padding: 38px 172px 40px 38px;
  display: flex;
  align-items: center;
  gap: 100px;
  border-radius: 6px;
  border: 2px solid #e42e87;
}
section.our-mission h2, section.our-mission h3 {
  flex-shrink: 0;
  color: #e42e87;
  font: 700 31px/1 Cuprum;
  margin: 0;
  padding: 0;
  text-transform: none;
}
section.our-mission .info {
  max-width: 814px;
  font: normal 20px/1.4 "Open Sans";
  color: #000;
}
@media (max-width: 1280px) {
  section.our-mission {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  section.our-mission .info {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  section.our-mission {
    margin-top: 50px;
    padding: 20px;
  }
  section.our-mission h2 {
    font-size: 28px;
  }
  section.our-mission .info {
    font-size: 18px;
  }
}

section.resolution {
  margin-top: 80px;
  padding: 60px 0;
  background-color: #e3f4e4;
}
@media (max-width: 768px) {
  section.resolution {
    padding: 40px 0;
  }
}
section.resolution .container-1440 {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@media (max-width: 1280px) {
  section.resolution .container-1440 {
    flex-direction: column;
  }
}
section.resolution .title-and-arrows {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1280px) {
  section.resolution .title-and-arrows {
    flex-direction: row;
    align-items: center;
  }
}
section.resolution .resolution-arrows {
  display: flex;
}
section.resolution .resolution-arrows.hidden {
  display: none;
}
section.resolution .resolution-arrows .arrow-prev, section.resolution .resolution-arrows .arrow-next {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: #fff;
  border: 2px solid #e42e87;
  border-radius: 6px;
  transition: all 0.2s linear;
}
section.resolution .resolution-arrows .arrow-prev:is(.arrow-prev), section.resolution .resolution-arrows .arrow-next:is(.arrow-prev) {
  transform: rotate(180deg);
}
section.resolution .resolution-arrows .arrow-prev svg path, section.resolution .resolution-arrows .arrow-next svg path {
  transition: stroke 0.2s linear;
}
section.resolution .resolution-arrows .arrow-prev:hover, section.resolution .resolution-arrows .arrow-next:hover {
  background-color: #e42e87;
}
section.resolution .resolution-arrows .arrow-prev:hover svg path, section.resolution .resolution-arrows .arrow-next:hover svg path {
  stroke: #fff;
}
@media (max-width: 1280px) {
  section.resolution .resolution-arrows {
    gap: 10px;
  }
}
section.resolution .resolution-links {
  overflow: hidden;
}
section.resolution .resolution-links .swiper-wrapper {
  display: flex;
  max-width: 980px;
}
@media (max-width: 1280px) {
  section.resolution .resolution-links .swiper-wrapper {
    max-width: 100%;
  }
}
section.resolution .resolution {
  max-width: 485px;
  border: 2px solid #535b6b;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border 0.2s linear;
  flex-shrink: 0;
}
section.resolution .resolution .card-title {
  color: #80dc31;
  font: 800 60px/1.1 "Open Sans";
  border: none;
  text-decoration: none;
}
@media (max-width: 1280px) {
  section.resolution .resolution .card-title {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  section.resolution .resolution .card-title {
    font-size: 30px;
  }
}
section.resolution .resolution .card-body {
  display: flex;
  align-items: center;
  gap: 20px;
}
section.resolution .resolution .card-body .card-text {
  font: 400 18px/1.3 "Open Sans";
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
  section.resolution .resolution .card-body .card-text {
    font-size: 16px;
  }
}
section.resolution .resolution .card-body a {
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 2px solid #80dc31;
  border-radius: 6px;
  transition: all 0.2s linear;
}
section.resolution .resolution .card-body a svg {
  transition: stroke 0.2s linear;
}
section.resolution .resolution:hover {
  border-color: #e42e87;
}
section.resolution .resolution:hover .card-title {
  color: #e42e87;
  text-decoration: underline;
}
section.resolution .resolution:hover .card-body a {
  background-color: #e42e87;
  border-color: #e42e87;
}
section.resolution .resolution:hover .card-body a svg path {
  stroke: #fff;
}
@media (max-width: 1280px) {
  section.resolution .resolution {
    max-width: calc(50% - 5px);
  }
}
@media (max-width: 768px) {
  section.resolution .resolution {
    max-width: 100%;
  }
}

section.products {
  margin-top: 80px;
}
section.products header {
  margin-bottom: 40px;
}
section.products .swiper {
  overflow: hidden;
}
section.products .swiper-wrapper {
  display: flex;
}
section.products .swiper-slide {
  border: 2px solid #535b6b;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border 0.2s linear;
  flex-shrink: 0;
}
section.products .swiper-slide .card-title {
  color: #80dc31;
  font: 800 60px/1.1 "Open Sans";
  border: none;
  text-decoration: none;
}
@media (max-width: 1280px) {
  section.products .swiper-slide .card-title {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  section.products .swiper-slide .card-title {
    font-size: 30px;
  }
}
section.products .swiper-slide .card-body {
  display: flex;
  align-items: center;
  gap: 20px;
}
section.products .swiper-slide .card-body .card-text {
  font: 400 18px/1.3 "Open Sans";
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
  section.products .swiper-slide .card-body .card-text {
    font-size: 16px;
  }
}
section.products .swiper-slide .card-body a {
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 2px solid #80dc31;
  border-radius: 6px;
  transition: all 0.2s linear;
}
section.products .swiper-slide .card-body a svg {
  transition: stroke 0.2s linear;
}
section.products .swiper-slide:hover {
  border-color: #e42e87;
}
section.products .swiper-slide:hover .card-title {
  color: #e42e87;
  text-decoration: underline;
}
section.products .swiper-slide:hover .card-body a {
  background-color: #e42e87;
  border-color: #e42e87;
}
section.products .swiper-slide:hover .card-body a svg path {
  stroke: #fff;
}
section.services {
  margin-top: 80px;
}
section.services header {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  section.services header .header-arrows {
    display: none;
  }
}
section.services .service-cards {
  overflow: hidden;
}
section.services .swiper-wrapper {
  display: grid;
  gap: 10px;
  grid-auto-rows: 241px;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1280px) {
  section.services .swiper-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  section.services .swiper-wrapper {
    display: flex;
    gap: 0;
  }
  section.services .swiper-wrapper .service-card {
    flex-shrink: 0;
    flex-basis: 100%;
  }
}
section.services .service-card {
  text-transform: uppercase;
  font: 800 16px/1.1 "Open Sans";
  transition: all 0.2s linear;
}
section.services .service-card a {
  color: #30549a;
}
section.services .service-card.swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  border: 2px solid #535b6b;
  border-radius: 6px;
  padding: 24px 20px 20px 24px;
}
section.services .service-card.image-card:first-of-type {
  grid-column: 2;
  grid-row: 1;
}
section.services .service-card.image-card:nth-of-type(2) {
  grid-column: 4;
  grid-row: 1;
}
section.services .service-card.image-card:nth-of-type(3) {
  grid-column: 6;
  grid-row: 1;
}
section.services .service-card.image-card:nth-of-type(4) {
  grid-column: 1;
  grid-row: 2;
}
section.services .service-card.image-card:nth-of-type(5) {
  grid-column: 3;
  grid-row: 2;
}
section.services .service-card.image-card:nth-of-type(6) {
  grid-column: 5;
  grid-row: 2;
}
@media (max-width: 1280px) {
  section.services .service-card.image-card:nth-of-type(2) {
    grid-column: 1;
    grid-row: 2;
  }
  section.services .service-card.image-card:nth-of-type(3) {
    grid-column: 3;
    grid-row: 2;
  }
  section.services .service-card.image-card:nth-of-type(4) {
    grid-column: 1;
    grid-row: 3;
  }
  section.services .service-card.image-card:nth-of-type(5) {
    grid-column: 3;
    grid-row: 3;
  }
  section.services .service-card.image-card:nth-of-type(6) {
    grid-column: 2;
    grid-row: 4;
  }
}
section.services .service-card .arrow-button {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 2px solid #80dc31;
  border-radius: 6px;
  transition: all 0.2s linear;
}
section.services .service-card .arrow-button svg {
  transition: stroke 0.2s linear;
}
section.services .service-card .arrow-button {
  margin-top: auto;
  align-self: flex-end;
}
section.services .service-card .arrow-button svg path {
  transition: stroke 0.2s linear;
}
section.services .service-card:hover {
  border-color: #e42e87;
}
section.services .service-card:hover .arrow-button {
  background-color: #e42e87;
  border-color: #e42e87;
}
section.services .service-card:hover .arrow-button svg path {
  stroke: #fff;
}
section.services .service-card:hover a {
  color: #e42e87;
}
section.services .service-card a {
  text-decoration: none;
  border-bottom: 0;
}
section.services .service-card > img {
  border-radius: 6px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 768px) {
  section.services .service-card.image-card {
    display: none;
  }
}

section.projects {
  margin-top: 80px;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  section.projects {
    margin-bottom: 80px;
  }
}
section.projects header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
section.projects header a {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: #fff;
  border: 2px solid #e42e87;
  border-radius: 6px;
  transition: all 0.2s linear;
}
section.projects header a:is(.arrow-prev) {
  transform: rotate(180deg);
}
section.projects header a svg path {
  transition: stroke 0.2s linear;
}
section.projects header a:hover {
  background-color: #e42e87;
}
section.projects header a:hover svg path {
  stroke: #fff;
}
section.projects .project-links {
  display: grid;
  grid-template: 241px 241px/2.101fr 1fr 1fr;
  gap: 10px;
}
section.projects .project-links .big-link {
  grid-row-end: span 2;
}
section.projects .project-links .long-link {
  grid-column-end: span 2;
}
@media (max-width: 1500px) {
  section.projects .project-links {
    grid-template: repeat(3, 158px)/1fr 1fr;
  }
  section.projects .project-links .big-link {
    grid-row-end: span 3;
  }
  section.projects .project-links .long-link {
    grid-column-end: span 1;
  }
}
@media (max-width: 768px) {
  section.projects .project-links {
    grid-template-columns: 100%;
    grid-auto-rows: 158px;
  }
  section.projects .project-links .big-link {
    grid-row-end: span 1;
  }
}
section.projects .project-link {
  border-radius: 6px;
  overflow: hidden;
  display: grid;
}
section.projects .project-link .title-and-button {
  grid-row: 1;
  grid-column: 1;
  width: 100%;
  text-decoration: none;
  border: none;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  align-self: end;
  z-index: 1;
  padding: 0 20px 20px 20px;
}
section.projects .project-link > img {
  grid-row: 1;
  grid-column: 1;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
section.projects .project-link .title {
  color: #fff;
  font: 800 20px/1.1 "Open Sans";
  text-transform: uppercase;
}
section.projects .project-link .button {
  background-color: #80dc31;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 2px solid #80dc31;
  border-radius: 6px;
  transition: all 0.2s linear;
}
section.projects .project-link .button svg {
  transition: stroke 0.2s linear;
}
section.projects .project-link:hover .title-and-button .button {
  background-color: #e42e87;
  border-color: #e42e87;
}

.new-breadcrumbs {
  font-size: 0;
  margin-top: 40px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .new-breadcrumbs {
    max-width: 540px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 17px auto 28px;
  }
}
.new-breadcrumbs ul {
  display: inline;
}
.new-breadcrumbs__item {
  display: inline;
  color: var(--basic-colors-dark-grey, #535B6B);
  font: 14px/1.4 "Open Sans";
  text-decoration: none;
}
.new-breadcrumbs__item:not(:last-child)::after {
  content: " > ";
  text-decoration: none;
}
.new-breadcrumbs__item:first-child {
  color: var(--Black, #000);
}
.new-breadcrumbs__item:first-child a {
  text-decoration: underline;
}
.new-breadcrumbs__item:first-child a a::after {
  text-decoration: none;
}
.new-breadcrumbs__link {
  text-decoration: none;
  border: none;
  color: inherit;
}
@media (max-width: 767px) {
  .new-breadcrumbs__link {
    line-height: 1.1;
  }
}

body {
  --header-height: 80px;
}
@media (max-width: 1200px) {
  body {
    padding-top: var(--header-height);
  }
}

header.header {
  background-color: #30549a;
  padding: 0;
  /* Меню на странице каталога */
}
header.header .container-1440 {
  display: flex;
  align-items: center;
  gap: 33px;
  height: var(--header-height);
}
@media (max-width: 1479px) and (min-width: 1470px) {
  header.header .container-1440 {
    gap: 28px;
  }
  header.header .container-1440 .catalog {
    padding-left: 25px;
  }
}
header.header a {
  color: inherit;
}
header.header .logo {
  font-size: 0;
  flex-shrink: 0;
}
header.header .logo img {
  display: block;
  max-width: 100%;
}
@media (max-width: 767px) {
  header.header .logo {
    width: 134px;
  }
}
header.header .catalog {
  padding: 0 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-transform: uppercase;
  font: bold 14px/1.4 "Open Sans";
  color: #fff;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  header.header .catalog {
    padding-left: 0;
  }
}
header.header .menu-elements {
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
}
header.header .menu-elements .page-links {
  height: 100%;
  display: flex;
  gap: 20px;
  padding: 0;
  margin-left: 20px;
  list-style: none;
}
header.header .menu-elements .page-links .menu-category {
  height: 100%;
  position: relative;
}
header.header .menu-elements .page-links .menu-category a {
  display: flex;
  align-items: center;
  height: 100%;
  font: bold 14px/1.4 "Open Sans";
  text-transform: uppercase;
  color: #fff;
}
header.header .menu-elements .page-links .menu-category:hover .floating-menu {
  pointer-events: all;
  opacity: 1;
  transform: none;
}
header.header .menu-elements .page-links .floating-menu {
  width: 370px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--default-duration);
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  background-color: #fafafa;
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}
header.header .menu-elements .page-links .floating-menu::before {
  content: "";
  display: block;
  height: 10px;
  background-color: #08aff3;
  margin-bottom: 10px;
}
header.header .menu-elements .page-links .floating-menu a {
  font: 20px/18px Cuprum;
  color: #656878;
  padding: 0px 40px;
  text-transform: none;
  transition: all var(--default-duration);
}
header.header .menu-elements .page-links .floating-menu a span {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #e9edf6;
}
header.header .menu-elements .page-links .floating-menu a:last-child span {
  border-bottom: none;
}
header.header .menu-elements .page-links .floating-menu a:hover {
  background-color: #08aff3;
}
header.header .menu-elements .page-links .floating-menu a:hover span {
  border-color: transparent;
  color: #fff;
}
header.header .header-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
header.header .header-contacts .contact {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font: bold 14px/1.4 "Open Sans";
  color: #fff;
}
header.header .header-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
header.header .header-links img {
  transition: filter 0.2s;
}
header.header .header-links .telegram:hover img {
  filter: brightness(3);
}
header.header .header-search {
  display: flex;
  align-items: center;
  gap: 4px;
}
header.header .header-search:is(form) {
  flex-grow: 1;
}
header.header .header-search .searchline, header.header .header-search button {
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
}
header.header .header-search .searchline {
  color: #fff;
  border-bottom: 2px solid #eaebf5;
  flex-grow: 1;
}
header.header .header-search button {
  margin-left: auto;
}
header.header .header-search img {
  cursor: pointer;
}
@media (max-width: 1469px) {
  header.header .header-search {
    margin-left: auto;
  }
}
header.header .language-switcher {
  display: flex;
  gap: 6px;
  color: #EAEBF5;
  text-transform: uppercase;
  font: bold 16px/1.4 "Open Sans";
  cursor: pointer;
}
header.header .language-switcher .is-active {
  color: #fff;
  border-bottom: 2px solid #fff;
}
header.header.catalog-header .header-contacts {
  flex-direction: row;
  gap: 14px;
}
header.header .header-hamburger {
  display: none;
  flex-shrink: 0;
}
header.header .header-hamburger img {
  cursor: pointer;
}
@media (max-width: 767px) {
  header.header .header-hamburger {
    margin-left: auto;
  }
}
@media (max-width: 1469px) {
  header.header .header-search .searchline, header.header .header-links, header.header .header-contacts, header.header .language-switcher, header.header .menu-elements {
    display: none;
  }
  header.header .menu-elements {
    margin-left: 0;
  }
  header.header .header-hamburger {
    display: block;
  }
}
@media (max-width: 767px) {
  header.header .header-search {
    display: none;
  }
}

.header-overlayMenu {
  flex-direction: column;
  gap: 50px;
  background-color: #30549a;
  border: none;
  top: 0;
  z-index: 301;
  margin: 0;
  padding: 60px 48px;
  width: 100vw;
  max-width: 100vw;
  height: 100dvh;
  overflow-y: auto;
  max-height: 100dvh;
  color: #fff;
}
@media (max-width: 767px) {
  .header-overlayMenu {
    padding: 30px 15px;
  }
}
.header-overlayMenu[open] {
  display: flex;
}
.header-overlayMenu header {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-overlayMenu a.h3 {
  text-transform: uppercase;
  font: bold 30px/1.4 "Open Sans";
  margin: 0;
  color: #eaebf5;
}
@media (max-width: 767px) {
  .header-overlayMenu a.h3 {
    font-size: 24px;
  }
}
.header-overlayMenu .close {
  margin-left: auto;
  cursor: pointer;
}
.header-overlayMenu .header-mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .header-overlayMenu .header-mobile-menu {
    gap: 24px;
  }
}
.header-overlayMenu .menu-category * {
  transition: all 0.2s;
}
.header-overlayMenu .menu-category a {
  border-bottom: none;
}
.header-overlayMenu .menu-category .expander {
  font: bold 16px/1.4 "Open Sans";
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding-bottom: 4px;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media (min-width: 768px) {
  .header-overlayMenu .menu-category .expander:hover {
    color: #e42e87;
  }
  .header-overlayMenu .menu-category .expander:hover > svg path {
    stroke: #e42e87;
  }
}
.header-overlayMenu .menu-category svg {
  flex-shrink: 0;
}
.header-overlayMenu .menu-category.open > .expander {
  border-color: #fff;
}
.header-overlayMenu .menu-category .category-link {
  display: none;
  color: #eaebf5;
  font: 16px/1.4 "Open Sans";
}
@media (min-width: 768px) {
  .header-overlayMenu .menu-category .category-link:hover {
    color: #e42e87;
  }
}
.header-overlayMenu .menu-category .submenu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 14px/1.4 "Open Sans";
  color: #eaebf5;
}
@media (min-width: 768px) {
  .header-overlayMenu .menu-category .submenu-link:hover {
    color: #e42e87;
  }
  .header-overlayMenu .menu-category .submenu-link:hover svg path {
    stroke: #e42e87;
  }
}
.header-overlayMenu .menu-category .submenu-link:active {
  color: #e42e87;
}
.header-overlayMenu .menu-category .submenu-link:active svg path {
  stroke: #e42e87;
}
.header-overlayMenu .submenu {
  display: none;
  flex-direction: column;
  gap: 20px;
}
.header-overlayMenu .submenu .menu-container {
  gap: 16px;
}
.header-overlayMenu .submenu .category-name {
  color: #eaebf5;
  text-transform: none;
  font: bold 16px/1.4 "Open Sans";
}
.header-overlayMenu .submenu .submenu-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header-overlayMenu .menu-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.header-overlayMenu .menu-container.open > .expander svg {
  transform: rotate(180deg);
}
.header-overlayMenu .menu-container.open > .submenu {
  display: flex;
}
.header-overlayMenu .menu-container.open > .category-link {
  display: block;
}

.header-menu {
  background-color: #eaebf5;
  height: 61px;
  flex-shrink: 0;
}
@media (max-width: 1469px) {
  .header-menu {
    display: none;
  }
}
.header-menu .container-1440 {
  display: flex;
  justify-content: center;
  height: 100%;
}
.header-menu .menu-item {
  display: flex;
  padding: 0 20px;
  font: bold 16px/1.4 "Open Sans";
  color: #30549a;
  cursor: pointer;
  height: 100%;
  align-items: center;
  text-transform: uppercase;
  border: none;
}
.header-menu .menu-item.open {
  background-color: #fff;
}
.header-menu-closer {
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: calc(50vw - 735px);
  width: 24px;
  height: 24px;
}
.header-menu-content {
  --maxHeight: 185px;
  --padding: 30px;
  --maxContentHeight: calc(var(--maxHeight) - 2 * var(--padding));
  display: none;
  border: none;
  outline: none;
  width: 100vw;
  max-width: 100vw;
  background-color: #fff;
  position: absolute;
  top: calc(var(--header-height) + 61px);
  margin: 0;
  padding: var(--padding) 0;
  box-shadow: 0px 10px 14px 0px rgba(17, 64, 110, 0.15);
  z-index: 12;
  height: var(--maxHeight);
}
.header-menu-content.open {
  display: block;
}
.header-menu-content .container-1440 {
  display: none;
  height: var(--maxContentHeight);
}
.header-menu-content .container-1440 * {
  transition: all 0.2s;
}
.header-menu-content .container-1440.open {
  display: grid;
  grid-template-columns: 430px 1fr;
}
.header-menu-content .submenu-categories {
  border-right: 1px solid #30549a;
  display: flex;
  flex-direction: column;
  color: #000;
}
.header-menu-content .submenu-category {
  padding: 20px;
  font: bold 16px/1.4 "Open Sans";
  color: #000;
  border: none;
}
.header-menu-content .submenu-category.open {
  color: #fff;
  background-color: #30549a;
}
.header-menu-content .submenu-elements {
  display: none;
  padding-left: 30px;
  max-height: var(--maxContentHeight);
  overflow-y: auto;
  margin-right: 68px;
}
.header-menu-content .submenu-elements-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  gap: 10px 30px;
}
.header-menu-content .submenu-elements.open {
  display: block;
}
.header-menu-content .submenu-elements a {
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font: 14px/1.4 "Open Sans";
  color: #000;
}
.header-menu-content .submenu-elements a svg {
  flex-shrink: 0;
}
.header-menu-content .submenu-elements a:hover {
  color: #e42e87;
}
.header-menu-content .submenu-elements a:hover svg path {
  stroke: #e42e87;
}

body.flexBody {
  display: flex;
  flex-direction: column;
}
body.flexBody main {
  flex-grow: 1;
}

.container-1440 {
  --maxWidth: 1470px;
}
@media (min-width: 1201px) {
  .container-1440 {
    --containerWidth: min(var(--maxWidth), 100vw - 30px);
  }
}
@media (max-width: 1536px) and (min-width: 768px) {
  .container-1440 {
    margin-left: max(15px, 50vw - var(--containerWidth) / 2);
    margin-right: max(15px, 50vw - var(--containerWidth) / 2);
  }
}
@media (max-width: 1200px) {
  .container-1440 {
    --containerWidth: 962px;
  }
}
@media (max-width: 992px) {
  .container-1440 {
    --containerWidth: 690px;
  }
}
@media (max-width: 767px) {
  .container-1440 {
    --containerWidth: calc(100vw - 40px);
  }
}

.newMain {
  --additionalPadding: 10px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}
@media (max-width: 1440px) {
  .newMain {
    gap: 30px;
  }
}
@media (max-width: 644px) {
  .newMain {
    gap: 28px;
  }
}
.newMain-topBanner {
  position: relative;
  display: flex;
  align-items: center;
  height: 578px;
}
.newMain-topBanner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}
.newMain-topBanner-content {
  display: flex;
  flex-direction: column;
  gap: 23px;
  align-items: flex-start;
  color: #fff;
}
.newMain-topBanner-content :is(.supports-video div, .supports-video a) {
  visibility: hidden;
}
.newMain-topBanner-companyTitle, .newMain-topBanner-caption, .newMain-topBanner-subtitle {
  max-width: 620px;
}
.newMain-topBanner-companyTitle {
  font: bold 28px/26px Cuprum;
  text-transform: uppercase;
}
.newMain-topBanner-caption {
  font: bold 57px/1 Cuprum;
  text-transform: uppercase;
}
.newMain-topBanner-subtitle {
  font: 31px/1 "Open Sans";
}
.newMain-topBanner-link {
  margin-top: 7px;
  display: flex;
  align-items: center;
  gap: 9px;
  font: 18px/1 Cuprum;
  text-transform: uppercase;
  color: #fff;
  background-color: #30549a;
  border-radius: 6px;
  padding: 0 20px;
  height: 48px;
  transition: all 0.2s;
}
@media (max-width: 767px) {
  .newMain-topBanner-link {
    height: 60px;
    padding: 0 24px;
  }
  .newMain-topBanner-link svg {
    width: 28px;
  }
}
@media (max-width: 644px) {
  .newMain-topBanner-link {
    height: 32px;
    font-size: 15px;
    padding: 0 16px;
  }
  .newMain-topBanner-link svg {
    width: 20px;
  }
}
.newMain-topBanner-underline {
  margin: 0;
  position: absolute;
  bottom: 0;
  left: calc(50vw - var(--containerWidth) / 2);
  width: 530px;
  height: 7px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.newMain-topBanner-underline-part1 {
  background-color: #8bc04f;
}
.newMain-topBanner-underline-part2 {
  background-color: #e12641;
}
.newMain-topBanner-underline-part3 {
  background-color: #43bbea;
}
.newMain-topBanner-underline-part4 {
  background-color: #4ab79e;
}
.newMain-topBanner-underline-part5 {
  background-color: #366b9a;
}
.newMain-topBanner-underline-part6 {
  background-color: #742165;
}
.newMain-topBanner-underline-part7 {
  background-color: #35559c;
}
@media (max-width: 1280px) {
  .newMain-topBanner {
    height: 460px;
  }
  .newMain-topBanner-content.container-1440 {
    gap: 0;
  }
  .newMain-topBanner-companyTitle {
    display: none;
  }
  .newMain-topBanner-caption {
    font-size: 50px;
  }
  .newMain-topBanner-subtitle {
    font-size: 30px;
  }
  .newMain-topBanner-link {
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .newMain-topBanner-content {
    --containerWidth: min(605px, 100vw - 40px);
  }
  .newMain-topBanner-underline {
    left: 0;
    width: 100vw;
    max-width: 100vw;
  }
}
@media (max-width: 644px) {
  .newMain-topBanner {
    height: 258px;
  }
  .newMain-topBanner-content {
    gap: 4px;
  }
  .newMain-topBanner-caption {
    font-size: 34px;
  }
  .newMain-topBanner-subtitle {
    font-size: 21px;
  }
  .newMain-topBanner-link {
    margin-top: 17px;
  }
  .newMain-topBanner-underline {
    height: 4px;
  }
}
.newMain-solutions {
  --iconSize: 104px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 20px;
}
@media (max-width: 1280px) {
  .newMain-solutions {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 45px;
  }
}
@media (min-width: 645px) and (max-width: 1200px) {
  .newMain-solutions {
    max-width: 605px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1200px) {
  .newMain-solutions {
    --iconSize: 80px;
    grid-template-columns: 1fr;
    grid-auto-rows: 145px;
  }
}
@media (max-width: 644px) {
  .newMain-solutions {
    --iconSize: 43px;
    --containerWidth: calc(100% - 30px);
    margin-bottom: 19px;
  }
}
.newMain-solution {
  display: grid;
  border-radius: 6px;
  overflow: hidden;
}
.newMain-solution-bg {
  grid-column: 1;
  grid-row: 1;
  overflow: hidden;
  position: relative;
}
.newMain-solution-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 644px) {
  .newMain-solution {
    border-radius: 0;
  }
}
.newMain-solution-element1 {
  --bgColor: #43a947;
}
.newMain-solution-element1 .newMain-solution-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(67, 169, 71, 0.8980392157);
}
.newMain-solution-element2 {
  --bgColor: #e12641;
}
.newMain-solution-element2 .newMain-solution-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(225, 38, 65, 0.8980392157);
}
.newMain-solution-element3 {
  --bgColor: #3dace0;
}
.newMain-solution-element3 .newMain-solution-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(61, 172, 224, 0.8980392157);
}
.newMain-solution-element4 {
  --bgColor: #09787c;
}
.newMain-solution-element4 .newMain-solution-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 120, 124, 0.8980392157);
}
.newMain-solution-element5 {
  --bgColor: #123e6c;
}
.newMain-solution-element5 .newMain-solution-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 62, 108, 0.8980392157);
}
.newMain-solution-element6 {
  --bgColor: #9f2e88;
}
.newMain-solution-element6 .newMain-solution-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(159, 46, 136, 0.8980392157);
}
.newMain-solution-content {
  grid-row: 1;
  grid-column: 1;
  padding: 26px 26px 22px;
  z-index: 1;
  display: grid;
}
@media (max-width: 1200px) {
  .newMain-solution-content {
    padding: 30px 33px;
  }
}
@media (max-width: 644px) {
  .newMain-solution-content {
    padding: 20px;
  }
}
.newMain-solution-icon {
  --paddingSize: 13px;
  grid-column: 1;
  grid-row: 1;
  margin-left: auto;
  width: var(--iconSize);
  height: var(--iconSize);
  border: 2px solid #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--paddingSize);
}
.newMain-solution-icon img {
  max-width: calc(var(--iconSize) - 2 * var(--paddingSize) - 4px);
  max-height: calc(var(--iconSize) - 2 * var(--paddingSize) - 4px);
}
@media (max-width: 1200px) {
  .newMain-solution-icon {
    --paddingSize: 10px;
  }
}
@media (max-width: 644px) {
  .newMain-solution-icon {
    --paddingSize: 5px;
  }
}
.newMain-solution-caption {
  grid-column: 1;
  grid-row: 1;
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .newMain-solution-caption {
    padding-right: calc(var(--iconSize) + 23px);
    margin-top: 0;
    align-items: center;
  }
  .newMain-solution-caption br {
    display: none;
  }
}
.newMain-solution-title {
  text-transform: uppercase;
  font: bold 23px/23px Cuprum;
  color: #fff;
  border: none;
}
@media (min-width: 1201px) {
  .newMain-solution-title span {
    font-weight: normal;
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .newMain-solution-title {
    font-size: 28px;
    line-height: 28px;
  }
}
@media (max-width: 644px) {
  .newMain-solution-title {
    font-size: 21px;
    line-height: 1.1;
  }
}
.newMain-solution-link {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  border: 2px solid #fff;
  flex-shrink: 0;
  transition: all 0.2s;
}
.newMain-solution-link svg path {
  transition: all 0.2s;
}
.newMain-solution-link:hover {
  background-color: #fff;
}
.newMain-solution-link:hover svg path {
  fill: var(--bgColor);
}
.newMain-solution-link svg {
  max-width: 26px;
}
.newMain-solution-link:hover {
  text-decoration: none;
  border-bottom: 2px solid #fff;
}
@media (max-width: 1200px) {
  .newMain-solution-link {
    display: none;
  }
}
.newMain-stat {
  display: grid;
  grid-template: 174px 174px/1fr 230px 230px;
  gap: 20px;
}
@media (max-width: 1600px) {
  .newMain-stat {
    grid-template-rows: 500px 220px 220px;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 22px;
    column-gap: 22px;
    margin: 0 auto;
  }
}
@media (min-width: 645px) and (max-width: 1600px) {
  .newMain-stat {
    max-width: 605px;
  }
}
@media (max-width: 644px) {
  .newMain-stat {
    grid-template-columns: 1fr;
    grid-template-rows: 353px 189px;
    grid-auto-rows: 152px;
    gap: 10px;
  }
}
.newMain-stat-statBlock {
  --iconSize: 44px;
  background-color: #f5f5f5;
  display: grid;
  padding: 16px 16px 0 26px;
  border-radius: 6px;
}
.newMain-stat-statBlock-icon {
  grid-row: 1;
  grid-column: 1;
  margin-left: auto;
  aspect-ratio: 1;
  width: var(--iconSize);
}
@media (max-width: 1600px) {
  .newMain-stat-statBlock {
    --iconSize: 55px;
    padding: 22px 22px 0 33px;
  }
}
@media (min-width: 645px) and (max-width: 1600px) {
  .newMain-stat-statBlock:nth-child(n+4) {
    margin-top: 2px;
  }
}
@media (max-width: 644px) {
  .newMain-stat-statBlock {
    --iconSize: 61px;
    padding: 22px 22px 14px 36px;
  }
  .newMain-stat-statBlock:nth-child(2) {
    margin-top: 37px;
  }
  .newMain-stat-statBlock[data-mobile-order="2"] {
    grid-row: 3;
  }
  .newMain-stat-statBlock[data-mobile-order="3"] {
    grid-row: 4;
  }
}
.newMain-stat-text {
  grid-row: 1;
  grid-column: 1;
  margin-top: 58px;
  max-width: 162px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #000;
  font: 16px/1 "Open Sans";
}
.newMain-stat-text-caption {
  font: 35px/26px Cuprum;
}
@media (max-width: 1600px) {
  .newMain-stat-text {
    margin-top: 69px;
  }
}
@media (max-width: 644px) {
  .newMain-stat-text {
    margin-top: 0;
    gap: 12px;
    font-size: 17px;
    max-width: 190px;
  }
  .newMain-stat-text-caption {
    font-size: 38px;
    line-height: 0.65;
  }
}
.newMain-stat-filledBlock {
  grid-row: span 2;
  background: right top/auto 100% url("/local/templates/.default/img/new-main/stat/stat.webp") no-repeat #153659;
  background-image: -webkit-image-set(url("/local/templates/.default/img/new-main/stat/stat.webp") 1x, url("/local/templates/.default/img/new-main/stat/stat-2x.webp") 2x);
  background-image: image-set("/local/templates/.default/img/new-main/stat/stat.webp" 1x, "/local/templates/.default/img/new-main/stat/stat-2x.webp" 2x);
  padding: 0 69px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 29px;
}
@media (max-width: 1600px) {
  .newMain-stat-filledBlock {
    background-size: contain;
    grid-row: 1;
    grid-column: span 2;
    flex-direction: column;
    padding: 42px 33px 120px;
    width: 100%;
  }
}
@media (max-width: 644px) {
  .newMain-stat-filledBlock {
    background-size: cover;
    padding: 26px 17px 80px;
    grid-column: 1;
  }
}
.newMain-stat-summary {
  display: flex;
  flex-direction: column;
  gap: 42px;
  color: #fff;
}
.newMain-stat-summary-title {
  font: bold 43px/1 Cuprum;
  text-transform: uppercase;
}
.newMain-stat-summary p {
  max-width: 595px;
  font: 21px/23px "Open Sans";
  margin-bottom: 1.1em;
}
.newMain-stat-summary p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1600px) {
  .newMain-stat-summary {
    width: 100%;
  }
  .newMain-stat-summary-title {
    max-width: 345px;
  }
  .newMain-stat-summary-text {
    display: none;
  }
}
@media (max-width: 644px) {
  .newMain-stat-summary-title {
    max-width: 240px;
    font-size: 34px;
  }
}
.newMain-stat-years {
  margin-top: 4px;
}
@media (min-width: 1601px) {
  .newMain-stat-years {
    width: 243px;
  }
}
@media (max-width: 1600px) {
  .newMain-stat-years {
    margin-left: 30px;
  }
}
@media (max-width: 644px) {
  .newMain-stat-years {
    width: 202px;
    margin-left: 16px;
  }
}
.newMain-innovations {
  margin-top: var(--additionalPadding);
}
@media (min-width: 645px) and (max-width: 1440px) {
  .newMain-innovations {
    max-width: 605px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1440px) {
  .newMain-innovations {
    margin-top: 34px;
  }
}
@media (max-width: 644px) {
  .newMain-innovations {
    margin-top: 19px;
  }
}
.newMain-innovations h3 {
  font: bold 31px/44px Cuprum;
  color: #30549a;
  margin-bottom: 16px;
}
@media (max-width: 1440px) {
  .newMain-innovations h3 {
    margin-bottom: 0;
    font-size: 50px;
  }
}
@media (max-width: 644px) {
  .newMain-innovations h3 {
    font-size: 34px;
    line-height: 1;
  }
}
.newMain-innovations-arrows, .ptk-prodTypes-arrows, .ptk-stages-arrows, .rpo-services-arrows, .ubippp-products-arrows, .ubippp-services-arrows, .isuEE-services-arrows, .isuEE-products-arrows, .isuPP-services-arrows, .isuPP-products-arrows {
  display: none;
  justify-content: flex-end;
  gap: 10px;
  margin-top: -9px;
  margin-bottom: 21px;
  --arrowSize: 56px;
}
@media (max-width: 1440px) {
  .newMain-innovations-arrows, .ptk-prodTypes-arrows, .ptk-stages-arrows, .rpo-services-arrows, .ubippp-products-arrows, .ubippp-services-arrows, .isuEE-services-arrows, .isuEE-products-arrows, .isuPP-services-arrows, .isuPP-products-arrows {
    display: flex;
  }
}
@media (max-width: 644px) {
  .newMain-innovations-arrows, .ptk-prodTypes-arrows, .ptk-stages-arrows, .rpo-services-arrows, .ubippp-products-arrows, .ubippp-services-arrows, .isuEE-services-arrows, .isuEE-products-arrows, .isuPP-services-arrows, .isuPP-products-arrows {
    --arrowSize: 53px;
    gap: 9px;
    margin-bottom: 19px;
  }
}
.newMain-innovations-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--arrowSize);
  height: var(--arrowSize);
  border: 2px solid #30549a;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
@media (max-width: 644px) {
  .newMain-innovations-arrow svg {
    transform: scale(0.95);
  }
}
.newMain-innovations .swiper {
  overflow: hidden;
}
@media (min-width: 1441px) {
  .newMain-innovations .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
@media (max-width: 1440px) {
  .newMain-innovations .swiper-wrapper {
    display: flex;
  }
}
.newMain-innovations-slide1 {
  --slideColor: #e12641;
  --slideFillColor: #e12641;
}
.newMain-innovations-slide2 {
  --slideColor: rgba(67, 169, 71, 0.8980392157);
  --slideFillColor: #43a947;
}
.newMain-innovations-slide3 {
  --slideColor: rgba(67, 169, 71, 0.8980392157);
  --slideFillColor: #43a947;
}
.newMain-innovations-slide4 {
  --slideColor: #3dace0;
  --slideFillColor: #3dace0;
}
.newMain-innovations-slide, .ptk-prodTypes-slide, .ptk-stages-slide, .rpo-services-slide, .ubippp-services-slide, .isuEE-services-slide, .isuPP-services-slide {
  --imageHeight: 220px;
  border-radius: 6px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: var(--imageHeight) auto 1fr;
  gap: 10px;
  background-color: #f5f5f5;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 1440px) {
  .newMain-innovations-slide, .ptk-prodTypes-slide, .ptk-stages-slide, .rpo-services-slide, .ubippp-services-slide, .isuEE-services-slide, .isuPP-services-slide {
    gap: 9px;
  }
}
@media (max-width: 644px) {
  .newMain-innovations-slide, .ptk-prodTypes-slide, .ptk-stages-slide, .rpo-services-slide, .ubippp-services-slide, .isuEE-services-slide, .isuPP-services-slide {
    --imageHeight: 220px;
    gap: 10px;
  }
}
.newMain-innovations-slide img, .ptk-prodTypes-slide img, .ptk-stages-slide img, .rpo-services-slide img, .ubippp-services-slide img, .isuEE-services-slide img, .isuPP-services-slide img {
  grid-column: 1;
  grid-row: 1;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.newMain-innovations-slide-mark {
  --blockSize: 45px;
  --blockMargin: 20px;
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  margin-top: 20px;
  margin-right: 20px;
  width: var(--blockSize);
  height: var(--blockSize);
  aspect-ratio: 1;
  border-radius: 6px;
  background-color: var(--slideColor);
}
@media (max-width: 644px) {
  .newMain-innovations-slide-mark {
    --blockSize: 57px;
    --blockMargin: 22px;
  }
}
.newMain-innovations-slide-name {
  font: bold 23px/1 Cuprum;
  text-transform: uppercase;
  color: #000;
  margin-top: 8px;
  padding: 0 20px;
}
@media (max-width: 1440px) {
  .newMain-innovations-slide-name {
    margin-top: 11px;
  }
}
@media (max-width: 644px) {
  .newMain-innovations-slide-name {
    font-size: 25px;
  }
}
.newMain-innovations-slide-underline, .ptk-prodTypes-slide-underline, .ptk-stages-slide-underline, .rpo-services-slide-underline, .ubippp-services-slide-underline, .isuEE-services-slide-underline, .isuPP-services-slide-underline {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding: 0 20px 20px;
}
@media (max-width: 1440px) {
  .newMain-innovations-slide-underline, .ptk-prodTypes-slide-underline, .ptk-stages-slide-underline, .rpo-services-slide-underline, .ubippp-services-slide-underline, .isuEE-services-slide-underline, .isuPP-services-slide-underline {
    gap: 20px;
  }
}
@media (max-width: 644px) {
  .newMain-innovations-slide-underline, .ptk-prodTypes-slide-underline, .ptk-stages-slide-underline, .rpo-services-slide-underline, .ubippp-services-slide-underline, .isuEE-services-slide-underline, .isuPP-services-slide-underline {
    padding: 0 22px 20px;
  }
}
.newMain-innovations-slide-description, .ptk-prodTypes-slide-description, .ptk-stages-slide-description, .rpo-services-slide-description, .ubippp-services-slide-description, .isuEE-services-slide-description, .isuPP-services-slide-description {
  font: 14px/16px "Open Sans";
}
@media (max-width: 1440px) {
  .newMain-innovations-slide-description, .ptk-prodTypes-slide-description, .ptk-stages-slide-description, .rpo-services-slide-description, .ubippp-services-slide-description, .isuEE-services-slide-description, .isuPP-services-slide-description {
    font-size: 20px;
    line-height: 22px;
  }
}
@media (max-width: 644px) {
  .newMain-innovations-slide-description, .ptk-prodTypes-slide-description, .ptk-stages-slide-description, .rpo-services-slide-description, .ubippp-services-slide-description, .isuEE-services-slide-description, .isuPP-services-slide-description {
    font-size: 19px;
    line-height: 21px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
  }
}
.newMain-innovations-slide-link, .ptk-prodTypes-slide-link, .ptk-stages-slide-link, .rpo-services-slide-link, .ubippp-services-slide-link, .isuEE-services-slide-link, .isuPP-services-slide-link {
  --linkSize: 45px;
  align-self: flex-end;
  aspect-ratio: 1;
  width: var(--linkSize);
  height: var(--linkSize);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--slideColor);
  border-radius: 6px;
  flex-shrink: 0;
  transition: all 0.2s;
}
.newMain-innovations-slide-link svg path, .ptk-prodTypes-slide-link svg path, .ptk-stages-slide-link svg path, .rpo-services-slide-link svg path, .ubippp-services-slide-link svg path, .isuEE-services-slide-link svg path, .isuPP-services-slide-link svg path {
  transition: all 0.2s;
}
.newMain-innovations-slide-link:hover, .ptk-prodTypes-slide-link:hover, .ptk-stages-slide-link:hover, .rpo-services-slide-link:hover, .ubippp-services-slide-link:hover, .isuEE-services-slide-link:hover, .isuPP-services-slide-link:hover {
  background-color: var(--slideFillColor);
}
.newMain-innovations-slide-link:hover svg path, .ptk-prodTypes-slide-link:hover svg path, .ptk-stages-slide-link:hover svg path, .rpo-services-slide-link:hover svg path, .ubippp-services-slide-link:hover svg path, .isuEE-services-slide-link:hover svg path, .isuPP-services-slide-link:hover svg path {
  fill: #fff;
}
.newMain-innovations-slide-link:hover, .ptk-prodTypes-slide-link:hover, .ptk-stages-slide-link:hover, .rpo-services-slide-link:hover, .ubippp-services-slide-link:hover, .isuEE-services-slide-link:hover, .isuPP-services-slide-link:hover {
  border-color: var(--slideFillColor);
  text-decoration: none;
}
.newMain-innovations-slide-link svg, .ptk-prodTypes-slide-link svg, .ptk-stages-slide-link svg, .rpo-services-slide-link svg, .ubippp-services-slide-link svg, .isuEE-services-slide-link svg, .isuPP-services-slide-link svg {
  width: 25px;
}
.newMain-innovations-slide-link svg path, .ptk-prodTypes-slide-link svg path, .ptk-stages-slide-link svg path, .rpo-services-slide-link svg path, .ubippp-services-slide-link svg path, .isuEE-services-slide-link svg path, .isuPP-services-slide-link svg path {
  fill: var(--slideColor);
}
.newMain-presscenter {
  margin-top: var(--additionalPadding);
  display: grid;
  grid-template: auto 380px/repeat(4, 1fr);
  gap: 16px 20px;
}
@media (max-width: 1700px) {
  .newMain-presscenter {
    margin: 0 auto;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}
@media (min-width: 645px) and (max-width: 1700px) {
  .newMain-presscenter {
    max-width: 605px;
  }
}
@media (max-width: 1440px) {
  .newMain-presscenter {
    margin-top: 20px;
  }
}
@media (max-width: 644px) {
  .newMain-presscenter {
    margin-top: 19px;
    grid-template-columns: 1fr;
    gap: 19px;
    grid-template-rows: auto;
  }
}
.newMain-presscenter h3 {
  font: bold 31px/44px Cuprum;
  color: #30549a;
  margin: 0;
}
@media (max-width: 1440px) {
  .newMain-presscenter h3 {
    font-size: 50px;
  }
}
@media (max-width: 644px) {
  .newMain-presscenter h3 {
    font-size: 34px;
    line-height: 1;
    margin-bottom: 2px;
  }
}
.newMain-presscenter-allnews, .newMain-projects-allbranches, .ptk-sectors-allbranches, .rpo-projects-allbranches, .vkt-projects-allbranches, .isuEE-projects-allbranches, .isuPP-projects-allbranches {
  --buttonSize: 26px;
  grid-row: 1;
  grid-column: -2;
  justify-self: end;
  align-self: center;
  display: flex;
  align-items: center;
  gap: 19px;
  font: 14px/16px "Open Sans";
  color: #30549a;
  border: none;
  transition: all 0.2s;
}
.newMain-presscenter-allnews:hover, .newMain-projects-allbranches:hover, .ptk-sectors-allbranches:hover, .rpo-projects-allbranches:hover, .vkt-projects-allbranches:hover, .isuEE-projects-allbranches:hover, .isuPP-projects-allbranches:hover {
  border: none;
}
.newMain-presscenter-allnews-btn, .newMain-projects-allbranches-btn, .ptk-sectors-allbranches-btn, .rpo-projects-allbranches-btn, .vkt-projects-allbranches-btn, .isuEE-projects-allbranches-btn, .isuPP-projects-allbranches-btn {
  border-radius: 6px;
  width: var(--buttonSize);
  height: var(--buttonSize);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #30549a;
  transition: all 0.2s;
}
.newMain-presscenter-allnews-btn svg path, .newMain-projects-allbranches-btn svg path, .ptk-sectors-allbranches-btn svg path, .rpo-projects-allbranches-btn svg path, .vkt-projects-allbranches-btn svg path, .isuEE-projects-allbranches-btn svg path, .isuPP-projects-allbranches-btn svg path {
  transition: all 0.2s;
}
.newMain-presscenter-allnews-btn:hover, .newMain-projects-allbranches-btn:hover, .ptk-sectors-allbranches-btn:hover, .rpo-projects-allbranches-btn:hover, .vkt-projects-allbranches-btn:hover, .isuEE-projects-allbranches-btn:hover, .isuPP-projects-allbranches-btn:hover {
  background-color: #fff;
}
.newMain-presscenter-allnews-btn:hover svg path, .newMain-projects-allbranches-btn:hover svg path, .ptk-sectors-allbranches-btn:hover svg path, .rpo-projects-allbranches-btn:hover svg path, .vkt-projects-allbranches-btn:hover svg path, .isuEE-projects-allbranches-btn:hover svg path, .isuPP-projects-allbranches-btn:hover svg path {
  fill: #e42e87;
}
.newMain-presscenter-allnews-btn svg, .newMain-projects-allbranches-btn svg, .ptk-sectors-allbranches-btn svg, .rpo-projects-allbranches-btn svg, .vkt-projects-allbranches-btn svg, .isuEE-projects-allbranches-btn svg, .isuPP-projects-allbranches-btn svg {
  width: 16px;
}
.newMain-presscenter-allnews:hover, .newMain-projects-allbranches:hover, .ptk-sectors-allbranches:hover, .rpo-projects-allbranches:hover, .vkt-projects-allbranches:hover, .isuEE-projects-allbranches:hover, .isuPP-projects-allbranches:hover {
  color: #e42e87;
}
.newMain-presscenter-allnews:hover .newMain-presscenter-allnews-btn, .newMain-presscenter-allnews:hover .newMain-projects-allbranches-btn, .newMain-presscenter-allnews:hover .ptk-sectors-allbranches-btn, .newMain-presscenter-allnews:hover .rpo-projects-allbranches-btn, .newMain-presscenter-allnews:hover .vkt-projects-allbranches-btn, .newMain-presscenter-allnews:hover .isuEE-projects-allbranches-btn, .newMain-presscenter-allnews:hover .isuPP-projects-allbranches-btn, .newMain-projects-allbranches:hover .newMain-presscenter-allnews-btn, .ptk-sectors-allbranches:hover .newMain-presscenter-allnews-btn, .rpo-projects-allbranches:hover .newMain-presscenter-allnews-btn, .vkt-projects-allbranches:hover .newMain-presscenter-allnews-btn, .isuEE-projects-allbranches:hover .newMain-presscenter-allnews-btn, .isuPP-projects-allbranches:hover .newMain-presscenter-allnews-btn, .newMain-projects-allbranches:hover .newMain-projects-allbranches-btn, .newMain-projects-allbranches:hover .ptk-sectors-allbranches-btn, .ptk-sectors-allbranches:hover .newMain-projects-allbranches-btn, .ptk-sectors-allbranches:hover .ptk-sectors-allbranches-btn, .newMain-projects-allbranches:hover .rpo-projects-allbranches-btn, .ptk-sectors-allbranches:hover .rpo-projects-allbranches-btn, .rpo-projects-allbranches:hover .newMain-projects-allbranches-btn, .rpo-projects-allbranches:hover .ptk-sectors-allbranches-btn, .rpo-projects-allbranches:hover .rpo-projects-allbranches-btn, .newMain-projects-allbranches:hover .vkt-projects-allbranches-btn, .ptk-sectors-allbranches:hover .vkt-projects-allbranches-btn, .rpo-projects-allbranches:hover .vkt-projects-allbranches-btn, .vkt-projects-allbranches:hover .newMain-projects-allbranches-btn, .vkt-projects-allbranches:hover .ptk-sectors-allbranches-btn, .vkt-projects-allbranches:hover .rpo-projects-allbranches-btn, .vkt-projects-allbranches:hover .vkt-projects-allbranches-btn, .newMain-projects-allbranches:hover .isuEE-projects-allbranches-btn, .ptk-sectors-allbranches:hover .isuEE-projects-allbranches-btn, .rpo-projects-allbranches:hover .isuEE-projects-allbranches-btn, .vkt-projects-allbranches:hover .isuEE-projects-allbranches-btn, .isuEE-projects-allbranches:hover .newMain-projects-allbranches-btn, .isuEE-projects-allbranches:hover .ptk-sectors-allbranches-btn, .isuEE-projects-allbranches:hover .rpo-projects-allbranches-btn, .isuEE-projects-allbranches:hover .vkt-projects-allbranches-btn, .isuEE-projects-allbranches:hover .isuEE-projects-allbranches-btn, .newMain-projects-allbranches:hover .isuPP-projects-allbranches-btn, .ptk-sectors-allbranches:hover .isuPP-projects-allbranches-btn, .rpo-projects-allbranches:hover .isuPP-projects-allbranches-btn, .vkt-projects-allbranches:hover .isuPP-projects-allbranches-btn, .isuEE-projects-allbranches:hover .isuPP-projects-allbranches-btn, .isuPP-projects-allbranches:hover .newMain-projects-allbranches-btn, .isuPP-projects-allbranches:hover .ptk-sectors-allbranches-btn, .isuPP-projects-allbranches:hover .rpo-projects-allbranches-btn, .isuPP-projects-allbranches:hover .vkt-projects-allbranches-btn, .isuPP-projects-allbranches:hover .isuEE-projects-allbranches-btn, .isuPP-projects-allbranches:hover .isuPP-projects-allbranches-btn {
  border-color: #e42e87;
  background-color: #fff;
}
.newMain-presscenter-allnews:hover .newMain-presscenter-allnews-btn svg path, .newMain-presscenter-allnews:hover .newMain-projects-allbranches-btn svg path, .newMain-presscenter-allnews:hover .ptk-sectors-allbranches-btn svg path, .newMain-presscenter-allnews:hover .rpo-projects-allbranches-btn svg path, .newMain-presscenter-allnews:hover .vkt-projects-allbranches-btn svg path, .newMain-presscenter-allnews:hover .isuEE-projects-allbranches-btn svg path, .newMain-presscenter-allnews:hover .isuPP-projects-allbranches-btn svg path, .newMain-projects-allbranches:hover .newMain-presscenter-allnews-btn svg path, .ptk-sectors-allbranches:hover .newMain-presscenter-allnews-btn svg path, .rpo-projects-allbranches:hover .newMain-presscenter-allnews-btn svg path, .vkt-projects-allbranches:hover .newMain-presscenter-allnews-btn svg path, .isuEE-projects-allbranches:hover .newMain-presscenter-allnews-btn svg path, .isuPP-projects-allbranches:hover .newMain-presscenter-allnews-btn svg path, .newMain-projects-allbranches:hover .newMain-projects-allbranches-btn svg path, .newMain-projects-allbranches:hover .ptk-sectors-allbranches-btn svg path, .ptk-sectors-allbranches:hover .newMain-projects-allbranches-btn svg path, .ptk-sectors-allbranches:hover .ptk-sectors-allbranches-btn svg path, .newMain-projects-allbranches:hover .rpo-projects-allbranches-btn svg path, .ptk-sectors-allbranches:hover .rpo-projects-allbranches-btn svg path, .rpo-projects-allbranches:hover .newMain-projects-allbranches-btn svg path, .rpo-projects-allbranches:hover .ptk-sectors-allbranches-btn svg path, .rpo-projects-allbranches:hover .rpo-projects-allbranches-btn svg path, .newMain-projects-allbranches:hover .vkt-projects-allbranches-btn svg path, .ptk-sectors-allbranches:hover .vkt-projects-allbranches-btn svg path, .rpo-projects-allbranches:hover .vkt-projects-allbranches-btn svg path, .vkt-projects-allbranches:hover .newMain-projects-allbranches-btn svg path, .vkt-projects-allbranches:hover .ptk-sectors-allbranches-btn svg path, .vkt-projects-allbranches:hover .rpo-projects-allbranches-btn svg path, .vkt-projects-allbranches:hover .vkt-projects-allbranches-btn svg path, .newMain-projects-allbranches:hover .isuEE-projects-allbranches-btn svg path, .ptk-sectors-allbranches:hover .isuEE-projects-allbranches-btn svg path, .rpo-projects-allbranches:hover .isuEE-projects-allbranches-btn svg path, .vkt-projects-allbranches:hover .isuEE-projects-allbranches-btn svg path, .isuEE-projects-allbranches:hover .newMain-projects-allbranches-btn svg path, .isuEE-projects-allbranches:hover .ptk-sectors-allbranches-btn svg path, .isuEE-projects-allbranches:hover .rpo-projects-allbranches-btn svg path, .isuEE-projects-allbranches:hover .vkt-projects-allbranches-btn svg path, .isuEE-projects-allbranches:hover .isuEE-projects-allbranches-btn svg path, .newMain-projects-allbranches:hover .isuPP-projects-allbranches-btn svg path, .ptk-sectors-allbranches:hover .isuPP-projects-allbranches-btn svg path, .rpo-projects-allbranches:hover .isuPP-projects-allbranches-btn svg path, .vkt-projects-allbranches:hover .isuPP-projects-allbranches-btn svg path, .isuEE-projects-allbranches:hover .isuPP-projects-allbranches-btn svg path, .isuPP-projects-allbranches:hover .newMain-projects-allbranches-btn svg path, .isuPP-projects-allbranches:hover .ptk-sectors-allbranches-btn svg path, .isuPP-projects-allbranches:hover .rpo-projects-allbranches-btn svg path, .isuPP-projects-allbranches:hover .vkt-projects-allbranches-btn svg path, .isuPP-projects-allbranches:hover .isuEE-projects-allbranches-btn svg path, .isuPP-projects-allbranches:hover .isuPP-projects-allbranches-btn svg path {
  fill: #e42e87;
}
@media (max-width: 1700px) {
  .newMain-presscenter-allnews, .newMain-projects-allbranches, .ptk-sectors-allbranches, .rpo-projects-allbranches, .vkt-projects-allbranches, .isuEE-projects-allbranches, .isuPP-projects-allbranches {
    --buttonSize: 56px;
    grid-row: auto;
    grid-column: 1/span 2;
    font-size: 22px;
    line-height: 1;
    gap: 10px;
  }
  .newMain-presscenter-allnews-btn, .newMain-projects-allbranches-btn, .ptk-sectors-allbranches-btn, .rpo-projects-allbranches-btn, .vkt-projects-allbranches-btn, .isuEE-projects-allbranches-btn, .isuPP-projects-allbranches-btn {
    border-width: 2px;
  }
  .newMain-presscenter-allnews-btn svg, .newMain-projects-allbranches-btn svg, .ptk-sectors-allbranches-btn svg, .rpo-projects-allbranches-btn svg, .vkt-projects-allbranches-btn svg, .isuEE-projects-allbranches-btn svg, .isuPP-projects-allbranches-btn svg {
    transform: scale(2);
  }
}
@media (max-width: 644px) {
  .newMain-presscenter-allnews, .newMain-projects-allbranches, .ptk-sectors-allbranches, .rpo-projects-allbranches, .vkt-projects-allbranches, .isuEE-projects-allbranches, .isuPP-projects-allbranches {
    font-size: 19px;
    grid-column: 1;
    --buttonSize: 53px;
    gap: 12px;
  }
}
.newMain-presscenter.noArrows .newMain-presscenter-slider-arrow {
  visibility: hidden;
}
.newMain-presscenter-slider {
  grid-column: 1/span 2;
  padding: 20px 28px 26px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 31px;
  background-position: 0 0, 0 0;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 39.56%), url("/local/templates/.default/img/new-main/press-center/press-2x.webp");
}
@supports ((background-image: -webkit-image-set(url("1") 1x)) or (background-image: image-set("1" 1x))) {
  .newMain-presscenter-slider {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 39.56%), -webkit-image-set(url("/local/templates/.default/img/new-main/press-center/press.webp") 1x, url("/local/templates/.default/img/new-main/press-center/press-2x.webp") 2x);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 39.56%), image-set("/local/templates/.default/img/new-main/press-center/press.webp" 1x, "/local/templates/.default/img/new-main/press-center/press-2x.webp" 2x);
  }
}
@media (max-width: 1700px) {
  .newMain-presscenter-slider {
    padding: 36px 40px;
  }
}
@media (max-width: 644px) {
  .newMain-presscenter-slider {
    grid-column: 1;
    padding: 19px 20px 31px;
    gap: 29px;
  }
}
.newMain-presscenter-slider-title {
  font: bold 23px/1 Cuprum;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 644px) {
  .newMain-presscenter-slider-title {
    font-size: 19px;
  }
}
.newMain-presscenter-slider-container {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 18px;
  margin: auto 0;
}
@media (max-width: 1700px) {
  .newMain-presscenter-slider-container {
    padding: 0 44px;
  }
}
@media (max-width: 644px) {
  .newMain-presscenter-slider-container {
    padding: 0;
    gap: 13px;
  }
}
.newMain-presscenter-slider-arrow {
  --arrowSize: 45px;
  width: var(--arrowSize);
  height: var(--arrowSize);
  aspect-ratio: 1;
  border: 2px solid #30549a;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.newMain-presscenter-slider-arrow svg path {
  transition: all 0.2s;
}
.newMain-presscenter-slider-arrow:hover {
  background-color: #30549a;
}
.newMain-presscenter-slider-arrow:hover svg path {
  fill: #fff;
}
.newMain-presscenter-slider-arrow svg {
  width: 25px;
}
.newMain-presscenter-slider-arrow-next {
  margin-left: auto;
}
.newMain-presscenter-slider-arrow-prev {
  margin-right: auto;
}
@media (max-width: 1700px) {
  .newMain-presscenter-slider-arrow {
    background-color: #fff;
    border-color: #e4217b;
  }
  .newMain-presscenter-slider-arrow svg path {
    fill: #e4217b;
  }
  .newMain-presscenter-slider-arrow:hover {
    background-color: #e4217b;
  }
  .newMain-presscenter-slider-arrow:hover svg path {
    fill: #fff;
  }
}
@media (max-width: 644px) {
  .newMain-presscenter-slider-arrow {
    --arrowSize: 34px;
    border-width: 1px;
    border-radius: 4px;
  }
  .newMain-presscenter-slider-arrow svg {
    transform: scale(0.63);
  }
}
.newMain-presscenter-slider .swiper-wrapper {
  height: 240px;
  display: flex;
}
@media (max-width: 1700px) {
  .newMain-presscenter-slider .swiper-wrapper {
    height: 413px;
  }
}
@media (max-width: 644px) {
  .newMain-presscenter-slider .swiper-wrapper {
    height: 266px;
  }
}
.newMain-presscenter-slider .swiper {
  overflow: hidden;
  width: 100%;
}
.newMain-presscenter-slider .swiper:not(.swiper-initialized) .swiper-wrapper {
  gap: 20px;
}
.newMain-presscenter-slider .swiper:not(.swiper-initialized) .swiper-wrapper > * {
  width: calc(50% - 10px);
}
@media (max-width: 1700px) {
  .newMain-presscenter-slider .swiper:not(.swiper-initialized) .swiper-wrapper > * {
    width: 100%;
  }
}
@media (max-width: 1700px) {
  .newMain-presscenter-slider .swiper {
    max-width: 293px;
  }
}
@media (max-width: 644px) {
  .newMain-presscenter-slider .swiper {
    max-width: 189px;
  }
}
.newMain-presscenter-slider-card {
  --sidePadding: 20px;
  display: grid;
  grid-template: 120px auto 1fr/1fr;
  gap: 5px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #f5f5f5;
}
@media (max-width: 1700px) {
  .newMain-presscenter-slider-card {
    gap: 15px;
  }
}
@media (max-width: 644px) {
  .newMain-presscenter-slider-card {
    --sidePadding: 12px;
    grid-template-rows: 95px auto 1fr;
    gap: 10px;
  }
}
.newMain-presscenter-slider-card-image {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
.newMain-presscenter-slider-card-name {
  margin-top: 5px;
  font: bold 16px/1 Cuprum;
  color: #30549a;
  text-transform: uppercase;
  padding: 0 var(--sidePadding);
}
@media (max-width: 1700px) {
  .newMain-presscenter-slider-card-name {
    margin-top: 0;
    font-size: 28px;
    line-height: 30px;
  }
  .newMain-presscenter-slider-card-name br {
    display: none;
  }
}
@media (max-width: 644px) {
  .newMain-presscenter-slider-card-name {
    font-size: 18px;
    line-height: 1.07;
  }
}
.newMain-presscenter-slider-card-dateNtype {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  padding: 0 0 11px var(--sidePadding);
  color: #000;
  max-width: 250px;
}
.newMain-presscenter-slider-card-dateNtype time {
  --iconSize: 22px;
  display: flex;
  align-items: center;
  gap: 5px;
  font: 16px/1.1 Cuprum;
  text-transform: uppercase;
}
.newMain-presscenter-slider-card-dateNtype time::before {
  content: "";
  background: center/cover url("/local/templates/.default/img/new-main/press-center/date.svg") no-repeat;
  height: var(--iconSize);
  width: var(--iconSize);
}
@media (max-width: 1700px) {
  .newMain-presscenter-slider-card-dateNtype {
    gap: 8px;
    padding-bottom: 17px;
  }
  .newMain-presscenter-slider-card-dateNtype time {
    --iconSize: 30px;
    font-size: 22px;
  }
}
@media (max-width: 644px) {
  .newMain-presscenter-slider-card-dateNtype {
    gap: 5px;
    padding-bottom: 11px;
  }
  .newMain-presscenter-slider-card-dateNtype time {
    --iconSize: 19px;
    font-size: 14px;
    line-height: 1;
    gap: 2px;
  }
}
.newMain-presscenter-slider-card-type {
  font: 10px/1 "Open Sans";
  text-transform: uppercase;
}
@media (max-width: 1700px) {
  .newMain-presscenter-slider-card-type {
    font-size: 18px;
    line-height: 1.11;
  }
}
@media (max-width: 644px) {
  .newMain-presscenter-slider-card-type {
    font-size: 12px;
  }
}
.newMain-presscenter-newsCard {
  display: grid;
  grid-template: 174px 1fr/1fr;
  gap: 15px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #f5f5f5;
}
@media (max-width: 1700px) {
  .newMain-presscenter-newsCard {
    height: 447px;
    grid-template-rows: 220px 1fr;
  }
}
@media (max-width: 644px) {
  .newMain-presscenter-newsCard {
    height: auto;
    grid-template-rows: 142px 1fr;
  }
  .newMain-presscenter-newsCard:nth-child(n+4) {
    display: none;
  }
}
.newMain-presscenter-newsCard-image {
  border-radius: 6px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.newMain-presscenter-newsCard-content {
  padding: 0 20px 20px;
  display: grid;
  grid-template: auto auto auto/1fr;
  gap: 15px;
}
.newMain-presscenter-newsCard time {
  --iconSize: 17px;
  display: flex;
  align-items: center;
  gap: 5px;
  font: 16px/1.1 Cuprum;
  color: #000;
}
.newMain-presscenter-newsCard time::before {
  content: "";
  background: center/cover url("/local/templates/.default/img/new-main/press-center/date.svg") no-repeat;
  height: var(--iconSize);
  width: var(--iconSize);
}
@media (max-width: 1700px) {
  .newMain-presscenter-newsCard time {
    --iconSize: 22px;
    font-size: 20px;
  }
}
@media (max-width: 644px) {
  .newMain-presscenter-newsCard time {
    --iconSize: 18px;
    font-size: 16px;
    gap: 2px;
  }
}
.newMain-presscenter-newsCard-text {
  font: 14px/16px "Open Sans";
  color: #000;
  text-transform: uppercase;
  border: none;
}
.newMain-presscenter-newsCard-text:hover {
  text-decoration: none;
  border: none;
}
@media (max-width: 1760px) {
  .newMain-presscenter-newsCard-text {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (max-width: 1700px) {
  .newMain-presscenter-newsCard-text {
    font-size: 20px;
    line-height: 1.2;
    height: 3.6em;
    display: block;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}
.newMain-presscenter-newsCard-tag {
  margin-top: auto;
  justify-self: start;
  padding: 4px 6px;
  border-radius: 6px;
  background-color: #666c7b;
  font: 16px/1 Cuprum;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 1700px) {
  .newMain-presscenter-newsCard-tag {
    font-size: 20px;
    padding: 7px 10px;
  }
}
.newMain-presscenter-newsCard-link {
  --linkSize: 45px;
  grid-row: 1/span 3;
  grid-column: 2;
  align-self: end;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #30549a;
  width: var(--linkSize);
  height: var(--linkSize);
  transition: all 0.2s;
}
.newMain-presscenter-newsCard-link svg path {
  transition: all 0.2s;
}
.newMain-presscenter-newsCard-link:hover {
  background-color: #30549a;
}
.newMain-presscenter-newsCard-link:hover svg path {
  fill: #fff;
}
.newMain-presscenter-newsCard-link svg {
  width: 26px;
}
.newMain-presscenter-newsCard-link:hover {
  border-bottom-color: #30549a;
  text-decoration: none;
}
@media (max-width: 1700px) {
  .newMain-presscenter-newsCard-link {
    display: none;
  }
}
.newMain-projects, .ptk-sectors, .rpo-projects, .vkt-projects, .isuEE-projects, .isuPP-projects {
  margin-top: var(--additionalPadding);
  display: grid;
  grid-template: auto 235px 235px/repeat(6, 1fr);
  gap: 20px;
}
@media (min-width: 645px) and (max-width: 1440px) {
  .newMain-projects, .ptk-sectors, .rpo-projects, .vkt-projects, .isuEE-projects, .isuPP-projects {
    max-width: 605px;
  }
}
@media (max-width: 1440px) {
  .newMain-projects, .ptk-sectors, .rpo-projects, .vkt-projects, .isuEE-projects, .isuPP-projects {
    margin: 45px auto 0;
    grid-template: auto/1fr 1fr;
    grid-auto-rows: auto;
  }
}
@media (max-width: 644px) {
  .newMain-projects, .ptk-sectors, .rpo-projects, .vkt-projects, .isuEE-projects, .isuPP-projects {
    grid-template-columns: 1fr;
    margin-top: 19px;
  }
}
.newMain-projects h3, .ptk-sectors h3, .rpo-projects h3, .vkt-projects h3, .isuEE-projects h3, .isuPP-projects h3 {
  grid-column: span 4;
  font: bold 31px/44px Cuprum;
  color: #30549a;
  margin: 0;
}
@media (max-width: 1440px) {
  .newMain-projects h3, .ptk-sectors h3, .rpo-projects h3, .vkt-projects h3, .isuEE-projects h3, .isuPP-projects h3 {
    font-size: 50px;
    grid-column: 1/-1;
  }
}
@media (max-width: 644px) {
  .newMain-projects h3, .ptk-sectors h3, .rpo-projects h3, .vkt-projects h3, .isuEE-projects h3, .isuPP-projects h3 {
    font-size: 34px;
    margin-bottom: 5px;
  }
}
.newMain-projects.with-no-full-link h3, .with-no-full-link.ptk-sectors h3, .with-no-full-link.rpo-projects h3, .with-no-full-link.vkt-projects h3, .with-no-full-link.isuEE-projects h3, .with-no-full-link.isuPP-projects h3 {
  grid-column: 1/-1;
}
.newMain-projects-allbranches, .ptk-sectors-allbranches, .rpo-projects-allbranches, .vkt-projects-allbranches, .isuEE-projects-allbranches, .isuPP-projects-allbranches {
  grid-row: 1;
  grid-column: -3/span 2;
}
@media (max-width: 1440px) {
  .newMain-projects-allbranches, .ptk-sectors-allbranches, .rpo-projects-allbranches, .vkt-projects-allbranches, .isuEE-projects-allbranches, .isuPP-projects-allbranches {
    grid-row: auto;
    font-size: 22px;
    line-height: 1;
    grid-column: 1/-1;
  }
}
@media (max-width: 644px) {
  .newMain-projects-allbranches, .ptk-sectors-allbranches, .rpo-projects-allbranches, .vkt-projects-allbranches, .isuEE-projects-allbranches, .isuPP-projects-allbranches {
    font-size: 19px;
  }
}
.newMain-projects-project, .ptk-sectors-project, .rpo-projects-project, .vkt-projects-project, .isuEE-projects-project, .isuPP-projects-project {
  display: grid;
  border-radius: 6px;
  overflow: hidden;
}
.newMain-projects-project_huge {
  grid-column: span 2;
  grid-row: span 2;
}
.newMain-projects-project_long {
  grid-column: span 2;
}
.newMain-projects-project-bg, .ptk-sectors-project-bg, .rpo-projects-project-bg, .vkt-projects-project-bg, .isuEE-projects-project-bg, .isuPP-projects-project-bg {
  grid-column: 1;
  grid-row: 1;
  overflow: hidden;
  position: relative;
}
.newMain-projects-project-bg::after, .ptk-sectors-project-bg::after, .rpo-projects-project-bg::after, .vkt-projects-project-bg::after, .isuEE-projects-project-bg::after, .isuPP-projects-project-bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 100%);
}
.newMain-projects-project-bg img, .ptk-sectors-project-bg img, .rpo-projects-project-bg img, .vkt-projects-project-bg img, .isuEE-projects-project-bg img, .isuPP-projects-project-bg img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.newMain-projects-project-name, .ptk-sectors-project-name, .rpo-projects-project-name, .vkt-projects-project-name, .isuEE-projects-project-name, .isuPP-projects-project-name {
  grid-column: 1;
  grid-row: 1;
  color: #fff;
  max-width: 236px;
  padding: 0 8px 16px 20px;
  align-self: end;
  font: bold 21px/23px Cuprum;
  text-transform: uppercase;
  z-index: 1;
}
.newMain-projects-project-name span, .ptk-sectors-project-name span, .rpo-projects-project-name span, .vkt-projects-project-name span, .isuEE-projects-project-name span, .isuPP-projects-project-name span {
  display: block;
  font-size: 12px;
  line-height: 1;
}
@media (max-width: 1440px) {
  .newMain-projects-project-name, .ptk-sectors-project-name, .rpo-projects-project-name, .vkt-projects-project-name, .isuEE-projects-project-name, .isuPP-projects-project-name {
    max-width: 100%;
    padding: 0 20px 17px;
  }
}
@media (max-width: 644px) {
  .newMain-projects-project-name, .ptk-sectors-project-name, .rpo-projects-project-name, .vkt-projects-project-name, .isuEE-projects-project-name, .isuPP-projects-project-name {
    font-size: 26px;
    line-height: 29px;
  }
  .newMain-projects-project-name span, .ptk-sectors-project-name span, .rpo-projects-project-name span, .vkt-projects-project-name span, .isuEE-projects-project-name span, .isuPP-projects-project-name span {
    font-size: 15px;
  }
}
@media (max-width: 1440px) {
  .newMain-projects-project, .ptk-sectors-project, .rpo-projects-project, .vkt-projects-project, .isuEE-projects-project, .isuPP-projects-project {
    grid-column: auto;
    grid-row: auto;
    height: 200px;
  }
  .newMain-projects-project:nth-child(n+4), .ptk-sectors-project:nth-child(n+4), .rpo-projects-project:nth-child(n+4), .vkt-projects-project:nth-child(n+4), .isuEE-projects-project:nth-child(n+4), .isuPP-projects-project:nth-child(n+4) {
    display: none;
  }
}
@media (max-width: 644px) {
  .newMain-projects-project, .ptk-sectors-project, .rpo-projects-project, .vkt-projects-project, .isuEE-projects-project, .isuPP-projects-project {
    height: 220px;
  }
}
.newMain-projects.show-all-projects .newMain-projects-project, .newMain-projects.show-all-projects .ptk-sectors-project, .show-all-projects.ptk-sectors .newMain-projects-project, .show-all-projects.ptk-sectors .ptk-sectors-project, .newMain-projects.show-all-projects .rpo-projects-project, .show-all-projects.ptk-sectors .rpo-projects-project, .show-all-projects.rpo-projects .newMain-projects-project, .show-all-projects.rpo-projects .ptk-sectors-project, .show-all-projects.rpo-projects .rpo-projects-project, .newMain-projects.show-all-projects .vkt-projects-project, .show-all-projects.ptk-sectors .vkt-projects-project, .show-all-projects.rpo-projects .vkt-projects-project, .show-all-projects.vkt-projects .newMain-projects-project, .show-all-projects.vkt-projects .ptk-sectors-project, .show-all-projects.vkt-projects .rpo-projects-project, .show-all-projects.vkt-projects .vkt-projects-project, .newMain-projects.show-all-projects .isuEE-projects-project, .show-all-projects.ptk-sectors .isuEE-projects-project, .show-all-projects.rpo-projects .isuEE-projects-project, .show-all-projects.vkt-projects .isuEE-projects-project, .show-all-projects.isuEE-projects .newMain-projects-project, .show-all-projects.isuEE-projects .ptk-sectors-project, .show-all-projects.isuEE-projects .rpo-projects-project, .show-all-projects.isuEE-projects .vkt-projects-project, .show-all-projects.isuEE-projects .isuEE-projects-project, .newMain-projects.show-all-projects .isuPP-projects-project, .show-all-projects.ptk-sectors .isuPP-projects-project, .show-all-projects.rpo-projects .isuPP-projects-project, .show-all-projects.vkt-projects .isuPP-projects-project, .show-all-projects.isuEE-projects .isuPP-projects-project, .show-all-projects.isuPP-projects .newMain-projects-project, .show-all-projects.isuPP-projects .ptk-sectors-project, .show-all-projects.isuPP-projects .rpo-projects-project, .show-all-projects.isuPP-projects .vkt-projects-project, .show-all-projects.isuPP-projects .isuEE-projects-project, .show-all-projects.isuPP-projects .isuPP-projects-project {
  display: grid;
}
.newMain-projects.show-all-projects .newMain-projects-showMore, .newMain-projects.show-all-projects .ptk-sectors-showMore, .show-all-projects.ptk-sectors .newMain-projects-showMore, .show-all-projects.ptk-sectors .ptk-sectors-showMore, .newMain-projects.show-all-projects .rpo-projects-showMore, .show-all-projects.ptk-sectors .rpo-projects-showMore, .show-all-projects.rpo-projects .newMain-projects-showMore, .show-all-projects.rpo-projects .ptk-sectors-showMore, .show-all-projects.rpo-projects .rpo-projects-showMore, .newMain-projects.show-all-projects .vkt-projects-showMore, .show-all-projects.ptk-sectors .vkt-projects-showMore, .show-all-projects.rpo-projects .vkt-projects-showMore, .show-all-projects.vkt-projects .newMain-projects-showMore, .show-all-projects.vkt-projects .ptk-sectors-showMore, .show-all-projects.vkt-projects .rpo-projects-showMore, .show-all-projects.vkt-projects .vkt-projects-showMore, .newMain-projects.show-all-projects .isuEE-projects-showMore, .show-all-projects.ptk-sectors .isuEE-projects-showMore, .show-all-projects.rpo-projects .isuEE-projects-showMore, .show-all-projects.vkt-projects .isuEE-projects-showMore, .show-all-projects.isuEE-projects .newMain-projects-showMore, .show-all-projects.isuEE-projects .ptk-sectors-showMore, .show-all-projects.isuEE-projects .rpo-projects-showMore, .show-all-projects.isuEE-projects .vkt-projects-showMore, .show-all-projects.isuEE-projects .isuEE-projects-showMore, .newMain-projects.show-all-projects .isuPP-projects-showMore, .show-all-projects.ptk-sectors .isuPP-projects-showMore, .show-all-projects.rpo-projects .isuPP-projects-showMore, .show-all-projects.vkt-projects .isuPP-projects-showMore, .show-all-projects.isuEE-projects .isuPP-projects-showMore, .show-all-projects.isuPP-projects .newMain-projects-showMore, .show-all-projects.isuPP-projects .ptk-sectors-showMore, .show-all-projects.isuPP-projects .rpo-projects-showMore, .show-all-projects.isuPP-projects .vkt-projects-showMore, .show-all-projects.isuPP-projects .isuEE-projects-showMore, .show-all-projects.isuPP-projects .isuPP-projects-showMore {
  display: none;
}
.newMain-projects-showMore, .ptk-sectors-showMore, .rpo-projects-showMore, .vkt-projects-showMore, .isuEE-projects-showMore, .isuPP-projects-showMore {
  display: none;
  --btnHeight: 56px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  grid-column: 1/-1;
  border-radius: 6px;
  height: var(--btnHeight);
  background-color: #30549a;
  font: 22px/1 "Open Sans";
  color: white;
  cursor: pointer;
}
.newMain-projects-showMore:hover, .ptk-sectors-showMore:hover, .rpo-projects-showMore:hover, .vkt-projects-showMore:hover, .isuEE-projects-showMore:hover, .isuPP-projects-showMore:hover {
  background-color: #7f99cd;
}
@media (max-width: 1440px) {
  .newMain-projects-showMore, .ptk-sectors-showMore, .rpo-projects-showMore, .vkt-projects-showMore, .isuEE-projects-showMore, .isuPP-projects-showMore {
    display: flex;
  }
}
@media (max-width: 644px) {
  .newMain-projects-showMore, .ptk-sectors-showMore, .rpo-projects-showMore, .vkt-projects-showMore, .isuEE-projects-showMore, .isuPP-projects-showMore {
    --btnHeight: 53px;
    font-size: 21px;
  }
  .newMain-projects-showMore svg, .ptk-sectors-showMore svg, .rpo-projects-showMore svg, .vkt-projects-showMore svg, .isuEE-projects-showMore svg, .isuPP-projects-showMore svg {
    width: 29px;
  }
}
.newMain-partners, .news-gallery {
  margin-top: var(--additionalPadding);
  margin-bottom: 64px;
}
@media (min-width: 645px) and (max-width: 1440px) {
  .newMain-partners, .news-gallery {
    max-width: 605px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1440px) {
  .newMain-partners, .news-gallery {
    margin-top: 45px;
    margin-bottom: 120px;
  }
}
@media (max-width: 644px) {
  .newMain-partners, .news-gallery {
    margin-top: 19px;
    margin-bottom: 47px;
  }
}
.newMain-partners h3, .news-gallery h3 {
  font: bold 31px/44px Cuprum;
  color: #30549a;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 1440px) {
  .newMain-partners h3, .news-gallery h3 {
    font-size: 50px;
  }
}
@media (max-width: 644px) {
  .newMain-partners h3, .news-gallery h3 {
    font-size: 34px;
    line-height: 1;
  }
}
.newMain-partners-content, .news-gallery-content {
  --commentWidth: 200px;
  --verticalPadding: 112px;
  display: grid;
  grid-template-columns: var(--commentWidth) 1fr;
  gap: 16px var(--verticalPadding);
}
.newMain-partners-content.wide_block, .wide_block.news-gallery-content {
  margin-top: 20px;
  grid-template-columns: 1fr;
}
@media (max-width: 1440px) {
  .newMain-partners-content, .news-gallery-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 644px) {
  .newMain-partners-content, .news-gallery-content {
    gap: 26px;
  }
}
.newMain-partners-comment, .news-gallery-comment {
  margin-top: 10px;
  font: 14px/16px "Open Sans";
  color: #666c7b;
}
@media (max-width: 1440px) {
  .newMain-partners-comment, .news-gallery-comment {
    margin-top: 11px;
    line-height: 26px;
    max-width: 450px;
  }
}
@media (max-width: 644px) {
  .newMain-partners-comment, .news-gallery-comment {
    font-size: 16px;
    line-height: 1.18;
  }
}
.newMain-partners-slider, .news-gallery-slider {
  display: flex;
  align-items: center;
  width: 100%;
  padding-right: 60px;
  gap: 20px;
  max-width: calc(var(--containerWidth) - var(--verticalPadding) - var(--commentWidth));
}
.newMain-partners-slider:is(.wide_block div), .news-gallery-slider:is(.wide_block div) {
  max-width: var(--containerWidth);
  padding-left: 60px;
}
@media (max-width: 1440px) {
  .newMain-partners-slider, .news-gallery-slider {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
}
.newMain-partners .swiper, .news-gallery .swiper {
  width: 100%;
  overflow: hidden;
}
.newMain-partners .swiper-wrapper, .news-gallery .swiper-wrapper {
  display: flex;
}
@media (max-width: 1440px) {
  .newMain-partners .swiper-wrapper, .news-gallery .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 644px) {
  .newMain-partners .swiper-wrapper, .news-gallery .swiper-wrapper {
    gap: 19px;
  }
}
.newMain-partners.noArrows .newMain-partners-arrow, .newMain-partners.noArrows .news-gallery-arrow, .noArrows.news-gallery .newMain-partners-arrow, .noArrows.news-gallery .news-gallery-arrow {
  visibility: hidden;
}
.newMain-partners-arrow, .news-gallery-arrow {
  --arrowSize: 45px;
  width: var(--arrowSize);
  height: var(--arrowSize);
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid #30549a;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.newMain-partners-arrow svg path, .news-gallery-arrow svg path {
  transition: all 0.2s;
}
.newMain-partners-arrow:hover, .news-gallery-arrow:hover {
  background-color: #30549a;
}
.newMain-partners-arrow:hover svg path, .news-gallery-arrow:hover svg path {
  fill: #fff;
}
.newMain-partners-arrow svg, .news-gallery-arrow svg {
  width: 25px;
}
@media (max-width: 1440px) {
  .newMain-partners-arrow, .news-gallery-arrow {
    display: none;
  }
}
.newMain-partners-slide, .news-gallery-slide {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  height: 113px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.newMain-partners-slide img, .news-gallery-slide img {
  max-height: 67px;
}
@media (max-width: 1440px) {
  .newMain-partners-slide, .news-gallery-slide {
    aspect-ratio: 2.047;
    height: auto;
    width: 100%;
  }
}
@media (max-width: 644px) {
  .newMain-partners-slide, .news-gallery-slide {
    padding: 15px;
  }
}

.news-gallery {
  --additionalPadding: 10px;
  clear: both;
  padding-block: 24px;
  margin-bottom: 60px;
}
@media (max-width: 1440px) {
  .news-gallery {
    max-width: 100%;
  }
}
@media (max-width: 644px) {
  .news-gallery {
    margin-inline: 0;
    padding-inline: 0;
    max-width: calc(100vw - 30px);
  }
}
.news-gallery .wide_block {
  display: flex;
}
@media (max-width: 1440px) {
  .news-gallery .swiper-wrapper {
    display: flex;
    gap: 0;
  }
}
.news-gallery-slider {
  max-width: 100% !important;
  padding-inline: 0 !important;
}
@media (max-width: 1440px) {
  .news-gallery-arrow {
    display: flex;
  }
}
@media (max-width: 530px) {
  .news-gallery-arrow {
    display: none;
  }
}
.news-gallery-arrow.swiper-button-disabled {
  border-color: #999;
  pointer-events: none;
}
.news-gallery-arrow.swiper-button-disabled svg path {
  fill: #999;
}
.news-gallery-slide {
  padding: 0px;
  overflow: hidden;
  height: 200px;
}
@media (max-width: 530px) {
  .news-gallery-slide.swiper-slide {
    max-width: 100%;
  }
}
.news-gallery-slide img {
  max-height: none;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

div.ptk, div.rpo, div.vkt, div.ubippp, div.isuEE, div.isuPP {
  --sidePadding: 40px;
  display: flex;
  flex-direction: column;
  gap: 75px;
}
@media (max-width: 992px) {
  div.ptk, div.rpo, div.vkt, div.ubippp, div.isuEE, div.isuPP {
    --sidePadding: 22px;
  }
}
@media (max-width: 767px) {
  div.ptk .container-1440, div.rpo .container-1440, div.vkt .container-1440, div.ubippp .container-1440, div.isuEE .container-1440, div.isuPP .container-1440 {
    --containerWidth: 100%;
    max-width: 510px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--sidePadding);
    padding-right: var(--sidePadding);
  }
}
@media (max-width: 644px) {
  div.ptk, div.rpo, div.vkt, div.ubippp, div.isuEE, div.isuPP {
    --sidePadding: 15px;
    gap: 42px;
  }
  div.ptk .wideScreen, div.rpo .wideScreen, div.vkt .wideScreen, div.ubippp .wideScreen, div.isuEE .wideScreen, div.isuPP .wideScreen {
    width: 100%;
    max-width: 100%;
    padding-inline: max(var(--sidePadding), 50vw - 270px + var(--sidePadding));
  }
}

.isuPP-control-systems {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  height: 304px;
  padding: 36px var(--sidePadding) 42px;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("/local/templates/.default/img/isu-pp/control-systems.webp");
  background-image: -webkit-image-set(url("/local/templates/.default/img/isu-pp/control-systems-2x.webp") 2x, url("/local/templates/.default/img/isu-pp/control-systems.webp") 1x);
  background-image: image-set("/local/templates/.default/img/isu-pp/control-systems-2x.webp" 2x, "/local/templates/.default/img/isu-pp/control-systems.webp" 1x);
  color: #fff;
}
@media (max-width: 1340px) {
  .isuPP-control-systems {
    height: auto;
  }
}
@media (max-width: 992px) {
  .isuPP-control-systems {
    background-image: url("/local/templates/.default/img/isu-pp/control-systems-mini.webp");
    background-image: -webkit-image-set(url("/local/templates/.default/img/isu-pp/control-systems-mini-2x.webp") 2x, url("/local/templates/.default/img/isu-pp/control-systems-mini.webp") 1x);
    background-image: image-set("/local/templates/.default/img/isu-pp/control-systems-mini-2x.webp" 2x, "/local/templates/.default/img/isu-pp/control-systems-mini.webp" 1x);
  }
}
@media (max-width: 644px) {
  .isuPP-control-systems {
    --containerWidth: 100%;
    gap: 4px;
    border-radius: 0;
  }
}
.isuPP-control-systems h3, .isuPP-control-systems h1 {
  font: bold 45px/1 Cuprum;
  max-width: 662px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
@media (max-width: 644px) {
  .isuPP-control-systems h3, .isuPP-control-systems h1 {
    font-size: 34px;
  }
}
.isuPP-control-systems--icon {
  position: absolute;
  right: var(--sidePadding);
  top: 40px;
  width: 87px;
  height: auto;
}
@media (max-width: 992px) {
  .isuPP-control-systems--icon {
    width: 53px;
  }
}
@media (max-width: 767px) {
  .isuPP-control-systems--icon {
    display: none;
  }
}
.isuPP-control-systems--subHeader {
  font: 24px/1 Cuprum;
  text-transform: uppercase;
}
@media (max-width: 644px) {
  .isuPP-control-systems--subHeader {
    font-size: 22px;
  }
}
.isuPP-control-systems--buttons {
  --gap: 40px;
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(var(--buttonsCount, 5), 1fr);
  gap: var(--gap);
}
.isuPP-control-systems--buttons a {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 18px/1 Cuprum;
  text-transform: uppercase;
  color: #fff;
  background-color: #30549a;
  border-radius: 6px;
  padding: 0 20px;
  height: 48px;
  transition: all 0.2s;
}
@media (max-width: 767px) {
  .isuPP-control-systems--buttons a {
    height: 60px;
    padding: 0 24px;
  }
  .isuPP-control-systems--buttons a svg {
    width: 28px;
  }
}
@media (max-width: 644px) {
  .isuPP-control-systems--buttons a {
    height: 32px;
    font-size: 15px;
    padding: 0 16px;
  }
  .isuPP-control-systems--buttons a svg {
    width: 20px;
  }
}
.isuPP-control-systems--buttons a {
  color: #09787c;
  font-size: 24px;
  font-weight: bold;
  background-color: #f5f5f5;
  justify-content: center;
  border: none;
  text-align: center;
}
.isuPP-control-systems--buttons a:hover {
  background-color: #e42e87;
  color: #f5f5f5;
}
@media (max-width: 767px) {
  .isuPP-control-systems--buttons a {
    height: 48px;
  }
}
@media (max-width: 644px) {
  .isuPP-control-systems--buttons a {
    font-size: 18px;
    height: 41px;
  }
}
@media (max-width: 1440px) {
  .isuPP-control-systems--buttons {
    --gap: 32px;
  }
}
@media (max-width: 1280px) {
  .isuPP-control-systems--buttons {
    --gap: 22px 20px;
    --buttonsCount: 3;
    margin-top: 15px;
  }
}
@media (max-width: 992px) {
  .isuPP-control-systems--buttons {
    --buttonsCount: 2;
  }
  .isuPP-control-systems--buttons a:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 644px) {
  .isuPP-control-systems--buttons {
    --gap: 15px;
    grid-template-columns: 1fr;
  }
}
.isuPP-our-suggestion {
  display: flex;
  align-items: center;
  gap: 95px;
  border: 2px solid #e42e87;
  border-radius: 6px;
  padding: 32px 124px 32px var(--sidePadding);
}
.isuPP-our-suggestion h3 {
  font: bold 31px/1 Cuprum;
  color: #e42e87;
  margin: 0;
  flex-shrink: 0;
  white-space: nowrap;
}
.isuPP-our-suggestion--text {
  font: 17px/1.2 "Open Sans";
  color: #000;
}
@media (max-width: 1440px) {
  .isuPP-our-suggestion {
    padding-right: 40px;
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .isuPP-our-suggestion {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px var(--sidePadding);
  }
}
@media (max-width: 767px) {
  .isuPP-our-suggestion {
    border: none;
  }
}
@media (max-width: 767px) and (min-width: 645px) {
  .isuPP-our-suggestion {
    --sidePadding: 0px;
  }
}
@media (max-width: 767px) {
  .isuPP-our-suggestion h3 {
    font-size: 28px;
  }
}
@media (max-width: 644px) {
  .isuPP-our-suggestion {
    padding: 0 var(--sidePadding);
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .isuPP-our-suggestion h3 {
    font-size: 24px;
    line-height: 15px;
  }
  .isuPP-our-suggestion:is(div.container-1440) {
    max-width: 540px;
  }
  .isuPP-our-suggestion--text {
    font-size: 16px;
    line-height: 1.25;
  }
}
.isuPP-our-suggestion {
  gap: 113px;
  padding-block: 46px;
  padding-right: 128px;
}
.isuPP-our-solutions {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("/local/templates/.default/img/isu-pp/solutions.webp");
  background-image: -webkit-image-set(url("/local/templates/.default/img/isu-pp/solutions-2x.webp") 2x, url("/local/templates/.default/img/isu-pp/solutions.webp") 1x);
  background-image: image-set("/local/templates/.default/img/isu-pp/solutions-2x.webp" 2x, "/local/templates/.default/img/isu-pp/solutions.webp" 1x);
}
.isuPP-our-solutions .container-1440 {
  padding: 37px 0 47px;
  display: grid;
}
.isuPP-our-solutions h3 {
  font: bold 28px/1 Cuprum;
  color: #30549a;
  margin: 0;
  grid-column: 1;
  grid-row: 1;
}
@media (max-width: 992px) {
  .isuPP-our-solutions {
    background-image: url("/local/templates/.default/img/isu-pp/solutions-mini.webp");
    background-image: -webkit-image-set(url("/local/templates/.default/img/isu-pp/solutions-mini-2x.webp") 2x, url("/local/templates/.default/img/isu-pp/solutions-mini.webp") 1x);
    background-image: image-set("/local/templates/.default/img/isu-pp/solutions-mini-2x.webp" 2x, "/local/templates/.default/img/isu-pp/solutions-mini.webp" 1x);
  }
  .isuPP-our-solutions div.container-1440 {
    padding: 14px var(--sidePadding) 74px;
    gap: 11px;
  }
  .isuPP-our-solutions h3 {
    margin-left: 24px;
  }
}
@media (min-width: 541px) and (max-width: 767px) {
  .isuPP-our-solutions {
    --sidePadding: 0px;
  }
}
@media (max-width: 540px) {
  .isuPP-our-solutions div.container-1440 {
    max-width: 100%;
  }
}
@media (max-width: 644px) {
  .isuPP-our-solutions .container-1440 {
    padding-bottom: 50px;
  }
  .isuPP-our-solutions h3 {
    margin-left: 0;
  }
}
.isuPP-our-solutions .isuPP-our-solutions--link {
  --btnSize: 56px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr var(--btnSize);
  grid-template-rows: auto 1fr;
  gap: 20px;
  justify-self: center;
  background-color: #fff;
  padding: 33px 30px 26px;
  border-radius: 6px;
  color: #09787c;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.isuPP-our-solutions .isuPP-our-solutions--link .isuPP-our-solutions--link-title {
  font: bold 45px/1 Cuprum;
  grid-column: 1/-1;
}
.isuPP-our-solutions .isuPP-our-solutions--link .isuPP-our-solutions--link-text {
  font: 600 21px/23px "Open Sans";
}
.isuPP-our-solutions .isuPP-our-solutions--link .isuPP-our-solutions--link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--btnSize);
  height: var(--btnSize);
  align-self: end;
  border: 2px solid #09787c;
  border-radius: 6px;
  transition: all 0.2s;
}
.isuPP-our-solutions .isuPP-our-solutions--link .isuPP-our-solutions--link-btn svg {
  width: var(--btnSize);
  transition: all 0.2s;
}
.isuPP-our-solutions .isuPP-our-solutions--link .isuPP-our-solutions--link-btn svg path {
  transition: all 0.2s;
}
.isuPP-our-solutions .isuPP-our-solutions--link:hover {
  color: #e42e87;
  border-color: currentColor;
}
.isuPP-our-solutions .isuPP-our-solutions--link:hover .isuPP-our-solutions--link-btn {
  border-color: #e42e87;
  background-color: #e42e87;
}
.isuPP-our-solutions .isuPP-our-solutions--link:hover .isuPP-our-solutions--link-btn svg path {
  fill: #fff;
}
@media (max-width: 992px) {
  .isuPP-our-solutions .isuPP-our-solutions--link {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 644px) {
  .isuPP-our-solutions .isuPP-our-solutions--link {
    --btnSize: 53px;
    padding: 20px 15px 17px;
    gap: 15px 20px;
  }
  .isuPP-our-solutions .isuPP-our-solutions--link .isuPP-our-solutions--link-title {
    font-size: 32px;
  }
  .isuPP-our-solutions .isuPP-our-solutions--link .isuPP-our-solutions--link-text {
    font-size: 14px;
    line-height: 1.2;
  }
}
@media (min-width: 993px) {
  .isuPP-our-solutions .isuPP-our-solutions--link {
    grid-column: 1;
    grid-row: 1;
    margin-top: 10px;
    max-width: 510px;
  }
}
@media (min-width: 541px) {
  .isuPP-products {
    --sidePadding: 0px;
  }
}
@media (max-width: 540px) {
  .isuPP-products:is(div.container-1440) {
    max-width: 100%;
  }
}
.isuPP-products h3 {
  margin: 0 0 25px;
  font: bold 28px/1 Cuprum;
  color: #30549a;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .isuPP-products h3 {
    margin-bottom: 36px;
    line-height: 36px;
  }
}
@media (max-width: 644px) {
  .isuPP-products h3 {
    margin-bottom: 15px;
  }
}
.isuPP-products .isuPP-products-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1440px) {
  .isuPP-products .isuPP-products-items {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 644px) {
  .isuPP-products .isuPP-products-items {
    gap: 10px;
  }
}
.isuPP-products .isuPP-products-item {
  --btnSize: 56px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr var(--btnSize);
  grid-template-rows: auto 1fr;
  gap: 20px;
  justify-self: center;
  background-color: #fff;
  padding: 33px 30px 26px;
  border-radius: 6px;
  color: #09787c;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.isuPP-products .isuPP-products-item .isuPP-products-item-title {
  font: bold 45px/1 Cuprum;
  grid-column: 1/-1;
}
.isuPP-products .isuPP-products-item .isuPP-products-item-text {
  font: 600 21px/23px "Open Sans";
}
.isuPP-products .isuPP-products-item .isuPP-products-item-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--btnSize);
  height: var(--btnSize);
  align-self: end;
  border: 2px solid #09787c;
  border-radius: 6px;
  transition: all 0.2s;
}
.isuPP-products .isuPP-products-item .isuPP-products-item-btn svg {
  width: var(--btnSize);
  transition: all 0.2s;
}
.isuPP-products .isuPP-products-item .isuPP-products-item-btn svg path {
  transition: all 0.2s;
}
.isuPP-products .isuPP-products-item:hover {
  color: #e42e87;
  border-color: currentColor;
}
.isuPP-products .isuPP-products-item:hover .isuPP-products-item-btn {
  border-color: #e42e87;
  background-color: #e42e87;
}
.isuPP-products .isuPP-products-item:hover .isuPP-products-item-btn svg path {
  fill: #fff;
}
@media (max-width: 992px) {
  .isuPP-products .isuPP-products-item {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 644px) {
  .isuPP-products .isuPP-products-item {
    --btnSize: 53px;
    padding: 20px 15px 17px;
    gap: 15px 20px;
  }
  .isuPP-products .isuPP-products-item .isuPP-products-item-title {
    font-size: 32px;
  }
  .isuPP-products .isuPP-products-item .isuPP-products-item-text {
    font-size: 14px;
    line-height: 1.2;
  }
}
.isuPP-products .isuPP-products-item {
  background-color: #09787c;
  grid-column: auto;
  grid-row: auto;
}
.isuPP-products .isuPP-products-item .isuPP-products-item-title, .isuPP-products .isuPP-products-item .isuPP-products-item-text {
  color: #fff;
}
.isuPP-products .isuPP-products-item .isuPP-products-item-btn:is(:not(.fake)) {
  border-color: #fff;
  /* &:hover {
  	background-color: #fff;
  	svg path { fill: #09787c; }
  } */
}
.isuPP-products .isuPP-products-item:hover {
  background-color: transparent;
}
.isuPP-products .isuPP-products-item:hover .isuPP-products-item-title, .isuPP-products .isuPP-products-item:hover .isuPP-products-item-text {
  color: #e42e87;
}
.isuPP-products-arrows {
  display: none;
}
@media (max-width: 644px) {
  .isuPP-products-arrows {
    --arrowSize: 53px;
  }
}
.isuPP-products-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--arrowSize);
  height: var(--arrowSize);
  border: 2px solid #30549a;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
@media (max-width: 644px) {
  .isuPP-products-arrow svg {
    transform: scale(0.95);
  }
}
.isuPP-products-arrow:hover {
  background-color: #e42e87;
  border-color: #e42e87;
}
.isuPP-products-arrow:hover svg path {
  fill: #fff;
}
.isuPP-products .swiper-wrapper {
  display: flex;
}
@media (max-width: 767px) {
  .isuPP-products .swiper-wrapper {
    flex-direction: column;
    gap: 10px;
  }
}
.isuPP-products .isuPP-products-items {
  overflow-x: hidden;
}
.isuPP-products .isuPP-products-item .isuPP-products-item-text {
  overflow-wrap: anywhere;
}
@media (min-width: 541px) {
  .isuPP-services {
    --sidePadding: 0px;
  }
}
@media (max-width: 540px) {
  .isuPP-services:is(div.container-1440) {
    max-width: 100%;
  }
}
@media (max-width: 644px) {
  .isuPP-services.container-1440 {
    --containerWidth: calc(100vw - 2 * var(--sidePadding));
  }
}
.isuPP-services h3 {
  margin: 0 0 25px;
  font: bold 28px/1 Cuprum;
  color: #30549a;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .isuPP-services h3 {
    margin-bottom: 11px;
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .isuPP-services-arrows {
    --arrowSize: 53px;
  }
}
.isuPP-services-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--arrowSize);
  height: var(--arrowSize);
  border: 2px solid #30549a;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
@media (max-width: 644px) {
  .isuPP-services-arrow svg {
    transform: scale(0.95);
  }
}
.isuPP-services-arrow:hover {
  background-color: #e42e87;
  border-color: #e42e87;
}
.isuPP-services-arrow:hover svg path {
  fill: #fff;
}
.isuPP-services .swiper {
  overflow: hidden;
}
@media (min-width: 1441px) {
  .isuPP-services .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(var(--columnsCount, 4), 1fr);
    gap: 20px;
  }
}
@media (max-width: 1440px) {
  .isuPP-services .swiper-wrapper {
    display: flex;
  }
}
.isuPP-services-slide {
  --imageHeight: 174px;
  grid-template-rows: var(--imageHeight) 1fr;
  gap: 18px;
}
@media (max-width: 992px) {
  .isuPP-services-slide {
    --imageHeiht: 142px;
  }
}
@media (max-width: 767px) {
  .isuPP-services-slide {
    --imageHeight: 163px;
    gap: 26px;
  }
}
@media (max-width: 992px) {
  .isuPP-services-slide-underline {
    padding: 0 20px 18px 25px;
  }
}
@media (max-width: 767px) {
  .isuPP-services-slide-underline {
    padding: 0 15px 15px;
  }
}
.isuPP-services-slide-description {
  font-size: 17px;
  line-height: 1.1;
}
@media (max-width: 992px) {
  .isuPP-services-slide-description {
    font-size: 16px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .isuPP-services-slide-description {
    font-size: 18px;
    line-height: 1.1;
    -webkit-line-clamp: 5;
  }
}
.isuPP-services-slide-link {
  --slideColor: #30549a;
  --linkSize: 56px;
  transition: all 0.2s;
}
.isuPP-services-slide-link svg path {
  transition: all 0.2s;
}
.isuPP-services-slide-link:hover {
  background-color: #e42e87;
}
.isuPP-services-slide-link:hover svg path {
  fill: #fff;
}
.isuPP-services-slide-link svg {
  width: 25px;
}
.isuPP-services-slide-link svg path {
  fill: var(--slideColor);
}
.isuPP-services-slide-link:hover {
  --slideColor: $pinkColor;
}
@media (max-width: 767px) {
  .isuPP-services-slide-link {
    --linkSize: 53px;
  }
}
.isuPP-projects {
  margin-bottom: 75px;
  margin-top: 0;
}
@media (max-width: 992px) {
  .isuPP-projects {
    max-width: var(--containerWidth);
  }
}
@media (min-width: 541px) {
  .isuPP-projects {
    --sidePadding: 0px;
  }
}
@media (max-width: 540px) {
  .isuPP-projects:is(div.container-1440) {
    max-width: 100%;
  }
}
@media (max-width: 644px) {
  .isuPP-projects:is(div.container-1440) {
    --containerWidth: calc(100vw - 2 * var(--sidePadding));
  }
}
.isuPP-projects h3 {
  margin: 0 0 25px;
  font: bold 28px/1 Cuprum;
  color: #30549a;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .isuPP-projects h3 {
    margin-bottom: 11px;
    line-height: 36px;
  }
}
@media (max-width: 1700px) {
  .isuPP-projects-allbranches {
    font-size: 14px;
    gap: 19px;
  }
}
@media (max-width: 1440px) {
  .isuPP-projects-allbranches {
    font-size: 22px;
    gap: 10px;
  }
}
@media (max-width: 644px) {
  .isuPP-projects-allbranches {
    font-size: 18px;
  }
}
.isuPP-projects-allbranches-btn {
  --buttonSize: 30px;
}
.isuPP-projects-allbranches-btn svg {
  transform: none;
}
@media (max-width: 1700px) {
  .isuPP-projects-allbranches-btn {
    border-width: 1px;
  }
}
@media (max-width: 1440px) {
  .isuPP-projects-allbranches-btn {
    --buttonSize: 56px;
    border-width: 2px;
  }
  .isuPP-projects-allbranches-btn svg {
    transform: scale(2);
  }
}
@media (max-width: 644px) {
  .isuPP-projects-allbranches-btn {
    --buttonSize: 53px;
  }
  .isuPP-projects-allbranches-btn svg {
    transform: scale(1.87);
  }
}
.isuPP-projects-project_huge {
  grid-column: span 2;
  grid-row: span 2;
}
.isuPP-projects-project_long {
  grid-column: span 2;
}
.isuPP-projects-project-name {
  font-size: 21px;
  line-height: 1.1;
  max-width: 265px;
}
.isuPP-projects-project-name span {
  display: block;
  font-size: 12px;
  line-height: 1;
}
@media (max-width: 992px) {
  .isuPP-projects-project-name span {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .isuPP-projects-project-name {
    font-size: 18px;
  }
}
@media (max-width: 644px) {
  .isuPP-projects-project-name {
    font-size: 20px;
    max-width: 320px;
  }
}
.isuPP-projects-project.show-all-projects .isuPP-projects-project-project {
  display: grid;
}
.isuPP-projects-project.show-all-projects .isuPP-projects-project-showMore {
  display: none;
}
@media (max-width: 1440px) {
  .isuPP-projects-project {
    grid-column: auto;
    grid-row: auto;
  }
}
.isuPP-projects-showMore:hover {
  background-color: #7f99cd;
}

.isuEE-control-systems {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  height: 304px;
  padding: 36px var(--sidePadding) 42px;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("/local/templates/.default/img/isu-pp/control-systems.webp");
  background-image: -webkit-image-set(url("/local/templates/.default/img/isu-pp/control-systems-2x.webp") 2x, url("/local/templates/.default/img/isu-pp/control-systems.webp") 1x);
  background-image: image-set("/local/templates/.default/img/isu-pp/control-systems-2x.webp" 2x, "/local/templates/.default/img/isu-pp/control-systems.webp" 1x);
  color: #fff;
}
@media (max-width: 1340px) {
  .isuEE-control-systems {
    height: auto;
  }
}
@media (max-width: 992px) {
  .isuEE-control-systems {
    background-image: url("/local/templates/.default/img/isu-pp/control-systems-mini.webp");
    background-image: -webkit-image-set(url("/local/templates/.default/img/isu-pp/control-systems-mini-2x.webp") 2x, url("/local/templates/.default/img/isu-pp/control-systems-mini.webp") 1x);
    background-image: image-set("/local/templates/.default/img/isu-pp/control-systems-mini-2x.webp" 2x, "/local/templates/.default/img/isu-pp/control-systems-mini.webp" 1x);
  }
}
@media (max-width: 644px) {
  .isuEE-control-systems {
    --containerWidth: 100%;
    gap: 4px;
    border-radius: 0;
  }
}
.isuEE-control-systems h3, .isuEE-control-systems h1 {
  font: bold 45px/1 Cuprum;
  max-width: 662px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
@media (max-width: 644px) {
  .isuEE-control-systems h3, .isuEE-control-systems h1 {
    font-size: 34px;
  }
}
.isuEE-control-systems--icon {
  position: absolute;
  right: var(--sidePadding);
  top: 40px;
  width: 87px;
  height: auto;
}
@media (max-width: 992px) {
  .isuEE-control-systems--icon {
    width: 53px;
  }
}
@media (max-width: 767px) {
  .isuEE-control-systems--icon {
    display: none;
  }
}
.isuEE-control-systems--subHeader {
  font: 24px/1 Cuprum;
  text-transform: uppercase;
}
@media (max-width: 644px) {
  .isuEE-control-systems--subHeader {
    font-size: 22px;
  }
}
.isuEE-control-systems--buttons {
  --gap: 40px;
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(var(--buttonsCount, 5), 1fr);
  gap: var(--gap);
}
.isuEE-control-systems--buttons a {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 18px/1 Cuprum;
  text-transform: uppercase;
  color: #fff;
  background-color: #30549a;
  border-radius: 6px;
  padding: 0 20px;
  height: 48px;
  transition: all 0.2s;
}
@media (max-width: 767px) {
  .isuEE-control-systems--buttons a {
    height: 60px;
    padding: 0 24px;
  }
  .isuEE-control-systems--buttons a svg {
    width: 28px;
  }
}
@media (max-width: 644px) {
  .isuEE-control-systems--buttons a {
    height: 32px;
    font-size: 15px;
    padding: 0 16px;
  }
  .isuEE-control-systems--buttons a svg {
    width: 20px;
  }
}
.isuEE-control-systems--buttons a {
  color: #09787c;
  font-size: 24px;
  font-weight: bold;
  background-color: #f5f5f5;
  justify-content: center;
  border: none;
  text-align: center;
}
.isuEE-control-systems--buttons a:hover {
  background-color: #e42e87;
  color: #f5f5f5;
}
@media (max-width: 767px) {
  .isuEE-control-systems--buttons a {
    height: 48px;
  }
}
@media (max-width: 644px) {
  .isuEE-control-systems--buttons a {
    font-size: 18px;
    height: 41px;
  }
}
@media (max-width: 1440px) {
  .isuEE-control-systems--buttons {
    --gap: 32px;
  }
}
@media (max-width: 1280px) {
  .isuEE-control-systems--buttons {
    --gap: 22px 20px;
    --buttonsCount: 3;
    margin-top: 15px;
  }
}
@media (max-width: 992px) {
  .isuEE-control-systems--buttons {
    --buttonsCount: 2;
  }
  .isuEE-control-systems--buttons a:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 644px) {
  .isuEE-control-systems--buttons {
    --gap: 15px;
    grid-template-columns: 1fr;
  }
}
.isuEE-control-systems {
  background-image: url("/local/templates/.default/img/isu-ee/control-systems.webp");
  background-image: -webkit-image-set(url("/local/templates/.default/img/isu-ee/control-systems.webp") 1x, url("/local/templates/.default/img/isu-ee/control-systems-2x.webp") 2x);
  background-image: image-set("/local/templates/.default/img/isu-ee/control-systems.webp" 1x, "/local/templates/.default/img/isu-ee/control-systems-2x.webp" 2x);
}
@media (max-width: 992px) {
  .isuEE-control-systems {
    background-image: url("/local/templates/.default/img/isu-ee/control-systems-mini.webp");
    background-image: -webkit-image-set(url("/local/templates/.default/img/isu-ee/control-systems-mini.webp") 1x, url("/local/templates/.default/img/isu-ee/control-systems-mini-2x.webp") 2x);
    background-image: image-set("/local/templates/.default/img/isu-ee/control-systems-mini.webp" 1x, "/local/templates/.default/img/isu-ee/control-systems-mini-2x.webp" 2x);
  }
}
.isuEE-control-systems--buttons a {
  color: #43A947;
}
.isuEE-our-mission {
  display: flex;
  align-items: center;
  gap: 95px;
  border: 2px solid #e42e87;
  border-radius: 6px;
  padding: 32px 124px 32px var(--sidePadding);
}
.isuEE-our-mission h3 {
  font: bold 31px/1 Cuprum;
  color: #e42e87;
  margin: 0;
  flex-shrink: 0;
  white-space: nowrap;
}
.isuEE-our-mission--text {
  font: 17px/1.2 "Open Sans";
  color: #000;
}
@media (max-width: 1440px) {
  .isuEE-our-mission {
    padding-right: 40px;
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .isuEE-our-mission {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px var(--sidePadding);
  }
}
@media (max-width: 767px) {
  .isuEE-our-mission {
    border: none;
  }
}
@media (max-width: 767px) and (min-width: 645px) {
  .isuEE-our-mission {
    --sidePadding: 0px;
  }
}
@media (max-width: 767px) {
  .isuEE-our-mission h3 {
    font-size: 28px;
  }
}
@media (max-width: 644px) {
  .isuEE-our-mission {
    padding: 0 var(--sidePadding);
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .isuEE-our-mission h3 {
    font-size: 24px;
    line-height: 15px;
  }
  .isuEE-our-mission:is(div.container-1440) {
    max-width: 540px;
  }
  .isuEE-our-mission--text {
    font-size: 16px;
    line-height: 1.25;
  }
}
@media (min-width: 993px) {
  .isuEE-our-mission {
    gap: 101px;
    padding-block: 46px;
    padding-right: 172px;
  }
}
@media (max-width: 1440px) {
  .isuEE-our-mission br {
    display: none;
  }
}
@media (max-width: 992px) {
  .isuEE-our-mission {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.isuEE-our-solutions {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("/local/templates/.default/img/isu-pp/solutions.webp");
  background-image: -webkit-image-set(url("/local/templates/.default/img/isu-pp/solutions-2x.webp") 2x, url("/local/templates/.default/img/isu-pp/solutions.webp") 1x);
  background-image: image-set("/local/templates/.default/img/isu-pp/solutions-2x.webp" 2x, "/local/templates/.default/img/isu-pp/solutions.webp" 1x);
}
.isuEE-our-solutions .container-1440 {
  padding: 37px 0 47px;
  display: grid;
}
.isuEE-our-solutions h3 {
  font: bold 28px/1 Cuprum;
  color: #30549a;
  margin: 0;
  grid-column: 1;
  grid-row: 1;
}
@media (max-width: 992px) {
  .isuEE-our-solutions {
    background-image: url("/local/templates/.default/img/isu-pp/solutions-mini.webp");
    background-image: -webkit-image-set(url("/local/templates/.default/img/isu-pp/solutions-mini-2x.webp") 2x, url("/local/templates/.default/img/isu-pp/solutions-mini.webp") 1x);
    background-image: image-set("/local/templates/.default/img/isu-pp/solutions-mini-2x.webp" 2x, "/local/templates/.default/img/isu-pp/solutions-mini.webp" 1x);
  }
  .isuEE-our-solutions div.container-1440 {
    padding: 14px var(--sidePadding) 74px;
    gap: 11px;
  }
  .isuEE-our-solutions h3 {
    margin-left: 24px;
  }
}
@media (min-width: 541px) and (max-width: 767px) {
  .isuEE-our-solutions {
    --sidePadding: 0px;
  }
}
@media (max-width: 540px) {
  .isuEE-our-solutions div.container-1440 {
    max-width: 100%;
  }
}
@media (max-width: 644px) {
  .isuEE-our-solutions .container-1440 {
    padding-bottom: 50px;
  }
  .isuEE-our-solutions h3 {
    margin-left: 0;
  }
}
.isuEE-our-solutions .isuEE-our-solutions--link {
  --btnSize: 56px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr var(--btnSize);
  grid-template-rows: auto 1fr;
  gap: 20px;
  justify-self: center;
  background-color: #fff;
  padding: 33px 30px 26px;
  border-radius: 6px;
  color: #09787c;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.isuEE-our-solutions .isuEE-our-solutions--link .isuEE-our-solutions--link-title {
  font: bold 45px/1 Cuprum;
  grid-column: 1/-1;
}
.isuEE-our-solutions .isuEE-our-solutions--link .isuEE-our-solutions--link-text {
  font: 600 21px/23px "Open Sans";
}
.isuEE-our-solutions .isuEE-our-solutions--link .isuEE-our-solutions--link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--btnSize);
  height: var(--btnSize);
  align-self: end;
  border: 2px solid #09787c;
  border-radius: 6px;
  transition: all 0.2s;
}
.isuEE-our-solutions .isuEE-our-solutions--link .isuEE-our-solutions--link-btn svg {
  width: var(--btnSize);
  transition: all 0.2s;
}
.isuEE-our-solutions .isuEE-our-solutions--link .isuEE-our-solutions--link-btn svg path {
  transition: all 0.2s;
}
.isuEE-our-solutions .isuEE-our-solutions--link:hover {
  color: #e42e87;
  border-color: currentColor;
}
.isuEE-our-solutions .isuEE-our-solutions--link:hover .isuEE-our-solutions--link-btn {
  border-color: #e42e87;
  background-color: #e42e87;
}
.isuEE-our-solutions .isuEE-our-solutions--link:hover .isuEE-our-solutions--link-btn svg path {
  fill: #fff;
}
@media (max-width: 992px) {
  .isuEE-our-solutions .isuEE-our-solutions--link {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 644px) {
  .isuEE-our-solutions .isuEE-our-solutions--link {
    --btnSize: 53px;
    padding: 20px 15px 17px;
    gap: 15px 20px;
  }
  .isuEE-our-solutions .isuEE-our-solutions--link .isuEE-our-solutions--link-title {
    font-size: 32px;
  }
  .isuEE-our-solutions .isuEE-our-solutions--link .isuEE-our-solutions--link-text {
    font-size: 14px;
    line-height: 1.2;
  }
}
@media (min-width: 993px) {
  .isuEE-our-solutions .isuEE-our-solutions--link {
    grid-column: 1;
    grid-row: 1;
    margin-top: 10px;
    max-width: 510px;
  }
}
.isuEE-our-solutions {
  background-image: url("/local/templates/.default/img/isu-ee/solutions.webp");
  background-image: -webkit-image-set(url("/local/templates/.default/img/isu-ee/solutions.webp") 1x, url("/local/templates/.default/img/isu-ee/solutions-2x.webp") 2x);
  background-image: image-set("/local/templates/.default/img/isu-ee/solutions.webp" 1x, "/local/templates/.default/img/isu-ee/solutions-2x.webp" 2x);
}
@media (max-width: 992px) {
  .isuEE-our-solutions {
    background-image: url("/local/templates/.default/img/isu-ee/solutions-mini.webp");
    background-image: -webkit-image-set(url("/local/templates/.default/img/isu-ee/solutions-mini.webp") 1x, url("/local/templates/.default/img/isu-ee/solutions-mini-2x.webp") 2x);
    background-image: image-set("/local/templates/.default/img/isu-ee/solutions-mini.webp" 1x, "/local/templates/.default/img/isu-ee/solutions-mini-2x.webp" 2x);
  }
  .isuEE-our-solutions h3 {
    color: #fff;
  }
  .isuEE-our-solutions div.container-1440 {
    padding-bottom: 30px;
  }
}
.isuEE-our-solutions--links {
  display: flex;
  gap: 20px;
  grid-column: 1;
  grid-row: 1;
  justify-content: flex-end;
}
@media (max-width: 1440px) {
  .isuEE-our-solutions--links {
    flex-direction: column;
    margin-top: 47px;
  }
}
.isuEE-our-solutions .isuEE-our-solutions--link {
  max-width: 550px;
  margin-top: 0;
}
.isuEE-our-solutions .isuEE-our-solutions--link .isuEE-our-solutions--link-title {
  color: #43A947;
}
.isuEE-our-solutions .isuEE-our-solutions--link .isuEE-our-solutions--link-text {
  color: #404040;
}
.isuEE-our-solutions .isuEE-our-solutions--link .isuEE-our-solutions--link-btn {
  border-color: #43A947;
}
.isuEE-our-solutions .isuEE-our-solutions--link:hover .isuEE-our-solutions--link-title, .isuEE-our-solutions .isuEE-our-solutions--link:hover .isuEE-our-solutions--link-text {
  color: inherit;
}
@media (max-width: 1440px) {
  .isuEE-our-solutions .isuEE-our-solutions--link {
    margin-top: 0;
  }
}
@media (max-width: 992px) {
  .isuEE-our-solutions .isuEE-our-solutions--link {
    max-width: 100%;
  }
}
@media (min-width: 541px) {
  .isuEE-products {
    --sidePadding: 0px;
  }
}
@media (max-width: 540px) {
  .isuEE-products:is(div.container-1440) {
    max-width: 100%;
  }
}
.isuEE-products h3 {
  margin: 0 0 25px;
  font: bold 28px/1 Cuprum;
  color: #30549a;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .isuEE-products h3 {
    margin-bottom: 36px;
    line-height: 36px;
  }
}
@media (max-width: 644px) {
  .isuEE-products h3 {
    margin-bottom: 15px;
  }
}
.isuEE-products .isuEE-products-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1440px) {
  .isuEE-products .isuEE-products-items {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 644px) {
  .isuEE-products .isuEE-products-items {
    gap: 10px;
  }
}
.isuEE-products .isuEE-products-item {
  --btnSize: 56px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr var(--btnSize);
  grid-template-rows: auto 1fr;
  gap: 20px;
  justify-self: center;
  background-color: #fff;
  padding: 33px 30px 26px;
  border-radius: 6px;
  color: #09787c;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.isuEE-products .isuEE-products-item .isuEE-products-item-title {
  font: bold 45px/1 Cuprum;
  grid-column: 1/-1;
}
.isuEE-products .isuEE-products-item .isuEE-products-item-text {
  font: 600 21px/23px "Open Sans";
}
.isuEE-products .isuEE-products-item .isuEE-products-item-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--btnSize);
  height: var(--btnSize);
  align-self: end;
  border: 2px solid #09787c;
  border-radius: 6px;
  transition: all 0.2s;
}
.isuEE-products .isuEE-products-item .isuEE-products-item-btn svg {
  width: var(--btnSize);
  transition: all 0.2s;
}
.isuEE-products .isuEE-products-item .isuEE-products-item-btn svg path {
  transition: all 0.2s;
}
.isuEE-products .isuEE-products-item:hover {
  color: #e42e87;
  border-color: currentColor;
}
.isuEE-products .isuEE-products-item:hover .isuEE-products-item-btn {
  border-color: #e42e87;
  background-color: #e42e87;
}
.isuEE-products .isuEE-products-item:hover .isuEE-products-item-btn svg path {
  fill: #fff;
}
@media (max-width: 992px) {
  .isuEE-products .isuEE-products-item {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 644px) {
  .isuEE-products .isuEE-products-item {
    --btnSize: 53px;
    padding: 20px 15px 17px;
    gap: 15px 20px;
  }
  .isuEE-products .isuEE-products-item .isuEE-products-item-title {
    font-size: 32px;
  }
  .isuEE-products .isuEE-products-item .isuEE-products-item-text {
    font-size: 14px;
    line-height: 1.2;
  }
}
.isuEE-products .isuEE-products-item {
  background-color: #09787c;
  grid-column: auto;
  grid-row: auto;
}
.isuEE-products .isuEE-products-item .isuEE-products-item-title, .isuEE-products .isuEE-products-item .isuEE-products-item-text {
  color: #fff;
}
.isuEE-products .isuEE-products-item .isuEE-products-item-btn:is(:not(.fake)) {
  border-color: #fff;
  /* &:hover {
  	background-color: #fff;
  	svg path { fill: #09787c; }
  } */
}
.isuEE-products .isuEE-products-item:hover {
  background-color: transparent;
}
.isuEE-products .isuEE-products-item:hover .isuEE-products-item-title, .isuEE-products .isuEE-products-item:hover .isuEE-products-item-text {
  color: #e42e87;
}
.isuEE-products-arrows {
  display: none;
}
@media (max-width: 644px) {
  .isuEE-products-arrows {
    --arrowSize: 53px;
  }
}
.isuEE-products-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--arrowSize);
  height: var(--arrowSize);
  border: 2px solid #30549a;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
@media (max-width: 644px) {
  .isuEE-products-arrow svg {
    transform: scale(0.95);
  }
}
.isuEE-products-arrow:hover {
  background-color: #e42e87;
  border-color: #e42e87;
}
.isuEE-products-arrow:hover svg path {
  fill: #fff;
}
.isuEE-products .swiper-wrapper {
  display: flex;
}
@media (max-width: 767px) {
  .isuEE-products .swiper-wrapper {
    flex-direction: column;
    gap: 10px;
  }
}
.isuEE-products .isuEE-products-items {
  overflow-x: hidden;
}
.isuEE-products .isuEE-products-item {
  background-color: #43A947;
}
.isuEE-products .isuEE-products-item .isuEE-products-item-text {
  overflow-wrap: anywhere;
}
.isuEE-services {
  --btnSize: 56px;
}
@media (min-width: 541px) {
  .isuEE-services {
    --sidePadding: 0px;
  }
}
@media (max-width: 540px) {
  .isuEE-services:is(div.container-1440) {
    max-width: 100%;
  }
}
@media (max-width: 644px) {
  .isuEE-services.container-1440 {
    --containerWidth: calc(100vw - 2 * var(--sidePadding));
  }
}
.isuEE-services h3 {
  margin: 0 0 25px;
  font: bold 28px/1 Cuprum;
  color: #30549a;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .isuEE-services h3 {
    margin-bottom: 11px;
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .isuEE-services-arrows {
    --arrowSize: 53px;
  }
}
.isuEE-services-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--arrowSize);
  height: var(--arrowSize);
  border: 2px solid #30549a;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
@media (max-width: 644px) {
  .isuEE-services-arrow svg {
    transform: scale(0.95);
  }
}
.isuEE-services-arrow:hover {
  background-color: #e42e87;
  border-color: #e42e87;
}
.isuEE-services-arrow:hover svg path {
  fill: #fff;
}
.isuEE-services .swiper {
  overflow: hidden;
}
@media (min-width: 1441px) {
  .isuEE-services .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(var(--columnsCount, 4), 1fr);
    gap: 20px;
  }
}
@media (max-width: 1440px) {
  .isuEE-services .swiper-wrapper {
    display: flex;
  }
}
.isuEE-services-slide {
  --imageHeight: 174px;
  grid-template-rows: var(--imageHeight) 1fr;
  gap: 18px;
}
@media (max-width: 992px) {
  .isuEE-services-slide {
    --imageHeiht: 142px;
  }
}
@media (max-width: 767px) {
  .isuEE-services-slide {
    --imageHeight: 163px;
    gap: 26px;
  }
}
@media (max-width: 992px) {
  .isuEE-services-slide-underline {
    padding: 0 20px 18px 25px;
  }
}
@media (max-width: 767px) {
  .isuEE-services-slide-underline {
    padding: 0 15px 15px;
  }
}
.isuEE-services-slide-description {
  font-size: 17px;
  line-height: 1.1;
}
@media (max-width: 992px) {
  .isuEE-services-slide-description {
    font-size: 16px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .isuEE-services-slide-description {
    font-size: 18px;
    line-height: 1.1;
    -webkit-line-clamp: 5;
  }
}
.isuEE-services-slide-link {
  --slideColor: #30549a;
  --linkSize: 56px;
  transition: all 0.2s;
}
.isuEE-services-slide-link svg path {
  transition: all 0.2s;
}
.isuEE-services-slide-link:hover {
  background-color: #e42e87;
}
.isuEE-services-slide-link:hover svg path {
  fill: #fff;
}
.isuEE-services-slide-link svg {
  width: 25px;
}
.isuEE-services-slide-link svg path {
  fill: var(--slideColor);
}
.isuEE-services-slide-link:hover {
  --slideColor: $pinkColor;
}
@media (max-width: 767px) {
  .isuEE-services-slide-link {
    --linkSize: 53px;
  }
}
@media (max-width: 767px) {
  .isuEE-services {
    --btnSize: 53px;
  }
}
.isuEE-services-underblock {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1440px) {
  .isuEE-services-underblock {
    display: flex;
  }
}
.isuEE-services-development {
  grid-column: 1/span 3;
  height: 163px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  background: center/cover url("/local/templates/.default/img/isu-ee/development.webp") no-repeat;
  background-image: -webkit-image-set(url("/local/templates/.default/img/isu-ee/development.webp") 1x, url("/local/templates/.default/img/isu-ee/development-2x.webp") 2x);
  background-image: image-set("/local/templates/.default/img/isu-ee/development.webp" 1x, "/local/templates/.default/img/isu-ee/development-2x.webp" 2x);
}
@media (max-width: 1440px) {
  .isuEE-services-development {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 143px;
  }
}
@media (max-width: 1440px) and (min-width: 768px) {
  .isuEE-services-development--link {
    grid-column: 2;
  }
}
@media (max-width: 767px) {
  .isuEE-services-development {
    grid-template-columns: 1fr;
    background-image: url("/local/templates/.default/img/isu-ee/development-mini.webp");
    background-image: -webkit-image-set(url("/local/templates/.default/img/isu-ee/development-mini.webp") 1x, url("/local/templates/.default/img/isu-ee/development-mini-2x.webp") 2x);
    background-image: image-set("/local/templates/.default/img/isu-ee/development-mini.webp" 1x, "/local/templates/.default/img/isu-ee/development-mini-2x.webp" 2x);
  }
}
.isuEE-services-development--link {
  height: 100%;
  background-color: #30549a;
  padding: 35px 30px 30px;
  color: #fff;
  font: 17px/1.1 "Open Sans";
  display: grid;
  grid-template-columns: 1fr var(--btnSize);
  gap: 30px;
  border-radius: 6px;
  transition: all 0.2s;
}
.isuEE-services-development--link-text {
  color: #f5f5f5;
  font: 17px/1.1 "Open Sans";
  overflow-wrap: anywhere;
}
.isuEE-services-development--link-btn {
  align-self: end;
  width: var(--btnSize);
  height: var(--btnSize);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  cursor: pointer;
}
@media (max-width: 767px) {
  .isuEE-services-development--link-btn svg {
    width: 25px;
  }
}
.isuEE-services-development--link-btn:hover {
  border-bottom-color: #fff;
}
@media (min-width: 768px) {
  .isuEE-services-development--link:hover {
    background-color: #e42e87;
  }
}
@media (max-width: 767px) {
  .isuEE-services-development--link {
    padding: 20px 15px 20px 25px;
    background-color: transparent;
  }
  .isuEE-services-development--link-text {
    font-size: 16px;
    line-height: 1;
  }
}
.isuEE-services-all {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr var(--btnSize);
  gap: 30px;
}
@media (max-width: 1440px) {
  .isuEE-services-all {
    display: none;
  }
}
.isuEE-services-all-text {
  color: #000;
  font: 17px/1.1 "Open Sans";
}
.isuEE-services-all-btn {
  align-self: end;
  width: var(--btnSize);
  height: var(--btnSize);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  cursor: pointer;
}
@media (max-width: 767px) {
  .isuEE-services-all-btn svg {
    width: 25px;
  }
}
.isuEE-services-all-btn {
  transition: all 0.2s;
}
.isuEE-services-all-btn svg path {
  transition: all 0.2s;
}
.isuEE-services-all-btn:hover {
  background-color: #e42e87;
}
.isuEE-services-all-btn:hover svg path {
  fill: #fff;
}
.isuEE-services-all-btn {
  border-color: #30549a;
}
.isuEE-services-all-btn:hover {
  border-color: #e42e87;
}
.isuEE-projects {
  margin-bottom: 75px;
  margin-top: 0;
}
@media (max-width: 992px) {
  .isuEE-projects {
    max-width: var(--containerWidth);
  }
}
@media (min-width: 541px) {
  .isuEE-projects {
    --sidePadding: 0px;
  }
}
@media (max-width: 540px) {
  .isuEE-projects:is(div.container-1440) {
    max-width: 100%;
  }
}
@media (max-width: 644px) {
  .isuEE-projects:is(div.container-1440) {
    --containerWidth: calc(100vw - 2 * var(--sidePadding));
  }
}
.isuEE-projects h3 {
  margin: 0 0 25px;
  font: bold 28px/1 Cuprum;
  color: #30549a;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .isuEE-projects h3 {
    margin-bottom: 11px;
    line-height: 36px;
  }
}
@media (max-width: 1700px) {
  .isuEE-projects-allbranches {
    font-size: 14px;
    gap: 19px;
  }
}
@media (max-width: 1440px) {
  .isuEE-projects-allbranches {
    font-size: 22px;
    gap: 10px;
  }
}
@media (max-width: 644px) {
  .isuEE-projects-allbranches {
    font-size: 18px;
  }
}
.isuEE-projects-allbranches-btn {
  --buttonSize: 30px;
}
.isuEE-projects-allbranches-btn svg {
  transform: none;
}
@media (max-width: 1700px) {
  .isuEE-projects-allbranches-btn {
    border-width: 1px;
  }
}
@media (max-width: 1440px) {
  .isuEE-projects-allbranches-btn {
    --buttonSize: 56px;
    border-width: 2px;
  }
  .isuEE-projects-allbranches-btn svg {
    transform: scale(2);
  }
}
@media (max-width: 644px) {
  .isuEE-projects-allbranches-btn {
    --buttonSize: 53px;
  }
  .isuEE-projects-allbranches-btn svg {
    transform: scale(1.87);
  }
}
.isuEE-projects-project_huge {
  grid-column: span 2;
  grid-row: span 2;
}
.isuEE-projects-project_long {
  grid-column: span 2;
}
.isuEE-projects-project-name {
  font-size: 21px;
  line-height: 1.1;
  max-width: 265px;
}
.isuEE-projects-project-name span {
  display: block;
  font-size: 12px;
  line-height: 1;
}
@media (max-width: 992px) {
  .isuEE-projects-project-name span {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .isuEE-projects-project-name {
    font-size: 18px;
  }
}
@media (max-width: 644px) {
  .isuEE-projects-project-name {
    font-size: 20px;
    max-width: 320px;
  }
}
.isuEE-projects-project.show-all-projects .isuEE-projects-project-project {
  display: grid;
}
.isuEE-projects-project.show-all-projects .isuEE-projects-project-showMore {
  display: none;
}
@media (max-width: 1440px) {
  .isuEE-projects-project {
    grid-column: auto;
    grid-row: auto;
  }
}
.isuEE-projects-showMore:hover {
  background-color: #7f99cd;
}
.isuEE-projects-project-name {
  padding: 0 7px 16px 20px;
  max-width: 333px;
}

.ubippp-control-systems {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  height: 304px;
  padding: 36px var(--sidePadding) 42px;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("/local/templates/.default/img/isu-pp/control-systems.webp");
  background-image: -webkit-image-set(url("/local/templates/.default/img/isu-pp/control-systems-2x.webp") 2x, url("/local/templates/.default/img/isu-pp/control-systems.webp") 1x);
  background-image: image-set("/local/templates/.default/img/isu-pp/control-systems-2x.webp" 2x, "/local/templates/.default/img/isu-pp/control-systems.webp" 1x);
  color: #fff;
}
@media (max-width: 1340px) {
  .ubippp-control-systems {
    height: auto;
  }
}
@media (max-width: 992px) {
  .ubippp-control-systems {
    background-image: url("/local/templates/.default/img/isu-pp/control-systems-mini.webp");
    background-image: -webkit-image-set(url("/local/templates/.default/img/isu-pp/control-systems-mini-2x.webp") 2x, url("/local/templates/.default/img/isu-pp/control-systems-mini.webp") 1x);
    background-image: image-set("/local/templates/.default/img/isu-pp/control-systems-mini-2x.webp" 2x, "/local/templates/.default/img/isu-pp/control-systems-mini.webp" 1x);
  }
}
@media (max-width: 644px) {
  .ubippp-control-systems {
    --containerWidth: 100%;
    gap: 4px;
    border-radius: 0;
  }
}
.ubippp-control-systems h3, .ubippp-control-systems h1 {
  font: bold 45px/1 Cuprum;
  max-width: 662px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
@media (max-width: 644px) {
  .ubippp-control-systems h3, .ubippp-control-systems h1 {
    font-size: 34px;
  }
}
.ubippp-control-systems--icon {
  position: absolute;
  right: var(--sidePadding);
  top: 40px;
  width: 87px;
  height: auto;
}
@media (max-width: 992px) {
  .ubippp-control-systems--icon {
    width: 53px;
  }
}
@media (max-width: 767px) {
  .ubippp-control-systems--icon {
    display: none;
  }
}
.ubippp-control-systems--subHeader {
  font: 24px/1 Cuprum;
  text-transform: uppercase;
}
@media (max-width: 644px) {
  .ubippp-control-systems--subHeader {
    font-size: 22px;
  }
}
.ubippp-control-systems--buttons {
  --gap: 40px;
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(var(--buttonsCount, 5), 1fr);
  gap: var(--gap);
}
.ubippp-control-systems--buttons a {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 18px/1 Cuprum;
  text-transform: uppercase;
  color: #fff;
  background-color: #30549a;
  border-radius: 6px;
  padding: 0 20px;
  height: 48px;
  transition: all 0.2s;
}
@media (max-width: 767px) {
  .ubippp-control-systems--buttons a {
    height: 60px;
    padding: 0 24px;
  }
  .ubippp-control-systems--buttons a svg {
    width: 28px;
  }
}
@media (max-width: 644px) {
  .ubippp-control-systems--buttons a {
    height: 32px;
    font-size: 15px;
    padding: 0 16px;
  }
  .ubippp-control-systems--buttons a svg {
    width: 20px;
  }
}
.ubippp-control-systems--buttons a {
  color: #09787c;
  font-size: 24px;
  font-weight: bold;
  background-color: #f5f5f5;
  justify-content: center;
  border: none;
  text-align: center;
}
.ubippp-control-systems--buttons a:hover {
  background-color: #e42e87;
  color: #f5f5f5;
}
@media (max-width: 767px) {
  .ubippp-control-systems--buttons a {
    height: 48px;
  }
}
@media (max-width: 644px) {
  .ubippp-control-systems--buttons a {
    font-size: 18px;
    height: 41px;
  }
}
@media (max-width: 1440px) {
  .ubippp-control-systems--buttons {
    --gap: 32px;
  }
}
@media (max-width: 1280px) {
  .ubippp-control-systems--buttons {
    --gap: 22px 20px;
    --buttonsCount: 3;
    margin-top: 15px;
  }
}
@media (max-width: 992px) {
  .ubippp-control-systems--buttons {
    --buttonsCount: 2;
  }
  .ubippp-control-systems--buttons a:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 644px) {
  .ubippp-control-systems--buttons {
    --gap: 15px;
    grid-template-columns: 1fr;
  }
}
.ubippp-control-systems {
  padding-top: 40px;
  padding-bottom: 40px;
  height: 398px;
  background-image: url("/local/templates/.default/img/ubippp/control-systems.webp");
  background-image: -webkit-image-set(url("/local/templates/.default/img/ubippp/control-systems.webp") 1x, url("/local/templates/.default/img/ubippp/control-systems-2x.webp") 2x);
  background-image: image-set("/local/templates/.default/img/ubippp/control-systems.webp" 1x, "/local/templates/.default/img/ubippp/control-systems-2x.webp" 2x);
}
.ubippp-control-systems h1 {
  max-width: 740px;
}
@media (max-width: 1340px) {
  .ubippp-control-systems {
    height: auto;
  }
}
@media (max-width: 1280px) {
  .ubippp-control-systems {
    background-image: url("/local/templates/.default/img/ubippp/control-systems-medium.webp");
    background-image: -webkit-image-set(url("/local/templates/.default/img/ubippp/control-systems-medium.webp") 1x, url("/local/templates/.default/img/ubippp/control-systems-medium-2x.webp") 2x);
    background-image: image-set("/local/templates/.default/img/ubippp/control-systems-medium.webp" 1x, "/local/templates/.default/img/ubippp/control-systems-medium-2x.webp" 2x);
  }
}
@media (max-width: 992px) {
  .ubippp-control-systems {
    padding-top: 24px;
    padding-bottom: 33px;
  }
}
@media (max-width: 767px) {
  .ubippp-control-systems {
    background-image: url("/local/templates/.default/img/ubippp/control-systems-mini.webp");
    background-image: -webkit-image-set(url("/local/templates/.default/img/ubippp/control-systems-mini.webp") 1x, url("/local/templates/.default/img/ubippp/control-systems-mini-2x.webp") 2x);
    background-image: image-set("/local/templates/.default/img/ubippp/control-systems-mini.webp" 1x, "/local/templates/.default/img/ubippp/control-systems-mini-2x.webp" 2x);
  }
}
@media (max-width: 644px) {
  .ubippp-control-systems {
    padding-top: 12px;
    padding-bottom: 54px;
  }
}
.ubippp-control-systems h3 {
  max-width: 742px;
}
@media (max-width: 644px) {
  .ubippp-control-systems h3 {
    font-size: 32px;
  }
}
.ubippp-control-systems--buttons {
  --buttonsCount: 4;
}
@media (max-width: 1340px) {
  .ubippp-control-systems--buttons {
    --buttonsCount: 2;
  }
}
@media (max-width: 992px) and (min-width: 645px) {
  .ubippp-control-systems--buttons {
    --gap: 20px;
  }
  .ubippp-control-systems--buttons a:first-child {
    grid-column: 1;
  }
}
@media (max-width: 767px) {
  .ubippp-control-systems--buttons {
    --buttonsCount: 1;
  }
}
.ubippp-control-systems--buttons a {
  color: #123e6c;
  height: 65px;
}
.ubippp-control-systems--buttons a:hover {
  background-color: #123e6c;
}
@media (max-width: 644px) {
  .ubippp-control-systems--buttons a {
    height: 41px;
  }
}
.ubippp-our-competence {
  display: flex;
  align-items: center;
  gap: 95px;
  border: 2px solid #e42e87;
  border-radius: 6px;
  padding: 32px 124px 32px var(--sidePadding);
}
.ubippp-our-competence h3 {
  font: bold 31px/1 Cuprum;
  color: #e42e87;
  margin: 0;
  flex-shrink: 0;
  white-space: nowrap;
}
.ubippp-our-competence--text {
  font: 17px/1.2 "Open Sans";
  color: #000;
}
@media (max-width: 1440px) {
  .ubippp-our-competence {
    padding-right: 40px;
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .ubippp-our-competence {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px var(--sidePadding);
  }
}
@media (max-width: 767px) {
  .ubippp-our-competence {
    border: none;
  }
}
@media (max-width: 767px) and (min-width: 645px) {
  .ubippp-our-competence {
    --sidePadding: 0px;
  }
}
@media (max-width: 767px) {
  .ubippp-our-competence h3 {
    font-size: 28px;
  }
}
@media (max-width: 644px) {
  .ubippp-our-competence {
    padding: 0 var(--sidePadding);
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .ubippp-our-competence h3 {
    font-size: 24px;
    line-height: 15px;
  }
  .ubippp-our-competence:is(div.container-1440) {
    max-width: 540px;
  }
  .ubippp-our-competence--text {
    font-size: 16px;
    line-height: 1.25;
  }
}
@media (min-width: 993px) {
  .ubippp-our-competence {
    gap: 86px;
    padding-block: 47px;
    padding-right: 80px;
  }
}
@media (max-width: 644px) {
  .ubippp-our-competence:is(div.container-1440) {
    max-width: 540px;
  }
}
.ubippp-our-competence--text {
  font-size: 24px;
}
@media (max-width: 644px) {
  .ubippp-our-competence--text {
    font-size: 16px;
  }
}
@media (min-width: 541px) {
  .ubippp-services {
    --sidePadding: 0px;
  }
}
@media (max-width: 540px) {
  .ubippp-services:is(div.container-1440) {
    max-width: 100%;
  }
}
@media (max-width: 644px) {
  .ubippp-services.container-1440 {
    --containerWidth: calc(100vw - 2 * var(--sidePadding));
  }
}
.ubippp-services h3 {
  margin: 0 0 25px;
  font: bold 28px/1 Cuprum;
  color: #30549a;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .ubippp-services h3 {
    margin-bottom: 11px;
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .ubippp-services-arrows {
    --arrowSize: 53px;
  }
}
.ubippp-services-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--arrowSize);
  height: var(--arrowSize);
  border: 2px solid #30549a;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
@media (max-width: 644px) {
  .ubippp-services-arrow svg {
    transform: scale(0.95);
  }
}
.ubippp-services-arrow:hover {
  background-color: #e42e87;
  border-color: #e42e87;
}
.ubippp-services-arrow:hover svg path {
  fill: #fff;
}
.ubippp-services .swiper {
  overflow: hidden;
}
@media (min-width: 1441px) {
  .ubippp-services .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(var(--columnsCount, 4), 1fr);
    gap: 20px;
  }
}
@media (max-width: 1440px) {
  .ubippp-services .swiper-wrapper {
    display: flex;
  }
}
.ubippp-services-slide {
  --imageHeight: 174px;
  grid-template-rows: var(--imageHeight) 1fr;
  gap: 18px;
}
@media (max-width: 992px) {
  .ubippp-services-slide {
    --imageHeiht: 142px;
  }
}
@media (max-width: 767px) {
  .ubippp-services-slide {
    --imageHeight: 163px;
    gap: 26px;
  }
}
@media (max-width: 992px) {
  .ubippp-services-slide-underline {
    padding: 0 20px 18px 25px;
  }
}
@media (max-width: 767px) {
  .ubippp-services-slide-underline {
    padding: 0 15px 15px;
  }
}
.ubippp-services-slide-description {
  font-size: 17px;
  line-height: 1.1;
}
@media (max-width: 992px) {
  .ubippp-services-slide-description {
    font-size: 16px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .ubippp-services-slide-description {
    font-size: 18px;
    line-height: 1.1;
    -webkit-line-clamp: 5;
  }
}
.ubippp-services-slide-link {
  --slideColor: #30549a;
  --linkSize: 56px;
  transition: all 0.2s;
}
.ubippp-services-slide-link svg path {
  transition: all 0.2s;
}
.ubippp-services-slide-link:hover {
  background-color: #e42e87;
}
.ubippp-services-slide-link:hover svg path {
  fill: #fff;
}
.ubippp-services-slide-link svg {
  width: 25px;
}
.ubippp-services-slide-link svg path {
  fill: var(--slideColor);
}
.ubippp-services-slide-link:hover {
  --slideColor: $pinkColor;
}
@media (max-width: 767px) {
  .ubippp-services-slide-link {
    --linkSize: 53px;
  }
}
.ubippp-services--list {
  --columnsCount: 3;
  display: grid;
  grid-template-columns: repeat(var(--columnsCount), auto);
  gap: 64px 22px;
}
@media (max-width: 1280px) {
  .ubippp-services--list {
    --columnsCount: 2;
    gap: 26px 21px;
  }
}
@media (max-width: 767px) {
  .ubippp-services--list {
    --columnsCount: 1;
    gap: 20px;
  }
}
.ubippp-services--card {
  --imageHeight: 200px;
  gap: 26px;
  border: none;
}
@media (max-width: 644px) {
  .ubippp-services--card {
    gap: 17px;
  }
}
.ubippp-services--card-underline {
  padding: 0 var(--sidePadding) 38px;
}
@media (min-width: 541px) {
  .ubippp-services--card-underline {
    --sidePadding: 40px;
  }
}
@media (max-width: 992px) {
  .ubippp-services--card-underline {
    --sidePadding: 20px;
    padding-bottom: 16px;
  }
}
.ubippp-services--card-title {
  color: #000;
  font: bold 21px/23px Cuprum;
  margin-bottom: 4px;
  text-transform: uppercase;
}
@media (max-width: 644px) {
  .ubippp-services--card-title {
    font-size: 20px;
    line-height: 1.2;
  }
}
.ubippp-services--card-description {
  font: 17px/1.1 "Open Sans";
  color: #000;
}
@media (max-width: 992px) {
  .ubippp-services--card-description {
    line-height: 1.2;
  }
}
@media (max-width: 644px) {
  .ubippp-services--card-description {
    font-size: 16px;
    line-height: 1.25;
  }
}
.ubippp-products {
  /* h3 {
  	@include sectionHeader;
  } */
  /* &--items {
  	--columnsCount: 3;
  	display: grid;
  	grid-template-columns: repeat(var(--columnsCount), 1fr);
  	gap: 17px;

  	@media (max-width: 992px) {
  		grid-auto-rows: 255px;
  	}

  	@media (max-width: $tablet) {
  		--columnsCount: 1;
  	}


  	@media (max-width: $realMobile) {
  		grid-auto-rows: 142px;
  	}
  } */
}
@media (min-width: 541px) {
  .ubippp-products {
    --sidePadding: 0px;
  }
}
@media (max-width: 540px) {
  .ubippp-products:is(div.container-1440) {
    max-width: 100%;
  }
}
.ubippp-products h3 {
  margin: 0 0 25px;
  font: bold 28px/1 Cuprum;
  color: #30549a;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .ubippp-products h3 {
    margin-bottom: 36px;
    line-height: 36px;
  }
}
@media (max-width: 644px) {
  .ubippp-products h3 {
    margin-bottom: 15px;
  }
}
.ubippp-products .ubippp-products-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1440px) {
  .ubippp-products .ubippp-products-items {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 644px) {
  .ubippp-products .ubippp-products-items {
    gap: 10px;
  }
}
.ubippp-products .ubippp-products-item {
  --btnSize: 56px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr var(--btnSize);
  grid-template-rows: auto 1fr;
  gap: 20px;
  justify-self: center;
  background-color: #fff;
  padding: 33px 30px 26px;
  border-radius: 6px;
  color: #09787c;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.ubippp-products .ubippp-products-item .ubippp-products-item-title {
  font: bold 45px/1 Cuprum;
  grid-column: 1/-1;
}
.ubippp-products .ubippp-products-item .ubippp-products-item-text {
  font: 600 21px/23px "Open Sans";
}
.ubippp-products .ubippp-products-item .ubippp-products-item-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--btnSize);
  height: var(--btnSize);
  align-self: end;
  border: 2px solid #09787c;
  border-radius: 6px;
  transition: all 0.2s;
}
.ubippp-products .ubippp-products-item .ubippp-products-item-btn svg {
  width: var(--btnSize);
  transition: all 0.2s;
}
.ubippp-products .ubippp-products-item .ubippp-products-item-btn svg path {
  transition: all 0.2s;
}
.ubippp-products .ubippp-products-item:hover {
  color: #e42e87;
  border-color: currentColor;
}
.ubippp-products .ubippp-products-item:hover .ubippp-products-item-btn {
  border-color: #e42e87;
  background-color: #e42e87;
}
.ubippp-products .ubippp-products-item:hover .ubippp-products-item-btn svg path {
  fill: #fff;
}
@media (max-width: 992px) {
  .ubippp-products .ubippp-products-item {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 644px) {
  .ubippp-products .ubippp-products-item {
    --btnSize: 53px;
    padding: 20px 15px 17px;
    gap: 15px 20px;
  }
  .ubippp-products .ubippp-products-item .ubippp-products-item-title {
    font-size: 32px;
  }
  .ubippp-products .ubippp-products-item .ubippp-products-item-text {
    font-size: 14px;
    line-height: 1.2;
  }
}
.ubippp-products .ubippp-products-item {
  background-color: #09787c;
  grid-column: auto;
  grid-row: auto;
}
.ubippp-products .ubippp-products-item .ubippp-products-item-title, .ubippp-products .ubippp-products-item .ubippp-products-item-text {
  color: #fff;
}
.ubippp-products .ubippp-products-item .ubippp-products-item-btn:is(:not(.fake)) {
  border-color: #fff;
  /* &:hover {
  	background-color: #fff;
  	svg path { fill: #09787c; }
  } */
}
.ubippp-products .ubippp-products-item:hover {
  background-color: transparent;
}
.ubippp-products .ubippp-products-item:hover .ubippp-products-item-title, .ubippp-products .ubippp-products-item:hover .ubippp-products-item-text {
  color: #e42e87;
}
@media (max-width: 644px) {
  .ubippp-products-arrows {
    --arrowSize: 53px;
  }
}
.ubippp-products-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--arrowSize);
  height: var(--arrowSize);
  border: 2px solid #30549a;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
@media (max-width: 644px) {
  .ubippp-products-arrow svg {
    transform: scale(0.95);
  }
}
.ubippp-products-arrow:hover {
  background-color: #e42e87;
  border-color: #e42e87;
}
.ubippp-products-arrow:hover svg path {
  fill: #fff;
}
.ubippp-products--items {
  overflow: hidden;
}
.ubippp-products .swiper-wrapper {
  display: flex;
}
@media (max-width: 767px) {
  .ubippp-products .swiper-wrapper {
    flex-direction: column;
    gap: 10px;
  }
}
.ubippp-products--item {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  gap: 50px 0;
  border-radius: 6px;
  color: #fff;
  background-color: #123e6c;
  padding: 21px 24px 26px;
  border: none;
}
@media (max-width: 767px) {
  .ubippp-products--item {
    gap: 12px;
  }
}
@media (max-width: 644px) {
  .ubippp-products--item {
    padding: 12px var(--sidePadding);
  }
}
.ubippp-products--item-title {
  grid-column: 1/span 2;
  font: bold 35px/1.15 Cuprum;
  text-transform: uppercase;
}
@media (max-width: 644px) {
  .ubippp-products--item-title {
    font-size: 25px;
    line-height: 1.1;
  }
}
.ubippp-products--item-1c, .ubippp-products--item-icon {
  align-self: end;
}
.ubippp-products--item-1c img {
  width: 90px;
}
@media (max-width: 644px) {
  .ubippp-products--item-1c img {
    width: 57px;
  }
}
.ubippp-products--item-icon img {
  width: 70px;
}
@media (max-width: 644px) {
  .ubippp-products--item-icon img {
    width: 45px;
  }
}
.ubippp-results h3 {
  margin: 0 0 25px;
  font: bold 28px/1 Cuprum;
  color: #30549a;
}
.ubippp-results--list {
  --columnsCount: 4;
  display: grid;
  grid-template-columns: repeat(var(--columnsCount), 1fr);
  gap: 45px 60px;
}
@media (max-width: 1440px) {
  .ubippp-results--list {
    --columnsCount: 2;
  }
}
@media (max-width: 992px) {
  .ubippp-results--list {
    --columnsCount: 1;
  }
}
.ubippp-results--result {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  color: #000;
}
.ubippp-results--result-icon {
  height: 35px;
}
.ubippp-results--result-header {
  font: bold 21px/1.1 Cuprum;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 644px) {
  .ubippp-results--result-header {
    font-size: 20px;
    line-height: 1.2;
  }
}
.ubippp-results--result ul {
  margin-left: 1.2em;
  margin-bottom: 0;
}
.ubippp-results--result ul.one-element-ul {
  margin-left: 0;
}
.ubippp-results--result ul li {
  list-style: disc outside;
  font: 16px/1.2 "Open Sans";
}
.ubippp-results--result ul li:last-child {
  margin-bottom: 0;
}
.ubippp-results--result ul li:only-child {
  list-style: none;
}
.ubippp-results--result ul li::marker {
  font-size: 12px;
}
@media (max-width: 644px) {
  .ubippp-results--result ul li {
    line-height: 1.25;
  }
}
.ubippp-projects {
  margin-bottom: 75px;
}
.ubippp-projects h3 {
  margin: 0 0 25px;
  font: bold 28px/1 Cuprum;
  color: #30549a;
}
.ubippp-projects--list {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.ubippp-projects--project {
  border-radius: 6px;
  background-color: #f5f5f5;
  color: #000;
  font: 21px/1.1 Cuprum;
}
@media (max-width: 767px) {
  .ubippp-projects--project {
    font-size: 20px;
  }
}
.ubippp-projects--project-header {
  border-radius: 6px;
  background-color: #123e6c;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 18px 0 23px;
  height: 87px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media (max-width: 767px) {
  .ubippp-projects--project-header {
    display: grid;
    grid-template-columns: 1fr 40px;
    grid-template-rows: auto 1fr;
    gap: 15px 9px;
    height: 132px;
    line-height: 1.2;
    padding: 16px var(--sidePadding) 10px;
  }
}
.ubippp-projects--project-header--icon {
  width: 120px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .ubippp-projects--project-header--icon {
    width: 70px;
  }
}
.ubippp-projects--project-header--text {
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 767px) {
  .ubippp-projects--project-header--text {
    grid-column: 1;
    grid-row: 2;
    font-size: 20px;
    line-height: 1.1;
  }
}
.ubippp-projects--project-header--expander {
  --expanderSize: 49px;
  margin-left: auto;
  border: 1px solid #fff;
  border-radius: 6px;
  width: var(--expanderSize);
  height: var(--expanderSize);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.ubippp-projects--project-header--expander img {
  height: 27px;
  transform: scale(-1);
  transition: all 0.2s;
}
.ubippp-projects--project-header--expander img:is(.ubippp-projects--project.open img) {
  transform: none;
}
@media (max-width: 767px) {
  .ubippp-projects--project-header--expander {
    --expanderSize: 40px;
    grid-row: 2;
    margin-bottom: 10px;
  }
  .ubippp-projects--project-header--expander img {
    height: 21px;
  }
}
@media (max-width: 644px) {
  .ubippp-projects--project-header--expander {
    margin-right: 5px;
  }
}
.ubippp-projects--project-body {
  padding: 26px 26px 22px;
  display: none;
}
@media (max-width: 992px) {
  .ubippp-projects--project-body {
    padding: 26px var(--sidePadding);
  }
}
@media (max-width: 767px) {
  .ubippp-projects--project-body {
    padding: 15px var(--sidePadding);
  }
}
.ubippp-projects--project-body:is(.ubippp-projects--project.open div) {
  display: flex;
  flex-direction: column;
}
.ubippp-projects--project-body p {
  margin: 0;
}
.ubippp-projects--project-body--resolution {
  color: #123e6c;
  font: bold 17px/1.3 Cuprum;
  text-transform: uppercase;
  margin: 22px 0 4px;
}
@media (max-width: 644px) {
  .ubippp-projects--project-body--resolution {
    margin-top: 15px;
  }
}
.ubippp-projects--project-body ul {
  margin-left: 0.6em;
  margin-bottom: 0;
}
.ubippp-projects--project-body ul li {
  font: 17px/1.3 Cuprum;
  list-style: disc outside;
  margin: 0;
}
.ubippp-projects--project-body ul li::marker {
  font-size: 12px;
}
@media (max-width: 767px) {
  .ubippp-projects--project-body ul li {
    font-size: 16px;
    line-height: 1.25;
  }
}
.ubippp-projects--project-body--text {
  font: 17px/1.3 Cuprum;
  display: flex;
  flex-direction: column;
}
.ubippp-projects--project-body--text a {
  color: #123e6c;
}
@media (max-width: 767px) {
  .ubippp-projects--project-body--text {
    font-size: 16px;
    line-height: 1.25;
  }
}

@media (max-width: 644px) {
  div.vkt {
    gap: 60px;
  }
}

.vkt-integrated-systems {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  height: 304px;
  padding: 36px var(--sidePadding) 42px;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("/local/templates/.default/img/isu-pp/control-systems.webp");
  background-image: -webkit-image-set(url("/local/templates/.default/img/isu-pp/control-systems-2x.webp") 2x, url("/local/templates/.default/img/isu-pp/control-systems.webp") 1x);
  background-image: image-set("/local/templates/.default/img/isu-pp/control-systems-2x.webp" 2x, "/local/templates/.default/img/isu-pp/control-systems.webp" 1x);
  color: #fff;
}
@media (max-width: 1340px) {
  .vkt-integrated-systems {
    height: auto;
  }
}
@media (max-width: 992px) {
  .vkt-integrated-systems {
    background-image: url("/local/templates/.default/img/isu-pp/control-systems-mini.webp");
    background-image: -webkit-image-set(url("/local/templates/.default/img/isu-pp/control-systems-mini-2x.webp") 2x, url("/local/templates/.default/img/isu-pp/control-systems-mini.webp") 1x);
    background-image: image-set("/local/templates/.default/img/isu-pp/control-systems-mini-2x.webp" 2x, "/local/templates/.default/img/isu-pp/control-systems-mini.webp" 1x);
  }
}
@media (max-width: 644px) {
  .vkt-integrated-systems {
    --containerWidth: 100%;
    gap: 4px;
    border-radius: 0;
  }
}
.vkt-integrated-systems h3, .vkt-integrated-systems h1 {
  font: bold 45px/1 Cuprum;
  max-width: 662px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
@media (max-width: 644px) {
  .vkt-integrated-systems h3, .vkt-integrated-systems h1 {
    font-size: 34px;
  }
}
.vkt-integrated-systems--icon {
  position: absolute;
  right: var(--sidePadding);
  top: 40px;
  width: 87px;
  height: auto;
}
@media (max-width: 992px) {
  .vkt-integrated-systems--icon {
    width: 53px;
  }
}
@media (max-width: 767px) {
  .vkt-integrated-systems--icon {
    display: none;
  }
}
.vkt-integrated-systems--subHeader {
  font: 24px/1 Cuprum;
  text-transform: uppercase;
}
@media (max-width: 644px) {
  .vkt-integrated-systems--subHeader {
    font-size: 22px;
  }
}
.vkt-integrated-systems--buttons {
  --gap: 40px;
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(var(--buttonsCount, 5), 1fr);
  gap: var(--gap);
}
.vkt-integrated-systems--buttons a {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 18px/1 Cuprum;
  text-transform: uppercase;
  color: #fff;
  background-color: #30549a;
  border-radius: 6px;
  padding: 0 20px;
  height: 48px;
  transition: all 0.2s;
}
@media (max-width: 767px) {
  .vkt-integrated-systems--buttons a {
    height: 60px;
    padding: 0 24px;
  }
  .vkt-integrated-systems--buttons a svg {
    width: 28px;
  }
}
@media (max-width: 644px) {
  .vkt-integrated-systems--buttons a {
    height: 32px;
    font-size: 15px;
    padding: 0 16px;
  }
  .vkt-integrated-systems--buttons a svg {
    width: 20px;
  }
}
.vkt-integrated-systems--buttons a {
  color: #09787c;
  font-size: 24px;
  font-weight: bold;
  background-color: #f5f5f5;
  justify-content: center;
  border: none;
  text-align: center;
}
.vkt-integrated-systems--buttons a:hover {
  background-color: #e42e87;
  color: #f5f5f5;
}
@media (max-width: 767px) {
  .vkt-integrated-systems--buttons a {
    height: 48px;
  }
}
@media (max-width: 644px) {
  .vkt-integrated-systems--buttons a {
    font-size: 18px;
    height: 41px;
  }
}
@media (max-width: 1440px) {
  .vkt-integrated-systems--buttons {
    --gap: 32px;
  }
}
@media (max-width: 1280px) {
  .vkt-integrated-systems--buttons {
    --gap: 22px 20px;
    --buttonsCount: 3;
    margin-top: 15px;
  }
}
@media (max-width: 992px) {
  .vkt-integrated-systems--buttons {
    --buttonsCount: 2;
  }
  .vkt-integrated-systems--buttons a:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 644px) {
  .vkt-integrated-systems--buttons {
    --gap: 15px;
    grid-template-columns: 1fr;
  }
}
.vkt-integrated-systems {
  height: 304px;
  background-image: url("/local/templates/.default/img/vkt/integrated-systems.webp");
  background-image: -webkit-image-set(url("/local/templates/.default/img/vkt/integrated-systems-2x.webp") 2x, url("/local/templates/.default/img/vkt/integrated-systems.webp") 1x);
  background-image: image-set("/local/templates/.default/img/vkt/integrated-systems-2x.webp" 2x, "/local/templates/.default/img/vkt/integrated-systems.webp" 1x);
}
@media (max-width: 1280px) {
  .vkt-integrated-systems {
    height: auto;
  }
}
@media (max-width: 992px) {
  .vkt-integrated-systems {
    padding-top: 24px;
    padding-bottom: 33px;
    background-image: url("/local/templates/.default/img/vkt/integrated-systems-mini.webp");
    background-image: -webkit-image-set(url("/local/templates/.default/img/vkt/integrated-systems-mini-2x.webp") 2x, url("/local/templates/.default/img/vkt/integrated-systems-mini.webp") 1x);
    background-image: image-set("/local/templates/.default/img/vkt/integrated-systems-mini-2x.webp" 2x, "/local/templates/.default/img/vkt/integrated-systems-mini.webp" 1x);
  }
  .vkt-integrated-systems h3 {
    max-width: 532px;
  }
}
@media (max-width: 644px) {
  .vkt-integrated-systems {
    padding-top: 16px;
    padding-bottom: 55px;
  }
}
@media (max-width: 992px) {
  .vkt-integrated-systems--buttons {
    --gap: 20px;
    margin-top: 20px;
  }
}
@media (max-width: 644px) {
  .vkt-integrated-systems--buttons {
    --gap: 15px;
    margin-top: 27px;
  }
}
.vkt-integrated-systems--buttons a {
  color: #e40f3e;
}
.vkt-integrated-systems--buttons a:hover {
  background-color: #e40f3e;
  color: #fff;
}
@media (min-width: 645px) {
  .vkt-integrated-systems--buttons a {
    height: 65px;
  }
}
.vkt-we-know {
  display: flex;
  align-items: center;
  gap: 95px;
  border: 2px solid #e42e87;
  border-radius: 6px;
  padding: 32px 124px 32px var(--sidePadding);
}
.vkt-we-know h3 {
  font: bold 31px/1 Cuprum;
  color: #e42e87;
  margin: 0;
  flex-shrink: 0;
  white-space: nowrap;
}
.vkt-we-know--text {
  font: 17px/1.2 "Open Sans";
  color: #000;
}
@media (max-width: 1440px) {
  .vkt-we-know {
    padding-right: 40px;
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .vkt-we-know {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px var(--sidePadding);
  }
}
@media (max-width: 767px) {
  .vkt-we-know {
    border: none;
  }
}
@media (max-width: 767px) and (min-width: 645px) {
  .vkt-we-know {
    --sidePadding: 0px;
  }
}
@media (max-width: 767px) {
  .vkt-we-know h3 {
    font-size: 28px;
  }
}
@media (max-width: 644px) {
  .vkt-we-know {
    padding: 0 var(--sidePadding);
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .vkt-we-know h3 {
    font-size: 24px;
    line-height: 15px;
  }
  .vkt-we-know:is(div.container-1440) {
    max-width: 540px;
  }
  .vkt-we-know--text {
    font-size: 16px;
    line-height: 1.25;
  }
}
@media (min-width: 993px) {
  .vkt-we-know {
    gap: 146px;
    padding-right: 80px;
  }
}
@media (min-width: 993px) {
  .vkt-we-know--text {
    font-size: 24px;
  }
}
@media (min-width: 645px) and (max-width: 992px) {
  .vkt-we-know--text {
    font-size: 20px;
  }
}
.vkt-we-know span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
}
@media (min-width: 541px) {
  .vkt-blok {
    --sidePadding: 0px;
  }
}
.vkt-blok h3 {
  color: #30549A;
  text-transform: uppercase;
  font: bold 28px/1 Cuprum;
  margin-bottom: 25px;
}
@media (max-width: 992px) {
  .vkt-blok h3 {
    margin-bottom: 21px;
    line-height: 36px;
  }
}
@media (max-width: 644px) {
  .vkt-blok h3 {
    margin-bottom: 23px;
    line-height: 1.1;
  }
}
.vkt-blok--body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 141px;
  background-color: #f5f5f5;
  border-radius: 6px;
  padding: 26px;
  padding-right: 77px;
  padding-left: 23px;
  height: 325px;
}
@media (max-width: 1200px) {
  .vkt-blok--body {
    gap: 75px;
  }
}
@media (max-width: 992px) {
  .vkt-blok--body {
    gap: 8px;
    flex-direction: column;
    height: auto;
    border-radius: 4.18px;
    padding: 75px max(var(--sidePadding), 22px) max(var(--sidePadding), 22px);
  }
}
@media (max-width: 644px) {
  .vkt-blok--body {
    gap: 8px;
    padding-top: 42px;
    border-radius: 2.32px;
  }
}
.vkt-blok--server {
  width: 51%;
  max-width: 703px;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .vkt-blok--server {
    width: 100%;
    max-width: 100%;
  }
}
.vkt-blok--text {
  font: 500 19px/1.2 "Open Sans";
}
@media (max-width: 992px) {
  .vkt-blok--text {
    margin-top: 67px;
    font-size: 20px;
  }
}
@media (max-width: 644px) {
  .vkt-blok--text {
    margin-top: 34px;
    font-size: 14px;
  }
}
.vkt-blok--text .blok-logo {
  width: 107px;
}
@media (max-width: 644px) {
  .vkt-blok--text .blok-logo {
    width: 62px;
  }
}
.vkt-blok--text p {
  margin: 7px 0 0 0;
}
@media (max-width: 644px) {
  .vkt-blok--text p {
    margin-top: 3px;
  }
}
.vkt-blok--arrow {
  --button-size: 49px;
  position: absolute;
  bottom: 26px;
  right: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e40f3e;
  border-radius: 6px;
  width: var(--button-size);
  height: var(--button-size);
  border: 2px solid #e40f3e;
  transition: all 0.2s;
}
@media (max-width: 992px) {
  .vkt-blok--arrow {
    --button-size: 56px;
    position: static;
    align-self: flex-end;
    border-radius: 4.18px;
  }
}
@media (max-width: 644px) {
  .vkt-blok--arrow {
    border-radius: 2.32px;
    --button-size: 53px;
  }
}
.vkt-blok--arrow svg {
  width: 25px;
}
@media (max-width: 992px) {
  .vkt-blok--arrow svg {
    width: 29px;
  }
}
@media (max-width: 644px) {
  .vkt-blok--arrow svg {
    width: 27.6px;
  }
}
.vkt-blok--arrow svg path {
  transition: fill 0.2s;
}
.vkt-blok--arrow:hover {
  border-color: #e40f3e;
  background-color: transparent;
}
.vkt-blok--arrow:hover svg path {
  fill: #e40f3e;
}
@media (min-width: 541px) {
  .vkt-products {
    --sidePadding: 0px;
  }
}
@media (max-width: 540px) {
  .vkt-products:is(div.container-1440) {
    max-width: 100%;
  }
}
.vkt-products h3 {
  margin: 0 0 25px;
  font: bold 28px/1 Cuprum;
  color: #30549a;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .vkt-products h3 {
    margin-bottom: 36px;
    line-height: 36px;
  }
}
@media (max-width: 644px) {
  .vkt-products h3 {
    margin-bottom: 15px;
  }
}
.vkt-products .vkt-products-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1440px) {
  .vkt-products .vkt-products-items {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 644px) {
  .vkt-products .vkt-products-items {
    gap: 10px;
  }
}
.vkt-products .vkt-products-item {
  --btnSize: 56px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr var(--btnSize);
  grid-template-rows: auto 1fr;
  gap: 20px;
  justify-self: center;
  background-color: #fff;
  padding: 33px 30px 26px;
  border-radius: 6px;
  color: #09787c;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.vkt-products .vkt-products-item .vkt-products-item-title {
  font: bold 45px/1 Cuprum;
  grid-column: 1/-1;
}
.vkt-products .vkt-products-item .vkt-products-item-text {
  font: 600 21px/23px "Open Sans";
}
.vkt-products .vkt-products-item .vkt-products-item-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--btnSize);
  height: var(--btnSize);
  align-self: end;
  border: 2px solid #09787c;
  border-radius: 6px;
  transition: all 0.2s;
}
.vkt-products .vkt-products-item .vkt-products-item-btn svg {
  width: var(--btnSize);
  transition: all 0.2s;
}
.vkt-products .vkt-products-item .vkt-products-item-btn svg path {
  transition: all 0.2s;
}
.vkt-products .vkt-products-item:hover {
  color: #e42e87;
  border-color: currentColor;
}
.vkt-products .vkt-products-item:hover .vkt-products-item-btn {
  border-color: #e42e87;
  background-color: #e42e87;
}
.vkt-products .vkt-products-item:hover .vkt-products-item-btn svg path {
  fill: #fff;
}
@media (max-width: 992px) {
  .vkt-products .vkt-products-item {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 644px) {
  .vkt-products .vkt-products-item {
    --btnSize: 53px;
    padding: 20px 15px 17px;
    gap: 15px 20px;
  }
  .vkt-products .vkt-products-item .vkt-products-item-title {
    font-size: 32px;
  }
  .vkt-products .vkt-products-item .vkt-products-item-text {
    font-size: 14px;
    line-height: 1.2;
  }
}
.vkt-products .vkt-products-item {
  background-color: #09787c;
  grid-column: auto;
  grid-row: auto;
}
.vkt-products .vkt-products-item .vkt-products-item-title, .vkt-products .vkt-products-item .vkt-products-item-text {
  color: #fff;
}
.vkt-products .vkt-products-item .vkt-products-item-btn:is(:not(.fake)) {
  border-color: #fff;
  /* &:hover {
  	background-color: #fff;
  	svg path { fill: #09787c; }
  } */
}
.vkt-products .vkt-products-item:hover {
  background-color: transparent;
}
.vkt-products .vkt-products-item:hover .vkt-products-item-title, .vkt-products .vkt-products-item:hover .vkt-products-item-text {
  color: #e42e87;
}
@media (max-width: 992px) {
  .vkt-products h3 {
    margin-bottom: 21px;
  }
}
@media (max-width: 644px) {
  .vkt-products h3 {
    margin-bottom: 23px;
    line-height: 1.1;
  }
}
.vkt-products .vkt-products-items {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1200px) {
  .vkt-products .vkt-products-items {
    grid-template-columns: 1fr;
  }
}
.vkt-products .vkt-products-item {
  --btnSize: 49px;
  padding: 26px;
  transition: all 0.2s;
  border-width: 2px;
}
.vkt-products .vkt-products-item.product-item--1 {
  background: 26px bottom/auto 102px url(../static/img/vkt/product-bg-1.webp) no-repeat #e40f3e;
  background-image: -webkit-image-set(url("../static/img/vkt/product-bg-1.webp") 1x, url("../static/img/vkt/product-bg-1-2x.webp") 2x);
  background-image: image-set("../static/img/vkt/product-bg-1.webp" 1x, "../static/img/vkt/product-bg-1-2x.webp" 2x);
}
.vkt-products .vkt-products-item.product-item--2 {
  background: 30px calc(100% + 2px)/auto 138px url(../static/img/vkt/product-bg-2.webp) no-repeat #e40f3e;
  background-image: -webkit-image-set(url("../static/img/vkt/product-bg-2.webp") 1x, url("../static/img/vkt/product-bg-2-2x.webp") 2x);
  background-image: image-set("../static/img/vkt/product-bg-2.webp" 1x, "../static/img/vkt/product-bg-2-2x.webp" 2x);
}
.vkt-products .vkt-products-item.product-item--3 {
  background: 26px bottom/auto 138px url(../static/img/vkt/product-bg-3.webp) no-repeat #e40f3e;
  background-image: -webkit-image-set(url("../static/img/vkt/product-bg-3.webp") 1x, url("../static/img/vkt/product-bg-3-2x.webp") 2x);
  background-image: image-set("../static/img/vkt/product-bg-3.webp" 1x, "../static/img/vkt/product-bg-3-2x.webp" 2x);
}
@media (max-width: 992px) {
  .vkt-products .vkt-products-item {
    min-height: 255px;
  }
  .vkt-products .vkt-products-item.product-item--1 {
    background-size: auto 117px;
  }
  .vkt-products .vkt-products-item.product-item--2, .vkt-products .vkt-products-item.product-item--3 {
    background-size: auto 159px;
  }
}
@media (max-width: 644px) {
  .vkt-products .vkt-products-item {
    min-height: 160px;
    padding: 16px 20px 20px 16px;
    border-radius: 3.32px;
  }
  .vkt-products .vkt-products-item.product-item--1 {
    background-size: auto 65px;
  }
  .vkt-products .vkt-products-item.product-item--2, .vkt-products .vkt-products-item.product-item--3 {
    background-size: auto 88px;
  }
}
@media (max-width: 420px) {
  .vkt-products .vkt-products-item.product-item--3 .vkt-products-item-title {
    grid-column: 1/span 2;
    grid-row: 1;
  }
}
.vkt-products .vkt-products-item .vkt-products-item-title {
  grid-column: 1;
  font-size: 35px;
  text-transform: uppercase;
  transition: all 0.2s;
}
@media (max-width: 992px) {
  .vkt-products .vkt-products-item .vkt-products-item-title {
    font-size: 40px;
    line-height: 1;
    grid-row: 1/span 2;
  }
}
@media (max-width: 644px) {
  .vkt-products .vkt-products-item .vkt-products-item-title {
    font-size: 28px;
    line-height: 1.1;
  }
}
.vkt-products .vkt-products-item-btn {
  grid-row: 2;
  grid-column: 2;
  transition: all 0.2s;
}
.vkt-products .vkt-products-item-btn svg {
  width: 26px;
}
.vkt-products .vkt-products-item:hover {
  background-color: transparent;
}
.vkt-products .vkt-products-item:hover .vkt-products-item-title {
  color: #e40f3e;
}
.vkt-products .vkt-products-item:hover .vkt-products-item-btn:is(:not(.fake)) {
  border-color: #e40f3e;
  background-color: transparent;
}
.vkt-products .vkt-products-item:hover .vkt-products-item-btn svg path {
  fill: #e40f3e;
}
@media (min-width: 541px) {
  .vkt-techsupport {
    --sidePadding: 0px;
  }
}
.vkt-techsupport h3 {
  margin: 0 0 25px;
  font: bold 28px/1 Cuprum;
  color: #30549a;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .vkt-techsupport h3 {
    margin-bottom: 21px;
  }
}
@media (max-width: 644px) {
  .vkt-techsupport h3 {
    line-height: 1.1;
    margin-bottom: 23px;
  }
}
.vkt-techsupport--wrapper {
  display: grid;
  grid-template-columns: 1fr 974px;
  grid-template-rows: 222px;
  gap: 20px;
}
@media (max-width: 1400px) {
  .vkt-techsupport--wrapper {
    grid-template-columns: 478px 1fr;
    grid-template-rows: auto;
  }
}
@media (max-width: 1200px) {
  .vkt-techsupport--wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto 137px;
  }
}
@media (max-width: 644px) {
  .vkt-techsupport--wrapper {
    grid-template-rows: auto 76px;
    gap: 10px;
  }
}
.vkt-techsupport--contacts {
  border-radius: 6px;
  background-color: #F5F5F5;
  padding: 30px 26px;
  font: 500 19px/1.2 "Open Sans";
}
@media (max-width: 992px) {
  .vkt-techsupport--contacts {
    font-size: 22px;
    padding: 35px;
  }
}
@media (max-width: 644px) {
  .vkt-techsupport--contacts {
    font-size: 14px;
    padding: 20px;
  }
}
@media (max-width: 540px) {
  .vkt-techsupport--contacts {
    padding: 20px var(--sidePadding);
  }
}
.vkt-techsupport--contacts p {
  margin: 0;
}
.vkt-techsupport--contacts p:not(:last-child) {
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .vkt-techsupport--contacts p:not(:last-child) {
    margin-bottom: 9px;
  }
}
.vkt-techsupport--contacts span {
  display: block;
}
.vkt-techsupport--contacts a {
  color: #E12641;
  cursor: pointer;
  text-decoration: none;
}
.vkt-techsupport--contacts a:not(:hover) {
  border-bottom-color: #E12641 !important;
}
.vkt-techsupport--image {
  border-radius: 6px;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.vkt-techsupport--icon {
  width: 45px;
}
@media (max-width: 992px) {
  .vkt-techsupport--icon {
    width: 52px;
  }
}
@media (max-width: 644px) {
  .vkt-techsupport--icon {
    width: 28px;
  }
}
.vkt-projects {
  margin-bottom: 75px;
  margin-top: 0;
}
@media (max-width: 992px) {
  .vkt-projects {
    max-width: var(--containerWidth);
  }
}
@media (min-width: 541px) {
  .vkt-projects {
    --sidePadding: 0px;
  }
}
@media (max-width: 540px) {
  .vkt-projects:is(div.container-1440) {
    max-width: 100%;
  }
}
@media (max-width: 644px) {
  .vkt-projects:is(div.container-1440) {
    --containerWidth: calc(100vw - 2 * var(--sidePadding));
  }
}
.vkt-projects h3 {
  margin: 0 0 25px;
  font: bold 28px/1 Cuprum;
  color: #30549a;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .vkt-projects h3 {
    margin-bottom: 11px;
    line-height: 36px;
  }
}
@media (max-width: 1700px) {
  .vkt-projects-allbranches {
    font-size: 14px;
    gap: 19px;
  }
}
@media (max-width: 1440px) {
  .vkt-projects-allbranches {
    font-size: 22px;
    gap: 10px;
  }
}
@media (max-width: 644px) {
  .vkt-projects-allbranches {
    font-size: 18px;
  }
}
.vkt-projects-allbranches-btn {
  --buttonSize: 30px;
}
.vkt-projects-allbranches-btn svg {
  transform: none;
}
@media (max-width: 1700px) {
  .vkt-projects-allbranches-btn {
    border-width: 1px;
  }
}
@media (max-width: 1440px) {
  .vkt-projects-allbranches-btn {
    --buttonSize: 56px;
    border-width: 2px;
  }
  .vkt-projects-allbranches-btn svg {
    transform: scale(2);
  }
}
@media (max-width: 644px) {
  .vkt-projects-allbranches-btn {
    --buttonSize: 53px;
  }
  .vkt-projects-allbranches-btn svg {
    transform: scale(1.87);
  }
}
.vkt-projects-project_huge {
  grid-column: span 2;
  grid-row: span 2;
}
.vkt-projects-project_long {
  grid-column: span 2;
}
.vkt-projects-project-name {
  font-size: 21px;
  line-height: 1.1;
  max-width: 265px;
}
.vkt-projects-project-name span {
  display: block;
  font-size: 12px;
  line-height: 1;
}
@media (max-width: 992px) {
  .vkt-projects-project-name span {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .vkt-projects-project-name {
    font-size: 18px;
  }
}
@media (max-width: 644px) {
  .vkt-projects-project-name {
    font-size: 20px;
    max-width: 320px;
  }
}
.vkt-projects-project.show-all-projects .vkt-projects-project-project {
  display: grid;
}
.vkt-projects-project.show-all-projects .vkt-projects-project-showMore {
  display: none;
}
@media (max-width: 1440px) {
  .vkt-projects-project {
    grid-column: auto;
    grid-row: auto;
  }
}
.vkt-projects-showMore:hover {
  background-color: #7f99cd;
}
.vkt-projects {
  margin-bottom: 60px;
}
.vkt-projects h3 {
  margin-bottom: 5px;
}
@media (max-width: 992px) {
  .vkt-projects h3 {
    margin-bottom: 1px;
  }
}
@media (max-width: 644px) {
  .vkt-projects h3 {
    line-height: 36px;
    margin-bottom: 3px;
  }
}
.vkt-projects-project-name {
  max-width: 100%;
}

div.rpo *::-moz-selection {
  background-color: #19719a;
  color: #fff;
}

div.rpo *::selection {
  background-color: #19719a;
  color: #fff;
}

.rpo-software-development {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  height: 304px;
  padding: 36px var(--sidePadding) 42px;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("/local/templates/.default/img/isu-pp/control-systems.webp");
  background-image: -webkit-image-set(url("/local/templates/.default/img/isu-pp/control-systems-2x.webp") 2x, url("/local/templates/.default/img/isu-pp/control-systems.webp") 1x);
  background-image: image-set("/local/templates/.default/img/isu-pp/control-systems-2x.webp" 2x, "/local/templates/.default/img/isu-pp/control-systems.webp" 1x);
  color: #fff;
}
@media (max-width: 1340px) {
  .rpo-software-development {
    height: auto;
  }
}
@media (max-width: 992px) {
  .rpo-software-development {
    background-image: url("/local/templates/.default/img/isu-pp/control-systems-mini.webp");
    background-image: -webkit-image-set(url("/local/templates/.default/img/isu-pp/control-systems-mini-2x.webp") 2x, url("/local/templates/.default/img/isu-pp/control-systems-mini.webp") 1x);
    background-image: image-set("/local/templates/.default/img/isu-pp/control-systems-mini-2x.webp" 2x, "/local/templates/.default/img/isu-pp/control-systems-mini.webp" 1x);
  }
}
@media (max-width: 644px) {
  .rpo-software-development {
    --containerWidth: 100%;
    gap: 4px;
    border-radius: 0;
  }
}
.rpo-software-development h3, .rpo-software-development h1 {
  font: bold 45px/1 Cuprum;
  max-width: 662px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
@media (max-width: 644px) {
  .rpo-software-development h3, .rpo-software-development h1 {
    font-size: 34px;
  }
}
.rpo-software-development--icon {
  position: absolute;
  right: var(--sidePadding);
  top: 40px;
  width: 87px;
  height: auto;
}
@media (max-width: 992px) {
  .rpo-software-development--icon {
    width: 53px;
  }
}
@media (max-width: 767px) {
  .rpo-software-development--icon {
    display: none;
  }
}
.rpo-software-development--subHeader {
  font: 24px/1 Cuprum;
  text-transform: uppercase;
}
@media (max-width: 644px) {
  .rpo-software-development--subHeader {
    font-size: 22px;
  }
}
.rpo-software-development--buttons {
  --gap: 40px;
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(var(--buttonsCount, 5), 1fr);
  gap: var(--gap);
}
.rpo-software-development--buttons a {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 18px/1 Cuprum;
  text-transform: uppercase;
  color: #fff;
  background-color: #30549a;
  border-radius: 6px;
  padding: 0 20px;
  height: 48px;
  transition: all 0.2s;
}
@media (max-width: 767px) {
  .rpo-software-development--buttons a {
    height: 60px;
    padding: 0 24px;
  }
  .rpo-software-development--buttons a svg {
    width: 28px;
  }
}
@media (max-width: 644px) {
  .rpo-software-development--buttons a {
    height: 32px;
    font-size: 15px;
    padding: 0 16px;
  }
  .rpo-software-development--buttons a svg {
    width: 20px;
  }
}
.rpo-software-development--buttons a {
  color: #09787c;
  font-size: 24px;
  font-weight: bold;
  background-color: #f5f5f5;
  justify-content: center;
  border: none;
  text-align: center;
}
.rpo-software-development--buttons a:hover {
  background-color: #e42e87;
  color: #f5f5f5;
}
@media (max-width: 767px) {
  .rpo-software-development--buttons a {
    height: 48px;
  }
}
@media (max-width: 644px) {
  .rpo-software-development--buttons a {
    font-size: 18px;
    height: 41px;
  }
}
@media (max-width: 1440px) {
  .rpo-software-development--buttons {
    --gap: 32px;
  }
}
@media (max-width: 1280px) {
  .rpo-software-development--buttons {
    --gap: 22px 20px;
    --buttonsCount: 3;
    margin-top: 15px;
  }
}
@media (max-width: 992px) {
  .rpo-software-development--buttons {
    --buttonsCount: 2;
  }
  .rpo-software-development--buttons a:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 644px) {
  .rpo-software-development--buttons {
    --gap: 15px;
    grid-template-columns: 1fr;
  }
}
.rpo-software-development {
  padding: 36px 40px 29px;
  height: 290px;
  background-image: url("/local/templates/.default/img/rpo/software-development.webp");
  background-image: -webkit-image-set(url("/local/templates/.default/img/rpo/software-development.webp") 1x, url("/local/templates/.default/img/rpo/software-development-2x.webp") 2x);
  background-image: image-set("/local/templates/.default/img/rpo/software-development.webp" 1x, "/local/templates/.default/img/rpo/software-development-2x.webp" 2x);
}
.rpo-software-development--buttons a {
  color: #3dace0;
}
@media (min-width: 993px) {
  .rpo-software-development--buttons a {
    height: 65px;
  }
}
@media (min-width: 645px) and (max-width: 992px) {
  .rpo-software-development--buttons a {
    height: 50px;
  }
}
.rpo-software-development--buttons a:hover {
  background-color: #3dace0;
}
@media (max-width: 992px) {
  .rpo-software-development--buttons {
    --buttonsCount: 1;
  }
}
@media (max-width: 992px) and (min-width: 645px) {
  .rpo-software-development--buttons {
    --gap: 20px;
  }
}
@media (max-width: 1280px) {
  .rpo-software-development {
    height: auto;
    background-image: url("/local/templates/.default/img/rpo/software-development-medium.webp");
    background-image: -webkit-image-set(url("/local/templates/.default/img/rpo/software-development-medium.webp") 1x, url("/local/templates/.default/img/rpo/software-development-medium-2x.webp") 2x);
    background-image: image-set("/local/templates/.default/img/rpo/software-development-medium.webp" 1x, "/local/templates/.default/img/rpo/software-development-medium-2x.webp" 2x);
  }
}
@media (max-width: 992px) {
  .rpo-software-development {
    padding-top: 20px;
    padding-bottom: 52px;
  }
  .rpo-software-development h3 {
    max-width: 400px;
  }
}
@media (max-width: 644px) {
  .rpo-software-development {
    padding-top: 11px;
    padding-bottom: 41px;
    background-image: url("/local/templates/.default/img/rpo/software-development-mini.webp");
    background-image: -webkit-image-set(url("/local/templates/.default/img/rpo/software-development-mini.webp") 1x, url("/local/templates/.default/img/rpo/software-development-mini-2x.webp") 2x);
    background-image: image-set("/local/templates/.default/img/rpo/software-development-mini.webp" 1x, "/local/templates/.default/img/rpo/software-development-mini-2x.webp" 2x);
  }
}
.rpo-we-can {
  display: flex;
  align-items: center;
  gap: 95px;
  border: 2px solid #e42e87;
  border-radius: 6px;
  padding: 32px 124px 32px var(--sidePadding);
}
.rpo-we-can h3 {
  font: bold 31px/1 Cuprum;
  color: #e42e87;
  margin: 0;
  flex-shrink: 0;
  white-space: nowrap;
}
.rpo-we-can--text {
  font: 17px/1.2 "Open Sans";
  color: #000;
}
@media (max-width: 1440px) {
  .rpo-we-can {
    padding-right: 40px;
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .rpo-we-can {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px var(--sidePadding);
  }
}
@media (max-width: 767px) {
  .rpo-we-can {
    border: none;
  }
}
@media (max-width: 767px) and (min-width: 645px) {
  .rpo-we-can {
    --sidePadding: 0px;
  }
}
@media (max-width: 767px) {
  .rpo-we-can h3 {
    font-size: 28px;
  }
}
@media (max-width: 644px) {
  .rpo-we-can {
    padding: 0 var(--sidePadding);
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .rpo-we-can h3 {
    font-size: 24px;
    line-height: 15px;
  }
  .rpo-we-can:is(div.container-1440) {
    max-width: 540px;
  }
  .rpo-we-can--text {
    font-size: 16px;
    line-height: 1.25;
  }
}
.rpo-we-can span {
  font-weight: 600;
  margin-top: 10px;
  display: block;
}
@media (min-width: 993px) {
  .rpo-we-can {
    gap: 122px;
    padding-block: 33px;
    padding-right: 84px;
  }
}
@media (min-width: 541px) {
  .rpo-products {
    --sidePadding: 0px;
  }
}
@media (max-width: 540px) {
  .rpo-products:is(div.container-1440) {
    max-width: 100%;
  }
}
.rpo-products h3 {
  margin: 0 0 25px;
  font: bold 28px/1 Cuprum;
  color: #30549a;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .rpo-products h3 {
    margin-bottom: 36px;
    line-height: 36px;
  }
}
@media (max-width: 644px) {
  .rpo-products h3 {
    margin-bottom: 15px;
  }
}
.rpo-products .rpo-products-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1440px) {
  .rpo-products .rpo-products-items {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 644px) {
  .rpo-products .rpo-products-items {
    gap: 10px;
  }
}
.rpo-products .rpo-products-item {
  --btnSize: 56px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr var(--btnSize);
  grid-template-rows: auto 1fr;
  gap: 20px;
  justify-self: center;
  background-color: #fff;
  padding: 33px 30px 26px;
  border-radius: 6px;
  color: #09787c;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.rpo-products .rpo-products-item .rpo-products-item-title {
  font: bold 45px/1 Cuprum;
  grid-column: 1/-1;
}
.rpo-products .rpo-products-item .rpo-products-item-text {
  font: 600 21px/23px "Open Sans";
}
.rpo-products .rpo-products-item .rpo-products-item-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--btnSize);
  height: var(--btnSize);
  align-self: end;
  border: 2px solid #09787c;
  border-radius: 6px;
  transition: all 0.2s;
}
.rpo-products .rpo-products-item .rpo-products-item-btn svg {
  width: var(--btnSize);
  transition: all 0.2s;
}
.rpo-products .rpo-products-item .rpo-products-item-btn svg path {
  transition: all 0.2s;
}
.rpo-products .rpo-products-item:hover {
  color: #e42e87;
  border-color: currentColor;
}
.rpo-products .rpo-products-item:hover .rpo-products-item-btn {
  border-color: #e42e87;
  background-color: #e42e87;
}
.rpo-products .rpo-products-item:hover .rpo-products-item-btn svg path {
  fill: #fff;
}
@media (max-width: 992px) {
  .rpo-products .rpo-products-item {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 644px) {
  .rpo-products .rpo-products-item {
    --btnSize: 53px;
    padding: 20px 15px 17px;
    gap: 15px 20px;
  }
  .rpo-products .rpo-products-item .rpo-products-item-title {
    font-size: 32px;
  }
  .rpo-products .rpo-products-item .rpo-products-item-text {
    font-size: 14px;
    line-height: 1.2;
  }
}
.rpo-products .rpo-products-item {
  background-color: #09787c;
  grid-column: auto;
  grid-row: auto;
}
.rpo-products .rpo-products-item .rpo-products-item-title, .rpo-products .rpo-products-item .rpo-products-item-text {
  color: #fff;
}
.rpo-products .rpo-products-item .rpo-products-item-btn:is(:not(.fake)) {
  border-color: #fff;
  /* &:hover {
  	background-color: #fff;
  	svg path { fill: #09787c; }
  } */
}
.rpo-products .rpo-products-item:hover {
  background-color: transparent;
}
.rpo-products .rpo-products-item:hover .rpo-products-item-title, .rpo-products .rpo-products-item:hover .rpo-products-item-text {
  color: #e42e87;
}
@media (min-width: 993px) and (max-width: 1440px) {
  .rpo-products .rpo-products-items {
    grid-template-columns: 1fr 1fr;
  }
}
.rpo-products .rpo-products-item {
  background-color: #3dace0;
}
.rpo-products .rpo-products-item:hover .rpo-products-item-btn {
  background-color: transparent;
  border-color: var(--basic-colors-pink);
}
.rpo-products .rpo-products-item:hover .rpo-products-item-btn svg path {
  fill: var(--basic-colors-pink);
}
.rpo-services {
  --columnsCount: 3;
}
@media (min-width: 541px) {
  .rpo-services {
    --sidePadding: 0px;
  }
}
@media (max-width: 540px) {
  .rpo-services:is(div.container-1440) {
    max-width: 100%;
  }
}
@media (max-width: 644px) {
  .rpo-services.container-1440 {
    --containerWidth: calc(100vw - 2 * var(--sidePadding));
  }
}
.rpo-services h3 {
  margin: 0 0 25px;
  font: bold 28px/1 Cuprum;
  color: #30549a;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .rpo-services h3 {
    margin-bottom: 11px;
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .rpo-services-arrows {
    --arrowSize: 53px;
  }
}
.rpo-services-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--arrowSize);
  height: var(--arrowSize);
  border: 2px solid #30549a;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
@media (max-width: 644px) {
  .rpo-services-arrow svg {
    transform: scale(0.95);
  }
}
.rpo-services-arrow:hover {
  background-color: #e42e87;
  border-color: #e42e87;
}
.rpo-services-arrow:hover svg path {
  fill: #fff;
}
.rpo-services .swiper {
  overflow: hidden;
}
@media (min-width: 1441px) {
  .rpo-services .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(var(--columnsCount, 4), 1fr);
    gap: 20px;
  }
}
@media (max-width: 1440px) {
  .rpo-services .swiper-wrapper {
    display: flex;
  }
}
.rpo-services-slide {
  --imageHeight: 174px;
  grid-template-rows: var(--imageHeight) 1fr;
  gap: 18px;
}
@media (max-width: 992px) {
  .rpo-services-slide {
    --imageHeiht: 142px;
  }
}
@media (max-width: 767px) {
  .rpo-services-slide {
    --imageHeight: 163px;
    gap: 26px;
  }
}
@media (max-width: 992px) {
  .rpo-services-slide-underline {
    padding: 0 20px 18px 25px;
  }
}
@media (max-width: 767px) {
  .rpo-services-slide-underline {
    padding: 0 15px 15px;
  }
}
.rpo-services-slide-description {
  font-size: 17px;
  line-height: 1.1;
}
@media (max-width: 992px) {
  .rpo-services-slide-description {
    font-size: 16px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .rpo-services-slide-description {
    font-size: 18px;
    line-height: 1.1;
    -webkit-line-clamp: 5;
  }
}
.rpo-services-slide-link {
  --slideColor: #30549a;
  --linkSize: 56px;
  transition: all 0.2s;
}
.rpo-services-slide-link svg path {
  transition: all 0.2s;
}
.rpo-services-slide-link:hover {
  background-color: #e42e87;
}
.rpo-services-slide-link:hover svg path {
  fill: #fff;
}
.rpo-services-slide-link svg {
  width: 25px;
}
.rpo-services-slide-link svg path {
  fill: var(--slideColor);
}
.rpo-services-slide-link:hover {
  --slideColor: $pinkColor;
}
@media (max-width: 767px) {
  .rpo-services-slide-link {
    --linkSize: 53px;
  }
}
@media (max-width: 992px) {
  .rpo-services h3 {
    margin-bottom: 20px;
  }
}
@media (max-width: 1440px) {
  .rpo-services-arrows {
    display: none;
  }
}
@media (max-width: 644px) {
  .rpo-services-arrows {
    display: flex;
    margin-top: -30px;
    margin-bottom: 20px;
  }
}
@media (min-width: 645px) {
  .rpo-services .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(var(--columnsCount), 1fr);
    gap: 20px;
  }
}
@media (min-width: 645px) and (max-width: 992px) {
  .rpo-services .swiper-wrapper {
    --columnsCount: 2;
  }
}
.rpo-services-slide {
  --imageHeight: 240px;
  gap: 22px;
}
.rpo-services-slide-underline {
  padding-left: 30px;
  padding-bottom: 26px;
  gap: 33px;
  min-height: 111px;
}
@media (max-width: 1440px) {
  .rpo-services-slide-underline {
    min-height: 104px;
    padding-bottom: 16px;
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .rpo-services-slide-underline {
    padding-left: 20px;
  }
}
@media (max-width: 644px) {
  .rpo-services-slide-underline {
    padding-inline: max(15px, var(--sidePadding));
    padding-bottom: 20px;
    gap: 25px;
  }
}
.rpo-services-slide-description {
  font-size: 21px;
}
@media (max-width: 1440px) {
  .rpo-services-slide-description {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 1440px) {
  .rpo-services-slide {
    --imageHeight: 200px;
    gap: 16px;
  }
}
@media (max-width: 992px) {
  .rpo-services-slide-link {
    display: none;
  }
}
@media (max-width: 767px) {
  .rpo-services-slide {
    --imageHeight: 169px;
  }
}
@media (max-width: 644px) {
  .rpo-services-slide {
    --imageHeight: 163px;
    max-width: 100%;
  }
  .rpo-services-slide-link {
    display: flex;
  }
  .rpo-services-slide-description {
    line-height: 1.1;
  }
}
@media (min-width: 541px) {
  .rpo-expertise {
    --sidePadding: 0px;
  }
}
@media (max-width: 540px) {
  .rpo-expertise:is(div.container-1440) {
    max-width: 100%;
  }
}
.rpo-expertise h3 {
  margin: 0 0 25px;
  font: bold 28px/1 Cuprum;
  color: #30549a;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .rpo-expertise h3 {
    margin-bottom: 20px;
    line-height: 36px;
  }
}
.rpo-expertise-block {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.rpo-expertise-block.open {
  background-color: #f5f5f5;
}
.rpo-expertise-block-expander {
  display: flex;
  align-items: center;
  gap: 21px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.rpo-expertise-block-expander i {
  font: normal bold 19px/1 "Open Sans";
  text-transform: none;
}
@media (max-width: 767px) {
  .rpo-expertise-block-expander i {
    display: none;
  }
}
.rpo-expertise-block-expander-button {
  --buttonSize: 49px;
  width: var(--buttonSize);
  height: var(--buttonSize);
  flex-shrink: 0;
  border-radius: 6px;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rpo-expertise-block-expander-button img {
  height: 26px;
  transform: rotateX(180deg);
  transition: transform 0.2s;
}
.rpo-expertise-block-expander-button img:is(.open img) {
  transform: none;
}
@media (max-width: 767px) {
  .rpo-expertise-block-expander-button {
    --buttonSize: 40px;
    border-width: 1.5px;
  }
  .rpo-expertise-block-expander-button img {
    height: 21px;
  }
}
.rpo-expertise-block + .rpo-expertise-block {
  margin-top: 20px;
}
.rpo-expertise-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 500 21px/23px Cuprum;
  color: #fff;
  background-color: #3dace0;
  padding: 22px 30px;
  border-radius: 6px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .rpo-expertise-name {
    font-size: 20px;
    line-height: 1.2;
    padding: 20px;
    padding-left: max(15px, var(--sidePadding));
  }
}
.rpo-expertise-details {
  display: none;
  padding: 30px;
  font: 17px/1.3 Cuprum;
  color: #000;
}
@media (max-width: 767px) {
  .rpo-expertise-details {
    font-size: 20px;
    padding: 20px max(15px, var(--sidePadding));
  }
}
.rpo-expertise-details:where(.open div) {
  display: block;
}
.rpo-expertise-details-caption {
  color: #123e6c;
  font-weight: bold;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.rpo-expertise-details-caption:not(:first-child) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .rpo-expertise-details-caption:not(:first-child) {
    margin-top: 23px;
  }
}
.rpo-expertise-details ul {
  list-style: inside square;
  margin: 0;
}
.rpo-expertise-details ul li {
  margin: 0;
}
.rpo-expertise-details ul li::marker {
  font-size: 10px;
}
.rpo-projects {
  margin-bottom: 75px;
  margin-top: 0;
}
@media (max-width: 992px) {
  .rpo-projects {
    max-width: var(--containerWidth);
  }
}
@media (min-width: 541px) {
  .rpo-projects {
    --sidePadding: 0px;
  }
}
@media (max-width: 540px) {
  .rpo-projects:is(div.container-1440) {
    max-width: 100%;
  }
}
@media (max-width: 644px) {
  .rpo-projects:is(div.container-1440) {
    --containerWidth: calc(100vw - 2 * var(--sidePadding));
  }
}
.rpo-projects h3 {
  margin: 0 0 25px;
  font: bold 28px/1 Cuprum;
  color: #30549a;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .rpo-projects h3 {
    margin-bottom: 11px;
    line-height: 36px;
  }
}
@media (max-width: 1700px) {
  .rpo-projects-allbranches {
    font-size: 14px;
    gap: 19px;
  }
}
@media (max-width: 1440px) {
  .rpo-projects-allbranches {
    font-size: 22px;
    gap: 10px;
  }
}
@media (max-width: 644px) {
  .rpo-projects-allbranches {
    font-size: 18px;
  }
}
.rpo-projects-allbranches-btn {
  --buttonSize: 30px;
}
.rpo-projects-allbranches-btn svg {
  transform: none;
}
@media (max-width: 1700px) {
  .rpo-projects-allbranches-btn {
    border-width: 1px;
  }
}
@media (max-width: 1440px) {
  .rpo-projects-allbranches-btn {
    --buttonSize: 56px;
    border-width: 2px;
  }
  .rpo-projects-allbranches-btn svg {
    transform: scale(2);
  }
}
@media (max-width: 644px) {
  .rpo-projects-allbranches-btn {
    --buttonSize: 53px;
  }
  .rpo-projects-allbranches-btn svg {
    transform: scale(1.87);
  }
}
.rpo-projects-project_huge {
  grid-column: span 2;
  grid-row: span 2;
}
.rpo-projects-project_long {
  grid-column: span 2;
}
.rpo-projects-project-name {
  font-size: 21px;
  line-height: 1.1;
  max-width: 265px;
}
.rpo-projects-project-name span {
  display: block;
  font-size: 12px;
  line-height: 1;
}
@media (max-width: 992px) {
  .rpo-projects-project-name span {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .rpo-projects-project-name {
    font-size: 18px;
  }
}
@media (max-width: 644px) {
  .rpo-projects-project-name {
    font-size: 20px;
    max-width: 320px;
  }
}
.rpo-projects-project.show-all-projects .rpo-projects-project-project {
  display: grid;
}
.rpo-projects-project.show-all-projects .rpo-projects-project-showMore {
  display: none;
}
@media (max-width: 1440px) {
  .rpo-projects-project {
    grid-column: auto;
    grid-row: auto;
  }
}
.rpo-projects-showMore:hover {
  background-color: #7f99cd;
}
@media (max-width: 992px) {
  .rpo-projects h3 {
    margin-bottom: 0;
  }
}
.rpo-projects-project-name {
  line-height: 1;
}

div.ptk *::-moz-selection {
  background-color: #e13194;
  color: #fff;
}

div.ptk *::selection {
  background-color: #e13194;
  color: #fff;
}

.ptk-software-development {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  height: 304px;
  padding: 36px var(--sidePadding) 42px;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("/local/templates/.default/img/isu-pp/control-systems.webp");
  background-image: -webkit-image-set(url("/local/templates/.default/img/isu-pp/control-systems-2x.webp") 2x, url("/local/templates/.default/img/isu-pp/control-systems.webp") 1x);
  background-image: image-set("/local/templates/.default/img/isu-pp/control-systems-2x.webp" 2x, "/local/templates/.default/img/isu-pp/control-systems.webp" 1x);
  color: #fff;
}
@media (max-width: 1340px) {
  .ptk-software-development {
    height: auto;
  }
}
@media (max-width: 992px) {
  .ptk-software-development {
    background-image: url("/local/templates/.default/img/isu-pp/control-systems-mini.webp");
    background-image: -webkit-image-set(url("/local/templates/.default/img/isu-pp/control-systems-mini-2x.webp") 2x, url("/local/templates/.default/img/isu-pp/control-systems-mini.webp") 1x);
    background-image: image-set("/local/templates/.default/img/isu-pp/control-systems-mini-2x.webp" 2x, "/local/templates/.default/img/isu-pp/control-systems-mini.webp" 1x);
  }
}
@media (max-width: 644px) {
  .ptk-software-development {
    --containerWidth: 100%;
    gap: 4px;
    border-radius: 0;
  }
}
.ptk-software-development h3, .ptk-software-development h1 {
  font: bold 45px/1 Cuprum;
  max-width: 662px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
@media (max-width: 644px) {
  .ptk-software-development h3, .ptk-software-development h1 {
    font-size: 34px;
  }
}
.ptk-software-development--icon {
  position: absolute;
  right: var(--sidePadding);
  top: 40px;
  width: 87px;
  height: auto;
}
@media (max-width: 992px) {
  .ptk-software-development--icon {
    width: 53px;
  }
}
@media (max-width: 767px) {
  .ptk-software-development--icon {
    display: none;
  }
}
.ptk-software-development--subHeader {
  font: 24px/1 Cuprum;
  text-transform: uppercase;
}
@media (max-width: 644px) {
  .ptk-software-development--subHeader {
    font-size: 22px;
  }
}
.ptk-software-development--buttons {
  --gap: 40px;
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(var(--buttonsCount, 5), 1fr);
  gap: var(--gap);
}
.ptk-software-development--buttons a {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 18px/1 Cuprum;
  text-transform: uppercase;
  color: #fff;
  background-color: #30549a;
  border-radius: 6px;
  padding: 0 20px;
  height: 48px;
  transition: all 0.2s;
}
@media (max-width: 767px) {
  .ptk-software-development--buttons a {
    height: 60px;
    padding: 0 24px;
  }
  .ptk-software-development--buttons a svg {
    width: 28px;
  }
}
@media (max-width: 644px) {
  .ptk-software-development--buttons a {
    height: 32px;
    font-size: 15px;
    padding: 0 16px;
  }
  .ptk-software-development--buttons a svg {
    width: 20px;
  }
}
.ptk-software-development--buttons a {
  color: #09787c;
  font-size: 24px;
  font-weight: bold;
  background-color: #f5f5f5;
  justify-content: center;
  border: none;
  text-align: center;
}
.ptk-software-development--buttons a:hover {
  background-color: #e42e87;
  color: #f5f5f5;
}
@media (max-width: 767px) {
  .ptk-software-development--buttons a {
    height: 48px;
  }
}
@media (max-width: 644px) {
  .ptk-software-development--buttons a {
    font-size: 18px;
    height: 41px;
  }
}
@media (max-width: 1440px) {
  .ptk-software-development--buttons {
    --gap: 32px;
  }
}
@media (max-width: 1280px) {
  .ptk-software-development--buttons {
    --gap: 22px 20px;
    --buttonsCount: 3;
    margin-top: 15px;
  }
}
@media (max-width: 992px) {
  .ptk-software-development--buttons {
    --buttonsCount: 2;
  }
  .ptk-software-development--buttons a:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 644px) {
  .ptk-software-development--buttons {
    --gap: 15px;
    grid-template-columns: 1fr;
  }
}
.ptk-software-development {
  padding: 36px var(--sidePadding) 29px;
  height: 290px;
  background-image: url("/local/templates/.default/img/ptk/software-development.webp");
  background-image: -webkit-image-set(url("/local/templates/.default/img/ptk/software-development.webp") 1x, url("/local/templates/.default/img/ptk/software-development-2x.webp") 2x);
  background-image: image-set("/local/templates/.default/img/ptk/software-development.webp" 1x, "/local/templates/.default/img/ptk/software-development-2x.webp" 2x);
}
@media (max-width: 1280px) {
  .ptk-software-development {
    height: auto;
    background-image: url("/local/templates/.default/img/ptk/software-development-medium.webp");
    background-image: -webkit-image-set(url("/local/templates/.default/img/ptk/software-development-medium.webp") 1x, url("/local/templates/.default/img/ptk/software-development-medium-2x.webp") 2x);
    background-image: image-set("/local/templates/.default/img/ptk/software-development-medium.webp" 1x, "/local/templates/.default/img/ptk/software-development-medium-2x.webp" 2x);
  }
}
@media (max-width: 992px) {
  .ptk-software-development {
    padding-bottom: 50px;
  }
}
@media (max-width: 644px) {
  .ptk-software-development {
    padding-bottom: 44px;
    background-image: url("/local/templates/.default/img/ptk/software-development-mini.webp");
    background-image: -webkit-image-set(url("/local/templates/.default/img/ptk/software-development-mini.webp") 1x, url("/local/templates/.default/img/ptk/software-development-mini-2x.webp") 2x);
    background-image: image-set("/local/templates/.default/img/ptk/software-development-mini.webp" 1x, "/local/templates/.default/img/ptk/software-development-mini-2x.webp" 2x);
  }
}
.ptk-software-development h3 {
  max-width: min(764px, 100% - 85px);
}
@media (max-width: 767px) {
  .ptk-software-development h3 {
    max-width: 100%;
  }
}
.ptk-software-development--buttons a {
  color: #9f2e88;
}
@media (min-width: 993px) {
  .ptk-software-development--buttons a {
    height: 65px;
  }
}
@media (min-width: 645px) and (max-width: 992px) {
  .ptk-software-development--buttons a {
    height: 50px;
  }
}
.ptk-software-development--buttons a:hover {
  background-color: #9f2e88;
}
@media (max-width: 992px) {
  .ptk-software-development--buttons {
    --buttonsCount: 1;
  }
}
@media (max-width: 992px) and (min-width: 645px) {
  .ptk-software-development--buttons {
    --gap: 20px;
  }
}
.ptk-we-offer {
  display: flex;
  align-items: center;
  gap: 95px;
  border: 2px solid #e42e87;
  border-radius: 6px;
  padding: 32px 124px 32px var(--sidePadding);
}
.ptk-we-offer h3 {
  font: bold 31px/1 Cuprum;
  color: #e42e87;
  margin: 0;
  flex-shrink: 0;
  white-space: nowrap;
}
.ptk-we-offer--text {
  font: 17px/1.2 "Open Sans";
  color: #000;
}
@media (max-width: 1440px) {
  .ptk-we-offer {
    padding-right: 40px;
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .ptk-we-offer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px var(--sidePadding);
  }
}
@media (max-width: 767px) {
  .ptk-we-offer {
    border: none;
  }
}
@media (max-width: 767px) and (min-width: 645px) {
  .ptk-we-offer {
    --sidePadding: 0px;
  }
}
@media (max-width: 767px) {
  .ptk-we-offer h3 {
    font-size: 28px;
  }
}
@media (max-width: 644px) {
  .ptk-we-offer {
    padding: 0 var(--sidePadding);
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .ptk-we-offer h3 {
    font-size: 24px;
    line-height: 15px;
  }
  .ptk-we-offer:is(div.container-1440) {
    max-width: 540px;
  }
  .ptk-we-offer--text {
    font-size: 16px;
    line-height: 1.25;
  }
}
@media (min-width: 993px) {
  .ptk-we-offer {
    gap: 64px;
    padding-right: 71px;
    padding-block: 23px;
  }
}
@media (min-width: 541px) {
  .ptk-stages {
    --sidePadding: 0px;
  }
}
@media (max-width: 540px) {
  .ptk-stages:is(div.container-1440) {
    max-width: 100%;
  }
}
@media (max-width: 644px) {
  .ptk-stages.container-1440 {
    --containerWidth: calc(100vw - 2 * var(--sidePadding));
  }
}
.ptk-stages h3 {
  margin: 0 0 25px;
  font: bold 28px/1 Cuprum;
  color: #30549a;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .ptk-stages h3 {
    margin-bottom: 11px;
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .ptk-stages-arrows {
    --arrowSize: 53px;
  }
}
.ptk-stages-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--arrowSize);
  height: var(--arrowSize);
  border: 2px solid #30549a;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
@media (max-width: 644px) {
  .ptk-stages-arrow svg {
    transform: scale(0.95);
  }
}
.ptk-stages-arrow:hover {
  background-color: #e42e87;
  border-color: #e42e87;
}
.ptk-stages-arrow:hover svg path {
  fill: #fff;
}
.ptk-stages .swiper {
  overflow: hidden;
}
@media (min-width: 1441px) {
  .ptk-stages .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(var(--columnsCount, 4), 1fr);
    gap: 20px;
  }
}
@media (max-width: 1440px) {
  .ptk-stages .swiper-wrapper {
    display: flex;
  }
}
.ptk-stages-slide {
  --imageHeight: 174px;
  grid-template-rows: var(--imageHeight) 1fr;
  gap: 18px;
}
@media (max-width: 992px) {
  .ptk-stages-slide {
    --imageHeiht: 142px;
  }
}
@media (max-width: 767px) {
  .ptk-stages-slide {
    --imageHeight: 163px;
    gap: 26px;
  }
}
@media (max-width: 992px) {
  .ptk-stages-slide-underline {
    padding: 0 20px 18px 25px;
  }
}
@media (max-width: 767px) {
  .ptk-stages-slide-underline {
    padding: 0 15px 15px;
  }
}
.ptk-stages-slide-description {
  font-size: 17px;
  line-height: 1.1;
}
@media (max-width: 992px) {
  .ptk-stages-slide-description {
    font-size: 16px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .ptk-stages-slide-description {
    font-size: 18px;
    line-height: 1.1;
    -webkit-line-clamp: 5;
  }
}
.ptk-stages-slide-link {
  --slideColor: #30549a;
  --linkSize: 56px;
  transition: all 0.2s;
}
.ptk-stages-slide-link svg path {
  transition: all 0.2s;
}
.ptk-stages-slide-link:hover {
  background-color: #e42e87;
}
.ptk-stages-slide-link:hover svg path {
  fill: #fff;
}
.ptk-stages-slide-link svg {
  width: 25px;
}
.ptk-stages-slide-link svg path {
  fill: var(--slideColor);
}
.ptk-stages-slide-link:hover {
  --slideColor: $pinkColor;
}
@media (max-width: 767px) {
  .ptk-stages-slide-link {
    --linkSize: 53px;
  }
}
.ptk-stages--list {
  --columnsCount: 2;
  display: grid;
  grid-template-columns: repeat(var(--columnsCount), 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .ptk-stages--list {
    --columnsCount: 1;
  }
}
@media (max-width: 767px) {
  .ptk-stages--list {
    gap: 10px;
  }
}
.ptk-stages--card {
  --imageHeight: 304px;
  gap: 26px;
  border: none;
}
.ptk-stages--card img {
  max-height: var(--imageHeight);
}
@media (max-width: 1280px) {
  .ptk-stages--card {
    --imageHeight: 252px ;
  }
}
@media (max-width: 767px) {
  .ptk-stages--card {
    --imageHeight: auto;
    gap: 10px;
  }
  .ptk-stages--card img {
    aspect-ratio: 2.386;
  }
}
.ptk-stages--card-underline {
  padding: 0 26px 23px;
  color: #000;
}
@media (max-width: 767px) {
  .ptk-stages--card-underline {
    padding: 0 var(--sidePadding) 22px;
  }
}
.ptk-stages--card-title {
  font: bold 21px/23px Cuprum;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .ptk-stages--card-title {
    font-size: 20px;
    line-height: 1.3;
  }
}
.ptk-stages--card-description {
  font: 17px/1.3 "Open Sans";
}
.ptk-stages--card-description ul {
  margin-left: 1em;
  margin-top: 5px;
  margin-bottom: 0;
}
.ptk-stages--card-description ul li {
  margin: 0;
}
@media (max-width: 767px) {
  .ptk-stages--card-description {
    font-size: 18px;
    line-height: 1.1;
  }
  .ptk-stages--card-description ul {
    margin-top: 3px;
  }
}
@media (min-width: 541px) {
  .ptk-prodTypes {
    --sidePadding: 0px;
  }
}
@media (max-width: 540px) {
  .ptk-prodTypes:is(div.container-1440) {
    max-width: 100%;
  }
}
@media (max-width: 644px) {
  .ptk-prodTypes.container-1440 {
    --containerWidth: calc(100vw - 2 * var(--sidePadding));
  }
}
.ptk-prodTypes h3 {
  margin: 0 0 25px;
  font: bold 28px/1 Cuprum;
  color: #30549a;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .ptk-prodTypes h3 {
    margin-bottom: 11px;
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .ptk-prodTypes-arrows {
    --arrowSize: 53px;
  }
}
.ptk-prodTypes-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--arrowSize);
  height: var(--arrowSize);
  border: 2px solid #30549a;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
@media (max-width: 644px) {
  .ptk-prodTypes-arrow svg {
    transform: scale(0.95);
  }
}
.ptk-prodTypes-arrow:hover {
  background-color: #e42e87;
  border-color: #e42e87;
}
.ptk-prodTypes-arrow:hover svg path {
  fill: #fff;
}
.ptk-prodTypes .swiper {
  overflow: hidden;
}
@media (min-width: 1441px) {
  .ptk-prodTypes .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(var(--columnsCount, 4), 1fr);
    gap: 20px;
  }
}
@media (max-width: 1440px) {
  .ptk-prodTypes .swiper-wrapper {
    display: flex;
  }
}
.ptk-prodTypes-slide {
  --imageHeight: 174px;
  grid-template-rows: var(--imageHeight) 1fr;
  gap: 18px;
}
@media (max-width: 992px) {
  .ptk-prodTypes-slide {
    --imageHeiht: 142px;
  }
}
@media (max-width: 767px) {
  .ptk-prodTypes-slide {
    --imageHeight: 163px;
    gap: 26px;
  }
}
@media (max-width: 992px) {
  .ptk-prodTypes-slide-underline {
    padding: 0 20px 18px 25px;
  }
}
@media (max-width: 767px) {
  .ptk-prodTypes-slide-underline {
    padding: 0 15px 15px;
  }
}
.ptk-prodTypes-slide-description {
  font-size: 17px;
  line-height: 1.1;
}
@media (max-width: 992px) {
  .ptk-prodTypes-slide-description {
    font-size: 16px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .ptk-prodTypes-slide-description {
    font-size: 18px;
    line-height: 1.1;
    -webkit-line-clamp: 5;
  }
}
.ptk-prodTypes-slide-link {
  --slideColor: #30549a;
  --linkSize: 56px;
  transition: all 0.2s;
}
.ptk-prodTypes-slide-link svg path {
  transition: all 0.2s;
}
.ptk-prodTypes-slide-link:hover {
  background-color: #e42e87;
}
.ptk-prodTypes-slide-link:hover svg path {
  fill: #fff;
}
.ptk-prodTypes-slide-link svg {
  width: 25px;
}
.ptk-prodTypes-slide-link svg path {
  fill: var(--slideColor);
}
.ptk-prodTypes-slide-link:hover {
  --slideColor: $pinkColor;
}
@media (max-width: 767px) {
  .ptk-prodTypes-slide-link {
    --linkSize: 53px;
  }
}
.ptk-prodTypes--list {
  --columnsCount: 3;
  display: grid;
  grid-template-columns: repeat(var(--columnsCount), 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .ptk-prodTypes--list {
    --columnsCount: 1;
  }
}
@media (max-width: 767px) {
  .ptk-prodTypes--list {
    gap: 10px;
  }
}
.ptk-prodTypes--card {
  --imageHeight: auto;
  gap: 26px;
  border: none;
}
@media (max-width: 767px) {
  .ptk-prodTypes--card {
    gap: 18px;
  }
}
.ptk-prodTypes--card img {
  aspect-ratio: 2.2875;
}
@media (max-width: 992px) {
  .ptk-prodTypes--card img {
    aspect-ratio: 2.3849;
  }
}
@media (max-width: 767px) {
  .ptk-prodTypes--card img {
    aspect-ratio: 2.5;
  }
}
.ptk-prodTypes--card-title {
  color: #000;
  text-transform: uppercase;
  font: bold 21px/23px Cuprum;
  padding: 0 26px 24px;
}
@media (max-width: 767px) {
  .ptk-prodTypes--card-title {
    padding: 0 var(--sidePadding) 18px;
  }
}
.ptk-capacity {
  --iconHeight: 52px;
}
@media (max-width: 644px) {
  .ptk-capacity {
    --iconHeight: 38px;
  }
}
.ptk-capacity h3 {
  margin: 0 0 25px;
  font: bold 28px/1 Cuprum;
  color: #30549a;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .ptk-capacity h3 {
    margin-bottom: 50px;
    line-height: 36px;
  }
}
@media (max-width: 644px) {
  .ptk-capacity h3 {
    margin-bottom: 30px;
  }
}
.ptk-capacity--icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 50px 85px;
}
.ptk-capacity--icons:where(.wide-icon-3) {
  grid-template-columns: repeat(2, 1fr) auto repeat(3, 1fr);
}
@media (max-width: 1440px) {
  .ptk-capacity--icons {
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}
@media (max-width: 1200px) {
  .ptk-capacity--icons {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .ptk-capacity--icons {
    grid-template-columns: 1fr 1fr;
    justify-content: space-evenly;
  }
}
@media (max-width: 644px) {
  .ptk-capacity--icons {
    gap: 30px 20px;
  }
}
.ptk-capacity--icon {
  display: flex;
  flex-direction: column;
  gap: 17px;
  font: bold 21px/23px Cuprum;
  color: #000;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .ptk-capacity--icon {
    max-width: 244px;
  }
}
@media (max-width: 644px) {
  .ptk-capacity--icon {
    gap: 12px;
    font-size: 15px;
    line-height: 1.08;
  }
}
.ptk-capacity--icon img {
  height: var(--iconHeight, 52px);
}
.ptk-capacity--icon span {
  text-align: center;
}
.ptk-sectors {
  margin-bottom: 75px;
  margin-top: 0;
}
@media (max-width: 992px) {
  .ptk-sectors {
    max-width: var(--containerWidth);
  }
}
@media (min-width: 541px) {
  .ptk-sectors {
    --sidePadding: 0px;
  }
}
@media (max-width: 540px) {
  .ptk-sectors:is(div.container-1440) {
    max-width: 100%;
  }
}
@media (max-width: 644px) {
  .ptk-sectors:is(div.container-1440) {
    --containerWidth: calc(100vw - 2 * var(--sidePadding));
  }
}
.ptk-sectors h3 {
  margin: 0 0 25px;
  font: bold 28px/1 Cuprum;
  color: #30549a;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .ptk-sectors h3 {
    margin-bottom: 11px;
    line-height: 36px;
  }
}
@media (max-width: 1700px) {
  .ptk-sectors-allbranches {
    font-size: 14px;
    gap: 19px;
  }
}
@media (max-width: 1440px) {
  .ptk-sectors-allbranches {
    font-size: 22px;
    gap: 10px;
  }
}
@media (max-width: 644px) {
  .ptk-sectors-allbranches {
    font-size: 18px;
  }
}
.ptk-sectors-allbranches-btn {
  --buttonSize: 30px;
}
.ptk-sectors-allbranches-btn svg {
  transform: none;
}
@media (max-width: 1700px) {
  .ptk-sectors-allbranches-btn {
    border-width: 1px;
  }
}
@media (max-width: 1440px) {
  .ptk-sectors-allbranches-btn {
    --buttonSize: 56px;
    border-width: 2px;
  }
  .ptk-sectors-allbranches-btn svg {
    transform: scale(2);
  }
}
@media (max-width: 644px) {
  .ptk-sectors-allbranches-btn {
    --buttonSize: 53px;
  }
  .ptk-sectors-allbranches-btn svg {
    transform: scale(1.87);
  }
}
.ptk-sectors-project_huge {
  grid-column: span 2;
  grid-row: span 2;
}
.ptk-sectors-project_long {
  grid-column: span 2;
}
.ptk-sectors-project-name {
  font-size: 21px;
  line-height: 1.1;
  max-width: 265px;
}
.ptk-sectors-project-name span {
  display: block;
  font-size: 12px;
  line-height: 1;
}
@media (max-width: 992px) {
  .ptk-sectors-project-name span {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .ptk-sectors-project-name {
    font-size: 18px;
  }
}
@media (max-width: 644px) {
  .ptk-sectors-project-name {
    font-size: 20px;
    max-width: 320px;
  }
}
.ptk-sectors-project.show-all-projects .ptk-sectors-project-project {
  display: grid;
}
.ptk-sectors-project.show-all-projects .ptk-sectors-project-showMore {
  display: none;
}
@media (max-width: 1440px) {
  .ptk-sectors-project {
    grid-column: auto;
    grid-row: auto;
  }
}
.ptk-sectors-showMore:hover {
  background-color: #7f99cd;
}
@media (max-width: 992px) {
  .ptk-sectors h3 {
    margin-bottom: 0;
  }
}

/* Стили предыдущих элементов страницы находятся в _press-center.scss */
.aboutPage-header {
  display: grid;
  height: 280px;
  margin-bottom: 80px;
  border-radius: 6px;
  overflow: hidden;
}
@media (width <= 1280px) {
  .aboutPage-header {
    height: 240px;
  }
}
@media (width <= 767px) {
  .aboutPage-header {
    height: auto;
    margin-bottom: 50px;
  }
}
.aboutPage-header > * {
  grid-column: 1;
  grid-row: 1;
}
.aboutPage-header-overlay, .aboutPage-header img {
  pointer-events: none;
}
.aboutPage-header img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (width <= 767px) {
  .aboutPage-header img {
    display: none;
  }
}
.aboutPage-header .mobileBG {
  display: none;
}
@media (width <= 767px) {
  .aboutPage-header .mobileBG {
    display: block;
  }
}
.aboutPage-header-overlay {
  background-color: #191C21;
  opacity: 0.6;
  mix-blend-mode: multiply;
}
.aboutPage-header-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-inline: 40px;
  margin-block: auto;
  font: bold 45px/1.1 Cuprum;
  color: #EAEBF5;
  z-index: 1;
}
@media (width <= 767px) {
  .aboutPage-header-text {
    padding: 32px 24px;
  }
}
.aboutPage-header-text h1 {
  font: inherit;
  color: inherit;
  text-transform: none;
  margin: 0;
}
.aboutPage-header-subcaption {
  text-transform: uppercase;
  font-size: 30px;
}
.aboutPage-info {
  margin-bottom: 80px;
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 20px;
  column-gap: 20px;
  font: 14px/1.25 "Open Sans";
  letter-spacing: 0;
}
@media (width <= 1280px) {
  .aboutPage-info {
    -moz-column-count: 1;
    column-count: 1;
  }
}
.aboutPage-info p {
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
  font: inherit;
  margin-bottom: 1.25em;
}
.aboutPage-info p:last-child {
  margin-bottom: 0;
}

.press_link:has(mark) {
  clear: both;
}
.press_link:has(mark):last-child {
  margin-bottom: 20px;
}
@media (width <= 767px) {
  .press_link:has(mark) mark {
    line-height: 2;
    padding-inline: 20px;
  }
}

.section-press-detail :is(ul, ol) {
  margin-bottom: 0;
  display: block;
}
@media (width <= 767px) {
  .section-press-detail :is(ul, ol) {
    margin-left: 1em;
  }
}
.section-press-detail ul li, .section-press-detail div.d-grid ul li {
  list-style: disc inside !important;
  margin-left: 0;
}
.section-press-detail ul li > p, .section-press-detail div.d-grid ul li > p {
  display: contents;
}
.section-press-detail ul li::before, .section-press-detail div.d-grid ul li::before {
  display: none;
}
.section-press-detail a:has(.news-item__detail-img) + a:has(.news-item__detail-img) + * {
  clear: left;
}
.section-press-detail p:has(.news-item__detail-img) {
  clear: left;
}
.section-press-detail .news-item__text > a:has(.news-item__detail-img) {
  margin-right: 8px;
}

.news-item__text a:has(.news-item__detail-img:only-child) {
  border-bottom: none;
  float: left;
  max-width: 60%;
}
.news-item__text a:has(.news-item__detail-img:only-child) .news-item__detail-img {
  max-width: 100%;
  float: none;
}

@media (max-width: 767px) {
  .press-center {
    max-width: calc(100vw - 30px);
  }
}
.press-center-header:is(h1) {
  font: 51.8px/60px Cuprum;
  text-transform: uppercase;
  color: #535b6b;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .press-center-header:is(h1) {
    font-size: 34px;
  }
}
.press-center-page-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 80px;
}
@media (max-width: 1280px) {
  .press-center-page-tags {
    gap: 14px;
  }
}
@media (max-width: 767px) {
  .press-center-page-tags {
    margin-bottom: 50px;
    justify-content: space-between;
  }
}
.press-center-page-tags .tags--tag-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--btnHeight, 58px);
  padding-inline: 20px;
  color: #11406e;
  border: 2px solid #535b6b;
  border-radius: 6px;
  font: 800 16px/1.1 Cuprum;
  text-transform: uppercase;
}
.press-center-page-tags .tags--tag-button.active {
  background-color: #30549a;
  border-color: #30549a;
  color: #fff;
}
@media (max-width: 1280px) {
  .press-center-page-tags .tags--tag-button {
    --btnHeight: 50px;
  }
}
@media (max-width: 992px) {
  .press-center-page-tags .tags--tag-button {
    min-width: 327px;
  }
}
@media (max-width: 767px) {
  .press-center-page-tags .tags--tag-button {
    --btnHeight: 39px;
    font-size: 14px;
    width: calc(100vw - 30px);
    max-width: max(330px, 50vw - 22px);
  }
}
.press-center--news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 25px;
  margin-bottom: 80px;
}
@media (max-width: 1200px) {
  .press-center--news-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 25px;
  }
}
@media (max-width: 992px) {
  .press-center--news-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .press-center--news-grid {
    margin-bottom: 50px;
  }
}
.press-center--news-block {
  --innerGap: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 6px;
  background-color: #f5f5f5;
  padding-bottom: var(--innerGap);
  color: #000;
  border: none;
}
.press-center--news-block:hover .news-title {
  color: #30549a;
}
.press-center--news-block .news-image {
  margin-bottom: 11px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1.59;
  flex-shrink: 0;
  border-radius: 6px;
}
@media (max-width: 992px) {
  .press-center--news-block .news-image {
    aspect-ratio: 2.225;
  }
}
@media (max-width: 767px) {
  .press-center--news-block .news-image {
    aspect-ratio: 1.473;
  }
}
.press-center--news-block .news-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 14px/1.4 "Open Sans";
  color: #535b6b;
  margin-inline: var(--innerGap);
}
.press-center--news-block .news-date img {
  width: 24px;
  aspect-ratio: 1;
}
.press-center--news-block .news-title {
  font: bold 18px/1.4 "Open Sans";
  margin-inline: var(--innerGap);
}
@media (max-width: 767px) {
  .press-center--news-block .news-title {
    font-size: 16px;
  }
}
.press-center--news-block .news-text {
  font: 14px/1.4 "Open Sans";
  margin-inline: var(--innerGap);
}
.press-center--pager {
  display: flex;
  margin-inline: auto;
  margin-bottom: 80px;
  font: 20px/1.4 "Open Sans";
  color: #535b6b;
}
.press-center--pager > * {
  flex-basis: 40px;
  flex-shrink: 0;
  height: 40px;
}
.press-center--pager .news-pager--item {
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.press-center--pager .news-pager--item.active {
  font-weight: bold;
  pointer-events: none;
  color: #e42e87;
}
.press-center--pager .news-pager--item:hover {
  color: #e42e87;
}
.press-center--pager .news-pager--item:hover svg path {
  stroke: #e42e87;
}
.press-center--pager .news-pager--item.gap-right {
  margin-right: 16px;
  margin-left: auto;
}
.press-center--pager .news-pager--item.gap-left {
  margin-left: 16px;
  margin-right: auto;
}

.table-wrapper {
  max-width: calc(100vw - 2 * var(--container-padding));
  width: 100%;
  overflow-x: auto;
}
@media (width <= 1100px) {
  .table-wrapper {
    margin-inline: auto;
  }
}

.page-wrap table a:has(img:only-child) {
  font-size: 0;
}
@media (width <= 1100px) {
  .page-wrap table {
    min-width: unset;
    width: 100%;
  }
  .page-wrap table td {
    padding-inline: 10px;
  }
  .page-wrap table img {
    margin: 0;
    max-width: calc(100vw - 2 * var(--container-padding));
    height: auto;
  }
}
@media (width <= 767px) {
  .page-wrap table td {
    padding-inline: 8px;
  }
  .page-wrap table td:nth-child(2):last-child a img:only-child {
    min-width: 20vw;
  }
}
@media (width <= 480px) {
  .page-wrap table td:nth-child(2):last-child a img:only-child {
    min-width: 35vw;
  }
  .page-wrap table td:first-child:not(:has(img:only-child)) {
    min-width: 50vw;
  }
}
@media (width <= 767px) {
  .page-wrap table [type=submit] {
    padding-block: 16px;
  }
}

.platinumElectro .pageSection {
  --margin: 64px;
  margin-top: var(--margin);
}
@media (width <= 767px) {
  .platinumElectro .pageSection {
    --margin: 48px;
  }
}
.platinumElectro .pageSection:last-child {
  margin-bottom: var(--margin);
}
.platinumElectro h1 {
  font-size: 2.571em;
  line-height: 1.2;
}
@media (width <= 767px) {
  .platinumElectro h1 {
    font-size: 2em;
  }
}
.platinumElectro .description {
  font: 14px/18px "Open Sans";
  color: #656878;
}
.platinumElectro .PE-header {
  display: grid;
  grid-template-columns: 1fr 500px;
  align-items: start;
  gap: 20px 50px;
}
@media (width <= 1080px) {
  .platinumElectro .PE-header {
    grid-template-columns: 1fr 250px;
  }
}
@media (width <= 767px) {
  .platinumElectro .PE-header {
    grid-template-columns: 1fr;
  }
}
.platinumElectro .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 50px;
}
.platinumElectro .buttons .button-main {
  width: 215px;
  text-decoration: none;
  text-transform: none;
  background-color: #30549A;
  color: #fff;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  padding: 20px 15px;
}
.platinumElectro h3 {
  font: bold 28px/1.2 Cuprum;
  color: #000;
}
@media (width <= 767px) {
  .platinumElectro h3 {
    font-size: 22px;
  }
}
.platinumElectro .PE-list {
  font-size: 14px;
  line-height: 1.25;
}
.platinumElectro .PE-list ul {
  margin-left: 0;
  list-style-position: inside;
}
.platinumElectro .PE-list ul:last-child {
  margin-bottom: 0;
}
.platinumElectro .PE-list li {
  font-weight: normal;
}
.platinumElectro .PE-list li:last-child {
  margin-bottom: 0;
}
.platinumElectro .PE-list li:has(ul) {
  font-weight: bold;
}
.platinumElectro .PE-list li:has(ul) ul {
  display: block;
  margin-block: 1em;
  margin-left: 16px;
  list-style: none;
}
.platinumElectro .PE-list li:has(ul) li {
  position: relative;
  padding-left: 16px;
}
.platinumElectro .PE-list li:has(ul) li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 0px;
  rotate: 45deg;
  background-color: #e42e87;
}
.platinumElectro .PE-infoMaterials {
  --imgSize: calc(25% - 10px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(auto, var(--imgSize)));
  gap: 20px;
}
@media (width <= 1023px) {
  .platinumElectro .PE-infoMaterials {
    --imgSize: calc(100% /3 - 10px);
  }
}
@media (width <= 767px) {
  .platinumElectro .PE-infoMaterials {
    --imgSize: calc(50% - 10px);
  }
}
@media (width <= 640px) {
  .platinumElectro .PE-infoMaterials {
    --imgSize: 100%;
  }
}
.platinumElectro .PE-infoMaterial {
  height: 280px;
}
@media (width <= 640px) {
  .platinumElectro .PE-infoMaterial {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
    height: auto;
    border: 1px solid #EAEBF5;
    padding-bottom: 0;
    border-radius: 0;
  }
}
.platinumElectro .PE-infoMaterial .a-border-photo-block__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (width <= 640px) {
  .platinumElectro .PE-infoMaterial .a-border-photo-block__content {
    position: static;
  }
}
.platinumElectro .PE-infoMaterial .a-border-photo-block__content::after {
  min-height: 300px;
}
@media (width <= 640px) {
  .platinumElectro .PE-infoMaterial .a-border-photo-block__content::after {
    display: none;
  }
}
.platinumElectro .PE-infoMaterial .a-border-photo-block__wrapper-img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding-bottom: 0;
  overflow: hidden;
  transition: 0.2s all;
}
@media (width <= 640px) {
  .platinumElectro .PE-infoMaterial .a-border-photo-block__wrapper-img {
    border-radius: 0;
  }
}
.platinumElectro .PE-infoMaterial:hover .a-border-photo-block__wrapper-img {
  border-radius: 0;
  overflow: visible;
}
.platinumElectro .PE-infoMaterial img {
  width: 100%;
  z-index: 3;
}
.platinumElectro .PE-infoMaterial .a-border-photo-block__description {
  border: none;
  color: #1a418f;
  font: 14px/19px "Open Sans";
  margin-bottom: 1em;
  transition: 0.2s margin;
}
@media (width <= 640px) {
  .platinumElectro .PE-infoMaterial .a-border-photo-block__description {
    margin-bottom: 30px;
  }
}
.platinumElectro .PE-infoMaterial .a-border-photo-block__description:hover {
  text-decoration: underline;
}
@media (width > 640px) {
  .platinumElectro .PE-infoMaterial:hover .a-border-photo-block__description {
    margin-bottom: 0;
  }
}
.platinumElectro .PE-carousel {
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  align-items: center;
  gap: 10px;
}
.platinumElectro .PE-carousel .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.platinumElectro .PE-carousel .swiper {
  overflow: hidden;
}
.platinumElectro .PE-carousel .swiper-wrapper {
  display: flex;
}
.platinumElectro .PE-carousel .swiper-wrapper > * {
  flex-shrink: 0;
}
.platinumElectro .PE-carousel .swiper {
  max-width: 1026px;
}
/*# sourceMappingURL=style.css.map */
