@charset "UTF-8";
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after :focus,
:active {
  outline: none;
}

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

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

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

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

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

/*--------------------*/
/* -------fonts------ */
@font-face {
  font-family: Iconfont;
  src: url(../../../../fonts/nissan/Iconfont.woff2);
}

/* @font-face {
  font-family: NissanBrand-Regular;
  src: url(../fonts/NissanBrand-300.woff2);
}

@font-face {
  font-family: NissanBrand-Bold;
  src: url(../fonts/NissanBrand-400.woff2);
}

@font-face {
  font-family: NissanBrand-Bolder;
  src: url(../fonts/NissanBrand-700.woff2);
} */

/*--------------------*/


.about-model {
  font-family: NissanBrand-Regular;
}

.about-model p::-moz-selection,
.about-model h5::-moz-selection,
.about-model li::-moz-selection,
.about-model span::-moz-selection {
  color: #fff;
  background-color: #c3002f;
}

.about-model p::selection,
.about-model h5::selection,
.about-model li::selection,
.about-model span::selection {
  color: #fff;
  background-color: #c3002f;
}

.about-model__image-content {
  position: relative;
  display: -ms-grid;
  display: grid;
}

.about-model__img {
  height: 100vh;
  height: 100%;
  overflow: hidden;
}

.about-model__img img {
  width: 100%;
}

.about-model__text {
  position: absolute;
  left: 7%;
  top: 7%;
  padding: 35px;
  background-color: unset;
  color: #fff;
}

.about-model__text p:first-child {
  margin-bottom: 20px;
  font-size: 24px;
  display: none;
}

.about-model__text p:last-child {
  font-size: 36px;
}

.about-model__menu {
  position: relative;
  overflow: hidden;
  width: 100%;
  bottom: 0;
  background-color: #222;
  padding: 0 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-height: 65px;
  -webkit-transition: 1s;
  transition: 1s;
}

.about-model__menu nav {
  overflow-x: scroll;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  scrollbar-width: none;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.about-model__menu nav::-webkit-scrollbar {
  width: 0px;
  /* ширина scrollbar'a */
  background: transparent;
  /* опционально */
}

.about-model__menu nav ul {
  -webkit-transition: 1s;
  transition: 1s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-bottom: 0 !important;
}

.about-model__menu nav ul a {
  text-transform: uppercase;
  padding: 20px 15px;
  color: #fff;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.about-model__menu nav ul a:hover {
  background-color: #666;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.about-model__menu nav ul a:hover li {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  color: #c3002f;
}

.about-model__menu nav ul a li {
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
}

.about-model__arrow-left, .about-model__arrow-right {
  position: absolute;
  font-size: 30px;
  color: #222;
  display: none;
  cursor: pointer;
}

.about-model__arrow-left {
  -webkit-animation: 1.2s move infinite linear;
          animation: 1.2s move infinite linear;
  left: 50px;
  height: 100%;
  width: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.about-model__arrow-left::before, .about-model__arrow-left::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #fff;
  left: 0;
}

.about-model__arrow-left::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 28px;
}

.about-model__arrow-left::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  top: 37px;
}

.about-model__arrow-right {
  -webkit-animation: 1.2s move infinite linear;
          animation: 1.2s move infinite linear;
  right: 50px;
  height: 100%;
  width: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.about-model__arrow-right::before, .about-model__arrow-right::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #fff;
  left: 0;
}

.about-model__arrow-right::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 28px;
}

.about-model__arrow-right::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  top: 37px;
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  25% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  50% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  75% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes move {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  25% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  50% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  75% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

.about-model-content-about {
  margin-top: 50px;
}

.about-model-content-about__top-block {
  width: 100%;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}

.about-model-content-about__top-block div {
  padding: 0 100px;
}

.about-model-content-about__top-block div h3 {
  font-size: 36px;
  font-family: NissanBrand-Regular;
  text-align: center;
  padding: 20px 0;
}

.about-model-content-about__top-block div p {
  text-align: center;
  line-height: 25px;
  font-size: 16px;
  font-family: NissanBrand-Regular;
}

.about-model-content-about__list-block {
  margin-top: 50px;
  padding: 50px 0;
  background-color: #f8f8f8;
}

.about-model-content-about__list-block-wrapper {
  padding: 0 100px;
}

.about-model-content-about__list-block-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  margin-bottom: 50px;
}

