.solutions-nav {
}

.solutions-nav__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  row-gap: 40px;
}

.solutions-nav__item {
  flex: 0 0 auto;
  padding: 0 15px;
  width: 50%;
  display: flex;
}

.solutions-nav-card {
  display: block;
  width: 100%;
  color: var(--black);
  text-decoration: none;
  border-radius: 20px;
  border: 1px solid var(--grey-dark);
  display: flex;
  overflow: hidden;
  transform: translateZ(0);
  font-size: 16px;
  line-height: 1.2;
  min-height: 280px;
  position: relative;
  z-index: 1;
}

.solutions-nav-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  opacity: 0.5;
  width: 380px;
  max-width: 100%;
  z-index: -1;
  background: var(--grey-light);
  clip-path: polygon(0 0, 100% 0, 52% 100%, 0% 100%);
}

.solutions-nav-card:hover {
  color: var(--black);
}

.solutions-nav-card__image {
  width: 280px;
  flex-shrink: 0;
  order: 1;
  align-self: flex-end;
}

.solutions-nav-card__image img {
  display: block;
  width: 100%;
  height: auto;
  transition: 0.15s ease-in-out;
}

.solutions-nav-card:hover .solutions-nav-card__image img {
  transform: scale(1.04);
}

.solutions-nav-card__content {
  flex-grow: 1;
  min-width: 1px;
  padding: 30px 30px 15px;
}

.solutions-nav-card__title {
  transition: 0.15s ease-in-out;
  margin-bottom: 15px;
}

.solutions-nav-card:hover .solutions-nav-card__title {
  color: var(--red-main-color);
}

.solutions-nav-card__text {
}

@media (max-width: 1199.98px) {
  .solutions-nav-card__image {
    width: 200px;
  }
}

@media (max-width: 991.98px) {
  .solutions-nav__list {
    margin: 0;
    row-gap: 20px;
  }

  .solutions-nav__item {
    width: 100%;
    padding: 0;
  }

  .solutions-nav-card {
    min-height: 200px;
  }

  .solutions-nav-card__title br {
    display: none;
  }

  .solutions-nav-card:before {
    width: 83%;
  }
}

@media (max-width: 767.98px) {
  .solutions-nav-card {
    font-size: 12px;
  }

  .solutions-nav-card:before {
    width: 73%;
  }

  .solutions-nav-card__image {
    width: 150px;
  }

  .solutions-nav-card__content {
    padding: 20px;
  }

  .solutions-nav-card__title {
    font-size: 20px;
  }
}

.solution-header {
  position: relative;
  background: var(--grey-light);
  margin-bottom: var(--space-40-m30);
}

.solution-header__content {
  position: relative;
  z-index: 1;
  width: 50%;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.solution-header__image {
  --overlay-width: 389px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 50%;
}

.solution-header__image:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--overlay-width);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
  background-image: url(../images/solution-header-overlay.svg);
}

.solution-header__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(
    calc(var(--overlay-width) * 0.95) 0,
    100% 0,
    100% 100%,
    0 100%
  );
}

.solution-section {
  padding: var(--space-40-m30) 0;
}

.solution-section__main {
  background: var(--grey-light) url("../images/solution-section-corner.svg")
    right top no-repeat;
  background-size: 520px auto;
  padding: 80px 0;
  position: relative;
}

.solution-section__header {
  display: flex;
  column-gap: 30px;
}

.solution-section__header-image {
  flex-shrink: 0;
  width: 46.754%;
  min-height: 300px;
  order: 1;
  position: relative;
}

.solution-section__header-image-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-section__header-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.solution-section__header-content {
  flex-grow: 1;
  min-width: 1px;
  padding-bottom: 60px;
}

.solution-section__header-title {
  margin-bottom: 30px;
}

.solution-section__wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.solution-section__section {
  width: 100%;
  padding: 40px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--popup-shadow);
}

.solution-catalog-header {
  display: flex;
  align-items: center;
  column-gap: 40px;
  margin-bottom: 40px;
}

.solution-catalog-header__image {
  flex-shrink: 0;
  width: 48.631%;
  align-self: flex-start;
}

.solution-catalog-header__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.solution-catalog-header__content {
  flex-grow: 1;
  min-width: 1px;
}

.solution-catalog-header__content h3 {
  margin-bottom: 30px;
}

.solution-catalog-header__content .data-list {
  row-gap: 25px;
}

.solution-catalog_type_slider {
  position: relative;
}

.solution-catalog_type_slider .swiper-button-next,
.solution-catalog_type_slider .swiper-button-prev {
  top: 90px;
}

