@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: "Raleway";
  color: #FFF;
}

img {
  max-width: 100%;
}

*:focus {
  outline: none;
}

button,
input {
  outline: none;
  border: none;
}

ol,
ul {
  list-style: none;
}

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

h1, .title {
  font-weight: bold;
  font-size: 4rem;
  line-height: 112.5%;
  margin-bottom: 24px;
  color: #FFF;
  font-family: "Raleway";
}

h2, .subtitle {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 140%;
  margin-bottom: 24px;
}

p, span {
  color: #FFF;
}

a,
input,
button,
textarea {
  font: inherit;
  color: inherit;
}

button {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

svg {
  fill: #FFF;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.2s ease;
  flex-shrink: 0;
}

input[type=submit] {
  cursor: pointer;
}

a {
  text-decoration: none;
  transition: 0.2s;
}
a > * {
  transition: 0.2s;
}

.app__opened-block {
  display: block !important;
}
.app__opened-flex {
  display: flex !important;
}

::-moz-placeholder {
  font-family: "Raleway";
  color: #EFEFEF;
  font-weight: 500;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
}

:-ms-input-placeholder {
  font-family: "Raleway";
  color: #EFEFEF;
  font-weight: 500;
  -ms-transition: 0.4s ease;
  transition: 0.4s ease;
}

::-ms-input-placeholder {
  font-family: "Raleway";
  color: #EFEFEF;
  font-weight: 500;
  -ms-transition: 0.4s ease;
  transition: 0.4s ease;
}

::placeholder {
  font-family: "Raleway";
  color: #EFEFEF;
  font-weight: 500;
  transition: 0.4s ease;
}

.btn {
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 140%;
  color: #FFFFFF;
  background-color: #000000;
  border-radius: 30px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 54px;
  width: auto;
  max-width: 100%;
  transition: 0.2s;
  /*&.with-icon {
      svg {
          margin-right: 8px;
      }
      &:hover {
          svg {
              fill: #fff;
          }
      }
  }*/
  /*&.transparent {
      background-color: transparent;
      &:hover {
          color: #FFF;
          & + label {
              svg {
                  fill: #FFF;
              }
          }
      }
      & + label {
          svg {
          }
      }
  }*/
  /*&.filled {
      color: #fff;
      &:hover {
      }
  }

  &.bordered {
      background: #fff;
      &:hover {
      }
  }
  &:disabled {
      filter: grayscale(1);
  }*/
}
.btn.white {
  background-color: #FFFFFF;
  color: #000000;
}
.btn.white:hover {
  background-color: #262626;
  color: #FFFFFF;
}
.btn:hover {
  cursor: pointer;
  background-color: #FFFFFF;
  color: #000000;
}

.form-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.form-flex .form-field:not(:last-child) {
  margin-right: 16px;
}
.form-flex .btn-field {
  width: auto;
}

.form-field {
  width: 100%;
  margin-bottom: 16px;
  position: relative;
}
.form-field.with-label input, .form-field.with-label textarea, .form-field.with-label select {
  padding-top: 24px;
}
.form-field.with-label label {
  position: absolute;
  font-weight: normal;
  font-size: 0.75rem;
  line-height: 1rem;
  left: 8px;
  top: 8px;
  color: #787878;
}
.form-field.add-photo-input input {
  display: none;
}

input {
  width: 100%;
  transition: 0.2s;
  color: #000000;
  font-weight: 500;
}
input[type=text], input[type=email], input[type=number], input[type=password], input[type=time] {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1rem;
  background: #EFEFEF;
  padding: 7px;
  border: 1px solid #EFEFEF;
  min-width: 150px;
  max-width: 100%;
  transition: 0.2s ease;
}
input[type=text]:hover, input[type=email]:hover, input[type=number]:hover, input[type=password]:hover, input[type=time]:hover {
  border-color: #787878;
}
input[type=text]:focus, input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, input[type=time]:focus {
  border-color: #1A1A1A;
}
input:disabled {
  pointer-events: none;
  color: white;
  background: #e8e8e8;
}
input:disabled:hover {
  color: white;
  background: #e8e8e8;
  border-color: #e8e8e8;
}
input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number]:hover, input[type=number]:focus {
  -moz-appearance: number-input;
}
input.center-content {
  text-align: center;
}

textarea {
  width: 100%;
  transition: 0.2s;
  color: #000000;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1rem;
  background: #EFEFEF;
  padding: 8px;
  min-width: 150px;
  max-width: 100%;
  resize: none;
}
/*.default-checkbox {
    input[type="checkbox"] {
        display: none;

        & + label {
            font-weight: 500;
            font-size: 12px;
            padding-left: 40px;
            line-height: 24px;
            display: block;
            margin-top: 24px;
            transition: .2s ease;
            &:hover {
                opacity: 0.9;
                cursor: pointer;
                &:before {
                    border-color: #FFFFFF;
                }
            }
            &:before {
                content: ' ';
                position: absolute;
                width: 24px;
                height: 24px;
                left: 0;
                top: 0;
                background: #F8F8F9;
                border: 1px solid #E5E5F1;
                box-sizing: border-box;
                border-radius: 5px;
                transition: background-color .2s ease, border-color .2s ease;
            }
        }

        &:checked + label:before {
            background-color: #FFFFFF;
            border-color: #FFFFFF;
            background-image: url("../images/checkbox-checked.svg");
            background-position: center;
            background-repeat: no-repeat;
        }
    }
}


.default-select {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;

    &.gray {
        select {
            background: $light-gray-color;
        }
        &:hover {
            select {
                background-color: #FFF;
            }
        }
    }

    &:hover {
        & svg {
            fill: #FFFFFF;
        }
        select {
            border-color: #FFFFFF;
            color: #FFFFFF;
        }
    }

    &.opened {
        z-index: 3;

        .select-options {
            display: block;
        }

        select {
            background-color: #FFFFFF;
            border-color: #FFFFFF;
            color: #fff;
            & + svg {
                fill: #fff;
            }
        }

        .select-options {
            display: block;
        }
        &:hover {
            select {
                background-color: #FFFFFF;
            }
        }
    }

    select {
        width: 100%;
        padding: 12px 34px 12px 16px;
        border: 1px solid $light-gray-color;
        box-sizing: border-box;
        border-radius: 10px;
        color: $gray-color;
        background: #FFF;
        cursor: pointer;
        outline: none;
        font-weight: normal;
        font-size: 12px;
        line-height: 14px;
        transition: .2s ease;
    }

    svg {
        position: absolute;
        content: '';
        right: 16px;
        top: calc(50% - 2px);
        width: 8px;
        height: 5px;
        display: inline-block;
        pointer-events: none;
    }

    .select-options {
        display: none;
        position: absolute;
        left: 0;
        top: calc(100% + 8px);
        width: 280px;
        max-height: 300px;
        overflow-y: auto;
        background: #FFFFFF;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border-radius: 0 10px 10px 10px;
        padding: 16px 0;
        cursor: default;


        .optgroup {
            background: $light-gray-color;
            color: $gray-color;
            font-size: 14px;
            padding: 8px 16px;
            pointer-events: none;
            cursor: default;
        }


        div {
            width: 100%;
            padding: 8px 24px;
            box-sizing: border-box;
            background: #fff;
            position: relative;
            font-weight: 500;
            font-size: 12px;
            line-height: 16px;
            color: #8D8D94;

            &:not(.optgroup) {
                cursor: pointer;
            }

            &:not(:last-child):not(.optgroup) {
                &:before {
                    content: '';
                    width: calc(100% - 48px);
                    position: absolute;
                    bottom: 0;
                    left: 24px;
                    display: block;
                    border-bottom: 1px solid $light-gray-color;
                }
            }

            &.disabled {
                background: $light-gray-color;
            }

            &.selected {
                color: #FFFFFF;
                &:after {
                    position: absolute;
                    right: 24px;
                    top: calc(50% - 8px);
                    content: '';
                    display: block;
                    background-image: url('../images/option-selected.svg');
                    width: 16px;
                    height: 16px;
                }
            }

            &:not(.disabled):hover {
                color: #FFFFFF;
            }
        }
    }
}

.default-text-checkbox {
    &:hover {
        cursor: pointer;
        label {
            color: #FFFFFF;
            border-color: #FFFFFF;
        }
    }
    input {
        display: none;
        &:checked {
            &+label {
                background: #FFFFFF;
                color: #FFF;
                border-color: #FFFFFF;
            }
        }
    }
    label {
        background: #FFF;
        display: block;
        border: 1px solid $light-gray-color;
        border-radius: 10px;
        font-weight: normal;
        font-size: 12px;
        line-height: 14px;
        text-align: center;
        color: $gray-color;
        padding: 12px 16px;
        transition: .2s ease;
        margin: 0;
        &:hover {
            cursor: pointer;
        }
    }
}

.default-ul {

    li {
        font-size: 14px;
        line-height: 24px;
        color: $black-color;
        position: relative;
        padding-left: 24px;
        &:not(:last-child) {
            margin-bottom: 12px;
        }
        &:before {
            background-image: url('../images/li-dot.svg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            width: 16px;
            height: 16px;
            content: '';
            display: inline-block;
            margin-right: 16px;
            position: absolute;
            left: 0;
            top: 3px;
        }
    }
}*/
/*.content-text {

    &.admin-ckeditor {
        padding: 20px;
    }

    p {
        font-size: 14px;
        line-height: 24px;
        color: $gray-color;
        margin-bottom: 32px;
    }

	h2 {
		margin-bottom: 20px;
	}

	a {
		color: #FFFFFF;
		&:hover {
			text-decoration: underline;
		}
	}

    ul {
        margin: 32px 0;
        li {
            font-size: 14px;
            line-height: 24px;
            color: $gray-color;
            position: relative;
            padding-left: 32px;
            &:not(:last-child) {
                margin-bottom: 16px;
            }
            &:before {
                background-image: url('../images/li-dot.svg');
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
                width: 16px;
                height: 16px;
                content: '';
                display: inline-block;
                margin-right: 16px;
                position: absolute;
                left: 0;
                top: 5px;
            }
        }
    }

    strong {

    }
}*/
body {
  position: relative;
  background-color: #000000;
}

