/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: Poppins;
  src: url("src/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.title {
  font-family: Poppins;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -1.5px;
  text-align: center;
  vertical-align: middle;
  color: #FFFFFF;
}
@media (min-width: 744px) {
  .title {
    font-family: Poppins;
    font-weight: 700;
    font-size: 64px;
    line-height: 1;
    letter-spacing: -1.5px;
    text-align: center;
    vertical-align: middle;
  }
}
@media (min-width: 1260px) {
  .title {
    font-family: Poppins;
    font-weight: 700;
    font-size: 80px;
    line-height: 1;
    letter-spacing: -1.5px;
    text-align: center;
    vertical-align: middle;
  }
}
.title--secondary {
  background-color: #1D1D1D;
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -1.5px;
  text-align: left;
  color: #FFFFFF;
}
@media (min-width: 744px) {
  .title--secondary {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -1.5px;
    width: 288px;
  }
}
@media (min-width: 1260px) {
  .title--secondary {
    font-family: Poppins;
    font-weight: 500;
    font-size: 64px;
    line-height: 1;
    letter-spacing: -1.5px;
    width: 411px;
  }
}
.title__glow {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 15px rgba(255, 255, 255, 0.5);
}
.title--section {
  font-family: Poppins;
  font-weight: 500;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: -1.5px;
  text-align: center;
  text-transform: capitalize;
}
@media (min-width: 744px) {
  .title--section {
    font-family: Poppins;
    font-weight: 500;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -1.5px;
    text-align: center;
  }
}
@media (min-width: 1260px) {
  .title--section {
    font-family: Poppins;
    font-weight: 500;
    font-size: 64px;
    line-height: 1;
    letter-spacing: -1.5px;
    text-align: center;
  }
}