.solution-catalog__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  row-gap: 40px;
}

.swiper:not(.swiper-initialized) .solution-catalog__list {
  width: auto;
}

.solution-catalog__item {
  flex: 0 0 auto;
  padding: 0 10px;
  width: 20%;
}

.swiper-initialized .solution-catalog__list {
  flex-wrap: nowrap;
  margin: 0;
}

.swiper-initialized .solution-catalog__item {
  padding: 0;
  width: 100%;
}

.solution-catalog-item {
  font-size: 12px;
  line-height: 1.2;
}

.solution-catalog-item__image {
  display: block;
  position: relative;
  border-radius: 12px;
  background: var(--grey-light);
  margin-bottom: 15px;
}

.solution-catalog-item__image:before {
  content: "";
  display: block;
  padding-top: 180px;
}

.solution-catalog-item__image-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-catalog-item__image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  transition: 0.15s ease-in-out;
}

.solution-catalog-item:hover .solution-catalog-item__image img {
  transform: scale(1.09);
}

.solution-catalog-item__content {
}

.solution-catalog-item__sku {
  font-size: 14px;
  color: var(--black-50);
  margin-bottom: 4px;
}

.solution-catalog-item__title {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.solution-catalog-item__data {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.solution-catalog-item__data-item {
}

.solution-catalog-item__data-item-title {
  color: var(--black-50);
  margin-bottom: 4px;
}

.solution-catalog-item__data-item-value {
}

.solution-compare__title {
  margin-bottom: 40px;
}

.solution-compare__footer {
  margin-top: 40px;
  font-size: 12px;
  line-height: 1.2;
  color: var(--black-50);
}

.solution-compare__footer p:last-child {
  margin: 0;
}

.solution-compare__main {
  display: flex;
  position: relative;
  z-index: 1;
}

.solution-compare__sidebar {
  flex-shrink: 0;
  width: 297px;
}

.solution-compare__sidebar-header {
  height: var(--compare-header-height, auto);
  margin-bottom: 40px;
}

.solution-compare__content {
  flex-grow: 1;
  min-width: 1px;
}

.solution-compare__list {
  position: relative;
}

.solution-compare__list .swiper-button-next,
.solution-compare__list .swiper-button-prev {
  top: 90px;
}

.solution-compare__item {
}

.solution-compare__item-header {
  height: var(--compare-header-height, auto);
  margin-bottom: 40px;
}

.solution-compare__item-image {
  display: block;
  position: relative;
  border-radius: 12px;
  background: var(--grey-light);
  margin-bottom: 15px;
}

.solution-compare__item-image:before {
  content: "";
  display: block;
  padding-top: 180px;
}

.solution-compare__item-image-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-compare__item-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  transition: 0.15s ease-in-out;
}

.solution-compare__item:hover .solution-compare__item-image img {
  transform: scale(1.09);
}

.solution-compare__item-title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.solution-compare__data-list {
}

.solution-compare__data-row {
  height: var(--compare-row-height, auto);
  position: relative;
  font-size: 16px;
  line-height: 1.2;
  padding: 15px 0 14px;
}

.solution-compare__sidebar .solution-compare__data-row {
  padding-right: 40px;
  color: var(--black-50);
}

.solution-compare__sidebar .solution-compare__data-row:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  border-bottom: 1px dashed var(--grey-dark);
  width: var(--compare-width, 0);
}

.solution-compare__sidebar .solution-compare__data-row:last-child:before {
  border-bottom-color: transparent;
}

@media (min-width: 992px) {
  .solution-compare__sidebar .solution-compare__data-row:before {
    transition: background-color 0.15s ease-in-out;
  }

  .solution-compare__sidebar .solution-compare__data-row.is-hover:before {
    background-color: var(--grey-light);
  }
}

.solution-compare__data-row-title {
  height: var(--compare-row-title-height, auto);
}

.solution-compare__item .solution-compare__data-row {
  z-index: 1;
}

.solution-compare__item .solution-compare__data-row:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0 -10px;
  z-index: -1;
}

.solution-compare__item .solution-compare__data-row-title {
  display: none;
}

.solution-compare__data-row-text {
}

.solutions-nav-slider {
  position: relative;
}

@media (max-width: 1399.98px) {
  .solution-header__image {
    --overlay-width: 260px;
  }

  .solution-catalog__item {
    width: 25%;
  }
}

@media (max-width: 1199.98px) {
  .solution-header__image {
    --overlay-width: 210px;
  }

  .solution-section__header-image {
    width: 41%;
  }

  .solution-catalog-header__image {
    width: 47.7%;
  }
}

