/* 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;
}

body {
  background-color: #1d1d1d;
}

.page__body--with-menu {
  overflow: hidden;
}

.header {
  background-image: url(./photos/bike-background.svg);
  height: 85dvh;
  background-repeat: no-repeat;
  background-position: 85%;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 744px) {
  .header {
    height: 100dvh;
    background-position: center;
  }
}
.header__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: -1.5px;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  padding-bottom: 88px;
}
@media (min-width: 744px) {
  .header__title {
    font-size: 68px;
    padding: 0 72px 130px 72px;
  }
}
@media (min-width: 1260px) {
  .header__title {
    font-size: 80px;
    padding: 0 294px 203px 294px;
  }
}

.navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 20px;
  padding: 24px 20px;
  align-items: center;
}
@media (min-width: 744px) {
  .navigation {
    grid-template-columns: repeat(6, minmax(80px, 1fr));
    gap: 24px;
    padding: 36px 72px;
  }
}
@media (min-width: 1260px) {
  .navigation {
    grid-template-columns: repeat(12, minmax(63px, 1fr));
    padding: 36px 120px;
  }
}
.navigation__links {
  justify-self: end;
  display: flex;
  gap: 24px;
  align-items: center;
}
@media (min-width: 744px) {
  .navigation__links {
    grid-column: 6;
    gap: 32px;
  }
}
@media (min-width: 1260px) {
  .navigation__links {
    grid-column: 12;
  }
}
.navigation__logo {
  height: 38px;
}
@media (min-width: 744px) {
  .navigation__logo {
    height: 56px;
  }
}
.navigation__link {
  display: flex;
  align-items: center;
}
.navigation__image {
  height: 18px;
  width: 18px;
}
@media (min-width: 744px) {
  .navigation__image {
    height: 24px;
    width: 24px;
  }
}

.menu {
  height: 100dvh;
  width: 100%;
  background-color: lightgray;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}
.menu:target {
  transform: translateX(0%);
}
.menu__list {
  padding: 0 20px;
}
@media (min-width: 744px) {
  .menu__list {
    padding: 0 72px;
  }
}
@media (min-width: 1260px) {
  .menu__list {
    padding: 0 120px;
  }
}
.menu__item {
  padding-top: 32px;
}
.menu__item:first-child {
  padding-top: 24px;
}
@media (min-width: 744px) {
  .menu__item:first-child {
    padding-top: 8px;
  }
}
@media (min-width: 1260px) {
  .menu__item:first-child {
    padding-top: 24px;
  }
}
.menu__link {
  text-decoration: none;
  color: #1d1d1d;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 2px;
  vertical-align: middle;
  text-transform: uppercase;
}
@media (min-width: 1260px) {
  .menu__link {
    font-weight: 900;
  }
}
.menu__link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background-color: black;
  border-radius: 45px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.menu__link:hover::before {
  transform: scaleX(1);
}
.menu__contact {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 744px) {
  .menu__contact {
    padding: 40px 72px;
  }
}
@media (min-width: 1260px) {
  .menu__contact {
    padding: 40px 120px;
  }
}
.menu__contact--phone {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #1d1d1d;
}
@media (min-width: 1260px) {
  .menu__contact--phone {
    font-weight: 900;
  }
}
.menu__contact--reservation {
  position: relative;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 2px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #1d1d1d;
  width: max-content;
}
@media (min-width: 1260px) {
  .menu__contact--reservation {
    font-weight: 900;
  }
}
.menu__contact--reservation::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  border-bottom: 1px solid black;
  border-radius: 45px;
}

.title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -1.5px;
  text-transform: capitalize;
  color: #ffffff;
  align-self: center;
}

.section {
  padding: 0 20px;
}
@media (min-width: 744px) {
  .section {
    display: grid;
    grid-template-columns: repeat(6, minmax(80px, 1fr));
    gap: 24px;
    padding: 120px 72px 0 72px;
  }
}
@media (min-width: 1260px) {
  .section {
    grid-template-columns: repeat(12, minmax(63px, 1fr));
    padding: 120px 120px 0 120px;
    gap: 24px;
  }
}
.section__title {
  padding-top: 60px;
}
@media (min-width: 744px) {
  .section__title {
    padding: 0;
    font-size: 48px;
    grid-column: 1/4;
    align-self: start;
  }
}
@media (min-width: 1260px) {
  .section__title {
    padding: 0;
    font-size: 64px;
    grid-column: 1/6;
  }
}
.section__paragraph {
  padding-top: 32px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 23px;
  line-height: 140%;
  letter-spacing: 0px;
  color: #fff;
}
@media (min-width: 744px) {
  .section__paragraph {
    padding: 0;
    grid-column: 4/7;
    align-self: start;
  }
}
@media (min-width: 1260px) {
  .section__paragraph {
    grid-column: 6/12;
  }
}

.compare {
  display: flex;
  padding: 92px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 744px) {
  .compare {
    padding: 120px 72px 0 72px;
    gap: 48px;
  }
}
@media (min-width: 1260px) {
  .compare {
    display: grid;
    grid-template-columns: repeat(12, minmax(63px, 1fr));
    padding: 164px 120px 0 120px;
    gap: 24px;
  }
}
.compare__item {
  grid-column: span 4;
  transition: transform 0.3s ease-in-out;
}
.compare__item:hover {
  transform: scale(1.05);
}
.compare__title {
  line-height: 32px;
}
@media (min-width: 744px) {
  .compare__title {
    font-size: 48px;
    line-height: 100%;
  }
}
@media (min-width: 1260px) {
  .compare__title {
    grid-column: 1/13;
    justify-self: center;
    font-size: 64px;
  }
}
.compare__title-small {
  padding-top: 32px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0px;
  color: #FFF;
}
.compare__photo {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 1260px) {
  .compare__photo {
    padding-top: 30px;
  }
}
.compare__paragraph {
  padding-top: 8px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
}
.compare__price {
  padding-top: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  color: #FFF;
}

.details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1260px) {
  .details {
    padding-top: 144px;
  }
}
.details__title {
  line-height: 32px;
}
@media (min-width: 744px) {
  .details__title {
    font-size: 48px;
    line-height: 100%;
  }
}
@media (min-width: 1260px) {
  .details__title {
    font-size: 64px;
  }
}
.details__title-small {
  padding-top: 16px;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0px;
}
.details__item {
  padding-top: 40px;
}
@media (min-width: 744px) {
  .details__item {
    padding-top: 48px;
  }
}
@media (min-width: 1260px) {
  .details__item {
    padding-top: 24px;
  }
}
.details__item-first {
  padding-top: 48px;
}
@media (min-width: 744px) {
  .details__item-first {
    padding-top: 40px;
  }
}
@media (min-width: 1260px) {
  .details__item-first {
    padding-top: 24px;
  }
}
.details__images {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 20px;
}
@media (min-width: 744px) {
  .details__images {
    grid-template-columns: repeat(6, minmax(80px, 1fr));
    gap: 24px;
    aspect-ratio: 3/1;
  }
}
@media (min-width: 1260px) {
  .details__images {
    grid-template-columns: repeat(12, minmax(63px, 1fr));
    gap: 24px;
    aspect-ratio: 3/1;
  }
}
.details__photo {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 744px) {
  .details__photo {
    grid-column: span 3;
    aspect-ratio: auto;
    min-height: 0;
  }
}
@media (min-width: 744px) {
  .details__photo--big {
    grid-column: span 4;
    height: 100%;
  }
}
@media (min-width: 1260px) {
  .details__photo--big {
    grid-column: span 8;
  }
}
@media (min-width: 744px) {
  .details__photo--small {
    grid-column: span 2;
    height: 100%;
  }
}
@media (min-width: 1260px) {
  .details__photo--small {
    grid-column: span 4;
  }
}
.details__paragraph {
  padding-top: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #FFF;
}
@media (min-width: 1260px) {
  .details__paragraph {
    width: 65%;
  }
}
.details__link {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  margin-top: 40px;
  padding: 16px;
  width: 30%;
  align-self: center;
  text-decoration: none;
  color: #1d1d1d;
  background-color: #fff;
  border-radius: 40px;
  font-family: "Poppins";
  font-weight: 900;
  font-size: 16px;
  line-height: 27px;
}

.contact {
  display: flex;
  flex-direction: column;
}
.contact__form {
  width: 100%;
}
@media (min-width: 744px) {
  .contact__form {
    margin-bottom: 102px;
  }
}
@media (min-width: 1260px) {
  .contact__form {
    margin-bottom: 164px;
  }
}
.contact__title {
  padding-top: 80px;
  padding-bottom: 48px;
}
@media (min-width: 744px) {
  .contact__title {
    padding-top: 0;
    padding-bottom: 24px;
    font-size: 48px;
    text-transform: none;
  }
}
@media (min-width: 1260px) {
  .contact__title {
    padding-top: 60px;
    padding-bottom: 24px;
  }
}
@media (min-width: 744px) {
  .contact__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(80px, 1fr));
    gap: 24px;
  }
}
@media (min-width: 1260px) {
  .contact__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(63px, 1fr));
    gap: 24px;
  }
}
@media (min-width: 744px) {
  .contact__grid--big {
    grid-column: span 3;
    align-self: start;
  }
}
@media (min-width: 1260px) {
  .contact__grid--big {
    grid-column: span 5;
  }
}
@media (min-width: 744px) {
  .contact__grid--small {
    grid-column: span 2;
    align-self: start;
  }
}
@media (min-width: 1260px) {
  .contact__grid--small {
    grid-column: 8/11;
  }
}
.contact__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.contact__item {
  box-sizing: border-box;
  width: 100%;
  background-color: #F8F8FA;
  border: 1px solid #1d1d1d;
  border-radius: 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.contact__item::placeholder {
  color: #7E7E83;
}
.contact__item-input {
  padding: 16px;
  margin-bottom: 16px;
}
.contact__item-textarea {
  padding-left: 16px;
  padding-bottom: 54px;
  margin-bottom: 32px;
  line-height: 40px;
  border-radius: 16px;
  resize: none;
}
.contact__button {
  width: 100%;
  background-color: #fff;
  border: none;
  border-radius: 40px;
  padding: 16px;
  font-family: "Poppins";
  font-weight: 900;
  font-size: 16px;
  line-height: 27px;
  color: #1d1d1d;
  cursor: pointer;
}
.contact__article {
  padding-top: 24px;
  padding-bottom: 120px;
}
@media (min-width: 744px) {
  .contact__article {
    padding: 0;
  }
}
.contact__type {
  padding-top: 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0px;
  color: #fff;
}
@media (min-width: 744px) {
  .contact__type:first-child {
    padding-top: 0;
  }
}
.contact__link {
  padding-top: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0px;
  color: #fff;
  text-decoration: none;
}
.contact__link:hover {
  color: #ccc;
}
.contact__link:active {
  color: #999;
}

.footer {
  background-image: url("./photos/footer.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 200px;
}
@media (min-width: 744px) {
  .footer {
    height: 480px;
  }
}
@media (min-width: 1260px) {
  .footer {
    height: 530px;
  }
}

.phone__label {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  position: absolute;
  transform: translateX(calc(-100% - 20px));
}
.phone:not(:hover) .phone__label {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.burger::before {
  display: inline-block;
  content: "";
  background-image: url(./src/images/menu.svg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 12px;
  width: 18px;
}
@media (min-width: 744px) {
  .burger::before {
    height: 16px;
    width: 24px;
  }
}
.burger::after {
  display: none;
  content: "";
  background-image: url(./src/images/menu_hover.svg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 12px;
  width: 18px;
  transform: scale(-1, -1);
}
@media (min-width: 744px) {
  .burger::after {
    height: 16px;
    width: 24px;
  }
}
.burger:hover::before {
  display: none;
}
.burger:hover::after {
  display: inline-block;
}
.burger__label {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button:hover {
  box-shadow: 1px 4px 16px 0 rgba(232, 232, 240, 0.4);
}
.button:active {
  box-shadow: 1px 4px 16px 0 rgba(232, 232, 240, 0.64);
}

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