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

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

:focus,
:active {
  outline: none;
}

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

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

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

input,
button,
textarea {
  font-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;
}

/*--------------------*/
body {
  font-family: "Lato", sans-serif;
}

.wrapper {
  min-height: 100%;
  overflow: hidden;
}

.page {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
}

.ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.ibg img {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.container {
  max-width: 1130px;
  margin: 0px auto;
  padding: 0px 15px;
}

/*HEADER*/
.header {
  flex: 1 0 100%;
  padding: 38px 0px 0px;
  position: relative;
}
.header__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.header__logo {
  position: absolute;
  top: 38px;
  left: 50%;
  margin: 0px 0px 0px -47px;
  z-index: 50;
}
.header__nav {
  position: relative;
  z-index: 50;
}
.header__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__list li {
  margin: 0px 77px 0px 0px;
  position: relative;
}
.header__list li:last-child {
  margin: 0;
}
.header__list li:nth-child(2) {
  margin: 0px 220px 0px 0px;
}
.header__list li:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -50%;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #4d4959;
}
.header__list li:nth-child(4)::after {
  content: "";
  position: absolute;
  top: 42px;
  left: -50%;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #4d4959;
}
.header__link {
  font-size: 13px;
  line-height: 85px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #4d4959;
}

@media (max-width: 768px) {
  /*	body.lock {
  	overflow: hidden;
  }*/
  .header__list {
    display: none;
  }
  .header__burger {
    display: block;
    position: absolute;
    right: 20px;
    width: 30px;
    height: 20px;
    z-index: 5;
  }
  .header__burger span {
    position: absolute;
    background-color: #4d4959;
    left: 0;
    top: 9px;
    width: 100%;
    height: 2px;
    transition: all 0.3s ease 0s;
  }
  .header__burger::before,
  .header__burger::after {
    content: "";
    background-color: #4d4959;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    transition: all 0.3s ease 0s;
  }
  .header__burger::before {
    top: 0;
  }
  .header__burger::after {
    bottom: 0;
  }
  .header__burger.active span {
    transform: scale(0);
  }
  .header__burger.active::before {
    background-color: #fff;
    transform: rotate(45deg);
    top: 9px;
  }
  .header__burger.active::after {
    background-color: #fff;
    transform: rotate(-45deg);
    bottom: 9px;
  }
  .header__list.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: -38px;
    left: 0;
    background-color: #4d4959;
    width: 100%;
    height: 100vh;
  }
  .header__list.active li {
    margin: 0px;
  }
  .header__list.active li a {
    color: #fff;
  }
  .header__list.active li:first-child {
    margin: 100px 0px 0px;
  }
}
/*MAIN*/
/*Generation*/
.generation {
  text-align: center;
}
.generation__icon {
  margin: 117px 0px 30px;
}
.generation__title {
  margin: 0px 0px 32px;
}
.generation__text {
  margin: 0px 0px 141px;
  font-size: 18px;
  line-height: 34px;
  font-weight: 400;
  color: #848789;
}

.title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #353738;
}

@media (max-width: 1100px) {
  .generation__icon {
    margin: 57px 0px 30px;
  }
  .generation__text {
    margin: 0px 0px 51px;
  }
}
@media (max-width: 850px) {
  .generation__icon {
    margin: 57px 0px 30px;
  }
  .generation__text {
    margin: 0px 0px 51px;
  }
}
@media (max-width: 850px) and (max-width: 450px) {
  .generation__icon {
    margin: 27px 0px 30px;
  }
  .generation__text {
    margin: 0px 0px 31px;
  }
}
/*BRANDS*/
.brands__row {
  display: flex;
}
.brands__column {
  flex: 0 1 33.333%;
  position: relative;
}
.brands__column_b {
  flex: 0 1 66.667%;
  position: relative;
}
.brands__image {
  min-height: 100%;
}
.brands__logo {
  width: 113px;
  height: 118px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 50;
  margin: 0px 0px 0px -56.5px;
}
.brands__logo img {
  width: 100%;
}
.brands__content {
  text-align: center;
  position: relative;
}
.brands__icon {
  margin: 70px 0px 30px;
}
.brands__title {
  margin: 0px 0px 28px;
}
.brands__text {
  margin: 0px 65px 90px;
  position: relative;
}
.brands__text::after {
  content: "";
  display: block;
  margin: 35px auto 0px;
  width: 50px;
  height: 1px;
  background-color: rgba(53, 55, 56, 0.2);
  position: absolute;
  bottom: -40px;
  left: 50%;
  margin: 0px 0px 0px -22.5px;
}
.brands__image-little {
  padding: 0px 0px 40%;
  position: relative;
}
.brands__image-little::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0px 0px 0px -10px;
  z-index: 50;
}

.text {
  text-align: justify;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: #848789;
}

@media (max-width: 1200px) {
  .brands__icon {
    margin: 40px 0px 30px;
  }
  .brands__text {
    margin: 0px 45px 50px;
  }
}
@media (max-width: 1000px) {
  .brands__icon {
    margin: 20px 0px 20px;
  }
  .brands__text {
    margin: 0px 20px 20px;
  }
}
@media (max-width: 900px) {
  .brands__row {
    flex-wrap: wrap;
  }
  .brands__column_b {
    flex: 0 1 100%;
  }
  .brands__image {
    padding: 0px 0px 100%;
  }
  .brands__column {
    flex: 0 1 100%;
  }
  .brands__column_b.rev {
    order: 1;
  }
  .brands__column.rev {
    order: 2;
  }
}
/*SLIDER*/
.slider {
  /*display: flex;*/
  margin: 120px 0px 66px;
  position: relative;
}
.slider__item {
  text-align: center;
}

