

/* Start:/local/templates/preora/css/pages/index.css?178048139515625*/
.products {
  background: var(--bgDark);
}

.products__box {
}

.products__content {
}

.products__title {
}

.products__mid {
}

.products__mid-text {
}

.products__midMobile-navigation {
}

.products__mid-navigation {
}

.products__mid-btnPrev {
}

.products__mid-btnNext {
}

.products__swiper {
}

.products__slide {
  cursor: pointer;
  background: var(--bgLight);
  padding: 30px 20px;
}

.products__slide {
}

.products__slide-img {
  aspect-ratio: 1/1;
  margin-bottom: 20px;

  img {
    transform: scale(0.8);
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.products__slide-name {
  text-align: center;
  font-family: var(--Bounded);
  font-weight: 500;
  border-top: 1px solid var(--bgDark);
  padding-top: 20px;
}

.products__btn {
}

@media (hover: hover) {
  .products__slide:hover {
    .products__slide-img > img {
      transform: scale(1);
    }

    .products__slide-name {
      color: var(--linkAccentDark);
    }
  }

  /* flat fallbacks */
  .products__slide:hover .products__slide-img > img { transform: scale(1); }
  .products__slide:hover .products__slide-name { color: var(--linkAccentDark); }
}

@media screen and (max-width: 1100px) {
  .products__slide-name {
    font-size: 16px;
  }
}

@media screen and (max-width: 900px) {
  .products__slide {
    padding: 16px 8px;
  }

  .products__slide-img {
    margin: 0;
  }

  .products__slide-name {
    padding-top: 16px;
  }
}

@media screen and (max-width: 600px) {
  .products__slide-name {
    font-size: 14px;
  }
}

@media screen and (max-width: 500px) {
  .products__slide-name {
    font-size: 12px;
  }
}

@media screen and (max-width: 400px) {
  .products__slide-name {
    font-size: 10px;
  }
}
.solutions {
  background: var(--bgLight);
}

.solutions__box {
}

.solutions__content {
}

.solutions__top {
}

.solutions__title {
  margin-bottom: 30px;
}

.solutions__desc {
}

.solutions__info {
  height: 684px;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: stretch;
}

.solutions__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
}

.solutions__item {
  padding: 14px 0;
  gap: 12px;
  line-height: 120%;
}

.solutions__item.active {
  color: var(--linkAccentDark);

  & .iconDefault {
    opacity: 0;
  }

  & .iconActive {
    opacity: 1;
  }
}

/* flat fallbacks */
.solutions__item.active .iconDefault { opacity: 0; }
.solutions__item.active .iconActive { opacity: 1; }

.solutions__item-icon {
  width: 28px;
  height: 28px;
}

.solutions__info-title {
  line-height: 120%;
}

.solutions__activeItem {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.solutions__activeItem-list {
}

.solutions__activeItem-item {
  position: relative;
  color: var(--bgLight);
  pointer-events: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 0.15s linear 0.1s,
    height 0.15s linear 0.1s;
}

.solutions__activeItemMobile-item {
  display: none;
}

.solutions__activeItem-bg {
  width: 100%;
  height: 100%;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.solutions__activeItem-item.active {
  opacity: 1;
  max-height: 1600px;
  pointer-events: all;
  height: 100%;
}

.solutions__activeItem-text {
  background: linear-gradient(
    45deg,
    var(--linkAccentDark) 5%,
    var(--bgShadowTransparent) 100%
  );
  position: absolute;
  top: 0;
  left: 0;
  padding: 40px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solutions__activeItem-title {
  line-height: 120%;
}

.solutions__activeItem-info {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.solutions__activeItem-desc {
  font-size: 24px;
}

.solutions__activeItem-link {
}

@media (hover: hover) {
  .solutions__item:hover {
    color: var(--linkAccentDark);
  }
}

@media screen and (max-width: 1460px) {
  .solutions__info {
    height: 640px;
  }

  .solutions__activeItem-title {
    font-size: 36px;
  }
}

@media screen and (max-width: 1280px) {
  .solutions__activeItem-text {
    padding: 30px;
  }

  .solutions__activeItem-title {
    font-size: 30px;
  }
}

@media screen and (max-width: 1180px) {
  .solutions__info {
    display: block;
    height: auto;
    margin-top: 30px;
  }

  .solutions__list {
    gap: 8px;
  }

  .solutions__item {
    padding: 12px 0;
  }

  .solutions__item.active {
    display: none;
  }

  .solutions__activeItemMobile-item {
    display: block;
    max-height: 0;
  }
  .solutions__activeItem-item.active {
    max-height: 520px;
  }

  .solutions__activeItem-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }

  .solutions__activeItem-title {
    display: grid;
    align-items: start;
    grid-template-columns: 36px auto;
    gap: 12px;

    img {
      width: 36px;
      height: 36px;
    }
  }


  .solutions__activeItemDefault-item {
    display: none;
  }

  .solutions__activeItem-text {
    padding: 40px;
  }
}

@media screen and (max-width: 620px) {
  .solutions__title {
    margin-bottom: 16px;
  }

  .solutions__list {
    gap: 0px;
  }

  .solutions__item-icon {
    width: 22px;
    height: 22px;
  }

  .solutions__item.icon-box {
    width: auto;
  }

  .solutions__info-title {
    font-size: 24px;
  }

  .solutions__activeItem-item.active {
    border-radius: 16px;
    margin-bottom: 14px;
    height: auto;
    aspect-ratio: 1/1;
  }

  .solutions__activeItem-title {
    font-size: 24px;
    grid-template-columns: 22px auto;

    img {
      width: 22px;
      height: 22px;
    }
  }

  .solutions__activeItem-text {
    padding: 20px;
  }

  .solutions__activeItem-desc {
    font-size: 20px;
  }
}

@media screen and (max-width: 600px) {
  .solutions__info-title {
    font-size: 20px;
  }

  .solutions__activeItem-title {
    font-size: 20px;
  }

  .solutions__activeItem-info {
    gap: 40px;
  }
}

@media screen and (max-width: 540px) {
  .solutions__info-title {
    font-size: 14px;
  }

  .solutions__activeItem-title {
    font-size: 14px;
  }

  .solutions__activeItem-desc {
    font-size: 14px;
  }

  .solutions__activeItem-link {
    font-size: 14px;
  }
}

@media screen and (max-width: 400px) {
  .solutions__activeItem-info {
    gap: 20px;
  }
}
.service {
  background: var(--bgDark);
}

.service__box {
}

.service__content {
}

.service__title {
}

.service__mid {
}

.service__mid-text {
}

.service__midMobile-navigation {
}

.service__mid-navigation {
}

.service__mid-btnPrev {
}

.service__mid-btnNext {
}

.service__swiper {
  height: 580px;
}

.service__slide {
  position: relative;
  color: var(--bgLight);
}

.service__main {
  width: 100%;
  height: 100%;
}

.service__slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service__slide-title {
  opacity: 1;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  letter-spacing: 0;
}

.service__slide-desc {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 40px 20px;
  background: var(--linkAccentDarkTransparent);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service__slide-desc-title {
  width: 75%;
  margin-top: auto;
  padding-bottom: 20px;
  border-bottom: 1px solid;
  letter-spacing: 0;
}

.service__slide-desc-text {
  font-weight: 500;
}

.service__btn {
}

@media (hover: hover) {
  .service__slide:hover {
    .service__slide-title {
      opacity: 0;
    }

    .service__slide-desc {
      opacity: 1;
    }
  }

  /* flat fallbacks */
  .service__slide:hover .service__slide-title { opacity: 0; }
  .service__slide:hover .service__slide-desc { opacity: 1; }
}

@media screen and (max-width: 1200px) {
  .service__swiper {
    height: 500px;
  }

  .service__slide-desc {
    gap: 20px;
  }

  .service__slide-desc-title {
    padding-bottom: 10px;
    width: 100%;
  }

  .service__slide-desc-text {
    font-size: 16px;
  }
}

@media screen and (max-width: 1000px) {
  .service__swiper {
    height: 420px;
  }

  .service__slide-title,
  .service__slide-desc-title {
    font-size: 20px;
  }

  .service__slide-desc-text {
    font-size: 20px;
  }
}

@media screen and (max-width: 900px) {
  .service__swiper {
    height: auto;
  }

  .service__slide {
    aspect-ratio: 1/1;
  }
}

@media screen and (max-width: 600px) {
  .service__slide-title {
    bottom: 8px;
    left: 16px;
    right: 16px;
    font-size: 14px;
  }

  .service__slide-desc-title {
    font-size: 14px;
  }
}

@media screen and (max-width: 440px) {
  .service__swiper {
    height: 265px;
  }

  .service__slide {
    aspect-ratio: auto;
  }
}

@media screen and (max-width: 340px) {
  .service__swiper {
    height: 250px;
  }
}
.about {
  background: linear-gradient(
    var(--linkAccentDark) 10%,
    var(--bgShadowDark) 100%
  );
  overflow: hidden;
  position: relative;

  display: grid;
  grid-template-columns: 40vw 950px;
  grid-template-rows: 1250px;
}

.about__bgImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 40vw;
  height: 100%;
  z-index: 0;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* flat fallback */
.about__bgImg img { width: 100%; height: 100%; object-fit: cover; }

.about__box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about__content {
  padding: 0 50px;
}

.about__top {
  color: var(--bgLight);
}

.about__title {
}

.about__text {
  padding: 30px 0 60px;
  font-size: 24px;
}

.about__list {
  color: var(--bgLight);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 30px;
}

.about__item {
  &:nth-of-type(3),
  &:nth-of-type(4) {
    border-top: 1px solid var(--btnNotActive);
    padding-top: 30px;
  }
}

/* flat fallbacks */
.about__item:nth-of-type(3),
.about__item:nth-of-type(4) {
  border-top: 1px solid var(--btnNotActive);
  padding-top: 30px;
}

.about__item-title {
}

.about__item-title-color {
  font-family: var(--Bounded);
  font-weight: 400;
  color: var(--textAccentLight);
  text-transform: uppercase;
}

.about__item-title-main {
  font-size: 30px;
  padding: 10px 0 30px;
  line-height: 120%;
}

.about__item-text {
  opacity: 0.8;
}

.about__btn {
  margin-top: 80px;
}

@media screen and (max-width: 1500px) {
  .about {
    grid-template-columns: 40vw 56vw;
  }

  .about__item-title-main {
    font-size: 26px;
    padding: 12px 0 20px;
  }
}

@media screen and (max-width: 1200px) {
  .about {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .about__bgImg {
    width: 100%;
  }

  .about__box {
    background: linear-gradient(
      135deg,
      var(--linkAccentDarkAbout) 40%,
      var(--bgShadowDark) 100%
    );
    padding: 160px 0;
    position: relative;
    z-index: 10;
  }

  .about__content {
    width: 92vw;
    margin: 0 auto;
    padding: 0;
  }
}

@media screen and (max-width: 800px) {
  .about__box {
    padding: 70px 0;
  }

  .about__text {
    padding: 16px 0 40px;
    font-size: 20px;
  }

  .about__btn {
    margin-top: 40px;
  }
}

@media screen and (max-width: 600px) {
  .about__list {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
  }

  .about__item {
    &:nth-of-type(2) {
      border-top: 1px solid var(--btnNotActive);
      padding-top: 30px;
    }
  }

  /* flat fallback */
  .about__item:nth-of-type(2) {
    border-top: 1px solid var(--btnNotActive);
    padding-top: 30px;
  }

  .about__item-title-main {
    padding: 6px 0 16px;
    font-size: 24px;
  }

  .about__text {
    font-size: 16px;
  }

  .about__item-text {
    font-size: 14px;
  }
}
.news {
}

.news__box {
}

.news__content {
}

.news__top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}

.news__title {
  line-height: 74%;
}

.news__btnList {
  display: flex;
  justify-content: end;
  gap: 30px;
}

.news__btnList-item {
  width: max-content;
  cursor: pointer;
  text-transform: uppercase;
  font-family: var(--Bounded);
  color: var(--linkAccentDark);
  font-size: 16px;
  line-height: 140%;
}

.news__btnList-item.active {
  font-weight: 700;
  text-decoration: underline var(--linkAccentLight);
}

.news__list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  justify-content: space-between;
  align-items: start;
}

.news__item {
  display: none;
  flex-direction: column;
  gap: 32px;
}

.news__item.active {
  display: flex;
}

.news__item-banner {
  width: 100%;
  aspect-ratio: 5/3;
  border-radius: 20px;
  overflow: hidden;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.news__item-info {
}

.news__item-date {
  text-transform: uppercase;
  color: var(--textDark);
  opacity: 0.3;
}

.news__item-title {
  padding: 8px 0 10px;
  text-transform: uppercase;
  font-family: var(--Bounded);
  font-weight: 700;
  font-size: 20px;
  line-height: 155%;
}

.news__item-desc {
  font-weight: 500;
  color: var(--textDark);
  opacity: 0.5;
  font-size: 20px;
  line-height: 155%;
}

.news__item-more {
}

.news__btnMore {
  margin-top: 60px;
}

@media (hover: hover) {
  .news__item:hover {
    .news__item-banner > img {
      transform: scale(1.1);
    }
  }

  .news__btnList-item:hover {
    color: var(--linkAccentLight);
  }

  /* flat fallbacks */
  .news__item:hover .news__item-banner > img { transform: scale(1.1); }
}

@media screen and (max-width: 1390px) {
  .news__title {
    line-height: 110%;
  }
}

@media screen and (max-width: 1100px) {
  .news__item {
    gap: 16px;
  }

  .news__item-title {
    font-size: 18px;
    max-height: calc(18px * 2 * 1.55);
  }

  .news__item-desc {
    font-size: 18px;
  }
}

@media screen and (max-width: 900px) {
  .news__top {
    flex-direction: column;
    align-items: start;
    gap: 24px;
  }

  .news__btnList {
    gap: 16px;
    justify-content: start;
  }

  .news__list {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media screen and (max-width: 600px) {
  .news__btnList-item {
    font-size: 12px;
  }

  .news__item-banner {
    border-radius: 16px;
  }

  .news__item-title {
    padding: 6px 0;
  }
}

@media screen and (max-width: 500px) {
  .news__item-date {
    font-size: 10px;
  }

  .news__item-desc {
    font-size: 14px;
  }

  .news__item-more {
    font-size: 14px;
  }
}

@media screen and (max-width: 380px) {
  .news__item-title {
    font-size: 14px;
    max-height: calc(14px * 2 * 1.55);
  }

  .news__item-desc {
    font-size: 12px;
  }

  .news__item-more {
    font-size: 12px;
  }
}

/* End */
/* /local/templates/preora/css/pages/index.css?178048139515625 */
