@charset "UTF-8";
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/opensans.woff2") format("woff2"), url("../fonts/opensans.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Open sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/opensansbold.woff2") format("woff2"), url("../fonts/opensansbold.woff") format("woff");
  font-display: swap;
}
html {
  /* FLEXBOX Sticky Footer */
  height: 100%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  /* FLEXBOX Sticky Footer */
  min-width: 320px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Open Sans";
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  font-style: normal;
  color: #000000;
  background-color: #ffffff;
}

/* FLEXBOX Sticky Footer */
main {
  flex-grow: 1;
}

img {
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.reset-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.title {
  margin: 0;
  padding: 0;
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 27px;
  line-height: 1.11;
}
.title--h2 {
  margin: 0;
  padding: 0;
  font-size: 25px;
  line-height: 1.2;
}

.button {
  padding: 0;
  min-width: 160px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-family: "Open Sans", "Arial", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.11;
  color: #444444;
  background-color: #ffffff;
  border: 2px solid #444444;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.button:hover {
  background-color: #444444;
  color: #ffffff;
}
.button:active {
  background-color: #444444;
  color: rgba(255, 255, 255, 0.3);
}
.button:disabled {
  background-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.3);
}
.button:focus-visible {
  outline: 2px solid #63d1bb;
  border-radius: 3px;
}

.order {
  margin: 0 auto;
  margin-bottom: 50px;
  position: relative;
  outline: 2px solid #dda0dd;
  outline-offset: -2px;
}

.form__fieldset {
  margin: 0;
  padding: 0;
  margin-bottom: 100px;
  border: none;
}

.form__title {
  margin: 0;
}

.form__list {
  margin: 0;
  padding: 0;
  min-width: 260px;
  height: 52px;
  list-style-type: none;
}

