@charset "UTF-8";

@font-face {
  font-family: "FiveYearsLater";
  src: url("../fonts/FiveYearsLater.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: "normal";
}

@font-face {
  font-family: "ObjectSans";
  src: url("../fonts/ObjectSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: "normal";
}

@font-face {
  font-family: "ObjectSans";
  src: url("../fonts/ObjectSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: "normal";
}

@font-face {
  font-family: "ObjectSans";
  src: url("../fonts/ObjectSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: "normal";
}

body {
  width: 100%;
  min-height: 100vh;
  height: 300vh;
  background-color: #ffffff;
  font: normal normal 16px/16px "ObjectSans";
  font-size: 16px;
  font-weight: 400;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  color: #000000;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

ul,
li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.container {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  padding: 0 10px;
  margin: 0 auto;
}

/**
* Главный заголовок страницы.
* Используется один раз на странице.
*/

.main-title {
  font-family: "FiveYearsLater", sans-serif;
  font-weight: 400;
  font-size: 75px;
  line-height: 74px;
  color: #171717;
}

.main-title span {
  color: #f57b51;
}

.section-title {
  font-family: "FiveYearsLater", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 56px;
  line-height: 63px;
  color: #171717;
}

.section-title span {
  color: #f57b51;
}

.modalWindow {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  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;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s all ease-in-out;
  -o-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}

.modalWindow.modalWindow--withoutPadding .modalWindow-wrapper {
  padding: 0;
}

.modalWindow.open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.5s all ease-in-out;
  -o-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}

.modalWindow-wrapper {
  position: relative;
  width: 524px;
  height: auto;
  background-color: #ffffff;
}

.modalWindow-head {
  position: relative;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modalWindow-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
}

.modalWindow-close img {
  width: 100%;
  height: 100%;
}

.modalWindow .modalWindow-wrapper {
  padding: 64px 40px;
}

.modalWindow .modalWindow-form {
  width: 100%;
  height: 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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.modalWindow .modalWindow-form .form__text {
  font-size: 16px;
  line-height: 24px;
}

.modalWindow .modalWindow-form .form__title {
  font-family: "FiveYearsLater", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
}

.modalWindow .modalWindow-form .form__title ~ .form__text {
  margin-top: 8px;
}

.modalWindow .modalWindow-form .form__title.orange {
  color: #f57b51;
}

.modalWindow .modalWindow-form form {
  width: 100%;
  height: 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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 24px;
}

.modalWindow .modalWindow-form form input {
  width: 100%;
  height: 50px;
  background-color: #f8f8f8;
  border: 1px solid #eaeaea;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  margin-bottom: 8px;
  padding-left: 16px;
}

.modalWindow .modalWindow-form form button {
  width: 100%;
  height: 59px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.modalWindow .modalWindow-form form small {
  font-weight: 400;
  font-size: 11px;
  line-height: 150%;
  color: #171717;
  opacity: 0.8;
}

.modalWindow .modalWindow-form form small a {
  text-decoration: underline;
}

.btn {
  width: 100%;
  height: auto;
  padding: 18px 0;
  background-color: #f57b51;
  font-family: inherit;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #ffffff;
  border-radius: 4px;
  -webkit-transition: 0.5s all ease-in-out;
  -o-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  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;
}

.btn:hover {
  background-color: #e46236;
  -webkit-transition: 0.5s all ease-in-out;
  -o-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}

.btn:disabled {
  background-color: #f5f5f7 !important;
  -webkit-transition: 0.5s all ease-in-out;
  -o-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  cursor: default !important;
}

.slider-btn {
  width: 64px;
  height: 64px;
  border-radius: 100%;
  background-color: #f57b51;
  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-btn svg {
  width: 80%;
  fill: #ffffff;
}

.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 100%;
  background-color: #ffffff;
  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;
}

.video__play svg {
  margin-left: 5px;
  fill: #f57b51;
}

.footer {
  width: 100%;
  height: auto;
  background-color: #f5f5f7;
  padding: 40px 0;
}

.footer__wrapper {
  width: 100%;
  height: 100%;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer__top {
  width: 100%;
  height: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 267px 252px 316px;
  grid-template-columns: 267px 252px 316px;
  grid-column-gap: 156px;
  padding-bottom: 32px;
}

.footer__logo {
  width: 100%;
}

.footer__logo img {
  width: 100%;
  height: auto;
}

.footer__socContacts {
  width: 100%;
  height: 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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer__email,
.footer__phone,
.footer__address {
  font-size: 18px;
  line-height: 26px;
  color: #101010;
  margin-bottom: 24px;
  word-wrap: break-word;
  width: 100%;
}

.footer-soc {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-soc__item {
  width: 40px;
  height: 40px;
  border-radius: 100%;
}

.footer-soc__item:not(:last-child) {
  margin-right: 24px;
}

.footer-soc__link {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.footer-soc__link img {
  width: 100%;
  height: 100%;
}

.footer__contacts {
  width: 100%;
  height: 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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer .line {
  width: 100%;
  height: 1px;
  background-color: #101010;
}

.footer__bottom {
  width: 100%;
  height: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 267px 252px 316px;
  grid-template-columns: 267px 252px 316px;
  grid-column-gap: 156px;
  padding-top: 32px;
}

.footer__info,
.footer__oferta,
.footer__policy {
  font-size: 13px;
  line-height: 138%;
  color: #101010;
  opacity: 0.9;
}

.footer__oferta,
.footer__policy {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer__oferta p,
.footer__policy p {
  position: relative;
}

.footer__oferta p::after,
.footer__policy p::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(16, 16, 16, 0.3);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
}

.heroSection .container {
  max-width: 100%;
  padding: 0;
}

.lazyload {
  opacity: 1 !important;
  -webkit-transition: opacity 600ms;
  -o-transition: opacity 600ms;
  transition: opacity 600ms;
  -webkit-transition-delay: 100ms;
       -o-transition-delay: 100ms;
          transition-delay: 100ms;
}

.heroSection {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #171717;
  padding-top: 64px;
  padding-bottom: 72px;
  overflow: hidden;
}

.hereSection_text {
  background: url(https://contentography.com/wp-content/themes/sensei-school/assets/img/minicourse/cvetretush/circle.svg);
  position: absolute;
  width: 142px;
  height: 142px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  line-height: 130%;
  color: #171717;
  top: 240px;
  right: 38%;
  background-repeat: no-repeat;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.heroSection__btn {
  margin-bottom: 82px;
  width: 467px;
}

.heroSection__bg {
  position: absolute;
  height: 100%;
  width: auto;
  top: 0;
  right: 0;
  bottom: 0;
}

.heroSection__bg img {
  height: 100%;
}

.heroSection__wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  padding-left: max(15px, (100% - 1160px) / 2);
}

.heroSection__head {
  grid-area: header;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 48px;
}

.heroSection__breadcrumbs .breadcrumbs__thisPage {
  color: #fff;
  opacity: 0.8;
  font-size: 13px;
  line-height: 18px;
}

.heroSection__breadcrumbs .breadcrumbs__link,
.heroSection__breadcrumbs .breadcrumbs__seporator,
.heroSection__breadcrumbs .breadcrumbs a {
  color: #6d7078;
  font-size: 13px;
  line-height: 18px;
}

.heroSection__content {
  grid-area: content;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heroSection__subheader {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
  font-family: "FiveYearsLater", sans-serif;
  margin-bottom: 24px;
}

.heroSection__title {
  color: #fff;
  margin-bottom: 16px;
  max-width: 600px;
  font-size: 63px;
  line-height: 76px;
  text-transform: uppercase;
}

.heroSection__title span {
  background: -webkit-gradient(linear, left top, right top, color-stop(53.25%, #a4c6f1), color-stop(102.25%, #e6a4f1));
  background: -o-linear-gradient(left, #a4c6f1 53.25%, #e6a4f1 102.25%);
  background: linear-gradient(90deg, #a4c6f1 53.25%, #e6a4f1 102.25%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.heroSection__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #ffffff;
  opacity: 0.8;
  margin-bottom: 40px;
  max-width: 600px;
}

.heroSection__image {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 670px;
}

.heroSection__image img {
  height: 100%;
  right: 0;
  width: 100%;
}

.cart__title span {
  color: #de582a;
}

.heroSection__carts {
  grid-area: carts;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 284px 323px 303px;
  grid-template-columns: 284px 323px 303px;
  grid-gap: 0 24px;
  margin-bottom: 72px;
}

.heroSection__carts .cart {
  width: 100%;
  height: 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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heroSection__carts .cart:not(:last-child) {
  padding-right: 24px;
  border-right: 2px solid #ffffff;
}

.heroSection__carts .cart__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #ffffff;
  margin-bottom: 8px;
}

.heroSection__carts .cart__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  opacity: 0.65;
}

.heroSection__footer {
  width: 100%;
  grid-area: footer;
}

.heroSection__form {
  width: 100%;
  height: auto !important;
  background-color: #ffffff;
  padding: 40px;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
}

.spickerGallery__content {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.spickerGallery__content picture:nth-child(6),
.spickerGallery__content picture:nth-child(10) {
  margin-top: -86px;
}

.spickerGallery__content img {
  width: 100%;
}

.spiker {
  background-color: #f4f3ee;
  height: auto;
  padding-top: 144px;
  width: 100%;
}

.spiker__wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.spiker__title {
  margin-bottom: 40px;
}

.spiker__cart,
.spiker__title {
  margin-left: calc(50% - 580px);
  margin-right: calc(50% - 580px);
  width: 1160px;
}

.spiker__cart {
  height: auto;
  margin-bottom: 144px;
  position: relative;
}

.spiker__cart:before {
  border: 1px solid #fff;
  border-radius: 259px 4px 4px 4px;
  content: "";
  height: 100%;
  left: -19px;
  position: absolute;
  top: -15px;
  width: 100%;
}

.spiker__cart .cart__content {
  grid-gap: 58px;
  background-color: #fff;
  border-radius: 259px 4px 4px 4px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 453px 1fr;
  grid-template-columns: 453px 1fr;
  height: auto;
  padding: 64px 64px 0;
  position: relative;
  width: 100%;
  z-index: 2;
}

.spiker__cart .cart__image {
  border-radius: 259px 259px 0 0;
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.spiker__cart .cart__image img {
  height: 100%;
  width: 100%;
}

.spiker__cart .cart__textBlock {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-bottom: 64px;
  width: 100%;
}

.spiker__cart .cart__textBlock h4 {
  color: #171717;
  font-size: 24px;
  font-weight: 500;
  line-height: 31px;
}

.spiker__cart .cart__textBlock h4 a {
  color: #f57b51;
}

.spiker__cart .cart__textBlock p {
  color: #171717;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.spiker__cart .cart__textBlock .cart__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.spiker__cart .cart__textBlock .cart__list,
.spiker__cart .cart__textBlock .cart__list .list__item {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.spiker__cart .cart__textBlock .cart__list .list__item:not(:last-child) {
  margin-bottom: 16px;
}

.spiker__cart .cart__textBlock .cart__list .list__item .item__dot {
  background-color: #f57b51;
  border-radius: 100%;
  height: 8px;
  margin-right: 10px;
  margin-top: 9px;
  min-width: 8px;
  width: 8px;
}

.spiker__cart .cart__textBlock .cart__list .list__item .item__text {
  color: #171717;
  font-size: 18px;
  line-height: 26px;
}

.spiker__cart .cart__textBlock .cart__list .list__item .item__text strong {
  font-weight: 500;
}

.spiker__cart .cart__title {
  color: #171717;
  font-family: FiveYearsLater, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 42px;
  margin-bottom: 32px;
}

.spiker__gallery {
  grid-gap: 8px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  height: auto;
  margin-bottom: 40px;
  width: 100%;
}

.spiker__gallery img,
.spiker__gallery picture {
  height: 100%;
  width: 100%;
}

.spiker__btn {
  margin: 0 auto;
  max-width: 467px;
}

@media (max-width: 1200px) {
  .footer__top {
    padding-bottom: 2.9090909091vw;
  }

  .footer__bottom {
    padding-top: 2.9090909091vw;
  }

  .footer__top,
  .footer__bottom {
    -ms-grid-columns: 24.2727272727vw 22.9090909091vw 28.7272727273vw;
    grid-template-columns: 24.2727272727vw 22.9090909091vw 28.7272727273vw;
    grid-column-gap: 10.8333333333vw;
  }

  .footer__email,
  .footer__phone,
  .footer__address {
    font-size: 1.6363636364vw;
    line-height: 2.3636363636vw;
    color: #101010;
    margin-bottom: 24px;
    word-wrap: break-word;
    width: 100%;
  }

  .footer-soc__item {
    width: 3.6363636364vw;
    height: 3.6363636364vw;
  }

  .footer-soc__item:not(:last-child) {
    margin-right: 2.1818181818vw;
  }

  .footer__info,
  .footer__oferta,
  .footer__policy {
    font-size: 1.1818181818vw;
    line-height: 138%;
    color: #101010;
    opacity: 0.9;
  }
}

@media screen and (max-width: 576px) {
  .main-title {
    font-size: 30px;
    line-height: 42px;
  }

  .section-title {
    font-size: 32px;
    line-height: 42px;
  }

  .modalWindow-wrapper {
    width: 95%;
  }

  .modalWindow-close {
    top: 16px;
    right: 16px;
  }

  .modalWindow .modalWindow-wrapper {
    padding: 56px 16px;
  }

  .modalWindow .modalWindow-form .form__text {
    font-size: 14px;
    line-height: 130%;
  }

  .btn {
    font-size: 16px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .hereSection_text {
    top: 845px;
    right: 5%;
    font-size: 16px;
  }

  .heroSection {
    padding-top: 32px;
  }

  .heroSection__bg {
    width: 100%;
  }

  .heroSection__wrapper {
    padding: 10px;
  }

  .heroSection__head {
    position: relative;
    z-index: 2;
    margin-bottom: 32px;
  }

  .heroSection__content {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
  }

  .heroSection__title {
    font-size: 49px;
    line-height: 53px;
  }

  .heroSection__text {
    font-size: 16px;
    line-height: 24px;
  }

  .heroSection__image {
    width: 100%;
    position: relative;
    grid-area: image;
    margin-bottom: 40px;
  }

  .heroSection__btn {
    max-width: 100%;
    margin-bottom: 72px;
  }

  .heroSection__carts {
    position: relative;
    z-index: 2;
    grid-area: carts;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 16px;
    margin-bottom: 0;
  }

  .heroSection__carts .cart:not(:last-child) {
    padding-right: 0px;
    padding-bottom: 16px;
    border-right: 0px solid #ffffff;
    border-bottom: 2px solid #ffffff;
  }

  .heroSection__carts .cart__text {
    font-size: 14px;
    line-height: 20px;
  }

  .heroSection__bg img {
    width: 100%;
  }

  .spickerGallery__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .spiker {
    padding-top: 72px;
  }

  .spiker__title {
    margin: 0 10px 24px;
    width: calc(100% - 20px);
  }

  .spiker__cart {
    margin: 0 10px 72px;
    width: calc(100% - 20px);
  }

  .spiker__cart:before {
    border-radius: 32px 32px 0 0;
    content: "";
    left: 7px;
    top: -8px;
  }

  .spiker__cart .cart__content {
    grid-gap: 24px;
    border-radius: 32px 32px 0 0;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .spiker__cart .cart__image {
    border-radius: 46.875vmin 46.875vmin 0 0;
    -ms-grid-row: 2;
    grid-row: 2;
    height: 119.0625vmin;
    width: 100%;
  }

  .spiker__cart .cart__textBlock {
    padding: 30px 16px 0;
  }

  .spiker__cart .cart__textBlock h4 {
    font-size: 16px;
    line-height: 24px;
  }

  .spiker__cart .cart__textBlock p {
    font-size: 14px;
    line-height: 20px;
  }

  .spiker__cart .cart__textBlock .cart__list .list__item:not(:last-child) {
    margin-bottom: 16px;
  }

  .spiker__cart .cart__textBlock .cart__list .list__item .item__dot {
    background-color: #f57b51;
    border-radius: 100%;
    height: 8px;
    margin-right: 10px;
    margin-top: 9px;
    min-width: 8px;
    width: 8px;
  }

  .spiker__cart .cart__textBlock .cart__list .list__item .item__text {
    font-size: 16px;
    line-height: 24px;
  }

  .spiker__cart .cart__title {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 24px;
  }

  .spiker__gallery {
    grid-gap: 4px;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .spiker__gallery .gallery__image {
    -ms-grid-column-span: 1 !important;
    grid-column: span 1 !important;
    -ms-grid-row-span: 1 !important;
    grid-row: span 1 !important;
  }

  .spiker__gallery .gallery__image:last-child {
    display: none;
  }

  .spiker__btn {
    width: calc(100% - 20px);
  }
}

@media (max-width: 576px) {
  .footer {
    padding-top: 32px;
    padding-bottom: 27px;
  }

  .footer__logo {
    max-width: 254px;
    margin-bottom: 40px;
  }

  .footer__top,
  .footer__bottom {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0;
    max-width: 260px;
  }

  .footer__socContacts {
    margin-bottom: 40px;
  }

  .footer__email,
  .footer__phone,
  .footer__address {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 16px;
  }

  .footer-soc__item {
    width: 40px;
    height: 40px;
  }

  .footer-soc__item:not(:last-child) {
    margin-right: 24px;
  }

  .footer .line {
    display: none;
  }

  .footer__info,
  .footer__oferta,
  .footer__policy {
    font-size: 13px;
    line-height: 138%;
    color: #101010;
    opacity: 0.9;
    margin-bottom: 8px;
  }

  .footer__info {
    margin-bottom: 29px;
  }
}