

/* Start:/local/templates/preora/css/pages/catalog.css?178048139513422*/
.banner {
  padding-bottom: 75px;
  background: var(--bgDark);
}

.banner__info {
  width: 100%;
  height: 490px;
  background: url(/local/templates/preora/css/pages/../../img/common/bgBanner.jpg) center no-repeat;
  background-size: cover;
}

.banner__box {
  height: 100%;
  position: relative;
}

.banner__content {
  display: flex;
  align-items: center;
  height: 100%;
}

.banner__title {
  width: 40%;
  color: var(--bgLight);
}

.banner__bgProduct {
  position: absolute;
  bottom: -75px;
  right: 0;
  width: 60%;
}

.banner__bgProduct img {
  max-height: 450px;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  margin-left: auto;
}

@media screen and (max-width: 1400px) {
  .banner__info {
    height: 380px;
  }

  .banner__bgProduct {
    width: 56%;
  }
}

@media screen and (max-width: 1200px) {
  .banner__bgProduct {
    width: 50%;
  }
}

@media screen and (max-width: 1000px) {
  .banner {
    padding-bottom: 130px;
  }

  .banner__info {
    padding: 60px 0;
    height: 400px;
  }

  .banner__content {
    align-items: start;
    flex-direction: column;
  }

  .banner__title {
    width: 60%;
  }

  .banner__bgProduct {
    top: 130px;
    width: 70%;
  }
}

@media screen and (max-width: 800px) {
  .banner__info {
    height: 320px;
  }

  .banner__bgProduct {
    width: 60%;
  }
}

@media screen and (max-width: 700px) {
  .banner {
    padding-bottom: 100px;
  }

  .banner__info {
    padding: 40px 0;
    height: 460px;
  }

  .banner__bgProduct {
    width: 80%;
    top: auto;
    bottom: -80px;
  }
}

@media screen and (max-width: 660px) {
  .banner {
    padding-bottom: 80px;
  }

  .banner__info {
    padding: 40px 0;
    height: 280px;
  }

  .banner__bgProduct {
    width: 74%;
    bottom: -120px;
  }
}

@media screen and (max-width: 540px) {
  .banner__bgProduct {
    bottom: -100px;
  }
}

@media screen and (max-width: 430px) {
  .banner {
    padding-bottom: 60px;
  }

  .banner__bgProduct {
    width: 80%;
    bottom: -100px;
  }
}

@media screen and (max-width: 380px) {
  .banner {
    padding-bottom: 60px;
  }

  .banner__bgProduct {
    width: 100%;
  }
}
.main {
  background: var(--bgDark);
}

.main__box {
}

.main__content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 85px;
}

.main__filters {
}

.main__filters-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  user-select: none;
}

.main__filters-top::after {
  content: "▲";
  font-size: 10px;
  transition: transform 0.2s;
}

.main__filters-top.collapsed::after {
  transform: rotate(180deg);
}

.main__filters-title {
  font-size: 24px;
}

.main__filters-reset {
  font-size: 12px;
}

.main__filters-list {
  margin-top: 36px;
}

.main__filters-list.hidden {
  display: none;
}

.main__filters-item {
  position: relative;
  border-bottom: 1px solid var(--textAccentLightTransparent);

  &:last-of-type {
    border: none;
  }
}

.main__filters-item.active {
  .main__filters-mark::before {
    opacity: 1;
  }

  .main__filters-choice {
    pointer-events: all;
    height: auto;
    opacity: 1;
    margin-bottom: 20px;
  }
}

.main__filters-item.active .main__filters-mark::before {
  opacity: 1;
}

.main__filters-item.active .main__filters-choice {
  pointer-events: all;
  height: auto;
  opacity: 1;
  margin-bottom: 20px;
}

.main__filters-heading {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}

.main__filters-title {
  font-family: var(--Bounded);
  font-weight: 600;
  font-size: 16px;
}

