@charset "UTF-8";
@import url(../libs/normalize-css/normalize.css);
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  *:before, *:after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }



/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }



ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after {
  content: '';
  content: none; }

q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

img {
  max-width: 100%; }

html, body {
  height: 100%; }
  html *, body * {
    background-repeat: no-repeat; }



a {
  color: #000;
  text-decoration: none; }

.wrapper {
  width: 1200px;
  margin-left: auto;
  margin-right: auto; }

.wrapper-mini {
  width: 855px;
  margin-left: auto;
  margin-right: auto; }

.wrapper-fluid,
.fluid-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto; }

.flex-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.flex-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }

.flex-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

.text-center {
  text-align: center; }

.section__title {

  text-align: center;
  font-weight: 600;
  color: #1d1d1f;
  line-height: 50px;
  font-size: 36px;
  margin-bottom: 50px; }

.landing .section__title {
  color: #fff;
  font-size: 56px;
  line-height: 72px;
  text-align: left;
  font-weight: 400;
  margin-bottom: 0; }

.landing .section__subtitle {
  color: #b3b3b3;
  font-size: 40px;
  line-height: 56px; }

.info-container {
  padding-top: 110px;
  padding-bottom: 70px;
  background-color: #F7F7F7; }

.white-bg {
  background-color: #fff !important; }

b,
strong {
  font-weight: bold; }

.nav-pc-wrap {
  position: absolute;
  top: 20px;
  width: 100%;
  z-index: 999; }

.nav-pc {
  width: 1200px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 35px;
  padding-right: 35px;
  border-radius: 10px; }

.nav-hamburger {
  width: 24px;
  height: 40px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #000;
    margin-bottom: 6px; }
    .nav-hamburger span:last-child {
      margin-bottom: 0; }

.nav-mob {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: calc(100vh);
  background: #fff;
  padding-top: 65px;
  z-index: 90;
  display: none;
  padding-left: 15px;
  padding-right: 15px; }
  .nav-mob.open {
    display: block; }
  .nav-mob .menu-item {
    padding-left: 11px;
    overflow: hidden;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid #CCC;
    position: relative; }
    .nav-mob .menu-item.menu-item-has-children:after {
      content: '→';
      display: block; }
    .nav-mob .menu-item a {
      width: 100%; }
  .nav-mob .sub-menu {
    display: block;
    padding-top: 45px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 101;
    width: 100%;
    max-height: 100%;
    overflow: auto;
    height: 100% !important;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: translateX(105%);
        -ms-transform: translateX(105%);
            transform: translateX(105%); }
    .nav-mob .sub-menu ul {
      padding-left: 15px;
      padding-right: 15px; }
    .nav-mob .sub-menu .menu-item {
      height: 50px;
      width: 100%; }
      .nav-mob .sub-menu .menu-item a {
        width: 100%;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start; }
    .nav-mob .sub-menu.open {
      -webkit-transform: translateX(0);
          -ms-transform: translateX(0);
              transform: translateX(0); }
  .nav-mob .sub-menu__back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: bold;
    height: 50px;
    background-color: #F7F7F7;
    padding-left: 11px; }

.logo {
  width: 50px; }
  .logo > span,
  .logo > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .logo .nav-icon {
    cursor: pointer;
    width: 100%;
    height: 20px;
    margin: 20px 50px 20px 0;
    float: left;
    background-image: url(../img/logo.svg);
    background-position: center center;
    background-size: 100%;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out; }
    .logo .nav-icon:hover {
      opacity: 0.7; }
    .logo .nav-icon a {
      display: block; }

.navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.navigation .menu-item {
  height: 60px;
  padding: 0 13px;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .navigation .menu-item:hover > a {
    color: #C00; }
  .navigation .menu-item.current-menu-item > a {
    color: #C00; }

.navigation__popup {
  position: absolute;
  top: 60px;
  left: 0;
  width: 1200px;
  height: 0;
  -webkit-transition: height .4s;
  -o-transition: height .4s;
  transition: height .4s;
  background: #fff;
  overflow: hidden;
  border-radius: 10px;
  z-index: 10; }

.menu-item-product:hover .navigation__popup {
  height: 250px; }

.navigation__products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px; }

.navigation__products-item {
  width: calc(100% / 4 - 60px);
  margin-left: 30px;
  margin-right: 30px; }
  .navigation__products-item:hover .navigation__products-link {
    text-decoration: underline; }

.navigation__products-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center; }

.nav-product-explain {
  color: #ccc;
  font-size: 12px;
  line-height: 16px;
  padding-top: 4px; }

.sub-menu {
  position: absolute;
  top: 60px;
  left: calc(50% - 100px);
  height: auto;
  max-height: 0;
  -webkit-transition: all .7s;
  -o-transition: all .7s;
  transition: all .7s;
  background: #fff;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important; }
  .sub-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important; }
  .sub-menu .menu-item {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    min-height: 43px;
    height: 43px;
    width: 200px; }
    .sub-menu .menu-item a {
      text-align: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      height: 100%;
      width: 100%; }

.menu-item-has-children {
  position: relative; }
  .menu-item-has-children:hover .sub-menu {
    max-height: 350px;
    padding-bottom: 5px; }

.language-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.language-box .language__item {
  height: 60px;
  padding: 0 13px;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  text-transform: capitalize; }
  .language-box .language__item:hover a {
    color: #C00; }
  .language-box .language__item.current-menu-item a {
    color: #C00; }
  .language-box .language__item .sub-menu {
    width: 100px;
    left: calc(50% - 50px);
    top: 52px; }
    .language-box .language__item .sub-menu .menu-item {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }

.language-box .active-language {
  font-weight: 600; }

.language__item > span {
  cursor: default; }

.header {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .header video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; }
  .header .header__content {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }

.header__title {

  font-size: 60px;
  line-height: 70px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 50px; }

.header__videoplay {
  display: inline-block;
  text-align: center; }
  .header__videoplay i.play {
    width: 64px;
    height: 64px;
    border: 3px solid #fff;
    border-radius: 50%;
    display: block;
    position: relative; }
    .header__videoplay i.play:after {
      content: '';
      display: block;
      width: 16px;
      height: 16px;
      border: 10px solid transparent;
      border-left: 15px solid #fff;
      position: absolute;
      top: calc(50% - 10px);
      left: calc(50% - 5px); }

.main-video-popup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: 1000px;
  max-width: 80%;
  background: #fff;
  border-radius: 8px;
  position: relative; }

.popup-close {
  position: absolute;
  right: -30px;
  top: -30px;
  font-size: 40px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer; }

.catItems-wrap {
  padding: 50px 0;
  background: #fff; }

.catItems__title {

  text-align: center;
  font-weight: 600;
  color: #1d1d1f;
  line-height: 40px;
  font-size: 28px;
  margin-bottom: 50px; }

.catItems__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -20px;
  margin-right: -20px;
  padding-top: 20px; }

.catItem__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 20px;
  margin-right: 20px;
  width: 230px; }
  .catItem__item:hover {
    text-decoration: underline; }
    .catItem__item:hover .catItem__img img {
      -webkit-transform: scale(1.1);
          -ms-transform: scale(1.1);
              transform: scale(1.1); }

.catItem__img {
  width: 11.25em;
  height: 100px;
  margin: 0 auto; }
  .catItem__img img {
    transition: transform .3s,-webkit-transform .3s; }

.catItem__title {
  color: #1d1d1f;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  padding: 0 35px; }
  .catItem__title:hover {
    color: #4c4c4c;
    font-weight: inherit;
    text-decoration: underline; }

.img-blocks-wrap {
  background: #fff;
  padding: 50px 0; }

.img-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.img-blocks__item {
  width: calc(100% / 3);
  height: 300px;
  background-size: 100%;
  background-position: center center;
  font-size: 32px;
  line-height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  color: #fff;
  padding: 25px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }
  .img-blocks__item span {
    font-size: 18px;
    font-weight: 400; }
  .img-blocks__item:hover {
    background-size: 110%;
    text-decoration: underline; }

.img-blocks__title {
  text-align: center; }

.text-block-wrap {
  background: #fff;
  padding: 50px 0; }

.text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.text-block__content {

  height: auto;
  color: #000;
  text-decoration: none;
  text-align: center;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 35px; }

.footer {
  padding: 50px 0;
  background-color: #161616;
  color: #fff; }

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px; }

.footer__inner-left {
  width: 50%; }

.footer__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.footer__menu {
  margin-right: 50px;
  max-width: calc(30% - 50px); }

.footer__menu-title {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 600; }

.footer__menu .menu-item {
  margin-bottom: 6px; }

.footer__menu a {
  font-size: 12px;
  color: #b3b3b3;
  line-height: 20px; }
  .footer__menu a:hover {
    color: #667; }

.footer__inner-right {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .footer__socials a {
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px; }
    .footer__socials a:hover {
      color: #667;
      text-decoration: none; }

.footer__copy {
  font-size: 12px;
  color: #b3b3b3;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .footer__copy a {
    display: inline;
    font-size: 12px;
    color: #b3b3b3;
    line-height: 24px; }
    .footer__copy a:hover {
      text-decoration: underline; }
  .footer__copy img {
    max-width: 80px;
    margin-right: 25px;
    margin-bottom: 10px; }

.page-header-wrap {
  background-size: cover;
  background-position: center center; }

.page-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 400px; }

.page-header__title {

  font-weight: 600;
  font-size: 44px;
  line-height: 50px;
  color: #fff;
  text-align: center; }

.products-wrap {
  padding: 30px 0 50px 0;
  background: #f7f7f7; }

.products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.products__item {
  background: #fff;
  width: calc(50% - 15px);
  margin-right: 15px;
  margin-bottom: 30px;
  border-radius: 8px;
  padding: 20px; }
  .products__item:nth-child(2n) {
    margin-right: 0; }

.products__item-img {
  border-radius: 8px;
  overflow: hidden;
  height: 330px;
  width: 100%; }
  .products__item-img img {
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain; }

.products__item-title {
  display: block;
  font-size: 30px;
  line-height: 30px;
  color: #333;
  padding-top: 10px;
  margin-bottom: 25px; }

.products__item-subtitle {
  font-size: 16px;
  line-height: 26px;
  color: #333;
  padding-bottom: 25px;
  height: 52px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; }

.products__item-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid transparent;
  width: 110px;
  line-height: 44px;
  text-align: center;
  background-color: #ec1c24;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  margin-top: 8px; }
  .products__item-button:hover {
    background: #fff;
    color: #ec1c24;
    border: 1px solid #ec1c24; }

.tech-wrap {
  background: #000;
  color: #fff;
  padding-top: 100px; }

.tech__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 40px;
  font-size: 14px;
  line-height: 20px;
  border-bottom: 1px solid #363A3F;
  position: relative;
  z-index: 2; }

.tech__header-title {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  padding-right: 15px;
  font-weight: 600; }

.tech__navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.tech__navigation li {
  padding-left: 10px;
  padding-right: 10px; }
  .tech__navigation li:last-child {
    padding-right: 0; }

.tech__navigation a {
  color: #fff;
  font-size: 14px;
  line-height: 20px; }
  .tech__navigation a:hover {
    text-decoration: underline; }

.tech__content {
  padding: 50px 0; }

.tech__title {
  font-weight: 600;
  padding-top: 100px;
  padding-bottom: 150px;
  text-align: center;
  font-size: 40px;
  line-height: 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto; }

.tech__sizes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #363A3F; }
  .tech__sizes img {
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
    margin-bottom: 100px; }

.tech__description {
  padding-top: 50px; }

.tech__item {
  margin-bottom: 50px;
  padding-bottom: 35px;
  border-bottom: 1px solid #363A3F; }
  .tech__item:last-of-type {
    margin-bottom: 0;
    border-bottom: 0; }

.tech__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.tech__item-left {
  width: 50%;
  padding-right: 25px; }

.tech__item-right {
  width: 50%;
  padding-left: 25px; }

.tech__item-title {
  font-size: 36px;
  line-height: 50px;
  font-weight: 600;
  margin-bottom: 35px; }

.tech__item-param {
  margin-bottom: 35px; }
  .tech__item-param h4 {
    font-size: 18px;
    line-height: 25px;
    padding-bottom: 15px;
    font-weight: 700; }

.tech__item-desc {
  color: #B3B3B3;
  font-size: 20px;
  line-height: 28px; }

.tech-content {
  padding-bottom: 80px; }

.about {
  padding-bottom: 120px;
  padding-top: 120px; }

.about__content p {
  width: 855px;
  margin-left: auto;
  margin-right: auto;
  color: #101010;
  text-align: justify;
  font-size: 22px;
  line-height: 38px; }

.about__content h2 {

  text-align: center;
  font-weight: 600;
  color: #1d1d1f;
  line-height: 50px;
  font-size: 36px;
  text-transform: capitalize;
  margin-bottom: 50px; }

.about__content img {
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 100%; }

.mission-block {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }

.mission {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 100px 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat; }

.mission__item {
  width: 50%; }
  .mission__item:last-child {
    max-width: 390px; }

.mission--right {
  margin-top: 50px; }

.mission__title {
  font-weight: 600;
  font-size: 36px;
  line-height: 40px;
  padding-bottom: 16px;
  color: #fff; }

.mission__content {
  position: relative;
  font-size: 18px;
  line-height: 28px;
  display: inline-block;
  color: #fff;
  padding-top: 18px; }
  .mission__content:before {
    content: '';
    width: 100%;
    background-color: #fff;
    height: 2px;
    display: block;
    position: absolute;
    left: 0;
    top: 0; }

.xag-core-wrap {
  padding-top: 115px; }
  .xag-core-wrap .section__title {
    padding-bottom: 32px; }

.xag-core {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.xag-core__item {
  width: 20%;
  height: 400px;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }
  .xag-core__item:before {
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: url("../img/sense-worth-cover-top.png") bottom center no-repeat;
    background-size: 100%; }

.xag-core__item-content {
  position: absolute;
  top: 60%; }

.xag-core__item:nth-child(2n) .xag-core__item-content {
  top: 10%; }

.xag-core__item-title {
  display: block;
  text-align: center;
  width: 73%;
  margin-left: auto;
  margin-right: auto;
  font-size: 2.375em;
  line-height: 1.4;
  margin-bottom: .5em;
  color: #fff; }

.xag-core__item-text {
  display: block;
  text-align: center;
  width: 73%;
  margin-left: auto;
  margin-right: auto;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 1em;
  line-height: 1.5;
  color: #fff;
  overflow: hidden;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical; }

.xag-core__item-popup {
  display: none;
  position: absolute;
  left: 0;
  top: 50%;
  bottom: 0;
  right: 0;
  height: 100%;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  background: rgba(0, 0, 0, 0.4);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); }

.xag-core__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.xag-core__item:hover {
  cursor: default; }
  .xag-core__item:hover .xag-core__item-content > .xag-core__item-text {
    display: none; }
  .xag-core__item:hover .xag-core__item-content > .xag-core__item-title {
    display: none; }
  .xag-core__item:hover .xag-core__item-popup {
    display: block; }
  .xag-core__item:hover .xag-core__item-inner {
    height: 100%; }
  .xag-core__item:hover .xag-core__item-text {
    height: auto;
    overflow: visible;
    -webkit-line-clamp: 999;
    line-clamp: 999; }

.partners-wrap {
  background: #fff;
  padding-bottom: 125px; }

.partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.partner__item {
  width: 25%;
  height: 130px;
  margin-bottom: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.timeline-wrap {
  padding-top: 115px;
  padding-bottom: 0; }
  .timeline-wrap .slick-list {
    overflow: visible; }
  .timeline-wrap .slick-dotted.slick-slider {
    margin-bottom: 60px; }
  .timeline-wrap .slick-dots {
    bottom: -45px; }
  .timeline-wrap .slick-prev {
    width: 40px;
    height: 18px;
    opacity: 1;
    top: auto;
    bottom: -37px;
    left: 0;
    z-index: 2; }
    .timeline-wrap .slick-prev:before {
      display: block;
      width: 40px;
      height: 18px;
      content: '';
      background: url("../img/long-left-arrow.svg") center center no-repeat;
      background-size: 100%; }
  .timeline-wrap .slick-next {
    width: 40px;
    height: 18px;
    opacity: 1;
    top: auto;
    bottom: -37px;
    right: 0;
    z-index: 2;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
    .timeline-wrap .slick-next:before {
      display: block;
      width: 40px;
      height: 18px;
      content: '';
      background: url("../img/long-left-arrow.svg") center center no-repeat;
      background-size: 100%; }
  .timeline-wrap .slick-dots li {
    width: 30px;
    padding: 8px 0;
    cursor: pointer;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    margin-right: 0; }
    .timeline-wrap .slick-dots li button {
      width: 30px;
      padding: 0;
      cursor: pointer; }
      .timeline-wrap .slick-dots li button:before {
        width: 100%;
        display: block;
        content: '';
        height: 2px;
        top: 50%;
        background-color: #ccc; }
    .timeline-wrap .slick-dots li.slick-active {
      width: 136px; }
      .timeline-wrap .slick-dots li.slick-active button {
        width: 100%; }
        .timeline-wrap .slick-dots li.slick-active button:before {
          background: #DB0424; }

.timeline__item {
  font-size: 16px;
  line-height: 28px;
  color: #101010;
  position: relative;
  margin-bottom: 25px;
  padding-right: 35px;
  width: 300px; }
  .timeline__item:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 4px solid #999;
    float: left;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 2; }
  .timeline__item:after {
    content: '';
    display: block;
    width: calc(100% - 10px);
    height: 2px;
    background-color: #ddd;
    float: right;
    position: absolute;
    left: 10px;
    top: 9px;
    z-index: 1; }
  .timeline__item:last-child:after {
    display: none; }
  .timeline__item.slick-current:before {
    border-color: #DB0424; }

.timeline__title {
  display: block;
  color: #DB0424;
  padding-top: 35px;
  font-size: 32px;
  line-height: 38px; }

.timeline__text {
  margin-top: 8px; }

.download-header-wrap .page-header__title {
  color: #000; }

.download {
  width: 980px;
  margin-left: auto;
  margin-right: auto; }
  .download .tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .download .tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    width: 50%;
    padding-bottom: 30px;
    padding-top: 65px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 26px;
    text-align: center;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px solid #ddd;
    position: relative; }
    .download .tab.active:after {
      content: '';
      display: block;
      width: 100%;
      height: 2px;
      bottom: -1px;
      background: #DB0424;
      position: absolute;
      z-index: 2; }
    .download .tab img {
      width: 250px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 40px; }
  .download .tab_item__title {
    font-weight: 600;
    color: #000;
    line-height: 45px;
    padding-top: 56px;
    padding-bottom: 40px;
    text-align: center;
    font-size: 32px; }
  .download .download__items {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    width: 100%;
    padding: 10px 0;
    margin-bottom: 70px; }
  .download .download__item {
    height: 48px;
    padding: 14px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: #333; }
    .download .download__item:hover {
      background: #f0f0f0; }
    .download .download__item > div {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .download .download__item a {
      color: #1a7aff; }
  .download .download__filename {
    width: 245px;
    padding-right: 15px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer; }
  .download .download__filedate {
    width: 300px;
    padding-right: 15px; }

.faq {
  margin-bottom: 70px;
  width: 980px;
  margin-left: auto;
  margin-right: auto; }
  .faq .faq__items {
    overflow: hidden; }
    .faq .faq__items input {
      position: absolute;
      opacity: 0;
      z-index: -1; }
    .faq .faq__items input:checked + .faq__item-label {
      background: #fff; }
    .faq .faq__items input:checked::after {
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg); }
    .faq .faq__items input:checked ~ .faq__item-content {
      max-height: 100vh;
      padding-bottom: 16px; }
  .faq .faq__item {
    width: 100%;
    color: white;
    overflow: hidden;
    border: 1px solid #d5d5d5;
    margin-bottom: 8px; }
  .faq .faq__item-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 16px;
    background: #fff;
    cursor: pointer;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin: 0;
    font-size: 18px;
    line-height: 24px;
    color: #5a5a5a; }
    .faq .faq__item-label::after {
      content: '';
      width: 13px;
      height: 7px;
      background-size: 100%;
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s;
      margin-top: 6px; }
  .faq .faq__item-content {
    max-height: 0;
    padding: 0 16px;
    color: #282828;
    background: white;
    -webkit-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 1px; }
  .faq .faq__title {
    font-weight: 600;
    color: #000;
    line-height: 45px;
    padding-top: 56px;
    padding-bottom: 80px;
    text-align: center;
    font-size: 32px; }

.download,
.faq-wrap {
  overflow: hidden; }
  .download .wrapper-980,
  .faq-wrap .wrapper-980 {
    overflow: hidden; }

.category__title {
  display: block;
  font-size: 30px;
  padding-bottom: 30px; }

.category__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px; }

.category__item {
  display: block;
  background: #fff;
  width: calc(100% / 4 - 20px);
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }
  .category__item:hover {
    -webkit-box-shadow: 0 49.5px 70px -24.5px rgba(0, 0, 0, 0.3);
            box-shadow: 0 49.5px 70px -24.5px rgba(0, 0, 0, 0.3);
    -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
            transform: scale(1.02); }

.category__item-img {
  width: 100%;
  height: 200px; }
  .category__item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }

.category__item-info {
  padding: 15px 20px; }

.category__item-title {
  font-size: 16px;
  line-height: 26px;
  color: #333;
  height: 52px;
  display: -webkit-box;
  margin-bottom: 8px;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden; }

.category__item-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.category__item-date {
  color: #999;
  font-size: 12px;
  line-height: 20px; }

.category__item-views {
  color: #999;
  font-size: 12px;
  line-height: 20px;
  padding-left: 15px; }

.pagination {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto; }
  .pagination a, .pagination span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: 5px;
    margin-right: 5px;
    background: #fff;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.2; }
  .pagination span.current {
    -webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
    background: #000;
    color: #fff;
    font-weight: 600; }

.single__category-title {
  display: block;
  font-size: 40px;
  line-height: 1.25;
  padding-bottom: 40px; }

.single__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.single__box {
  max-width: 860px;
  width: 100%; }

.single__sidebar {
  width: calc(100% - 860px - 40px);
  margin-left: 40px;
  background: transparent; }

.single__box-date {
  font-size: 14px;
  line-height: 20px;
  color: #667;
  text-align: right; }

.single__content-title {
  font-size: 44px;
  line-height: 66px;
  padding-top: 30px;
  padding-bottom: 50px;
  color: #333; }

.single__content {
  background: #fff;
  border-right: 1px solid #f2f2f2;
  padding: 40px; }
  .single__content p {
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    letter-spacing: 0.54px;
    background-color: white;
    margin-bottom: 20px; }
  .single__content img {
    display: block;
    max-width: 94%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px; }
  .single__content h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 20px; }
  .single__content h3 {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.2; }
  .single__content h4 {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.2; }
  .single__content b, .single__content strong {
    font-weight: bold; }

.single__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 60px; }
  .single__nav a {
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #fff;
    height: 60px;
    font-size: 14px;
    line-height: 24px;
    padding: 18px;
    border-radius: 5px;
    text-align: center;
    color: #667;
    display: -webkit-box;
    margin-bottom: 8px;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    overflow: hidden; }
    .single__nav a:first-child, .single__nav a:nth-child(2) {
      width: calc(50% - 10px);
      margin-bottom: 30px; }
    .single__nav a.single__nav-back {
      width: 100%; }

.single__sidebar-title {
  font-size: 20px;
  line-height: 20px;
  padding-bottom: 30px;
  color: #667; }

.single__sidebar-post {
  display: block;
  padding-bottom: 18px; }
  .single__sidebar-post h5 {
    font-size: 14px;
    line-height: 28px; }
  .single__sidebar-post:hover h5 {
    color: #888; }
  .single__sidebar-post .single__sidebar-date {
    font-size: 12px;
    line-height: 24px; }

.page404 {
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.page404__left {
  width: 50%; }

.page404__right {
  width: 50%;
  padding-left: 75px; }

.page404__title {
  font-size: 100px;
  line-height: 120px;
  font-weight: 800;
  margin-bottom: 20px; }

.page404__subtitle {
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 35px; }

.notfound__btn,
.page404__button {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid transparent;
  width: 250px;
  line-height: 44px;
  text-align: center;
  background-color: #ec1c24;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  margin-top: 8px; }
  .notfound__btn:hover,
  .page404__button:hover {
    background: #fff;
    color: #ec1c24;
    border: 1px solid #ec1c24; }

.notfound__title {
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 35px; }

.contacts__header {
  background-color: #C9072A;
  padding-top: 200px;
  padding-bottom: 100px;
  background-repeat: no-repeat;
  background-position: right top;
  position: relative;
  color: #fff; }
  .contacts__header:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(201, 7, 42, 0.7);
    z-index: 1; }
  .contacts__header * {
    position: relative;
    z-index: 1; }

.contacts__title {
  font-size: 80px;
  line-height: 1;
  margin-bottom: 35px;
  color: #fff; }

.contacts__subtitle {
  font-size: 32px;
  line-height: 35px;
  margin-bottom: 20px;
  color: #fff; }

.contacts__address-title {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px; }

.contacts__text {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  max-width: 450px; }

.contacts__items {
  background-color: #F7F7F7; }

.contacts__items-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 35px 0 15px; }

.contacts__item {
  width: 25%;
  margin-bottom: 25px; }

.contacts__item-title {
  font-size: 20px;
  line-height: 1.5;
  padding-bottom: 10px; }

.contacts__item-info {
  font-size: 14px;
  line-height: 1.5; }
  .contacts__item-info a:hover {
    text-decoration: underline; }

/*************************** v40 landing ***********************/
.landing {
  padding-top: 0;
  padding-bottom: 0; }
  .landing .header__videoplay {
    display: inline-block;
    text-align: center; }
    .landing .header__videoplay i.play {
      width: 64px;
      height: 64px;
      border: 3px solid #fff;
      border-radius: 50%;
      display: block;
      position: relative; }
      .landing .header__videoplay i.play:after {
        content: '';
        display: block;
        width: 16px;
        height: 16px;
        border: 10px solid transparent;
        border-left: 15px solid #fff;
        position: absolute;
        top: calc(50% - 10px);
        left: calc(50% - 5px); }

.landing__header {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .landing__header video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; }
  .landing__header .landing__header-content {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 100px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }

.landing__header-subtitle {

  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 20px; }

.landing__header-title {

  font-size: 60px;
  line-height: 70px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 100px; }

.features {
  background: #000;
  padding-bottom: 100px; }

.features__main-title {
  text-align: center;
  color: #fff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  margin-bottom: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto; }

.features__text {
  max-width: 850px;
  padding-top: 60px;
  padding-bottom: 60px;
  font-size: 22px;
  line-height: 36px;
  color: #b3b3b3;
  margin: 0 auto;
  text-align: center; }

.features__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px; 
  justify-content: space-around;}

.features__item {
  width: calc(50% - 15px);
  padding-top: 15px;
  position: relative;
  margin-bottom: 65px; }
  .features__item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #e02020;
    -webkit-transition: width .3s ease-in-out;
    -o-transition: width .3s ease-in-out;
    transition: width .3s ease-in-out; }
  .features__item:hover:before {
    content: '';
    width: 100px; }

.features__item--3 {
	margin-left: 7px;
  width: calc(100% / 3 - 10px); }

.features__item--full {
  width: 100%; }

.features__item--full:nth-child(2n) {
  padding-left: 0; }

.features__title {

  font-size: 30px;
  line-height: 36px;
  margin-bottom: 10px;
  color: #fff; }

.features__description {
  font-size: 20px;
  line-height: 32px;
  color: #b3b3b3; }

.features2 {
  background-image: url("../img/v40-star-bg.jpg");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-top: 50px;
  padding-bottom: 150px;
  text-align: center; }

.features2__description,
.features2__section-subtitle {
  font-size: 22px;
  line-height: 36px;
  color: #b3b3b3; }

.features2__title,
.features2__section-title {
  padding-top: 18px;
  font-size: 66px;
  line-height: 92px;
  color: #fff; }

.features2__img {
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 150px; }

.features2__description {
  padding-top: 35px; }

.features2 video {
  max-width: 100%;
  margin: 50px auto; }

.left-bg {
  position: relative;
  height: 1280px;
  background: -webkit-gradient(linear, left top, left bottom, from(#0c0c0c), color-stop(84%, #1c1c1c), to(#282828));
  background: -o-linear-gradient(top, #0c0c0c, #1c1c1c 84%, #282828);
  background: linear-gradient(180deg, #0c0c0c, #1c1c1c 84%, #282828);
  overflow: hidden; }

.left-bg__img {
  position: absolute;
  width: 2500px;
  top: 80px;
  right: 50%;
  height: 1100px;
  -webkit-transform: translateX(600px);
      -ms-transform: translateX(600px);
          transform: translateX(600px);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position-x: right; }

.left-bg__content {
  width: 600px;
  margin-left: 50%;
  margin-top: 700px;
  position: relative;
  z-index: 2; }

.left-bg__title {
  font-size: 50px;
  line-height: 60px; }

.left-bg__description {
  color: #b3b3b3;
  padding-top: 30px;
  font-size: 22px;
  line-height: 36px; }

.right-bg {
  position: relative;
  height: 1280px;
  background: #000;
  overflow: hidden; }

.right-bg__img {
  position: absolute;
  width: 200vw;
  top: -26px;
  left: 50%;
  height: 1440px;
  -webkit-transform: translateX(-1100px);
  -ms-transform: translateX(-1100px);
  transform: translateX(-1100px);
  background-repeat: no-repeat;
  background-size: 3436px 1933px;
  background-position-x: left;
  background-position-y: bottom; }

.right-bg__content {
  width: 600px;
  margin-right: 50%;
  margin-top: 700px;
  position: relative;
  z-index: 2; }

.right-bg__title {
  font-size: 50px;
  line-height: 60px; }

.right-bg__description {
  color: #b3b3b3;
  padding-top: 30px;
  font-size: 22px;
  line-height: 36px; }

.text-content {
  padding-top: 25px; }
  .text-content .section__title {
    padding-top: 30px;
    padding-bottom: 80px; }

.text-content__subtitle {
  color: #b3b3b3;
  font-size: 40px;
  line-height: 56px; }

.tech-video-play {
  width: 100%;
  height: calc(100vh - 100px); }
  .tech-video-play video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }

.modular {
  padding-top: 150px;
  padding-bottom: 150px; }
  .modular .section__title {
    padding-top: 30px;
    padding-bottom: 80px; }
  .modular img {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto; }

.propellers {
  padding-bottom: 150px; }
  .propellers .section__title {
    padding-top: 30px; }

.propellers__tabs {
  padding-top: 80px; }
  .propellers__tabs .tabs {
    width: 320px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .propellers__tabs .tab {
    display: inline-block;
    text-align: center;
    width: 160px;
    color: #fff;
    cursor: pointer;
    padding-bottom: 24px;
    letter-spacing: 0;
    font-size: 17px;
    line-height: 22px;
    position: relative; }
    .propellers__tabs .tab:after {
      display: block;
      content: '';
      width: 100%;
      height: 6px;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      background: #b3b3b3;
      cursor: pointer; }
    .propellers__tabs .tab.active:after {
      background: #e02020; }

.ip67 .section__title {
  padding-bottom: 80px; }

.x4 {
  background-image: url("../img/v40-star-bg.jpg");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-top: 150px;
  padding-bottom: 150px;
  text-align: center; }
  .x4 .section__subtitle {
    padding-top: 40px; }

.x4-video .section__subtitle {
  font-size: 22px;
  line-height: 36px;
  margin-top: 32px;
  margin-bottom: 80px; }

.x4-video .features__items {
  padding-top: 80px; }

.radar {
  padding-top: 150px;
  padding-bottom: 150px; }

.radar__tabs .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding-top: 80px; }

.radar__tabs .tab {
  padding-left: 15px;
  padding-right: 15px;
  font-size: 20px;
  line-height: 24px;
  color: #2D2D2D;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }
  .radar__tabs .tab.active {
    color: #fff; }

.camera .section__title {
  padding-bottom: 80px; }

.control {
  padding-top: 100px;
  padding-bottom: 100px; }
  .control .section__subtitle {
    font-size: 22px;
    line-height: 36px; }

.control__tabs {
  padding-top: 80px; }
  .control__tabs .tab_item {
    border-radius: 28px;
    overflow: hidden; }
    .control__tabs .tab_item img {
      width: 100%;
      height: 100%;
      max-height: 650px;
      -o-object-fit: cover;
         object-fit: cover; }
  .control__tabs .tabs {
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .control__tabs .tabs .tab {
      display: inline-block;
      text-align: center;
      width: 33.33%;
      color: #fff;
      cursor: pointer;
      padding-bottom: 24px;
      letter-spacing: 0;
      font-size: 22px;
      line-height: 36px;
      position: relative; }
      .control__tabs .tabs .tab:after {
        display: block;
        content: '';
        width: 100%;
        height: 6px;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background: #b3b3b3;
        cursor: pointer; }
      .control__tabs .tabs .tab.active:after {
        background: #e02020; }

.sowing .wrapper {
  padding-bottom: 80px; }

.sowing .section__title {
  text-align: center; }

.sowing .section__subtitle {
  text-align: center;
  font-size: 33px;
  padding-top: 40px; }

.block-scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#0c0c0c), color-stop(84%, #1c1c1c), to(#282828));
  background: -o-linear-gradient(top, #0c0c0c, #1c1c1c 84%, #282828);
  background: linear-gradient(180deg, #0c0c0c, #1c1c1c 84%, #282828);
  padding: 100px 0; }
  .block-scroll.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 90; }
  .block-scroll .wrapper-fluid {
    padding-left: 150px;
    padding-right: 150px; }

.block-scroll__inner {
  position: relative; }

.block-scroll__item-left {
  width: 50%; }

.block-scroll__item-right {
  width: 50%; }

.block-scroll__img-item {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.block-scroll__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative; }

.block-scroll__item + .block-scroll__item {
  margin-top: 0; }

.block-scroll__title {
  position: relative;
  padding-top: 35px;
  font-size: 50px;
  line-height: 60px; }
  .block-scroll__title img {
    display: block; }
  .block-scroll__title:before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 94px;
    height: 4px;
    background: #e02020;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }

.block-scroll__description {
  margin-top: 32px;
  color: #b3b3b3;
  font-size: 22px;
  line-height: 36px; }

.block-scroll__item.active {
  opacity: 1; }

.block-scroll__right:hover .block-scroll:before {
  width: 134px; }

.battery {
  padding: 150px 0;
  background: #000; }

.battery__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .battery__inner .section__title {
    margin-top: 27px; }

.battery__left {
  width: 65%; }

.battery__right {
  width: 35%;
  text-align: center; }
  .battery__right img {
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto; }

.battery__description {
  margin-top: 30px;
  color: #b3b3b3;
  font-size: 22px;
  line-height: 36px; }

.battery__explain {
  width: 400px;
  font-size: 12px;
  margin-top: 20px;
  color: #616161;
  line-height: 18px;
  text-align: justify; }

.cta-text {
  background-image: url("../img/v40-star-bg.jpg");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center; }

.cta-text__title {
  padding: 250px 0;
  font-size: 66px;
  line-height: 100px;
  color: #fff; }

.cta-form {
  background: #f7f7f7;
  padding-bottom: 100px; }
  .cta-form form {
    display: block;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto; }
  .cta-form label {
    display: block;
    font-size: 28px;
    line-height: 34px;
    color: #000;
    margin-bottom: 35px; }
  .cta-form .input-wrap {
    margin-bottom: 35px; }
  .cta-form input {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #fff;
    width: 100%;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0 16px;
    outline: none; }
  .cta-form input[type=submit] {
    display: block;
    width: 178px;
    height: 38px;
    font-size: 16px;
    line-height: 1.15;
    background: #2d2d2d;
    border-radius: 4px;
    color: #fff;
    padding: 8px 40px;
    cursor: pointer;
    text-align: center;
    margin: 80px auto 0;
    border: 0; }

.cta-form__title {
  text-align: center;
  line-height: 92px;
  font-size: 66px;
  font-weight: 600;
  color: #000;
  padding-top: 115px;
  color: #000; }

.cta-form__body {
  padding-top: 115px;
  color: #000; }

.cta-form__bottom {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.35);
  margin-bottom: 35px; }

/*************************** end v40 landing ***********************/
/*************************** p100 landing ***********************/
.slider {
  padding: 100px 0; }

.slick-dots li,
.slick-dots li button {
  width: 40px;
  height: 10px; }

.slick-dots li button:before {
  background: #fff;
  opacity: 0.5;
  width: 40px;
  height: 6px;
  font-size: 0;
  display: block;
  border-radius: 5px; }

.slick-dots li.slick-active button:before {
  color: #fff;
  opacity: 1; }

.slider__item-img {
	max-width: 95%;
  width: 100%;
  height: 600px;
  margin-bottom: 35px; }
  .slider__item-img img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }

.slider__item-description {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0;
  text-align: center;
  font-size: 22px;
  line-height: 28px; }

.linear-gradient-bg {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0c0c0c), color-stop(52%, #1c1c1c), to(#282828));
  background-image: -o-linear-gradient(top, #0c0c0c, #1c1c1c 52%, #282828);
  background-image: linear-gradient(180deg, #0c0c0c, #1c1c1c 52%, #282828); }

.left-to-right-gradient {
  background: -webkit-gradient(linear, left top, right top, from(#0c0c0c), color-stop(52%, #1c1c1c), to(#282828));
  background: -o-linear-gradient(left, #0c0c0c, #1c1c1c 52%, #282828);
  background: linear-gradient(90deg, #0c0c0c, #1c1c1c 52%, #282828); }

.video {
  padding: 100px 0; }

.video__logo {
  display: block;
  max-width: 450px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px; }

.video__title {
	max-width: 95%;
  font-size: 50px;
  line-height: 60px;
  color: #fff;
  text-align: center; }

.video__description {
	max-width: 95%;
  font-size: 22px;
  line-height: 36px;
  color: #b3b3b3;
  text-align: center;
  margin-bottom: 35px; }

.video__block {
  margin-bottom: 35px; }
  .video__block video {
	  max-width: 95%;

    margin-left: auto;
    margin-right: auto;
    border-radius: 5px; }

.video__features .features__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
        justify-content: space-around;
  gap: 20px; 
  margin-left: 7px;
  max-width: 95%;}

.video__features .features__items--2 {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto; }

.video__features .features__item--3 {
  width: calc(100%/3 - 14px); }

.video__features .features__item--2 {
  width: calc(100%/2 - 10px); }

.video__features .features__item:nth-child(2n) {
  padding-left: 0; }

.features__item--centered {
  text-align: center; }

.features__items--without-red .features__item:before {
  display: none; }

.video__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around; }

.video__icon-block {
  width: 25%;
  padding: 0 15px;
  text-align: center; }

.video__icon {
  margin-bottom: 10px; }

.video__icon-title {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  line-height: 34px; }

.video__icon-description {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 400;
  color: #b3b3b3;
  line-height: 28px; }

.full-width-bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0; }

.full-width-bg__inner {
  padding: 0 150px; }

.full-width-bg__logo {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 35px; }

.full-width-bg__title {
  font-size: 66px;
  line-height: 92px;
  color: #fff;
  font-weight: 600;
  text-align: center; }

.full-width-bg__description {
  max-width: 850px;
  font-size: 22px;
  line-height: 36px;
  color: #b3b3b3;
  margin: 0 auto;
  text-align: center; }

.full-width-bg__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.full-width-bg__item {
  width: calc(50% - 50px);
  text-align: left;
  margin-bottom: 10px; }
  .full-width-bg__item h3 {
    max-width: 600px;
    font-size: 36px;
    line-height: 50px;
    padding-top: 16px;
    padding-bottom: 15px;
    color: #fff; }
  .full-width-bg__item span {
    max-width: 600px;
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: #b3b3b3; }
  .full-width-bg__item:nth-child(2n) h3, .full-width-bg__item:nth-child(2n) span {
    margin-right: 0;
    margin-left: auto; }

.three-items {
  padding: 100px 0; }

.three-items__description {
  font-size: 22px;
  font-weight: 400;
  color: #b3b3b3;
  line-height: 36px;
  margin-bottom: 100px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  text-align: center; }

.three-items__title {
  text-align: center;
  color: #fff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  margin-bottom: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto; }

.three-items__blocks {
  width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  margin: 0 auto; }

.three-items__block {
  width: calc(100% / 3 - 30px); }

.three-items__img {
  width: 100%;
  height: 350px;
  margin-bottom: 35px;
  text-align: center; }
  .three-items__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    margin-left: auto;
    margin-right: auto; }

.three-items__block-title {
  text-align: center;
  font-size: 36px;
  color: #f4f4f4;
  line-height: 50px; }

.three-items__block-subtitle {
  margin-top: 20px;
  font-size: 22px;
  color: #b3b3b3;
  line-height: 36px;
  letter-spacing: 1px;
  text-align: center;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto; }

.block-with-img {
  padding: 100px 0; }

.block-with-img__logo {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 35px; }

.block-with-img__title {
  font-size: 46px;
  line-height: 68px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 35px; }

.block-with-img__subtitle {
  text-align: center;
  font-size: 22px;
  line-height: 36px;
  color: #b3b3b3;
  margin: 0 auto;
  padding-bottom: 60px; }

.block-with-img__picture {
  max-width: 1200px;
  height: auto;
  margin: 0 auto; }

.block-with-img__features {
  margin-top: 100px; }

.slider--info {
  padding: 100px 0;
  background: #0A0A0A; }
  .slider--info .slider__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 100px 20px; }
  .slider--info .slider__item-info {
    width: 550px;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .slider--info .slider__item-info-title {
    font-size: 36px;
    line-height: 44px;
    color: #fff;
    margin-bottom: 25px; }
  .slider--info .slider__item-info-description {
    font-size: 18px;
    line-height: 26px;
    color: #b3b3b3; }
    .slider--info .slider__item-info-description ul {
      margin-left: 25px; }
    .slider--info .slider__item-info-description li {
      list-style-type: disc;
      margin-bottom: 10px; }
  .slider--info .slider__item-img {
    width: auto;
    height: 350px; }
    .slider--info .slider__item-img img {
      -o-object-fit: contain;
         object-fit: contain; }

.img-left-with-icons {
  background: #151515;
  padding: 100px 0; }

.img-left-with-icons__title {
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto; }

.img-left-with-icons__subtitle {
  font-size: 22px;
  line-height: 36px;
  color: #b3b3b3;
  margin: 0 auto;
  padding-bottom: 60px;
  max-width: 770px;
  text-align: center; }

.img-left-with-icons__item {
  padding-top: 150px; }

.img-left-with-icons__item-title {
  font-size: 40px;
  line-height: 45px;
  color: #fff;
  padding-left: 440px;
  margin-bottom: 10px; }

.img-left-with-icons__item-inner {
	    max-width: 95%;
  background: #000;
  padding: 15px 15px 15px 440px;
  position: relative; }

.img-left-with-icons__img {
	max-width: 95%;
  width: 300px;
  position: absolute;
  left: 15px;
  bottom: 15px;
  border-radius: 20px;
  overflow: hidden; }
  .img-left-with-icons__img img {
    position: relative;
    z-index: 3; }

.img-left-with-icons__img-slider {
  width: 262px;
  height: 100%;
  position: absolute;
  left: 20px;
  top: 18px;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden; }
  .img-left-with-icons__img-slider img {
    border-radius: 20px; }

.img-left-with-icons__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px; }

.img-left-with-icons__icon {
  width: calc(50% - 25px);
  margin-top: 30px; }
  .img-left-with-icons__icon:last-child {
    margin-bottom: 30px; }

.img-left-with-icons__icon-img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px; }
  .img-left-with-icons__icon-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain; }

.img-left-with-icons__description {
  color: #b3b3b3;
  font-size: 16px;
  line-height: 22px; }

.slider-full {
  padding: 100px 0; }
  .slider-full .wrapper-fluid {
    padding-left: 150px;
    padding-right: 150px; }

.slider-full__title {
  text-align: center;
  color: #fff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  margin-bottom: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto; }

.slider-full__description {
  max-width: 1200px;
  text-align: center;
  font-size: 22px;
  line-height: 36px;
  font-weight: 400;
  color: #b3b3b3;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto; }

.slider-full__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.slider-full__item-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 450px;
  width: 300px; }
  .slider-full__item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain; }

.slider-full__item-content {
  padding-left: 190px; }

/*************************** end p100 landing ***********************/
/*************************** m500 landing **************************/
.block-with-2x2 {
  padding: 100px 0; }

.block-with-2x2__title {
  text-align: center;
  color: #fff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  margin-bottom: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto; }

.block-with-2x2__description {
  max-width: 1200px;
  text-align: center;
  font-size: 22px;
  line-height: 36px;
  font-weight: 400;
  color: #b3b3b3;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto; }

.block-with-2x2__description-img {
  margin-bottom: 50px; }

.block-with-2x2__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.block-with-2x2__item {
  width: 50%;
  padding: 50px; }

.block-with-2x2__item:nth-child(1),
.block-with-2x2__item:nth-child(2) {
  border-bottom: 1px solid #363434; }

.block-with-2x2__item:nth-child(2n-1) {
  border-right: 1px solid #363434; }

.block-with-2x2__img {
  margin-bottom: 35px;
  text-align: center; }

.block-with-2x2__item-title {
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  line-height: 50px;
  text-align: center; }

.block-with-2x2__item-description {
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 18px; }
  .block-with-2x2__item-description p {
    margin-top: 9px;
    font-size: 12px;
    font-weight: 400;
    color: #b3b3b3;
    line-height: 18px; }
  .block-with-2x2__item-description ul {
    list-style: disc;
    list-style-position: inside;
    font-size: 18px;
    font-weight: 400;
    color: #b3b3b3;
    line-height: 28px; }

.block-with-img-text {
  padding: 100px 0; }

.block-with-img-text__title {
  text-align: center;
  color: #fff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto; }

.block-with-img-text__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px; }

.block-with-img-text__item:not(:last-child) {
  margin-bottom: 60px; }

.block-with-img-text__item:nth-child(2n+1) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse; }

.block-with-img-text__left {
  max-width: 700px;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0; }

.block-with-img-text__item-title {
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  line-height: 55px; }

.block-with-img-text__item-description {
  margin-top: 12px;
  font-size: 22px;
  font-weight: 400;
  color: #b3b3b3;
  line-height: 36px; }

.block-with-img-full-text {
  padding: 100px 0; }

.block-with-img-full-text__item {
  min-height: 675px;
  border-radius: 15px;
  padding: 80px;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; }

.block-with-img-full-text__content {
  position: absolute;
  bottom: 55px;
  left: 80px;
  max-width: 600px; }

.block-with-img-full-text__title {
  text-align: center;
  color: #fff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto; }

.block-with-img-full-text__item:not(:last-child) {
  margin-bottom: 60px; }

.block-with-img-full-text__item-title {
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  line-height: 35px;
  margin-bottom: 28px; }

.block-with-img-full-text__item-description {
  margin-top: 12px;
  font-size: 19px;
  font-weight: 400;
  color: #b3b3b3;
  line-height: 26px; }

.block-with-note {
  padding: 100px 0; }

.block-with-note__text {
  font-size: 12px;
  color: #b3b3b3;
  line-height: 18px; }
  .block-with-note__text strong, .block-with-note__text b {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px; }

.block-with-note__title {
  color: #b3b3b3;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 15px; }

/***********************************************************************************************************************************/
@media only screen and (max-width: 1440px) {
  .features2__title,
  .features2__section-title,
  .video__title,
  .full-width-bg__title,
  .three-items__title,
  .slider-full__title,
  .img-left-with-icons__title {
    font-size: 50px;
    line-height: 65px;
    font-weight: 500;
    margin-bottom: 25px; }
  .full-width-bg__inner,
  .slider-full .wrapper-fluid {
    padding: 0 75px; }
  .full-width-bg__item {
    width: calc(50% - 100px); }
  .full-width-bg__item h3 {
    font-size: 30px;
    line-height: 40px; }
  .full-width-bg__items {
    -webkit-column-gap: 150px;
       -moz-column-gap: 150px;
            column-gap: 150px; }
  .video__block,
  .video__features {
    max-width: 1000px;
    height: auto;
    margin-left: auto;
    margin-right: auto; }
  .features__title,
  .three-items__block-title {
    font-size: 28px;
    line-height: 38px; }
  .three-items__block-subtitle,
  .features__description {
    font-size: 18px;
    line-height: 28px; }
  .block-with-img__subtitle {
    padding-bottom: 25px; }
  .slider-full__item-content {
    padding-left: 100px; } }

@media only screen and (max-width: 1400px) {
  .right-bg {
    height: 950px; }
  .right-bg__img {
    width: 190vw;
    height: 1080px;
    background-size: 2750px 1550px; }
  .right-bg__content {
    margin-top: 400px; }
  .control__tabs {
    width: 65%;
    margin-left: auto;
    margin-right: auto; }
  .block-scroll__title {
    font-size: 30px;
    line-height: 40px; }
    .block-scroll__title img {
      margin-bottom: 20px; }
  .block-scroll__description,
  .battery__description {
    font-size: 18px;
    line-height: 30px; }
  .battery {
    padding: 100px 0; }
  .cta-text__title {
    padding: 100px 0;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; } }

@media only screen and (max-width: 1220px) {
  .wrapper {
    width: 992px; }
  .slick-arrow {
    display: none !important; }
  .features2__title,
  .features2__section-title,
  .video__title,
  .full-width-bg__title,
  .three-items__title,
  .slider-full__title,
  .img-left-with-icons__title {
    font-size: 45px;
    line-height: 55px; }
  .img-left-with-icons__item-title {
    font-size: 36px;
    line-height: 46px;
    padding-left: 380px; }
  .img-left-with-icons__item-inner {
    padding-left: 380px; }
  .nav-pc {
    width: 100%; }
  .header__title {
    font-size: 45px;
    line-height: 55px; }
  .catItem__item {
    width: calc(100% / 4 - 40px); }
  .footer__inner-left {
    width: 70%; }
  .footer__inner-right {
    width: 30%; }
  .footer__menu {
    margin-right: 20px;
    max-width: calc(30% - 20px); }
  .products__item-img {
    height: 200px; }
  .products__item-title {
    font-size: 22px;
    line-height: 28px; }
  .tech__title {
    padding-top: 40px;
    padding-bottom: 90px; }
  .tech__sizes img {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto; }
  .single__box {
    max-width: 100%;
    width: 70%; }
  .single__sidebar {
    width: calc(30% - 20px);
    margin-left: 20px; }
  .single__content-title {
    font-size: 34px;
    line-height: 48px;
    padding-top: 20px;
    padding-bottom: 40px; }
  .single__content {
    padding: 25px; }
  .landing__header {
    height: calc(100vh - 150px); }
  .landing__header-title {
    font-size: 55px; }
  .features {
    padding-bottom: 100px; }
  .features__title {
    font-size: 30px;
    line-height: 46px; }
  .features2__description,
  .features2__section-subtitle {
    font-size: 23px;
    line-height: 42px; }
  .left-bg__img {
    width: 1900px;
    top: -50px;
    right: 60%;
    height: 800px; }
  .left-bg__content {
    width: 50%;
    margin-left: 45%;
    margin-top: 430px; }
  .landing .section__title {
    font-size: 45px;
    line-height: 60px; }
  .left-bg {
    height: auto;
    padding-bottom: 150px; }
  .x4 {
    padding-top: 100px;
    padding-bottom: 100px; }
    .x4 .section__title {
      text-align: center; }
    .x4 .section__subtitle {
      padding-top: 30px; }
  .radar {
    padding-top: 100px;
    padding-bottom: 100px; }
  .block-scroll__item + .block-scroll__item {
    margin-top: 100px; }
  .navigation__popup {
    width: 100%; }
  .menu-item-product:hover .navigation__popup {
    height: 200px; }
  .navigation__products-item {
    width: calc(100% / 4 - 30px);
    margin-left: 15px;
    margin-right: 15px; }
  .block-scroll .wrapper-fluid {
    padding-left: 75px;
    padding-right: 75px; }
  .three-items__img {
    height: 190px;
    margin-bottom: 20px; }
  .three-items__blocks {
    gap: 15px; }
  .three-items__block-subtitle,
  .features__description {
    font-size: 16px;
    line-height: 20px; }
  .three-items__block-subtitle {
    max-width: 95%; }
  .block-with-img-text__left {
    max-width: 50%; } }

@media only screen and (max-width: 1024px) {
  .wrapper {
    width: 768px;
    padding-left: 15px;
    padding-right: 15px; }
  .catItems__items {
    margin-left: 0;
    margin-right: 0; }
  .catItem__item {
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% / 2 - 30px);
    margin-bottom: 35px; }
  .footer__inner-left {
    width: 60%; }
  .footer__inner-right {
    width: 40%; }
  .category__item {
    width: calc(100% / 3 - 20px); }
  .landing__header .landing__header-content {
    padding-top: 50px; }
  .landing__header-title {
    font-size: 45px;
    line-height: 55px;
    margin-bottom: 50px; }
  .features {
    padding-bottom: 75px; }
  .features__title {
    font-size: 20px;
    line-height: 30px; }
  .features__text {
    padding: 50px 0; }
  .features__description {
    font-size: 16px;
    line-height: 22px; }
  .features2 {
    padding-bottom: 75px; }
  .features2__title, .features2__section-title {
    padding-top: 0;
    font-size: 45px;
    line-height: 55px; }
  .features2__img {
    margin-bottom: 75px; }
  .landing .section__title {
    font-size: 35px;
    line-height: 50px; }
  .landing .section__subtitle {
    font-size: 26px;
    line-height: 36px; }
  .text-content .section__title {
    padding-top: 15px;
    padding-bottom: 75px; }
  .right-bg__content {
    margin-top: 520px; }
  .modular,
  .radar,
  .control,
  .block-scroll,
  .battery {
    padding: 75px 0; }
  .propellers {
    padding-bottom: 75px; }
  .x4 {
    padding: 75px 0; }
  .x4-video .features__items {
    padding-top: 75px; }
  .features__item {
    margin-bottom: 50px; }
  .control__tabs {
    width: 90%; }
  .control__tabs .tabs .tab {
    font-size: 18px;
    line-height: 24px; }
  .sowing .wrapper {
    padding-bottom: 75px; }
  .battery__inner .section__title {
    margin-top: 0; }
  .cta-text__title {
    padding: 0; }
  .cta-text__title {
    font-size: 45px;
    line-height: 65px; }
  .cta-form__title {
    padding-top: 75px;
    font-size: 45px;
    line-height: 65px; }
  .cta-form__body {
    padding-top: 75px; }
  .cta-form {
    padding-bottom: 75px; }
  .ip67 .section__title {
    padding-bottom: 75px; }
  .main-video-popup {
    max-width: 90vw;
    width: 90vw; }
  .download .tab img {
    width: 200px; }
  .download {
    width: 100%; }
  .faq {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
  .features__main-title {
    margin-bottom: 15px; }
  .block-with-2x2__item-title {
    font-size: 24px;
    line-height: 30px; }
  .block-with-2x2__item-description {
    max-width: 100%; }
  .video__icon-title {
    font-size: 18px;
    line-height: 24px; }
  .block-with-img__features {
    margin-top: 50px; }
  .block-with-img-full-text,
  .mission,
  .block-scroll,
  .video,
  .full-width-bg,
  .three-items,
  .block-with-img,
  .block-with-img-text,
  .slider,
  .slider--info,
  .slider-full,
  .img-left-with-icons,
  .block-with-2x2,
  .block-with-note,
  .features2 {
    padding: 50px 0; }
  .features {
    padding-bottom: 50px; } }

@media only screen and (max-width: 992px) {
  .wrapper {
    width: 768px; }
  .block-with-2x2__title,
  .features__main-title,
  .block-with-img-text__title,
  .block-with-img-full-text__title,
  .features2__title,
  .features2__section-title,
  .video__title,
  .full-width-bg__title,
  .three-items__title,
  .slider-full__title,
  .img-left-with-icons__title,
  .block-with-img__title {
    font-size: 38px;
    line-height: 45px;
    font-weight: 500; }
  .features2__description,
  .features2__section-subtitle {
    font-size: 20px;
    line-height: 28px; }
  .x4-video .section__title img {
    max-width: 190px; }
  .landing .section__subtitle {
    font-size: 20px;
    line-height: 28px; }
  .radar__tabs .tabs {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .radar__tabs .tab {
    padding-left: 25px;
    padding-right: 25px; }
  .block-scroll .wrapper-fluid {
    padding-left: 15px;
    padding-right: 15px; }
  .block-scroll__item-left {
    width: 60%; }
  .block-scroll__item-right {
    width: 40%; }
  .block-scroll__title img {
    max-width: 190px; }
  .block-scroll__item:nth-child(2n) .block-scroll__item-left {
    width: 40%;
    padding-right: 0; }
  .block-scroll__item:nth-child(2n) .block-scroll__item-right {
    width: 60%;
    padding-left: 15px; }
  .battery__left {
    padding-right: 30px; }
  .cta-form form {
    max-width: 80%; }
  .features__items {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px; }
  .features__item--3 {
    width: calc(50% - 30px); }
  .video__features .features__item--3 {
    width: calc(50% - 30px); }
  .full-width-bg__items {
    gap: 30px; }
  .full-width-bg__item {
    width: calc(50% - 30px); }
  .three-items__blocks {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px; }
  .three-items__block {
    width: calc(50% - 30px); }
  .slider--info .slider__item {
    padding: 0 20px; }
  .img-left-with-icons__item {
    padding-top: 100px; }
  .img-left-with-icons__icons {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px; }
  .img-left-with-icons__icon {
    width: calc(50% - 15px); }
  .img-left-with-icons__item-title {
    font-size: 28px;
    line-height: 38px; }
  .slider-full__item-img {
    height: 250px;
    width: 150px; }
  .slider-full__item-content {
    padding-left: 50px; } }

@media only screen and (max-width: 768px) {
  .header {
    height: 75vh;
    position: relative; }
  .wrapper {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
  .header__title {
    font-size: 30px;
    line-height: 36px; }
  .features2__title,
  .features2__section-title,
  .video__title,
  .full-width-bg__title,
  .three-items__title,
  .slider-full__title,
  .img-left-with-icons__title,
  .block-with-img__title,
  .block-with-2x2__title,
  .features__main-title,
  .block-with-img-full-text__title,
  .block-with-img-text__title,
  .block-with-img-full-text__item-title {
    font-size: 28px;
    line-height: 35px; }
  .features__text,
  .three-items__description,
  .features2__description,
  .features2__section-subtitle,
  .video__description,
  .full-width-bg__description,
  .block-with-img__subtitle,
  .img-left-with-icons__subtitle,
  .slider-full__description,
  .block-with-2x2__description,
  .block-with-img-full-text__item-description,
  .block-with-img-text__item-description {
    font-size: 16px;
    line-height: 22px; }
  .nav-pc-wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99; }
    .nav-pc-wrap .wrapper {
      padding-left: 0;
      padding-right: 0; }
  .nav-pc {
    border-radius: 0;
    background: #F0EFEE;
    height: 45px;
    z-index: 100; }
  .navigation {
    display: none; }
  .nav-hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .info-container {
    padding-top: 70px; }
  .page-header {
    height: 250px; }
  .page-header__title {
    font-size: 34px;
    line-height: 40px; }
  .products__item {
    width: calc(50% - 10px);
    margin-right: 10px; }
  .footer__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 35px; }
  .footer__inner-left {
    width: 100%;
    margin-bottom: 35px; }
  .footer__inner-right {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
  .category__item {
    width: calc(100% / 2 - 20px); }
  .page404 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .page404__left {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }
  .page404__right {
    width: 100%;
    padding-left: 0;
    text-align: center;
    margin-bottom: 35px; }
  .page404__button {
    max-width: 90%;
    margin-right: auto;
    margin-left: auto; }
  .contacts__header {
    padding-top: 70px;
    padding-bottom: 50px; }
  .contacts__title {
    font-size: 80px;
    line-height: 1.2; }
  .contacts__item {
    width: 50%; }
  .features__item {
    width: 100%;
    text-align: center;
    padding-right: 0;
    margin-bottom: 15px; }
    .features__item:nth-child(2n) {
      padding-left: 0; }
  .features__item:before {
    left: calc(50% - 30px); }
  .left-bg__img {
    width: 1000px;
    top: -50px;
    right: 120%;
    height: 430px; }
  .left-bg__content {
    width: 70%;
    margin-left: 30%;
    margin-top: 180px; }
  .left-bg {
    padding-bottom: 75px; }
  .right-bg__img {
    width: 100%;
    height: 450px;
    background-size: cover;
    top: -50px;
    left: auto;
    right: -150px;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0); }
  .right-bg__content {
    width: 90%;
    margin-top: 240px; }
  .right-bg {
    height: auto;
    padding-bottom: 75px; }
  .landing .section__title {
    font-size: 30px;
    line-height: 45px; }
  .x4-video .section__title img {
    max-width: 140px; }
  .control__tabs .tabs .tab {
    font-size: 14px;
    line-height: 20px; }
  h4.section__subtitle br {
    display: none; }
  .block-scroll__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .block-scroll__item-left {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }
    .block-scroll__item-left .block-scroll__img-item {
      max-width: 80%;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 35px; }
  .block-scroll__item-right {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; }
    .block-scroll__item-right .block-scroll__img-item {
      max-width: 80%;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 35px; }
  .block-scroll__item:nth-child(2n) .block-scroll__item-left {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; }
    .block-scroll__item:nth-child(2n) .block-scroll__item-left .block-scroll__img-item {
      max-width: 80%;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 35px; }
  .block-scroll__item:nth-child(2n) .block-scroll__item-right {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }
    .block-scroll__item:nth-child(2n) .block-scroll__item-right .block-scroll__img-item {
      max-width: 80%;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 35px; }
  .battery__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .battery__left {
    width: 100%;
    margin-bottom: 75px; }
  .battery__right {
    width: 100%; }
  .battery__explain {
    width: 100%; }
  .download .download__filename {
    width: 60%;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .download .download__filedate {
    width: 40%;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .download .download__item > div {
    width: 100%; }
  .faq .faq__item-label {
    font-size: 16px;
    line-height: 22px; }
  .download .tab img {
    width: 100%;
    max-width: 100%; }
  .download .tab {
    white-space: normal; }
  .download .download__item {
    padding-left: 0;
    padding-right: 0; }
  .download .tab_item__title,
  .faq .faq__title {
    font-size: 22px;
    line-height: 32px;
    padding: 25px 0; }
  .catItem__title {
    padding-left: 0;
    padding-right: 0; }
  .tech-video-play {
    height: 250px; }
  .landing__header video {
    margin-top: 45px;
    width: 100%;
    height: 100%; }
  .full-width-bg__inner,
  .slider-full .wrapper-fluid {
    padding-left: 15px;
    padding-right: 15px; }
  .video__logo {
    max-width: 90%; }
  .img-left-with-icons__img {
    width: 220px;
    position: relative;
    left: auto;
    bottom: auto;
    margin-left: auto;
    margin-right: auto; }
  .img-left-with-icons__img-slider {
    width: 182px; }
  .img-left-with-icons__item-title {
    padding: 0 15px; }
  .img-left-with-icons__item-inner {
    padding: 30px; }
  .landing__header {
    height: calc(100vh - 45px); }
  .slider--info .slider__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .slider--info .slider__item-info {
    width: 100%;
    margin-bottom: 35px; }
  .slider--info .slider__item-info-title {
    font-size: 28px;
    line-height: 36px; }
  .slider-full__item-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .slider-full__item-content {
    padding-left: 15px;
    padding-right: 15px; }
  .slider-full__item-img {
    margin-bottom: 35px; }
  .slider__item-img {
    height: 300px; }
  .video__features .features__item--2,
  .video__features .features__item--3 {
    width: 100%; }
  .three-items__img {
    height: auto; }
  .three-items__block-title {
    font-size: 14px;
    line-height: 17px; }
  .three-items__block-subtitle {
    font-size: 12px;
    line-height: 16px;
    max-width: 100%;
    margin-top: 10px; }
  .three-items__blocks {
    gap: 15px; }
  .full-width-bg--x4 {
    display: none; }
  .block-with-img-text__item {
    display: block; }
  .block-with-img-full-text__item-title,
  .block-with-img-text__item-title {
    font-size: 24px;
    line-height: 30px; }
  .block-with-img-text__item:not(:last-child) {
    margin-bottom: 50px; }
  .block-with-img-text__left {
    max-width: 100%;
    width: 100%; }
    .block-with-img-text__left img {
      margin-bottom: 20px;
      width: 100%; }
  .block-with-img-text__right {
    max-width: 100%;
    width: 100%; }
    .block-with-img-text__right img {
      margin-bottom: 20px;
      width: 100%; }
  .block-with-2x2__item {
    padding: 25px; }
  .three-items__block {
    width: 100%;
    margin-bottom: 15px; }
  .block-with-img-full-text__item {
    min-height: 400px;
    padding: 20px; }
  .block-with-img-full-text__content {
    bottom: 20px;
    left: 20px;
    max-width: calc(100% - 20px - 30px); }
  .block-with-img-full-text__item-title {
    margin-bottom: 15px; } }

@media only screen and (max-width: 750px) {
  .img-blocks {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .img-blocks__item {
    width: 100%;
    margin-bottom: 10px; }
    .img-blocks__item:last-child {
      margin-bottom: 0; }
  .popup-close {
    right: 0; } }

@media only screen and (max-width: 576px) {
  .products__item {
    width: 100%;
    margin-right: 0; }
  .tech__item-left {
    padding-right: 0;
    width: 100%; }
  .tech__item-right {
    width: 100%;
    padding-left: 0; }
  .tech__sizes img {
    margin-left: auto;
    margin-right: auto; }
  .tech__title {
    font-size: 28px;
    line-height: 40px; }
  .footer__menus {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .footer__menu {
    max-width: 50%;
    width: 50%;
    margin-bottom: 35px; }
  .footer__menu-title {
    font-size: 18px;
    line-height: 24px; }
  .footer__menu-item a {
    font-size: 16px;
    line-height: 30px; }
  .single__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .single__box {
    width: 100%;
    margin-bottom: 40px; }
  .single__sidebar {
    width: 100%;
    margin-left: 0; }
  .single__content img {
    max-width: 100%; }
  .single__content-title {
    font-size: 24px;
    line-height: 32px;
    padding-bottom: 30px; }
  .tech__header {
    padding: 15px; }
  .landing__header-title {
    font-size: 30px;
    line-height: 45px; }
  .features2__title, .features2__section-title {
    font-size: 30px;
    line-height: 45px; }
  .features2__description {
    padding-top: 15px; }
  .left-bg__img {
    top: -140px; }
  .left-bg__content {
    width: 80%;
    margin-left: 20%; }
  .right-bg__img {
    height: 380px;
    right: -30px; }
  .landing .section__title {
    font-size: 26px;
    line-height: 36px; }
  .landing .section__subtitle {
    font-size: 18px;
    line-height: 26px; }
  .x4-video .section__title img {
    display: block;
    margin-bottom: 10px; }
  .radar__tabs .tab {
    font-size: 18px;
    line-height: 22px;
    text-align: center; }
  .control__tabs .tabs .tab {
    padding: 0 5px 20px 5px; }
  .cta-text__title {
    font-size: 26px;
    line-height: 36px;
    min-height: 400px; }
  .cta-form label {
    font-size: 18px;
    line-height: 24px; }
  .cta-form form {
    max-width: 95%; }
  .cta-form button[type=submit] {
    margin-top: 45px; }
  .tech__navigation ul {
    text-align: right;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  .tech__navigation ul li {
    display: block;
    width: 100%;
    padding: 0 0 10px; }
  .tech-wrap {
    padding-top: 50px; }
  .propellers__tabs .tabs {
    width: 100%; }
  .propellers__tabs .tab {
    width: 50%;
    font-size: 18px;
    line-height: 24px; }
  .slider__item-img {
    height: 250px; }
  .video__icon-block {
    width: 50%;
    padding: 0 10px;
    margin-bottom: 15px; }
  .block-with-2x2__item {
    border-right: 0 !important;
    border-bottom: 1px solid #363434;
    width: 100%; } }

@media only screen and (max-width: 480px) {
  .category__item {
    width: calc(100% - 20px); }
  .single__content {
    padding: 15px; } }

@media only screen and (max-width: 370px) {
  .single__content-title {
    font-size: 20px;
    line-height: 28px; }
  .control__tabs .tabs .tab {
    font-size: 12px; }
  .cta-form__title {
    padding-top: 50px;
    font-size: 35px;
    line-height: 55px; }
  .cta-form__body {
    padding-top: 50px; } }
	
	
	@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: 'в†ђ';
}
[dir='rtl'] .slick-prev:before
{
    content: 'в†’';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: 'в†’';
}
[dir='rtl'] .slick-next:before
{
    content: 'в†ђ';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: 'вЂў';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
	
	