.header {
  background-color: #1D1D1D;
  background-image: url("src/images/header/header-background.jpg");
  background-repeat: no-repeat;
  min-height: 100vh;
  box-sizing: border-box;
  background-size: cover;
  background-position: center right;
  display: grid;
  grid-template-columns: repeat(2, 130px);
  grid-template-rows: auto auto;
  gap: 20px;
  justify-content: center;
}
@media (min-width: 744px) {
  .header {
    background-image: url("src/images/header/header-background-desktop.jpg");
    grid-template-columns: repeat(6, 80px);
    grid-template-rows: auto 1fr;
    gap: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 100vh;
  }
}
@media (min-width: 1260px) {
  .header {
    background-image: url("src/images/header/header-background-desktop.jpg");
    grid-template-columns: repeat(12, 63px);
    grid-template-rows: auto 1fr;
    gap: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    min-height: 100vh;
  }
}
.header__nav {
  align-self: start;
  grid-column: 1/3;
  grid-row: 1/2;
}
@media (min-width: 744px) {
  .header__nav {
    grid-column: 1/7;
  }
}
@media (min-width: 1260px) {
  .header__nav {
    grid-column: 1/13;
  }
}
.header__title {
  grid-column: 1/3;
  padding-top: 80px;
}
@media (min-width: 744px) {
  .header__title {
    grid-column: 1/7;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1260px) {
  .header__title {
    grid-column: 1/13;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
}
@media (min-width: 744px) {
  .nav__logo {
    height: 56px;
  }
}
@media (min-width: 1260px) {
  .nav__logo {
    height: 56px;
  }
}
.nav__logo {
  transition: all 0.1s ease-in-out;
}
.nav__logo:hover {
  filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.8));
}
@media (min-width: 744px) {
  .nav__logo-menu {
    height: 56px;
  }
}
@media (min-width: 1260px) {
  .nav__logo-menu {
    height: 56px;
  }
}
.nav__logo-menu {
  transition: all 0.1s ease-in-out;
}
.nav__logo-menu:hover {
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.8));
}
.nav-block {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media (min-width: 744px) {
  .nav-block {
    height: 32px;
    gap: 48px;
  }
}
@media (min-width: 1260px) {
  .nav-block {
    height: 32px;
    gap: 48px;
  }
}
@media (min-width: 744px) {
  .nav-block__phone {
    height: 24px;
  }
}
@media (min-width: 1260px) {
  .nav-block__phone {
    height: 24px;
  }
}
@media (min-width: 744px) {
  .nav-block__menu {
    height: 16px;
  }
}
@media (min-width: 1260px) {
  .nav-block__menu {
    height: 16px;
  }
}
@media (min-width: 744px) {
  .nav-block__menu-close {
    height: 21px;
  }
}
@media (min-width: 1260px) {
  .nav-block__menu-close {
    height: 21px;
    transition: transform 0.3s ease;
  }
  .nav-block__menu-close:hover {
    transform: rotate(90deg);
  }
  .nav-block__menu-close:active {
    transform: rotate(90deg) scale(0.8);
  }
}

.main {
  background-color: #1D1D1D;
  padding-top: 64px;
  font-family: Poppins;
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0px;
  color: #FFFFFF;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 130px);
  gap: 20px;
}
@media (min-width: 744px) {
  .main {
    grid-template-columns: repeat(6, 80px);
    gap: 24px;
    padding-top: 120px;
  }
}
@media (min-width: 1260px) {
  .main {
    grid-template-columns: repeat(12, 63px);
    gap: 24px;
    padding-top: 120px;
  }
}
.main {
  row-gap: 0;
}
.main__title {
  padding-bottom: 32px;
  grid-column: 1/3;
}
@media (min-width: 744px) {
  .main__title {
    grid-column: 1/3;
  }
}
@media (min-width: 1260px) {
  .main__title {
    grid-column: 1/5;
  }
}
.main__content {
  grid-column: 1/3;
}
@media (min-width: 744px) {
  .main__content {
    grid-column: 4/7;
  }
}
@media (min-width: 1260px) {
  .main__content {
    grid-column: 6/13;
  }
}
.main__section {
  grid-column: 1/3;
}
@media (min-width: 744px) {
  .main__section {
    grid-column: 1/7;
  }
}
@media (min-width: 1260px) {
  .main__section {
    grid-column: 1/13;
  }
}
@media (min-width: 744px) {
  .main-text {
    width: 288px;
  }
}
@media (min-width: 1260px) {
  .main-text {
    width: 512px;
  }
}

.article__model {
  font-family: Poppins;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0px;
}
.article__description {
  font-family: Poppins;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0px;
}
.article__price {
  font-family: Poppins;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0px;
}
.article__function {
  font-family: Poppins;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0px;
}
.article__pictures {
  padding-bottom: 32px;
  justify-self: center;
}
.article__item {
  width: 280px;
}
.article__paragraph {
  padding-top: 8px;
  padding-bottom: 8px;
}
.article__images {
  padding-bottom: 16px;
}
@media (min-width: 1260px) {
  .article__image {
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s;
  }
  .article__image:hover {
    transform: scale(1.05);
  }
}

.pictures {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 130px);
  gap: 20px;
}
@media (min-width: 744px) {
  .pictures {
    grid-template-columns: repeat(6, 80px);
    gap: 24px;
  }
}
@media (min-width: 1260px) {
  .pictures {
    grid-template-columns: repeat(12, 63px);
    gap: 24px;
  }
}
.pictures__image {
  object-fit: cover;
  height: 100%;
  width: 130px;
}
@media (min-width: 744px) {
  .pictures__image {
    grid-column: span 4;
    height: 187px;
  }
  .pictures__image--small {
    grid-column: span 2;
    width: 100%;
  }
  .pictures__image--big {
    grid-column: span 4;
    width: 100%;
  }
}
@media (min-width: 1260px) {
  .pictures__image {
    grid-column: span 6;
    height: 320px;
  }
  .pictures__image--small {
    grid-column: span 4;
    width: 100%;
  }
  .pictures__image--big {
    grid-column: span 8;
    width: 100%;
  }
}

.button {
  background-color: #FFFFFF;
  text-decoration: none;
  color: #1D1D1D;
  border-radius: 28px;
  height: 56px;
  width: 100%;
  display: block;
  text-align: center;
  line-height: 56px;
  font-family: Poppins;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0px;
  text-align: center;
}
.button--explore {
  grid-column: span 2;
  justify-content: center;
}
@media (min-width: 744px) {
  .button--explore {
    grid-column: 2/6;
  }
}
@media (min-width: 1260px) {
  .button--explore {
    grid-column: 5/9;
  }
}
.button--send {
  display: block;
  width: 100%;
  height: 56px;
  border-radius: 28px;
  border: 0;
  box-sizing: border-box;
  font-family: Poppins;
  font-weight: 700;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0px;
  text-align: center;
  cursor: pointer;
}
.button:hover {
  box-shadow: 1px 4px 16px 0px rgba(232, 232, 240, 0.4);
}
.button:active {
  box-shadow: 1px 4px 16px 0px rgba(232, 232, 240, 0.6392156863);
}

