@charset "UTF-8";
/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-size: 22px;
  color: #000;
  font-weight: 600;
  overflow-x: hidden;
}
body._lock {
  overflow: hidden;
}

html {
  width: 100%;
  height: 100%;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

button,
input button:active,
input:active,
button:focus,
input:focus {
  outline: none;
}

/* Удаляем все анимации и переходы для людей, которые предпочитают их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.icon {
  width: calc(20px + 30 * ((100vw - 320px) / 1280));
}

.title {
  font-family: "Lato", sans-serif;
  font-size: calc(12px + 6 * ((100vw - 320px) / 1280));
  font-weight: 700;
  text-transform: uppercase;
  color: #353738;
}

.text {
  font-family: "Lato", sans-serif;
  font-size: calc(12px + 6 * ((100vw - 320px) / 1280));
  font-weight: 400;
  color: #848789;
}

.header {
  width: 100%;
  background: transparrent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
@media (min-width: 768px) {
  .header__container {
    width: 100%;
    height: calc(50px + 105 * ((100vw - 320px) / 1280));
    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__logo {
  position: absolute;
  z-index: 5;
}
.header__logo img {
  width: calc(30px + 64 * ((100vw - 320px) / 1280));
}
@media (max-width: 767px) {
  .header__logo {
    top: 10px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@media (min-width: 768px) {
  .menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 70px;
       -moz-column-gap: 70px;
            column-gap: 70px;
  }
  .menu__list li {
    position: relative;
  }
  .menu__list li::before {
    content: "";
    height: 3px;
    width: 3px;
    background: #4d4959;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    border-radius: 50%;
  }
  .menu__list li:nth-child(2) {
    margin-right: calc(0px + 70 * ((100vw - 320px) / 1280));
  }
  .menu__list li:nth-child(3) {
    margin-left: calc(0px + 70 * ((100vw - 320px) / 1280));
  }
  .menu__list li:nth-child(3)::before {
    left: 70px;
  }
  .menu__list li:nth-child(1)::before {
    left: 102.5px;
  }
  .menu__list li:nth-child(4)::before, .menu__list li:nth-child(2)::before {
    display: none;
  }
}
.menu__link {
  text-decoration: none;
  text-transform: uppercase;
  color: #4d4959;
  font-family: "Lato", sans-serif;
  white-space: nowrap;
  position: relative;
  font-size: 14px;
}
@media (max-width: 767px) {
  .menu__body {
    position: fixed;
    width: 100%;
    min-height: 100%;
    background: #4d4959;
    padding: 60px 0 20px 0;
    top: 0;
    left: -120%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .menu__body._active {
    left: 0;
  }
  .menu__icon {
    z-index: 15;
    display: block;
    position: absolute;
    width: 30px;
    height: 15px;
    border: none;
    background: none;
    cursor: pointer;
    top: 10px;
    right: 10px;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
  }
  .menu__icon span {
    width: 100%;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0px, -50%);
            transform: translate(0px, -50%);
  }
  .menu__icon::before {
    width: 60%;
    right: 0;
    top: 0;
  }
  .menu__icon::after {
    width: 30%;
    right: 0;
    bottom: 0;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    position: absolute;
    height: 10%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background: #4d4959;
    border-radius: 5px;
  }
  .menu__icon._active span, .menu__icon._active::before, .menu__icon._active::after {
    background: #fff;
  }
  .menu__icon._active::before {
    width: 100%;
  }
  .menu__icon._active span {
    width: 50%;
  }
  .menu__icon._active::after {
    width: 70%;
  }
  .menu__list {
    margin: 0;
    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;
    position: absolute;
  }
  .menu__list li {
    position: relative;
    margin-bottom: 20px;
  }
  .menu__list li::before {
    content: "";
    height: 3px;
    width: 3px;
    background: #fff;
    position: absolute;
    top: 45px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    border-radius: 50%;
  }
  .menu__list li:last-child::before {
    display: none;
  }
  .menu__link {
    color: #fff;
  }
}

.first-block {
  width: 100%;
  height: 100vh;
}
.first-block img {
  width: 100%;
  height: 100%;
  max-height: 1200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.header-gallery {
  width: 100%;
  background: #f7f7f7;
  padding-top: calc(10px + 100 * ((100vw - 320px) / 1280));
  padding-bottom: calc(10px + 130 * ((100vw - 320px) / 1280));
}
.header-gallery__container {
  max-width: 1100px;
  padding: 0 10px;
  margin: 0 auto;
  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;
  row-gap: calc(20px + 15 * ((100vw - 320px) / 1280));
}
@media (min-width: 1600px) {
  .header-gallery__container {
    max-width: 70%;
  }
}
.header-gallery__text {
  text-align: center;
}
@media (max-width: 767px) {
  .header-gallery__text {
    text-align: justify;
  }
}

.gallery__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
  -ms-grid-columns: (1fr)[3];
      grid-template: 1fr/repeat(3, 1fr);
}
@media (max-width: 767px) {
  .gallery__row {
    display: block;
  }
}
.gallery__item-big {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.gallery__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.gallery__item .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .gallery__item .bg.hidden {
    display: none;
  }
}
@media (max-width: 767px) {
  .gallery__item .bycicle__icon.hidden {
    display: none;
  }
}
.gallery__item .bycicle__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(30px + 80 * ((100vw - 320px) / 1280));
}
.gallery__text {
  text-align: justify;
}
.gallery__upper {
  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;
  row-gap: calc(20px + 10 * ((100vw - 320px) / 1280));
  padding-top: calc(10px + 60 * ((100vw - 320px) / 1280));
  padding-right: calc(10px + 55 * ((100vw - 320px) / 1280));
  padding-left: calc(10px + 55 * ((100vw - 320px) / 1280));
  padding-bottom: calc(10px + 85 * ((100vw - 320px) / 1280));
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
@media (max-width: 767px) {
  .gallery__upper {
    padding: 10px;
  }
}

.twitter {
  background: #f7f7f7;
  padding-top: calc(10px + 140 * ((100vw - 320px) / 1280));
  padding-bottom: calc(10px + 95 * ((100vw - 320px) / 1280));
}
.twitter__icon {
  margin-bottom: calc(10px + 30 * ((100vw - 320px) / 1280));
}
.twitter__container {
  max-width: 1100px;
  padding: 0 10px;
  margin: 0 auto;
  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;
  row-gap: calc(10px + 20 * ((100vw - 320px) / 1280));
}
@media (min-width: 1600px) {
  .twitter__container {
    max-width: 70%;
  }
}
.twitter__name {
  font-family: "Lato", sans-serif;
  font-size: calc(14px + 4 * ((100vw - 320px) / 1280));
  color: #353738;
  font-weight: 700;
}
.twitter__name span {
  font-weight: 300;
  color: #a3a5a6;
}
.twitter__name span:nth-child(1) {
  margin: 0 5px;
}
.twitter__text {
  font-family: "Lato", sans-serif;
  font-size: calc(14px + 10 * ((100vw - 320px) / 1280));
  color: #848789;
  font-weight: 400;
  font-style: italic;
  text-align: center;
}
@media (max-width: 767px) {
  .twitter__text {
    text-align: justify;
  }
}

.shop__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
  -ms-grid-columns: (1fr)[3];
      grid-template: 1fr/repeat(3, 1fr);
}
.shop__col {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: (1fr)[2];
  -ms-grid-columns: (1fr)[2];
      grid-template: repeat(2, 1fr)/repeat(2, 1fr);
}
.shop__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.shop .two-col {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.shop .two-row {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
.shop__btn {
  padding: 1em 4em;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #fff;
  background: none;
  border: 1px solid #fff;
  font-size: calc(10px + 4 * ((100vw - 320px) / 1280));
}
.shop__btn__area {
  width: 100%;
  height: calc(60px + 140 * ((100vw - 320px) / 1280));
  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;
  background: #282f35;
}

.form {
  padding-top: calc(10px + 100 * ((100vw - 320px) / 1280));
  padding-bottom: calc(10px + 100 * ((100vw - 320px) / 1280));
  background: #fff;
}
.form__container {
  max-width: 1100px;
  padding: 0 10px;
  margin: 0 auto;
  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;
  row-gap: calc(10px + 25 * ((100vw - 320px) / 1280));
}
@media (min-width: 1600px) {
  .form__container {
    max-width: 70%;
  }
}
.form__container form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
@media (max-width: 767px) {
  .form__container form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.form__logo {
  width: calc(30px + 64 * ((100vw - 320px) / 1280));
}
.form__text {
  font-family: "Lato", sans-serif;
  font-size: calc(14px + 10 * ((100vw - 320px) / 1280));
  color: #848789;
  font-weight: 400;
  font-style: italic;
  text-align: center;
}
.form__input {
  padding: 10px 20px;
  font-size: calc(14px + 6 * ((100vw - 320px) / 1280));
  color: #848789;
  font-weight: 400;
  font-style: italic;
  width: 400px;
  border: 1px solid #d3d7d9;
}
@media (max-width: 767px) {
  .form__input {
    width: 100%;
    margin-bottom: 10px;
  }
}
.form__button {
  padding: 10px;
  font-size: calc(14px + 10 * ((100vw - 320px) / 1280));
  width: 130px;
  font-family: "Lato", sans-serif;
  color: #fff;
  font-weight: 300;
  background: #64c29e;
  border: none;
}
@media (max-width: 767px) {
  .form__button {
    width: 100%;
  }
}

.footer {
  padding-top: calc(10px + 90 * ((100vw - 320px) / 1280));
  padding-bottom: calc(10px + 90 * ((100vw - 320px) / 1280));
  background: #f7f7f7;
}
.footer__container {
  max-width: 1100px;
  padding: 0 10px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 1600px) {
  .footer__container {
    max-width: 70%;
  }
}
@media (max-width: 767px) {
  .footer__container {
    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;
  }
}
.footer__text {
  font-family: "Lato", sans-serif;
  font-size: calc(12px + 4 * ((100vw - 320px) / 1280));
  color: #848789;
  font-weight: 400;
  font-style: italic;
  text-align: left;
}
.footer__text span {
  font-weight: 700;
  font-style: normal;
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: calc(15px + 0 * ((100vw - 320px) / 1280));
     -moz-column-gap: calc(15px + 0 * ((100vw - 320px) / 1280));
          column-gap: calc(15px + 0 * ((100vw - 320px) / 1280));
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .footer__links {
    position: static;
  }
}
.footer__link img {
  width: calc(15px + 20 * ((100vw - 320px) / 1280));
}
@media (max-width: 767px) {
  .footer__link img {
    margin-left: 10px;
  }
}
/*# sourceMappingURL=style.css.map */