.background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1px);
  padding: 0 40px;
  justify-content: space-between;
}
.background-container .line {
  background-color: #1A1A1A;
}

#content {
  position: relative;
  width: 100%;
  padding-bottom: 2px;
  padding-top: 82px;
}

.cw {
  width: 100%;
  margin: 0 auto;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
}
.breadcrumbs__item:not(.active):after {
  content: "";
  background-image: url("../images/breadcrumbs-divider.svg");
  width: 8px;
  height: 8px;
  margin: 0 16px;
  display: block;
}
.breadcrumbs__item span {
  font-size: 0.75rem;
  line-height: 1.375rem;
}
.breadcrumbs__item a {
  display: inline-flex;
}
.breadcrumbs__item a:hover span {
  text-decoration: underline;
}
.breadcrumbs__item a span {
  color: #EFEFEF;
}

.with-slash {
  position: relative;
  padding-left: 32px;
}
.with-slash:after {
  content: " ";
  position: absolute;
  top: -2px;
  left: 0px;
  width: 24px;
  height: 24px;
  background: url("../images/slash.svg") no-repeat center;
  background-size: contain;
}
.with-slash.black-slash:after {
  background: url("../images/black-slash.svg") no-repeat center;
}

.default-text .title {
  font-weight: bold;
  font-size: 4rem;
  line-height: 112.5%;
  margin-bottom: 80px;
}
.default-text .subtitle {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 140%;
  margin-bottom: 24px;
}
.default-text .text-container {
  margin-bottom: 48px;
}
.default-text .text-container p {
  font-weight: normal;
  font-size: 1rem;
  line-height: 150%;
  margin-bottom: 32px;
}
.default-text .image-container {
  width: 80%;
  height: 0;
  padding-bottom: 60%;
  position: relative;
  margin-bottom: 56px;
}
.default-text .image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-container p {
  font-weight: normal;
  font-size: 1rem;
  line-height: 150%;
  margin-bottom: 32px;
}
.text-container ul {
  margin-bottom: 32px;
  margin-top: 40px;
  padding-right: 40px;
}
.text-container ul p {
  font-weight: bold;
  font-size: 1rem;
  line-height: 140%;
  margin-bottom: 24px;
}
.text-container ul li {
  font-weight: normal;
  font-size: 1rem;
  line-height: 150%;
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}
.text-container ul li:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: url("../images/list-style.svg") no-repeat center;
}

.select-language-block {
  display: none;
  position: absolute;
  z-index: 5;
  right: 40px;
  top: 82px;
  background-color: #262626;
  padding: 16px 0;
}
.select-language-block.opened {
  display: block;
}
.select-language-block p {
  display: none;
}
.select-language-block ul li:not(:last-child) {
  margin-bottom: 8px;
}
.select-language-block ul li a {
  padding: 10px 24px;
  display: flex;
  align-items: center;
  transition: 0.2s ease;
}
.select-language-block ul li a:hover {
  background-color: #EFEFEF;
}
.select-language-block ul li a:hover span {
  color: #000000;
}
.select-language-block ul li a img {
  width: 24px;
  height: 24px;
  margin-right: 16px;
}
.select-language-block ul li a span {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
}

.mobile-menu {
  display: none;
}
.mobile-menu.opened {
  display: block;
}

.mobile-menu-btn {
  display: none;
}

.mobile-only {
  display: none;
}

.mobile-tablet-only {
  display: none;
}

header {
  position: fixed;
  z-index: 1111;
  left: 0;
  top: 0;
  width: 100%;
}

.header {
  display: flex;
  width: 100%;
  background-color: #000000;
  align-items: center;
  padding: 16px 42px;
  position: relative;
  z-index: 1;
}
.header__logo {
  margin-right: auto;
  height: 50px;
}
.header__logo:hover img {
  opacity: 0.8;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: 0.2s ease;
}
.header__nav ul {
  display: flex;
  align-items: center;
}
.header__nav ul:hover li a {
  opacity: 0.5;
}
.header__nav ul li a {
  font-weight: 400;
  font-size: 1rem;
  line-height: 150%;
  text-transform: uppercase;
  padding: 16px;
}
.header__nav ul li a:hover {
  opacity: 1;
}
.header__lang {
  margin-left: 32px;
  display: flex;
  align-items: center;
  transition: 0.2s ease;
}
.header__lang:hover {
  opacity: 0.8;
  cursor: pointer;
}
.header__lang span {
  font-weight: 400;
  font-size: 1rem;
  line-height: 150%;
  text-transform: uppercase;
  margin-right: 12px;
}
.header__lang img {
  margin-top: -2px;
}

