* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@font-face {
  font-family: 'Lato Light';
  src: url("../fonts/Lato-Light.eot");
  src: url("../fonts/Lato-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Light.woff") format("woff"), url("../fonts/Lato-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Lato Regular';
  src: url("../fonts/Lato-Regular.eot");
  src: url("../fonts/Lato-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Regular.woff") format("woff"), url("../fonts/Lato-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Lato Italic';
  src: url("../fonts/Lato-Italic.eot");
  src: url("../fonts/Lato-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Italic.woff") format("woff"), url("../fonts/Lato-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Lato Bold';
  src: url("../fonts/Lato-Bold.eot");
  src: url("../fonts/Lato-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Bold.woff") format("woff"), url("../fonts/Lato-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body, html {
  font-family: 'Lato Regular', sans-serif;
  background-color: #f7f7f7;
  height: 100%;
  min-width: 320px;
}

.img {
  width: 100%;
  height: 100%;
}

.title {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 18px;
  color: #353738;
  font-family: 'Lato Bold', serif;
  letter-spacing: 3px;
}

.text {
  font-family: 'Lato Regular', sans-serif;
  color: #848789;
  text-align: center;
  font-size: 16px;
}

.link {
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Lato Bold', serif;
  letter-spacing: 3px;
}

button {
  outline: none;
  cursor: pointer;
}

@media (max-width: 450px) {
  .title {
    font-size: 16px;
  }
  .text {
    font-size: 16px;
  }
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 95px;
  width: 100%;
  position: absolute;
  z-index: 99;
  top: 35px;
}

.menu__item {
  list-style: none;
}

.menu__item:nth-child(2)::before {
  content: ".";
  bottom: 0;
  left: 45px;
  color: inherit;
}

.menu__item:nth-child(5)::before {
  content: ".";
  bottom: 0;
  left: 45px;
  color: inherit;
}

.menu__link {
  font-size: 13px;
  color: #4d4959;
  padding: 0px 45px;
}

.menu__logo {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  height: 100%;
  z-index: 99;
}

.nav__logo {
  display: none;
}

@media (max-width: 757px) {
  .nav__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav__icon {
    display: block;
    position: fixed;
    top: 33px;
    right: 35px;
    width: 30px;
    height: 18px;
    cursor: pointer;
    z-index: 5;
  }
  .nav__icon.active span {
    -webkit-transform: scale(0);
            transform: scale(0);
    background-color: #fff;
  }
  .nav__icon.active span:first-child {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 8px;
  }
  .nav__icon.active span:last-child {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    bottom: 8px;
  }
  .nav__icon span {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    top: 8px;
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #4d4959;
  }
  .nav__icon span:first-child {
    top: 0px;
  }
  .nav__icon span:last-child {
    top: auto;
    bottom: 0px;
  }
  .logo {
    margin: 40px auto;
  }
  .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
    top: auto;
  }
  .menu__body {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: auto;
    background-color: #4d4959;
    padding: 50px 0px 20px 0px;
    -webkit-transform: translate3d(0px, -100%, 0px);
            transform: translate3d(0px, -100%, 0px);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .menu__body.active {
    -webkit-transform: translate3d(0px, 0px, 0px);
            transform: translate3d(0px, 0px, 0px);
  }
  .menu__item {
    padding: 0 0 45px 0;
  }
  .menu__item:nth-child(2), .menu__item:nth-child(5) {
    padding: 0 0 45px 0;
  }
  .menu__item:nth-child(2)::before, .menu__item:nth-child(5)::before {
    display: none;
    bottom: 5px;
    left: 5px;
  }
  .menu__item:last-child {
    padding: 0;
  }
  .menu__item:before {
    width: 4px;
    height: 4px;
    background-color: #fff;
    right: 50%;
    top: 40px;
    margin: 0px -2px 0px 0px;
  }
  .menu__link {
    color: #fff;
    font-size: 20px;
  }
}

.hero {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/hero-bg.jpg") no-repeat center;
  background-size: cover;
}

.header {
  position: absolute;
  width: 100%;
  z-index: 1;
}

.about-us-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f7f7f7;
}

.about-us__icon {
  margin-top: 100px;
  padding: 17px 0;
}

.about-us__title {
  padding: 17px 0;
}

.about-us__text {
  width: 65%;
  padding: 17px 0;
  margin-bottom: 130px;
  font-size: 18px;
  color: #848789;
  line-height: 34px;
  text-align: center;
}

@media (max-width: 450px) {
  .about-us__title {
    padding: 10px 0;
    width: 85%;
    text-align: center;
  }
  .about-us__icon {
    padding: 10px 0;
    margin-top: 50px;
  }
  .about-us__text {
    font-size: 16px;
    line-height: 1.5;
    width: 85%;
    margin: 0;
  }
}

.work-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f7f7f7;
}

.work-bike {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.work__img {
  -ms-flex-preferred-size: 66.7%;
      flex-basis: 66.7%;
  height: auto;
  line-height: 0;
}

.work__img_3sections {
  -ms-flex-preferred-size: 33.3%;
      flex-basis: 33.3%;
}

.work-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  -ms-flex-preferred-size: 33.3%;
      flex-basis: 33.3%;
  height: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -ms-flex-line-pack: center;
      align-content: center;
}

.work-card_left {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.work-card__icon {
  margin-top: 60px;
}

.work-card__title {
  padding-top: 30px;
  padding-bottom: 25px;
}

.work-card__text {
  padding: 0 70px;
  line-height: 30px;
  padding-bottom: 40px;
  text-align: justify;
}

.work-card__img {
  width: 100%;
  position: absolute;
  bottom: -4px;
  height: auto;
}

.text__line {
  width: 50px;
  height: 1px;
  background-color: rgba(132, 135, 137, 0.2);
}

@media (max-width: 1450px) {
  .work-card__icon {
    margin-top: 15px;
  }
  .work-card__title {
    padding-top: 7px;
    padding-bottom: 5px;
  }
  .work-card__text {
    padding: 0 15px;
    padding-bottom: 10px;
    line-height: 1.5;
  }
}

@media (max-width: 1100px) {
  .work__img {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .work-card {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .work-card_left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .work-card__icon {
    margin-top: 30px;
  }
  .work-card__title {
    padding-top: 15px;
  }
  .work-card__text {
    padding: 0 35px;
  }
  .work-card__img {
    position: relative;
    bottom: -5px;
    display: inline-block;
  }
  .text__line {
    margin-bottom: 15px;
  }
}

.slider {
  padding: 120px 0 60px 0;
}

.slider__icon {
  padding: 17px 0;
  text-align: center;
}

.slider__title {
  text-transform: none;
  text-align: center;
}

.slider__title_time {
  font-family: 'Lato Light', sans-serif;
}

.slider__text {
  font-family: 'Lato Italic', sans-serif;
  font-size: 18px;
  color: #848789;
  line-height: 34px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.slick-slider {
  position: relative;
}

.slick-slider .slick-list {
  overflow: hidden;
}

.slick-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.slick-slider .slick-dots {
  padding: 100px 0px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slick-slider .slick-dots li {
  margin: 0px 5px;
}

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

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

@media (max-width: 1100px) {
  .slick-slider .slick-dots {
    padding: 50px 0px 0px 0px;
  }
}

@media (max-width: 767px) {
  .slick-slider .slick-dots {
    padding: 30px 0px 0px 0px;
  }
}

.shop-grid-block {
  display: -ms-grid;
  display: grid;
  max-width: 100%;
  line-height: 0;
}

.shop-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #282f35;
}

.shop__button {
  padding: 20px 60px;
  margin: 75px auto;
  font-family: 'Lato Bold', serif;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 14px;
  color: #ffffff;
  background-color: transparent;
}

.shop__img {
  width: 100%;
  position: relative;
  height: 100%;
}

.shop__img:hover .shop__now {
  opacity: 1;
  background-color: rgba(88, 165, 137, 0.8);
}

.shop__img-1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
}

.shop__img-2 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / 3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
}

.shop__img-3 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3 / 4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / 3;
}

.shop__img-4 {
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-column: 4 / 5;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / 3;
}

.shop__img-5 {
  -ms-grid-column: 5;
  -ms-grid-column-span: 2;
  grid-column: 5 / 7;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
}

.shop__img-6 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / 3;
}

.shop__img-7 {
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
  grid-column: 5 / 6;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / 3;
}

.shop__img-8 {
  -ms-grid-column: 6;
  -ms-grid-column-span: 1;
  grid-column: 6 / 7;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / 3;
}

.shop__now {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
}

.shop__link {
  color: #fff;
  padding: 15px 0;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .shop__img-5 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1 / 5;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3 / 4;
  }
  .shop__img-7 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4 / 5;
  }
  .shop__img-8 {
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3 / 5;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4 / 5;
  }
}