@media (min-width: 768px) {
  .order {
    max-width: 1050px;
  }

  .form__fieldset-color .form__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1150px) {
  .form__fieldset-color .form__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.link {
  margin: 0;
  padding: 0;
  display: block;
  box-sizing: border-box;
  font-weight: 700;
  font-size: 15px;
  line-height: 24px;
  font-style: normal;
  color: #000000;
  text-decoration: none;
}
.link:active {
  opacity: 0.3;
}
.link:hover {
  color: rgba(0, 0, 0, 0.6);
}

.container {
  min-width: 320px;
  padding: 0 30px;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .container {
    padding: 0 50px;
  }
}
@media (min-width: 1150px) {
  .container {
    max-width: 1150px;
  }
}
.container-color {
  background-color: #f9f9f9;
}

.header {
  min-width: 320px;
  position: relative;
}

.navigation {
  margin: 0 auto;
  padding: 0 30px;
  min-width: 320px;
  position: relative;
}

.navigation__logo-wrapper {
  min-height: 79px;
  grid-area: header__logo-wrapper;
  display: grid;
  place-items: center;
}

.navigation__button-toggle {
  min-width: 40px;
  margin-left: auto;
  display: block;
  position: absolute;
  right: 30px;
  border: none;
  background-color: transparent;
}

@media (min-width: 768px) {
  .navigation {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(auto-fit, 89px);
    grid-template-areas: "header__logo-wrapper navigation__user" "navigation__site-wrapper navigation__usersub";
  }

  .navigation__logo-wrapper {
    padding-left: max(50px, (100vw - 1050px) / 2);
    place-items: center start;
  }

  .navigation__button-toggle {
    display: none;
  }
}
@media (min-width: 1150px) {
  .navigation {
    margin: 0 auto;
    padding: 0;
    grid-template-columns: 1fr 150px 1fr;
    grid-template-rows: repeat(auto-fit, 89px);
    height: auto;
    grid-template-areas: "navigation__site-wrapper header__logo-wrapper navigation__user" "navigation__sitesub-wrapper navigation__usersub navigation__usersub";
  }

  .navigation__logo-wrapper {
    margin: 0;
    padding: 0;
    place-items: center;
  }

  .header__logo-color {
    display: block;
  }
}
.navigation__site {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.navigation__site .navigation__item {
  min-height: 79px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .navigation__site-wrapper {
    grid-area: navigation__site-wrapper;
    background-color: #f9f9f9;
  }

  .navigation__site {
    padding-left: max(50px, (100vw - 1050px) / 2);
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
  .navigation__site .navigation__item {
    width: 167px;
    min-height: 89px;
    justify-content: flex-start;
  }
}
@media (min-width: 1150px) {
  .navigation__site-wrapper {
    grid-area: navigation__site-wrapper;
    background-color: #ffffff;
  }

  .navigation__site .navigation__item {
    justify-content: flex-start;
    align-items: center;
  }
}
.navigation__sitesub-wrapper {
  grid-area: navigation__sitesub-wrapper;
  background-color: #f9f9f9;
  display: none;
}

.navigation__sitesub {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.navigation__sitesub .navigation__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media (min-width: 1150px) {
  .navigation__sitesub-wrapper {
    display: flex;
  }

  .navigation__sitesub {
    padding-left: max(50px, (100vw - 1050px) / 2);
    flex-direction: row;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
  .navigation__sitesub .navigation__item {
    width: 167px;
    min-height: 89px;
    display: flex;
    justify-content: flex-start;
  }
}
.navigation__user {
  grid-area: navigation__user;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.navigation__user .navigation__item {
  min-height: 79px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .navigation__user {
    padding-right: max(50px, (100vw - 1050px) / 2);
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .navigation__user .navigation__item {
    min-height: 89px;
  }
  .navigation__user .navigation__link-search {
    width: 84px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navigation__user .navigation__text-search {
    display: none;
  }
}
.navigation__usersub {
  display: none;
}

@media (min-width: 768px) {
  .navigation__usersub {
    display: block;
    grid-area: navigation__usersub;
    padding-right: max(50px, (100vw - 1050px) / 2);
    background-color: #f9f9f9;
  }

  .navigation__usersub .navigation__item {
    min-height: 89px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .navigation__usersub-text {
    margin: 0;
    display: block;
  }
}
.hero {
  position: relative;
  padding-bottom: 120px;
  background-image: url("../img/hero/hero-mobile2x1.png");
  background-repeat: no-repeat;
  background-position: 50% -17px;
}

.hero__title {
  padding-top: 72px;
  width: 260px;
  text-align: center;
  margin: 0 auto;
}

.hero__list {
  display: flex;
  flex-direction: column;
  padding: 0 -30px;
  margin-bottom: 32px;
}

.hero__item:nth-child(odd) {
  background-color: #63d1bb;
}

.hero__item:nth-child(even) {
  background-color: #56c3b2;
}

.hero__link {
  margin: 0 auto;
  padding: 0 30px;
  min-height: 103px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 19px;
  line-height: 1.26;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.hero__categotry {
  width: 131px;
}

.hero__categotry-lamp {
  padding-right: 5px;
}

.product {
  margin: 0 auto;
  margin-bottom: 100px;
  outline: 2px solid #dda0dd;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product::after {
  width: 1000%;
  height: 6px;
  position: absolute;
  content: "";
  bottom: -50px;
  left: -100%;
  background-image: url("../img/product/zigzag-line-mobile.svg");
}

.product__week {
  margin: 0;
  margin-top: 5px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  color: #63d1bb;
  text-transform: uppercase;
}

.product__text {
  margin: 0;
  margin-bottom: 27px;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #444444;
}

.product__features {
  margin: 0 auto;
  margin-bottom: 20px;
}

.product__features-wrapper {
  display: flex;
}

.product__features-name {
  margin: 0;
  width: 97px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.33;
  color: #444444;
}

.product__features-value {
  margin: 0;
  width: 162px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.33;
  color: #444444;
}

.product__images {
  margin: 0 auto;
}

.product__priсe {
  margin: 0;
  margin-top: 30px;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.41;
  color: #444444;
  text-align: center;
}

.product__button {
  margin: 0 auto;
  width: 260px;
  height: 52px;
  padding: 16px 70px;
}

.about {
  margin-bottom: 100px;
  outline: 2px solid #dda0dd;
}

.about__title {
  margin-bottom: 50px;
  outline: 2px solid #008000;
  outline-offset: -2px;
}

.about__list-item {
  padding-top: 53px;
  display: grid;
  grid-template-rows: repeat(auto-fit, 94px);
  grid-auto-flow: column;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.17;
  color: #000000;
  background-repeat: no-repeat;
}
.about__list-item--flower {
  background-image: url("../img/about/flower.svg");
  background-size: 33px 38px;
}
@media (min-width: 768px) {
  .about__list-item--flower {
    order: 1;
  }
}
.about__list-item--money {
  background-image: url("../img/about/money.svg");
  background-size: 47px 27px;
}
@media (min-width: 768px) {
  .about__list-item--money {
    order: 3;
  }
}
.about__list-item--heart {
  background-image: url("../img/about/heart.svg");
  background-size: 34px 27px;
}
@media (min-width: 768px) {
  .about__list-item--heart {
    order: 5;
  }
}
.about__list-item--ball {
  background-image: url("../img/about/ball.svg");
  background-size: 35px 34px;
}
@media (min-width: 768px) {
  .about__list-item--ball {
    order: 2;
  }
}
.about__list-item--rocket {
  background-image: url("../img/about/rocket.svg");
  background-size: 55px 23px;
}
@media (min-width: 768px) {
  .about__list-item--rocket {
    order: 4;
  }
}
.about__list-item--gift {
  background-image: url("../img/about/gift.svg");
  background-size: 33px 32px;
}
@media (min-width: 768px) {
  .about__list-item--gift {
    order: 6;
  }
}

@media (min-width: 768px) {
  .about__list {
    display: grid;
    grid-template-columns: 265px 294px;
    column-gap: 70px;
    row-gap: 110px;
    grid-auto-flow: row;
  }
}
@media (min-width: 1150px) {
  .about__list-wrapper {
    max-width: 1150px;
  }

  .about {
    max-width: 1050px;
    grid-template-columns: 1050px;
  }
}
.reviews {
  margin: 0 auto;
  margin-bottom: 100px;
  position: relative;
}

.reviews__title {
  grid-area: reviews__title;
}

.reviews__list {
  margin: 0;
  padding: 0;
  grid-area: reviews__list;
  list-style-type: none;
}

.reviews__quote {
  margin: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
  color: #444444;
}

.reviews__author {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.41;
}

.reviews__user-alias {
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  color: #444444;
}

.reviews__button-wrapper {
  min-width: 260px;
  grid-area: reviews__button-wrapper;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.reviews__button {
  position: relative;
  min-width: 130px;
  min-height: 52px;
  background-image: url("../../img/icon/arrow.svg");
  background-repeat: no-repeat;
  background-color: transparent;
  border: 1px solid #ececec;
  background-position: 50% 50%;
}
.reviews__button--next {
  border-right: none;
  transform: rotate(180deg);
}

.reviews__button-write {
  min-width: 100%;
  grid-area: reviews__button-write;
}

@media (min-width: 768px) {
  .reviews {
    display: grid;
    grid-template-columns: 300px 368px;
    grid-template-areas: "reviews__title reviews__button-write" "reviews__list reviews__button-wrapper" "reviews__list reviews__button-wrapper";
    row-gap: 40px;
  }

  .reviews__list {
    width: 668px;
  }

  .reviews__button-wrapper {
    display: grid;
    grid-template-columns: 130px 130px;
    justify-self: end;
    align-self: end;
  }

  .reviews__button-write {
    min-width: 175px;
    align-self: flex-start;
    justify-self: end;
  }
}
.contacts {
  margin: 0 auto;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.contacts__title {
  grid-area: contacts__title;
}

.contacts__address-wrapper {
  grid-area: contacts__address-wrapper;
}

.contacts__address {
  margin: 0;
}

.contacts__address-name {
  margin: 0;
}

.contacts__address-value {
  margin: 0;
}

.contacts__map-wrapper {
  margin-bottom: 40px;
  grid-area: contacts__map-wrapper;
}

.contacts__button {
  margin: 0 auto;
  width: 260px;
  height: 52px;
  grid-area: contacts__button;
}

@media (min-width: 768px) {
  .contacts__address-wrapper {
    display: flex;
    justify-content: space-between;
  }

  .contacts__address {
    display: grid;
    grid-template-columns: 82px 257px;
  }
}
@media (min-width: 1150px) {
  .contacts__address-wrapper {
    display: flex;
    flex-direction: column;
  }

  .contacts {
    max-width: 1050px;
    display: grid;
    grid-template-columns: mimax(469px, 1fr) minmax(525px, 1fr);
    column-gap: 56px;
    grid-template-areas: "contacts__title contacts__map-wrapper" "contacts__address-wrapper contacts__map-wrapper" "contacts__button contacts__map-wrapper";
  }
}
.footer {
  position: relative;
  background-color: #f1f1f1;
}

.footer__wrapper {
  margin: 0 auto;
  position: relative;
  background-color: #f1f1f1;
  display: grid;
}

.footer__logo-wrapper {
  display: none;
  background-color: #f1f1f1;
}

@media (min-width: 768px) {
  .footer__wrapper {
    padding: 0 50px;
    max-width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer__logo-wrapper {
    min-height: 143px;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1150px) {
  .footer__wrapper {
    padding: 0 50px;
    max-width: 1150px;
  }
}
.social {
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f1f1f1;
}

.social__list {
  padding: 0;
  margin: 0 auto;
  min-width: 142px;
  min-height: 27px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style-type: none;
}

.social__item svg {
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyright {
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f1f1f1;
}

.copyright__list {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright__link svg {
  margin-left: 40px;
}

.catalog {
  margin: 0 auto;
  position: relative;
}

.catalog__title {
  margin: 0;
  text-align: center;
}

.catalog__list {
  padding: 0;
  display: grid;
  grid-template-columns: minmax(260px, 1fr);
  list-style-type: none;
}

.catalog__toy-name,
.catalog__toy-description,
.catalog__toy-price {
  margin: 0;
}

@media (min-width: 768px) {
  .catalog {
    max-width: 1050px;
  }

  .catalog__item {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(334px, 1fr));
  }

  .catalog__toy-wrapper {
    display: flex;
    flex-direction: column;
  }

  .catalog__toy-price {
    margin-top: auto;
  }
}
@media (min-width: 1150px) {
  .catalog__item {
    display: grid;
    grid-template-rows: min-content min-content;
    grid-auto-flow: column;
  }

  .catalog__list {
    grid-template-columns: repeat(3, 316px);
    column-gap: 51px;
  }

  .catalog__toy-price {
    margin-top: 0;
  }
}
.process {
  margin: 0 auto;
  margin-bottom: 50px;
  position: relative;
  outline: 2px solid #dda0dd;
  outline-offset: -2px;
}

.process__title {
  margin: 0 auto;
  width: 156px;
  display: block;
  grid-area: process__title;
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 24px;
}

.process__video-wrapper {
  margin: 0 auto;
  width: 260px;
  min-height: 195px;
  grid-area: process__video-wrapper;
  display: block;
}

.process__text {
  margin: 0 auto;
  width: 199px;
  grid-area: process__text;
}

.process__button {
  margin: 0 auto;
  width: 192px;
  height: 52px;
  display: flex;
  grid-area: process__button;
}

@media (min-width: 768px) {
  .process {
    max-width: 1050px;
    display: grid;
    grid-template-rows: minmax(195px, 455px) min-content 1fr min-content;
    grid-template-areas: "process__video-wrapper" "process__title" "process__text" "process__button";
  }

  .process__title {
    min-width: 217px;
  }

  .process__text {
    width: 100%;
    padding-left: 40px;
    padding-right: 44px;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 30px;
  }

  .process__button {
    margin: 0 auto;
    width: 584px;
  }
}
@media (min-width: 1150px) {
  .process {
    grid-template-rows: min-content;
    grid-template-columns: 683px 367px;
    grid-template-areas: "process__video-wrapper process__title" "process__video-wrapper process__text" "process__video-wrapper process__button";
  }

  .process__title {
    min-width: 178px;
    height: 48px;
  }

  .process__video-wrapper {
    min-height: 455px;
  }

  .process__button {
    margin: 0 auto;
    width: 170px;
  }
}
.form__title {
  margin: 0;
  margin-bottom: 20px;
  grid-area: product__week;
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  color: #63d1bb;
  text-transform: uppercase;
}

.form__text-additionally {
  margin: 0;
  width: 320px;
  height: 52px;
  display: block;
}

.form__button {
  margin: 0;
  width: 320px;
  height: 52px;
  display: block;
}

@media (min-width: 768px) {
  .form__fieldset {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .form__title {
    grid-column: 1/2;
  }

  .form__list {
    grid-column: 2/3;
  }

  .form__wrap-additionally {
    display: flex;
    justify-content: space-between;
  }

  .form__text-additionally {
    order: 2;
  }

  .form__button {
    order: 1;
  }
}
/*# sourceMappingURL=style.css.map */