.main-slider {
  position: relative;
  margin-bottom: 184px;
}
.main-slider__item {
  height: 600px;
}
.main-slider__item-container {
  display: flex;
  height: 100%;
}
.main-slider__image {
  width: calc((((100% - 80px) / 6) * 4) + 40px);
  height: 100%;
  flex-shrink: 0;
  position: relative;
}
.main-slider__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
}
.main-slider__info {
  width: 20%;
  min-width: 350px;
  padding-top: 285px;
}
.main-slider__title-block {
  margin-bottom: 40px;
  margin-top: 96px;
  position: absolute;
  right: -7%;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.main-slider__title {
  font-weight: bold;
  font-size: 4rem;
  line-height: 112.5%;
  background-color: #FFF;
  color: #000000;
  padding: 8px 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.main-slider__subtitle {
  font-weight: normal;
  font-size: 1.5rem;
  line-height: 140%;
  background-color: #FFF;
  color: #000000;
  padding: 8px 16px;
  position: absolute;
  left: 82%;
  top: 99%;
  max-width: 450px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.main-slider__text-block {
  padding-left: 24px;
  position: relative;
  margin-bottom: 48px;
  padding-right: 32px;
}
.main-slider__text {
  font-weight: 300;
  font-size: 1rem;
  line-height: 150%;
  color: #EFEFEF;
}
.main-slider__link {
  font-weight: normal;
  font-size: 1rem;
  line-height: 19px;
  text-transform: uppercase;
  display: block;
  width: 200px;
  text-align: right;
  position: relative;
  transition: 0.2s ease;
  padding: 8px 0;
}
.main-slider__link:after {
  content: " ";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FFF;
  transition: 0.2s ease;
}
.main-slider__link:hover:after {
  left: 100%;
  width: 0px;
}
.main-slider__nav {
  position: absolute;
  left: calc(((100% - 80px) / 6) * 4);
  bottom: -1px;
  display: flex;
  align-items: center;
}
.main-slider__nav > div {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}
.main-slider__nav > div:hover {
  cursor: pointer;
  background-color: #FFF;
}
.main-slider__nav > div:hover svg {
  fill: #000000;
}
.main-slider__nav > div svg {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 8px;
  height: 12px;
  transition: 0.2s ease;
}
.main-slider__prev {
  background-color: #000000;
}
.main-slider__next {
  background-color: #262626;
}
.main-slider__navigation {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 42px;
  top: 0;
  height: 100%;
  justify-content: center;
}
.main-slider__navigation-item.tns-nav-active .spinner {
  animation: rota 8s linear infinite;
}
.main-slider__navigation-item.tns-nav-active .filler {
  animation: fill 8s steps(1, end) infinite;
}
.main-slider__navigation-item.tns-nav-active .mask {
  animation: mask 8s steps(1, end) infinite;
}
.main-slider__navigation-item:not(:last-child) {
  margin-bottom: 8px;
}
.main-slider__navigation-item .wrapper {
  width: 32px;
  height: 32px;
  position: relative;
  background: #000000;
}
.main-slider__navigation-item .wrapper:after {
  content: " ";
  position: absolute;
  z-index: 300;
  left: calc(50% - 3px);
  top: calc(50% - 3px);
  width: 6px;
  height: 6px;
  background-color: #FFF;
  border-radius: 50%;
}
.main-slider__navigation-item .pie {
  width: 50%;
  height: 100%;
  position: absolute;
  background: #000000;
  border: 2px solid #FFF;
}
.main-slider__navigation-item .spinner {
  border-radius: 16px 0 0 16px;
  z-index: 200;
  border-right: none;
  transform-origin: right center;
}
.main-slider__navigation-item .filler {
  border-radius: 0 16px 16px 0;
  z-index: 100;
  border-left: none;
  left: 50%;
  opacity: 0;
}
.main-slider__navigation-item .mask {
  width: calc(50% + 1px);
  height: 100%;
  position: absolute;
  left: -1px;
  z-index: 300;
  opacity: 1;
  background: inherit;
}
.main-slider .tns-nav {
  display: none;
}

.main-products {
  padding: 0 40px;
  margin-bottom: 120px;
  overflow-x: hidden;
  position: relative;
}
.main-products__header {
  display: flex;
  margin-bottom: 40px;
  justify-content: space-between;
  align-items: flex-end;
}
.main-products__title {
  font-weight: bold;
  font-size: 4rem;
  line-height: 112.5%;
  margin-bottom: 24px;
}
.main-products__text {
  font-weight: normal;
  font-size: 1rem;
  line-height: 150%;
  max-width: 570px;
}
.main-products__slider-nav {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.main-products__nav-item {
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-products__nav-item svg {
  transition: 0.2s ease;
}
.main-products__nav-item[aria-disabled=true] {
  opacity: 0;
}
.main-products__nav-item:hover {
  cursor: pointer;
}
.main-products__nav-item:hover svg {
  fill: #787878;
}
.main-products__prev-slide {
  padding: 20px 28px 20px 26px;
}
.main-products__prev-slide svg {
  width: 24px;
  height: 40px;
  fill: #F5F5F5;
}
.main-products__next-slide {
  padding: 20px 26px 20px 28px;
}
.main-products__next-slide svg {
  width: 24px;
  height: 40px;
  fill: #F5F5F5;
}
.main-products__container {
  width: calc(100% + 16px);
}
.main-products__container .tns-ovh {
  overflow: unset;
}
.main-products__container .tns-nav {
  z-index: 5;
  width: 100vw;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.main-products__container .tns-nav button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid transparent;
  position: relative;
}
.main-products__container .tns-nav button.tns-nav-active {
  border-color: #787878;
}
.main-products__container .tns-nav button:not(:last-child) {
  margin-right: 8px;
}
.main-products__container .tns-nav button:after {
  content: " ";
  position: absolute;
  left: calc(50% - 3px);
  top: calc(50% - 3px);
  width: 6px;
  height: 6px;
  background-color: #787878;
  border-radius: 50%;
}
.product-card {
  padding-right: 16px;
  display: block;
}
.product-card:hover .product-card__image:before {
  transform: translateY(0);
}
.product-card:hover .product-card__image:after {
  opacity: 1;
}
.product-card__image {
  background-color: #262626;
  padding: 10% 11% 115%;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
}
.product-card__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 11% 12%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-card__image:before {
  content: " ";
  position: absolute;
  left: 6%;
  bottom: 0;
  height: calc(100% - 120px);
  width: 1px;
  background-color: #414141;
  transform: translateY(100%);
  transition: 0.4s ease;
}
.product-card__image:after {
  content: "\421\43C\43E\442\440\435\442\44C";
  font-weight: bold;
  font-size: 1rem;
  line-height: 1px;
  text-transform: uppercase;
  color: #414141;
  position: absolute;
  left: 6%;
  bottom: calc(100% - 110px);
  transform-origin: left bottom 0;
  transform: rotate(-90deg);
  opacity: 0;
  transition: 0.2s ease;
  transition-delay: 0.2s;
}
.product-card__name {
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 140%;
  color: #F5F5F5;
}
.product-card__model {
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 140%;
  margin-bottom: 8px;
  color: #F5F5F5;
}
.product-card__color-count {
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 140%;
  color: #F5F5F5;
}

.feedback {
  margin-bottom: 124px;
}
.feedback__container {
  background: url("../images/feedback-backstage.png") no-repeat center;
  background-size: cover;
  overflow: hidden;
  position: relative;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.feedback__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.feedback__content-text {
  font-weight: bold;
  font-size: 400px;
  line-height: 402px;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}
.feedback__form-container {
  display: flex;
  align-items: flex-start;
  z-index: 3;
  width: 80%;
  max-width: 1024px;
}
.feedback__image {
  width: 38.5%;
}
.feedback__image img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
.feedback__form-block {
  width: 61.5%;
  background-color: #FFF;
  padding: 40px 60px 120px;
  min-height: 500px;
}
.feedback__title {
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 140%;
  margin-bottom: 16px;
  color: #000000;
}
.feedback__text {
  max-width: 470px;
}
.feedback__text p {
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 140%;
  color: #000000;
}
.feedback__form {
  margin-top: 40px;
}
.feedback__form .btn:hover {
  background-color: #EFEFEF;
}

.story {
  width: 100%;
  margin-bottom: 180px;
}
.story__container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 50px;
}
.story__backstage {
  position: absolute;
  width: 600px;
  height: 600px;
  left: 0;
  bottom: 0;
  border: 5px solid #262626;
  background-color: transparent;
  z-index: 2;
}
.story__content {
  padding: 0 40px;
}
.story__title {
  font-weight: bold;
  font-size: 4rem;
  line-height: 112.5%;
  max-width: 1000px;
  margin-bottom: 32px;
  position: relative;
  z-index: 3;
}
.story__content-block {
  display: flex;
  padding-left: 100px;
  position: relative;
  z-index: 3;
}
.story__images {
  display: flex;
  margin-right: 24px;
  width: 54%;
}
.story__images img {
  max-width: 290px;
  max-height: 392px;
  width: calc(50% - 12px);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top center;
     object-position: top center;
}
.story__images img:nth-child(2) {
  margin-top: 32px;
}
.story__images img:not(:last-child) {
  margin-right: 24px;
}
.story__text {
  width: 46%;
  max-width: 490px;
  margin-top: 90px;
}

.about {
  margin-bottom: 230px;
}
.about__container {
  position: relative;
  min-height: 600px;
  width: calc(100% - 40px);
  max-width: 1600px;
}
.about__backstage {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 87%;
  background-color: #262626;
  display: flex;
  align-items: center;
  padding: 0 40px;
}
.about__backstage span {
  font-weight: bold;
  font-size: 16vw;
  line-height: 338px;
  color: #313131;
}
.about__content {
  position: relative;
  align-items: center;
  padding: 48px 40px;
}
.about__title {
  font-weight: bold;
  font-size: 4rem;
  line-height: 112.5%;
  margin-bottom: 40px;
}
.about__text {
  max-width: 560px;
  margin-bottom: 40px;
}
.about__link {
  margin-left: 32px;
}
.about__image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 64px 0;
  max-width: 600px;
}
.about__image img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__container {
  width: 100%;
  position: relative;
  padding: 56px 40px 16px;
  height: 100%;
  min-height: 15vw;
}
.footer__backstage {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
}
.footer__backstage img {
  width: 100%;
  height: 100%;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
.footer__block:nth-child(1) {
  width: 30%;
  flex-shrink: 3;
}
.footer__block:nth-child(2) {
  flex-shrink: 2;
  margin: 0 32px;
}
.footer__block:nth-child(3) {
  flex-shrink: 0;
}
.footer__logo-container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer__logo {
  margin-bottom: 8px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__logo:hover {
  opacity: 0.8;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: 0.2s ease;
}
.footer__copyright {
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  width: 100px;
}
.footer__social {
  display: flex;
  margin-bottom: 24px;
}
.footer__social li:not(:last-child) {
  margin-right: 8px;
}
.footer__social li a {
  display: block;
  width: 32px;
  height: 32px;
  transition: 0.2s ease;
}
.footer__social li a:hover svg {
  transform: scale(1.1);
}
.footer__social li a svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  fill: #FFF;
}
.footer__social li a span {
  display: none;
}
.footer__email {
  font-weight: normal;
  font-size: 1.5rem;
  line-height: 1.75rem;
}
.footer__email:hover {
  text-decoration: underline;
}
.footer__nav-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer__nav {
  display: flex;
  margin-bottom: 32px;
}
.footer__nav li {
  flex-shrink: 0;
}
.footer__nav li:not(:last-child) {
  margin-right: 32px;
}
.footer__nav li a {
  font-weight: normal;
  font-size: 1rem;
  line-height: 150%;
  transition: 0.2s ease;
}
.footer__nav li a:hover {
  opacity: 0.8;
}
.footer__number {
  font-weight: normal;
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-bottom: 12px;
}
.footer__number:hover {
  text-decoration: underline;
}
.footer__address {
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  line-height: 150%;
}

.product {
  margin-bottom: 180px;
}
.product__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 40px;
}
.product__slider {
  width: 50%;
}
.product__slider-container {
  width: 100%;
  position: relative;
}
.product__slider-main {
  background-color: #262626;
  height: calc(((100vw - 80px) - 24px) / 2);
  max-height: 600px;
  width: 100%;
}
.product__slider-main-image {
  padding: 48px;
  height: 100%;
}
.product__slider-main-image img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.product__slider-nav-container {
  background-color: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__slider-nav-block {
  width: 100%;
  max-width: 576px;
}
.product__slider-nav-item {
  width: 96px;
}
.product__slider-nav-item.tns-nav-active .product__slider-nav-image {
  background-color: #787878;
}
.product__slider-nav-image {
  width: 80px;
  height: 80px;
  padding: 8px;
  transition: 0.2s ease;
}
.product__slider-nav-image:hover {
  background-color: #787878;
}
.product__slider-nav-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.product__slider-controls-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  height: 0;
  top: calc(50% - 40px);
  left: 0;
  width: 100%;
}
.product__slider-controls-container > div {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1A1A1A;
  transition: 0.2s ease;
}
.product__slider-controls-container > div:hover {
  cursor: pointer;
  background-color: #000000;
}
.product__slider-fullview {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 16px;
  right: 16px;
}
.product__slider-fullview:hover svg {
  fill: #000000;
}
.product__slider-fullview svg {
  fill: #1A1A1A;
  transition: 0.2s ease;
}
.product__info {
  width: calc(50% - 24px);
  padding-top: 32px;
}
.product__title {
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 140%;
  margin-bottom: 40px;
}
.product__text {
  max-width: 460px;
  margin-bottom: 48px;
}
.product__text p:last-child {
  margin-bottom: 0;
}
.product__btn {
  font-size: 14px;
  font-weight: normal;
  margin-left: 32px;
}

.specifications {
  margin-bottom: 180px;
}
.specifications__container {
  display: flex;
  align-items: flex-start;
}
.specifications__main {
  background-color: #262626;
  max-width: 1100px;
  margin-right: 24px;
  width: 58%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding: 40px 56px 120px 40px;
  position: relative;
}
.specifications__title {
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 140%;
  margin-bottom: 32px;
}
.specifications__content {
  display: flex;
}
.specifications__image {
  width: 286px;
  height: 300px;
  margin-right: 24px;
}
.specifications__image img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
.specifications__attribute {
  margin-bottom: 30px;
  display: flex;
}
.specifications__attribute-name {
  color: #787878;
  font-weight: normal;
  font-size: 1rem;
  line-height: 150%;
  display: block;
  width: 300px;
  margin-right: 8px;
}
.specifications__attribute-value {
  display: block;
  font-weight: normal;
  font-size: 1rem;
  line-height: 150%;
  width: 100px;
}
.specifications__btn {
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 140%;
  text-transform: uppercase;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #1A1A1A;
  padding: 14px 48px;
  transition: 0.2s ease;
}
.specifications__btn:hover {
  background-color: #FFFFFF;
  color: #000000;
}
.specifications__other {
  width: 42%;
  padding-right: 40px;
}
.specifications__other-title {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 140%;
  margin-bottom: 24px;
}
.specifications__other-container {
  max-width: 390px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 16px;
}
.specifications__other-item:hover .specifications__other-image {
  background-color: #787878;
}
.specifications__other-image {
  background-color: #262626;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  margin-bottom: 8px;
  transition: 0.2s ease;
}
.specifications__other-image img {
  padding: 16px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: 0.2s ease;
}
.specifications__other-name {
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 140%;
}

.description {
  margin-bottom: 180px;
}
.description__container {
  max-width: 848px;
  margin: 0 auto;
  padding: 0 24px;
}
.description__title {
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 140%;
  margin-bottom: 40px;
}
.post {
  width: 100%;
}
.post__main-image {
  width: 100%;
  height: 0;
  padding-bottom: 30%;
  position: relative;
  z-index: 2;
}
.post__main-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.post__container {
  position: relative;
}
.post__backstage {
  background-color: #262626;
  position: absolute;
  width: 100%;
  height: 60%;
  top: 0;
  left: 0;
  z-index: 1;
}
.post .default-text {
  background-color: #000000;
  position: relative;
  padding: 72px 5% 100px;
  width: 77%;
  max-width: 1200px;
  margin: -15% auto 200px;
  z-index: 3;
}

.home-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  position: relative;
  z-index: 1;
}
.home-screen__content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.home-screen__logo {
  margin-bottom: 42px;
  width: 31%;
}
.home-screen__logo img {
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}

.select-language {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.select-language__title {
  font-weight: normal;
  font-size: 1rem;
  line-height: 150%;
  margin-bottom: 16px;
  color: #787878;
}
.select-language__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: 0.2s ease;
}
.select-language__list:hover a {
  opacity: 0.7;
}
.select-language__list li:not(:last-child) {
  border-right: 1px solid #FFF;
}
.select-language__list li a {
  display: flex;
  transition: 0.2s ease;
  width: 100%;
  height: 100%;
  padding: 10px 24px;
  overflow: hidden;
}
.select-language__list li a:hover {
  opacity: 1;
}
.select-language__list li a img {
  margin-right: 8px;
}
.select-language__list li a span {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.75rem;
  text-transform: uppercase;
}

@keyframes rota {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fill {
  0% {
    opacity: 0;
  }
  50%, 100% {
    opacity: 1;
  }
}
@keyframes mask {
  0% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
.modal-window-layout {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  left: 0;
  top: 0;
  overflow: auto;
  padding: 30px;
  box-sizing: border-box;
}

body.modals-opened {
  overflow: hidden;
}
body.modals-opened .modal-window-layout {
  visibility: visible;
  display: flex;
  opacity: 0;
  animation: 0.3s 0s show linear both;
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-window {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  max-width: 820px;
  width: 90%;
  margin: auto;
  box-sizing: border-box;
  text-align: left;
  z-index: 11111;
  display: none;
  position: relative;
  overflow: auto;
  max-height: 100%;
}
.modal-window.opened {
  visibility: visible;
  display: flex;
  opacity: 0;
  animation: 0.3s 0s show linear both;
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-window[data-modal-id=feedback], .modal-window[data-modal-id=cart-added] {
  max-width: 600px;
}
.modal-window[data-modal-id=product-modal] {
  max-width: 1040px;
}
.modal-window[data-modal-id=auth] {
  height: 500px;
}
.modal-window__title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 32px;
}
.modal-window__description {
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 24px;
}
.modal-window .form-field.center {
  text-align: center;
}
.modal-window input[type=text] {
  border-radius: 0;
  background: #373737;
  padding: 16px;
  font-size: 16px;
  color: #fff;
  text-align: center;
}
.modal-window-content {
  padding: 32px;
  background: #262626;
  width: 100%;
}
.modal-window-content > * {
  width: 100%;
}
.modal-window .close-modal-btn {
  position: absolute;
  right: 32px;
  top: 36px;
  width: 36px;
  height: 36px;
  background-image: url("../images/close.svg");
  background-size: 36px;
  -webkit-filter: brightness(0) invert(0.6);
          filter: brightness(0) invert(0.6);
  transition: 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.modal-window .close-modal-btn:hover {
  opacity: 0.8;
}
.modal-window .close-modal-btn:hover {
  -webkit-filter: invert(1);
          filter: invert(1);
}

@media (max-width: 1279px) {
  .modal-window-layout .modal-window {
    width: 100%;
  }
}
.alert-container {
  padding: 100px 0;
  text-align: center;
}
.alert-container .alert-text {
  margin-bottom: 40px;
  font-size: 20px;
}
.alert-container .alert-text a {
  color: #AF86F2;
}
.alert-container .alert-text a:hover {
  text-decoration: underline;
}
.alert-container .alert-title {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #fff;
}
.alert-container img {
  max-width: 80px;
  margin-bottom: 20px;
}

@media screen and (max-width: 620px) {
  .alert-container {
    padding: 80px 20px;
    text-align: center;
  }
  .alert-container .alert-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .alert-container .alert-text {
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 26px;
  }
  .alert-container img {
    max-width: 60px;
    margin-bottom: 20px;
  }
}
.tns-outer {
  padding: 0 !important;
}

.tns-outer [hidden] {
  display: none !important;
}

.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  transition: all 0s;
}

.tns-slider > .tns-item {
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}

.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}

.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}

.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}

.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}

.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  transition: transform 0s, opacity 0s;
}

.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}