@media (max-width: 991.98px) {
  .solution-header__content {
    padding: 60px 0;
  }

  .solution-header__image {
    --overlay-width: 150px;
  }

  .solution-section__main {
    background-size: 320px auto;
    padding: 60px 0;
  }

  .solution-section__header {
    display: block;
  }

  .solution-section__header-image {
    width: auto;
    max-width: 280px;
    min-height: 0;
    margin-bottom: 30px;
  }

  .solution-section__header-image-inner {
    position: static;
    display: block;
  }

  .solution-section__header-image img {
    width: 100%;
    max-height: none;
  }

  .solution-section__header-content {
    padding-bottom: 40px;
  }

  .solution-section__section {
    padding: 30px;
  }

  .solution-catalog-header {
    display: block;
    margin-bottom: 30px;
  }

  .solution-catalog-header__image {
    width: auto;
    margin-bottom: 30px;
  }

  .solution-catalog-header__content h3 {
    margin-bottom: 20px;
  }

  .solution-catalog-header__content .data-list {
    row-gap: 20px;
  }

  .solution-catalog_type_slider .swiper-button-prev,
  .solution-compare__list .swiper-button-prev {
    left: -26px;
  }

  .solution-catalog_type_slider .swiper-button-next,
  .solution-compare__list .swiper-button-next {
    right: -26px;
  }

  .solution-compare__sidebar {
    width: 240px;
  }

  .solution-compare__title {
    margin-bottom: 30px;
  }

  .solution-compare__footer {
    margin-top: 30px;
  }

  .solution-compare__data-row {
    font-size: 14px;
    line-height: 1.4;
  }

  .solution-compare__sidebar-header,
  .solution-compare__item-header {
    margin-bottom: 30px;
  }

  .solution-compare__sidebar .solution-compare__data-row {
    padding-right: 20px;
  }

  .solution-catalog__list {
    row-gap: 30px;
  }

  .solution-catalog__item {
    width: 33.33%;
  }

  .solutions-nav-slider .swiper-button-next,
  .solutions-nav-slider .swiper-button-prev {
    display: none;
  }

  .solutions-nav-slider .swiper-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    transform: none !important;
  }

  .solutions-nav-slider .solutions-nav-slider__item {
    width: 100% !important;
    margin: 0 !important;
  }

  .solutions-nav-slider .solutions-nav-slider__item:nth-child(2) ~ * {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .solution-header {
    margin-bottom: 0;
  }

  .solution-header__content {
    padding: 30px 0;
    width: auto;
  }

  .solution-header__image {
    --overlay-width: 120px;
    position: relative;
    width: auto;
    height: 221px;
  }

  .solution-header__image:after {
    display: none;
  }

  .solution-header__image img {
    clip-path: none;
  }

  .solution-section__main {
    background-size: 320px auto;
    padding: 40px 0;
  }

  .solution-section__header-image {
    max-width: 260px;
    margin: 0 auto 30px;
  }

  .solution-section__header-title {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .solution-section__header-content {
    padding-bottom: 30px;
  }

  .solution-section__section {
    padding: 20px 15px;
  }

  .solution-catalog-item__image:before,
  .solution-compare__item-image:before {
    padding-top: 130px;
  }

  .solution-catalog_type_slider .swiper-button-next,
  .solution-catalog_type_slider .swiper-button-prev,
  .solution-compare__list .swiper-button-next,
  .solution-compare__list .swiper-button-prev {
    top: 65px;
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }

  .solution-catalog_type_slider .swiper-button-next,
  .solution-compare__list .swiper-button-next {
    right: -15px;
  }

  .solution-catalog_type_slider .swiper-button-prev,
  .solution-compare__list .swiper-button-prev {
    left: -15px;
  }

  .solution-compare__title {
    margin-bottom: 20px;
  }

  .solution-compare__footer {
    margin-top: 20px;
  }

  .solution-compare__sidebar-header,
  .solution-compare__item-header {
    margin-bottom: 20px;
  }

  .solution-compare__item-title {
    font-size: 16px;
  }

  .solution-compare__sidebar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }

  .solution-compare__data-row {
    padding: 10px 0;
  }

  .solution-compare__sidebar .solution-compare__data-row {
    padding-right: 0;
  }

  .solution-compare__sidebar .solution-compare__data-row-title {
    position: relative;
    z-index: 10;
  }

  .solution-compare__item .solution-compare__data-row-title {
    display: block;
    margin-bottom: 5px;
  }

  .solution-catalog__list {
    margin: 0 -5px;
  }

  .solution-catalog__item {
    width: 50%;
    padding: 0 5px;
  }
}
