@charset "UTF-8";
/*шрифти*/
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.eot");
  src: local("☺"), url("../fonts/Lato-Bold.woff") format("woff"), url("../fonts/Lato-Bold.ttf") format("truetype"), url("../fonts/Lato-Bold.svg") format("svg");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/LatoI.eot");
  src: local("☺"), url("../fonts/LatoI.woff") format("woff"), url("../fonts/LatoI.ttf") format("truetype"), url("../fonts/LatoI.svg") format("svg");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Light.eot");
  src: local("☺"), url("../fonts/Lato-Light.woff") format("woff"), url("../fonts/Lato-Light.ttf") format("truetype"), url("../fonts/Lato-Light.svg") format("svg");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.eot");
  src: local("☺"), url("../fonts/Lato-Regular.woff") format("woff"), url("../fonts/Lato-Regular.ttf") format("truetype"), url("../fonts/Lato-Regular.svg") format("svg");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.eot");
  src: local("☺"), url("../fonts/Lato-Regular.woff") format("woff"), url("../fonts/Lato-Regular.ttf") format("truetype"), url("../fonts/Lato-Regular.svg") format("svg");
  font-weight: 400;
  font-style: normal;
}

/*общие блоки*/
/*оболочка сайта*/
html {
  scroll-behavior: smooth;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 1100px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

/*голова*/
.full-screen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  background: url("../img/Header_bg.jpg") 50%/cover no-repeat;
}

.menu {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 100%;
  z-index: 50;
}

.menu__link-logo {
  position: absolute;
  left: 50%;
  -webkit-transform: translatex(-50%);
          transform: translatex(-50%);
  top: 35px;
}

.menu__box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 35px 0 0;
  z-index: 700;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 85px;
}

.menu__item {
  padding: 0 35px;
  position: relative;
}

.menu__item:nth-child(2) {
  padding: 0 100px 0 35px;
}

.menu__item:nth-child(3) {
  padding: 0 35px 0 100px;
}

.menu__item:nth-child(3)::after, .menu__item:nth-child(1)::after {
  content: "";
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #4d4959;
  z-index: 5;
  position: absolute;
  top: 3px;
  right: -2.5px;
}

.menu__link {
  font-family: Lato;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #4d4959;
}

.burger {
  display: none;
}

@media (max-width: 992px) {
  body.lock {
    overflow: hidden;
  }
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    height: 25px;
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
  }
  .burger.active span {
    height: 5px;
    background: white;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .burger.active span:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    margin: 12px 0 0;
  }
  .burger.active span:nth-child(2) {
    display: none;
  }
  .burger.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    margin: 0 0 12px;
  }
  .burger span {
    display: block;
    height: 3px;
    width: 30px;
    background: #4d4959;
    border-radius: 10px;
  }
  .menu__box {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #4d4959;
    top: -200%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    overflow: auto;
    padding: 50px 20px 0;
  }
  .menu__box.active {
    top: 0;
  }
  .menu__list {
    z-index: 30;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .menu__item {
    padding: 30px 0 10px !important;
  }
  .menu__link {
    color: #ffffff;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .full-screen__link-logo {
    left: 20px;
    top: 20px;
  }
  .full-screen__logo-img {
    width: 60px;
  }
}

/*контент*/
.about {
  min-height: 470px;
  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;
  padding: 20px;
  position: relative;
}

.about__icon {
  margin: 34px 0;
}

.about__title {
  font-family: Lato;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #353738;
  margin: 0 0 35px 0;
  text-align: center;
}

.about__text {
  font-family: Lato;
  font-size: 18px;
  line-height: 34px;
  font-weight: 400;
  color: #848789;
  text-align: center;
}

.about__line {
  width: 50px;
  height: 1px;
  background-color: rgba(53, 55, 56, 0.2);
  margin: 40px 0 0;
}

.about__rhombus {
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: -24px;
  left: calc(50% - 10px);
  -webkit-transform: rotate(45deg) translateX(-50%) translateY(-50%);
          transform: rotate(45deg) translateX(-50%) translateY(-50%);
  background-color: white;
  z-index: 2;
}

.bicycles {
  display: -ms-grid;
  display: grid;
  width: 100%;
}

.bicycles__container-img {
  background: url("../img/foto_1.png") 50%/cover no-repeat;
  position: relative;
}

