:root {
  --font-family: "Century Gothic", sans-serif;
  --second-family: "Rubik", sans-serif;
  --third-family: "Pattaya", sans-serif;
  --font3: "Euclid Circular A", sans-serif;
  --lightblue: #6dcff6;
  --blue: #00abe6;
  --darkblue: #0072bc;
  --white: #fff;
  --black: #000;
  --text: #4d4d4d;
}

@font-face {
  font-family: "CenturyGothic";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../fonts/CenturyGothic.woff2") format("woff2"), url("../fonts/CenturyGothic.woff") format("woff");
}
@font-face {
  font-family: "CenturyGothic";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("../fonts/CenturyGothic-Bold.woff2") format("woff2"), url("../fonts/CenturyGothic-Bold.woff") format("woff");
}
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  min-width: 375px;
  font-family: "CenturyGothic", sans-serif;
  line-height: 1.78;
  background-color: #ffffff;
  position: relative;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.8);
}

textarea {
  resize: none;
  overflow: hidden;
}

img {
  height: auto;
  max-width: 100%;
}

input,
textarea,
a,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-decoration: none;
  color: inherit;
  background-color: inherit;
}

:focus {
  outline-style: none;
  outline-width: 0px !important;
  outline-color: none !important;
}

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

.wrapper {
  max-width: 1585px;
  padding: 0 40px;
  width: 100%;
  margin: 0 auto;
}

.title {
  margin: 0;
  color: #0072bc;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  display: block;
  padding-bottom: 40px;
  margin-bottom: 32px;
  position: relative;
}
.title::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: rgba(109, 207, 246, 0.6);
  position: absolute;
  bottom: 0;
  left: 100%;
}
.title::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: rgba(109, 207, 246, 0.6);
  position: absolute;
  bottom: 0;
  left: 0;
}

.title-sm {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33;
  color: #000000;
  margin: 0;
  display: block;
}

.subtitle {
  font-weight: 400;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.8);
  margin: 0;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 80% 0%;
  }
  50% {
    background-position: 20% 100%;
  }
  100% {
    background-position: 80% 0%;
  }
}

@keyframes gradient {
  0% {
    background-position: 80% 0%;
  }
  50% {
    background-position: 20% 100%;
  }
  100% {
    background-position: 80% 0%;
  }
}
.hero {
  background: linear-gradient(-125deg, #00a9e7 17.17%, #005aa4 78.33%);
  -webkit-animation: gradient 6s infinite linear;
          animation: gradient 6s infinite linear;
  background-size: 400%;
  color: #ffffff;
  padding: 112px 0 0;
  position: relative;
  overflow: hidden;
  margin-bottom: -200px;
  z-index: 0;
}
.hero::before {
  content: "";
  display: block;
  background-image: url(../img/white-wave.svg);
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 11;
  height: 267px;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}
.hero__header {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero__logo {
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 104px;
  width: 100%;
  height: 104px;
  margin-right: 32px;
}
.hero__logo img {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.hero__phone {
  -ms-flex-negative: 2;
      flex-shrink: 2;
}
.hero__phone span {
  margin-bottom: 7px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 24px;
}
.hero__phone span::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../img/icon/phone.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
}
.hero__phone a {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33;
  color: #6dcff6;
  display: block;
  text-decoration: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.hero__left {
  z-index: 1;
  grid-column-start: 1;
  grid-column-end: 7;
  grid-row-start: 1;
  grid-row-end: 1;
}
.hero__right {
  z-index: 0;
  grid-column-start: 6;
  grid-column-end: 13;
  grid-row-start: 1;
  grid-row-end: 1;
}
.hero .img-group {
  position: relative;
  height: 700px;
}
.hero .img-group img {
  position: absolute;
  bottom: 0;
  display: block;
}
.hero .img-group__left {
  left: 4%;
}
.hero .img-group__center {
  z-index: 2;
  left: 25%;
}
.hero .img-group__right {
  right: -26%;
}
.hero .title {
  color: inherit;
  padding-bottom: 34px;
  margin-bottom: 24px;
}
.hero .title::before {
  left: auto;
  right: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}
.hero .title::after {
  background-color: rgba(255, 255, 255, 0.3);
}
.hero .subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}
.hero__image {
  background: #ffffff;
  border-radius: 48px;
  max-width: 288px;
  width: 100%;
  padding: 26px 24px 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.hero__image img {
  display: block;
  pointer-events: none;
}

.catalog {
  overflow-x: hidden;
  max-width: 100vw;
  z-index: 2;
  position: relative;
}
.catalog__item-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: -130px;
}
.catalog__item-grid:last-child {
  margin-bottom: 0;
}
.catalog .subtitle {
  margin-bottom: 22px;
}
.catalog__benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
  position: relative;
}
.catalog__benefits::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: rgba(109, 207, 246, 0.6);
  position: absolute;
  bottom: 0;
  left: 100%;
}
.catalog__benefits::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: rgba(109, 207, 246, 0.6);
  position: absolute;
  bottom: 0;
  left: 0;
}
.catalog__benefits li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 77px 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.catalog__benefits p {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}
.catalog__photo {
  padding-right: 64px;
  justify-self: end;
  pointer-events: none;
}
.catalog__details {
  margin-top: -62px;
}