.tns-gallery > .tns-moving {
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  transition: opacity 0.6s;
  opacity: 0.6;
}

.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}

.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}

.tns-t-ct {
  width: 2333.3333333%;
  width: calc(100% * 70 / 3);
  position: absolute;
  right: 0;
}

.tns-t-ct:after {
  content: "";
  display: table;
  clear: both;
}

.tns-t-ct > div {
  width: 1.4285714%;
  width: calc(100% / 70);
  height: 10px;
  float: left;
}
@media (min-width: 1921px) {
  html {
    font-size: 24px;
  }
}
@media (max-width: 1280px) {
  #content {
    padding-top: 64px;
  }

  html {
    font-size: 12px;
  }

  .header {
    padding: 12px 24px;
  }
  .header__logo {
    height: 40px;
  }

  .main-slider {
    margin-bottom: 120px;
  }
  .main-slider__item {
    height: 500px;
  }
  .main-slider__image {
    width: calc((((100% - 48px) / 6) * 4) + 24px);
  }
  .main-slider__navigation {
    right: 25px;
  }
  .main-slider__nav {
    left: calc((((100% - 48px) / 6) * 4) - 16px);
  }
  .main-slider__info {
    padding-top: 250px;
    min-width: 320px;
  }
  .main-slider__link {
    width: 150px;
  }
  .main-slider__text-block {
    padding-right: 24px;
  }

  .with-slash {
    padding-left: 22px;
  }
  .with-slash:after {
    width: 16px;
    height: 16px;
  }

  .main-products {
    padding: 0 24px;
    margin-bottom: 100px;
  }
  .main-products__text {
    max-width: 450px;
  }
  .main-products__container .tns-nav {
    margin-top: 36px;
  }

  .feedback {
    margin-bottom: 100px;
  }
  .feedback__form-container {
    max-width: 800px;
  }
  .feedback__form-block {
    min-height: 350px;
    padding: 32px 40px 72px;
  }

  .story {
    margin-bottom: 120px;
  }
  .story__title {
    max-width: 700px;
  }
  .story__content {
    padding: 0 24px;
  }
  .story__backstage {
    left: 24px;
    width: 50%;
    height: 0;
    padding-bottom: 50%;
  }
  .story__content-block {
    padding-left: 40px;
  }
  .story__text {
    max-width: 350px;
  }
  .story__text p {
    margin-bottom: 24px;
  }

  .about {
    margin-bottom: 180px;
  }
  .about__container {
    min-height: 450px;
    max-width: 1050px;
    width: calc(100% - 24px);
  }
  .about__backstage {
    padding-left: 24px;
  }
  .about__content {
    padding: 32px 24px;
  }
  .about__text {
    max-width: 400px;
  }
  .about__text p {
    margin-bottom: 24px;
  }
  .about__image {
    padding: 32px 0;
  }

  .product__container {
    padding: 0 24px;
  }

  .specifications__image {
    width: 220px;
    height: 270px;
  }
  .specifications__main {
    padding: 40px 32px 100px 24px;
  }
  .specifications__other {
    padding-right: 24px;
  }
  .specifications__attribute-name {
    width: 220px;
  }

  .post .default-text {
    width: 80%;
  }
  .post .text-container p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .text-container p {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .text-container ul p {
    font-size: 16px;
  }
  .text-container ul li {
    font-size: 14px;
    padding-left: 32px;
  }
  .text-container ul li:before {
    width: 16px;
    height: 16px;
  }

  .footer__container {
    padding: 32px 24px 16px;
  }
  .footer__logo {
    height: 40px;
  }

  .background-container {
    padding: 0 24px;
  }

  .select-language-block {
    top: 64px;
    right: 24px;
  }
}
@media (max-width: 1024px) {
  .product__slider-controls-container > div {
    width: 64px;
    height: 64px;
  }
  .product__slider-controls-container > div svg {
    width: 18px;
  }

  .specifications__image {
    display: none;
  }
  .specifications__main {
    justify-content: flex-start;
    width: 55%;
    margin-right: 16px;
  }
  .specifications__other {
    width: 45%;
  }
  .specifications__other-title {
    margin-bottom: 16px;
  }
  .specifications__other-container {
    grid-column-gap: 16px;
  }
  .post .default-text {
    width: 90%;
    margin-top: -25%;
  }

  .default-text .title {
    margin-bottom: 56px;
  }
  .default-text .text-container {
    margin-bottom: 36px;
  }
  .default-text .text-container p {
    font-size: 1rem;
    margin-bottom: 16px;
  }
  .default-text .image-container {
    margin-bottom: 36px;
  }

  .text-container p {
    font-size: 1rem;
    margin-bottom: 16px;
  }
  .text-container ul {
    margin-top: 32px;
    margin-bottom: 24px;
  }
  .text-container ul li {
    font-size: 1rem;
    padding-left: 24px;
  }
  .text-container ul li:before {
    width: 12px;
    height: 12px;
    top: 2px;
  }

  .home-screen__logo {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .main-slider {
    margin-bottom: 80px;
  }
  .main-slider__title-block {
    right: 20%;
    margin-top: 32px;
  }
  .main-slider__title {
    background-color: #000000;
    color: #FFF;
  }
  .main-slider__subtitle {
    max-width: 270px;
    background-color: #000000;
    color: #FFF;
  }
  .main-slider__info {
    position: absolute;
    right: 24px;
    padding-top: 180px;
  }
  .main-slider__item {
    height: 400px;
  }
  .main-slider__text-block {
    background-color: #000000;
    padding: 16px 8px;
    margin-bottom: 24px;
  }
  .main-slider__image {
    width: 100%;
  }
  .main-slider__link {
    margin-left: auto;
    background-color: #000000;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 8px 16px;
    text-align: center;
  }
  .main-slider__link:after {
    display: none;
  }
  .main-slider__nav {
    left: unset;
    right: 0;
  }
  .main-slider__navigation {
    top: unset;
    left: 0;
    height: unset;
    width: 100%;
    bottom: -45px;
    flex-direction: row;
  }
  .main-slider__navigation-item:not(:last-child) {
    margin-bottom: 0;
    margin-right: 8px;
  }

  .feedback__form-container {
    max-width: 850px;
    width: 100%;
    padding: 0 24px;
  }
  .feedback__form .btn {
    padding: 14px 32px;
  }

  .story__container {
    padding-bottom: 0;
  }
  .story__content-block {
    padding-left: 24px;
  }
  .story__backstage {
    display: none;
  }
  .story__text {
    margin-top: 48px;
  }
  .story__images img {
    width: 100%;
    max-width: 400px;
    max-height: 450px;
    margin-right: 0 !important;
  }
  .story__images img:nth-child(2) {
    display: none;
  }

  .about {
    margin-bottom: 120px;
  }
  .about__text {
    width: 42%;
  }
  .about__image {
    width: 55%;
  }
  .about__image img {
    -o-object-position: right center;
       object-position: right center;
  }

  .product__title {
    margin-bottom: 24px;
  }
  .product__text {
    margin-bottom: 24px;
  }
  .product__info {
    padding-top: 0;
  }
  .product__slider-controls-container > div {
    width: 40px;
    height: 40px;
  }
  .product__slider-controls-container > div svg {
    width: 12px;
  }

  .footer__container {
    padding-bottom: 12px;
  }
  .footer__logo {
    height: 32px;
  }
  .footer__social {
    margin-bottom: 16px;
  }
  .footer__social li a {
    width: 24px;
    height: 24px;
  }
  .footer__nav {
    margin-bottom: 24px;
  }
  .footer__nav li:not(:last-child) {
    margin-right: 18px;
  }

  .background-container {
    grid-template-columns: repeat(5, 1px);
  }
  .background-container .line:nth-child(7), .background-container .line:nth-child(6) {
    display: none;
  }

  .main-products__container .tns-nav {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .header.mobile-menu-opened {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5;
  }
  .header.mobile-menu-opened .header__lang {
    display: none;
  }
  .header.lang-menu-opened .mobile-menu-btn span {
    display: none;
  }
  .header__lang:hover {
    opacity: 1;
  }

  .home-screen__logo {
    width: 70%;
  }

  body.mobile-menu-opened {
    position: fixed;
    left: 0;
    top: 0;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    margin-left: 20px;
  }
  .mobile-menu-btn.opened span {
    display: block;
  }
  .mobile-menu-btn.opened .mobile-menu-btn__container .line:nth-child(1) {
    transform: translateY(5px) rotate(-45deg);
  }
  .mobile-menu-btn.opened .mobile-menu-btn__container .line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.opened .mobile-menu-btn__container .line:nth-child(3) {
    transform: translateY(-5px) rotate(45deg);
  }
  .mobile-menu-btn span {
    display: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin-right: 20px;
    text-transform: uppercase;
  }
  .mobile-menu-btn__container {
    width: 18px;
    height: 12px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .mobile-menu-btn .line {
    width: 100%;
    height: 2px;
    background-color: #FFF;
    transition: 0.2s ease;
  }

  .mobile-menu {
    position: fixed;
    z-index: 1000;
    top: 64px;
    left: 0;
    background-color: #000000;
    width: 100vw;
    min-height: calc(100vh - 64px);
  }
  .mobile-menu .header__nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 56px 24px;
  }
  .mobile-menu .header__nav ul li:not(:last-child) {
    margin-bottom: 32px;
  }
  .mobile-menu .header__nav ul li a {
    font-weight: bold;
    font-size: 2rem;
    line-height: 100%;
    padding: 0;
  }

  .background-container {
    display: none;
  }

  .main-slider {
    margin-bottom: 96px;
  }
  .main-slider__item {
    height: 100vw;
    max-height: 400px;
  }
  .main-slider__title-block {
    width: calc(100% - 32px);
    left: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
    margin-top: 0;
  }
  .main-slider__title {
    font-size: 3rem;
  }
  .main-slider__subtitle {
    position: unset;
    max-width: unset;
    font-size: 14px;
  }
  .main-slider__info {
    display: none;
  }
  .main-slider__nav {
    top: 50%;
    width: 100%;
    left: 0;
    justify-content: space-between;
    height: 0;
  }
  .main-slider__nav > div {
    height: 300px;
    background-color: transparent;
    padding: 10px 28px;
  }
  .main-slider__nav > div:hover {
    background-color: transparent;
  }
  .main-slider__nav > div:hover svg {
    fill: #FFF;
  }

  .title {
    font-weight: bold;
    font-size: 2rem;
    line-height: 117%;
  }

  .main-products {
    position: relative;
    padding: 0 20% 0 16px;
    margin-bottom: 54px;
  }
  .main-products__header {
    margin-bottom: 16px;
  }
  .main-products__title {
    margin-bottom: 0;
  }
  .main-products__text {
    display: none;
  }
  .main-products__slider-nav {
    justify-content: space-between;
    margin-bottom: 0;
    position: absolute;
    z-index: 5;
    width: 100%;
    height: 0;
    left: 0;
    top: 45%;
  }
  .main-products__nav-item {
    padding: 14px 16px;
    background-color: #000000;
  }
  .main-products__nav-item svg {
    width: 8px;
    height: 12px;
  }

  .product-card__image {
    margin-bottom: 8px;
  }
  .product-card__image:before {
    transform: translateY(0);
  }
  .product-card__image:after {
    opacity: 1;
  }
  .product-card__name {
    font-weight: 600;
    font-size: 1rem;
    line-height: 125%;
  }
  .product-card__model {
    font-weight: 600;
    font-size: 1rem;
    line-height: 125%;
  }
  .product-card__color-count {
    font-weight: normal;
    font-size: 1rem;
    line-height: 140%;
  }

  .with-slash {
    padding-left: 0;
  }
  .with-slash:after {
    display: none;
  }

  .feedback {
    margin-top: 100px;
    margin-bottom: 96px;
  }
  .feedback__container {
    padding: 50px 0;
  }
  .feedback__text p {
    font-size: 14px;
  }
  .feedback__image {
    display: none;
  }
  .feedback__form-container {
    padding: 0 16px;
  }
  .feedback__form-block {
    width: 100%;
  }

  .story {
    margin-bottom: 96px;
  }
  .story__title {
    position: relative;
    z-index: 4;
    width: 70%;
    min-width: 280px;
  }
  .story__content {
    padding: 0 16px;
  }
  .story__content-block {
    padding-left: 0;
    position: relative;
    z-index: 3;
    top: -76px;
    justify-content: flex-end;
  }
  .story__images {
    margin-right: 0;
    position: absolute;
    z-index: 1;
    width: 100%;
  }
  .story__text {
    width: 65%;
    min-width: 250px;
    position: relative;
    z-index: 2;
    padding: 32px 16px;
    margin-top: 32px;
    background-color: #262626;
  }

  .about {
    margin-bottom: 96px;
  }
  .about__container {
    min-height: unset;
    width: calc(100% - 16px);
  }
  .about__content {
    padding: 16px 16px 36px;
  }
  .about__backstage {
    width: 70%;
  }
  .about__backstage span {
    font-size: 18vw;
    position: absolute;
  }
  .about__title {
    margin-bottom: 8px;
  }
  .about__text {
    width: 70%;
    position: relative;
  }
  .about__text p:not(:first-child) {
    display: none;
  }
  .about__link {
    position: absolute;
    left: calc(70% - 100px);
    bottom: -24px;
    padding: 14px 30px;
    border-radius: 0;
    margin-left: 0;
  }
  .about__image {
    z-index: -1;
    height: 120%;
    top: -7%;
    padding: 0;
    width: 75%;
  }

  .product {
    margin-bottom: 96px;
  }
  .product__container {
    flex-direction: column;
    align-items: center;
  }
  .product__info {
    padding-top: 24px;
  }
  .product__title {
    max-width: 450px;
  }
  .product__text {
    display: none;
  }
  .product__slider {
    order: 2;
    width: 100%;
  }
  .product__slider-main {
    height: calc((100vw - 80px) - 24px);
    max-height: 450px;
  }
  .product__info {
    width: 100%;
    order: 1;
  }
  .product__btn {
    order: 3;
    margin-left: 0;
    margin-top: 24px;
    align-self: flex-end;
  }

  .specifications {
    margin-bottom: 96px;
  }
  .specifications__block {
    width: 100%;
  }
  .specifications__main {
    width: 100%;
  }
  .specifications__other {
    display: none;
  }
  .specifications__other-item {
    padding-right: 16px;
  }
  .specifications__other-image {
    padding: 10% 11% 115%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    margin-bottom: 8px;
  }
  .specifications__other-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    top: 0;
    left: 0;
    padding: 11% 12%;
  }
  .specifications__other-image:before {
    content: " ";
    position: absolute;
    left: 6%;
    bottom: 0;
    height: calc(100% - 120px);
    width: 1px;
    background-color: #414141;
    transition: 0.4s ease;
  }
  .specifications__other-image:after {
    content: "\421\43C\43E\442\440\435\442\44C";
    font-weight: bold;
    font-size: 1rem;
    line-height: 1px;
    text-transform: uppercase;
    color: #414141;
    position: absolute;
    left: 6%;
    bottom: calc(100% - 110px);
    transform-origin: left bottom 0;
    transform: rotate(-90deg);
    transition: 0.2s ease;
    transition-delay: 0.2s;
  }
  .specifications__other-name {
    font-weight: 600;
    font-size: 1rem;
    line-height: 125%;
  }
  .specifications__attributes {
    width: 100%;
  }
  .specifications__attribute {
    justify-content: space-between;
  }

  .description {
    margin-bottom: 96px;
  }

  .post__backstage {
    height: 30%;
  }
  .post .default-text {
    margin-bottom: 40px;
  }

  .footer {
    margin-top: 40px;
  }
  .footer__container {
    background-color: #262626;
  }
  .footer__backstage img {
    -webkit-filter: brightness(0);
            filter: brightness(0);
  }
  .footer__content {
    flex-wrap: wrap;
  }
  .footer__block:nth-child(1) {
    width: 100%;
    order: 3;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer__block:nth-child(2) {
    order: 2;
    margin: 0;
  }
  .footer__block:nth-child(3) {
    order: 1;
    margin-right: 16px;
  }
  .footer__logo-container {
    flex-direction: row;
    align-items: center;
  }
  .footer__logo {
    height: 25px;
    margin-bottom: 0;
    margin-right: 12px;
  }
  .footer__copyright {
    width: 100px;
    flex-shrink: 0;
  }
  .footer__social {
    flex-direction: column;
    margin-bottom: 42px;
  }
  .footer__social li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .footer__social li a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
  }
  .footer__social li a svg {
    fill: #787878;
  }
  .footer__social li a span {
    display: block;
    font-weight: normal;
    font-size: 12px;
    line-height: 150%;
    margin-left: 8px;
  }
  .footer__nav-container {
    align-items: flex-start;
  }
  .footer__nav {
    flex-direction: column;
    margin-bottom: 42px;
  }
  .footer__nav li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .footer__nav li a {
    line-height: 200%;
  }
  .footer__number {
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }
  .footer__email {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }
  .footer__address {
    font-weight: normal;
    font-size: 10px;
    line-height: 150%;
  }

  .form-field.with-label label {
    font-size: 1rem;
  }
  .form-field.with-label input {
    font-size: 14px;
  }

  .mobile-only {
    display: block;
  }

  .select-language-block {
    right: 0;
    width: 100vw;
    padding: 40px 0;
  }
  .select-language-block p {
    display: block;
    margin-bottom: 30px;
    color: #787878;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    padding-left: 24px;
  }
  .select-language-block ul li a {
    padding: 16px 24px;
  }
  .select-language-block ul li a span {
    font-weight: bold;
    font-size: 2rem;
    line-height: 100%;
  }
}
@media (max-width: 640px) {
  #content {
    padding-top: 56px;
  }

  .header {
    padding: 16px;
  }
  .header__logo {
    height: 25px;
  }

  .mobile-menu {
    top: 56px;
    min-height: calc(100vh - 56px);
  }
  .mobile-menu .header__nav ul {
    padding: 56px 16px;
  }

  .post .default-text {
    width: calc(100% - 32px);
    padding: 40px 16px;
  }

  .default-text .title {
    font-size: 2rem;
    line-height: 140%;
    margin-bottom: 24px;
  }
  .default-text .text-container {
    margin-bottom: 24px;
  }
  .default-text h2, .default-text .subtitle {
    margin-bottom: 16px;
  }
  .default-text .image-container {
    width: 100%;
    margin-bottom: 24px;
  }

  .product__container {
    padding: 0;
  }
  .product__slider-main {
    height: 100vw;
  }
  .product__info {
    padding: 16px;
    background-color: #262626;
  }
  .product__title {
    font-size: 2rem;
    margin-bottom: 0;
  }
  .product__btn {
    align-self: center;
  }

  .specifications__main {
    padding: 32px 16px 60px;
  }
  .specifications__attribute-name {
    width: 50%;
  }
  .specifications__attribute-value {
    width: 40%;
    max-width: 200px;
  }

  .description__container {
    padding: 0 16px;
  }

  .footer__container {
    padding: 32px 16px 12px;
  }

  .select-language-block {
    top: 56px;
  }
  .select-language-block p {
    padding-left: 16px;
  }
  .select-language-block ul li a {
    padding: 16px;
  }

  .modal-window-layout {
    padding: 20px;
  }

  .modal-window-content {
    padding: 24px;
  }

  .modal-window .close-modal-btn {
    right: 16px;
    top: 16px;
    width: 28px;
    height: 28px;
    background-size: 28px;
  }
  .modal-window__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .modal-window__description {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 32px;
  }
  .modal-window input[type=text] {
    padding: 12px;
    font-size: 15px;
    border-color: #373737;
  }
  .modal-window .btn {
    padding: 12px 30px;
    font-size: 14px;
  }

  .main-products__container .tns-nav {
    display: none;
  }
}
@media (max-width: 480px) {
  .main-products {
    padding: 0 40% 0 16px;
  }

  .feedback__container {
    padding: 40px 0;
  }
  .feedback__form-block {
    padding: 48px 16px;
  }
  .feedback__title {
    font-size: 2rem;
    line-height: 140%;
    margin-bottom: 8px;
  }
  .feedback__text p {
    font-size: 14px;
  }
  .feedback__form {
    margin-top: 32px;
  }
  .feedback .form-flex {
    flex-direction: column;
    align-items: flex-end;
  }
  .feedback .form-flex .form-field {
    margin-right: 0;
  }

  .footer__container {
    padding: 16px;
  }
}
@media (max-width: 374px) {
  .footer__block:nth-child(2) {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer__block:nth-child(3) {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  .footer__social {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 16px;
  }
  .footer__social li:not(:last-child) {
    margin-right: 8px;
    margin-bottom: 0;
  }
  .footer__social li a span {
    display: none;
  }
  .footer__nav-container {
    align-items: center;
  }
  .footer__nav {
    align-items: center;
    margin-bottom: 16px;
  }
  .footer__nav li {
    width: 100%;
  }
  .footer__nav li a {
    display: block;
    width: 100%;
    text-align: center;
  }
}
/*
    Dots plugin
*/
/*
    Navigation plugin
*/
.not-selectable {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.carousel {
  position: relative;
  box-sizing: border-box;
}
.carousel *, .carousel *:before, .carousel *:after {
  box-sizing: inherit;
}
.carousel.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.carousel.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

.carousel__track {
  display: flex;
}

.carousel__slide {
  flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  /* https://github.com/andreszs/jquery.events.swipe#pointer-event-remarks */
  touch-action: pan-y;
}

.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  transition: opacity 0.15s ease-in-out;
}
.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  box-shadow: var(--carousel-button-shadow, none);
  transition: opacity 0.15s ease;
}
.carousel__button.is-prev, .carousel__button.is-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.carousel__button.is-prev {
  left: 10px;
}
.carousel__button.is-next {
  right: 10px;
}
.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}
.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  -webkit-filter: var(--carousel-button-svg-filter, none);
          filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