.bicycles__container-img::before {
  content: url("../img/icon/logo_content_1.png");
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.bicycles__img-text {
  background: url("../img/foto_2.png") 50%/cover no-repeat;
  min-height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.bicyclesL {
  -ms-grid-rows: 1fr;
  -ms-grid-columns: 2fr 1fr;
      grid-template: 1fr/ 2fr 1fr;
}

.bicyclesR {
  -ms-grid-rows: 1fr;
  -ms-grid-columns: 1fr 2fr;
      grid-template: 1fr / 1fr 2fr;
}

.bicyclesR > .bicycles__container-img {
  background: url("../img/foto_3.png") 50%/cover no-repeat;
  position: relative;
}

.bicyclesR > .bicycles__container-img::before {
  content: url("../img/icon/logo_content_2.png");
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.bicyclesR > .bicycles__container-text .bicycles__img-text {
  background: url("../img/foto_4.png") 50%/cover no-repeat;
}

.bicyclesC {
  -ms-grid-rows: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template: 1fr / 1fr 1fr 1fr;
}

.bicyclesC > .bicycles__container-img {
  background: url("../img/foto_5.png") 50%/cover no-repeat;
  position: relative;
}

.bicyclesC > .bicycles__container-img::before {
  content: url("../img/icon/foto_content_3.png");
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.bicyclesC > .bicycles__container-img:last-child {
  background: url("../img/foto_6.png") 50%/cover no-repeat;
}

.bicyclesC > .bicycles__container-img:last-child::before {
  content: "";
}

.bicyclesC > .bicycles__container-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.bicyclesC > .bicycles__container-text .bicycles__img-text {
  background: url("../img/foto_7.png") 50%/cover no-repeat;
}

@media (max-width: 992px) {
  .bicycles {
    -ms-grid-rows: 1fr;
    -ms-grid-columns: 1fr 1fr;
        grid-template: 1fr/ 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .bicycles {
    display: block;
    max-height: auto;
  }
  .bicycles__container-img {
    width: 100%;
    min-height: 600px;
  }
  .bicyclesR {
    -ms-grid-rows: 1fr;
    -ms-grid-columns: 1fr 2fr;
        grid-template: 1fr / 1fr 2fr;
  }
  .bicyclesR > .bicycles__container-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    min-height: 600px;
  }
  .bicyclesR > .bicycles__img-text {
    min-height: 200px;
  }
}

.slider__item {
  min-height: 470px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider__img {
  margin: 0 0 37px 0;
}

.slider__title {
  font-family: Lato;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #353738;
  text-align: center;
}

.slider__title span {
  font-weight: 300;
  color: #848789;
}

.slider__text {
  margin: 27px 0 0 0;
  font-family: Lato;
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  font-style: italic;
  color: #848789;
  text-align: center;
}

.gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 1fr;
  -ms-grid-columns: (1fr)[6];
      grid-template: 1fr 1fr/repeat(6, 1fr);
}

.gallery__img {
  display: block;
  position: relative;
}

.gallery__img:hover::after {
  content: url("../img/icon/foto_content_4.png");
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 50;
  width: 100%;
  height: 100%;
  background-color: rgba(100, 194, 158, 0.8);
  -webkit-animation-name: gallery;
          animation-name: gallery;
  -webkit-animation-duration: 0.25s;
          animation-duration: 0.25s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery__img-big-right {
  -ms-grid-column: 5;
  -ms-grid-column-span: 2;
  grid-column: 5 / 7;
}

.gallery__img-big-left {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}

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

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

@-webkit-keyframes gallery {
  0% {
    opacity: 0.8%;
  }
  100% {
    opacity: 100%;
  }
}

@keyframes gallery {
  0% {
    opacity: 0.8%;
  }
  100% {
    opacity: 100%;
  }
}

.shop-button {
  background-color: #282f35;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 200px;
}

.shop-button__link {
  font-family: Lato;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
  width: 300px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.49);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s linear 1s;
  transition: all 0.5s linear 1s;
}

.shop-button__link:hover {
  background-color: rgba(100, 194, 158, 0.8);
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.email {
  min-height: 470px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
}

.email__title {
  font-family: Lato;
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: #848789;
  margin: 39px 0 35px;
}

.email__form {
  height: 70px;
}

.email__text {
  width: 400px;
  height: 100%;
  background-color: #ffffff;
  border: 1px solid #d3d7d9;
  font-family: Lato;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: #929292;
  opacity: 50%;
  padding: 0 0 0 30px;
}

.email__btn {
  width: 126px;
  height: 100%;
  font-family: Lato;
  font-size: 24px;
  font-weight: 300;
  background: #efefef;
  color: #000000;
  margin: 0 0 0 10px;
  display: inline-block;
  -webkit-transition: all 0.5s linear 1s;
  transition: all 0.5s linear 1s;
}

.email__btn:hover {
  background-color: #64c29e;
  color: #ffffff;
  -webkit-transition: all 0.35s linear;
  transition: all 0.35s linear;
}

@media (max-width: 1100px) {
  .gallery {
    -ms-grid-rows: (1fr)[6];
    -ms-grid-columns: 1fr 1fr;
        grid-template: repeat(6, 1fr)/1fr 1fr;
  }
  .gallery__img-big-right {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    grid-row: 5/6;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
  .gallery__img-big-left {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
  }
  .gallery__img-big-column1 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 2;
    grid-row: 3 /5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    height: 100%;
  }
  .gallery__img-big-column2 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 2;
    grid-row: 3 /5;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }
}

@media (max-width: 576px) {
  .shop-button__link {
    width: 200px;
    font-size: 12px;
  }
  .email__form {
    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;
    height: auto;
  }
  .email__text {
    height: 70px;
    width: 250px;
  }
  .email__btn {
    margin: 10px 0 0 0;
    height: 70px;
    background-color: rgba(100, 194, 158, 0.8);
    color: #ffffff;
  }
  .email__btn:hover {
    content: "";
  }
}

/*футер*/
.footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 1;
          flex: 0 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33.3%;
          flex: 1 0 33.3%;
  height: 250px;
  background-color: #f7f7f7;
  padding: 20px;
}

@media (max-width: 576px) {
  .footer {
    -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;
  }
}

.footer__contentL {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33.3%;
          flex: 1 0 33.3%;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.footer__text-special {
  font-family: Lato;
  font-size: 16px;
  font-weight: 700;
  color: #848789;
}

.footer__text-wrap {
  display: inline-block;
  text-align: left;
}

@media (max-width: 576px) {
  .footer__text-wrap {
    text-align: center;
  }
}

.footer__text {
  font-family: Lato;
  font-size: 13.9px;
  font-weight: 400;
  font-style: italic;
  color: #848789;
}

.footer__contentC {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33.3%;
          flex: 1 0 33.3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__contentC img {
  margin: 0 8px;
}

.footer__contentR {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33.3%;
          flex: 1 0 33.3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