.address__group {
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
.address__group:hover {
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}
@media (min-width: 744px) {
  .address__group:first-of-type .address__label {
    padding-top: 0;
  }
}
@media (min-width: 1260px) {
  .address__group:first-of-type .address__label {
    padding-top: 0;
  }
}
.address__label {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0px;
  padding-top: 24px;
}
.address__content {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0px;
  padding-top: 8px;
  text-decoration: none;
  color: #FFFFFF;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form__item:hover .form__item-input {
  border: 1px solid #D5D7DE;
  border-radius: 24px;
}
.form__item:hover .form__item-textarea {
  border: 1px solid #D5D7DE;
  border-radius: 16px;
}
.form__input {
  font-family: Poppins;
  background-color: #F8F8FA;
  border: none;
  width: 100%;
  height: 48px;
  border-radius: 24px;
  line-height: 48px;
  padding-left: 16px;
  box-sizing: border-box;
}
.form__input::placeholder {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #7E7E83;
}
.form__textarea {
  font-family: Poppins;
  background-color: #F8F8FA;
  border: none;
  width: 100%;
  height: 148px;
  border-radius: 16px;
  padding-top: 16px;
  padding-left: 16px;
  box-sizing: border-box;
}
.form__textarea::placeholder {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #7E7E83;
}
.form__textarea {
  resize: none;
}
.form__label:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.footer {
  background-image: url("src/images/footer/footer-background-mobile.jpg");
  height: 200px;
  width: 100%;
  background-size: cover;
  background-position: center right;
}
@media (min-width: 744px) {
  .footer {
    background-image: url("src/images/footer/footer-background.jpg");
    height: 480px;
  }
}
@media (min-width: 1260px) {
  .footer {
    background-image: url("src/images/footer/footer-background.jpg");
    height: 555px;
  }
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  transform: translate(100%);
  transition: transform 0.3s ease-in-out;
  background-color: #C2C2C2;
  padding: 24px 20px;
  min-height: 100vh;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 130px);
  gap: 20px;
}
@media (min-width: 744px) {
  .menu {
    grid-template-columns: repeat(6, 80px);
    gap: 24px;
  }
}
@media (min-width: 1260px) {
  .menu {
    grid-template-columns: repeat(12, 63px);
    gap: 24px;
  }
}
.menu {
  row-gap: 0;
  align-content: start;
  box-sizing: border-box;
  max-height: 100vh;
  overflow-y: auto;
}
.menu:target {
  transform: translate(0);
}
.menu__links {
  grid-column: span 2;
}
@media (min-width: 744px) {
  .menu__links {
    grid-column: span 6;
  }
}
@media (min-width: 1260px) {
  .menu__links {
    grid-column: span 12;
  }
}
.menu-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-column: span 2;
}
@media (min-width: 744px) {
  .menu-nav {
    grid-column: span 6;
  }
}
@media (min-width: 1260px) {
  .menu-nav {
    grid-column: span 12;
  }
}
.menu__phone {
  font-family: Poppins;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: uppercase;
  padding-bottom: 16px;
  color: #1D1D1D;
  grid-column: span 2;
}
@media (min-width: 744px) {
  .menu__phone {
    grid-column: span 6;
    font-family: Poppins;
    font-weight: 600;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: uppercase;
  }
}
@media (min-width: 1260px) {
  .menu__phone {
    grid-column: span 12;
    font-family: Poppins;
    font-weight: 700;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: uppercase;
  }
}
.menu__call-link {
  font-family: Poppins;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 2px;
  vertical-align: middle;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 1px solid #1D1D1D;
  color: #1D1D1D;
  transition: all 0.1s ease-in-out;
}
.menu__call-link:hover {
  text-shadow: 0 0 10px rgb(0, 0, 0);
}
.menu__call-link {
  grid-column: span 2;
}
@media (min-width: 744px) {
  .menu__call-link {
    grid-column: span 6;
    font-weight: 600;
  }
}
@media (min-width: 1260px) {
  .menu__call-link {
    grid-column: span 12;
    font-weight: 700;
  }
}

