@charset "UTF-8";

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: inherit; /* font-size удален, так как он входит в font */
  vertical-align: baseline;
}

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

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

@font-face {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  src: url("../fonts/Roboto-Regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

.title {
  font-family: "Space Grotesk", monospace;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  display: flex;
  align-items: center;
  color: #292929;
}

.title--secondary {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  color: #292929;
  padding: 48px 20px;
}

@media (min-width: 744px) {
  .title--secondary {
    font-size: 40px;
    padding: 120px 72px 56px;
  }
}

@media (min-width: 1260px) {
  .title--secondary {
    font-size: 48px;
    padding: 128px 120px 56px;
  }
}

.header {
  background-image: url("./images/photos/girl.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 20px 40px;
  box-sizing: border-box;
  margin-bottom: 16px;
}

@media (min-width: 1260px) {
  .header {
    padding: 36px 120px 40px;
    display: grid;
    grid-template-columns: repeat(12, 63px);
    grid-template-rows: 1fr 1fr;
  }

  .header__title {
    grid-column: 1/7;
    grid-row: 3/4;
    font-size: 56px;
  }
}

@media (min-width: 744px) {
  .header {
    padding: 36px 72px 40px;
    display: grid;
    grid-template-columns: repeat(6, 80px);
    grid-template-rows: 1fr 1fr;
  }

  .header__title {
    grid-column: 1/5;
    grid-row: 3/4;
    font-size: 48px;
  }
}

.main {
  font-family: "Space Mono", monospace;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #292929;
}

.product-card {
  padding: 0 20px 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:last-child {
  padding-bottom: 0;
}

.product-card__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}

.product-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-top: 16px;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__title {
  font-family: "Space Grotesk", monospace;
  padding: 24px 0 8px;
  font-size: 18px;
}

.product-card__description {
  font-size: 16px;
}

.product-card__description--mobile {
  display: block;
}

@media (min-width: 1260px) {
  .product-card__description--mobile {
    display: none;
  }
}

.product-card__description--desktop {
  display: none;
}

@media (min-width: 1260px) {
  .product-card__description--desktop {
    display: block;
  }
}

.product-card__price {
  font-family: "Space Grotesk", monospace;
  display: inline-block;
  margin-top: 12px;
  font-size: 16px;
}

@media (min-width: 744px) {
  .product-card {
    font-size: 18px;
    padding: 0 72px 56px;
  }
}

@media (min-width: 1260px) {
  .product-card {
    padding: 0 24px 0 0;
  }
}

.categories {
  display: flex;
  flex-direction: column;
}

.categories__grid {
  padding: 0 20px;
}

@media (min-width: 744px) {
  .categories__grid {
    padding: 0 72px;
  }
}

@media (min-width: 1260px) {
  .categories__grid {
    padding: 0 120px;
  }
}

.categories__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (min-width: 744px) {
  .categories__container--left-wide {
    grid-template-columns: 6fr 3fr;
  }

  .categories__container--right-wide {
    grid-template-columns: 4fr 8fr;
  }
}

@media (min-width: 1260px) {
  .categories__container {
    padding: 0;
  }

  .categories__container--left-wide {
    grid-template-columns: 8fr 4fr;
  }

  .categories__container--right-wide {
    grid-template-columns: 4fr 8fr;
  }
}

.categories__button {
  display: flex;
  width: 100%;
  max-width: none;
}

.categories__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.categories__title {
  font-family: "Space Grotesk", monospace;
  font-size: 18px;
  margin-top: 16px;
  margin-bottom: 40px;
}

@media (min-width: 1260px) {
  .categories__title {
    font-size: 24px;
    padding: 0 0 56px;
  }
}

.button {
  font-family: "Space Grotesk", monospace;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  max-width: 100%;
  height: 56px;
  background: #292929;
  color: white;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  padding: 0 20px;
  box-sizing: border-box;
  margin-bottom: 48px;
}

.button:hover {
  cursor: pointer;
  background-color: rgb(248, 248, 250);
  color: rgb(41, 41, 41);
  border-color: rgb(240, 241, 244);
}

@media (min-width: 1260px) {
  .button {
    margin-left: 120px;
    width: 324px;
  }
}

.divider {
  width: 100%;
  overflow: hidden;
  height: 200px;
  display: flex;
  position: relative;
  margin: 48px 0 0;
}

.divider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1260px) {
  .divider {
    height: 460px;
  }
}

.about {
  display: grid;
  grid-template-columns: 1fr;
  padding-bottom: 56px;
}

.about__info {
  padding: 0 20px;
  font-family: "Space Mono", monospace;
  font-size: 16px;
  margin-top: -12px;
}

@media (min-width: 744px) {
  .about {
    grid-template-columns: repeat(6, 1fr);
    padding: 56px 0 0;
    align-items: start;
  }

  .about__title {
    grid-column: 1/4;
    align-self: start;
    margin-top: -120px;
  }

  .about__info {
    padding: 0 72px 0 0;
    grid-column: 4/7;
    margin-top: 0;
    text-align: left;
  }
}

@media (min-width: 1260px) {
  .about {
    grid-template-columns: repeat(12, 1fr);
  }

  .about__title {
    grid-column: 1/6;
    align-self: start;
    margin-top: -120px;
  }

  .about__info {
    padding: 0 120px 0 0;
    grid-column: 7/13;
    margin-top: 0;
    text-align: left;
  }
}

.form {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.form__button {
  width: 100%;
  display: block;
  box-sizing: border-box;
  margin: 0;
}

.form__input {
  height: 48px;
  margin-bottom: 16px;
}

.form__textarea {
  height: 148px;
  margin-bottom: 32px;
  resize: none;
}

.form .form__textarea, .form .form__input {
  font-family: "Space Mono", monospace;
  font-size: 14px;
  width: 100%;
  color: rgb(126, 126, 131);
  background-color: rgb(248, 248, 250);
  border-radius: 8px;
  border: none;
  padding: 16px;
  box-sizing: border-box;
  outline: none;
}

@media (min-width: 744px) {
  .form {
    padding: 0 72px;
  }
}

@media (min-width: 1260px) {
  .form {
    grid-column: 1/7;
    display: flex;
    flex-direction: column;
    padding: 0 120px;
  }
}

.our-info {
  padding: 48px 20px 64px;
}

.our-info__title {
  font-family: "Space Grotesk", monospace;
  font-size: 14px;
  padding-bottom: 8px;
  color: rgb(147, 147, 163);
}

.our-info__paragraph {
  font-family: "Space Mono", monospace;
  font-size: 16px;
  padding-bottom: 24px;
  color: rgb(25, 25, 25);
}

@media (min-width: 744px) {
  .our-info {
    padding: 80px 72px 0;
  }
}

@media (min-width: 1260px) {
  .our-info {
    grid-column: 7/12;
    padding: 0;
  }
}

.navigation {
  padding: 28px 0 0;
  display: flex;
  justify-content: space-between;
}

.navigation__actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 24px;
  width: auto;
}

.navigation__logo {
  width: 125px;
}

@media (min-width: 744px) {
  .navigation {
    grid-column: 1/7;
    grid-row: 1/2;
  }

  .navigation__logo {
    width: 172px;
  }

  .navigation__actions {
    display: flex;
    gap: 32px;
  }

  .navigation__actions img {
    width: 32px;
  }
}

@media (min-width: 1260px) {
  .navigation {
    grid-column: 1/13;
    grid-row: 1/2;
  }

  .navigation__logo {
    width: 172px;
  }

  .navigation__actions {
    width: 128px;
    gap: 32px;
  }

  .navigation__actions img {
    width: 32px;
  }
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: #e5e6e8;
  padding: 0 20px 20px;
  box-sizing: border-box;
  width: 100%;
  height: 100vh;
  z-index: 10;
  font-family: "Space Grotesk", monospace;
  transition: transform 0.4s ease-in-out;
  transform: translateX(100%);
}

.menu:target {
  transform: translateX(0);
}

.menu__list {
  list-style: none;
  padding: 0;
  margin: 60px 0 48px;
}

.menu__link {
  cursor: pointer;
  display: block;
  font-size: 22px;
  text-decoration: none;
  color: #000;
  margin-bottom: 32px;
}

.menu__footer {
  font-size: 16px;
  margin-top: auto;
  padding-bottom: 40px;
}

.menu__phone {
  cursor: pointer;
  display: block;
  margin-top: 16px;
  color: #000;
  text-transform: uppercase;
  text-decoration: underline;
}

@media (min-width: 1260px) {
  .menu {
    padding: 36px 130px 0;
  }

  .menu__link {
    font-size: 26px;
  }

  .menu__list {
    margin-top: 92px;
  }
}

.recommended__grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1260px) {
  .recommended__grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 120px;
  }
}

.contact {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 120px;
}

@media (min-width: 1260px) {
  .contact {
    grid-template-columns: repeat(12, 1fr);
    align-items: start;
  }

  .contact__title {
    grid-column: 1/8;
  }

  .contact__button {
    padding: 0;
    margin: 0;
  }
}

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