.item-slider__icon {
  margin: 0px 0px 35px;
}
.item-slider__title {
  margin: 0px 0px 67px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #353738;
}
.item-slider__title span {
  font-weight: 300;
  color: #848789;
}
.item-slider__text {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  font-style: italic;
  color: #848789;
}

.slick-list {
  overflow: hidden;
}

.slick-track {
  display: flex;
  align-items: flex-start;
}

.slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 104px 0px 66px;
}

.slider .slick-dots li {
  list-style: none;
  margin: 0px 10px;
}

.slider .slick-dots li button {
  font-size: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #a9afb3;
}

.slider .slick-dots li.slick-active button {
  background-color: #a9afb3;
}

@media (max-width: 1200px) {
  .slider {
    margin: 70px 0px 46px;
  }
  .item-slider__title {
    margin: 0px 0px 47px;
  }
  .slider .slick-dots {
    margin: 64px 0px 46px;
  }
}
@media (max-width: 900px) {
  .slider {
    margin: 40px 0px 36px;
  }
  .item-slider__title {
    margin: 0px 0px 27px;
  }
  .slider .slick-dots {
    margin: 34px 0px 36px;
  }
}
/*CARDS*/
.cards {
  width: 100%;
  overflow: hidden;
}

.brands__column_l {
  flex: 0 1 16.667%;
  padding: 0px 0px 534px;
}

.cards__row {
  display: flex;
}

.cards__image_b {
  display: block;
  width: 100%;
  padding: 0px 0px 267px;
  position: relative;
}

.cards__item {
  flex: 0 1 50%;
  padding: 0px 0px 267px;
}

.cards__item_f {
  height: 50%;
  display: block;
  position: relative;
}
.cards__item_f:hover .cards__logo {
  background-color: rgba(100, 194, 158, 0.5);
}

.cards__image_f {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.cards__logo {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all ease 0.5s;
  background-color: rgba(100, 194, 158, 0);
}
.cards__logo p {
  color: #fff;
  margin: 8px 0px 0px;
}

@media (max-width: 1000px) {
  .cards__row {
    flex-wrap: wrap;
  }
  .cards__row .brands__column,
  .brands__column_l {
    flex: 0 1 50%;
  }
}
@media (max-width: 600px) {
  .brands__column {
    flex: 0 1 100%;
  }
}
/*BLACK*/
.black {
  width: 100%;
  height: 200px;
  padding: 75px 0px;
  background-color: #000;
  color: #fff;
}

.black__button {
  width: 300px;
  height: 50px;
  border: 1px solid #fff;
  text-align: center;
  margin: 0px auto;
  font-size: 14px;
  line-height: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

@media (max-width: 600px) {
  .black {
    height: 150px;
    padding: 50px 0px;
  }
  .black__button {
    width: 200px;
    letter-spacing: 0.1em;
  }
}
/*LAST*/
.last__container {
  max-width: 540px;
  margin: 109px auto;
  text-align: center;
}
.last__logo {
  margin: 0px 0px 36px;
}
.last__text {
  margin: 0px 0px 36px;
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  font-style: italic;
  color: #848789;
}
.link {
  display: flex;
  justify-content: center;
}
.link__folder {
  width: 400px;
  height: 69px;
  margin: 0px 10px 0px 0px;
  padding: 0px 0px 0px 33px;
  border: 1px solid #d3d7d9;
  font-size: 20px;
  line-height: 69px;
  font-weight: 400;
  font-style: italic;
  color: #929292;
}
.link__button {
  width: 126px;
  height: 69px;
  background-color: #64c29e;
  font-size: 24px;
  line-height: 69px;
  font-weight: 300;
  color: #ffffff;
}

@media (max-width: 620px) {
  .last__container {
    margin: 79px auto;
  }
  .link__folder {
    width: 300px;
    height: 49px;
  }
  .link__button {
    width: 86px;
    height: 49px;
    line-height: 49px;
  }
}
@media (max-width: 420px) {
  .last__container {
    margin: 59px auto;
  }
  .link__folder {
    width: 200px;
    height: 49px;
  }
  .link__button {
    width: 66px;
    height: 49px;
    line-height: 49px;
  }
}
/*FOOTER*/
.footer {
  background-color: #f7f7f7;
  padding: 100px 0px;
}
.footer__row {
  display: flex;
  justify-content: space-between;
}
.footer__content {
  color: #848789;
}
.footer__title {
  font-size: 16px;
  line-height: 17px;
  font-weight: 700;
}
.footer__text {
  font-size: 13.9px;
  font-weight: 400;
  font-style: italic;
}
.footer__social {
  display: flex;
}
.social__item {
  margin: 0px 10px 0px 0px;
}
.social__item :last-child {
  margin: 0;
}

.sighn {
  display: flex;
  align-items: center;
}
.sighn__text {
  font-size: 13.9px;
  line-height: 17px;
  font-weight: 400;
  font-style: italic;
  color: #848789;
  margin: 0px 10px 0px 0px;
}
@media (max-width: 700px) {
  .footer {
    padding: 50px 0px;
  }
  .footer__row {
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
  }
  .footer__content {
    margin: 0px 0px 10px;
    text-align: center;
  }
  .footer__social {
    justify-content: center;
    margin: 0px 0px 10px;
  }
  .footer__sighn {
    justify-content: center;
  }
}