* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

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

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

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-size: inherit;
}

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

ul li,
ol li,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

header {
  z-index: 100;
  position: fixed;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.header__body {
  width: 100%;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
  transition: all 2s;
}

.header__logo {
  display: flex;
  align-items: center;
  font-size: 50px;
  letter-spacing: 5px;
  font-style: italic;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.5s;
  gap: 10px;
}
.header__logo p {
  display: inline-block;
}
.header__logo span {
  transition: all 0.5s;
  content: url("../img/misc/head_logo_40x44.png");
  transform: scale(1.1);
  margin: 0px 5px 0px 0px;
}

.header__burger {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 50px;
}

.header__menu {
  font-size: 20px;
}
.header__menu .list-more {
  position: relative;
  top: -3px;
}
.header__menu .list-more img {
  transform: scale(0.9);
}
.header__menu ul {
  transition: all 0.5s;
  display: flex;
  gap: 50px;
}
.header__menu ul li {
  text-align: center;
  min-width: 120px;
  position: relative;
  padding: 10px 20px;
  transform: skew(-25deg);
}
.header__menu ul li svg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.header__menu ul li rect {
  fill: none;
  stroke: #666;
  stroke-width: 5;
  stroke-dasharray: 0, 422;
  transition: all 0.35s linear;
}
.header__menu ul li:hover rect {
  stroke: #7cd500;
  stroke-width: 5;
  stroke-dasharray: 422, 0;
  stroke-dashoffset: 48;
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.header__menu ul li a {
  display: inline-block;
  transform: skew(25deg);
}
.header__menu ul li .goods__lists {
  position: absolute;
  left: 44px;
  top: 45px;
  transform: skew(25deg);
  z-index: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  max-width: 200px;
  padding: 20px;
  background-color: #222;
  display: none;
}
.header__menu ul li .goods__lists li {
  margin-bottom: 20px;
  transform: skew(0deg);
}
.header__menu ul li .goods__lists li a {
  transform: skew(0deg);
}
.header__menu ul li .goods__lists li:hover {
  border-bottom: 3px solid #7cd500;
  border-radius: 4px;
  padding: 10px 20px 8px 20px;
}
.header__menu ul li .goods__lists li:last-child {
  margin-bottom: 0px;
}
.header__menu ul li:hover > .goods__lists {
  display: block;
}

.header__lang span {
  text-transform: uppercase;
  padding: 5px;
  background-color: #444;
  cursor: pointer;
  transition: all 0.7s;
  letter-spacing: 1px;
  text-shadow: 1px 0px black;
}
.header__lang span:hover {
  background-color: #111;
}
.header__lang span.active {
  background-color: #7cd500;
}
.header__lang span.active:hover {
  color: #444;
  background-color: #95ff00;
}

.header__burger-icon {
  display: none;
}

.scrolled {
  padding: 10px 0px;
}
.scrolled .header__logo {
  font-size: 28px;
}
.scrolled .header__logo span {
  transform: scale(0.8);
  margin: 0px -8px 0px -12px;
}
.scrolled .header__logo:hover {
  text-shadow: 5px 2px 1px #7cd500;
}
.scrolled .header__logo:hover span {
  filter: drop-shadow(8px 1px 0px #7cd500);
}
.scrolled .header__menu {
  font-size: 16px;
}
.scrolled .header__menu ul {
  gap: 25px;
}
.scrolled .header__menu ul li .goods__lists {
  min-width: 190px;
}
.scrolled .header__lang span {
  padding: 2px;
}

@media (max-width: 1300px) {
  .header__logo p {
    display: none;
  }
  .header__logo span {
    margin: 0px 0px 0px 0px;
    padding-left: 10px;
    transform: scale(0.8);
  }
  .header__menu ul {
    gap: 25px;
  }
}
@media (max-width: 1023px) {
  .header__burger {
    gap: 20px;
  }
  .header__burger .header__menu {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .header__burger-icon {
    display: block;
    z-index: 2;
    position: relative;
    height: 18px;
    width: 30px;
    cursor: pointer;
  }
  .header__burger-icon span,
  .header__burger-icon::after,
  .header__burger-icon::before {
    position: absolute;
    left: 0;
    height: 10%;
    width: 100%;
    transition: all 0.5s;
    background-color: #fff;
  }
  .header__burger-icon::after,
  .header__burger-icon::before {
    content: url("");
  }
  .header__burger-icon::before {
    top: 0px;
  }
  .header__burger-icon::after {
    bottom: 0px;
  }
  .header__burger-icon span {
    top: 50%;
    transform: scale(1) translateY(-50%);
  }
  .header__burger-icon._active span {
    transform: scale(0) translateY(-50%);
  }
  .header__burger-icon._active::before {
    top: 50%;
    transform: rotate(-45deg) translateY(-50%);
  }
  .header__burger-icon._active::after {
    bottom: 50%;
    transform: rotate(45deg) translateY(50%);
  }
  .header__burger {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    transition: all 0.5s;
    overflow: auto;
    gap: 0px;
    padding: 40px 0px 10px 0px;
  }
  .header__burger._active {
    left: 0%;
  }
  .header__burger .header__menu ul {
    flex-direction: column;
    font-size: 20px;
  }
  .header__menu ul li {
    transform: skew(0);
  }
  .header__menu ul li a {
    transform: skew(0);
  }
  .header__menu ul li .goods__lists {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(34, 34, 34, 0);
    transform: skew(0);
    padding: 20px 0px 0px 0px;
  }
  .header__menu ul li .goods__lists li {
    padding: 0px 0px 0px 13px;
    margin-bottom: 20px;
    font-size: 16px;
  }
  .header__menu ul li .goods__lists li::before {
    content: url("../img/misc/arrow_bottom.svg");
    display: inline-block;
    position: relative;
    top: 5px;
    transform: rotate(-90deg);
  }
  .header__menu ul li .goods__lists li:hover {
    border: none;
    padding: 0px 0px 0px 13px;
  }
  .scrolled .header__menu ul li .goods__lists {
    top: 0;
    left: 0;
  }
}
@keyframes ldio-pmokk5cbzck {
  0% {
    transform: translate(12px, 80px) scale(0);
  }
  25% {
    transform: translate(12px, 80px) scale(0);
  }
  50% {
    transform: translate(12px, 80px) scale(1);
  }
  75% {
    transform: translate(80px, 80px) scale(1);
  }
  100% {
    transform: translate(148px, 80px) scale(1);
  }
}
@keyframes ldio-pmokk5cbzck-r {
  0% {
    transform: translate(148px, 80px) scale(1);
  }
  100% {
    transform: translate(148px, 80px) scale(0);
  }
}
@keyframes ldio-pmokk5cbzck-c {
  0% {
    background: #9db189;
  }
  25% {
    background: #0a4308;
  }
  50% {
    background: #2c8c14;
  }
  75% {
    background: #60a363;
  }
  100% {
    background: #9db189;
  }
}
.ldio-pmokk5cbzck div {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transform: translate(80px, 80px) scale(1);
  background: #9db189;
  animation: ldio-pmokk5cbzck 2.5s infinite cubic-bezier(0, 0.5, 0.5, 1);
}

.ldio-pmokk5cbzck div:nth-child(1) {
  background: #60a363;
  transform: translate(148px, 80px) scale(1);
  animation: ldio-pmokk5cbzck-r 0.625s infinite cubic-bezier(0, 0.5, 0.5, 1),
    ldio-pmokk5cbzck-c 2.5s infinite step-start;
}

.ldio-pmokk5cbzck div:nth-child(2) {
  animation-delay: -0.625s;
  background: #9db189;
}

.ldio-pmokk5cbzck div:nth-child(3) {
  animation-delay: -1.25s;
  background: #60a363;
}

.ldio-pmokk5cbzck div:nth-child(4) {
  animation-delay: -1.875s;
  background: #2c8c14;
}

.ldio-pmokk5cbzck div:nth-child(5) {
  animation-delay: -2.5s;
  background: #0a4308;
}

.loadingio-spinner-ellipsis-4u29t3ji5qp {
  width: 200px;
  height: 200px;
  display: inline-block;
  overflow: hidden;
  background: none;
}

.ldio-pmokk5cbzck {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0; /* see note above */
}

.ldio-pmokk5cbzck div {
  box-sizing: content-box;
}

.product__title {
  background-color: rgba(0, 0, 0, 0.6);
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.product__title-video {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.title__body {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.title__main {
  text-align: left;
  font-size: 70px;
  margin: 150px 0px 50px 0px;
  position: relative;
}
.title__main span {
  display: block;
}

.green__line {
  content: url("");
  position: absolute;
  width: 200px;
  height: 3px;
  border-radius: 2px;
  background-color: #7cd500;
  animation: increaseLine 7s infinite alternate ease-in-out;
}
.green__line.left {
  bottom: -15px;
}
.green__line.center {
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px;
}

.title__subtitle {
  font-size: 25px;
  line-height: 1.2;
  margin-bottom: 50px;
}

.title__items {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.title__items .items__item {
  flex: 0 1 48%;
  display: flex;
  align-items: center;
}
.title__items .items__item .item__image {
  margin-right: 20px;
}
.title__items .items__item .item__image img {
  width: 55px;
}
.title__items .items__item .item__desc {
  font-size: 20px;
  cursor: default;
}

.product__characteristics {
  position: relative;
  min-height: 100vh;
  background: inherit;
  background: #000 url("../img/bgc.jpg") center center/cover no-repeat fixed;
}

.product__characteristics-fly {
  display: none;
}

.product__characteristics-slider {
  min-height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.characteristics__title {
  text-align: center;
  margin-bottom: 50px;
}
.characteristics__title .title__name {
  margin-bottom: 20px;
  font-size: 2em;
  text-transform: uppercase;
}
.characteristics__title .title__subttile {
  font-size: 1.3em;
  position: relative;
}

.characteristics__items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 100px;
  gap: 50px;
}
.characteristics__items .items__item {
  flex: 0 1 30%;
  display: flex;
  align-items: center;
}
.characteristics__items .items__item .item__image {
  flex: 0 0 20%;
  margin-right: 10px;
}
.characteristics__items .items__item .item__image img {
  width: 100%;
}
.characteristics__items .items__item .item__desc {
  flex: 0 0 70%;
  cursor: default;
  line-height: 1.2;
  font-size: 1.1em;
  display: flex;
  flex-direction: column;
}
.characteristics__items .items__item .item__desc span {
  margin-left: 20px;
}

.product__description {
  background: #000;
  padding: 140px 0px;
}

.description__items .items__item {
  margin-bottom: 80px;
}
.description__items .items__item .content__title {
  font-weight: bold;
  font-size: 35px;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.description__items .items__item .item__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.description__items .items__item .item__content .content__text {
  flex: 0 1 70%;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}
.description__items .items__item .item__content .item__image {
  flex: 0 1 28%;
}
.description__items .items__item .item__content .item__image img {
  width: 100%;
}
.description__items .items__item:last-child {
  margin-bottom: 0;
}
.description__items .content-right .content__title {
  text-align: right;
}
.description__items .content-right .item__content .content__text {
  text-align: right;
}
.description__items .content-left .content__text {
  order: 2;
}
.description__items .content-left .item__image {
  order: 1;
}

.description__colomns {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}
.description__colomns .colomns__colomn {
  margin-right: 40px;
}
.description__colomns .colomns__colomn:last-child {
  margin-right: 0px;
}
.description__colomns .colomns__colomn .column__item {
  margin-bottom: 15px;
  list-style-type: disc;
  font-size: 18px;
  line-height: 1.2;
}
.description__colomns .colomns__colomn .column__item:first-child {
  list-style-type: none;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 30px;
  text-transform: uppercase;
}

.about {
  background-color: #111;
}

.about__body {
  padding: 100px 0px;
}

.about__title {
  position: relative;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 50px;
  cursor: default;
}

.about__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.about__content .content__text {
  flex: 0 1 58%;
  font-size: 20px;
  line-height: 1.2;
  text-align: justify;
  font-weight: 200;
  font-size: 21px;
}
.about__content .content__image {
  flex: 0 1 38%;
}
.about__content .content__image img {
  width: 100%;
}

.contacts {
  background-color: #555;
}

.contacts__body {
  padding: 120px 0px 80px 0px;
  display: flex;
  justify-content: space-between;
}

.contacts__form {
  background-color: rgba(0, 0, 0, 0.7);
  margin-right: 10px;
  flex: 0 1 49%;
  padding: 40px;
  position: relative;
}
.contacts__form .message__text {
  display: none;
  visibility: hidden;
}
.contacts__form._sending-message .message__text {
  z-index: 2;
  display: block;
  visibility: visible;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.contacts__form._sending-message .message__text span {
  display: inline-block;
  border: 2px solid #7cd500;
  padding: 15px 30px;
  cursor: default;
}
.contacts__form .form__sending {
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.contacts__form._sending .form__sending {
  opacity: 1;
  visibility: visible;
}
.contacts__form .form__title {
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contacts__form .form__subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 40px;
}

.form__submit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.form__submit textarea {
  font-family: "Open Sans", sans-serif;
  resize: none;
  height: 200px;
}
.form__submit input,
.form__submit textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px 15px;
  font-size: 18px;
  color: #95ff00;
  background-color: #555;
  cursor: default;
}
.form__submit input._failed,
.form__submit textarea._failed {
  border: 1px solid red;
  box-shadow: 1px 0px 5px red;
}
.form__submit input::-moz-placeholder,
.form__submit textarea::-moz-placeholder {
  color: #fff;
}
.form__submit input::placeholder,
.form__submit textarea::placeholder {
  color: #fff;
}
.form__submit button {
  margin-top: 40px;
  background: none;
  color: #fff;
  border: 2px solid #7cd500;
  padding: 10px 50px;
  transform: skew(-25deg);
  transition: all 0.5s;
  font-size: 18px;
}
.form__submit button:hover {
  transform: skew(25deg);
  background-color: #7cd500;
}
.form__submit button:hover span {
  transform: skew(-25deg);
}
.form__submit button span {
  transition: all 0.5s;
  display: inline-block;
  transform: skew(25deg);
}

.contacts__info {
  flex: 0 1 49%;
  margin-left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
}
.contacts__info .info__image {
  text-align: center;
  width: 100%;
  height: 500px;
  background: url("../img/misc/contacts.jpg") center center/cover;
}
.contacts__info .info__desc {
  color: #fff;
  padding: 30px 20px;
}
.contacts__info .info__desc .desc__location .location__value {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 200;
}
.contacts__info .info__desc .desc__location .location__value img {
  width: 25px;
  margin-right: 5px;
}
.contacts__info .info__desc .desc__social .social__icons a {
  margin-right: 20px;
}
.contacts__info .info__desc .desc__social .social__icons a img {
  width: 30px;
}
.contacts__info .info__desc .desc__social .social__title,
.contacts__info .info__desc .desc__location .location__title {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media (max-width: 1025px) {
  .title__body {
    height: 100%;
    padding-bottom: 100px;
  }
  .characteristics__title .title__name {
    font-size: 1.5em;
  }
  .characteristics__title .title__subttile {
    font-size: 1.2em;
  }
  .characteristics__items {
    gap: 20px;
  }
  .characteristics__items .items__item .item__desc {
    font-size: 1em;
  }
  .description__colomns .colomns__colomn .column__item {
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .contacts__body {
    flex-direction: column;
  }
  .contacts__form {
    margin: 0px 0px 50px 0px;
  }
  .contacts__info .info__image {
    height: 500px;
  }
}
@media (max-width: 769px) {
  .characteristics__items {
    gap: 20px;
  }
  .characteristics__items .items__item {
    flex-basis: 45%;
  }
  .description__items .items__item .content__title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .description__items .items__item .item__content .content__text {
    font-size: 16px;
  }
  .about__content {
    flex-wrap: wrap;
    justify-content: center;
  }
  .about__content .content__text,
  .about__content .content__image {
    flex-basis: 100%;
  }
  .about__content .content__text {
    margin-bottom: 30px;
  }
  .about__content .content__image {
    max-width: 400px;
  }
  .contacts__form {
    padding: 40px 20px;
  }
}
@media (max-width: 700px) {
  .title__main {
    font-size: 45px;
  }
  .title__subtitle {
    font-size: 22px;
  }
  .title__items .items__item {
    flex-basis: 100%;
  }
  .title__items .items__item .item__desc {
    font-size: 18px;
  }
  .description__items .items__item .item__content {
    flex-direction: column;
  }
  .description__items .items__item .item__content .content__text {
    font-size: 16px;
    text-align: justify;
    margin-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
  }
  .description__items .items__item .content-left .content__text {
    order: 1;
  }
  .description__items .items__item .content-left .item__image {
    order: 2;
  }
  .product__description {
    padding: 70px 0px 0px 0px;
  }
  .description__colomns {
    flex-wrap: wrap;
  }
  .description__colomns .colomns__colomn {
    width: 100%;
    margin: 0px 0px 80px 0px;
  }
  .description__colomns .colomns__colomn .column__item {
    font-size: 15px;
  }
  .about__content .content__text {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .characteristics__body {
    margin-top: 100px;
  }
  .characteristics__items {
    gap: 30px;
  }
  .characteristics__items .items__item {
    flex-basis: 100%;
    justify-content: center;
  }
  .characteristics__items .items__item .item__desc {
    width: 100%;
  }
  .contacts__form .form__title {
    font-size: 30px;
  }
  .contacts__info .info__image {
    height: 250px;
  }
}
@keyframes increaseLine {
  0% {
    width: 200px;
  }
  100% {
    width: 100%;
  }
}
@keyframes garadient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
footer {
  background-color: #000;
}

.footer__body {
  padding: 30px 0px;
  position: relative;
}

.footer__copyright {
  text-align: center;
  font-weight: 200;
}
.footer__copyright .green__line {
  top: 0;
  min-width: 150px;
  max-width: 80%;
}

@media (max-width: 426px) {
  .footer__body {
    font-size: 14px;
  }
}
::-moz-selection {
  color: #fff;
  background-color: #7cd500;
}
::selection {
  color: #fff;
  background-color: #7cd500;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  background-color: #000000;
  color: #fff;
  font-size: 16px;
  width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  width: 100%;
  padding: 0px 10px;
}

a {
  text-decoration: none;
  color: #fff;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: #333;
}

::-webkit-scrollbar-thumb {
  background-color: #7cd500;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #95ff00;
}