/*
  Thumbs plugin
*/
/* 3/2 */
/*
  HTML plugin
*/
/*
  Toolbar plugin
*/
body.compensate-for-scrollbar {
  overflow: hidden !important;
  touch-action: none;
}

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  z-index: 1050;
  outline: none;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}
.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
  box-sizing: inherit;
}
.fancybox__container :focus {
  outline: thin dotted;
}
body.is-using-mouse .fancybox__container :focus {
  outline: none;
}
@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 27px;
    --carousel-button-svg-height: 27px;
  }
}

.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  /* For Safari */
  height: 100%;
  z-index: 10;
}
.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}

.fancybox__track {
  display: flex;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  outline: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}
.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}
@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}

.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  z-index: 20;
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  flex-shrink: 0;
  overflow-wrap: anywhere;
}
.is-loading .fancybox__caption {
  visibility: hidden;
}

.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
  z-index: 40;
}
.fancybox__nav .carousel__button.is-next {
  right: 8px;
}
@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}
.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}
@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}

.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}
@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}

/* Close button located inside content area */
.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -36px;
  right: 0;
  color: var(--fancybox-color, #fff);
}

.fancybox__no-click,
.fancybox__no-click button {
  pointer-events: none;
}

.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}
.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}
.fancybox__spinner svg {
  animation: fancybox-rotate 2s linear infinite;
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.fancybox__backdrop,
.fancybox__caption,
.fancybox__nav,
.carousel__dots,
.carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}