.where-buy__title {
  color: #000000;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33;
  margin-top: 38px;
  margin-bottom: 40px;
}
.where-buy__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.where-buy__list li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 136px;
}
.where-buy__list li .button {
  position: absolute;
  bottom: -25px;
}
.where-buy__image {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #a7e2fa;
  border-radius: 24px;
}
.where-buy__image img {
  display: block;
}
.where-buy .button {
  padding-left: 24px;
  padding-right: 24px;
}

.button {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  border-radius: 24px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #0072bc;
  padding: 14px;
  min-height: 48px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.button:hover {
  background-color: #0072bc;
  color: #ffffff;
}
.button--white {
  background-color: #ffffff;
  border: 2px solid #0072bc;
}
.button--ozon {
  background-color: #005cff;
  color: #ffffff;
}
.button--wildberries {
  background-color: #b3109c;
  color: #ffffff;
}

.catalog__item-grid:nth-child(2) .title::before {
  left: auto;
  right: 100%;
}
.catalog__item-grid:nth-child(2) .catalog__benefits::before {
  left: auto;
  right: 100%;
}
.catalog__item-grid:nth-child(2) .catalog__photo {
  padding-right: initial;
  padding-left: 64px;
  justify-self: start;
}

.pricing-purchase {
  color: #ffffff;
  padding: 190px 0 80px;
  background-color: transparent;
  background-image: url(../img/bg/pricing-purchase.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  margin-top: -256px;
  z-index: 11;
}
.pricing-purchase__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 88px;
}
.pricing-purchase__item {
  background: #ffffff;
  border: 1px solid #a7e2fa;
  border-radius: 24px;
  color: #000000;
  padding: 33px;
  padding-bottom: 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.pricing-purchase__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
  margin-bottom: 40px;
}
.pricing-purchase__photo {
  position: relative;
  z-index: 11;
  margin-bottom: -1px;
  margin-top: -88px;
}
.pricing-purchase__photo img {
  display: block;
}
.pricing-purchase__name {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.78;
  color: #000000;
  margin-bottom: 16px;
}
.pricing-purchase__price {
  display: block;
  margin: 0;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: #00abe6;
}
.pricing-purchase__buttons {
  display: grid;
  grid-template-columns: auto auto;
  gap: 32px;
  margin-bottom: 33px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pricing-purchase .button {
  width: 100%;
  max-width: 100%;
}

.layer-mod {
  display: none;
}

.our-production {
  overflow-x: hidden;
  max-width: 100vw;
  z-index: 2;
  position: relative;
  padding-top: 90px;
  padding-bottom: 75px;
}

.title--clear {
  padding: 0;
  margin: 0;
  margin-bottom: 38px;
}
.title--clear::after, .title--clear::before {
  display: none;
}

.custom-slider__group {
  display: grid;
  gap: 33px;
  grid-template-columns: repeat(12, 1fr);
}
.custom-slider__left {
  grid-column: span 8;
}
.custom-slider__right {
  grid-column: span 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.custom-slider__photo {
  width: 100%;
  height: 688px;
}
.custom-slider__photo .swiper {
  width: 100%;
  height: 100%;
}
.custom-slider__photo .swiper-slide {
  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;
}
.custom-slider__photo .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 60px;
}
.custom-slider__details {
  margin-bottom: 30px;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.custom-slider__details .swiper {
  height: 100%;
  width: 100%;
}
.custom-slider__details .swiper-slide {
  background: #f7f7f7;
  border-radius: 60px;
  padding: 62px 47px 70px 40px;
}
.custom-slider__title {
  display: block;
  margin: 0;
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: var(--darkblue);
}
.custom-slider__text {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: var(--black);
}
.custom-slider__pagination {
  background: #f7f7f7;
  border-radius: 60px;
  height: 120px;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr auto;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 30px;
  line-height: 120%;
  color: var(--black);
}
.custom-slider .swiper-button-prev,
.custom-slider .swiper-button-next {
  position: initial;
  margin: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.custom-slider .swiper-button-prev:hover, .custom-slider .swiper-button-prev:active, .custom-slider .swiper-button-prev:focus,
.custom-slider .swiper-button-next:hover,
.custom-slider .swiper-button-next:active,
.custom-slider .swiper-button-next:focus {
  background-color: #d9d9d9;
}
.custom-slider .swiper-button-prev::after, .custom-slider .swiper-button-prev::before,
.custom-slider .swiper-button-next::after,
.custom-slider .swiper-button-next::before {
  display: none !important;
}
.custom-slider .swiper-button-prev svg,
.custom-slider .swiper-button-next svg {
  pointer-events: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 23px;
  height: 34px;
}
.custom-slider .swiper-pagination {
  position: initial;
  margin: 0;
}

.section__grid {
  display: grid;
  gap: 32px;
}
.section__grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.card-item {
  position: relative;
  border-radius: 60px;
  overflow: hidden;
  background: radial-gradient(96.64% 43.26% at 82.89% 69.09%, rgb(155, 173, 246) 0%, rgb(94, 117, 211) 100%), #d4d4d4;
  color: var(--white);
  padding: 48px;
  padding-bottom: 54px;
  padding-right: 30%;
}
.card-item:hover .card-item__photo, .card-item:active .card-item__photo, .card-item:focus .card-item__photo {
  scale: 1.05;
}
.card-item--mod {
  background: radial-gradient(125.91% 59.62% at 85.79% 50%, rgb(186, 224, 124) 0%, rgb(118, 184, 55) 100%), #c8c8c8;
}
.card-item__title {
  margin: 0;
  margin-bottom: 75px;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  color: inherit;
}
.card-item__photo {
  display: block;
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: scale 0.6s;
  transition: scale 0.6s;
}
.card-item__link {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: inherit;
  font-weight: 400;
  font-size: 20px;
  text-transform: initial;
  padding: 18px 50px;
  border-radius: 150px;
  min-height: initial !important;
}
.card-item__link:hover, .card-item__link:focus, .card-item__link:active {
  color: var(--black);
  background-color: var(--white);
  border: 1px solid var(--white);
}

.where-to-buy__list {
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  gap: 30px;
}
.where-to-buy__item:nth-child(1) {
  grid-column: span 5;
}
.where-to-buy__item:nth-child(2) {
  grid-column: span 5;
}
.where-to-buy__item:nth-child(3) {
  grid-column: span 6;
}
.where-to-buy__item:nth-child(4) {
  grid-column: span 6;
}
.where-to-buy__item:nth-child(5) {
  grid-column: span 6;
}
.where-to-buy__item:nth-child(6) {
  grid-column: span 4;
}
.where-to-buy__link {
  padding: 6% 15%;
  height: 200px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: var(--white);
  border: 3px solid #d5d5d5;
  border-radius: 40px;
}
.where-to-buy__link img {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-height: 100%;
}

.footer {
  padding-bottom: 50px;
}
.footer__container {
  background-color: #222222;
  color: var(--white);
  padding: 90px 40px;
  border-radius: 90px;
}
.footer__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 8fr 4fr;
}
.footer__company-link {
  display: block;
  width: 175px;
  margin-bottom: 60px;
}
.footer__title {
  display: block;
  margin: 0;
  margin-bottom: 35px;
  font-weight: 400;
  font-size: 80px;
  color: var(--white);
  line-height: 1.2;
}
.footer__text {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.2;
}
.footer__text a {
  text-decoration: underline;
}
.footer__form {
  margin-bottom: 42px;
  max-width: 765px;
}
.footer__form-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(1, 1fr);
}
.footer__form-item input,
.footer__form-item textarea {
  max-width: 100%;
  width: 100%;
  background-color: transparent;
  color: var(--white);
  font-weight: 400;
  font-size: 20px;
  padding: 15px 0;
  height: 70px;
  border: none;
  border-bottom: 1px solid var(--white);
}
.footer__form-item ::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 20px;
  color: var(--white);
}
.footer__form-item ::-moz-placeholder {
  font-weight: 400;
  font-size: 20px;
  color: var(--white);
}
.footer__form-item :-ms-input-placeholder {
  font-weight: 400;
  font-size: 20px;
  color: var(--white);
}
.footer__form-item ::-ms-input-placeholder {
  font-weight: 400;
  font-size: 20px;
  color: var(--white);
}
.footer__form-item ::placeholder {
  font-weight: 400;
  font-size: 20px;
  color: var(--white);
}
.footer__form-item--grid {
  padding-top: 35px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
}
.footer__form-item--grid .footer__text {
  max-width: 425px;
  margin-right: auto;
}

.form__button {
  background-color: var(--white);
  font-size: 20px;
  line-height: 120%;
  color: var(--black);
  padding: 16px 45px;
  border: 1px solid var(--white);
  border-radius: 150px;
  text-transform: inherit;
}

.footer__link {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__grid-item-grid {
  display: grid;
  gap: 32px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  grid-template-columns: repeat(2, auto);
}

.footer__contacts-title {
  display: block;
  margin: 0;
  margin-bottom: 13px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.6);
}

.footer__contacts-details {
  font-weight: 400;
  font-size: 32px;
  color: var(--white);
  display: block;
  margin: 0;
  line-height: 1.75;
}

.footer__contacts-item:not(:last-of-type) {
  margin-bottom: 40px;
}

.main {
  padding-bottom: 50px;
}

.social {
  padding-top: 12px;
}
.social__list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, auto);
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sec-dir {
  padding-top: 5px;
  padding-bottom: 40px;
}

