@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: 0px; }

*, *: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; }

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

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  min-width: 320px;
  position: relative;
  width: 100%;
  color: #000; }

body {
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  font-family: "Lato";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }
  @media (max-width: 768px) {
    body.lock {
      overflow: hidden; } }

input, button, textarea {
  font-family: "Lato"; }

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-weight: inherit;
  font-size: inherit; }

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

.container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%; }
  @media (max-width: 1012px) {
    .container {
      max-width: 970px; } }
  @media (max-width: 992.98px) {
    .container {
      max-width: 750px; } }
  @media (max-width: 767.98px) {
    .container {
      max-width: none;
      padding: 0 10px; } }

.header {
  -webkit-transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  -ms-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  position: fixed;
  z-index: 2;
  width: 100%;
  top: 50px; }
  @media (max-width: 767.98px) {
    .header {
      top: 25px; } }

.header.active {
  background-color: #000;
  top: 0; }

.header-body {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 0;
  justify-content: space-between;
  align-items: center;
  position: relative; }
  .header-body__logo {
    display: block;
    color: #ffffff;
    font-size: 48px;
    font-weight: 300; }
  .header-body__icon {
    display: none; }
    @media (max-width: 768px) {
      .header-body__icon {
        position: absolute;
        display: inline-block;
        height: 24px;
        width: 30px;
        top: 15px;
        right: 0; }
        .header-body__icon span {
          -webkit-transition: all 0.3s ease 0s;
          -moz-transition: all 0.3s ease 0s;
          -ms-transition: all 0.3s ease 0s;
          -o-transition: all 0.3s ease 0s;
          transition: all 0.3s ease 0s;
          display: inline-block;
          height: 1px;
          width: 30px;
          background-color: #fff;
          margin: 0px 0px 10px 0px; } }
  .header-body__icon.active span:first-child {
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: 11px 0 0 0; }
  .header-body__icon.active span:nth-child(2) {
    display: none; }
  .header-body__icon.active span:last-child {
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin: 0; }