.main__filters-mark {
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;

  &::after,
  &::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 2px;
    background: var(--textAccentLight);
  }

  &::before {
    rotate: 90deg;
    opacity: 0;
  }
}

.main__filters-choice {
  opacity: 0;
  height: 0;
  pointer-events: none;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main__filters-choice-item {
}

.main__filters-choice-name {
  font-family: var(--Bounded);
  font-weight: 400;
  font-size: 14px;
}

.main__filters-submit {
  margin-top: 24px;
  width: 100%;
}

/* ── Categories list (sections.php) ── */
.categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 60px 0;
}

.categories__item {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background: var(--bgLight);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}

.categories__item-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 400px;
  background: var(--bgLight);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.categories__item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.categories__item-content {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.categories__item-title {
  font-family: var(--Bounded);
  font-weight: 600;
  font-size: 22px;
  color: var(--textDark);
}

.categories__item-desc {
  font-size: 15px;
  color: var(--textDark);
  opacity: 0.7;
  line-height: 1.5;
}

.categories__item-link {
  align-self: flex-start;
  margin-top: 8px;
}

@media (hover: hover) {
  .categories__item:hover .categories__item-img img {
    transform: scale(1.04);
  }
}

@media screen and (max-width: 700px) {
  .categories {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }

  .categories__item-title {
    font-size: 18px;
  }
}

/* ── Section page extras ── */
.main__catalog-item-power {
  padding: 0 20px 14px;
  font-size: 13px;
  font-family: var(--Bounded);
  font-weight: 500;
  color: var(--textAccentLight);
}

.main__downloads {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ── Element spec table (single) ── */
.specification__single {
  max-width: 640px;
}

/* ── Banner subtitle (back-link to section) ── */
.banner__subtitle {
  font-size: 14px;
  margin-top: 8px;
  opacity: 0.75;
}

.main__catalog-empty {
  color: var(--textMiddle, #6b7280);
  font-size: 16px;
}

.main__catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  justify-content: space-between;
  gap: 60px 30px;
}

.main__catalog-item {
  display: block;
  border-radius: 24px;
  background: var(--bgLight);
}

.main__catalog-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.main__catalog-item-gallery {
  padding: 20px 20px 0;
  aspect-ratio: 1 / 1;
  width: 100%;
  position: relative;
}

.main__catalog-item-img {
  width: 100%;
  height: 100%;
  padding-bottom: 33px;

  img {
    transform: scale(0.8);
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.main__catalog-item-pagination {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.main__catalog-item-title {
  padding: 0 20px;
  margin: 10px 0;
  font-size: 16px;
  font-family: var(--Bounded);
  font-weight: 600;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  max-height: calc(16px * 3 * 1.55);
}

.main__catalog-item-download {
  display: flex;
  flex-direction: column;
  position: relative;
}

.main__catalog-item-download-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  cursor: pointer;
  margin: 10px 20px 20px auto;
}

.main__catalog-item-download-open {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  top: 0;
  background: var(--textAccentLight);
  border-radius: 0 0 24px 24px;
  padding: 10px 20px 20px;
  pointer-events: none;
  opacity: 0;
  z-index: 20;
}

.main__catalog-item-download-open.active {
  opacity: 1;
  pointer-events: all;
}

.main__catalog-item-download-open-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  cursor: pointer;
  margin-left: auto;
}

.main__catalog-item-download-formats {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.main__catalog-item-download-link {
  color: var(--bgLight);
  line-height: 100%;
  border-bottom: 1px solid var(--bgLight);
}

.main__bottom {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.main__btn {
}

.main__nums {
  display: flex;
  align-items: center;
}

.main__num {
  font-size: 18px;
  line-height: 100%;
  font-family: var(--Bounded);
  font-weight: 400;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--textDark);
  opacity: 0.8;
}

.main__num.active {
  opacity: 1;
  font-weight: 700;
  background: var(--bgLight);
}

.main__next {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--textAccentLight);
  position: relative;

  &::after {
    content: "";
    border-top: 2px solid var(--bgLight);
    border-right: 2px solid var(--bgLight);
    width: 8px;
    height: 8px;
    border-radius: 2px;
    rotate: 45deg;
  }
}

@media (hover: hover) {
  .main__catalog-item:hover {
    .main__catalog-item-img {
      img {
        transform: scale(0.9);
      }
    }
  }

  .main__catalog-item-title:hover {
    color: var(--linkAccentDark);
  }

  .main__catalog-item-download-icon:hover {
    transform: scale(1.1);
  }

  .main__catalog-item-download-open-icon:hover {
    transform: scale(1.1);
  }

  .main__catalog-item-download-link:hover {
    border-bottom-color: transparent;
  }

  .main__num:hover {
    opacity: 1;
  }

  .main__next:hover {
    background: var(--linkAccentDark);
  }
}

@media screen and (max-width: 1400px) {
  .main__catalog-item-title {
    font-size: 14px;
    font-weight: 500;
  }
}

@media screen and (max-width: 1340px) {
  .main__catalog {
    gap: 40px 20px;
  }
}

@media screen and (max-width: 1200px) {
  .main__content {
    gap: 60px;
  }

  .main__filters-title {
    font-size: 14px;
  }

  .main__catalog-item-download-icon {
    width: 20px;
    height: 20px;
    margin: 0 20px 20px auto;
  }

  .main__catalog-item-download-open {
    top: -10px;
  }

  .main__catalog-item-download-open-icon {
    width: 20px;
    height: 20px;
  }

  .main__num {
    font-size: 14px;
    width: 30px;
  }

  .main__next {
    margin-left: 6px;
  }
}

@media screen and (max-width: 1000px) {
  .main__content {
    gap: 80px;
  }

  .main__filters-list {
    margin-top: 24px;
  }

  .main__filters-heading {
    padding: 16px 0;
  }

  .main__catalog {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }

  .main__catalog-item-download-icon {
    width: 30px;
    height: 30px;
    margin: 10px 20px 20px auto;
  }

  .main__catalog-item-download-open {
    top: 0;
  }

  .main__catalog-item-download-open-icon {
    width: 30px;
    height: 30px;
  }

  .main__bottom {
    flex-direction: column;
    gap: 40px;
  }

  .main__btn {
    margin: 0 auto;
  }
}

@media screen and (max-width: 800px) {
  .main__content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .main__filters-list {
    margin-top: 16px;
  }

  .main__catalog-item {
    border-radius: 16px;
  }

  .main__catalog-item-download-open {
    border-radius: 0 0 16px 16px;
    gap: 10px;
  }

  .main__num {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 560px) {
  .main__content {
    gap: 40px;
  }

  .main__catalog {
    gap: 30px 10px;
  }

  .main__catalog-item-gallery {
    padding: 10px 10px 0;
  }

  .main__catalog-item-title {
    font-size: 12px;
    margin: 0 0 10px;
    padding: 0 10px;
  }

  .main__catalog-item-download-icon {
    margin-bottom: 10px;
  }

  .main__catalog-item-download-icon,
  .main__catalog-item-download-open-icon {
    width: 24px;
    height: 24px;
  }

  .main__catalog-item-pagination {
    .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
    }
  }

  .main__catalog-item-download-open {
    padding: 10px 10px 16px;
  }

  .main__catalog-item-download-link {
    font-size: 12px;
  }

  .main__num {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .main__next {
    width: 30px;
    height: 30px;
  }
}

@media screen and (max-width: 420px) {
  .main__catalog-item {
    border-radius: 12px;
  }

  .main__catalog-item-title {
    font-size: 10px;
    margin: 0;
  }

  .main__catalog-item-download-open {
    border-radius: 0 0 12px 12px;
  }
}

/* End */


/* Start:/local/templates/preora/css/pages/catalog-detail.css?178048139517871*/
.banner {
  width: 100%;
  padding: 70px 0 100px;
  background: url(/local/templates/preora/css/pages/../../img/common/bgBanner.jpg) center no-repeat;
  background-size: cover;
}

.banner__box {
}

.banner__content {
  display: grid;
  grid-template-columns: 1fr 42%;
  grid-template-areas:
    "text gallery"
    "btns gallery";
  gap: 0 10.5%;
  align-items: start;

  * {
    color: var(--bgLight);
  }
}

/* flat fallback */
.banner__content * { color: var(--bgLight); }

.banner__text {
  grid-area: text;
}

.banner__title {
  width: 100%;

  h3 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 120%;
  }

  h1 {
    font-size: 60px;
    line-height: 120%;
  }
}

/* flat fallbacks */
.banner__title h3 { font-size: 30px; font-weight: 400; margin-bottom: 30px; line-height: 120%; }
.banner__title h1 { font-size: 60px; line-height: 120%; }

.banner__title--sm {
  h1 { font-size: 42px; }
}

/* flat fallbacks */
.banner__title--sm h1 { font-size: 42px; }

.banner__title--xs {
  h1 { font-size: 28px; }
}

/* flat fallback */
.banner__title--xs h1 { font-size: 28px; }

.banner__desc {
  margin: 60px 0 0;
}

.banner__btns {
  grid-area: btns;
  display: grid;
  grid-template-columns: 288px 1fr;
  gap: 30px;
  align-items: start;
}

.banner__btns-advanced {
  position: relative;
}

.banner__btns .banner__btnDownload {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: auto;
  background: transparent;
  color: var(--bgLight);
  border-color: var(--bgLight);
}

.banner__btn {
  cursor: pointer;
  width: auto;
}

.banner__btns .btn {
  padding: 10px 20px;
  min-height: 64px;
}

.banner__btnDownload {
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: 100%;
  position: relative;
  z-index: 10;

  img {
    width: 30px;
  }
}

/* flat fallback */
.banner__btnDownload img { width: 30px; }

.banner__btns-advanced.active {
  .banner__btnDownload {
    border-color: var(--textAccentLight);
    background: var(--textAccentLight);
  }

  .banner__btn-list {
    background: var(--textDarkTransparent);
    opacity: 1;
    pointer-events: all;
  }
}

/* flat fallbacks */
.banner__btns-advanced.active .banner__btnDownload { border-color: var(--textAccentLight); background: var(--textAccentLight); }
.banner__btns-advanced.active .banner__btn-list { background: var(--textDarkTransparent); opacity: 1; pointer-events: all; }

.banner__btn-list {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 35px 24px 15px;
  margin-top: -20px;
  top: 100%;
  width: 100%;
  border: 1px solid var(--bgLight);
  border-top: none;
  border-radius: 12px;
  z-index: 1;
}

.banner__btn-link {
  font-size: 14px;
  font-weight: 500;
  border-bottom-color: var(--bgLight);
}

.banner__btns .banner__btnLink {
  line-height: 140%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner__gallery {
  grid-area: gallery;
  display: flex;
  flex-direction: column;
  height: 680px;
}

.banner__swiper {
  height: calc(100% - 45px);
  width: 100%;
}

.banner__subtitle {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.75;
}

.banner__slide {
  width: 100%;
  height: 100%;
  padding: 20px;

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/* flat fallback */
.banner__slide img { width: 100%; height: 100%; object-fit: contain; }

.banner__swiper-pagination {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

@media screen and (max-width: 1400px) {
  .banner__content {
    grid-template-columns: 1fr 36%;
    height: 100%;
  }
}

@media screen and (max-width: 1300px) {
  .banner__content {
    grid-template-columns: 1fr 32%;
    margin-bottom: 30px;
  }

  .banner__title {
    h1 {
      font-size: 46px;
    }
  }

  /* flat fallback */
  .banner__title h1 { font-size: 46px; }

  .banner__gallery {
    height: 100%;
    justify-content: center;
  }

  .banner__swiper {
    height: max-content;
  }

  .banner__slide {
    height: auto;
  }
}

@media screen and (max-width: 1100px) {
  .banner__content {
    gap: 0 6%;
  }

  .banner__desc {
    margin: 30px 0 40px;
  }

  .banner__btns {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    align-items: stretch;
  }

  .banner__btns-advanced {
    display: flex;
  }

  .banner__btns-advanced > * {
    flex: 1;
  }

  .banner__btnDownload {
    gap: 20px;
    justify-content: center;
  }
}

@media screen and (max-width: 800px) {
  .banner {
    padding: 30px 0 60px;
  }

  .banner__content {
    display: block;
    margin-bottom: 80px;
  }

  .banner__desc {
    margin: 20px 0 40px;
    font-size: 14px;
  }

  .banner__gallery {
    margin: 0 0 40px;
  }

  .banner__swiper {
    width: 60%;
    height: auto;
  }

  .banner__swiper-pagination {
    margin-top: 20px;
  }

  .banner__btnDownload {
    img {
      width: 24px;
    }
  }

  /* flat fallback */
  .banner__btnDownload img { width: 24px; }

  .banner__btn-list {
    padding: 35px 15px 15px;
    gap: 14px;
  }
}

@media screen and (max-width: 500px) {
  .banner__title {
    h1 {
      font-size: 34px;
    }

    h3 {
      font-size: 24px;
      margin-bottom: 20px;
    }
  }

  /* flat fallbacks */
  .banner__title h1 { font-size: 34px; }
  .banner__title h3 { font-size: 24px; margin-bottom: 20px; }

  .banner__desc {
    font-size: 12px;
  }

  .banner__swiper-pagination {
    margin-top: 10px;
  }

  .banner__btn {
    font-size: 12px;
  }

  .banner__btn-link {
    font-size: 12px;
  }
}
.advantages {
  background: var(--bgLight);
}

.advantages__box {
}

.advantages__content {
}

.advantages__title {
}

.advantages__list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

.advantages__item {
  display: grid;
  grid-template-rows: auto auto;
  gap: 10px;
  position: relative;
  min-width: 0;

  &::before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--linkAccentDark);
    opacity: 0;
  }

  &:nth-of-type(1),
  &:nth-of-type(2),
  &:nth-of-type(3) {
    &::before {
      opacity: 0.1;
    }
  }
}

.advantages__item-top {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 8px;
}

.advantages__item-title {
  overflow-wrap: break-word;
}

.advantages__item-star {
  width: 24px;
  height: 24px;
}

.advantages__item-desc {
  flex: 1;
  opacity: 0.8;
  padding: 0 0 40px;
}

@media screen and (max-width: 1500px) {
  .advantages__list {
    gap: 30px;
  }

  .advantages__item {
    gap: 10px;
  }

  .advantages__item-title {
    font-size: 18px;
  }

  .advantages__item-star {
    width: 18px;
    height: 18px;
  }

  .advantages__item-desc {
    padding: 0 0 30px;
  }
}

@media screen and (max-width: 1200px) {
  .advantages__list {
    gap: 20px 30px;
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages__item {
    &:nth-of-type(1),
    &:nth-of-type(2) {
      &::before {
        opacity: 0.1;
      }
    }
  }
}

@media screen and (max-width: 1100px) {
  .advantages__item-desc {
    padding: 0 0 20px;
  }
}

@media screen and (max-width: 900px) {
  .advantages__item-title {
    font-size: 16px;
  }

  .advantages__item-desc {
    font-size: 16px;
  }

  .advantages__item-star {
    width: 16px;
    height: 16px;
  }
}

@media screen and (max-width: 800px) {
  .advantages__list {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media screen and (max-width: 720px) {
  .advantages__list {
    margin-top: 40px;
    gap: 20px 10px;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 560px) {
  .advantages__item-top {
    display: block;
  }

  .advantages__item-title {
    font-size: 14px;
  }

  .advantages__item-star {
    display: none;
  }

  .advantages__item-desc {
    font-size: 14px;
  }
}

@media screen and (max-width: 460px) {
  .advantages__item-title {
    font-size: 10px;
  }

  .advantages__item-desc {
    font-size: 10px;
  }
}
.specification {
  background: var(--bgDark);
}

.specification__box {
}

.specification__content {
}

.specification__info {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: stretch;
}

.specification__title {
}

.specification__btns {
  background: var(--bgLight);
  padding: 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.specification__btn {
  cursor: pointer;
  font-weight: 500;
}

.specification__btn.active {
  color: var(--btn);
  font-weight: 700;
}

.specification__cards {
}

.specification__card {
  height: 0;
  opacity: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.specification__cardMobile {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.specification__card.active {
  height: auto;
  opacity: 1;
  max-height: 1600px;
}

.specification__card-list {
  display: flex;
  flex-direction: column;
}

.specification__card-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--textMiddleLight);
}

.specification__card-item-num {
  font-weight: 700;
}

.specification__card-banner {
  width: 100%;
  height: 100%;

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@media (hover: hover) {
  .specification__btn:hover {
    color: var(--btnHover);
  }
}

@media screen and (max-width: 1500px) {
  .specification__btns {
    gap: 16px;
  }

  .specification__card-item {
    padding: 16px 0;
  }
}

@media screen and (max-width: 1300px) {
  .specification__info {
    grid-template-columns: 1fr;
  }

  .specification__btns {
    padding: 48px 28px;
  }

  .specification__card {
  }

  .specification__card-item {
    font-size: 20px;
  }

  .specification__card.active {
    display: none;
  }

  .specification__cardMobile {
    display: grid;
    opacity: 0;
    grid-template-columns: 2fr 1fr;
    max-height: 0;
    overflow: hidden;
    transition:
      opacity 0.5s ease,
      max-height 0.5s ease;
  }

  .specification__cardMobile.active {
    opacity: 1;
    max-height: 1200px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 900px) {
  .specification__info {
    margin-top: 60px;
    gap: 20px;
  }

  .specification__btn {
    font-size: 18px;
  }

  .specification__card-item {
    padding: 12px 0;
    font-size: 20px;
  }

  .specification__card-item {
    font-size: 18px;
    span {
      font-size: 18px;
    }
  }
}

@media screen and (max-width: 800px) {
  .specification__cardMobile {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }

  .specification__card-banner {
    width: 60%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 600px) {
  .specification__info {
    margin-top: 40px;
  }

  .specification__btns {
    padding: 28px 22px;
    gap: 8px;
    border-radius: 16px;
  }
}

@media screen and (max-width: 520px) {
  .specification__btn {
    font-size: 12px;
  }

  .specification__card-item {
    font-size: 12px;
    padding: 8px 0;
    span {
      font-size: 12px;
    }
  }
}
.area {
}

.area__box {
}

.area__content {
}

.area__title {
}

.area__list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.area__item {
  padding: 24px;
  border-radius: 20px;
  background: var(--bgDark);
  aspect-ratio: 1/1;
  display: grid;
  grid-template-rows: 85px auto;
  align-items: end;
}

.area__item-icon {
  width: 85px;
  height: 100%;

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.area__item-title {
}

@media screen and (max-width: 1600px) {
  .area__item {
    align-items: start;
    aspect-ratio: auto;
    gap: 60px;
  }
}

@media screen and (max-width: 1480px) {
  .area__list {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
}

@media screen and (max-width: 1000px) {
  .area__list {
    margin-top: 40px;
    gap: 20px;
  }
}

@media screen and (max-width: 900px) {
  .area__item {
    grid-template-rows: 60px auto;
  }

  .area__item-title {
    font-size: 16px;
  }

  .area__item-icon {
    width: 60px;
  }
}

@media screen and (max-width: 620px) {
  .area__item {
    border-radius: 12px;
    padding: 16px;
  }

  .area__item-title {
    font-size: 14px;
  }
}

@media screen and (max-width: 540px) {
  .area__list {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }

  .area__item {
    grid-template-rows: 1fr;
    grid-template-columns: 40px 1fr;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
  }

  .area__item-icon {
    width: 40px;
  }
}

@media screen and (max-width: 420px) {
  .area__item-title {
    font-size: 12px;
  }
}
.application {
  background: var(--bgDark);
  overflow: hidden;
  position: relative;

  display: grid;
  grid-template-columns: 46vw 828px;
  grid-template-rows: auto;
}

.application__bgImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 46vw;
  height: 100%;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.application__empty {
}

.application__box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.application__content {
  padding: 100px 0 100px 40px;
}

.application__content-text {
  display: none;
  flex-direction: column;
  gap: 20px;
  * {
    color: var(--bgLight);
  }
}
.application__content-title {
}
.application__content-desc {
  font-size: 24px;
}

.application__bgImg {
}

.application__bgImg-text {
  position: absolute;
  top: 100px;
  right: 90px;
  display: flex;
  flex-direction: column;
  gap: 40px;

  * {
    color: var(--bgLight);
  }
}
.application__bgImg-desc {
  font-size: 24px;
}

/* form */
.application__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
  align-items: end;
}

.application__form-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.application__form-item-title {
  font-family: var(--Bounded);
  font-weight: 600;
  font-size: 16px;
}

.application__form-input {
  background: var(--bgDark);
  font-size: 16px;
}

.application__form-itemCommentFile {
}

.application__form-input-textarea {
  resize: none;
}

.application__form-item-file {
  margin-top: 10px;
}

.application__form-item-file-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

.application__form-item-file-btn {
  margin-top: 4px;
  position: relative;

  input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
  }
}

.application__form-itemCheckBtn {
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.application__form-itemCheckbox {
}

.application__form-itemCheckbox-content {
}

.application__form-itemCheckbox-text {
  color: var(--btnNotActive);
  font-size: 12px;
}

.application__form-itemCheckbox-link {
  color: var(--btnNotActive);
}

.application__form-toSend {
}

@media (hover: hover) {
  .application__form-itemCheckbox-link:hover {
    color: var(--bgLight);
  }
}

@media screen and (max-width: 1600px) {
  .application {
    grid-template-columns: 46vw 50vw;
  }
}

@media screen and (max-width: 1500px) {
  .application {
    grid-template-columns: 40vw 56vw;
  }

  .application__bgImg {
    width: 40vw;
  }

  .application__bgImg-text {
    right: 40px;
    width: 30vw;
  }

  .application__bgImg-title {
    font-size: 56px;
  }
}

@media screen and (max-width: 1380px) {
  .application {
    grid-template-columns: 36vw 60vw;
  }

  .application__bgImg {
    width: 36vw;
  }

  .application__bgImg-text {
    width: 28vw;
  }

  .application__bgImg-title {
    font-size: 46px;
  }
}

@media screen and (max-width: 1200px) {
  .application {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .application__content-text {
    display: flex;
  }

  .application__bgImg {
    width: 100%;
  }

  .application__bgImg-text {
    display: none;
  }

  .application__box {
    background: linear-gradient(
      190deg,
      var(--textAccentLightTransparent) 20%,
      var(--bgShadowDark) 100%
    );
    padding: 160px 0;
    position: relative;
    z-index: 10;
  }

  .application__content {
    width: 92vw;
    margin: 0 auto;
    padding: 0;
  }

  .application__form {
    margin-top: 40px;
    * {
      color: var(--bgLight);
    }
  }

  .application__form-input {
    background: var(--bgLight);
  }
}

@media screen and (max-width: 800px) {
  .application__box {
    padding: 70px 0;
  }
}

@media screen and (max-width: 700px) {
  .application__form {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .application__form-itemCheckBtn {
    padding: 0;
  }
}

@media screen and (max-width: 500px) {
  .application__form {
    gap: 10px;
  }
}

/* End */
/* /local/templates/preora/css/pages/catalog.css?178048139513422 */
/* /local/templates/preora/css/pages/catalog-detail.css?178048139517871 */