.where-to-buy {
  padding: 40px 0;
}

.footer__bottom-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 4fr);
  width: 100%;
  max-width: 100%;
}

@media (max-width: 1800px) {
  .hero .img-group__center {
    left: 14%;
    max-width: 610px;
  }
  .hero .img-group__right {
    right: -7%;
    bottom: 64px !important;
    max-width: 316px;
  }
  .hero .img-group__left {
    left: -6%;
    bottom: 64px !important;
    max-width: 316px;
  }
}
@media (max-width: 1500px) {
  .pricing-purchase__buttons {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pricing-purchase__photo {
    margin-top: auto;
  }
}
@media (max-width: 1400px) {
  .hero {
    margin-bottom: 0;
  }
  .title::before {
    display: none;
  }
  .catalog__details {
    margin-top: 0;
    padding-top: 200px;
  }
  .catalog__photo {
    padding: 0 !important;
  }
  .catalog__item-grid {
    grid-template-columns: 1fr 2fr;
    margin-bottom: 132px;
    padding-top: 42px;
  }
  .catalog__item-grid:nth-child(2) {
    grid-template-columns: 2fr 1fr;
    margin-bottom: 45px;
  }
  .pricing-purchase {
    margin-top: 0;
  }
  .catalog {
    overflow-x: initial;
    max-width: initial;
  }
  .catalog__benefits::before {
    display: none;
  }
  .catalog__details {
    padding-top: initial;
  }
  .custom-slider__details .swiper-slide {
    padding: 40px;
  }
  .custom-slider__title {
    margin-bottom: 16px;
    font-size: 24px;
  }
  .custom-slider__text {
    font-size: 18px;
  }
  .custom-slider .swiper-button-prev,
  .custom-slider .swiper-button-next {
    width: 77px;
    height: 77px;
  }
  .custom-slider .swiper-button-prev svg,
  .custom-slider .swiper-button-next svg {
    scale: 0.8;
  }
  .custom-slider__pagination {
    height: 77px;
    font-size: 20px;
  }
  .custom-slider__photo {
    height: 460px;
  }
  .custom-slider__left {
    grid-column: span 7;
  }
  .custom-slider__right {
    grid-column: span 5;
  }
  .custom-slider__photo .swiper-slide img {
    border-radius: 40px;
  }
  .custom-slider__details .swiper-slide {
    border-radius: 40px;
  }
  .card-item__title {
    font-size: 28px;
    margin-bottom: 41px;
  }
  .card-item {
    padding: 32px;
    padding-right: 30%;
  }
  .card-item__link {
    padding: 12px 24px;
  }
  .card-item {
    border-radius: 40px;
  }
  .where-to-buy__link {
    height: 160px;
  }
  .where-to-buy__list {
    gap: 20px;
  }
  .where-to-buy__link {
    padding: 8% 20%;
  }
}
@media (max-width: 1300px) {
  .pricing-purchase__list {
    grid-template-columns: 1fr;
    margin-top: 44px;
    max-width: 820px;
  }
  .hero {
    padding-top: 42px;
  }
  .hero::before {
    height: 140px;
  }
  .hero__image {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    padding: 16px 23px;
  }
  .hero__image img {
    max-width: 190px;
  }
  .hero__logo {
    max-width: 80px;
    height: 80px;
  }
  .hero__logo img {
    max-width: 55px;
  }
  .hero .img-group__center {
    left: 20%;
    max-width: 560px;
  }
  .hero .img-group__right {
    right: -24px;
    bottom: 10px !important;
    max-width: 240px;
  }
  .hero .img-group__left {
    left: 5%;
    bottom: 47px !important;
    max-width: 260px;
  }
  .hero .img-group {
    position: relative;
    height: 582px;
  }
}
@media (max-width: 1200px) {
  .title {
    font-size: 32px !important;
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
  .hero .img-group__center {
    left: 20%;
    max-width: 420px;
  }
  .hero .img-group__left {
    left: 5%;
    bottom: 47px !important;
    max-width: 190px;
  }
  .hero .img-group__right {
    right: 4px;
    bottom: -24px !important;
    max-width: 180px;
  }
  .hero .img-group {
    position: relative;
    height: 467px;
  }
  .hero .title {
    padding-bottom: 16px;
    margin-bottom: 10px;
  }
  .hero .subtitle {
    margin-bottom: 10px;
  }
  .hero__image a {
    display: block;
    max-width: 120px;
  }
  .hero__image img {
    max-width: 100%;
  }
  .hero .img-group {
    position: relative;
    height: 440px;
  }
  .catalog__benefits {
    gap: 16px;
  }
  .catalog__benefits {
    padding-bottom: 22px;
  }
  .where-buy__title {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
  }
  .where-buy__image img {
    display: block;
    max-width: 145px;
  }
  .where-buy__list li {
    min-height: 115px;
  }
  .pricing-purchase {
    color: #ffffff;
    padding: 140px 0 60px;
  }
  .pricing-purchase__price {
    margin-bottom: 16px;
    font-size: 35px;
  }
  .footer__grid {
    grid-template-columns: 6fr 4fr;
  }
  .footer__title {
    font-size: 50px;
  }
  .footer__company-link {
    width: 116px;
    margin-bottom: 24px;
  }
  .footer__form-item input,
  .footer__form-item textarea {
    font-size: 16px;
    height: 55px;
  }
  .footer__text {
    font-size: 14px;
    max-width: initial;
  }
  .form__button {
    font-size: 14px;
    padding: 11px 30px;
  }
  .footer__form ::-webkit-input-placeholder {
    font-size: 16px;
  }
  .footer__form ::-moz-placeholder {
    font-size: 16px;
  }
  .footer__form :-ms-input-placeholder {
    font-size: 16px;
  }
  .footer__form ::-ms-input-placeholder {
    font-size: 16px;
  }
  .footer__form ::placeholder {
    font-size: 16px;
  }
  .footer__contacts-title {
    font-size: 14px;
  }
  .footer__contacts-details {
    font-size: 20px;
  }
  .footer__link {
    font-size: 12px;
  }
  .footer__container {
    padding: 50px 60px;
    border-radius: 60px;
  }
  .footer__form {
    margin-bottom: 32px;
    max-width: 422px;
  }
  .footer__bottom-grid {
    grid-template-columns: 3fr 3fr 4fr;
  }
}
@media (max-width: 1024px) {
  .hero__grid {
    display: block;
  }
  .hero .img-group {
    max-width: 570px;
    margin: 0 auto;
  }
  .hero .title {
    font-size: 52px !important;
    padding-bottom: 23px;
    margin-bottom: 23px;
  }
  .hero .img-group__center {
    left: 20%;
    max-width: 500px;
  }
  .hero .img-group__left {
    left: -2%;
    bottom: 10px !important;
    max-width: 238px;
  }
  .hero .img-group__right {
    right: -102px;
    bottom: 50px !important;
    max-width: 227px;
  }
  .hero__image {
    background: #ffffff;
    border-radius: 48px;
    max-width: 288px;
    width: 100%;
    padding: 26px 24px 27px;
  }
  .hero__image a {
    display: block;
    max-width: initial;
  }
  .hero .img-group {
    position: relative;
    height: 510px;
  }
  .wrapper {
    padding: 0 20px;
  }
  .where-buy__list {
    grid-template-columns: 1fr 1fr;
    gap: 60px 32px;
  }
  .catalog__item-grid {
    margin-bottom: 63px;
  }
  .img-group {
    display: none !important;
  }
  .layer-mod {
    display: block;
    max-width: 80%;
    margin: 0 auto;
    position: relative;
    bottom: -55px;
  }
}
@media (max-width: 1023px) {
  .custom-slider__left {
    grid-column: span 12;
  }
  .custom-slider__right {
    grid-column: span 12;
  }
  .custom-slider__photo {
    height: 353px;
  }
  .custom-slider__pagination {
    height: 60px;
  }
  .custom-slider .swiper-button-prev,
  .custom-slider .swiper-button-next {
    width: 60px;
    height: 60px;
  }
  .custom-slider .swiper-button-prev svg,
  .custom-slider .swiper-button-next svg {
    scale: 0.6;
  }
  .custom-slider__photo .swiper-slide img {
    border-radius: 32px;
  }
  .custom-slider__details .swiper-slide {
    border-radius: 32px;
  }
  .section__grid--two {
    grid-template-columns: repeat(1, 1fr);
  }
  .card-item__link {
    font-size: 18px;
  }
  .card-item__title {
    font-size: 20px;
    margin-bottom: 32px;
  }
  .where-to-buy__link {
    height: 120px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__form {
    max-width: 100%;
  }
  .footer__contacts-list {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 60px;
  }
  .footer__bottom-grid {
    grid-template-columns: repeat(3, auto);
  }
}
@media (max-width: 768px) {
  .hero .img-group__right {
    right: -51px;
    bottom: 50px !important;
    max-width: 227px;
  }
  .hero .title {
    font-size: 38px !important;
  }
  .hero__image {
    padding: 14px 28px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .hero__image a {
    display: block;
    max-width: 153px;
  }
  .catalog__item-grid {
    padding-top: 12px;
  }
  .catalog__photo img {
    height: 500px;
    max-width: initial;
    width: auto;
  }
  .catalog__item-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .catalog .title {
    font-size: 32px !important;
  }
  .catalog__photo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 23px;
  }
  .catalog__item-grid:nth-child(2) .catalog__photo {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .layer-mod {
    bottom: -32px;
    max-width: 100%;
  }
  .where-to-buy__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 16px;
  }
  .where-to-buy__item {
    grid-column: initial !important;
  }
  .where-to-buy__link {
    padding: 10%;
    border: 2px solid #d5d5d5;
    border-radius: 25px;
  }
}
@media (max-width: 767px) {
  .footer__bottom-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .footer__contacts-list {
    gap: 0;
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 32px;
  }
  .footer__contacts-item:not(:last-of-type) {
    margin-bottom: 24px;
  }
  .footer__title {
    font-size: 32px;
    margin-bottom: 18px;
  }
  .footer__form {
    margin-bottom: 0;
  }
  .footer__form-item input,
  .footer__form-item textarea {
    font-size: 14px;
    height: 48px;
  }
  .footer__form-item input ::-webkit-input-placeholder, .footer__form-item textarea ::-webkit-input-placeholder {
    font-size: 14px;
  }
  .footer__form-item input ::-moz-placeholder, .footer__form-item textarea ::-moz-placeholder {
    font-size: 14px;
  }
  .footer__form-item input :-ms-input-placeholder, .footer__form-item textarea :-ms-input-placeholder {
    font-size: 14px;
  }
  .footer__form-item input ::-ms-input-placeholder, .footer__form-item textarea ::-ms-input-placeholder {
    font-size: 14px;
  }
  .footer__form-item input ::placeholder,
  .footer__form-item textarea ::placeholder {
    font-size: 14px;
  }
  .footer__form-item--grid {
    padding-top: 24px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer__form-item--grid .footer__text {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .form__button {
    max-width: 100%;
    min-height: initial !important;
    height: 40px;
  }
  .footer__container {
    padding: 32px 24px;
    border-radius: 20px;
  }
}
@media (max-width: 670px) {
  .pricing-purchase__item {
    grid-template-columns: 1fr;
  }
  .pricing-purchase__photo {
    margin: 0 auto;
  }
  .button {
    font-size: 16px;
    min-height: 65px;
  }
  .catalog__benefits {
    grid-template-columns: 1fr;
  }
  .where-buy__list {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .where-buy__list li {
    min-height: 180px;
  }
  .where-buy__image img {
    display: block;
    max-width: initial;
  }
  .pricing-purchase {
    color: #ffffff;
    padding: 70px 0 60px;
    background: linear-gradient(70.58deg, #00a9e7 17.67%, #005aa4 75.79%);
  }
  .custom-slider__photo {
    height: 220px;
  }
  .custom-slider__group {
    display: block;
  }
  .custom-slider__photo {
    width: 100%;
    margin-bottom: 22px;
  }
  .custom-slider__details .swiper-slide {
    padding: 30px;
  }
  .custom-slider__details {
    margin-bottom: 22px;
  }
  .custom-slider__pagination {
    height: 60px;
    font-size: 18px;
  }
  .custom-slider__photo .swiper-slide img {
    border-radius: 20px;
  }
  .custom-slider__details .swiper-slide {
    border-radius: 20px;
  }
  .card-item .card-item__photo {
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
    height: 120%;
  }
}/*# sourceMappingURL=style.css.map */