/* Media */
[data-anim="bottomToTop"],
[data-animSlider="bottomToTop"] {
  transform: translateY(90px);
  opacity: 0;
  transition: transform 0.5s ease-out, opacity 0.3s ease-out;
}
[data-anim="bottomToTop"].anim,
[data-animSlider="bottomToTop"].anim {
  transform: translateY(0);
  opacity: 1;
}
[data-anim="bottomToTopSlow"] {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.5s ease-out, opacity 0.3s ease-out;
}
[data-anim="bottomToTopSlow"].anim {
  transform: translateY(0);
  opacity: 1;
}
[data-anim="topToBottom"] {
  transform: translateY(-30px);
  opacity: 0;
  transition: transform 0.5s ease-out, opacity 0.3s ease-out;
}
[data-anim="topToBottom"].anim {
  transform: translateY(0);
  opacity: 1;
}
[data-anim="fadeIn"],
[data-animSlider="fadeIn"] {
  opacity: 0;
  transition: all 0.5s ease-out;
}
[data-anim="fadeIn"].anim,
[data-animSlider="fadeIn"].anim {
  opacity: 1;
}
[data-anim="leftToRight"] {
  transform: translateX(-30px);
  opacity: 0;
  transition: transform 0.5s ease-out, opacity 0.3s ease-out;
}
[data-anim="leftToRight"].anim {
  transform: translateX(0);
  opacity: 1;
}
[data-anim="rightToLeft"] {
  transform: translateX(30px);
  opacity: 0;
  transition: transform 0.5s ease-out, opacity 0.3s ease-out;
}
[data-anim="rightToLeft"].anim {
  transform: translateX(0);
  opacity: 1;
}
[data-anim="zoom"] {
  opacity: 0;
  transform: scale(1.15);
  transition: transform 0.8s ease-out, opacity 0.3s ease-out;
}
[data-anim="zoom"].anim {
  opacity: 1;
  transform: scale(1);
}
/* Media */
@media (max-width: 1260px) {
  [data-anim="bottomToTop"],
  [data-animSlider="bottomToTop"] {
    transform: translateY(10px);
  }
  [data-anim="bottomToTop"].anim,
  [data-animSlider="bottomToTop"].anim {
    transform: translateY(0);
  }
  [data-anim="topToBottom"] {
    transform: translateY(-10px);
  }
  [data-anim="topToBottom"].anim {
    transform: translateY(0);
  }
}
@font-face {
  font-family: 'NotoSans';
  src: url('../fonts/NotoSans-Light.ttf') format('truetype');
  font-weight: 300;
}
@font-face {
  font-family: 'NotoSans';
  src: url('../fonts/NotoSans-Regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'NotoSans';
  src: url('../fonts/NotoSans-Bold.ttf') format('truetype');
  font-weight: 700;
}
@font-face {
  font-family: 'Kodchasan';
  src: url('../fonts/Kodchasan-ExtraLight.woff2') format('woff2');
  font-weight: 300;
}
@font-face {
  font-family: 'Kodchasan';
  src: url('../fonts/Kodchasan-Regular.woff2') format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'Exo';
  src: url('../fonts/Exo2-Bold.woff2') format('woff2');
  font-weight: 700;
}
* {
  box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}
a {
  text-decoration: none;
  outline: none;
}
ul {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
  padding: 0;
  list-style: none;
}
input,
button {
  outline: none;
}
input:focus,
button:focus {
  outline: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
}
.img {
  width: 100%;
  display: block;
}
.section {
  padding: 100px 0;
}
.section.section--high {
  height: 100vh;
}
.section.section--top-offset {
  padding-top: 140px;
}
.section.section--bottom-null {
  padding-bottom: 0;
}
.section-title {
  margin: 0 0 40px;
  font-family: 'Kodchasan';
  font-weight: 400;
  font-size: 56px;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: 0;
}
.section-title.section-title--center {
  text-align: center;
}
.section-title.section-title--small {
  font-size: 36px;
}
.section-title.section-title--uppercase {
  text-transform: uppercase;
}
.section-title span {
  display: block;
}
.container {
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  max-width: 1340px;
}
.container.container--high {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.container.container--narrow {
  width: 100%;
  max-width: 1100px;
}
.video-scroll-anim {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.site-btn {
  padding: 16px 20px;
  display: block;
  width: -webkit-max-content;
  width: max-content;
  font-family: 'NotoSans';
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1;
  color: #fff;
  background: #D11431;
  border: 2px solid #D11431;
  box-shadow: 0 3px 10px 0 rgba(186, 0, 29, 0);
  border-radius: 6px;
  transition: all 0.3s ease-out;
  position: relative;
  cursor: pointer;
}
.site-btn:hover {
  border-color: #BA001D;
  background: #BA001D;
  box-shadow: 0 3px 10px 0 rgba(186, 0, 29, 0.4);
}
.site-btn:active span {
  opacity: 0.3;
}
.site-btn.site-btn--oval {
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 25px;
}
.site-btn.site-btn--transparent {
  background: none;
}
.site-btn.site-btn--transparent:hover {
  border-color: #D11431;
  background: #D11431;
}
.site-btn.site-btn--white {
  padding: 13.5px 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 21px;
  background: none;
}
.site-btn.site-btn--white:hover {
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.2);
}
.site-btn span {
  transition: all 0.3s ease-out;
}
body {
  margin: 0;
  font-family: 'NotoSans';
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.4;
  color: #fff;
  background: #000;
}
body.desktop-lock {
  -webkit-overflow-y: hidden;
  overflow-y: hidden;
}
/* Media */
@media (max-width: 1260px) {
  .container {
    padding: 0 30px;
  }
  .container.container--wide {
    padding: 0 30px;
  }
  body.desktop-lock {
    -webkit-overflow-y: initial;
    overflow-y: initial;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
  .container.container--wide {
    padding: 0 20px;
  }
  .section {
    padding: 50px 0;
  }
  .section-title {
    margin-bottom: 30px;
    font-size: 30px;
  }
  .section-title.section-title--small {
    font-size: 30px;
  }
  .site-btn {
    padding: 13px 20px;
  }
  .site-btn.site-btn--transparent {
    background: #000;
  }
  .site-btn.site-btn--transparent:hover {
    background: #000;
  }
}
/* Sliders */
.slider-home {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 3;
}
.slider-home__wrapper {
  height: 100%;
}
.slider-home__slide {
  height: 100%;
}
.slider-home__slide.slider-home__slide--order .footer {
  border-top: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}
/* Media */
@media (max-width: 1260px) {
  .slider-home {
    height: auto;
  }
  .slider-home__slide {
    padding: 80px 0;
    height: auto!important;
    position: relative;
  }
  .slider-home__slide.slider-home__slide--hero {
    padding: 180px 0 40px;
  }
  .slider-home__slide.slider-home__slide--benefits {
    margin: 120px 0 0;
    padding: 0;
    height: 1110px!important;
    background: url(../images/home-backgrounds/mob/t-second.jpg) no-repeat center;
    background-size: cover;
  }
  .slider-home__slide.slider-home__slide--order {
    padding-top: 0;
    padding-bottom: 0;
  }
  .slider-home__slide.slider-home__slide--order .footer {
    position: initial;
    transform: translateY(20px);
  }
  .slider-home__slide.slider-home__slide--order .footer.anim {
    transform: translateY(0);
  }
  .slider-home__wrapper {
    display: block;
  }
}
@media (max-width: 767px) {
  .slider-home__slide {
    padding: 40px 0;
  }
  .slider-home__slide.slider-home__slide--hero {
    padding-top: 100px;
    padding-bottom: 0;
  }
  .slider-home__slide.slider-home__slide--benefits {
    margin-top: 0;
    margin-bottom: -60px;
    height: 900px!important;
  }
}
.slider-product {
  margin-left: auto;
  margin-right: 0;
  width: 100%;
  max-width: 718px;
}
.slider-product__slide {
  display: block;
  width: 100%;
  object-fit: cover;
  height: auto;
}
.slider-reviews {
  position: relative;
}
.slider-reviews__ico {
  display: none;
}
.slider-reviews__wrapper {
  position: relative;
  pointer-events: none;
}
.slider-reviews__slide {
  height: auto!important;
  display: flex;
  pointer-events: none!important;
}
.slider-reviews__inner {
  padding: 70px;
  padding-right: 215px;
  display: flex;
  flex-direction: column;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}
.slider-reviews__txt {
  margin: 0 0 43px;
  width: 100%;
  max-width: 630px;
  font-family: 'Kodchasan';
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0;
  text-transform: none;
}
.slider-reviews__bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  height: 34px;
}
.slider-reviews__brand {
  margin-right: 40px;
  display: block;
  width: auto;
  height: 100%;
}
.slider-reviews__name br {
  display: none;
}
.slider-reviews__avatar {
  margin: auto 0;
  margin-left: -160px;
  display: block;
  width: 320px;
  height: 320px;
  border-radius: 15px;
}
.slider-reviews__nav {
  padding-right: 60px;
  width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 946px;
}
.slider-reviews__btn {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
  position: relative;
}
.slider-reviews__btn:hover svg {
  opacity: 1;
}
.slider-reviews__btn:active svg {
  opacity: 0.1;
}
.slider-reviews__btn:first-child {
  margin-bottom: 180px;
}
.slider-reviews__btn:first-child::after {
  content: "";
  display: block;
  width: 32px;
  height: 0;
  border-bottom: 1px solid #333333;
  position: absolute;
  bottom: -90px;
  left: 4px;
  opacity: 1;
}
.slider-reviews__btn svg {
  display: block;
  width: 10px;
  height: auto;
  transition: all 0.3s ease-out;
  opacity: 0.3;
}
.slider-reviews__pagination {
  position: absolute;
  top: auto;
  bottom: 80px!important;
  left: 50%!important;
  transform: translateX(-50%);
  z-index: 2;
}
.slider-reviews__pagination span {
  margin: 0 10px!important;
  width: 4px;
  height: 4px;
  background: #fff !important;
  opacity: 0.3 !important;
}
.slider-reviews__pagination span.swiper-pagination-bullet-active {
  opacity: 1!important;
}
/* Media */
@media (max-width: 1260px) {
  .slider-reviews__wrapper {
    pointer-events: initial;
  }
  .slider-reviews__inner {
    padding: 20px;
    width: 100%;
    border-bottom: 0;
    border-radius: 20px 20px 0 0;
  }
  .slider-reviews__txt {
    margin-bottom: 20px;
    font-size: 18px;
    max-width: calc(100% - 210px);
  }
  .slider-reviews__txt br {
    display: none;
  }
  .slider-reviews__avatar {
    width: 144px;
    height: 144px;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .slider-reviews__nav {
    padding: 0;
    width: 100%;
    height: auto;
    position: initial;
    border-radius: 0;
    border-radius: 0 0 20px 20px;
  }
  .slider-reviews__nav-inner {
    width: 100%;
    height: 70px;
    position: relative;
  }
  .slider-reviews__btn {
    margin-bottom: 0!important;
    position: absolute;
    top: 14px;
  }
  .slider-reviews__btn:hover svg {
    opacity: 0.3;
  }
  .slider-reviews__btn.slider-reviews__btn--next {
    right: 10px;
  }
  .slider-reviews__btn.slider-reviews__btn--prev {
    left: 10px;
  }
  .slider-reviews__pagination {
    bottom: 30px!important;
    pointer-events: none;
  }
  .slider-reviews__pagination span {
    pointer-events: visible;
  }
}
@media (max-width: 767px) {
  .slider-reviews__ico {
    display: block;
    width: 90px;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .slider-reviews__inner {
    padding: 0;
    border-radius: 0;
    border: none;
    position: relative;
  }
  .slider-reviews__txt {
    margin-bottom: 30px;
    max-width: 100%;
  }
  .slider-reviews__bottom {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }
  .slider-reviews__brand {
    margin-bottom: 40px;
    height: 34px;
  }
  .slider-reviews__name {
    margin-left: 72px;
  }
  .slider-reviews__name br {
    display: block;
  }
  .slider-reviews__avatar {
    margin: 0;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    position: absolute;
    bottom: -7px;
    left: 0;
    top: auto;
    right: auto;
  }
  .slider-reviews__nav {
    margin-top: 40px;
    border: 1px solid #333333;
    border-radius: 6px;
  }
  .slider-reviews__nav-inner {
    height: 45px;
  }
  .slider-reviews__btn {
    top: 2px;
  }
  .slider-reviews__btn.slider-reviews__btn--prev {
    left: 0;
  }
  .slider-reviews__btn.slider-reviews__btn--next {
    right: 0;
  }
  .slider-reviews__pagination {
    bottom: 16px!important;
  }
}
.slider-about {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.slider-about__slide {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.slider-about__slide-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-about__slide-img.slider-about__slide-img--mob {
  display: none;
}
/* Media */
@media (max-width: 1260px) {
  .slider-about {
    position: absolute;
    height: 750px;
  }
  .slider-about__slide {
    height: 100%;
  }
  .slider-about__slide-img {
    display: none;
  }
  .slider-about__slide-img.slider-about__slide-img--mob {
    display: block;
  }
}
@media (max-width: 767px) {
  .slider-about {
    margin-bottom: 70px;
    height: auto;
    position: relative;
  }
  .slider-about__slide {
    height: auto;
  }
}
/* Why Vizam*/
/* Blocks */
.header {
  padding: 10px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.header.painted::before,
.header.painted-hvr::before {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, #000, #000, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.header.painted .header__row,
.header.painted-hvr .header__row {
  background: #000;
}
.header.header--short .header__row {
  border: none;
  height: 69px;
  justify-content: center;
}
.header.header--short .header__col {
  width: auto;
}
.header.header--short .header__col:nth-child(1),
.header.header--short .header__col:nth-child(3) {
  display: none;
}
.header.header--short .header__logo {
  margin: 0;
}
.header.header--short .header__nav {
  display: none;
}
.header__row {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #202020;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-out;
}
.header__burger {
  display: none;
}
.header__col {
  display: flex;
  align-items: center;
}
.header__col.header__col--burger {
  display: none;
}
.header__logo {
  margin-right: 75px;
  width: 100px;
  position: relative;
  transition: all 0.3s ease-out;
}
.header__logo:hover .header__logo-img {
  opacity: 0;
}
.header__logo:hover .header__logo-img.header__logo-img--hvr {
  opacity: 1;
}
.header__logo:active {
  opacity: 0.3;
}
.header__logo-img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s linear;
}
.header__logo-img.header__logo-img--hvr {
  opacity: 0;
}
.header__nav-list {
  display: flex;
}
.header__nav-item {
  position: relative;
}
.header__nav-item:not(:last-child) {
  margin-right: 27px;
}
.header__nav-link {
  margin-bottom: -1px;
  padding: 23.5px 0 24.5px;
  display: block;
  font-weight: 400;
  color: #D9D9D9;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition: all 0.3s ease-out;
  white-space: nowrap;
}
.header__nav-link:hover {
  border-color: #fff;
}
.header__nav-link.active {
  border-color: #fff;
}
.header__subnav {
  padding: 30px 0;
  display: flex;
  position: absolute;
  top: 67px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.1s linear;
}
.header__subnav.show {
  opacity: 1;
  pointer-events: visible;
}
.header__subnav.show .header__subnav-item {
  transform: translateY(0);
}
.header__subnav-item {
  transform: translateY(-10px);
  transition: all 0.3s ease-out;
}
.header__subnav-item.header__subnav-item--product {
  width: 320px;
}
.header__subnav-item.header__subnav-item--product:not(:last-child) {
  margin-right: 30px;
}
.header__subnav-product {
  padding: 20px;
  display: block;
  border: 1px solid #333333;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.header__subnav-product:hover::before {
  width: 0;
  opacity: 0;
}
.header__subnav-product:hover::after {
  width: 100%;
  opacity: 1;
}
.header__subnav-product::before,
.header__subnav-product::after {
  content: "";
  display: block;
  height: 100%;
  background: #333333;
  position: absolute;
  top: 0;
  z-index: 1;
}
.header__subnav-product::before {
  width: 200px;
  border-right: 1px solid #202020;
  left: 0;
  transition: all 0.2s ease-out;
}
.header__subnav-product::after {
  width: 0;
  right: 0;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.header__subnav-product-samples {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.header__subnav-product-samples img {
  width: 18px;
  height: 18px;
}
.header__subnav-product-samples img:not(:last-child) {
  margin-right: 12px;
}
.header__subnav-product-title {
  margin-left: auto;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 2;
}
.header__subnav-product-img {
  margin: 15px 0;
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}
.header__subnav-product-bottom {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  letter-spacing: 3px;
  position: relative;
  z-index: 2;
}
.header__shamir {
  margin-right: 20px;
  opacity: 0.3;
}
.header__shamir.header__shamir--mob {
  display: none;
}
.header__shamir img {
  display: block;
  width: 132px;
  height: auto;
}
.header__order {
  padding: 4.5px 13px !important;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 3px;
}
.header__order.header__order--mob {
  display: none;
}
.header__shop {
  margin-left: 25px;
  display: flex;
  align-items: center;
}
.header__shop-item:first-child {
  margin-right: 19px;
}
.header__shop-link {
  display: block;
  width: 20px;
  height: 20px;
  font-size: 0;
  cursor: pointer;
}
.header__backing {
  width: calc(100% - 20px);
  height: 270px;
  background: #000;
  border: 1px solid #202020;
  border-top: 0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  position: fixed;
  top: 0;
  left: 10px;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-out;
}
.header__backing.show {
  top: 70px;
  opacity: 1;
  pointer-events: visible;
}
/* Media */
@media (min-width: 1430px) {
  .header__col {
    width: 100%;
  }
  .header__col:nth-child(3) {
    padding-left: 176px;
    justify-content: flex-end;
  }
  .header__nav {
    margin-left: auto;
  }
}
@media (max-width: 1260px) {
  .header {
    position: fixed;
  }
  .header::before {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, #000, #000000);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .header.transparent-mob::before {
    display: none;
  }
  .header__row {
    padding: 15px;
    background: #000;
    position: initial;
  }
  .header__col {
    flex-basis: 0;
    flex-grow: 1;
  }
  .header__col.header__col--burger {
    display: block;
  }
  .header__burger {
    margin: 0;
    padding: 0;
    display: block;
    width: 32px;
    height: 32px;
    font-size: 0;
    background: none;
    border: none;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease-out;
  }
  .header__burger::before,
  .header__burger::after {
    content: "";
  }
  .header__burger::before,
  .header__burger::after,
  .header__burger span {
    display: block;
    width: 19px;
    height: 0;
    border-bottom: 2px solid #fff;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease-out;
  }
  .header__burger::before {
    top: 10px;
  }
  .header__burger::after {
    bottom: 10px;
  }
  .header__burger span {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .header__burger.active::before {
    transform: translateX(-50%) rotate(45deg);
    top: 15px;
  }
  .header__burger.active::after {
    transform: translateX(-50%) rotate(-45deg);
    bottom: 15px;
  }
  .header__burger.active span {
    opacity: 0;
  }
  .header__logo {
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .header__logo-img {
    position: initial;
    transform: translate(0);
    opacity: 1!important;
  }
  .header__logo-img.header__logo-img--hvr {
    display: none;
  }
  .header__shamir {
    display: none;
  }
  .header__shamir.header__shamir--mob {
    margin-top: 25px;
    display: block;
    height: auto;
  }
  .header__shamir.header__shamir--mob img {
    width: 104px;
  }
  .header__order {
    margin-left: auto;
  }
  .header__shop {
    margin-right: 4px;
    position: relative;
    z-index: 2;
  }
  .header__nav {
    padding: 0;
    width: calc(100% - 20px);
    height: 0;
    background: #000;
    border: 1px solid #202020;
    border-top: 0;
    border-radius: 0 0 8px 8px;
    position: fixed;
    top: 65px;
    left: 10px;
    z-index: -1;
    transition: all 0.3s ease-out;
    opacity: 0;
    pointer-events: none;
  }
  .header__nav.show {
    opacity: 1;
    pointer-events: visible;
  }
  .header__nav.show .header__subnav {
    pointer-events: visible;
  }
  .header__nav-inner {
    padding: 35px 40px 40px 40px;
    height: -moz-max-content;
    height: -ms-max-content;
    height: -webkit-max-content;
    height: max-content;
    overflow-y: scroll;
  }
  .header__nav-list {
    display: block;
  }
  .header__nav-item {
    margin-right: 0!important;
    border-top: 1px solid #202020;
  }
  .header__nav-item:last-child {
    border-bottom: 1px solid #202020;
  }
  .header__nav-link {
    padding: 15px 0;
    border: none;
  }
  .header__subnav {
    padding-top: 15px;
    position: initial;
    opacity: 1;
    pointer-events: none;
  }
  .header__subnav-item {
    transform: translateY(0);
  }
  .header__backing {
    display: none;
  }
}
@media (max-width: 767px) {
  .header {
    padding: 6px;
  }
  .header__row {
    padding: 8px;
    border-radius: 6px;
  }
  .header__nav {
    width: calc(100% - 12px);
    top: 46px;
    left: 6px;
  }
  .header__nav-inner {
    padding: 30px 15px 20px 15px;
  }
  .header__nav-link {
    padding: 12px 0;
  }
  .header__subnav {
    padding: 5px 0 20px;
  }
  .header__subnav-item.header__subnav-item--product {
    width: 50%;
  }
  .header__subnav-item.header__subnav-item--product:not(:last-child) {
    margin-right: 20px;
  }
  .header__subnav-product {
    padding: 0;
  }
  .header__subnav-product::before {
    width: 100%;
    border: 0;
    background: #202020;
  }
  .header__subnav-product::after {
    display: none;
  }
  .header__subnav-product-samples {
    margin: 15px 0 0 15px;
  }
  .header__subnav-product-samples img {
    width: 18px;
    height: 18px;
  }
  .header__subnav-product-samples img:not(:last-child) {
    margin-right: 8px;
  }
  .header__subnav-product-title {
    padding: 0 15px;
    font-size: 14px;
    position: relative;
    top: auto;
    right: auto;
  }
  .header__subnav-product-bottom {
    margin-top: 14px;
    padding: 14px 9px;
    border-top: 1px solid #2C2C2C;
  }
  .header__subnav-product-bottom span:first-child {
    display: none;
  }
  .header__order {
    display: none;
  }
  .header__order.header__order--mob {
    margin-top: 30px;
    margin-left: 0;
    padding: 8.5px 13px !important;
    display: block;
    font-size: 14px;
  }
  .header__shop {
    margin-left: auto;
  }
  .header__shop-item:first-child {
    margin-right: 14px;
  }
  .header__shop-link {
    width: 16px;
    height: 16px;
  }
  .header__shop-link svg {
    display: block;
    width: auto;
    height: 100%;
  }
  .header__shamir.header__shamir--mob img {
    width: 80px;
  }
}
.tooltips {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease-out;
}
.tooltips.hidden {
  opacity: 0;
}
.tooltips.hidden .tooltip__btn {
  pointer-events: none!important;
}
.tooltips.tooltips--mob {
  display: none;
}
.tooltip__wrapper {
  position: absolute;
}
.tooltip__btn {
  padding: 0;
  display: block;
  width: 64px;
  height: 64px;
  font-size: 0;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-out;
  pointer-events: visible;
}
.tooltip__btn:hover {
  transform: translate(-50%, -50%) rotate(-135deg);
}
.tooltip__btn:active {
  opacity: 0.3;
}
.tooltip__btn::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/ico/plus.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-out;
}
.tooltip__txt {
  margin: 0;
  padding: 13px;
  width: 256px;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  text-transform: none;
  color: #fff;
  line-height: 1.2;
  border-radius: 6px;
  background: #222222;
  box-shadow: 0 15px 30px 0 rgba(51, 51, 51, 0.15);
  position: absolute;
  left: -127px;
  top: 55px;
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease-out;
  opacity: 0;
}
.tooltip__txt::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: #222222;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.tooltip__txt.show {
  opacity: 1;
}
/* Media */
@media (max-width: 1260px) {
  .tooltips {
    display: none;
  }
  .tooltips.tooltips--mob {
    display: block;
  }
  .tooltip__btn {
    width: 44px;
    height: 44px;
  }
  .tooltip__btn::after {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 767px) {
  .tooltip__wrapper {
    position: static;
  }
  .tooltip__btn {
    width: 24px;
    height: 24px;
    border-width: 1px;
    left: inherit;
    top: inherit;
  }
  .tooltip__btn::after {
    width: 9px;
    height: 9px;
  }
  .tooltip__txt {
    padding: 9px 12px;
    width: 256px;
    font-size: 14px;
    border-radius: 6px;
    left: 50%;
    top: inherit;
    transform: translate(-50%, 30px);
  }
  .tooltip__txt::before {
    display: none;
  }
}
.samples__row {
  display: flex;
}
.samples__row.samples__row--unclickable {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
}
.samples__list {
  padding: 15px 25px;
  padding-right: 19px;
  display: flex;
  align-items: center;
  border: 1px solid #333333;
  border-radius: 25px;
}
.samples__list:not(:last-child) {
  margin-right: 12px;
}
.samples__list.samples__list--unclickable {
  position: relative;
}
.samples__list.samples__list--unclickable:first-child {
  transform: translateX(-200px);
}
.samples__list.samples__list--unclickable:last-child {
  transform: translateX(230px);
}
.samples__footnote {
  display: block;
  width: 87px;
  height: 100px;
  position: absolute;
  top: -74px;
}
.samples__footnote.samples__footnote--left {
  right: -84px;
}
.samples__footnote.samples__footnote--right {
  left: -84px;
}
.samples__item:first-child {
  margin-right: 17px;
}
.samples__item.samples__item--title {
  margin-right: 6px;
}
.samples__title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.samples__btn {
  padding: 0 6px;
  display: block;
  background: none;
  border: none;
}
.samples__btn.sample-change {
  cursor: pointer;
}
.samples__btn img {
  display: block;
  width: 18px;
  height: 18px;
}
/* Footnote animation */
.samples__footnote .elem-1 {
  stroke-dashoffset: 156.68276978px;
  stroke-dasharray: 156.68276978px;
  -webkit-transition: stroke-dashoffset 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s;
}
.samples__footnote .elem-2 {
  stroke-dashoffset: 20.84955592px;
  stroke-dasharray: 20.84955592px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s, fill 0s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s, fill 0s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s;
}
.samples__footnote.active .elem-1 {
  stroke-dashoffset: 0;
}
.samples__footnote.active .elem-2 {
  stroke-dashoffset: 0;
  fill: #ffffff;
}
/* Media */
@media (max-width: 1260px) {
  .samples__row.samples__row--unclickable {
    justify-content: center;
    position: relative;
    bottom: auto;
    top: auto;
    left: auto;
    transform: translateX(0) !important;
    z-index: 2;
  }
  .samples__list.samples__list--unclickable {
    margin: 0!important;
    transform: translateX(0) !important;
  }
  .samples__list.samples__list--unclickable:nth-child(1) {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .samples__list.samples__list--unclickable:nth-child(2) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .samples__footnote {
    display: none;
  }
}
@media (max-width: 767px) {
  .samples__row {
    flex-direction: column;
  }
  .samples__list {
    padding: 9.5px 16px 9.5px 25px;
    width: -webkit-max-content;
    width: max-content;
  }
  .samples__list:first-child {
    margin-right: 0;
  }
  .samples__list:not(:last-child) {
    margin-bottom: 6px;
  }
  .samples__item:not(:last-child) {
    margin-right: 2px;
  }
  .samples__item:first-child {
    margin-right: 8px;
  }
  .samples__title {
    font-size: 14px;
  }
  .samples__btn {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .samples__btn img {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 767px) {
  .samples__row.samples__row--unclickable {
    margin-left: 20px;
    flex-direction: row;
    width: calc(100% - 40px);
  }
  .samples__list.samples__list--unclickable {
    width: 50%;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 8px;
  }
  .samples__list.samples__list--unclickable .samples__item.samples__item--title {
    margin-bottom: 10px;
    margin-right: 0!important;
    width: 100%;
    text-align: center;
  }
}
.mask {
  position: relative;
  width: 100%;
  height: 100vh;
  cursor: none;
}
.mask__img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0s !important;
}
.mask__circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  pointer-events: none;
  display: none;
  transition: all 0s !important;
}
.mask__circle::after {
  content: "";
  display: block;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Media */
@media (max-width: 1260px) {
  .mask {
    cursor: initial;
  }
  .mask__img,
  .mask__circle {
    display: none;
  }
}
/* Media */
@media (max-width: 767px) {
  .tab-wrapper {
    transition: all 0.3s ease-out;
    height: 100%;
    overflow: hidden;
  }
}
.prefooter {
  display: none;
}
/* Media */
@media (max-width: 1260px) {
  .prefooter {
    margin-bottom: 100px;
    display: block;
  }
  .prefooter__item:not(:last-child) {
    margin-bottom: 10px;
  }
  .prefooter__link {
    padding: 15px 20px;
    display: block;
    line-height: 1;
    color: #fff;
    border: 1px solid #202020;
    border-radius: 8px;
  }
}
@media (max-width: 767px) {
  .prefooter {
    margin-bottom: 50px;
  }
  .prefooter__item {
    border-bottom: 1px solid #202020;
  }
  .prefooter__item:first-child {
    border-top: 1px solid #202020;
  }
  .prefooter__item:not(:last-child) {
    margin-bottom: 0;
  }
  .prefooter__link {
    padding: 15px 0;
    border: none;
    border-radius: 0;
  }
}
.footer {
  width: 100%;
  padding: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  position: relative;
  z-index: 100;
}
.footer.footer--desktop-hide {
  display: none;
}
.footer.footer--hide {
  display: none;
}
.footer__col {
  flex-basis: 0;
  flex-grow: 1;
}
.footer__txt {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0;
  text-transform: none;
}
.footer__txt.footer__txt--design {
  text-align: end;
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease-out;
}
.footer__txt.footer__txt--design:hover {
  color: rgba(255, 255, 255, 0.3);
}
.footer__txt.footer__txt--design:active {
  color: rgba(255, 255, 255, 0.1);
}
.footer__nav {
  display: flex;
  justify-content: center;
}
.footer__nav-item:not(:last-child) {
  margin-right: 10px;
}
.footer__nav-link {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0;
  text-transform: none;
  transition: all 0.3s ease-out;
}
.footer__nav-link:hover {
  color: rgba(255, 255, 255, 0.5);
}
.footer__nav-link:active {
  color: rgba(255, 255, 255, 0.1);
}
/* Media */
@media (max-width: 1260px) {
  .footer {
    border-top: 0;
    flex-wrap: wrap;
  }
  .footer.footer--desktop-hide {
    display: flex;
  }
  .footer__col {
    padding-top: 20px;
    flex-basis: 50%;
    flex-grow: 0;
  }
  .footer__col:nth-child(2) {
    order: 1;
    padding-top: 0;
    padding-bottom: 20px;
    flex-basis: 100%;
    border-bottom: 1px solid #202020;
  }
  .footer__col:nth-child(1) {
    order: 2;
  }
  .footer__col:nth-child(3) {
    order: 3;
  }
  .footer__txt.footer__txt--design {
    text-align: start;
  }
  .footer__nav {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 20px;
    padding-bottom: 60px;
  }
  .footer__col {
    flex-basis: 100%!important;
  }
  .footer__col:nth-child(3) {
    padding-top: 40px;
  }
}
.preloader {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.6s ease-out;
}
.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}
.preloader__img {
  display: block;
  width: 165px;
  height: auto;
}
.preloader__indicator {
  margin-top: 60px;
  width: 140px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  position: relative;
}
.preloader__indicator::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.3s ease-out;
  animation: animIndicator 5s forwards;
  animation-delay: 0.3s;
}
@keyframes animIndicator {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/* Media */
@media (max-width: 767px) {
  .preloader__img {
    margin-top: -80px;
    width: 120px;
  }
  .preloader__indicator {
    margin-top: 50px;
    width: 140px;
  }
}
.popup {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
}
.popup.popup--aside {
  transition: transform 0.3s ease-out;
  transform: translateX(calc(100% - 515px));
}
.popup.popup--aside.show {
  transform: translateX(0);
  pointer-events: visible;
  opacity: 1;
}
.popup.popup--fade.show {
  opacity: 1;
  pointer-events: visible;
}
/* Shop repair */
.popup__shop {
  margin-left: auto;
  width: 515px;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.15);
  display: none;
}
.popup__shop.show {
  display: block;
}
.popup__shop-header {
  padding: 28px 30px 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E5E5E5;
}
.popup__shop-title {
  margin: 0;
  font-size: 36px;
  line-height: 1;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 7.2px;
}
.popup__shop-btns {
  display: flex;
}
.popup__shop-btn {
  padding: 0;
  display: block;
  width: 20px;
  height: 20px;
  font-size: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease-out;
}
.popup__shop-btn:hover svg {
  opacity: 0.5;
}
.popup__shop-btn:active svg {
  opacity: 0.1;
}
.popup__shop-btn:not(:last-child) {
  margin-right: 19px;
}
.popup__shop-btn.popup__shop-btn--close:hover {
  transform: rotate(-180deg);
}
.popup__shop-btn svg {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  transition: opacity 0.3s ease-out;
}
.popup__shop-inner {
  padding: 0 30px 30px 30px;
  height: calc(100% - 90px);
  display: flex;
  flex-direction: column;
}
.popup__shop-info {
  margin: auto;
  width: 100%;
  max-width: 340px;
}
.popup__shop-info-title {
  display: block;
  color: #000;
  text-align: center;
}
.popup__shop-info-txt {
  margin: 15px 0 40px;
  font-weight: 400;
  color: #444;
  text-transform: none;
  text-align: center;
  letter-spacing: 0.96px;
}
.popup__shop-bottom-close {
  display: none;
}
/* Notice */
.popup__notice {
  margin: auto;
  padding: 30px;
  width: 100%;
  max-width: 560px;
  background: #fff;
  border: 1px solid #DADADA;
  border-radius: 20px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease-out;
  transform: scale(0.9) translateY(60px);
}
.popup__notice.show {
  transform: scale(1) translateY(0);
}
.popup__notice-img {
  margin: 0 auto;
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
}
.popup__notice-txt {
  margin-top: 30px;
  display: block;
}
.popup__notice-txt.popup__notice-txt--bold {
  text-align: center;
  color: #000;
}
.popup__notice-close {
  padding: 13px;
  display: block;
  width: 40px;
  height: 40px;
  font-size: 0;
  background: none;
  border: 1px solid #EAEAEA;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease-out;
  position: absolute;
  top: 40px;
  right: 40px;
}
.popup__notice-close:hover {
  transform: rotate(-180deg);
}
.popup__notice-close:hover svg {
  opacity: 0.5;
}
.popup__notice-close:active svg {
  opacity: 0.1;
}
.popup__notice-close svg {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.3;
  transition: opacity 0.3s ease-out;
}
/* Media */
@media (max-width: 1260px) {
  .popup {
    background: rgba(0, 0, 0, 0.6);
  }
  .popup.popup--aside {
    transform: translateX(0);
    transition: opacity 0.3s ease-out;
  }
  /* Shop repair */
  .popup__shop {
    margin: auto;
    padding: 40px;
    width: 550px;
    height: auto;
    border: 1px solid #DADADA;
    border-radius: 20px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
    position: relative;
  }
  .popup__shop.show {
    animation: popupAnim 0.3s ease-out forwards;
  }
  @keyframes popupAnim {
    0% {
      opacity: 0;
      transform: scale(0.9) translateY(60px);
    }
    100% {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }
  .popup__shop-inner {
    padding: 0;
    height: auto;
  }
  .popup__shop-info {
    max-width: 100%;
    transform: translateY(0);
  }
  .popup__shop-header {
    padding: 0;
    border: none;
  }
  .popup__shop-title {
    display: none;
  }
  .popup__shop-btn {
    margin: 0!important;
    display: none;
  }
  .popup__shop-btn.popup__shop-btn--close {
    padding: 14px;
    width: 40px;
    height: 40px;
    display: block;
    border: 1px solid #EAEAEA;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    right: 40px;
    z-index: 1;
  }
  .popup__shop-info-title {
    text-align: start;
  }
  .popup__shop-info-title br {
    display: none;
  }
  .popup__shop-info-txt {
    margin-bottom: 30px;
    text-align: start;
  }
  .popup__shop-info-txt br {
    display: none;
  }
  .popup__shop-bottom {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
  }
  .popup__shop-bottom-btn {
    width: 50%!important;
  }
  .popup__shop-bottom-close {
    display: block;
  }
  .popup__shop-bottom-close {
    padding: 0;
    font-family: 'NotoSans';
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.3);
    background: none;
    border: none;
    cursor: pointer;
  }
}
@media (max-width: 767px) {
  .popup {
    padding: 20px;
  }
  /* Shop repair */
  .popup__shop {
    padding: 20px;
    border-radius: 10px;
    width: 100%;
  }
  .popup__shop-btn.popup__shop-btn--close {
    padding: 4px;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 0;
    top: 20px;
    right: 17px;
  }
  .popup__shop-info-txt {
    margin: 15px 0 20px;
  }
  .popup__shop-bottom {
    margin-top: 22px;
    flex-direction: column;
  }
  .popup__shop-bottom-btn {
    width: 100%!important;
  }
  .popup__shop-bottom-close {
    margin-top: 15px;
    width: 100%;
  }
  /* Notice */
  .popup__notice {
    border-radius: 10px;
    width: 100%;
  }
  .popup__notice-close {
    border: 0;
    border-radius: 0;
    top: 10px;
    right: 10px;
  }
}
.form-consult {
  display: block;
  width: 100%;
}
.form-consult__row {
  margin-bottom: 8px;
}
.form-consult__row.form-consult__row--hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -11111;
}
.form-consult__input {
  padding: 15px 20px;
  display: block;
  width: 100%;
  background: #EAEAEA;
  border: none;
  border-radius: 6px;
  font: inherit;
  font-weight: 400;
  font-size: 16px;
}
.form-consult__input::placeholder {
  font: inherit;
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.3);
}
.form-consult__input.error {
  background: rgba(209, 20, 49, 0.1);
}
.form-consult__submit {
  width: 100%;
}
/* Media */
@media (max-width: 767px) {
  .form-consult__input {
    padding: 12px 12px;
    font-size: 14px;
  }
  .form-consult__input::placeholder {
    font-size: 14px;
  }
}
/* Pages */
/* Video animations */
.home__preload {
  display: none;
}
.home__background {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.home__blinks {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  display: none;
  transition: all 0.8s ease-out;
}
.home__anim {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.home__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home__content {
  margin: auto 0;
}
.home__content.home__content--top {
  margin-top: 140px;
}
.home__content-title.home__content-title--benefits {
  margin-bottom: 70px;
}
.home__content-banner {
  display: none;
}
/* Hero slide */
.home__hero-bottom {
  margin-top: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Benefits slide */
.home__benefits {
  padding-top: 70px;
  display: flex;
  justify-content: center;
  position: relative;
}
.home__benefits::before {
  content: "";
  display: block;
  width: 580px;
  height: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
}
.home__benefits-item:first-child {
  padding-right: 65px;
}
.home__benefits-item:last-child {
  padding-left: 65px;
  position: relative;
}
.home__benefits-item:last-child::before {
  content: "";
  display: block;
  width: 0;
  height: calc(100% + 140px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 0;
  top: -70px;
}
.home__benefits-txt {
  margin: 0;
}
.home__benefits-txt.home__benefits-txt--right {
  text-align: end;
}
/* Order */
.home__order {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}
.home__order-col {
  width: -webkit-max-content;
  width: max-content;
}
.home__order-txt {
  margin: 0 0 215px;
}
.home__order-products {
  margin-bottom: 73px;
  display: flex;
}
.home__order-products-item {
  border: 1px solid #202020;
  border-radius: 8px;
}
.home__order-products-item:not(:last-child) {
  margin-right: 20px;
}
.home__order-products-link {
  display: block;
  height: 100%;
}
.home__order-products-samples {
  padding: 15px 20px 0 20px;
  display: flex;
}
.home__order-products-samples img {
  width: 14px;
  height: 14px;
}
.home__order-products-samples img:not(:last-child) {
  margin-right: 8px;
}
.home__order-products-img {
  margin: 22px 0 5px;
  display: block;
  width: 100%;
  max-width: 149px;
  height: auto;
}
.home__order-products-title {
  padding: 0 20px 14px;
  display: block;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
}
.home__order-products-product {
  display: none;
}
.home__order-products-price {
  padding: 8px 20px 15px;
  display: block;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 3px;
  color: #fff;
  border-top: 1px solid #202020;
}
.home__order-nav-item:not(:last-child) {
  margin-bottom: 10px;
}
.home__order-nav-link {
  padding: 15px 20px;
  display: block;
  width: 318px;
  color: #fff;
  border: 1px solid #202020;
  border-radius: 8px;
}
/* Media */
@media (max-width: 1260px) {
  .home__anim {
    position: absolute;
    display: none;
  }
  .home__background {
    width: 1430px;
    height: auto;
    display: block;
    position: absolute;
    right: -105px;
    top: 90px;
    left: auto;
  }
  .home__content.home__content--top {
    margin-top: 0;
  }
  .home__content-banner {
    display: block;
    position: relative;
  }
  .home__content-banner.home__content-banner--experience {
    margin-bottom: 55px;
    margin-left: -30px;
    width: calc(100% + 60px);
  }
  .home__content-banner.home__content-banner--design {
    margin-bottom: -240px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 554px;
  }
  .home__content-banner.home__content-banner--samples {
    margin: -100px 0 -50px;
    height: 462px;
    position: relative;
  }
  .home__content-banner.home__content-banner--samples img {
    display: block;
    width: auto;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .home__content-banner.home__content-banner--order {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .home__content-banner img {
    display: block;
    width: 100%;
  }
  .home__content-title.home__content-title--center {
    text-align: center;
  }
  .home__content-title.home__content-title--design {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 708px;
  }
  .home__content-title .line {
    display: inline-block;
  }
  /* Hero slide */
  .home__hero-bottom {
    margin-top: 60px;
    flex-direction: column;
    align-items: flex-start;
  }
  .home__hero-shop {
    margin-bottom: 250px;
  }
  .home__logo {
    display: none;
  }
  /* Experience */
  .home__experience-txt {
    margin: 0 auto;
    width: 100%;
    max-width: 510px;
    text-align: center;
  }
  .home__experience-txt br {
    display: none;
  }
  /* Design slide */
  .home__design-txt {
    text-align: center;
  }
  .home__design-txt br {
    display: none;
  }
  /* Order slide */
  .home__order {
    margin-top: 0;
    flex-direction: column;
  }
  .home__order-col {
    width: 100%;
  }
  .home__order-txt {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 70px;
    width: 100%;
    max-width: 412px;
    text-align: center;
  }
  .home__order-txt br {
    display: none;
  }
  .home__order-btn {
    display: none;
  }
  .home__order-products {
    margin-bottom: 35px;
    justify-content: center;
  }
  .home__order-products-item {
    overflow: hidden;
  }
  .home__order-products-item:not(:last-child) {
    margin-right: 30px;
  }
  .home__order-products-link {
    position: relative;
  }
  .home__order-products-link::before {
    content: "";
    display: block;
    width: 200px;
    height: 100%;
    background: #333333;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .home__order-products-samples {
    position: relative;
    z-index: 2;
  }
  .home__order-products-img {
    margin: 0;
    padding-top: 15px;
    padding-bottom: 35px;
    max-width: 335px;
    width: 335px;
    position: relative;
    z-index: 2;
  }
  .home__order-products-title {
    padding: 0;
    font-size: 16px;
    position: absolute;
    top: 12px;
    right: 25px;
    z-index: 2;
  }
  .home__order-products-product {
    display: block;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
    position: absolute;
    bottom: 12px;
    left: 20px;
    z-index: 2;
  }
  .home__order-products-price {
    padding: 0;
    font-weight: 500;
    font-size: 12px;
    border: none;
    position: absolute;
    bottom: 12px;
    right: 25px;
    z-index: 2;
  }
  .home__order-nav {
    margin-bottom: 60px;
  }
  .home__order-nav-link {
    margin: 0 auto;
    display: block;
    width: 702px;
  }
}
@media (max-width: 767px) {
  .home__background {
    width: 530px;
    right: -20px;
    top: 145px;
  }
  .home__content-banner.home__content-banner--samples {
    margin: -145px auto -80px;
    width: 100%;
    height: 458px;
  }
  .home__content-banner.home__content-banner--samples img {
    display: block;
    height: 100%;
    object-fit: cover;
  }
  .home__content-title.home__content-title--benefits {
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 295px;
  }
  .home__content-title.home__content-title--benefits span {
    display: inline;
  }
  .home__content-title.home__content-title--design {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 308px;
  }
  /* Hero slide */
  .home__hero-bottom {
    margin-top: 160px;
    margin-top: calc(172px + (100vw - 320px));
  }
  .home__hero-shop {
    margin-bottom: 50px;
  }
  /* Benefits */
  .home__benefits {
    padding-top: 0!important;
    flex-direction: column;
  }
  .home__benefits::before {
    display: none;
  }
  .home__benefits-item {
    padding: 0!important;
    padding-top: 30px!important;
    padding-bottom: 30px!important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  .home__benefits-item::before {
    display: none!important;
  }
  .home__benefits-txt {
    text-align: center!important;
  }
  /* Design */
  .home__design-txt {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 278px;
  }
  /* Order */
  .home__order-products-item {
    background: #202020;
  }
  .home__order-products-item:first-child {
    margin-right: 20px;
  }
  .home__order-products-link::before {
    display: none;
  }
  .home__order-products-img {
    padding: 14px 0;
    width: 100%;
  }
  .home__order-products-product {
    display: none;
  }
  .home__order-products-title,
  .home__order-products-price {
    position: initial;
  }
  .home__order-products-title {
    padding: 14px;
    padding-top: 0;
  }
  .home__order-products-price {
    padding: 9px 14px;
    border-top: 1px solid #2C2C2C;
  }
  .home__order-nav {
    margin-bottom: 30px;
  }
  .home__order-nav-item {
    margin-bottom: 0!important;
  }
  .home__order-nav-item:first-child .home__order-nav-link {
    border-top: 1px solid #202020;
  }
  .home__order-nav-link {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    font-weight: 500;
    border: none;
    border-bottom: 1px solid #202020;
    border-radius: 0;
  }
}
/* Hero */
.product__hero {
  padding-top: 0;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.product__hero-inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: 1460px;
}
.product__hero-row {
  margin: auto 0;
  display: flex;
  justify-content: space-between;
}
.product__view {
  min-width: 115px;
  max-width: 115px;
  height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #202020;
  border-radius: 0 15px 15px 0;
}
.product__view-item {
  margin: 0;
}
.product__view-btn {
  margin: 0 auto;
  padding: 0;
  display: block;
  width: 52px;
  height: 52px;
  font-size: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.product__view-btn.active svg {
  opacity: 1;
}
.product__view-btn svg {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.3;
  transition: opacity 0.3s linear;
}
.product__cart {
  margin-left: 35px;
  min-width: 320px;
  max-width: 320px;
  background: #fff;
  border-radius: 15px;
  position: relative;
}
.product__cart-inner {
  padding: 30px;
  padding-bottom: 0;
}
.product__cart-title {
  margin: 0 0 15px;
  padding-bottom: 20px;
  font-family: 'Kodchasan';
  font-weight: 400;
  font-size: 36px;
  color: #000;
  text-transform: uppercase;
  border-bottom: 1px solid #E5E5E5;
}
.product__cart-colors-title {
  margin-bottom: 20px;
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
}
.product__cart-colors-list {
  display: flex;
}
.product__cart-colors-item {
  width: 59px;
  height: 59px;
  position: relative;
}
.product__cart-colors-item:not(:last-child) {
  margin-right: 8px;
}
.product__cart-colors-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.product__cart-colors-btn {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #EAEAEA;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.product__cart-colors-btn:hover {
  background: #E5E5E5;
}
.product__cart-colors-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 3px solid #000;
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.product__cart-colors-btn.active::after {
  opacity: 1;
}
.product__cart-shop {
  margin-top: 30px;
  display: flex;
  border: 1px solid #EAEAEA;
  border-radius: 6px;
  overflow: hidden;
}
.product__cart-price {
  padding: 15px 0;
  width: 50%;
  color: #000;
  text-align: center;
}
.product__cart-count {
  width: 50%;
  border-left: 1px solid #EAEAEA;
  position: relative;
}
.product__cart-input {
  margin: 0;
  display: block;
  width: 100%;
  height: 100%;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  text-align: center;
  border: none;
  background: none;
  pointer-events: none;
}
.product__cart-input::-webkit-outer-spin-button,
.product__cart-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.product__cart-quantity {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 0;
  background: none;
  border: none;
  position: absolute;
  top: 0;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.product__cart-quantity:hover svg {
  stroke: #D11431;
}
.product__cart-quantity:active {
  opacity: 0.3;
}
.product__cart-quantity.minus {
  left: 0;
}
.product__cart-quantity.plus {
  right: 0;
}
.product__cart-quantity svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-out;
  pointer-events: none;
}
.product__cart-add {
  margin-top: 8px;
  width: 100%;
  display: block;
}
.product__virtual {
  margin-top: 30px;
  position: relative;
}
.product__virtual::before {
  content: "";
  display: block;
  width: calc(100% + 60px);
  height: 0;
  border-top: 1px solid #E5E5E5;
  position: absolute;
  top: 0;
  left: -30px;
}
.product__virtual.product__virtual--mob {
  display: none;
}
.product__virtual-btn {
  padding: 19px 0;
  display: flex;
  width: 100%;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
}
.product__virtual-btn:hover .product__virtual-title::after {
  opacity: 0.3;
}
.product__virtual-btn:active .product__virtual-title::after {
  opacity: 0.1;
}
.product__virtual-ico {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EAEAEA;
  border-radius: 50%;
}
.product__virtual-ico img {
  width: 20px;
  height: auto;
}
.product__virtual-title {
  margin-left: 20px;
  font-family: 'NotoSans';
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  position: relative;
}
.product__virtual-title::after {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  background: url(../images/ico/arrow-right.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 1px;
  right: -40px;
  opacity: 0.2;
  transition: all 0.3s ease-out;
}
.product__cart-tooltip {
  padding: 30px 30px 20px 30px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 15px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}
.product__cart-tooltip.show {
  opacity: 1;
}
.product__cart-tooltip p {
  margin: 0;
  display: none;
}
.product__cart-tooltip p.show {
  display: block;
}
.product__cart-tooltip svg {
  display: block;
  width: 42px;
  height: 42px;
}
.product__cart-tooltip div {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background: #fff;
  position: absolute;
  top: 0;
  right: -4.5px;
  transform: rotate(45deg);
  transition: all 0.3s ease-out;
}
.product__warranty {
  margin-left: auto;
  padding-left: 30px;
}
.product__warranty-list {
  width: 144px;
  height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #202020;
  border-right: 0;
  border-radius: 15px 0 0 15px;
}
.product__warranty-item {
  height: 78px;
  transition: all 0.3s ease-out;
  cursor: default;
}
.product__warranty-item:not(:last-child) {
  margin-bottom: 20px;
}
.product__warranty-item:not(.active) {
  opacity: 0.3;
}
.product__warranty-img {
  margin: 0 auto;
  display: block;
  width: 25px;
  height: auto;
}
.product__warranty-title {
  margin-top: 13px;
  display: block;
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}
.product__anchors {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1020px;
  display: flex;
  border-bottom: 1px solid #202020;
  position: absolute;
  left: 50%;
  bottom: 70px;
  transform: translate(-50%, 30px);
}
.product__anchors.anim {
  transform: translate(-50%, 0);
}
.product__anchors-item:not(:last-child) {
  margin-right: 25px;
}
.product__anchors-link {
  display: block;
  padding-bottom: 10px;
  color: #fff;
  transition: all 0.3s ease-out;
  position: relative;
}
.product__anchors-link:hover::after {
  opacity: 1;
}
.product__anchors-link:active {
  opacity: 0.3;
}
.product__anchors-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  border-bottom: 1px solid #fff;
  position: absolute;
  bottom: -1px;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease-out;
}
/* Features */
.product__features {
  padding-bottom: 50px;
}
.product__features-list {
  margin: -15px;
  display: flex;
  flex-wrap: wrap;
}
.product__features-item {
  margin: 15px;
  width: calc((100% / 3) - 30px);
  position: relative;
  border-radius: 15px;
  will-change: transform;
  overflow: hidden;
}
.product__features-item:hover .product__features-img-hvr {
  opacity: 1;
}
.product__features-ico {
  display: block;
  width: 32px;
  height: auto;
  fill: #fff;
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 3;
  pointer-events: none;
}
.product__features-img-wrapper {
  position: relative;
}
.product__features-img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.product__features-img-hvr {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease-out;
  pointer-events: none;
}
.product__features-title {
  display: block;
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 3;
  pointer-events: none;
}
/* Specs */
.product__specs {
  margin-bottom: -105px;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}
.product__specs-inner {
  padding: 70px 120px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: #000;
}
.product__specs-list {
  margin: -30px -15px;
  display: flex;
  flex-wrap: wrap;
}
.product__specs-item {
  margin: 30px 15px;
  width: calc((100% / 3) - 30px);
}
.product__specs-title {
  margin-bottom: 15px;
  display: block;
  font-family: 'Kodchasan';
  font-weight: 400;
  font-size: 36px;
  letter-spacing: 0;
  text-transform: none;
}
.product__specs-descr {
  padding-top: 18px;
  display: flex;
  align-items: center;
  border-top: 1px solid #333333;
}
.product__specs-descr span {
  margin-right: 5px;
  font-family: 'NotoSans';
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
}
.product__specs-descr button {
  padding: 0;
  display: block;
  width: 18px;
  height: 18px;
  background: none;
  border: none;
  transition: all 0.3s ease-out;
  position: relative;
}
.product__specs-descr button:hover svg circle {
  stroke: #fff;
  transition: all 0.3s ease-out;
}
.product__specs-descr button:hover svg path {
  fill: #fff;
  transition: all 0.3s ease-out;
}
.product__specs-descr button svg {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
}
.product__specs-txt {
  margin: 0;
  padding: 12px;
  width: 256px;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  color: #fff;
  background: #D11431;
  border-radius: 6px;
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-out;
  z-index: 1;
}
.product__specs-txt::after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background: #D11431;
  position: absolute;
  left: 50%;
  top: 0;
  transform: rotate(45deg) translateX(-50%);
}
.product__specs-txt.show {
  opacity: 1;
}
/* Set */
.product__set {
  overflow: hidden;
}
.product__set.product__set--tablets {
  display: none;
}
.product__set.product__set--mob {
  display: none;
}
.product__set-inner {
  position: relative;
  height: 877px;
}
.product__set-img {
  display: block;
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.product__set-container {
  width: 100%;
  height: 877px;
  max-width: 1260px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.product__trigger {
  padding: 0;
  font-size: 0;
  background: none;
  border: none;
  position: absolute;
  cursor: pointer;
}
.product__set-txt {
  display: block;
  width: 120px;
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  position: absolute;
  transition: all 0.3s ease-out;
}
.product__set-txt.product__set-txt--end {
  text-align: end;
}
.product__set-txt.product__set-txt--hvr {
  opacity: 0;
}
.product__set-txt.product__set-txt--hvr.show {
  opacity: 1;
}
.product__set-footnote {
  display: block;
  position: absolute;
  bottom: 25px;
}
.product__set-footnote.product__set-footnote--left {
  left: calc(100% + 13px);
}
.product__set-footnote.product__set-footnote--right {
  right: calc(100% + 13px);
}
/* Reviews */
.product__reviews {
  margin-top: -200px;
  padding-top: 100px;
}
/* Explore */
.product__explore {
  padding: 0;
}
.product__explore-inner {
  position: relative;
}
.product__explore-img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 960px;
}
.product__explore-descr {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.product__explore-suptitle {
  margin-bottom: 20px;
  display: block;
  text-align: center;
}
.product__explore-title {
  margin-bottom: 40px;
  display: block;
  font-family: 'Kodchasan';
  font-weight: 400;
  font-size: 42px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}
.product__explore-btn {
  margin: 0 auto;
  width: 260px;
}
/* Tabs btn */
.product__tab-btn {
  display: none;
}
/* Media */
@media (min-width: 2160px) {
  .product__set-inner {
    position: relative;
    height: auto;
  }
  .product__set-img {
    width: 100%;
    height: auto;
    position: initial;
    transform: translateX(0);
  }
  .product__set-container {
    max-width: 1460px;
    height: 100%;
  }
}
/* Media */
@media (min-width: 1461px) {
  .product__view,
  .product__warranty-list {
    border: 1px solid #202020;
    border-radius: 15px;
  }
}
@media (max-width: 1260px) {
  /* Hero */
  .product__hero {
    padding-top: 90px;
    padding-left: 20px;
    padding-right: 20px;
    height: auto;
  }
  .product__virtual {
    display: none;
  }
  .product__virtual.product__virtual--mob {
    margin-top: 0;
    display: block;
  }
  .product__virtual.product__virtual--mob::before {
    display: none;
  }
  .product__virtual-btn {
    padding: 0;
  }
  .product__virtual-title {
    margin-left: 15px;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    text-transform: none;
    line-height: 1.3;
    text-align: start;
  }
  .product__hero-row {
    flex-direction: column;
  }
  .slider-product {
    margin-left: 0;
    max-width: 100%;
    order: 1;
  }
  .product__view {
    min-width: auto;
    max-width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: center;
    border: none;
    border-radius: 0;
    order: 2;
    transform: translateY(30px);
  }
  .product__view.anim {
    transform: translateY(0);
  }
  .product__cart {
    margin-top: 35px;
    margin-left: -10px;
    min-width: initial;
    max-width: initial;
    width: calc(100% + 20px);
    order: 3;
  }
  .product__cart-inner {
    padding: 20px;
  }
  .product__cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .product__cart-title {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
  }
  .product__cart-colors {
    display: flex;
    align-items: center;
  }
  .product__cart-colors-title {
    margin-right: 30px;
    margin-bottom: 0;
    width: 123px;
    text-align: end;
  }
  .product__cart-body {
    margin-top: 20px;
    display: flex;
    align-items: center;
  }
  .product__cart-shop {
    margin-top: 0;
    margin-right: 20px;
    width: 50%;
  }
  .product__cart-add {
    margin-top: 0;
    width: 50%;
  }
  .product__virtual {
    display: none;
  }
  .product__cart-tooltip {
    padding: 20px;
  }
  .product__cart-tooltip div,
  .product__cart-tooltip svg {
    display: none;
  }
  .product__warranty {
    margin-left: 0;
    margin-top: 30px;
    padding: 0;
    height: auto;
    order: 4;
    transform: translateY(30px);
  }
  .product__warranty.anim {
    transform: translateY(0);
  }
  .product__warranty-list {
    height: auto;
    width: auto;
    flex-direction: row;
    justify-content: space-around;
    border: none;
    border-radius: 0;
  }
  .product__warranty-item {
    margin-bottom: 0!important;
    height: auto;
    display: flex;
    align-items: center;
  }
  .product__warranty-title {
    margin-top: 0;
    margin-left: 15px;
    text-align: start;
  }
  .product__anchors {
    margin-top: 65px;
    position: initial;
    transform: translateY(30px);
  }
  .product__anchors.anim {
    transform: translateY(0);
  }
  .product__anchors-link::after {
    display: none;
  }
  /* Features */
  .product__features {
    padding-bottom: 0;
  }
  .product__features-list {
    margin: -10px;
  }
  .product__features-item {
    margin: 10px;
    width: calc((100% / 3) - 20px);
  }
  .product__features-img-hvr {
    opacity: 1;
  }
  /* Specs */
  .product__specs {
    margin-bottom: 0;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .product__specs-inner {
    padding: 0;
    border: 0;
    border-radius: 0;
  }
  .product__specs-list {
    margin: -20px -10px;
  }
  .product__specs-item {
    margin: 20px 10px;
    width: calc((100% / 3) - 20px);
  }
  /* Sets */
  .product__set {
    display: none;
  }
  .product__set.product__set--tablets {
    padding-bottom: 100px;
    display: block;
  }
  .product__set-inner {
    height: 565px;
  }
  .product__set-container {
    max-width: 767px;
    height: 100%;
  }
  .product__set-txt {
    width: auto;
  }
  .product__set-txt.product__set-txt--center {
    text-align: center;
  }
  /* Reviews */
  .product__reviews {
    margin-top: -100px;
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  /* Hero */
  .product__virtual.product__virtual--mob {
    display: none;
  }
  .product__view-item:not(:last-child) {
    margin-right: 8px;
  }
  .product__view-btn {
    width: 28px;
    height: 3px;
    border-radius: 3px;
    background: #fff;
    opacity: 0.2;
  }
  .product__view-btn.active {
    opacity: 1;
  }
  .product__view-btn svg {
    display: none;
  }
  .product__cart-inner {
    padding: 20px 15px;
  }
  .product__cart-header {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .product__cart-title {
    font-size: 30px;
  }
  .product__cart-colors {
    margin-top: 20px;
    padding-top: 10px;
    width: 100%;
    display: block;
    border-top: 1px solid #E5E5E5;
  }
  .product__cart-colors-item {
    width: 63px;
    height: 63px;
  }
  .product__cart-colors-item:not(:last-child) {
    margin-right: 9px;
  }
  .product__cart-colors-title {
    margin-right: 0;
    margin-bottom: 24px;
    width: 100%;
    text-align: start;
  }
  .product__cart-body {
    flex-direction: column;
  }
  .product__cart-shop {
    margin-right: 0;
    margin-bottom: 8px;
    width: 100%;
  }
  .product__cart-price {
    padding: 12px 0;
  }
  .product__cart-quantity {
    width: 44px;
    height: 44px;
  }
  .product__cart-add {
    width: 100%;
  }
  .product__virtual {
    margin-top: 0;
    display: block;
    position: absolute;
    top: 22px;
    right: 15px;
  }
  .product__virtual::before {
    display: none;
  }
  .product__virtual-ico {
    margin-left: 15px;
    order: 2;
  }
  .product__virtual-title {
    color: #000;
    width: 73px;
    font-weight: 500;
    font-size: 10px;
    text-align: end;
    text-transform: uppercase;
    order: 1;
  }
  .product__virtual-title::after {
    display: none;
  }
  .product__warranty-item {
    flex-direction: column;
  }
  .product__warranty-title {
    margin-top: 14px;
    margin-left: 0;
    text-align: center;
  }
  .product__anchors {
    display: none;
  }
  /* Features */
  .product__features {
    padding-bottom: 50px;
  }
  .product__features-list {
    margin: -10px;
  }
  .product__features-item {
    margin: 10px;
    width: calc((100% / 2) - 20px);
    border-radius: 0;
    overflow: initial;
  }
  .product__features-img-wrapper {
    border-radius: 6px;
    overflow: hidden;
  }
  .product__features-ico {
    width: 20px;
    top: 15px;
    left: 15px;
  }
  .product__features-title {
    margin-top: 15px;
    position: initial;
  }
  .product__features-title br {
    display: none;
  }
  /* Specs */
  .product__specs {
    padding-top: 0;
    padding-bottom: 50px;
  }
  .product__specs-list {
    margin: 0;
    flex-direction: column;
  }
  .product__specs-item {
    margin: 0;
    width: 100%;
  }
  .product__specs-item:not(:last-child) {
    margin-bottom: 25px;
  }
  .product__specs-title {
    margin-bottom: 10px;
    font-size: 30px;
  }
  .product__specs-descr {
    padding-top: 15px;
  }
  .product__specs-txt {
    position: fixed;
    top: auto;
    bottom: 30px;
  }
  .product__specs-txt::after {
    display: none;
  }
  /* Sets */
  .product__set.product__set--tablets {
    display: none;
  }
  .product__set.product__set--mob {
    display: block;
  }
  .product__set-inner {
    height: 265px;
  }
  .product__set-container {
    max-width: 320px;
  }
  .product__set-txt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    font-size: 12px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50%;
    opacity: 0.2;
    pointer-events: none;
  }
  .product__set-txt.product__set-txt--hvr {
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    border: none;
    font-size: 14px;
    position: initial;
    opacity: 1;
  }
  .product__set-txt.product__set-txt--hvr:not(:last-child) {
    margin-bottom: 8px;
  }
  .product__set-txt.product__set-txt--hvr br {
    display: none;
  }
  .product__set-txt.product__set-txt--hvr span:first-child {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
  }
  .product__set-txt.product__set-txt--hvr.show span:first-child {
    border-color: #fff;
  }
  /* Reviews */
  .product__reviews {
    margin-top: 55px;
    padding-top: 0;
  }
  /* Explore */
  .product__explore {
    padding: 50px 0;
  }
  /* Tabs btn */
  .product__tab-btn {
    margin: 0 0 30px;
    padding: 15px 20px;
    display: block;
    width: 100%;
    font-family: 'Kodchasan';
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.3);
    text-align: start;
    text-transform: uppercase;
    background: none;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
  }
  .product__tab-btn::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 5px 5px;
    border-color: transparent transparent rgba(255, 255, 255, 0.3) transparent;
    position: absolute;
    top: 25px;
    right: 35px;
    transition: all 0.3s ease-out;
  }
  .product__tab-btn.active::after {
    transform: rotate(180deg);
  }
}
/* Lottie */
.tech__lottie-wrapper {
  position: relative;
  overflow: hidden;
}
.tech__lottie {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -1;
  transform: translateY(-50%);
  pointer-events: none;
}
.tech__lottie.tech__lottie--lenses {
  width: auto;
  height: 703px;
  right: -400px;
}
.tech__lottie.tech__lottie--frame,
.tech__lottie.tech__lottie--vega {
  width: auto;
  height: 703px;
  right: -300px;
  left: auto;
  opacity: 0;
}
.tech__lottie.tech__lottie--frame.show,
.tech__lottie.tech__lottie--vega.show {
  opacity: 1;
}
.tech__lottie.tech__lottie--head {
  width: auto;
  height: 703px;
  right: 50px;
  bottom: -140px;
  top: auto;
  transform: translateY(0);
}
.tech__lottie.tech__lottie--head::after {
  content: "";
  display: block;
  width: 100%;
  height: 270px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
/* Hero */
.tech__hero {
  margin-bottom: 100px;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.tech__curtain {
  height: 0;
  width: 100%;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.tech__hero-back {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.tech__hero-back.tech__hero-back--mob {
  display: none;
}
.tech__hero-inner {
  margin: auto;
  position: relative;
  z-index: 3;
}
.tech__hero-subtitle {
  width: 100%;
  max-width: 730px;
  text-align: center;
}
.tech__hero-btns {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.tech__hero-btns-btn:first-child {
  margin-right: 10px;
}
/* Content */
.tech__content {
  display: flex;
}
.tech__content-col {
  width: 50%;
}
.tech__content-txt {
  font-weight: 300;
  font-size: 30px;
  letter-spacing: 1px;
  text-transform: none;
}
.tech__content-btns {
  display: flex;
}
.tech__content-btns-btn:first-child {
  margin-right: 10px;
}
.tech__content-btns-btn.active {
  border-color: #fff;
}
.tech__content-btns-btn.active:hover {
  border-color: #fff;
}
/* Grid */
.tech__grid-list {
  margin: -15px;
  display: flex;
  flex-wrap: wrap;
}
.tech__grid-item {
  margin: 15px;
  width: calc((100% / 2) - 30px);
  border-radius: 15px;
  overflow: hidden;
  will-change: transform;
  position: relative;
}
.tech__grid-item:hover .tech__grid-img.tech__grid-img--hvr {
  opacity: 1;
}
.tech__grid-img {
  display: block;
  width: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: opacity 0.3s ease-out;
}
.tech__grid-img.tech__grid-img--hvr {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
}
.tech__grid-ico {
  display: block;
  width: 29px;
  height: 29px;
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 3;
}
.tech__grid-title {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 3;
}
/* Benefits */
.tech__benefits {
  margin-top: 100px;
  padding-top: 0;
  padding-bottom: 100vh;
}
.tech__benefits-inner {
  display: flex;
  justify-content: space-between;
}
.tech__benefits-list {
  width: calc(50% - 20px);
}
.tech__benefits-item:not(:last-child) {
  margin-bottom: 300px;
}
.tech__benefits-count {
  margin-bottom: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.tech__benefits-count-num {
  margin-right: 10px;
  font-family: 'Kodchasan';
  font-weight: 300;
  font-size: 70px;
  line-height: 1;
  letter-spacing: 0;
}
.tech__benefits-count-ico {
  padding: 18px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #202020;
  border-radius: 50%;
}
.tech__benefits-count-ico img {
  display: block;
  width: 100%;
  height: auto;
}
.tech__benefits-title {
  margin-bottom: 30px;
  display: block;
}
.tech__benefits-subtitle {
  display: block;
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.3);
}
.tech__benefits-img {
  display: block;
  width: 100%;
  max-width: 1340px;
  height: 450px;
  position: fixed;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0;
  transition: all 0.1s ease-out;
}
.tech__benefits-img img {
  display: block;
  width: 450px;
  height: 450px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(-160px);
}
.tech__benefits-img.show {
  opacity: 1;
}
.tech__benefits-img-mob {
  display: none;
}
/* Graph */
.tech__graph {
  margin: -50px -15px;
  display: flex;
  flex-wrap: wrap;
}
.tech__graph-item {
  margin: 50px 15px;
  width: calc((100% / 2) - 30px);
}
.tech__graph-img-wrapper {
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  will-change: transform;
  position: relative;
}
.tech__graph-img-wrapper.tech__graph-img-wrapper--hvr:hover .tech__graph-img.tech__graph-img--hvr {
  opacity: 1;
}
.tech__graph-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-out;
}
.tech__graph-img.tech__graph-img--hvr {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
}
.tech__graph-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.tech__graph-switch-title {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
.tech__graph-switch-title.active {
  color: #fff;
}
.tech__graph-switch-switch {
  margin: 0 10px;
  width: 42px;
  height: 14px;
  background: #333333;
  border-radius: 7px;
  cursor: pointer;
  position: relative;
}
.tech__graph-switch-switch::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: all 0.3s ease-out;
}
.tech__graph-switch-switch.switched::after {
  left: calc(100% - 12px);
}
.tech__graph-descr {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 1px;
  line-height: 1.5;
}
/* Choose */
.tech__choose {
  height: 806px;
  overflow: hidden;
  position: relative;
}
.tech__choose-img {
  display: block;
  height: 100%;
  width: auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.tech__choose-inner {
  height: 100%;
  position: relative;
  z-index: 2;
}
.tech__choose-samples {
  bottom: 80px!important;
}
.tech__choose-btn {
  display: none;
}
/* Media */
@media (max-width: 1260px) {
  /* Lottie */
  .tech__lottie-wrapper.tech__lottie-wrapper--head {
    padding-top: 0;
  }
  .tech__lottie {
    width: 100%!important;
    height: auto!important;
    position: initial;
    transform: translate(0);
  }
  .tech__lottie.tech__lottie--frame,
  .tech__lottie.tech__lottie--vega {
    display: none;
  }
  .tech__lottie.tech__lottie--frame.show,
  .tech__lottie.tech__lottie--vega.show {
    display: block;
  }
  .tech__lottie.tech__lottie--head::after {
    height: 105px;
  }
  /* Tech section */
  .tech__section {
    padding: 0;
    padding-bottom: 100px;
  }
  /* Hero */
  .tech__hero {
    padding-bottom: 0;
    height: 600px;
  }
  .tech__hero-back.tech__hero-back--mob {
    display: block;
  }
  /* Content */
  .tech__content-col {
    width: 100%;
  }
  .tech__section-title span {
    display: inline-block;
  }
  .tech__content-txt {
    margin-bottom: 0;
  }
  .tech__content-txt br {
    display: none;
  }
  .tech__content-btns {
    margin-top: 30px;
  }
  /* Grid */
  .tech__grid {
    padding-top: 0;
  }
  .tech__grid-list {
    margin: -30px -10px;
  }
  .tech__grid-item {
    margin: 30px 10px;
    border-radius: 0;
    overflow: initial;
  }
  .tech__grid-img {
    display: none;
    border-radius: 6px;
  }
  .tech__grid-img.tech__grid-img--hvr {
    display: block;
    opacity: 1;
    position: initial;
  }
  .tech__grid-title {
    margin-top: 20px;
    width: 100%;
    display: block;
    position: initial;
  }
  .tech__grid-title br {
    display: none;
  }
  .tech__grid-ico {
    top: 20px;
    left: 20px;
  }
  /* Benefits */
  .tech__benefits {
    margin-top: 0;
    padding-bottom: 0;
  }
  .tech__benefits-img {
    display: none;
  }
  .tech__benefits-list {
    width: 100%;
  }
  .tech__benefits-item {
    display: flex;
    align-items: center;
  }
  .tech__benefits-item:not(:last-child) {
    margin-bottom: 100px;
  }
  .tech__benefits-content {
    width: calc(50% - 20px);
  }
  .tech__benefits-img-mob {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 340px;
  }
  /* Graph */
  .tech__graph {
    margin: -25px -10px;
  }
  .tech__graph-item {
    margin: 25px 10px;
  }
  .tech__graph-item:nth-child(3) .tech__graph-img-wrapper,
  .tech__graph-item:nth-child(4) .tech__graph-img-wrapper {
    margin-bottom: 20px;
  }
  .tech__graph-item:nth-child(4) .tech__graph-img.tech__graph-img--hvr {
    display: none;
  }
  .tech__graph-descr {
    margin-bottom: 0;
    width: 100%;
    max-width: 345px;
  }
  .tech__graph-descr br {
    display: none;
  }
  .tech__graph-img-wrapper {
    margin-bottom: 55px;
    overflow: initial;
  }
  .tech__graph-img {
    border-radius: 6px;
  }
  .tech__graph-switch {
    bottom: -40px;
  }
  /* Choose */
  .tech__choose {
    height: auto;
  }
  .tech__choose-img {
    margin-top: -100px;
    margin-bottom: -100px;
    height: auto;
    width: 100%;
    position: initial;
    transform: translate(0);
  }
  .tech__choose-samples {
    bottom: 0!important;
  }
  .tech__choose-btn {
    margin-top: 50px;
    margin-left: 30px;
    display: block;
    width: calc(100% - 60px);
  }
}
@media (max-width: 767px) {
  /* Lottie */
  .tech__lottie.tech__lottie--head {
    width: auto!important;
    height: 346px!important;
    transform: translateX(0);
    position: relative;
    bottom: auto;
    right: auto;
    overflow: hidden;
  }
  .tech__lottie.tech__lottie--head svg {
    width: auto!important;
    height: 346px!important;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) !important;
  }
  .tech__lottie.tech__lottie--head::after {
    height: 60px;
  }
  /* Hero */
  .tech__hero {
    padding-top: 0;
    padding-bottom: 0;
  }
  .tech__hero-btns {
    margin-top: 30px;
  }
  /* Section */
  .tech__section {
    padding-bottom: 50px;
  }
  /* Content */
  .tech__content-txt {
    font-size: 20px;
  }
  .tech__content-btns-btn {
    padding: 10px 20px;
    border-radius: 21px;
  }
  /* Grid */
  .tech__grid-list {
    margin: 0;
  }
  .tech__grid-item {
    margin: 0;
    width: 100%;
  }
  .tech__grid-item:not(:last-child) {
    margin-bottom: 35px;
  }
  .tech__grid-title {
    margin-top: 15px;
  }
  /* Benefits */
  .tech__benefits-item {
    flex-direction: column;
  }
  .tech__benefits-item:not(:last-child) {
    margin-bottom: 50px;
  }
  .tech__benefits-content {
    width: 100%;
    order: 2;
  }
  .tech__benefits-img-mob {
    max-width: 100%;
    margin-bottom: 30px;
    order: 1;
  }
  .tech__benefits-count {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .tech__benefits-count-num {
    font-size: 35px;
  }
  .tech__benefits-count-ico {
    padding: 3px;
    width: 30px;
    height: 30px;
    background: none;
    border-radius: 0;
  }
  .tech__benefits-title {
    margin-bottom: 15px;
  }
  .tech__benefits-title br {
    display: none;
  }
  /* Graph */
  .tech__graph {
    margin: 0;
  }
  .tech__graph-item {
    margin: 0;
    width: 100%;
  }
  .tech__graph-item:not(:last-child) {
    margin-bottom: 35px;
  }
  .tech__graph-img-wrapper {
    margin-bottom: 25px!important;
  }
  .tech__graph-switch {
    display: none;
  }
  /* Choose */
  .tech__choose {
    height: 500px;
  }
  .tech__choose-img {
    width: auto;
    height: 458px;
    position: absolute;
    top: 115px;
    left: 50%;
    transform: translateX(-50%);
  }
  .tech__choose-btn {
    margin: 0;
    width: calc(100% - 40px);
    position: absolute;
    top: 405px;
    left: 20px;
    z-index: 1;
  }
}
@media (max-width: 530px) {
  /* Lottie */
  .tech__lottie.tech__lottie--lenses {
    margin: 0 auto;
    width: auto!important;
    height: 300px!important;
  }
  .tech__lottie.tech__lottie--lenses svg {
    width: auto!important;
  }
  .tech__lottie.tech__lottie--frame,
  .tech__lottie.tech__lottie--vega {
    margin: 0 auto;
    width: auto!important;
    height: 270px!important;
  }
  .tech__lottie.tech__lottie--frame svg,
  .tech__lottie.tech__lottie--vega svg {
    width: auto!important;
  }
}
.about__lottie-wrapper {
  width: 100%;
  max-width: 1620px;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: -1;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.about__curtain {
  width: 100%;
  height: 100vh;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.about__lottie {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about__section {
  position: relative;
  z-index: 4;
}
.about__section.about__section--hero {
  margin-bottom: 100vh;
}
.about__content {
  margin: auto 0;
}
.about__content.about__content--offset {
  padding-top: 60px;
}
.about__subtitle {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: none;
}
.about__subtitle.about__subtitle--big {
  font-weight: 300;
  font-size: 30px;
}
.about__row {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.about__btn {
  width: 272px;
}
.about__shamir {
  padding-right: 80px;
  position: relative;
}
.about__shamir-img {
  display: block;
  width: 159px;
  height: auto;
}
.about__shamir-footnote {
  width: 166px;
  height: auto;
  position: absolute;
  bottom: 48px;
  left: 130px;
}
.about__shamir-footnote.active .svg-elem-1 {
  stroke-dashoffset: 0;
}
.about__shamir-footnote.active .svg-elem-2 {
  stroke-dashoffset: 0;
  fill: #ffffff;
}
.about__shamir-footnote .svg-elem-1 {
  stroke-dashoffset: 199.3964386px;
  stroke-dasharray: 199.3964386px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}
.about__shamir-footnote .svg-elem-2 {
  stroke-dashoffset: 14.56637061px;
  stroke-dasharray: 14.56637061px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
}
.about__img {
  display: none;
}
/* Media */
@media (max-width: 1490px) {
  .about__shamir {
    padding-right: 90px;
  }
}
@media (max-width: 1370px) {
  .about__shamir {
    padding-right: 140px;
  }
}
@media (max-width: 1260px) {
  .about__lottie-wrapper {
    display: none;
  }
  .about__curtain {
    display: none;
  }
  .about__section {
    padding: 0;
    padding-bottom: 0;
    height: auto!important;
  }
  .about__section.about__section--hero {
    margin-bottom: 150px;
    padding-top: 0;
    padding-bottom: 0;
    height: 750px!important;
  }
  .about__section.about__section--small-offset {
    padding-bottom: 100px;
  }
  .about__section.about__section--no-offset {
    padding-bottom: 0;
  }
  .about__content.about__content--offset {
    padding-top: 0;
  }
  .about__img {
    margin: 90px auto;
    display: block;
    width: 100%;
    max-width: 582px;
  }
  .about__shamir {
    padding-right: 0;
  }
  .about__shamir-footnote {
    display: none;
  }
}
@media (max-width: 767px) {
  .about__section.about__section--hero {
    margin-bottom: 0;
    padding-top: 90px;
    padding-bottom: 20px;
    height: auto!important;
  }
  .about__img {
    margin: 70px 0;
  }
  .about__subtitle {
    letter-spacing: 0.85px;
  }
  .about__subtitle.about__subtitle--big {
    font-size: 20px;
    letter-spacing: 0.2px;
  }
  .about__subtitle br {
    display: none;
  }
  .about__row {
    flex-direction: column;
    align-items: stretch;
  }
  .about__col:nth-child(1) {
    order: 2;
  }
  .about__col:nth-child(2) {
    margin-bottom: 40px;
    order: 1;
  }
  .about__btn {
    width: 100%;
  }
  .about__shamir {
    padding: 22px 17px;
    width: 100%;
    border: 1px solid #202020;
    border-radius: 6px;
  }
  .about__shamir-img {
    margin: 0 auto;
    width: 100%;
    max-width: 240px;
    height: auto;
  }
  .about__lottie-stop {
    height: 275px;
  }
}
/* Why Vizam*/
.products {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}
.products.start .products__change-label {
  transition-delay: 0.15s;
}
.products.start .products__change-label--orion {
  left: -200px;
}
.products.start .products__change-label--vega {
  right: -200px;
}
.products.start .products__change {
  width: 50%;
  pointer-events: none;
  transition-delay: 0.15s;
}
.products.start .products__trigger {
  display: block;
}
.products.start .products__descr {
  display: none;
}
.products.start .products__img-wrapper {
  width: 50%;
}
.products__trigger {
  width: 600px;
  height: 540px;
  position: absolute;
  z-index: 10;
  display: none;
}
.products__trigger.products__trigger--orion {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(0, -50%);
}
.products__trigger.products__trigger--vega {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(0, -50%);
}
.products__change {
  width: calc(50% - (810px / 2));
  height: 100%;
  position: absolute;
  top: 0;
  transition: all 0.3s linear;
}
.products__change.products__change--orion {
  left: 0;
  background: #161616;
}
.products__change.products__change--vega {
  right: 0;
  background: #000;
}
.products__change.wide {
  width: calc(100% - (50% - (810px / 2)));
  pointer-events: none;
}
.products__change-label {
  display: block;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.35s linear;
  z-index: 4;
}
.products__change-label::after {
  content: "";
  display: block;
  width: 30px;
  height: 20px;
  position: absolute;
  top: 1px;
}
.products__change-label.products__change-label--orion {
  padding-left: 47px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.products__change-label.products__change-label--orion::after {
  background: url(../images/ico/long-arrow-left.svg) no-repeat center;
  background-size: contain;
  left: 0;
}
.products__change-label.products__change-label--orion.hide {
  left: -200px;
}
.products__change-label.products__change-label--vega {
  padding-right: 47px;
  right: 50%;
  transform: translate(50%, -50%);
}
.products__change-label.products__change-label--vega::after {
  background: url(../images/ico/long-arrow-right.svg) no-repeat center;
  background-size: contain;
  right: 0;
}
.products__change-label.products__change-label--vega.hide {
  right: -200px;
}
.products__container {
  width: 100%;
  height: 100%;
  position: absolute;
  pointer-events: none;
}
.products__img-wrapper {
  width: 0;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  transition: all 0.45s linear;
}
.products__img-wrapper img {
  margin: auto;
  display: block;
  width: 1350px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.products__img-wrapper[data-productImages="Orion"] {
  left: 0;
}
.products__img-wrapper[data-productImages="Vega"] {
  right: 0;
  transform: scale(-1, 1);
}
.products__img-wrapper.wide {
  width: 100%;
}
.products__img-wrapper.hide::after {
  opacity: 0;
}
.products__img-inner {
  width: 100vw;
  height: 100vh;
  position: relative;
}
.products__descr {
  width: 100%;
  max-width: 1300px;
  height: 730px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.products__descr-inner {
  width: -webkit-max-content;
  width: max-content;
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: visible;
}
.products__descr-inner.hide {
  opacity: 0;
  pointer-events: none;
}
.products__footnote {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  display: block;
  width: auto;
  height: 139px;
  pointer-events: none;
  transform: translateX(-26px);
  opacity: 0;
}
.products__footnote.active {
  opacity: 1;
}
.products__title {
  margin-bottom: 0;
  display: block;
  font-weight: 400;
  font-size: 42px;
  text-align: center;
  letter-spacing: 8.2px;
}
.products__samples {
  margin: 25px 0 35px!important;
  padding: 0;
  justify-content: center;
  border: none;
  border-radius: 0;
}
.products__samples .samples__item:first-child {
  margin-right: 0;
}
.products__explore {
  width: 260px;
}
.products__change-mob {
  display: none;
}
.products__start-label {
  display: none;
}
.products__start-back {
  display: none;
}
/* Rotate notice */
.products__rotate {
  opacity: 0;
  transition: all 0.3s ease-out;
  pointer-events: none;
}
/* Media */
@media (max-width: 1260px) {
  .products.start .products__start-back {
    display: none;
  }
  .products.start .products__img-wrapper[data-productImages="Orion"]::before {
    left: 0;
  }
  .products.start .products__change {
    pointer-events: visible;
  }
  .products.start .products__descr {
    display: block;
  }
  .products.start .products__descr-inner {
    width: -webkit-max-content;
    width: max-content;
  }
  .products.start .products__descr-inner[data-productdescr="Vega"] {
    margin-left: 100px;
  }
  .products.start .products__descr-inner[data-productdescr="Orion"] {
    margin-left: -100px;
  }
  .products.start .products__descr-inner .products__samples {
    pointer-events: none;
  }
  .products.start .products__descr-inner .products__explore {
    display: none;
  }
  .products.start .products__descr-inner .products__change-mob {
    display: none;
  }
  .products.start .products__start-label {
    display: block;
  }
  .products__start-back {
    display: block;
    width: 23px;
    height: 13px;
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  .products__change {
    width: calc(50% - (640px / 2));
  }
  .products__change.wide {
    width: calc(100% - (50% - (640px / 2)));
    pointer-events: visible;
  }
  .products__trigger,
  .products__trigger-main {
    display: none!important;
  }
  .products__change-label {
    display: none;
  }
  .products__img-wrapper img {
    width: 1070px;
  }
  .products__descr-inner {
    width: 100%;
    bottom: 60px;
  }
  .products__footnote {
    height: 160px;
    transform: translateX(-19px);
  }
  .products__title {
    margin-left: auto;
    margin-right: auto;
    width: -webkit-max-content;
    width: max-content;
    font-size: 20px;
    letter-spacing: 4.8px;
  }
  .products__samples {
    margin: 25px 0 25px!important;
  }
  .products__explore {
    margin: 0 auto;
    padding: 14px;
    width: 200px;
  }
  .products__change-mob {
    display: block;
    font-family: 'Kodchasan';
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 4.8px;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 166px;
  }
  .products__change-mob::after {
    content: "";
    display: block;
    width: 30px;
    height: 20px;
    transform: translate(22px, 23px);
  }
  .products__change-mob.products__change-mob--vega {
    right: calc(50% - (725px / 2));
  }
  .products__change-mob.products__change-mob--vega::after {
    background: url(../images/ico/long-arrow-right.svg) no-repeat center;
    background-size: contain;
  }
  .products__change-mob.products__change-mob--orion {
    left: calc(50% - (725px / 2));
  }
  .products__change-mob.products__change-mob--orion::after {
    background: url(../images/ico/long-arrow-left.svg) no-repeat center;
    background-size: contain;
  }
  .products__start-label {
    display: none;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    color: #333333;
    letter-spacing: 2.8px;
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
}
@media (max-width: 767px) {
  .products.start .products__descr-inner {
    bottom: 25%;
  }
  .products.start .products__descr-inner[data-productdescr="Orion"] {
    margin-left: -75px;
  }
  .products.start .products__descr-inner[data-productdescr="Vega"] {
    margin-left: 75px;
  }
  .products__change {
    width: calc(50% - (240px / 2));
  }
  .products__change.wide {
    width: calc(100% - (50% - (240px / 2)));
  }
  .products__start-back {
    top: 85px;
  }
  .products__img-wrapper img {
    top: 160px;
    width: 470px;
    transform: translate(-50%, 0);
  }
  .products__descr {
    height: 100vh;
  }
  .products__descr-inner {
    bottom: auto;
    top: 300px;
  }
  .products__title {
    font-size: 14px;
    letter-spacing: 2.8px;
  }
  .products__footnote {
    height: 110px;
    transform: translateX(-15px);
  }
  .products__samples {
    margin: 10px auto 10px!important;
  }
  .products__start-label {
    font-size: 14px;
    bottom: 80px;
  }
  .products__explore {
    margin-top: 20px;
  }
  .products__change-mob {
    font-size: 14px;
    letter-spacing: 2.8px;
    top: 128px;
  }
  .products__change-mob::after {
    width: 27px;
    height: 13px;
    transform: translate(12px, 12px);
  }
  .products__change-mob.products__change-mob--orion {
    left: calc(50% - (290px / 2));
  }
  .products__change-mob.products__change-mob--vega {
    right: calc(50% - (290px / 2));
  }
}
@media (max-width: 374px) {
  .products__start-back {
    top: 108px;
  }
  .products__img-wrapper img {
    top: 94px;
  }
  .products__descr-inner {
    top: 245px;
  }
}
@media (max-height: 440px) {
  .products.start .products__descr {
    height: 100vh;
  }
  .products.start .products__descr-inner {
    bottom: auto;
    top: 265px;
  }
  .products__rotate {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    opacity: 1;
    pointer-events: visible;
  }
  .products__rotate-txt {
    margin: 0 0 20px;
    width: 100%;
    max-width: 265px;
    text-align: center;
  }
  .products__rotate-ico {
    margin: 0 auto;
    display: block;
    width: 50px;
    height: auto;
  }
  .products__start-label {
    display: none!important;
  }
  .products__descr {
    display: none!important;
  }
  .products__img-wrapper img {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.game {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.game.game-beginning .game__img.game__img--back {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.game.game-beginning .game__img.game__img--pers {
  display: none;
}
.game.game-beginning .game__stat {
  display: none;
}
.game.game-finish .game__img.game__img--back {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.game.game-finish .game__img.game__img--pers {
  display: none;
}
.game__img-preload {
  display: none;
}
.game__inner {
  width: 100%;
  height: 100vh;
  position: fixed;
}
.game__img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.game__img.game__img--back {
  z-index: 1;
}
.game__img.game__img--pers {
  z-index: 2;
}
.game__img.game__img--hvr {
  z-index: 3;
  opacity: 0;
}
.game__img.game__img--hvr.show {
  opacity: 1;
  transition: all 0.3s ease-out;
}
.game__img.game__img--shape {
  z-index: 4;
  display: none;
  opacity: 0;
}
.game__img.game__img--shape.show {
  display: block;
}
.game__img.game__img--shape path {
  cursor: pointer;
  pointer-events: visible;
}
.game__stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 60px);
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 11;
  pointer-events: none;
}
.game__killed {
  display: flex;
  align-items: center;
}
.game__killed-ico {
  margin-right: 23px;
  width: 24px;
  height: auto;
}
.game__killed-num {
  font-family: 'Exo';
  font-weight: 700;
  font-size: 25px;
  color: #fff;
  letter-spacing: 0;
}
.game__bullets {
  display: flex;
}
.game__bullets-item {
  width: 6px;
  height: 18px;
  background: #fff;
  border-radius: 1px;
  transition: all 0.3s ease-out;
}
.game__bullets-item.empty {
  background: rgba(255, 255, 255, 0.3);
}
.game__bullets-item:not(:first-child) {
  margin-left: 7px;
}
/* Notice */
.game__notice {
  padding: 20px;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  transition: all 0.3s ease-out;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
.game__notice.hidden {
  opacity: 0;
  pointer-events: none;
}
.game__notice-inner {
  margin: auto;
  padding: 40px 35px;
  display: none;
  width: 100%;
  max-width: 670px;
  background: #000;
  border: 1px solid #202020;
  border-radius: 15px;
}
.game__notice-inner.game__notice-inner--default {
  height: 357px;
}
.game__notice-inner.game__notice-inner--transparent {
  padding: 0;
  background: none;
  border-color: rgba(0, 0, 0, 0);
  border-radius: 0;
}
.game__notice-inner.show {
  display: flex;
  flex-direction: column;
}
.game__notice-title {
  margin-bottom: 0;
  display: block;
  text-align: center;
}
.game__notice-txt {
  margin: 40px 0;
  text-align: center;
}
.game__notice-grid {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #202020;
  border-radius: 15px;
  background: #000;
}
.game__notice-timer {
  padding: 30px 40px;
  width: 50%;
}
.game__notice-timer:first-child {
  border-right: 1px solid #202020;
}
.game__notice-timer-num {
  margin-bottom: 30px;
  display: block;
  font-family: 'Kodchasan';
  font-weight: 300;
  font-size: 36px;
  letter-spacing: 0;
  position: relative;
}
.game__notice-timer-num::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  border-top: 1px solid #fff;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.game__notice-timer-num.game__notice-timer-num--result::after {
  border-color: #6BCD52;
}
.game__notice-timer-num span {
  font-size: 50px;
}
.game__notice-timer-info {
  padding: 30px 40px;
  width: 100%;
  border-top: 1px solid #202020;
  position: relative;
}
.game__notice-timer-info::after {
  content: "";
  display: block;
  width: 27px;
  height: 23px;
  background: url(../images/ico/tech/speedometer.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 36px;
  right: 40px;
}
.game__notice-btns {
  margin-top: 43px;
  display: flex;
}
.game__notice-btns .game__notice-btn {
  width: 50%;
}
.game__notice-btns .game__notice-btn:first-child {
  margin-right: 30px;
}
.game__notice-btn {
  margin-top: auto;
  width: 100%;
}
.game__notice-btn.disabled {
  background: #202020;
  border-color: #202020;
  pointer-events: none;
}
.game__notice-btn.disabled span {
  opacity: 0.3;
}
.game__notice-btn.game__notice-btn--products.disabled {
  background: #D11431;
  border-color: #D11431;
  pointer-events: visible;
}
.game__notice-btn.game__notice-btn--products.disabled span {
  opacity: 1;
}
.game__turn {
  display: none;
}
/* Detected */
.game__detected {
  padding: 13px 30px;
  display: block;
  font-family: 'Kodchasan';
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  background: #000;
  border: 1px solid #2D3124;
  border-radius: 10px;
  position: fixed;
  bottom: 20px;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
  transition: all 0.3s ease-out;
  pointer-events: none;
  opacity: 0;
}
.game__detected.show {
  opacity: 1;
}
/* Fullscreen mode notice */
.game__fullscreen {
  width: -webkit-max-content;
  width: max-content;
  position: fixed;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-out;
}
.game__fullscreen.show {
  opacity: 1;
}
.game__fullscreen-txt {
  margin: 0 0 20px;
  text-align: center;
}
.game__fullscreen-ico {
  margin: 0 auto;
  display: block;
  width: 120px;
  height: auto;
}
/* Curtain */
.game__curtain {
  width: 100%;
  height: 100vh;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  transform: translateY(0);
  pointer-events: none;
}
.game__curtain.to-top {
  opacity: 1;
  transform: translateY(-100%);
  transition: transform 0.8s linear;
}
/* For Tablets */
.game.tablets {
  /* Notices */
}
.game.tablets .game__inner {
  overflow: hidden;
}
.game.tablets .game__img {
  height: 550px;
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.game.tablets .game__img.game__img--hvr {
  display: none;
}
.game.tablets .game__notice-inner {
  padding: 0;
  max-width: 600px;
  height: auto!important;
  background: none;
  border: none;
  border-radius: 0;
}
.game.tablets .game__notice-btn {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-max-content;
  width: max-content;
}
.game.tablets .game__notice-btn {
  width: 50%;
}
.game.tablets .game__notice-btn:first-child {
  margin-right: 30px;
}
.game.tablets .game__turn {
  margin-top: 45px;
  display: block;
}
.game.tablets .game__turn-txt {
  margin: 0 0 20px;
  text-align: center;
}
.game.tablets .game__turn-ico {
  margin: 0 auto;
  display: block;
  width: 50px;
  height: auto;
}
/* For mobiles */
.game.mobile {
  /* Notices */
}
.game.mobile.game-finish .game__stat {
  display: none;
}
.game.mobile .game__img {
  height: 320px;
  width: auto;
}
.game.mobile .game__stat {
  margin-right: 16px;
  width: calc(100% - 30px);
  left: 15px;
  bottom: 15px;
}
.game.mobile .game__killed-ico {
  width: 18px;
}
.game.mobile .game__killed-num {
  font-size: 18px;
}
.game.mobile .game__bullets-item {
  width: 4px;
  height: 16px;
}
.game.mobile .game__bullets-item:not(:first-child) {
  margin-left: 6px;
}
.game.mobile .game__notice-txt {
  margin: 20px 0 25px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.84px;
  text-transform: none;
}
.game.mobile .game__notice-txt br {
  display: none;
}
.game.mobile .game__notice-grid {
  border: none;
  background: none;
  border-radius: 0;
}
.game.mobile .game__notice-timer {
  padding: 0;
  width: calc(50% - 15px);
  border: none!important;
}
.game.mobile .game__notice-timer:first-child {
  margin-right: 30px;
}
.game.mobile .game__notice-timer-num {
  margin-bottom: 20px;
  font-size: 20px;
}
.game.mobile .game__notice-timer-num::after {
  bottom: -7px;
}
.game.mobile .game__notice-timer-num span {
  font-size: 30px;
}
.game.mobile .game__notice-timer-info {
  padding: 20px 0 0;
  padding-right: 90px;
  border-top: 0;
}
.game.mobile .game__notice-timer-info::after {
  top: 26px;
  right: 0;
}
.game.mobile .game__notice-timer-info br {
  display: none;
}
.game.mobile .game__notice-btns {
  margin-top: 24px;
}
.game.mobile .game__turn {
  margin-top: 40px;
}
.game.portrait .game__notice-grid {
  flex-direction: column;
}
.game.portrait .game__notice-timer {
  margin-right: 0!important;
  width: 100%;
}
.game.portrait .game__notice-timer:first-child {
  margin-bottom: 15px;
}
.game.portrait .game__notice-btns {
  flex-direction: column;
}
.game.portrait .game__notice-btn {
  width: 100%;
}
.game.portrait .game__notice-btn:first-child {
  margin-right: 0;
  margin-bottom: 10px;
}
.thank-you {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}
.thank-you__back {
  display: block;
  width: auto;
  height: 422px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.thank-you__container {
  height: calc(100% - 84px) !important;
}
.thank-you__inner {
  margin: auto 0;
  position: relative;
  z-index: 2;
}
.thank-you__section-title {
  margin-bottom: 30px;
}
.thank-you__subtitle {
  text-align: center;
}
.thank-you__btn {
  margin: 0 auto;
  margin-top: 40px;
  width: 320px;
}
/* Media */
@media (max-width: 1260px) {
  .thank-you__container {
    height: calc(100% - 143px) !important;
  }
}
@media (max-width: 767px) {
  .thank-you__back {
    height: 211px;
    top: calc(50% - (223px / 2));
  }
  .thank-you__container {
    height: calc(100% - 223px) !important;
  }
  .thank-you__subtitle br {
    display: none;
  }
  .thank-you__section-title {
    margin-bottom: 25px;
  }
  .thank-you__btn {
    margin-top: 30px;
  }
}
/* E-commerce */
body.ecommerce {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.96px;
  text-transform: none;
  color: #444444;
  background: #F7F7F7;
  /* Header */
  /* Footer */
}
body.ecommerce .section-title {
  color: #000;
}
body.ecommerce .header::before {
  display: none;
}
body.ecommerce .header__row {
  background: none;
}
body.ecommerce .header__logo-img path {
  fill: #000;
}
body.ecommerce .footer__col:nth-child(2) {
  border-color: #F5F5F5;
}
body.ecommerce .footer__nav-link,
body.ecommerce .footer__txt {
  color: rgba(0, 0, 0, 0.3);
}
body.ecommerce .footer__nav-link:hover {
  color: rgba(0, 0, 0, 0.5);
}
body.ecommerce .footer__nav-link:active {
  color: rgba(0, 0, 0, 0.1);
}
body.ecommerce .footer__txt--design {
  color: rgba(0, 0, 0, 0.2);
}
body.ecommerce .footer__txt--design:hover {
  color: rgba(0, 0, 0, 0.3);
}
body.ecommerce .footer__txt--design:active {
  color: rgba(0, 0, 0, 0.1);
}
/* Media */
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
  body.ecommerce {
    /* Footer */
  }
  body.ecommerce .footer__col:nth-child(2) {
    border-color: #E5E5E5;
  }
}
/*# sourceMappingURL=./style.css.map */