@media (max-width: 757px) {
  .shop__img-3 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3 / 4;
  }
  .shop__img-4 {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3 / 4;
  }
  .shop__img-5 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4 / 5;
  }
  .shop__img-7 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    grid-row: 5 / 6;
  }
  .shop__img-8 {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    grid-row: 5 / 6;
  }
}

.contact-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
}

.contact__logo {
  padding: 20px 0;
  margin-top: 90px;
}

.contact__tagline {
  padding: 20px 0;
  font-family: 'Lato Italic', sans-serif;
  font-size: 24px;
  color: #848789;
}

.contact__mail-form {
  padding: 20px 0;
  margin-bottom: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact__input {
  padding: 30px;
  width: 400px;
  margin-right: 5px;
  height: 70px;
  font-family: 'Lato Italic', sans-serif;
  color: #929292;
  font-size: 20px;
  border: 1px solid #d3d7d9;
}

.contact__input:checked {
  border: 1px solid #64c29e;
}

.contact__button_go {
  height: 70px;
  font-family: 'Lato Light', sans-serif;
  font-size: 24px;
  padding: 25px 45px;
  text-transform: uppercase;
  color: #fff;
  border: none;
  background-color: #64c29e;
}

@media (max-width: 767px) {
  .contact__mail-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 85%;
  }
  .contact__input {
    text-align: center;
    width: 100%;
    margin-bottom: 5px;
  }
}

footer {
  max-width: 1100px;
  background-color: #f7f7f7;
  margin: 0 auto;
}

.footer {
  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-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__column {
  width: 245px;
  margin: 100px 0;
}

.footer-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer-address__row {
  color: #848789;
  font-size: 14px;
  font-family: 'Lato Italic', sans-serif;
}

.footer-address__row_city {
  font-family: 'Lato Bold', serif;
  font-size: 16px;
}

.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-by {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.by {
  color: #848789;
  font-size: 14px;
  font-family: 'Lato Italic', sans-serif;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding-right: 10px;
}

.social {
  padding: 0 8px;
}

@media (max-width: 1100px) {
  .footer {
    display: block;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__column {
    margin: 30px 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 33.333%;
            flex: 0 1 33.333%;
  }
}

@media (max-width: 757px) {
  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 250px;
  }
  .footer__column {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 5px 0;
    padding: 15px 0;
  }
  .footer-by {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-logo {
    margin: 0;
  }
}
/*# sourceMappingURL=style.css.map */