.header-body-nav__list {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  position: relative;
  max-width: 310px;
  max-height: 89px;
  overflow: auto;
  margin: 0 -7.5px; }
  @media (max-width: 768px) {
    .header-body-nav__list {
      position: absolute;
      left: 150%;
      max-height: none;
      padding: 10px;
      height: 140px;
      overflow: auto;
      width: 320px;
      background-color: #e9eef2; } }
  @media (max-height: 250px) {
    .header-body-nav__list {
      height: 130px; } }

@media (max-width: 768px) {
  .header-body-nav__list.active {
    position: absolute;
    left: 0px;
    top: 60px; } }

.header-body-nav__link {
  padding: 0 7.5px;
  display: inline-block;
  display: inline-block;
  position: relative; }
  @media (max-width: 768px) {
    .header-body-nav__link {
      display: block;
      text-align: center;
      border-top: 1px solid #535a5e; }
      .header-body-nav__link:last-child {
        border-bottom: 1px solid #535a5e; } }
  .header-body-nav__link a {
    color: #e9eef2;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.32px; }
    @media (max-width: 768px) {
      .header-body-nav__link a {
        color: #535a5e;
        line-height: 40px;
        font-size: 25px; } }
  .header-body-nav__link:hover:after {
    width: 100%; }
  .header-body-nav__link:after {
    content: "";
    display: inline-block;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: absolute;
    height: 2px;
    width: 0;
    left: 0;
    bottom: 0;
    background-color: #fff; }

.footer-body {
  padding: 50px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 0;
  justify-content: space-between;
  flex-wrap: wrap; }
  @media (max-width: 1012px) {
    .footer-body {
      padding: 40px 0; } }
  @media (max-width: 992.98px) {
    .footer-body {
      padding: 35px 0; } }
  @media (max-width: 767.98px) {
    .footer-body {
      padding: 30px 0; } }
  @media (max-width: 480px) {
    .footer-body {
      padding: 25px 0; } }
  @media (max-width: 570px) {
    .footer-body {
      justify-content: center; } }
  .footer-body__copyright {
    max-width: 420px;
    color: #535a5e;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px; }
    @media (max-width: 740px) {
      .footer-body__copyright {
        max-width: 230px; } }
    @media (max-width: 570px) {
      .footer-body__copyright {
        text-align: center;
        -webkit-box-ordinal-group: 2;
        -moz-box-ordinal-group: 2;
        -ms-flex-order: 2;
        -webkit-order: 2;
        order: 2;
        max-width: 600px; } }
    @media (max-width: 440px) {
      .footer-body__copyright {
        max-width: 320px; } }

.footer-body-links {
  flex: 0 1 300px;
  text-align: center; }
  @media (max-width: 570px) {
    .footer-body-links {
      flex: 0 1 90%;
      margin: 0px 0px 20px 0px; } }
  .footer-body-links__title {
    display: none; }
    @media (max-width: 768px) {
      .footer-body-links__title {
        display: block;
        color: #535a5e;
        font-size: 18px;
        font-weight: 700;
        line-height: 30px;
        text-transform: uppercase;
        position: relative; }
        .footer-body-links__title:after {
          content: "";
          position: relative;
          display: inline-block;
          border: solid #535a5e;
          border-width: 0px 1px 1px 0;
          width: 10px;
          height: 10px;
          -moz-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          -webkit-transform: rotate(45deg);
          -o-transform: rotate(45deg);
          transform: rotate(45deg);
          top: -5px;
          left: 5px; } }
  .footer-body-links__title.active:after {
    top: 1px;
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg); }
  .footer-body-links__list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    font-size: 0;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin: 0 -7.5px; }
    @media (max-width: 768px) {
      .footer-body-links__list {
        display: block;
        display: none; } }
  .footer-body-links__link {
    padding: 0 7.5px;
    display: inline-block;
    position: relative; }
    .footer-body-links__link a {
      color: #535a5e;
      font-size: 16px;
      font-weight: 700;
      line-height: 28px; }
    .footer-body-links__link:hover:after {
      width: 100%; }
    .footer-body-links__link:after {
      content: "";
      display: inline-block;
      -webkit-transition: all 0.3s ease 0s;
      -moz-transition: all 0.3s ease 0s;
      -ms-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
      position: absolute;
      height: 2px;
      width: 0;
      left: 0;
      bottom: 0;
      background-color: #535a5e; }

.btn {
  display: block;
  width: 100%;
  max-width: 400px;
  height: 60px;
  border-radius: 3px;
  background-color: #a4b9be;
  padding: 0px 0px;
  margin: 0 auto;
  color: #2d3035;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px; }
  .btn:hover {
    cursor: pointer; }

input[type=text], input[type=email], input[type=tel], textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.input {
  max-width: 400px;
  height: 60px;
  border-radius: 3px;
  border: 2px solid #e9eef2;
  background-color: transparent;
  border-radius: 0 !important;
  margin: 0px auto 20px auto;
  width: 100%;
  display: block;
  padding: 25px 20px;
  font-size: 17px;
  color: #e9eef2;
  line-height: 28px; }
  @media (max-width: 767.98px) {
    .input {
      margin: 0px auto 15px auto; } }
  @media (max-width: 480px) {
    .input {
      margin: 0px auto 10px auto; } }
  .input.err {
    border: 1px solid red; }

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 50px #2d3035 inset;
  /* можно изменить на любой вариант цвета */
  -webkit-text-fill-color: #e9eef2; }

textarea.input {
  display: block;
  padding: 20px;
  resize: none;
  max-width: 400px;
  height: 110px;
  border-radius: 3px;
  border: 2px solid #e9eef2; }

.title {
  color: #ffffff;
  font-size: 38px;
  font-weight: 700;
  line-height: 70px; }
  @media (max-width: 455px) {
    .title {
      font-size: 30px;
      line-height: 60px; } }
  @media (max-width: 365px) {
    .title {
      font-size: 25px;
      line-height: 50px; } }

.subtitle {
  color: #ffffff;
  font-size: 21px;
  line-height: 28px; }
  @media (max-width: 455px) {
    .subtitle {
      font-size: 17px;
      line-height: 24px; } }
  @media (max-width: 365px) {
    .subtitle {
      font-size: 15px;
      line-height: 22px; } }

.ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }
  .ibg img {
    display: none; }

.first__body {
  min-height: 550px;
  position: relative; }
  @media (max-height: 568px) {
    .first__body {
      min-height: 568px; } }
  .first__body:after {
    content: "";
    display: inline-block;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: #2d2d2d;
    opacity: 0.8; }

.first-content {
  position: relative;
  z-index: 1;
  padding: 190px 0 96px 0; }
  .first-content__title {
    text-align: center;
    margin: 0px 0px 22px 0px; }
  .first-content__subtitle {
    max-width: 605px;
    text-align: center;
    margin: 0px auto 55px auto; }
  .first-content__link {
    width: 251px;
    height: 61px;
    margin: 0 auto;
    border-radius: 3px;
    background-color: #a4b9be;
    text-align: center; }
    .first-content__link a {
      display: inline-block;
      width: 100%;
      height: 100%;
      color: #ffffff;
      font-size: 21px;
      line-height: 28px;
      line-height: 61px; }

.start {
  background-color: #fcfcfc; }
  .start__body {
    padding: 80px 0px 105px 0px;
    text-align: center; }
    @media (max-width: 1012px) {
      .start__body {
        padding: 70px 0px 95px 0px; } }
    @media (max-width: 992.98px) {
      .start__body {
        padding: 50px 0px 75px 0px; } }
    @media (max-width: 767.98px) {
      .start__body {
        padding: 35px 0px 55px 0px; } }
    @media (max-width: 480px) {
      .start__body {
        padding: 25px 0px 45px 0px; } }
  .start__title {
    color: #535a5e;
    max-width: 600px;
    margin: 0 auto 25px auto; }
    @media (max-width: 615px) {
      .start__title {
        font-size: 30px;
        line-height: 60px; } }
    @media (max-width: 490px) {
      .start__title {
        font-size: 25px;
        line-height: 55px; } }
    @media (max-width: 415px) {
      .start__title {
        max-width: 300px;
        line-height: 30px; } }
    @media (max-width: 767.98px) {
      .start__title {
        margin: 0 auto 20px auto; } }
    @media (max-width: 480px) {
      .start__title {
        margin: 0 auto 15px auto; } }
  .start__subtitle {
    max-width: 935px;
    color: #9fa4a7;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.16px;
    margin: 0 auto 66px auto; }
    @media (max-width: 365px) {
      .start__subtitle {
        line-height: 20px; } }
    @media (max-width: 767.98px) {
      .start__subtitle {
        margin: 0 auto 45px auto; } }
    @media (max-width: 480px) {
      .start__subtitle {
        margin: 0 auto 35px auto; } }
  .start__icon {
    max-width: 32px;
    margin: 0 auto; }

.work__body {
  padding: 80px 0px 0px 0px;
  background-color: #a4b9be;
  text-align: center; }
  @media (max-width: 1012px) {
    .work__body {
      padding: 60px 0px 0px 0px; } }
  @media (max-width: 992.98px) {
    .work__body {
      padding: 50px 0px 0px 0px; } }
  @media (max-width: 767.98px) {
    .work__body {
      padding: 40px 0px 0px 0px; } }
  @media (max-width: 480px) {
    .work__body {
      padding: 30px 0px 0px 0px; } }

.work-info__title {
  color: #f1f1f1;
  max-width: 370px;
  margin: 0 auto 25px auto; }
  @media (max-width: 767.98px) {
    .work-info__title {
      margin: 0 auto 12px auto; } }
  @media (max-width: 480px) {
    .work-info__title {
      margin: 0 auto 0px auto; } }

.work-info__subtitle {
  display: inline-block;
  max-width: 550px;
  color: #ffffff;
  font-size: 21px;
  line-height: 28px;
  margin: 0 auto 55px auto; }
  @media (max-width: 1012px) {
    .work-info__subtitle {
      margin: 0 auto 55px auto; } }
  @media (max-width: 992.98px) {
    .work-info__subtitle {
      margin: 0 auto 40px auto; } }
  @media (max-width: 767.98px) {
    .work-info__subtitle {
      margin: 0 auto 30px auto; } }
  @media (max-width: 480px) {
    .work-info__subtitle {
      margin: 0 auto 20px auto; } }

.work-slider {
  position: relative; }
  .work-slider__item {
    max-height: 457px; }
    .work-slider__item img {
      max-width: 62%; }
      @media (max-width: 1100px) {
        .work-slider__item img {
          max-width: 75%; } }
      @media (max-width: 768px) {
        .work-slider__item img {
          max-width: 80%; } }
      @media (max-width: 480px) {
        .work-slider__item img {
          max-width: 100%; } }

.slick-slide {
  display: inline-block; }

/* Слайд активный */
/* Слайд основной */
/* Слайд по центру */
/* Стрелка */
.slick-arrow {
  transform: translate(0, -50%);
  background-color: transparent;
  color: transparent;
  position: absolute;
  width: 23px;
  height: 42px;
  top: 50%; }
  .slick-arrow:hover:after {
    border-color: #fff; }
    @media (max-width: 480px) {
      .slick-arrow:hover:after {
        border-color: #000; } }
  .slick-arrow:after {
    content: "";
    position: absolute;
    left: 7px;
    top: 5px;
    display: inline-block;
    border: solid #b2c3c8;
    border-width: 0px 2px 2px 0;
    width: 29.4px;
    height: 29.4px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    z-index: 1; }

/* Стрелка влево */
.slick-arrow.slick-prev {
  z-index: 1;
  left: 11.4%; }
  @media (max-width: 1100px) {
    .slick-arrow.slick-prev {
      left: 6%; } }
  @media (max-width: 768px) {
    .slick-arrow.slick-prev {
      left: 3%; } }
  @media (max-width: 480px) {
    .slick-arrow.slick-prev {
      opacity: 0.5;
      left: 1%; } }

/* Стрелка вправо */
.slick-arrow {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.slick-arrow.slick-next {
  right: 11.4%; }
  .slick-arrow.slick-next:after {
    left: -13px;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  @media (max-width: 1100px) {
    .slick-arrow.slick-next {
      right: 6%; } }
  @media (max-width: 768px) {
    .slick-arrow.slick-next {
      right: 3%; } }
  @media (max-width: 480px) {
    .slick-arrow.slick-next {
      opacity: 0.5;
      right: 1%; } }

/* Стрелка не активная */
/* BUY */
.buy {
  background-color: #fcfcfc; }
  .buy__body {
    padding: 80px 0;
    text-align: center; }
    @media (max-width: 1012px) {
      .buy__body {
        padding: 70px 0; } }
    @media (max-width: 992.98px) {
      .buy__body {
        padding: 50px 0; } }
    @media (max-width: 767.98px) {
      .buy__body {
        padding: 40px 0; } }
    @media (max-width: 480px) {
      .buy__body {
        padding: 30px 0; } }
  .buy__title {
    line-height: 35px;
    color: #535a5e;
    font-size: 30px;
    max-width: 880px;
    margin: 0 auto 20px auto; }
    @media (max-width: 992px) {
      .buy__title {
        font-size: 25px; } }
    @media (max-width: 768px) {
      .buy__title {
        max-width: 500px;
        line-height: 30px;
        margin: 0 auto 15px auto; } }
  .buy__subtitle {
    max-width: 615px;
    margin: 0 auto 55px auto;
    color: #98a0a5;
    font-size: 21px;
    line-height: 28px; }
    @media (max-width: 992px) {
      .buy__subtitle {
        max-width: 500px;
        font-size: 18px;
        line-height: 21px;
        margin: 0 auto 40px auto; } }
    @media (max-width: 768px) {
      .buy__subtitle {
        margin: 0 auto 30px auto; } }
    @media (max-width: 480px) {
      .buy__subtitle {
        margin: 0 auto 20px auto; } }
  .buy__text {
    margin: 0 auto 0 auto;
    max-width: 365px;
    color: #98a0a5;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.3px; }

.buy-row {
  margin: 0px -15px 50px -15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 0;
  justify-content: center; }
  @media (max-width: 992px) {
    .buy-row {
      margin: 0px -5px 40px -5px; } }
  @media (max-width: 768px) {
    .buy-row {
      margin: 0px 0px 30px 0px;
      display: block; } }
  .buy-row__column {
    padding: 0 15px;
    flex: 0 1 290px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    font-size: 0;
    flex-direction: column; }
    @media (max-width: 992px) {
      .buy-row__column {
        padding: 0 5px; } }
    @media (max-width: 768px) {
      .buy-row__column {
        padding: 0;
        max-width: 400px;
        margin: 0 auto 30px auto;
        display: block; } }
    .buy-row__column:nth-child(2) .buy-row-item__up {
      background-color: #58ad52; }
      .buy-row__column:nth-child(2) .buy-row-item__up span {
        position: relative;
        top: -10px; }
    .buy-row__column:nth-child(2) .buy-row-item .buy-row-item-info {
      background-color: #dfebdf; }
    .buy-row__column:nth-child(2) .buy-row-item__link a {
      background-color: #58ad52; }
    .buy-row__column:nth-child(3) .buy-row-item__up {
      background-color: #53a1ad; }
    .buy-row__column:nth-child(3) .buy-row-item .buy-row-item-info {
      background-color: #dee9eb; }
    .buy-row__column:nth-child(3) .buy-row-item__link a {
      background-color: #53a1ad; }

.buy-row-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: 0;
  flex-direction: column;
  flex: 1 1 auto;
  max-width: 290px; }
  @media (max-width: 768px) {
    .buy-row-item {
      margin: 0 auto; } }
  .buy-row-item__up {
    height: 81px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: #535a5e;
    padding: 25px 10px; }
    @media (max-width: 1012px) {
      .buy-row-item__up {
        height: 75px; } }
    @media (max-width: 992.98px) {
      .buy-row-item__up {
        height: 70px; } }
    @media (max-width: 767.98px) {
      .buy-row-item__up {
        height: 65px; } }
    @media (max-width: 480px) {
      .buy-row-item__up {
        height: 60px; } }
    .buy-row-item__up span:first-child {
      word-break: break-word;
      font-size: 30px;
      font-weight: 300;
      line-height: 28px;
      color: #e9eef2; }
    .buy-row-item__up span:nth-child(2) {
      display: block;
      color: #e9eef2;
      font-size: 30px;
      line-height: 21px;
      font-size: 16px; }
    @media (max-width: 1012px) {
      .buy-row-item__up {
        padding: 23px 10px; } }
    @media (max-width: 992.98px) {
      .buy-row-item__up {
        padding: 20px 10px; } }
    @media (max-width: 767.98px) {
      .buy-row-item__up {
        padding: 15px 10px; } }
    @media (max-width: 480px) {
      .buy-row-item__up {
        padding: 13px 10px; } }
  .buy-row-item__link a {
    display: inline-block;
    width: 100%;
    background-color: #535a5e;
    padding: 16px 0;
    border-radius: 5px;
    color: #e9eef2;
    font-size: 18px;
    line-height: 28px; }

.buy-row-item-info {
  flex: 1 1 auto;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 35px 20px;
  background-color: #e9eef2;
  color: #535a5e;
  font-size: 21px;
  line-height: 25px;
  margin: 0px 0px 20px 0px; }
  @media (max-width: 1012px) {
    .buy-row-item-info {
      padding: 30px 20px; } }
  @media (max-width: 992.98px) {
    .buy-row-item-info {
      padding: 25px 20px; } }
  @media (max-width: 767.98px) {
    .buy-row-item-info {
      padding: 20px 20px;
      margin: 0px 0px 15px 0px; } }
  @media (max-width: 480px) {
    .buy-row-item-info {
      padding: 15px 20px;
      margin: 0px 0px 10px 0px; } }
  .buy-row-item-info__month {
    font-weight: 700;
    margin: 0px 0px 41px 0px; }
    @media (max-width: 1012px) {
      .buy-row-item-info__month {
        margin: 0px 0px 30px 0px; } }
    @media (max-width: 992.98px) {
      .buy-row-item-info__month {
        margin: 0px 0px 25px 0px; } }
    @media (max-width: 767.98px) {
      .buy-row-item-info__month {
        margin: 0px 0px 20px 0px; } }
    @media (max-width: 480px) {
      .buy-row-item-info__month {
        margin: 0px 0px 15px 0px; } }
  .buy-row-item-info__notebook {
    margin: 0px 0px 40px 0px; }
    @media (max-width: 1012px) {
      .buy-row-item-info__notebook {
        margin: 0px 0px 30px 0px; } }
    @media (max-width: 992.98px) {
      .buy-row-item-info__notebook {
        margin: 0px 0px 25px 0px; } }
    @media (max-width: 767.98px) {
      .buy-row-item-info__notebook {
        margin: 0px 0px 20px 0px; } }
    @media (max-width: 480px) {
      .buy-row-item-info__notebook {
        margin: 0px 0px 15px 0px; } }
  .buy-row-item-info__user {
    margin: 0px 0px 40px 0px; }
    @media (max-width: 1012px) {
      .buy-row-item-info__user {
        margin: 0px 0px 30px 0px; } }
    @media (max-width: 992.98px) {
      .buy-row-item-info__user {
        margin: 0px 0px 25px 0px; } }
    @media (max-width: 767.98px) {
      .buy-row-item-info__user {
        margin: 0px 0px 20px 0px; } }
    @media (max-width: 480px) {
      .buy-row-item-info__user {
        margin: 0px 0px 15px 0px; } }

/* CONNECTION */
.connection {
  background-color: #2d3035; }
  .connection__body {
    padding: 81px 0;
    text-align: center; }
    @media (max-width: 1012px) {
      .connection__body {
        padding: 60px 0; } }
    @media (max-width: 992.98px) {
      .connection__body {
        padding: 50px 0; } }
    @media (max-width: 767.98px) {
      .connection__body {
        padding: 40px 0; } }
    @media (max-width: 480px) {
      .connection__body {
        padding: 25px 0; } }
  .connection__title {
    max-width: 230px;
    margin: 0 auto; }
  .connection__subtitle {
    max-width: 470px;
    color: #98a0a5;
    font-size: 21px;
    line-height: 28px;
    margin: 0 auto 60px auto; }
    @media (max-width: 1012px) {
      .connection__subtitle {
        margin: 0 auto 50px auto; } }
    @media (max-width: 992.98px) {
      .connection__subtitle {
        margin: 0 auto 40px auto; } }
    @media (max-width: 767.98px) {
      .connection__subtitle {
        margin: 0 auto 30px auto; } }
    @media (max-width: 480px) {
      .connection__subtitle {
        margin: 0 auto 20px auto; } }

.connection-form {
  margin: 0px 0px 40px 0px; }
  @media (max-width: 1012px) {
    .connection-form {
      margin: 0px 0px 35px 0px; } }
  @media (max-width: 992.98px) {
    .connection-form {
      margin: 0px 0px 30px 0px; } }
  @media (max-width: 767.98px) {
    .connection-form {
      margin: 0px 0px 25px 0px; } }
  @media (max-width: 480px) {
    .connection-form {
      margin: 0px 0px 20px 0px; } }

.connection-links__link {
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: 0px 10px 0px 0px; }
  .connection-links__link:last-child {
    margin: 0; }
  .connection-links__link:hover {
    transform: translateY(-5px); }
