@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap&subset=cyrillic-ext");
:root {
  --primary: #212121;
  --white: #fff;
  --black: #000;
  --lila: #AA67C8;
  --blue: #07B3E8;
  --gray: #686868;
  --light: #CBCBCB;
  --red: #F13636;
}

/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a {
  color: inherit;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  color: var(--primary);
  
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  
  /*background-image: url("/local/templates/acrifix.ru/img/acri_016_dark.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  */
  background: #0e0e0e;
}

input, button, textarea {
  font-family: "Montserrat", sans-serif;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background-color: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul, li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------*/
html {
  scroll-behavior: smooth;
}

body {
 /*background: var(--primary);*/
  scrollbar-gutter: stable;
}
body.lock {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}
@media (max-width: 1436.98px) {
  body {
    font-size: 9px;
  }
}
@media (max-width: 1279.98px) {
  body {
    font-size: 8.2px;
  }
}
@media (max-width: 991.98px) {
  body {
    font-size: 8px;
  }
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.container {
  margin: 0 auto;
  max-width: 1335px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media (max-width: 1335px) {
  .container {
    max-width: 970px;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: 750px;
  }
}
@media (max-width: 767.98px) {
  .container {
    max-width: none;
    padding: 0 15px;
  }
}

/*links*/
.link {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background: var(--primary);
  -webkit-transition: width 0.3s ease 0s;
  transition: width 0.3s ease 0s;
}
@media (any-hover: hover) {
  .link:hover::before {
    width: 100%;
  }
}

/*title text*/
.title-item {
  font-weight: 600;
  font-size: 4.2em;
  line-height: 120%;
}
@media (max-width: 991.98px) {
  .title-item {
    font-size: 3.2em;
  }
}
@media (max-width: 767.98px) {
  .title-item {
    font-size: 2.8em;
  }
}

.text {
  font-weight: 300;
  font-size: 1.6em;
  line-height: 120%;
}

/*header*/
.header {
  position: relative;
  z-index: 10;
  overflow: clip;
  overflow-y: visible;
  margin-top: 3em;
}
.header__wrap {
  position: relative;
}
@media (min-width: 479.98px) {
  .header__wrap {
    padding-top: 8em;
  }
}
.header__items {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 479.98px) {
  .header__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: (10em)[2];
    grid-template-rows: repeat(2, 10em);
  }
  .header__items > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .header__items > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .header__items > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .header__items > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
}
@media (max-width: 479.98px) {
  .header__body {
    -webkit-transform: translate(200%, 0px);
            transform: translate(200%, 0px);
    position: fixed;
    z-index: 20;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    overflow: auto;
    padding: 15em 3em 2em;
    background: var(--primary);
    -webkit-transition: -webkit-transform 0.3s ease 0s;
    transition: -webkit-transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4em;
  }
  .header__body .item-header__list li a {
    font-size: 1.8em;
  }
  .header__body .header__contact {
    font-size: 2.4em;
  }
  .header__body.active {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
.header__contacts {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}
@media (min-width: 479.98px) {
  .header__contacts {
    position: absolute;
    top: 0em;
    right: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
.header__contact {
  color: var(--light);
  font-size: 1.6em;
  line-height: 120%;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .header__contact:hover {
    color: var(--lila);
  }
}

.item-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--light);
  padding: 6em 0;
}
@media (max-width: 767.98px) {
  .item-header {
    padding: 3em 0;
  }
}
.item-header.left {
  z-index: 5;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin-bottom: 2em;
}
.item-header.left .item-header__list {
  text-align: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.item-header.left .item-header__bg {
  top: -8em;
}
@media (max-width: 479.98px) {
  .item-header.left .item-header__bg {
    top: -4em;
  }
}
@media (max-width: 479.98px) {
  .item-header.left {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1/1/2/3;
    margin-bottom: 0;
  }
}
.item-header.middle {
  z-index: 4;
  margin-bottom: 2em;
}
.item-header.middle .item-header__body {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.item-header.middle .item-header__bg {
  top: -6em;
}
@media (max-width: 479.98px) {
  .item-header.middle .item-header__bg {
    top: -2em;
  }
}
@media (max-width: 479.98px) {
  .item-header.middle {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
  }
}
.item-header.right {
  z-index: 3;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.item-header.right .item-header__body {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.item-header.right .item-header__bg {
  top: -6em;
}
@media (max-width: 479.98px) {
  .item-header.right .item-header__bg {
    top: -2em;
  }
}
.item-header.right .item-header__logo {
  width: 20em;
}
@media (max-width: 767.98px) {
  .item-header.right .item-header__logo {
    width: 12em;
  }
}
@media (max-width: 479.98px) {
  .item-header.right {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2/2/3/3;
  }
}
.item-header__bg {
  position: absolute;
  overflow: hidden;
  width: 200%;
  height: 250%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.item-header__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
@media (max-width: 767.98px) {
  .item-header__bg {
    width: 150%;
  }
}
.item-header__body {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2em;
}
.item-header__logo {
  position: relative;
  z-index: 5;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 12em;
  height: auto;
}
.item-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767.98px) {
  .item-header__logo {
    width: 8em;
  }
}
.item-header__title {
  position: relative;
  z-index: 35;
  font-size: 3.2em;
  line-height: 100%;
  letter-spacing: 2px;
  color: var(--lila);
}
.item-header__list {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: right;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2em;
}
.item-header__list li {
  font-size: 1.2em;
  line-height: 110%;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .item-header__list li:hover {
    color: var(--white);
  }
}

/*burger*/
.icon-menu {
  display: none;
}
@media (max-width: 479.98px) {
  .icon-menu {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    background: transparent;
    position: relative;
    z-index: 30;
    width: 3em;
    height: 1.75em;
    cursor: pointer;
    margin-right: 2em;
  }
  .icon-menu span, .icon-menu::before, .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--white);
  }
  .icon-menu::before {
    top: 0px;
  }
  .icon-menu::after {
    bottom: 0px;
  }
  .icon-menu span {
    top: calc(50% - 1px);
  }
  .icon-menu.active span {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  .icon-menu.active::before {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: calc(50% - 1px);
  }
  .icon-menu.active::after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }
}

/*footer*/
.footer {
  margin-top: 8em;
}
.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__logo {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 17em;
  height: auto;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.page {
  position: relative;
  margin-top: 8em;
}
.bg-page {
  overflow: clip;
  overflow-y: visible;
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  top: 0;
}
@media (max-width: 991.98px) {
  .bg-page {
    top: 10em;
  }
}
.bg-page__image, .bg-page__image {
  overflow: hidden;
  position: sticky;
  top: 5em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 56em;
}
.bg-page__image img, .bg-page__image img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.bg-page__image .dark, .bg-page__image .dark {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /*-webkit-animation: imgop 8s infinite ease;
          animation: imgop 8s infinite ease;*/
}
.bg-page__image .dark img, .bg-page__image .dark img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991.98px) {
  .bg-page__image, .bg-page__image {
    top: 10em;
    height: 42em;
  }
}
@media (max-width: 767.98px) {
  .bg-page__image, .bg-page__image {
    height: 32em;
  }
}

.bg-page_l {
  left: 0;
}

.bg-page_r {
  right: 0;
}
.bg-page_r .dark {
  /*-webkit-animation: imgop 8s infinite ease 4s;
          animation: imgop 8s infinite ease 4s;
          */
}
.dark {
    opacity: 1;
    transition: opacity 0.3s ease; /* плавное появление */
    pointer-events: none; /* чтобы не мешал ховеру */
}

.dark.active {
    opacity: 0;
}
.main-page__item.item-main-page{
    cursor: pointer;
    padding-left: 10px;
}

 
/*
@keyframes imgop {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes imgop {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
 home*/
.main-page {
  position: relative;
  z-index: 5;
}
@media (max-width: 767.98px) {
  .main-page__container {
    padding: 0 4em;
  }
}
.item-main-page {
  width: 100%;
  padding: 2em 0;
}
 
.item-main-page__body {
  color: var(--light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (any-hover: hover) {
  .item-main-page__body:hover .item-main-page__title {
    color: var(--lila);
  }
  .item-main-page__body:hover .item-main-page__price {
    color: var(--white);
  }
}
@media (max-width: 767.98px) {
  .item-main-page__body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.item-main-page__title {
  white-space: nowrap;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.item-main-page__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  overflow: hidden;
  width: 5em;
  aspect-ratio: 1/1;
}
.item-main-page__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991.98px) {
  .item-main-page__icon {
    width: 3.5em;
  }
}
.item-main-page__desc li {
  font-size: 1.2em;
  line-height: 110%;
}
.item-main-page__desc li:nth-child(odd) {
  color: var(--white);
}
.item-main-page__text-block {
  font-size: 1.4em;
  line-height: 110%;
  text-align: justify;
  max-width: 13em;
  text-transform: uppercase;
}
.item-main-page__characteristics li {
  font-size: 1.2em;
  line-height: 110%;
}
.item-main-page__characteristics li:nth-child(even) {
  color: var(--white);
}
.item-main-page__price {
  white-space: nowrap;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.main-page__item{
   background: rgba(99, 99, 99, 0.1); /* полупрозрачный фон */
    backdrop-filter: blur(1px);         /* размытие фона */
    -webkit-backdrop-filter: blur(1px); /* поддержка Safari */
}
.main-page__item.item-main-page:hover{
    background: rgba(134, 134, 134, 0.1); /* полупрозрачный фон */
    backdrop-filter: blur(5px);         /* размытие фона */
    -webkit-backdrop-filter: blur(5px); /* поддержка Safari */
}
 
.item-main-page:not(:last-child) {
   border-bottom: 1px solid rgba(99, 99, 99, 0.5);
}