.about-model-content-about__list-block-item:nth-child(even) div:first-child {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.about-model-content-about__list-block-item img {
  width: 100%;
}

.about-model-content-about__list-block-item h5 {
  padding: 30px 0;
  font-size: 16px;
  font-family: NissanBrand-Bolder;
}

.about-model-content-about__list-block-item h6 {
  font-family: NissanBrand-Bold;
  padding: 15px 0;
  font-size: 12px;
}

.about-model-content-about__list-block-item p {
  font-weight: normal;
  font-family: NissanBrand-Bold;
  font-size: 14px;
  line-height: 20px;
}

.about-model-content-about__list-block-item a {
  display: block;
  margin-top: 40px;
}

.about-model-content-about__list-block-item a button {
  text-transform: uppercase;
  color: #222;
  font-size: 14px;
  background-color: #eee;
  font-family: NissanBrand-Bolder;
  padding: 15px 60px 15px 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  max-width: 300px;
  width: 100%;
  text-align: start;
}

.about-model-content-about__list-block-item a button:hover {
  color: #c3002f;
}

.about-model-content-about__list-block-item a button::before {
  content: "\f106";
  font-family: Iconfont !important;
  font-size: 1.2rem;
  position: absolute;
  display: block;
  right: 15px;
}

.about-model-content-know-more {
  background-color: #f8f8f8;
  margin-top: 50px;
  padding-bottom: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.about-model-content-know-more__wrapper {
  padding-top: 50px;
  max-width: 1700px;
  width: 100%;
  margin: 0 auto;
}

.about-model-content-know-more__content {
  padding: 0 100px;
}

.about-model-content-know-more__content h5 {
  font-size: 36px;
  margin-bottom: 30px;
}

.about-model-content-know-more__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 30px;
}

.about-model-content-know-more__item {
  cursor: pointer;
  padding: 20px 0 35px 0;
  width: 100%;
  background-color: #999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.about-model-content-know-more__item:hover {
  background-color: #777;
}

.about-model-content-know-more__item:nth-child(1) p:first-child::before {
  content: "\f146";
}

.about-model-content-know-more__item:nth-child(2) p:first-child::before {
  content: "\f118";
}

.about-model-content-know-more__item:nth-child(3) p:first-child::before {
  content: "\f148";
}

.about-model-content-know-more__item:nth-child(4) p:first-child::before {
  content: "\f118";
}

.about-model-content-know-more__item p {
  text-align: center;
  color: #fff;
}

.about-model-content-know-more__item p:first-child {
  margin-bottom: 20px;
  height: 50px;
  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;
  position: relative;
}

.about-model-content-know-more__item p:first-child::before {
  position: absolute;
  font-family: Iconfont !important;
  display: block;
  top: 0;
  font-size: 50px;
}

.about-model-content-know-more__item p:last-child {
  font-size: 16px;
  text-transform: uppercase;
}

.about-menu-active {
  pointer-events: none;
  background-color: #c3002f;
}

@media (max-width: 1550px) {
  .about-model__arrow-left,
  .about-model__arrow-right {
    display: block;
  }
}

@media (max-width: 1250px) {
  .about-model-content-know-more__list {
    grid-gap: 10px;
  }
  .about-model-content-know-more__item p:last-child {
    font-size: 14px;
  }
  .about-model__img img {
    width: unset;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

@media (max-width: 950px) {
  .about-model-content-know-more__content,
  .about-model-content-connect__wrapper,
  .about-model-content-about__list-block-wrapper,
  .about-model-content-about__top-block div,
  .about-model-download-price__wrapper,
  .about-model__menu {
    padding: 0 20px;
  }
  .about-model__arrow-left {
    -webkit-animation: 1.2s move infinite linear;
            animation: 1.2s move infinite linear;
    height: 100%;
    width: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    left: 5px;
  }
  .about-model__arrow-left::before, .about-model__arrow-left::after {
    position: absolute;
    content: "";
    width: 7px;
    height: 2px;
    background-color: #fff;
    left: 0;
  }
  .about-model__arrow-left::before {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 30px;
  }
  .about-model__arrow-left::after {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
    top: 34px;
  }
  .about-model__arrow-right {
    -webkit-animation: 1.2s move infinite linear;
            animation: 1.2s move infinite linear;
    right: -7px;
    height: 100%;
    width: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .about-model__arrow-right::before, .about-model__arrow-right::after {
    position: absolute;
    content: "";
    width: 7px;
    height: 2px;
    background-color: #fff;
    left: 0;
  }
  .about-model__arrow-right::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 30px;
  }
  .about-model__arrow-right::after {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
    top: 34px;
  }
  @-webkit-keyframes move {
    0% {
      -webkit-transform: translateX(0px);
              transform: translateX(0px);
    }
    25% {
      -webkit-transform: translateX(1px);
              transform: translateX(1px);
    }
    50% {
      -webkit-transform: translateX(0px);
              transform: translateX(0px);
    }
    75% {
      -webkit-transform: translateX(-1px);
              transform: translateX(-1px);
    }
    100% {
      -webkit-transform: translateX(0px);
              transform: translateX(0px);
    }
  }
  @keyframes move {
    0% {
      -webkit-transform: translateX(0px);
              transform: translateX(0px);
    }
    25% {
      -webkit-transform: translateX(1px);
              transform: translateX(1px);
    }
    50% {
      -webkit-transform: translateX(0px);
              transform: translateX(0px);
    }
    75% {
      -webkit-transform: translateX(-1px);
              transform: translateX(-1px);
    }
    100% {
      -webkit-transform: translateX(0px);
              transform: translateX(0px);
    }
  }
}

@media (max-width: 768px) {
  .about-model__text {
    left: 3%;
    top: 3%;
  }
  .about-model__text p:first-child {
    font-size: 20px;
  }
  .about-model__text p:last-child {
    font-size: 28px;
  }
  .about-model-content-know-more__list {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .about-model-content-know-more__list .model-content-know-more__item {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 70px 1fr;
        grid-template-columns: 70px 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about-model-content-know-more__list .model-content-know-more__item p:first-child {
    margin-bottom: 0px;
  }
  .about-model-content-know-more__list .model-content-know-more__item p:last-child {
    text-align: start;
    font-size: 16px;
  }
  .about-model-content-know-more__content h5 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .about-model-content-know-more__wrapper {
    padding-top: 25px;
  }
  .about-model-content-about__top-block div h3 {
    font-size: 28px;
  }
  .about-model-content-about__list-block {
    margin-top: 30px;
    padding: 20px 0;
  }
  .about-model-content-about__list-block-item {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .about-model-content-about__list-block-item:nth-child(even) div:first-child {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
  }
  .about-model-content-connect__wrapper h5 {
    font-size: 28px;
    padding: 30px 0 40px;
  }
  .about-model-content-connect__top-block {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .about-model-content-connect__top-block ul {
    padding-left: 20px;
  }
  .about-model-content-connect__bottom-block {
    margin-top: 30px;
  }
  .about-model-content-connect__bottom-block .model-content-connect__bottom-block-wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .about-model-content-know-more {
    margin-top: 30px;
  }
}

@media (max-width: 495px) {
  .about-model__arrow-right,
  .model__arrow-left {
    display: none;
  }
  .about-model__text {
    padding: 20px;
    width: 81%;
  }
  .about-model__text p:first-child, .about-model__text p:last-child {
    text-align: center;
  }
}

@media (max-width: 380px) {
  .about-model-content-know-more__item {
    -ms-grid-columns: 50px 1fr !important;
        grid-template-columns: 50px 1fr !important;
    padding: 10px 0 !important;
  }
  .about-model-content-know-more__content,
  .about-model-content-connect__wrapper,
  .about-model-content-why__list-block-wrapper,
  .about-model-content-why__top-block div,
  .about-model-content-features__wrapper,
  .about-model-download-price__wrapper,
  .about-model__menu {
    padding: 0 10px;
  }
  .about-model-content-connect__bottom-block-wrapper div {
    padding: 10px;
  }
}
