@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
html {
  font-size: 16px;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  position: relative;
  margin: 0;
  color: #181d42;
  background-color: #ffffff;
  will-change: overflow;
}

a,
button,
input,
textarea {
  font-family: "Nunito", sans-serif;
  text-decoration: none;
}

figure {
  margin: 0;
}

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

@-webkit-keyframes fade-it-up {
  from {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-it-up {
  from {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes typing {
  from {
    visibility: visible;
    height: auto;
    width: 0;
  }
  to {
    visibility: visible;
    height: auto;
    width: 100%;
  }
}

@keyframes typing {
  from {
    visibility: visible;
    height: auto;
    width: 0;
  }
  to {
    visibility: visible;
    height: auto;
    width: 100%;
  }
}

@-webkit-keyframes caret {
  from {
    -webkit-box-shadow: 3px 0px 0px -1px currentColor;
            box-shadow: 3px 0px 0px -1px currentColor;
  }
  to {
    -webkit-box-shadow: 3px 0px 0px -1px currentColor;
            box-shadow: 3px 0px 0px -1px currentColor;
  }
}

@keyframes caret {
  from {
    -webkit-box-shadow: 3px 0px 0px -1px currentColor;
            box-shadow: 3px 0px 0px -1px currentColor;
  }
  to {
    -webkit-box-shadow: 3px 0px 0px -1px currentColor;
            box-shadow: 3px 0px 0px -1px currentColor;
  }
}

@-webkit-keyframes open {
  from {
    visibility: visible;
    height: 0;
  }
  to {
    height: 100%;
    visibility: visible;
  }
}

@keyframes open {
  from {
    visibility: visible;
    height: 0;
  }
  to {
    height: 100%;
    visibility: visible;
  }
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@-webkit-keyframes msg-open {
  to {
    width: 100%;
  }
}

@keyframes msg-open {
  to {
    width: 100%;
  }
}

@-webkit-keyframes star-show {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes star-show {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.container {
  max-width: 1312px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.button {
  display: inline-block;
  padding: 16px 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 700;
  font-size: 16px;
  line-height: 162%;
  color: #fff;
  text-align: center;
  border: none;
  border-radius: 50px;
  background-color: #33363c;
  -webkit-transition: background-color ease-in-out 0.2s;
  transition: background-color ease-in-out 0.2s;
  cursor: pointer;
}

.button:hover {
  background-color: #fd706c;
}

.button:active {
  background-color: #dd423d;
}

@media (max-width: 576px) {
  .button {
    width: 100%;
  }
}

.slider-buttons {
  display: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 16px;
  margin-top: 32px;
}

@media (max-width: 1023px) {
  .slider-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.slider-buttons .slider-button {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background-color: #fafafa;
  border: none;
}

.slider-buttons .slider-button:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center url("../assets/arrow-right.svg");
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.slider-buttons .slider-button-prev::after {
  background: no-repeat center url("../assets/arrow-left.svg");
}

.slider-buttons .slider-button[aria-disabled="true"]::after {
  opacity: 0.4;
}

.message {
  display: inline-block;
  padding: 24px 24px 24px 32px;
  font-size: 24px;
  line-height: 108%;
  font-weight: 500;
  background: #ffffff;
  border-radius: 150px 0 50px 150px;
  min-height: 1lh;
}

.message-left {
  padding: 24px 32px 24px 24px;
  border-radius: 50px 150px 150px 0;
}

@media (max-width: 1023px) {
  .message {
    font-size: 16px;
    line-height: 160%;
    padding: 16px 16px 16px 20px;
    border-radius: 90px 0 30px 90px;
  }
  .message-left {
    padding: 16px 20px 16px 16px;
    border-radius: 30px 90px 90px 0;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0;
  background-color: #ffffff;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: #ffffff;
}

.header .container {
  max-width: 1472px;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header__logo {
  position: relative;
  z-index: 10;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.header__logo-link {
  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;
  gap: 6px;
}

.header__logo-link-image {
  display: block;
  max-width: 100%;
  width: 60px;
  height: auto;
}

.header__logo-link-text {
  display: inline-block;
  font-weight: 900;
  font-size: 24px;
  line-height: 108%;
  color: #303030;
}

@media (max-width: 576px) {
  .header__logo-link-text {
    display: none;
  }
}

.header__nav {
  position: relative;
  z-index: 10;
}

.header__nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.header__nav-menu-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.header__nav-menu-item-link {
  display: inline-block;
  padding: 10px 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 700;
  font-size: 16px;
  line-height: 162%;
  color: #303030;
  -webkit-transition: color ease-in-out 0.2s;
  transition: color ease-in-out 0.2s;
  cursor: pointer;
}

.header__nav-menu-item-button {
  display: inline-block;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 16px;
  line-height: 162%;
  color: #fff;
  border: none;
  border-radius: 50px;
  background-color: #33363c;
  -webkit-transition: background-color ease-in-out 0.2s;
  transition: background-color ease-in-out 0.2s;
  cursor: pointer;
}

.header__nav-menu-item-button:hover {
  background-color: #fd706c;
}

.header__nav-menu-item-button:active {
  background-color: #dd423d;
}

.header__join {
  position: relative;
  z-index: 10;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.header__join-button {
  display: inline-block;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 16px;
  line-height: 162%;
  color: #fff;
  border: none;
  border-radius: 50px;
  background-color: #33363c;
  -webkit-transition: background-color ease-in-out 0.2s;
  transition: background-color ease-in-out 0.2s;
  cursor: pointer;
}

.header__join-button:hover {
  background-color: #fd706c;
}

.header__join-button:active {
  background-color: #dd423d;
}

.main {
  padding: 80px 0 0;
}

.title {
  opacity: 0;
  will-change: opacity;
}

.title.animate {
  -webkit-animation: show 1.8s forwards;
          animation: show 1.8s forwards;
}

.first-screen {
  padding: 36px 0 0;
}

.first-screen__tag {
  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;
  gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 9px 16px;
  margin: 0 auto;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #33363c;
  border-radius: 40px;
  background-color: #f9ecdb;
}

.first-screen__tag::before {
  content: '';
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20px;
  aspect-ratio: 1 / 1;
  background: url(..//assets/icons/heart.svg) center/cover no-repeat;
}

.first-screen__title {
  max-width: 748px;
  margin: 24px auto;
  font-weight: 700;
  font-size: 56px;
  line-height: 120%;
  text-align: center;
  color: #33363c;
}

@media (max-width: 1023px) {
  .first-screen__title {
    font-size: 48px;
  }
}

@media (max-width: 576px) {
  .first-screen__title {
    margin: 24px auto 16px;
    font-size: 32px;
  }
}

.first-screen__description {
  max-width: 580px;
  margin: 24px auto;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  color: #33363c;
}

@media (max-width: 1023px) {
  .first-screen__description {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .first-screen__description {
    margin: 16px auto 24px;
    font-size: 16px;
  }
}

.first-screen__download {
  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;
  gap: 16px;
  margin: 0 0 24px;
}

@media (max-width: 576px) {
  .first-screen__download {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 24px 0 32px;
  }
}

.first-screen__download-link {
  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;
  padding: 8px 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  border-radius: 50px;
  background-color: #000000;
}

@media (max-width: 576px) {
  .first-screen__download-link {
    width: 100%;
  }
}

.first-screen__download-link-image {
  display: block;
  max-width: 100%;
  width: 148px;
  height: auto;
}

.first-screen__phone {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -16px;
  padding: 0 16px;
  overflow: hidden;
}

.first-screen__phone::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  display: block;
  max-width: 1000px;
  width: 80%;
  aspect-ratio: 3 / 1;
  background: url(../assets/ellipse-fs.svg) center/cover no-repeat;
  -webkit-transform: translate3d(-50%, 40%, 0);
          transform: translate3d(-50%, 40%, 0);
  -webkit-filter: blur(80px);
          filter: blur(80px);
}

@media (max-width: 576px) {
  .first-screen__phone::before {
    display: none;
  }
}

.first-screen__phone-content {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 506px;
  width: 100%;
  aspect-ratio: 506 / 430;
  margin: 0 auto;
  overflow: hidden;
}

.first-screen__phone-content-image {
  position: relative;
  z-index: 10;
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

.first-screen__phone-content-screen {
  position: absolute;
  z-index: 5;
  top: 24%;
  left: 4%;
  right: 4%;
  bottom: 0;
  aspect-ratio: 440 / 910;
  overflow: hidden;
}

.first-screen__phone-content-screen-image {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../assets/screen1.jpg) top center no-repeat;
}

.first-screen__iherb {
  padding: 40px 0;
}

.first-screen__iherb-logo {
  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: 0 0 24px;
}

.first-screen__iherb-logo-image {
  display: block;
  max-width: 100%;
  height: auto;
}

.first-screen__iherb-text {
  max-width: 480px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #33363c;
}

.how-works {
  padding: 80px 0;
}

@media (max-width: 1023px) {
  .how-works {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .how-works {
    padding: 40px 0;
  }
}

.how-works__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 162%;
  color: #33363c;
  border-radius: 50px;
  background-color: #f9ecdb;
}

@media (max-width: 576px) {
  .how-works__tag {
    margin: 0 auto 16px;
  }
}

.how-works__title {
  margin: 0 0 80px;
  font-weight: 700;
  font-size: 56px;
  line-height: 120%;
  color: #33363c;
}

@media (max-width: 1023px) {
  .how-works__title {
    margin-bottom: 60px;
    font-size: 48px;
  }
}

@media (max-width: 576px) {
  .how-works__title {
    margin-bottom: 40px;
    font-size: 32px;
    text-align: center;
  }
}

.how-works__content {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "first first" "second third";
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 1023px) {
  .how-works__content {
        grid-template-areas: "first first" "second second" "third third";
  }
}

.how-works__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 24px;
  padding: 56px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 56px;
  background-color: #fafafa;
}

@media (max-width: 1023px) {
  .how-works__step {
    padding: 32px;
    border-radius: 32px;
  }
}

@media (max-width: 576px) {
  .how-works__step {
    padding: 16px;
    border-radius: 24px;
  }
}

.how-works__step-info {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  opacity: 0;
  will-change: opacity;
}

.how-works__step-info-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  color: #33363c;
}

@media (max-width: 1023px) {
  .how-works__step-info-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .how-works__step-info-title {
    font-size: 24px;
  }
}

.how-works__step-info-title-id {
  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-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-width: 70px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 70px;
  padding: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid #33363c;
  border-radius: 70px;
}

@media (max-width: 576px) {
  .how-works__step-info-title-id {
    min-width: 40px;
    height: 40px;
    padding: 4px 8px;
    border-width: 2px;
  }
}

.how-works__step-info-description {
  margin: 0;
  font-weight: 500;
  font-size: 24px;
  color: #33363c;
}

@media (max-width: 1023px) {
  .how-works__step-info-description {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .how-works__step-info-description {
    font-size: 16px;
  }
}

.how-works__step-info-controls {
  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: 24px 0 0;
}

.how-works__step-figure {
  width: 100%;
  display: -ms-grid;
  display: grid;
  gap: 8px;
  z-index: 1;
}

.how-works__step-figure > .how-works__step-figure__item-wrap {
  opacity: 0;
  will-change: opacity transform;
}

.how-works__step-figure .how-works__step-figure__item-wrap:last-child .how-works__step-figure__item {
  margin-bottom: 30px;
}

.how-works__step-figure .how-works__step-figure__item-wrap:last-child .how-works__step-figure__item::before, .how-works__step-figure .how-works__step-figure__item-wrap:last-child .how-works__step-figure__item::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  height: 50%;
  z-index: -1;
}

.how-works__step-figure .how-works__step-figure__item-wrap:last-child .how-works__step-figure__item::after {
  background: #f7f7f7;
  width: calc(100% - 44px);
  left: 22px;
  bottom: -15px;
}

.how-works__step-figure .how-works__step-figure__item-wrap:last-child .how-works__step-figure__item::before {
  background: #f2f2f2;
  width: calc(100% - 88px);
  left: 44px;
  bottom: -30px;
}

.how-works__step-figure__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  border-radius: 150px;
  background: #ffffff;
  padding: 16px 36px 16px 20px;
}

.how-works__step-figure__item-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  outline: 4px solid #e4e4e4;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.how-works__step-figure__item-image img {
  width: 100%;
}

.how-works__step-figure__item-name {
  font-size: 24px;
  line-height: 100%;
  font-weight: 700;
  margin-bottom: 8px;
}

.how-works__step-figure__item-text {
  font-size: 16px;
  line-height: 150%;
}

@media (max-width: 576px) {
  .how-works__step-figure {
    gap: 5px;
  }
  .how-works__step-figure__item {
    gap: 10px;
    padding: 10px 20px 10px 12px;
  }
  .how-works__step-figure__item-image {
    border-radius: 24px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48px;
            flex: 0 0 48px;
    outline: 2px solid #e4e4e4;
    padding: 6px;
  }
  .how-works__step-figure__item-name {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .how-works__step-figure__item-text {
    font-size: 12px;
  }
}

.how-works__step_first {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 0;
  gap: 0;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: first;
}

@media (max-width: 1023px) {
  .how-works__step_first {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.how-works__step_first .how-works__step-info {
  padding: 56px 0 56px 56px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 1023px) {
  .how-works__step_first .how-works__step-info {
    padding: 32px;
  }
}

@media (max-width: 576px) {
  .how-works__step_first .how-works__step-info {
    padding: 16px;
  }
}

.how-works__step_first .how-works__step-info,
.how-works__step_first .how-works__step-figure {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

@media (max-width: 1023px) {
  .how-works__step_first .how-works__step-info,
  .how-works__step_first .how-works__step-figure {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}

.how-works__step_first .how-works__step-info-image,
.how-works__step_first .how-works__step-figure-image {
  width: 100%;
  opacity: 0;
  will-change: opacity;
}

.how-works__step_first.animate .how-works__step-figure-image {
  -webkit-animation: show 1.8s forwards;
          animation: show 1.8s forwards;
}

.how-works__step_third.animate .how-works__step-figure-image {
  -webkit-animation: open 0.8s forwards;
          animation: open 0.8s forwards;
}

.how-works__step.animate .how-works__step-info {
  -webkit-animation: show 1.8s forwards;
          animation: show 1.8s forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.how-works__step.animate .how-works__step-figure__item-wrap {
  -webkit-animation: fade-it-up forwards;
          animation: fade-it-up forwards;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.how-works__step.animate .how-works__step-figure__item-wrap:not(:first-child) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.how-works__step_second, .how-works__step_third {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 2 - 24px / 2);
          flex: 0 0 calc(100% / 2 - 24px / 2);
}

@media (max-width: 1023px) {
  .how-works__step_second, .how-works__step_third {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}

.how-works__step_second {
  background-color: #f9ecdb;
  overflow: hidden;
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: second;
}

.how-works__step_third {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: third;
}

.how-works__step_third .how-works__step-figure {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.how-works__step_third .how-works__step-figure-image {
  width: 100%;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  visibility: hidden;
  will-change: visibility height;
}

.supplements {
  padding: 80px 0;
}

@media (max-width: 1023px) {
  .supplements {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .supplements {
    padding: 40px 0;
  }
}

.supplements__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 162%;
  color: #33363c;
  border-radius: 50px;
  background-color: #f9ecdb;
}

@media (max-width: 576px) {
  .supplements__tag {
    margin: 0 auto 16px;
  }
}

.supplements__title {
  max-width: 560px;
  margin: 0 0 56px;
  font-weight: 700;
  font-size: 56px;
  line-height: 120%;
  color: #33363c;
}

@media (max-width: 1023px) {
  .supplements__title {
    margin-bottom: 50px;
    font-size: 48px;
  }
}

@media (max-width: 576px) {
  .supplements__title {
    max-width: none;
    margin-bottom: 40px;
    font-size: 32px;
    text-align: center;
  }
}

.supplements__slider {
  margin: 0 0 24px;
}

@media (max-width: 1023px) {
  .supplements__slider {
    margin: 0 0 40px;
  }
}

.supplements__slider .swiper {
  overflow: visible;
}

@media (max-width: 1023px) {
  .supplements__slider .swiper {
    overflow: hidden;
    margin: 0 -16px;
    padding: 0 16px;
  }
}

.supplements__slider .swiper-slide {
  height: auto;
}

.supplements__slide {
  position: relative;
  display: block;
  height: 100%;
  padding: 56px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  border-radius: 56px;
}

.supplements__slide_first {
  background: #eaeed3;
}

.supplements__slide_second {
  background: #ececfb;
}

.supplements__slide_third {
  background: #ffd9d8;
}

@media (max-width: 1023px) {
  .supplements__slide {
    border-radius: 36px;
  }
}

@media (max-width: 576px) {
  .supplements__slide {
    position: relative;
    padding: 24px 0;
    border-radius: 24px;
    overflow: hidden;
  }
}

.supplements__slide-icon {
  will-change: opacity;
  opacity: 0;
}

.supplements__slide-icon-image {
  width: 100%;
  margin-bottom: 32px;
}

@media (max-width: 576px) {
  .supplements__slide-icon-image {
    display: none;
  }
}

.supplements__slide-icon-image-mobile {
  margin: 0;
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
}

@media (max-width: 576px) {
  .supplements__slide-icon-image-mobile {
    display: block;
  }
}

.supplements__slide-title, .supplements__slide-subtitle {
  padding: 0 36px;
  will-change: opacity;
  opacity: 0;
}

@media (max-width: 1023px) {
  .supplements__slide-title, .supplements__slide-subtitle {
    padding: 0 16px;
  }
}

.supplements__slide-title {
  margin: 0 auto 8px;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  color: #33363c;
}

@media (max-width: 576px) {
  .supplements__slide-title {
    position: relative;
    z-index: 10;
    margin: 0 0 16px;
    font-size: 28px;
    text-align: left;
  }
}

.supplements__slide-subtitle {
  font-weight: 400;
  font-size: 24px;
  text-align: center;
  color: #33363c;
}

@media (max-width: 576px) {
  .supplements__slide-subtitle {
    position: relative;
    z-index: 10;
    font-size: 16px;
    text-align: left;
    padding-right: 100px;
  }
}

.supplements__slide.animate .supplements__slide-title,
.supplements__slide.animate .supplements__slide-subtitle {
  -webkit-animation: show 1.8s forwards;
          animation: show 1.8s forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.supplements__slide.animate .supplements__slide-icon {
  -webkit-animation: show 1.8s forwards;
          animation: show 1.8s forwards;
}

.supplements__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 56px 40px 0;
  border-radius: 56px;
  background-color: #fafafa;
}

@media (max-width: 1023px) {
  .supplements__phone {
    padding: 24px 20px 0;
    border-radius: 24px;
  }
}

.supplements__phone-wrap {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.supplements__phone-image {
  display: block;
  max-width: 100%;
  width: 510px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  visibility: hidden;
  will-change: visibility height;
}

@media (max-width: 576px) {
  .supplements__phone-image {
    width: 340px;
  }
}

.supplements__phone.animate .supplements__phone-image {
  -webkit-animation: open 0.8s forwards;
          animation: open 0.8s forwards;
}

.reviews {
  padding: 80px 0;
}

@media (max-width: 1023px) {
  .reviews {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .reviews {
    padding: 40px 0;
  }
}

.reviews .container {
  max-width: 1632px;
}

.reviews__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  margin: 0 auto 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 162%;
  color: #33363c;
  border-radius: 50px;
  background-color: #f9ecdb;
}

.reviews__title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 56px;
  line-height: 120%;
  color: #33363c;
  text-align: center;
}

@media (max-width: 1023px) {
  .reviews__title {
    font-size: 48px;
  }
}

@media (max-width: 576px) {
  .reviews__title {
    font-size: 32px;
  }
}

.reviews__stars {
  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: 0 0 40px;
}

.reviews__stars-image {
  display: block;
  width: 48px;
  opacity: 0;
  will-change: opacity transform;
}

.reviews__stars.animate .reviews__stars-image {
  -webkit-animation: star-show 0.6s forwards;
          animation: star-show 0.6s forwards;
  -webkit-animation-delay: calc(0.1s * var(--i));
          animation-delay: calc(0.1s * var(--i));
}

.reviews .swiper {
  overflow: visible;
}

@media (max-width: 1023px) {
  .reviews .swiper {
    overflow: hidden;
    margin: 0 -16px;
    padding: 0 16px;
  }
}

@media (min-width: 1024px) {
  .reviews .swiper > .swiper-wrapper {
    -webkit-transform: none !important;
            transform: none !important;
  }
}

@media (max-width: 1023px) {
  .reviews .swiper > .swiper-wrapper > .swiper-slide {
    height: auto;
  }
}

.reviews .swiper > .swiper-wrapper > .swiper-slide:nth-child(2) {
  margin-top: 92px;
}

@media (max-width: 1023px) {
  .reviews .swiper > .swiper-wrapper > .swiper-slide:nth-child(2) {
    margin-top: 0;
  }
}

.reviews__review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  min-height: 476px;
  padding: 56px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fafafa;
  border-radius: 56px;
  height: 100%;
}

@media (max-width: 1400px) {
  .reviews__review {
    padding: 24px;
    border-radius: 24px;
  }
}

@media (max-width: 1023px) {
  .reviews__review {
    min-height: 320px;
  }
}

@media (max-width: 576px) {
  .reviews__review {
    min-height: auto;
    padding: 16px;
    border-radius: 16px;
  }
}

.reviews__review-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-weight: 600;
  font-size: 24px;
  color: #33363c;
  opacity: 0;
  will-change: opacity;
}

@media (max-width: 1023px) {
  .reviews__review-text {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .reviews__review-text {
    font-size: 16px;
  }
}

.reviews__review-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  opacity: 0;
  will-change: opacity;
}

.reviews__review-user-avatar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 4px;
  border: 4px solid #cccccc;
  border-radius: 80px;
}

@media (max-width: 576px) {
  .reviews__review-user-avatar {
    padding: 3px;
    border-width: 3px;
  }
}

.reviews__review-user-avatar_first {
  border-color: #d6694c;
}

.reviews__review-user-avatar_second {
  border-color: #bdbe51;
}

.reviews__review-user-avatar_third {
  border-color: #82d1a6;
}

.reviews__review-user-avatar-image {
  display: block;
  max-width: 100%;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 576px) {
  .reviews__review-user-avatar-image {
    width: 40px;
    height: 40px;
  }
}

.reviews__review-user-name {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #000;
}

@media (max-width: 1023px) {
  .reviews__review-user-name {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .reviews__review-user-name {
    font-size: 16px;
  }
}

.reviews__review.animate .reviews__review-text {
  -webkit-animation: show 1.8s forwards;
          animation: show 1.8s forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.reviews__review.animate .reviews__review-user {
  -webkit-animation: show 1.8s forwards;
          animation: show 1.8s forwards;
}

.callback {
  background-color: #fcf7f0;
}

.callback__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 56px;
  padding: 80px 0;
}

@media (max-width: 1023px) {
  .callback__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .callback__content {
    padding: 40px 0;
  }
}

.callback__chat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 582px;
          flex: 1 1 582px;
}

@media (max-width: 1023px) {
  .callback__chat {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    width: 100%;
  }
}

.callback__chat-msg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.callback__chat-msg-left {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.callback__chat-msg-right {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.callback__chat-msg-dark {
  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;
  height: 1lh;
  background: #1185ea;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}

.callback__chat-msg-name {
  font-size: 18;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 8px;
}

.callback__chat-msg-avatar {
  width: 80px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite;
}

.callback__chat-msg-avatar:first-child {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
  -webkit-animation-duration: 2.8s;
          animation-duration: 2.8s;
}

@media (max-width: 576px) {
  .callback__chat-msg-avatar {
    width: 56px;
  }
}

.callback__chat-dots {
  width: 64px;
}

.callback__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 642px;
          flex: 1 1 642px;
}

@media (max-width: 1023px) {
  .callback__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}

.callback__info-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 162%;
  color: #ffdca6;
  border-radius: 50px;
  background-color: #d6694c;
}

.callback__info-title {
  margin: 0 0 32px;
  font-weight: 700;
  font-size: 56px;
  line-height: 120%;
  color: #33363c;
}

@media (max-width: 1023px) {
  .callback__info-title {
    font-size: 48px;
  }
}

@media (max-width: 576px) {
  .callback__info-title {
    font-size: 32px;
  }
}

.callback__info-form {
  position: relative;
}

.callback__info-form-input {
  display: inline-block;
  width: 100%;
  padding: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 190px;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: #949494;
  border: none;
  border-radius: 40px;
}

@media (max-width: 576px) {
  .callback__info-form-input {
    padding: 16px 24px;
    padding-right: 170px;
    font-size: 16px;
    line-height: 164%;
  }
}

.callback__info-form-button {
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  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;
  padding: 8px 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 700;
  font-size: 16px;
  line-height: 162%;
  color: #fff;
  border: none;
  border-radius: 40px;
  background-color: #df9358;
  -webkit-transition: background-color ease-in-out 0.2s;
  transition: background-color ease-in-out 0.2s;
  cursor: pointer;
}

@media (max-width: 576px) {
  .callback__info-form-button {
    padding: 8px 20px;
    font-size: 16px;
  }
}

.callback__info-form-button:hover {
  background-color: #cd7f43;
}

.callback__info-form-button:active {
  background-color: #cd7b3c;
}

.callback__landscape {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.callback__landscape-image {
  width: 100%;
}

.needs {
  padding: 80px 0;
}

@media (max-width: 1023px) {
  .needs {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .needs {
    padding: 40px 0;
  }
}

.needs__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 162%;
  color: #33363c;
  border-radius: 50px;
  background-color: #f9ecdb;
}

@media (max-width: 576px) {
  .needs__tag {
    margin: 0 auto 16px;
  }
}

.needs__title {
  max-width: 700px;
  margin: 0 0 80px;
  font-weight: 700;
  font-size: 56px;
  line-height: 120%;
  color: #33363c;
}

@media (max-width: 1023px) {
  .needs__title {
    margin-bottom: 60px;
    font-size: 48px;
  }
}

@media (max-width: 576px) {
  .needs__title {
    margin-bottom: 40px;
    font-size: 32px;
    text-align: center;
  }
}

.needs__slider > .swiper {
  overflow: visible;
}

@media (max-width: 1023px) {
  .needs__slider > .swiper {
    overflow: hidden;
    margin: 0 -16px;
    padding: 0 16px;
  }
}

.needs__slider > .swiper > .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}

@media (min-width: 1024px) {
  .needs__slider > .swiper > .swiper-wrapper {
    -webkit-transform: none !important;
            transform: none !important;
  }
}

@media (max-width: 1023px) {
  .needs__slider > .swiper > .swiper-wrapper {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 0;
  }
}

.needs__slider > .swiper > .swiper-wrapper > .swiper-slide {
  height: auto;
}

@media (min-width: 1024px) {
  .needs__slider > .swiper > .swiper-wrapper > .swiper-slide:nth-child(2), .needs__slider > .swiper > .swiper-wrapper > .swiper-slide:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(43.4%);
            flex: 0 0 calc(43.4%);
    max-width: calc(43.4%);
  }
}

@media (min-width: 1024px) and (max-width: 1023px) {
  .needs__slider > .swiper > .swiper-wrapper > .swiper-slide:nth-child(2), .needs__slider > .swiper > .swiper-wrapper > .swiper-slide:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .needs__slider > .swiper > .swiper-wrapper > .swiper-slide:nth-child(1), .needs__slider > .swiper > .swiper-wrapper > .swiper-slide:nth-child(4) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 43.4% - 24px);
            flex: 0 0 calc(100% - 43.4% - 24px);
    max-width: calc(100% - 43.4% - 24px);
  }
}

@media (min-width: 1024px) and (max-width: 1023px) {
  .needs__slider > .swiper > .swiper-wrapper > .swiper-slide:nth-child(1), .needs__slider > .swiper > .swiper-wrapper > .swiper-slide:nth-child(4) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: none;
  }
}

.needs__slide {
  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%;
  padding: 56px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  border-radius: 56px;
  background-color: #ffeacb;
}

@media (max-width: 1023px) {
  .needs__slide {
    padding: 32px;
    border-radius: 32px;
  }
}

@media (max-width: 576px) {
  .needs__slide {
    padding: 24px 16px;
    border-radius: 24px;
  }
}

.needs__slide-title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  color: #33363c;
  opacity: 0;
  will-change: opacity transform;
}

@media (max-width: 1023px) {
  .needs__slide-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .needs__slide-title {
    font-size: 28px;
  }
}

.needs__slide-subtitle {
  max-width: 400px;
  margin: 0 auto 56px;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  color: #33363c;
  opacity: 0;
  will-change: opacity transform;
}

@media (max-width: 1023px) {
  .needs__slide-subtitle {
    margin: 0 auto 32px;
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .needs__slide-subtitle {
    margin: 0 auto 16px;
    font-size: 16px;
  }
}

.needs__slide-figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.needs__slide-figure-image {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  will-change: opacity transform;
}

.needs__slide-figure-dialog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-bottom: 74px;
}

.needs__slide-figure-dialog-msg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-item-align: end;
      align-self: flex-end;
  gap: 24px;
}

.needs__slide-figure-dialog-msg-analysis {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  justify-self: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #919191;
  height: 26px;
}

.needs__slide-figure-dialog-msg-analysis-dots {
  width: 64px;
}

.needs__slide-figure-dialog-msg-logo {
  width: 80px;
}

.needs__slide-figure-dialog-msg-text {
  opacity: 0;
  will-change: opacity;
}

.needs__slide-figure-dialog-msg-text span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  visibility: hidden;
  height: 0;
  will-change: visibility width height;
}

@media (max-width: 1024px) {
  .needs__slide-figure-dialog-msg-text-desktop {
    display: none;
  }
}

.needs__slide-figure-dialog-msg-text-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .needs__slide-figure-dialog-msg-text-mobile {
    display: block;
  }
}

.needs__slide-figure-dialog-msg-left {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

@media (max-width: 576px) {
  .needs__slide-figure-dialog {
    margin-bottom: 10px;
  }
}

@media (max-width: 1023px) {
  .needs__slide-figure-dialog-msg {
    gap: 16px;
  }
  .needs__slide-figure-dialog-msg-logo {
    width: 60px;
  }
}

.needs__slide_first {
  background-color: #ececfb;
}

.needs__slide_first .needs__slide-figure {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
}

.needs__slide_second {
  background-color: #f1d5b7;
}

.needs__slide_second .needs__slide-figure {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 0 -56px;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .needs__slide_second .needs__slide-figure {
    margin: 0 -32px;
  }
}

@media (max-width: 576px) {
  .needs__slide_second .needs__slide-figure {
    margin: 0 -24px;
  }
}

.needs__slide_third {
  padding-bottom: 0;
  background-color: #bdbe51;
}

.needs__slide_third .needs__slide-title,
.needs__slide_third .needs__slide-subtitle {
  color: #ffffff;
}

.needs__slide_third .needs__slide-subtitle {
  margin: 0 auto;
}

.needs__slide_third .needs__slide-figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: -56px -56px 0;
}

@media (max-width: 1023px) {
  .needs__slide_third .needs__slide-figure {
    margin: -32px -32px 0;
  }
}

@media (max-width: 576px) {
  .needs__slide_third .needs__slide-figure {
    margin: -24px -24px 0;
  }
}

.needs__slide_fourth {
  padding-bottom: 0;
  background-color: #fd706c;
}

.needs__slide_fourth .needs__slide-title,
.needs__slide_fourth .needs__slide-subtitle {
  color: #ffffff;
}

.needs__slide_fourth .needs__slide-figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 0 -56px;
}

@media (max-width: 1023px) {
  .needs__slide_fourth .needs__slide-figure {
    margin: 0 -32px;
  }
}

@media (max-width: 576px) {
  .needs__slide_fourth .needs__slide-figure {
    margin: 0 -24px;
  }
}

.needs__slide.animate .needs__slide-title,
.needs__slide.animate .needs__slide-subtitle {
  -webkit-animation: show 1.8s forwards;
          animation: show 1.8s forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.needs__slide.animate .needs__slide-figure-dialog-msg-right .needs__slide-figure-dialog-msg-text {
  -webkit-animation: show 0.5s forwards;
          animation: show 0.5s forwards;
}

.needs__slide.animate .needs__slide-figure-dialog-msg-right .needs__slide-figure-dialog-msg-text span {
  -webkit-animation: typing calc(var(--n) * 0.05s) steps(var(--n)) forwards, caret calc(var(--n) * 0.05s) steps(var(--n));
          animation: typing calc(var(--n) * 0.05s) steps(var(--n)) forwards, caret calc(var(--n) * 0.05s) steps(var(--n));
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.needs__slide.animate .needs__slide-figure-dialog-msg-left .needs__slide-figure-dialog-msg-text {
  width: 9rem;
  will-change: width;
  -webkit-animation: show 0.5s forwards 2s, msg-open 0.5s forwards 4s;
          animation: show 0.5s forwards 2s, msg-open 0.5s forwards 4s;
}

@media (max-width: 576px) {
  .needs__slide.animate .needs__slide-figure-dialog-msg-left .needs__slide-figure-dialog-msg-text {
    width: auto;
  }
}

.needs__slide.animate .needs__slide-figure-dialog-msg-left .needs__slide-figure-dialog-msg-text span {
  -webkit-animation: typing calc(var(--n) * 0.05s) steps(var(--n)) forwards, caret calc(var(--l) * 0.05s);
          animation: typing calc(var(--n) * 0.05s) steps(var(--n)) forwards, caret calc(var(--l) * 0.05s);
  -webkit-animation-delay: calc(4s + calc(var(--i) * 0.05s));
          animation-delay: calc(4s + calc(var(--i) * 0.05s));
}

.needs__slide.animate .needs__slide-figure-dialog-msg-left .needs__slide-figure-dialog-msg-analysis {
  animation: show 0.5s reverse forwards;
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

.needs__slide.animate .needs__slide-figure-image {
  -webkit-animation: show 1.8s forwards;
          animation: show 1.8s forwards;
}

.needs__slide.animate .needs__items {
  -webkit-animation: show 1.8s forwards;
          animation: show 1.8s forwards;
}

.needs__items {
  width: 100%;
  opacity: 0;
  will-change: opacity transform;
}

.needs__items > .swiper {
  overflow: visible;
  pointer-events: none;
}

@media (width: 1024px) {
  .needs__items > .swiper {
    pointer-events: all;
  }
}

@media (min-width: 1025px) {
  .needs__items > .swiper.blocker-done {
    pointer-events: all;
  }
}

.needs__items > .swiper > .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

@media (min-width: 1024px) {
  .needs__items > .swiper > .swiper-wrapper {
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
  }
}

.needs__items > .swiper > .swiper-wrapper > .swiper-slide {
  height: auto;
}

.needs__items__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 24px;
  color: #303030;
  padding: 16px;
  background: #ffffff;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.needs__items__slide-title {
  margin: 0 8px 36px;
  font-weight: 700;
  font-size: 22px;
  line-height: 130%;
}

.needs__items__slide-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-bottom: 8px;
}

.needs__items__slide-data-image {
  height: 92px;
  width: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  float: left;
  margin-top: 10px;
}

.needs__items__slide-data-name {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
}

.needs__items__slide-data-text {
  font-size: 16px;
  line-height: 150%;
}

.needs__items__slide-data-text-bold {
  font-weight: 700;
}

.needs__items__slide-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 8px;
  background: #f4f4f4;
  border-radius: 24px;
  font-size: 12px;
  line-height: 130%;
  font-weight: 700;
  gap: 8px;
}

.needs__items__slide-info-chip {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  padding: 4px 12px;
  background: #abe1b5;
  border-radius: 24px;
  margin: 4px;
}

.needs__items__slide-info-chip-icon {
  width: 16px;
}

@media (max-width: 1023px) {
  .needs__items__slide {
    border-radius: 16px;
    padding: 10px;
  }
  .needs__items__slide-title {
    margin: 0 4px 24px;
    font-size: 14px;
  }
  .needs__items__slide-data {
    gap: 8px;
    margin-bottom: 5px;
  }
  .needs__items__slide-data-image {
    height: 60px;
    width: 52px;
    margin-top: 6px;
  }
  .needs__items__slide-data-name {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 14px;
  }
  .needs__items__slide-data-text {
    font-size: 10px;
  }
  .needs__items__slide-info {
    padding: 5px;
    border-radius: 16px;
    font-size: 8px;
    gap: 4px;
  }
  .needs__items__slide-info-chip {
    gap: 2px;
    padding: 2px 8px;
    border-radius: 16px;
    margin: 2px;
  }
  .needs__items__slide-info-chip-icon {
    width: 16px;
  }
}

.wellness {
  padding: 80px 0;
}

@media (max-width: 1023px) {
  .wellness {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .wellness {
    padding: 40px 0;
  }
}

.wellness__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 162%;
  color: #33363c;
  border-radius: 50px;
  background-color: #f9ecdb;
}

@media (max-width: 576px) {
  .wellness__tag {
    margin: 0 auto 16px;
  }
}

.wellness__title {
  max-width: 800px;
  margin: 0 0 80px;
  font-weight: 700;
  font-size: 56px;
  line-height: 120%;
  color: #33363c;
}

@media (max-width: 1023px) {
  .wellness__title {
    margin-bottom: 60px;
    font-size: 48px;
  }
}

@media (max-width: 576px) {
  .wellness__title {
    margin-bottom: 40px;
    font-size: 32px;
    text-align: center;
  }
}

.wellness__slider .swiper {
  overflow: visible;
}

@media (max-width: 1023px) {
  .wellness__slider .swiper {
    overflow: hidden;
    margin: 0 -16px;
    padding: 0 16px;
  }
}

.wellness__slider .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}

@media (min-width: 1024px) {
  .wellness__slider .swiper-wrapper {
    -webkit-transform: none !important;
            transform: none !important;
  }
}

@media (max-width: 1023px) {
  .wellness__slider .swiper-wrapper {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 0;
  }
}

.wellness__slider .swiper-slide {
  height: auto;
}

@media (min-width: 1024px) {
  .wellness__slider .swiper-slide:nth-child(1), .wellness__slider .swiper-slide:nth-child(4) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(43.4%);
            flex: 0 0 calc(43.4%);
  }
}

@media (min-width: 1024px) and (max-width: 1023px) {
  .wellness__slider .swiper-slide:nth-child(1), .wellness__slider .swiper-slide:nth-child(4) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

@media (min-width: 1024px) {
  .wellness__slider .swiper-slide:nth-child(2), .wellness__slider .swiper-slide:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 43.4% - 24px);
            flex: 0 0 calc(100% - 43.4% - 24px);
  }
}

@media (min-width: 1024px) and (max-width: 1023px) {
  .wellness__slider .swiper-slide:nth-child(2), .wellness__slider .swiper-slide:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

.wellness__slide {
  height: 100%;
  padding: 56px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 56px;
  background-color: #ffeacb;
}

@media (max-width: 1023px) {
  .wellness__slide {
    padding: 32px;
    border-radius: 32px;
  }
}

@media (max-width: 576px) {
  .wellness__slide {
    padding: 24px 16px;
    border-radius: 24px;
  }
}

.wellness__slide-title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 40px;
  color: #33363c;
  will-change: opacity;
  opacity: 0;
}

@media (max-width: 1023px) {
  .wellness__slide-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .wellness__slide-title {
    font-size: 28px;
  }
}

.wellness__slide-subtitle {
  margin: 0 0 56px;
  font-weight: 500;
  font-size: 24px;
  color: #33363c;
  will-change: opacity;
  opacity: 0;
}

@media (max-width: 1023px) {
  .wellness__slide-subtitle {
    margin: 0 0 32px;
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .wellness__slide-subtitle {
    margin: 0 0 16px;
    font-size: 16px;
  }
}

.wellness__slide-figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wellness__slide-figure-image {
  display: block;
  max-width: 100%;
  height: auto;
  will-change: opacity;
  opacity: 0;
}

@media (max-width: 576px) {
  .wellness__slide-figure-image {
    max-height: 210px;
  }
}

.wellness__slide.animate .wellness__slide-title,
.wellness__slide.animate .wellness__slide-subtitle {
  -webkit-animation: show 1.8s forwards;
          animation: show 1.8s forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.wellness__slide.animate .wellness__slide-figure-image {
  -webkit-animation: show 1.8s forwards;
          animation: show 1.8s forwards;
}

.wellness__slide_first {
  background-color: #ffeacb;
}

.wellness__slide_second {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: #ececfb;
}

.wellness__slide_second .wellness__slide-subtitle {
  margin-bottom: 0;
}

.wellness__slide_second .wellness__slide-figure {
  margin-bottom: 56px;
}

@media (max-width: 1023px) {
  .wellness__slide_second .wellness__slide-figure {
    margin: 0 0 32px;
  }
}

@media (max-width: 576px) {
  .wellness__slide_second .wellness__slide-figure {
    margin: 0 0 16px;
  }
}

.wellness__slide_third {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: #eaeed3;
}

.wellness__slide_third .wellness__slide-subtitle {
  margin-bottom: 0;
}

.wellness__slide_third .wellness__slide-figure {
  margin-bottom: 56px;
}

@media (max-width: 1023px) {
  .wellness__slide_third .wellness__slide-figure {
    margin: 0 0 32px;
  }
}

@media (max-width: 576px) {
  .wellness__slide_third .wellness__slide-figure {
    margin: 0 0 16px;
  }
}

.wellness__slide_fourth {
  background-color: #ffd9d8;
}

.info-page {
  padding: 80px 0;
}

@media (max-width: 576px) {
  .info-page {
    padding: 40px 0;
  }
}

.info-page h2 {
  margin: 0 0 40px;
  font-weight: 700;
  font-size: 56px;
  line-height: 120%;
  color: #33363c;
}

.info-page h3 {
  margin: 40px 0 16px;
  font-weight: 700;
  font-size: 32px;
  color: #33363c;
}

.info-page h4 {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 16px;
  color: #33363c;
}

.info-page p {
  margin: 0 0 16px;
  font-weight: 500;
  font-size: 16px;
  color: #33363c;
}

.info-page p b {
  font-weight: 700;
}

.info-page ul {
  margin: 0 0 16px;
  padding-left: 24px;
  font-weight: 500;
  font-size: 16px;
  color: #33363c;
}

.info-page__disclaimer {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #e4e4e4;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 18px 56px;
  padding: 40px 0;
}

@media (max-width: 768px) {
  .footer__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.footer__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 440px;
          flex: 0 1 440px;
}

@media (max-width: 768px) {
  .footer__info {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}

.footer__info-logo {
  position: relative;
  z-index: 10;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.footer__info-logo-link {
  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;
  gap: 6px;
}

.footer__info-logo-link-image {
  display: block;
  max-width: 100%;
  width: 60px;
  height: auto;
}

.footer__info-logo-link-text {
  display: inline-block;
  font-weight: 900;
  font-size: 24px;
  line-height: 108%;
  color: #303030;
}

.footer__info-text {
  margin: 24px 0 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 162%;
  color: #303030;
}

.footer__details {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 376px;
          flex: 0 0 376px;
}

@media (max-width: 768px) {
  .footer__details {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}

.footer__details-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.footer__details-social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: inherit;
      align-content: inherit;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 40px;
  background-color: #fcf7f0;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 70px;
          flex: 0 1 70px;
}

@media (max-width: 576px) {
  .footer__details-social-link {
    -ms-flex-preferred-size: calc(100% / 4);
        flex-basis: calc(100% / 4);
  }
}

.footer__details-social-link-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: auto;
}

.footer__details-title {
  padding: 56px 0 24px;
  font-weight: 700;
  font-size: 24px;
  line-height: 108%;
  color: #303030;
}

.footer__details-download {
  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;
  gap: 16px;
}

.footer__details-download-link {
  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-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 2 - 16px / 2);
          flex: 0 0 calc(100% / 2 - 16px / 2);
  padding: 4px 16px;
  min-height: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  border-radius: 50px;
  background-color: #000000;
}

@media (max-width: 576px) {
  .footer__details-download-link {
    min-height: 50px;
  }
}

.footer__details-download-link-image {
  display: block;
  max-width: 100%;
  width: 148px;
  height: auto;
}

.footer__copiright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid #d0d0d0;
}

@media (max-width: 768px) {
  .footer__copiright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
}

.footer__copiright-item {
  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;
  gap: 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: #303030;
}

.footer__copiright-item:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.footer__copiright-item-link {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: inherit;
}