/* Opening */
.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
  animation: 0.15s ease backwards fancybox-fadeIn;
}

/* Closing */
.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
  animation: 0.15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
  animation: 0.15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
  animation: 0.1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
  animation: 0.2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
  animation: 0.15s ease both fancybox-zoomOutDown;
}

/* Both `throwOut` classes are for closing animation after dragging up/down */
.fancybox-throwOutUp {
  animation: 0.15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
  animation: 0.15s ease both fancybox-throwOutDown;
}

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}
.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}
.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}
.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__image {
  transform-origin: 0 0;
  touch-action: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: transparent;
  min-height: 1px;
}
.is-closing .has-image .fancybox__content {
  overflow: visible;
}
.has-image[data-image-fit=contain] {
  overflow: visible;
  touch-action: none;
}
.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto;
}
.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto;
}
.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto;
}
.has-image[data-image-fit=cover] {
  overflow: visible;
  touch-action: none;
}
.has-image[data-image-fit=cover] .fancybox__content {
  width: 100%;
  height: 100%;
}
.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}
.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}
.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}
.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}
.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: transparent;
}

.fancybox-placeholder {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.fancybox__thumbs {
  flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}
.fancybox__thumbs .carousel__slide {
  flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
}
.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 5px solid var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
  opacity: 0;
  transition: opacity 0.15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}