.links {
  padding-top: 64px;
}
.links__list {
  padding-bottom: 8px;
}
.links__item {
  padding-bottom: 32px;
}
.links__compare {
  text-decoration: none;
  color: #FFFFFF;
}
.links__link {
  font-family: Poppins;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 2px;
  vertical-align: middle;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  display: inline-block;
  color: #1D1D1D;
}
.links__link:hover {
  border-bottom: 1px solid #1D1D1D;
}
@media (min-width: 744px) {
  .links__link {
    font-family: Poppins;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 2px;
    vertical-align: middle;
    text-transform: uppercase;
  }
}
@media (min-width: 1260px) {
  .links__link {
    font-family: Poppins;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 2px;
    vertical-align: middle;
    text-transform: uppercase;
  }
}

.section {
  padding-top: 92px;
}
.section__title {
  padding-bottom: 48px;
}
.section__article {
  padding-bottom: 48px;
}

.bikes {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 130px);
  gap: 20px;
}
@media (min-width: 744px) {
  .bikes {
    grid-template-columns: repeat(6, 80px);
    gap: 24px;
  }
}
@media (min-width: 1260px) {
  .bikes {
    grid-template-columns: repeat(12, 63px);
    gap: 24px;
  }
}
.bikes__article {
  grid-column: span 2;
}
@media (min-width: 744px) {
  .bikes__article {
    grid-column: 2/6;
  }
}
@media (min-width: 1260px) {
  .bikes__article {
    grid-column: span 4;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s;
  }
  .bikes__article:hover {
    transform: scale(1.05);
  }
}

.contact {
  padding-bottom: 164px;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 130px);
  gap: 20px;
}
@media (min-width: 744px) {
  .contact {
    grid-template-columns: repeat(6, 80px);
    gap: 24px;
  }
}
@media (min-width: 1260px) {
  .contact {
    grid-template-columns: repeat(12, 63px);
    gap: 24px;
  }
}
.contact__form {
  grid-column: span 2;
}
@media (min-width: 744px) {
  .contact__form {
    grid-column: span 3;
  }
}
@media (min-width: 1260px) {
  .contact__form {
    grid-column: span 5;
  }
}
.contact__address {
  grid-column: span 2;
}
@media (min-width: 744px) {
  .contact__address {
    grid-column: 4/7;
  }
}
@media (min-width: 1260px) {
  .contact__address {
    grid-column: 8/13;
  }
}

.explore {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 130px);
  gap: 20px;
}
@media (min-width: 744px) {
  .explore {
    grid-template-columns: repeat(6, 80px);
    gap: 24px;
  }
}
@media (min-width: 1260px) {
  .explore {
    grid-template-columns: repeat(12, 63px);
    gap: 24px;
  }
}

.burger {
  width: 18px;
  height: 12px;
}
@media (min-width: 744px) {
  .burger {
    display: block;
    width: 24px;
    height: 16px;
  }
}
@media (min-width: 1260px) {
  .burger {
    display: block;
    width: 24px;
    height: 16px;
  }
}
.burger::before {
  content: "";
  background-image: url("src/images/icons/Navigation.svg");
  background-size: cover;
  display: block;
  width: 100%;
  height: 100%;
}
.burger::after {
  display: none;
  content: "";
  background-image: url("src/images/icons/menu-hover.svg");
  background-size: cover;
  width: 100%;
  height: 100%;
}
.burger:hover::before {
  display: none;
}
.burger:hover::after {
  display: block;
}
.burger__label {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.phone__label {
  align-self: center;
  font-family: Poppins;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 2px;
  text-align: right;
  vertical-align: middle;
  text-transform: uppercase;
  color: #FFFFFF;
  position: absolute;
  transform: translateX(calc(-100% - 20px));
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}
.phone:not(:hover) .phone__label {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.phone__call {
  color: #FFFFFF;
  text-decoration: none;
}

/*# sourceMappingURL=styles.css.map */