.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.92;
}
.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__thumb {
  position: relative;
  width: 100%;
  /* Keep aspect ratio */
  padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.006) 8.1%, rgba(0, 0, 0, 0.021) 15.5%, rgba(0, 0, 0, 0.046) 22.5%, rgba(0, 0, 0, 0.077) 29%, rgba(0, 0, 0, 0.114) 35.3%, rgba(0, 0, 0, 0.155) 41.2%, rgba(0, 0, 0, 0.198) 47.1%, rgba(0, 0, 0, 0.242) 52.9%, rgba(0, 0, 0, 0.285) 58.8%, rgba(0, 0, 0, 0.326) 64.7%, rgba(0, 0, 0, 0.363) 71%, rgba(0, 0, 0, 0.394) 77.5%, rgba(0, 0, 0, 0.419) 84.5%, rgba(0, 0, 0, 0.434) 91.9%, rgba(0, 0, 0, 0.44) 100%);
  padding: 0;
  touch-action: none;
  display: flex;
  justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}
@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}
.fancybox__toolbar__items {
  display: flex;
}
.fancybox__toolbar__items--left {
  margin-right: auto;
}
.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.fancybox__toolbar__items--right {
  margin-left: auto;
}
@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}

.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__container:-webkit-full-screen::-webkit-backdrop {
  opacity: 0;
}

.fancybox__container:-webkit-full-screen::backdrop {
  opacity: 0;
}

.fancybox__container:-ms-fullscreen::backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::-webkit-backdrop {
  opacity: 0;
}

.fancybox__container:-webkit-full-screen::backdrop {
  opacity: 0;
}

.fancybox__container:-ms-fullscreen::backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::-webkit-backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}

.fancybox__container {
  z-index: 1111;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

input:focus::-ms-input-placeholder {
  color: transparent;
}

input:focus::placeholder {
  color: transparent;
}

.message-success {
  padding: 15px 20px;
  background: #79aaab;
  color: #fff !important;
  border-radius: 30px;
  text-align: center;
}

.loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 11111;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: 0.5s;
  perspective: 100px;
}

.loading.hidden {
  opacity: 0;
}

.loading .loader-image {
  text-align: center;
  transform: rotateY(0);
  transform-origin: center;
  animation: 1.5s 0s pulse infinite ease;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.loading .loader-image img {
  width: 120px;
  -webkit-filter: brightness(0) invert(0.8);
          filter: brightness(0) invert(0.8);
}
.loading .loader-image span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-top: 12px;
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-ExtraBold.ttf");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Light.ttf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Black.ttf");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Medium.ttf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-ExtraLight.ttf");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Thin.ttf");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Bold.ttf");
  font-weight: bold;
  font-style: normal;
}