.app_page {
  overflow-x: hidden;
}

.app_section {
  margin-top: 5rem;
}
@media (min-width: 768px) {
  .app_section {
    margin-top: 7rem;
  }
}
@media (min-width: 1200px) {
  .app_section {
    margin-top: 9rem;
  }
}

/* app_block start */
.app_block {
  padding-top: 18rem;
  border-radius: 20px;
}
@media (min-width: 991px) {
  .app_block {
    padding-top: 20rem;
  }
}

.app_block_wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
}
@media (min-width: 991px) {
  .app_block_wrapper {
    flex-direction: row;
    gap: 3rem;
  }
}

.app_block_wrapper_text,
.app_block_wrapper_mockups {
  width: 100%;
}
@media (min-width: 991px) {
  .app_block_wrapper_text,
  .app_block_wrapper_mockups {
    width: 50%;
  }
}

.app_block_wrapper_text_title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 100%;
  letter-spacing: 0;
}
@media (min-width: 991px) {
  .app_block_wrapper_text_title {
    font-size: 4.2rem;
  }
}

.app_block_wrapper_text_image {
  min-width: 90%;
  margin-top: 1.1rem;
}
@media (min-width: 768px) {
  .app_block_wrapper_text_image {
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
  }
}

.app_block_wrapper_text_description {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 130%;
  margin-top: 3rem;
  color: rgba(38, 38, 38, 0.5019607843);
}
@media (min-width: 991px) {
  .app_block_wrapper_text_description {
    font-size: 2rem;
    margin-top: 3rem;
  }
}

.app_block_wrapper_mockups {
  position: relative;
  width: 100%;
  /* max-width: 500px; */
  margin: 0 auto;
  /* padding: 40px 0; */
  display: flex;
  justify-content: center;
  align-items: center;
  height: -webkit-fill-available;
  z-index: 0;
}

/* декоративный квадрат за блоком с мокапами */
.app_block_wrapper_mockups::before {
  content: "";
  position: absolute;
  width: 65rem;
  height: 40.2rem;
  background-color: rgba(155, 108, 230, 0.15);;
  border-radius: 4rem;
  top: 10%;
  right: -3rem;
  z-index: -1;
}

.app_block_wrapper_mockups_inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: -webkit-fill-available;
}

.phone {
  position: absolute;
  border-radius: 40px;
  overflow: hidden;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease;
}

.phone--back {
  width: 28rem;
  height: 56rem;
  /* background: #f0e6ff; */
  z-index: 1;
  /* transform: rotate(-5deg) scale(0.9); */
  left: 20rem;
  top: 10rem;
}

.phone--front {
  width: 30rem;
  height: 60rem;
  /* background: #fff; */
  z-index: 2;
  /* transform: rotate(3deg); */
  right: 4rem;
  top: 0rem;
}

@media (max-width: 1000px) {
  .app_block_wrapper_mockups {
    justify-content: center;
    align-items: center;
  }

  .app_block_wrapper_mockups::before {
    width: 95%;
    /* max-width: 46rem; */
    height: 36rem;
    left: 50%;
    right: auto;
    top: 4rem;
    transform: translateX(-50%);
  }

  .app_block_wrapper_mockups_inner {
    /* max-width: 30rem; */
    margin: 0 auto;
    height: 40rem;
  }

  .phone {
    position: relative;
  }

  .phone--back {
    width: 22rem;
    height: 44rem;
    /* right: -63rem; */
    top: 9rem;
    left: -10rem;
    margin: 0 auto;
  }

  .phone--front {
    width: 22rem;
    height: 44rem;
    /* right: -6rem; */
    top: -44rem;
    left: 10rem;
    margin: 0 auto;
  }
}

@media (max-width: 550px) {

  .app_block_wrapper_mockups{
    height: 50rem;
  }


  .app_block_wrapper_mockups::before {
    width: 100%;
    height: 90%;
    top: 10.3%;
  }

  .app_block_wrapper_mockups_inner {
    height: 50rem;
  }

  .phone{
    border-radius: 0;
  }

  .phone--back {
    width: 55%;
    height: 83%;
    top: 38%;
    left: -18%;
  }

  .phone--front {
    width: 58%;
    height: 90%;
    top: -61.6%;
    left: 16%;
  }
}

.phone-screen {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  border-radius: inherit;
}


.app_block_wrapper_buttons {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}

.app_block_wrapper_buttons_item {
  max-width: 100%;

  svg {
    max-width: 100%;
  }
}

.app_block_wrapper_users {
  display: flex;
  align-items: center;
  gap: 15px;
}

.app_block_wrapper_users_avatars {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  position: relative;
}

.app_block_wrapper_users_avatars img,
.app_block_wrapper_users_avatars_count {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 50%;
  margin-left: -1.65rem;
  object-fit: cover;
  border: 0.3rem solid #fff;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .app_block_wrapper_users_avatars img,
  .app_block_wrapper_users_avatars_count {
    margin-left: -3rem;
    width: 6rem;
    height: 6rem;
  }
}

.app_block_wrapper_users_avatars_count {
  display: grid;
  place-content: center;
  background: linear-gradient(90deg, #9b6ce6, #7eccda);
  border: none;
}

.app_block_wrapper_users_avatars_count p {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 0.2rem;
}
@media (min-width: 991px) {
  .app_block_wrapper_users_avatars_count p {
    font-size: 1.8rem;
  }
}

.app_block_wrapper_users_avatars img:first-child {
  margin-left: 0;
}

.app_block_wrapper_users_avatars_text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: 0;
  margin-left: 0.5rem;
}
@media (min-width: 991px) {
  .app_block_wrapper_users_avatars_text {
    font-size: 1.8rem;
    margin-left: 1rem;
  }
}

/* app_block end */
/* statistic_block start*/
.statistic_block {
  display: flex;
  gap: 2rem;
  margin-top: 8rem;
  justify-content: center;
}
@media (max-width: 991px) {
  .statistic_block {
    flex-direction: column;
    margin-top: 4rem;
  }
}
@media (min-width: 991px) {
  .statistic_block {
    gap: 4.5rem;
    /* margin-top: 15rem; */
    flex-direction: row;
  }
}

.statistic_block_image {
  border-radius: 4.6rem;
  min-width: 17rem;
  max-width: 100%;
  min-height: 45rem;
  object-fit: cover;
  object-position: right center;
}
@media (max-width: 768px) {
  .statistic_block_image {
    height: 22rem;
    min-height: 5rem;
    object-position: top center;
  }
}
@media (min-width: 768px) {
  .statistic_block_image {
    height: 32rem;
    object-position: top center;
  }
}
@media (min-width: 991px) {
  .statistic_block_image {
    height: 68rem;
    object-fit: cover;
    object-position: right center;
    margin-left: 0;
  }
}

.statistic_block_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.7rem;
}
@media (min-width: 768px) {
  .statistic_block_content {
    flex-direction: row;
  }
}
@media (min-width: 991px) {
  .statistic_block_content {
    flex-direction: column;
    gap: 3rem;
  }
}

.statistic_block_content_stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-shrink: 0;
}
@media (max-width: 786px) {
  .statistic_block_content_stats {
    flex-direction: row;
    place-items: center;
    padding-left: 3rem;
    position: relative;
  }

  .statistic_block_content_stats::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 4rem 0;
    background-color: #F9FBFD;
    z-index: -1;
    border-radius: 2rem;
  }
}
@media (min-width: 768px) {
  .statistic_block_content_stats {
    flex-direction: column;
    flex-shrink: 1;
    place-items: center;
  }
}
@media (min-width: 991px) {
  .statistic_block_content_stats {
    flex-direction: row;
    gap: 1rem;
  }
}

.statistic_block_content_stats_title {
  font-weight: 400;
  font-size: 7rem;
  letter-spacing: 0;
}

.statistic_block_content_stats_title {
  padding: 0 !important;
}
@media (max-width: 768px) {
  .statistic_block_content_stats_title  {
    font-size: 7rem;
  }
}
@media (min-width: 768px) {
  .statistic_block_content_stats_title {
    font-size: 9.6rem;
    line-height: 13.2rem;
  }
}

@media (max-width: 768px) {
  .statistic_block_content_stats_title {
    height: 51% !important;
  }
}

.statistic_block_content_stats:last-child .statistic_block_content_stats_title {
  font-size: 4rem;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .statistic_block_content_stats:last-child .statistic_block_content_stats_title {
    font-size: 5rem;
  }
}
@media (min-width: 768px) {
  .statistic_block_content_stats:last-child .statistic_block_content_stats_title {
    font-size: 7rem;
  }
}
@media (min-width: 991px) {
  .statistic_block_content_stats:last-child .statistic_block_content_stats_title {
    font-size: 9rem;
  }
}

.statistic_block_content_stats_text {
  width: 100%;
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 2.7rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #c4c4c4;
}
@media (max-width: 768px) {
  .statistic_block_content_stats_text {
    place-self: center;
    font-size: 2rem;
    padding-left: 2rem;
  }
}
@media (min-width: 768px) {
  .statistic_block_content_stats_text {
    padding-left: 2rem;
  }
}
@media (min-width: 991px) {
  .statistic_block_content_stats_text {
    width: 50%;
    place-self: center;
  }
}

/* statistic_block end*/
/* main_page_block start */
.main_page_block {
  margin-top: 7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.app_page_block_header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.6rem;
  z-index: 2;
}
@media (min-width: 991px) {
  .app_page_block_header {
    gap: 2rem;
  }
}

.app_page_block_header.dots {
  background: url(/app/images/main_page_block/dots.png) no-repeat;
  background-size: cover;
}
@media (min-width: 991px) {
  .app_page_block_header.dots {
    min-height: 30rem;
  }
}

.app_page_block_header_number {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 100%;
  letter-spacing: 0;
  color: #333333;
  text-align: center;
}
@media (min-width: 991px) {
  .app_page_block_header_number {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}

.app_page_block_header_title {
  font-weight: 400;
  font-size: 3rem;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 991px) {
  .app_page_block_header_title {
    font-size: 8.4rem;
  }
}

.app_page_block_header_description {
  max-width: 65rem;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.4rem;
  letter-spacing: 0;
  text-align: center;
  color: #707070;
}

.app_page_block_header_description--sub {
  text-align: center;
  max-width: 62rem;
}

.main_page_block_content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 4rem;
  gap: 2.5rem;
}
@media (min-width: 991px) {
  .main_page_block_content {
    gap: 5rem;
    flex-direction: row;
  }
}

.main_page_block_content_list_wrapper {
  display: contents;
}
@media (min-width: 991px) {
  .main_page_block_content_list_wrapper {
    display: flex;
    flex-direction: column;
  }

  .main-desc {
    align-self: flex-start;
    text-align: left;
    padding-left: 16rem;
  }
}

.main_page_block_content_list_wrapper_list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 25rem;
}
@media (min-width: 991px) {
  .main_page_block_content_list_wrapper_list {
    gap: 3.5rem;
  }
}
@media (min-width: 1200px) {
  .main_page_block_content_list_wrapper_list {
    width: 30rem;
  }
}

.main_page_block_content_image {
  position: relative;
  max-width: 32rem;
  flex-shrink: 0;
  position: relative;
}

.plus_button {
  position: absolute;
  z-index: 5;
  border-radius: 50%;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg%20width='17'%20height='17'%20viewBox='0%200%2017%2017'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M15.7857%209.71429H9.71429V15.7857C9.71429%2016.1078%209.58635%2016.4166%209.35863%2016.6443C9.13091%2016.8721%208.82205%2017%208.5%2017C8.17795%2017%207.86909%2016.8721%207.64137%2016.6443C7.41365%2016.4166%207.28571%2016.1078%207.28571%2015.7857V9.71429H1.21429C0.892237%209.71429%200.583379%209.58635%200.355656%209.35863C0.127934%209.13091%200%208.82205%200%208.5C0%208.17795%200.127934%207.86909%200.355656%207.64137C0.583379%207.41365%200.892237%207.28572%201.21429%207.28572H7.28571V1.21429C7.28571%200.892237%207.41365%200.583378%207.64137%200.355656C7.86909%200.127933%208.17795%200%208.5%200C8.82205%200%209.13091%200.127933%209.35863%200.355656C9.58635%200.583378%209.71429%200.892237%209.71429%201.21429V7.28572H15.7857C16.1078%207.28572%2016.4166%207.41365%2016.6443%207.64137C16.8721%207.86909%2017%208.17795%2017%208.5C17%208.82205%2016.8721%209.13091%2016.6443%209.35863C16.4166%209.58635%2016.1078%209.71429%2015.7857%209.71429Z'%20fill='white'/%3e%3cpath%20d='M15.7857%209.71429H9.71429V15.7857C9.71429%2016.1078%209.58635%2016.4166%209.35863%2016.6443C9.13091%2016.8721%208.82205%2017%208.5%2017C8.17795%2017%207.86909%2016.8721%207.64137%2016.6443C7.41365%2016.4166%207.28571%2016.1078%207.28571%2015.7857V9.71429H1.21429C0.892237%209.71429%200.583379%209.58635%200.355656%209.35863C0.127934%209.13091%200%208.82205%200%208.5C0%208.17795%200.127934%207.86909%200.355656%207.64137C0.583379%207.41365%200.892237%207.28572%201.21429%207.28572H7.28571V1.21429C7.28571%200.892237%207.41365%200.583378%207.64137%200.355656C7.86909%200.127933%208.17795%200%208.5%200C8.82205%200%209.13091%200.127933%209.35863%200.355656C9.58635%200.583378%209.71429%200.892237%209.71429%201.21429V7.28572H15.7857C16.1078%207.28572%2016.4166%207.41365%2016.6443%207.64137C16.8721%207.86909%2017%208.17795%2017%208.5C17%208.82205%2016.8721%209.13091%2016.6443%209.35863C16.4166%209.58635%2016.1078%209.71429%2015.7857%209.71429Z'%20fill='url(%23paint0_linear_11299_8360)'/%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_11299_8360'%20x1='0'%20y1='8.5'%20x2='22.5938'%20y2='8.50222'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%239B6CE6'/%3e%3cstop%20offset='1'%20stop-color='%2393EFFF'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e");
  background-size: 1.7rem;
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: 2px 2px 4px 0px rgba(112, 112, 112, 0.6705882353);
  width: 4.45rem;
  height: 4.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.plus_button:before, .plus_button:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  will-change: transform, opacity;
  transition: transform 0.15s ease-out, opacity 0.25s ease-out;
  border-radius: 50%;
  border: 0.5rem solid #9b6ce6;
  opacity: 0;
}
.plus_button:before {
  width: 8rem;
  height: 8rem;
}
.plus_button:after {
  width: 13rem;
  height: 13rem;
}
.plus_button span {
  position: absolute;
  z-index: 1;
  font-size: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  pointer-events: none;
}
.plus_button span::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 22rem;
  height: 22rem;
  transform: translate(-50%, -50%) scale(0);
  will-change: transform, opacity;
  transition: transform 0.15s ease-out, opacity 0.25s ease-out;
  border-radius: 50%;
  border: 0.5rem solid #9b6ce6;
  opacity: 0;
}
.plus_button.active {
  background-image: url("data:image/svg+xml,%3csvg%20width='17'%20height='17'%20viewBox='0%200%2017%2017'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M15.7857%209.71429H9.71429V15.7857C9.71429%2016.1078%209.58635%2016.4166%209.35863%2016.6443C9.13091%2016.8721%208.82205%2017%208.5%2017C8.17795%2017%207.86909%2016.8721%207.64137%2016.6443C7.41365%2016.4166%207.28571%2016.1078%207.28571%2015.7857V9.71429H1.21429C0.892237%209.71429%200.583379%209.58635%200.355656%209.35863C0.127934%209.13091%200%208.82205%200%208.5C0%208.17795%200.127934%207.86909%200.355656%207.64137C0.583379%207.41365%200.892237%207.28572%201.21429%207.28572H7.28571V1.21429C7.28571%200.892237%207.41365%200.583378%207.64137%200.355656C7.86909%200.127933%208.17795%200%208.5%200C8.82205%200%209.13091%200.127933%209.35863%200.355656C9.58635%200.583378%209.71429%200.892237%209.71429%201.21429V7.28572H15.7857C16.1078%207.28572%2016.4166%207.41365%2016.6443%207.64137C16.8721%207.86909%2017%208.17795%2017%208.5C17%208.82205%2016.8721%209.13091%2016.6443%209.35863C16.4166%209.58635%2016.1078%209.71429%2015.7857%209.71429Z'%20fill='white'/%3e%3c/svg%3e"), linear-gradient(90.01deg, #9B6CE6 0%, #93EFFF 132.9%);
  background-size: 1.7rem, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center center;
}
.plus_button.active:before, .plus_button.active:after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.25;
  will-change: transform, opacity;
  transition: transform 0.15s ease-out, opacity 0.25s ease-out;
}
.plus_button.active:before {
  animation: plus-button-animation 1s linear 0.15s infinite;
}
.plus_button.active:after {
  animation: plus-button-animation 1s linear 0.15s infinite;
}
.plus_button.active > span::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.25;
  will-change: transform, opacity;
  transition: transform 0.15s ease-out, opacity 0.25s ease-out;
  animation: plus-button-animation 1s linear 0.15s infinite;
}
.plus_button[data-step="1"] {
  top: 21%;
  left: 23%;
}
.plus_button[data-step="2"] {
  top: 51%;
  right: 27%;
}
.plus_button[data-step="3"] {
  top: 59%;
  right: 14%;
}
.plus_button[data-step="4"] {
  top: 71.5%;
  left: 38%;
}
.plus_button[data-step="5"] {
  top: 71%;
  right: -14%;
}
@media (max-width: 990px) {
  .plus_button {
    display: none;
  }
}

@keyframes plus-button-animation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.25;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0;
  }
}
.main_page_block_content_image img {
  width: 100%;
  aspect-ratio: 1/2;
}

/* .img_ctr {
  width: 95% !important;
} */

.main_page_block_content_image:first-child::before {
  content: "";
  background: linear-gradient(146.31deg, #9a76e8 21.11%, #95cdf9 50%, #9b76e8 78.89%);
  width: 10rem;
  height: 10rem;
  top: 0;
  left: -5rem;
  position: absolute;
  filter: blur(5rem);
}

.main_page_block_content_image:last-child::after {
  content: "";
  background: url(/app/images/main_page_block/list_new3.svg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 20%;
  left: 8.5%;
  bottom: 43%;
  position: absolute;
  z-index: 2;
}
@media (min-width: 350px) {
  .main_page_block_content_image:last-child::after {
    width: 47rem;
    height: 14rem;
    left: 24px;
    bottom: 77px;
  }
}

.main_page_block_content_list span {
  display: block;
}

.main_page_block_content_list_wrapper_list {
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 2.7rem;
  letter-spacing: 0;
  text-align: center;
}
@media (min-width: 991px) {
  .main_page_block_content_list_wrapper_list {
    margin-top: 3rem;
  }
}
.main_page_block_content_list_wrapper_list li {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.main_page_block_content_list_wrapper_list li:hover {
  transform: scale(1.05);
}
.main_page_block_content_list_wrapper_list li.active {
  font-weight: 700;
}
@media (max-width: 990px) {
  .main_page_block_content_list_wrapper_list {
    display: none;
  }
}

.main_page_block_content_list_wrapper_list:first-of-type {
  order: -1;
}
@media (min-width: 991px) {
  .main_page_block_content_list_wrapper_list:first-of-type {
    order: 0;
  }
}

/* main_page_block end */
/* block_blue_background start */
.block_blue_background {
  background: #f1f4fb;
  border-radius: 5rem;
  padding: 6rem 2rem;
  margin: 0 auto;
}
@media (min-width: 991px) {
  .block_blue_background {
    max-width: 100%;
    padding: 6rem 3.5rem;
  }
}
@media (min-width: 1200px) {
  .block_blue_background {
    max-width: 90%;
  }
}

/* block_blue_background end */
/* day_plan_block start */
.day_plan_block {
  margin: 0 auto;
  max-width: 116rem;
  margin-top: -12rem;
}
.day_plan_block_content {
  margin-top: 2.3rem;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 4rem;
  padding: 3rem 2.4rem;
  border-radius: 4rem;
}

.day_plan_block_content::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 0;
  right: 0; /* вместо width: 100% — стабильнее на iOS (нет лишнего отступа справа) */
  height: 50%;
  border-radius: 4rem;
  background-color: #F1F4FB;
  z-index: -1;
}

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

.day_plan_block_mobile_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -5rem;
}

.day_plan_inner_text {
  display: flex;
  position: relative;
  align-items: center;
  max-width: 32rem;
  padding-left: 2rem;
  font-size: 2rem;
}

@media (min-width: 360px) {
  .day_plan_block_content {
    gap: 0;
  }

  .day_plan_title_wrapper {
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .day_plan_title {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .day_plan_desc {
    text-align: center;
  }
}

.day_plan_block_content_mobile_image {
  max-width: 33rem;
  aspect-ratio: 1 / 2;
}

.day_plan_block_content_mobile_image--sub {
  max-width: 25rem;
}

@media (min-width: 1200px) {
  .day_plan_block_content {
    max-width: 108rem;
    margin: 0 auto;
    align-items: center;
  }

  .day_plan_desc {
    text-align: left;
  }
  .day_plan_title_wrapper {
    position: relative;
    top: 12rem;
    left: -17rem;
  }
}

@media (max-width: 767px) {
  .day_plan_block {
    margin-bottom: 10rem;
    margin-top: -3rem;
  }
  .day_plan_block_content {
    flex-direction: column;
    gap: 4rem;
    position: relative;
    width: 90%;
    margin: 0 auto;
  }

  .day_plan_block_content::before {
    height: 90%;
    top: 15rem;
  }
  .day_plan_block_mobile_wrapper {
    order: 1;
    top: 0;
    width: 32rem;
    max-width: 100%; /* не вылезает за контейнер на iOS */
    min-width: 0; /* flex-ребёнок может сжиматься в iOS Safari */
    margin: 0 auto;
  }
  .day_plan_block_card_wrapper {
    order: 3;
  }
  .day_plan_inner_text {
    max-width: 90%;
    text-align: left;
    order: 2;
    place-self: center;
    font-size: 2rem;
  }

  .day_plan_block_content_mobile_image {
    display: block; /* убирает inline-gap и съезг влево на iOS */
    max-width: 100%;
    height: auto;
  }

  .day_plan_block_content_mobile_image--sub{
    margin-left: 0;
    max-width: 80%;
  }

  .day_plan_title_wrapper {
    text-align: center;
  }

  .day_plan_title {
    display: inline-block;
    text-align: center;
    margin-inline: auto;
  }

  .day_plan_desc {
    text-align: center;
  }
}

@media (min-width: 767px) and (max-width: 1200px) {
  .day_plan_block {
    margin-bottom: -30rem;
  }
  .day_plan_block_content {
    margin: 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
    place-content: center;
    gap: 4rem;
  }

  .day_plan_title_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 5rem;
  }

  .day_plan_block_content::before {
    display: none;
  }

  .day_plan_title,
  .day_plan_desc {
    text-align: center;
  }

  .day_plan_inner_text {
    position: relative;
    z-index: 2;
    justify-self: center;
    max-width: 80%;
    font-size: 2rem;
    order: 3;
    flex-basis: 100%;
    padding: 5rem 6rem;
    font-size: 3rem;
    top: -30rem;
  }
  .day_plan_block_card_wrapper {
    order: 2;
  }
  .day_plan_block_mobile_wrapper {
    order: 1;
  }
  .day_plan_inner_text::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #F1F4FB;
    border-radius: 4rem;
    z-index: -1;
    left: -2rem;
  }

  .day_plan_block_card_wrapper {
    position: relative;
    bottom: 12rem;
  }

  .day_plan_block_mobile_wrapper {
    justify-content: center;
  }

  .day_plan_block_content_mobile_image {
    max-width: 32rem;
  }

  .day_plan_block_content_mobile_image--sub {
    max-width: 28rem;
  }
}
/* day_plan_block end */
/* marked_check_list start */
.marked_check_list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.marked_check_list_item {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  margin-left: 3rem;
  width: 100%;
  min-height: 2rem;
}

.marked_check_list_item_content {
  width: 100%;
}

.marked_check_list_item_content p {
  background: linear-gradient(90deg, #9b6ce6, #7eccda);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 120%;
  padding-right: 2rem;
}
@media (min-width: 991px) {
  .marked_check_list_item_content p {
    font-size: 1.6rem;
  }
}

.marked_check_list_item_content span {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 2.7rem;
  display: block;
  left: -3rem;
  top: 1rem;
  position: relative;
  margin-bottom: 1.5rem;
  color: #a9a9a9;
}
@media (min-width: 991px) {
  .marked_check_list_item_content span {
    font-size: 1.4rem;
  }
}

.marked_check_list_item::before {
  content: "";
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  background-image: url("/app/images/marked_list_image.svg");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: -0.2rem;
  left: -3rem;
}

/* marked_check_list end */
/* wish_card_block start */
.wish_card_block {
  position: relative;
  margin-top: 0;
}
.wish_card_block_content {
  display: grid;
  position: relative;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 0.5fr);
  grid-template-areas: ". live live ." "release wish_list wish_new family" ". travel travel .";
}

.card_live {
  grid-area: live;
  max-width: 80%;
  place-self: center;
}
.card_live_text {
  place-self: center;
  position: relative;
  top: 30rem;
}
.card_release {
  grid-area: release;
  position: relative;
}
.card_release_text {
  justify-self: end;
  position: relative;
  top: 42%;
}
.card_travel {
  position: relative;
  grid-area: travel;
  max-width: 80%;
  place-self: center;
  top: -10rem;
}
.card_travel_text {
  place-self: center;
  position: relative;
  top: 5rem;
}
.card_family {
  grid-area: family;
}
.card_family_text {
  position: relative;
  top: 42%;
}
.mobile_wish_new {
  grid-area: wish_new;
  max-height: 70%;
}
.mobile_wish_list {
  grid-area: wish_list;
  max-height: 70%;
}

.mobile_wish_new img,
.mobile_wish_list img {
  position: relative;
  place-self: center;
  max-height: 100%;
  top: 5rem;
  /* object-fit: cover; */
  aspect-ratio: 1 / 2;
}

.lines {
  position: absolute;
  z-index: -1;
  max-width: 80%;
  max-height: 80%;
  place-self: center;

  picture {
    object-fit: cover;
  }
}
.card_text {
  border: 1px solid #d4a5f0;
  border-radius: 1.5rem;
  padding: 1rem 2rem;
  background-color: #fff;
  text-align: center;
  color: #9e9e9e;
  font-family: sans-serif;
  box-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  max-width: fit-content;
  z-index: 2;
}

@media (max-width: 1024px) {
  .wish_card_block {
    padding-bottom: 10rem;
  }
  .wish_card_block_content {
    grid-template-areas: ". live live ." "release . . family" ". travel travel ." "wish_list wish_list wish_new wish_new";
  }
  .card_live_text {
    top: 20rem;
  }
  .card_release_text {
    left: 5rem;
  }
  .lines {
    max-width: 95%;
    place-self: start;
    top: 6rem;
  }
}
@media (max-width: 768px) {
  .lines {
    display: none;
  }
  .wish_card_block_content {
    grid-template-columns: 1fr;
    grid-template-areas: "live" "family" "wish_list" "wish_new" "release" "travel";
    gap: 4rem;
  }
  .mobile_wish_new,
  .mobile_wish_list {
    height: fit-content;
    max-height: fit-content;
    position: relative;
  }
  .mobile_wish_new img,
  .mobile_wish_list img {
    position: static;
    /* place-self: center; */
    max-height: 90%;
    max-width: 32rem;
    margin: 0 auto;
  }
  .card_text {
    font-size: 2.4rem;
    z-index: auto;
  }
  .card_live {
    position: relative;
    width: 100%;
    max-width: 100%;
  }
  .card_live_text {
    top: 3rem;
    left: 4rem;
    justify-self: left;
    margin-right: auto;
  }
  .card_family {
    position: relative;
  }
  .card_family_text {
    top: 4rem;
    left: -5rem;
    justify-self: right;
    margin-left: auto;
  }
  .card_release {
    position: relative;
  }
  .card_release_text {
    top: 5rem;
    left: -6rem;
    justify-self: center;
    margin: 0 auto;
  }
  .card_travel {
    top: 0;
    position: relative;
    max-width: 100%;
  }
  .card_travel_text {
    position: relative;
    top: 5rem;
    left: -7rem;
    justify-self: right;
    margin-left: auto;
  }
  .card_live::before {
    content: "";
    background: #F1F4FB;
    position: absolute;
    border-radius: 3rem;
    z-index: -1;
    height: 100%;
    width: 100%;
  }
  .card_family::before {
    content: "";
    background: #F1F4FB;
    position: absolute;
    border-radius: 3rem;
    z-index: -1;
    height: 90%;
    width: 100%;
  }
  .card_release::before {
    content: "";
    background: #F1F4FB;
    position: absolute;
    border-radius: 3rem;
    z-index: -1;
    height: 100%;
    width: 100%;
    transform: translate(0, 0);
  }
  .card_travel::before {
    content: "";
    background: #F1F4FB;
    position: absolute;
    border-radius: 3rem;
    z-index: -1;
    height: 100%;
    width: 100%;
  }
  .mobile_wish_list::before {
    content: "";
    background: #F1F4FB;
    position: absolute;
    border-radius: 3rem 3rem 0 0;
    z-index: -1;
    top: 10%;
    height: 100%;
    width: 100%;
  }
  .mobile_wish_new::before {
    content: "";
    background: #F1F4FB;
    position: absolute;
    border-radius: 0 0 3rem 3rem;
    z-index: -1;
    height: 90%;
    width: 100%;
  }
}

/* wish_card_block end */
/* your_targets_block start */
.your_targets_block {
  max-width: 116rem;
  margin: 0 auto;
}
.your_targets_block .app_page_block_header {
  place-items: start;
}
.your_targets_block_content_header {
  display: flex;
  flex-direction: column;
  place-items: start;
  position: relative;
  left: 2rem;
  top: 12rem;
}
.your_targets_block_content {
  display: flex;
  position: relative;
  flex-direction: row;
  gap: 3rem;
  margin: 0 auto;
  justify-items: center;
  overflow: hidden;
}

.your_targets_block_content::before {
  content: "";
  position: absolute;
  top: 10rem;
  width: 100%;
  height: 69%;
  background: #F1F4FB;
  border-radius: 4rem;
  z-index: -1;
}

.your_targets_block_content_text {
  flex: 2;
  position: relative;
  max-width: 45rem;
  margin: 0 auto;
  align-self: center;
  justify-self: center;
  left: 2rem;
  font-size: 2.2rem;
  background: #fff;
  border-radius: 4rem;
  padding: 6rem 4rem;
  line-height: 1;

  :first-child {
    font-weight: 600;
  }
}

.your_targets_block_list {
  flex: 1;
  place-items: end;

  img {
    width: 31rem;
    max-height: 80rem;
    height: 80%;
    object-fit: cover;
    object-position: top center;
    position: relative;
    top: 3rem;
  }
}

.your_targets_block_content_item {
  flex: 1;

  img {
    width: 33rem;
    max-height: 80rem;
    height: 81%;
    object-fit: cover;
    object-position: top center;
    position: relative;
    top: 2rem;
  }
}

@media (max-width: 1024px) {
  .your_targets_block {
    margin-top: 4rem;
  }
  .your_targets_block_content {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 90%;
    margin-top: 4rem;
  }

  .your_targets_block .app_page_block_header {
    place-items: center;
  }

  .your_targets_block_content::before {
    width: 100%;
    height: 75%;
    top: 15rem;
    border-radius: 6rem;
  }

  .your_targets_block_content_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: static;

    :first-child {
      font-size: 5rem;
      font-weight: 500;
    }
  }
  .your_targets_block_list {
    order: 1;
    width: 50%;
    place-items: flex-end;

    img {
      width: 30rem;
      position: static;
    }
  }
  .your_targets_block_content_item {
    order: 1;
    width: 50%;

    img {
      width: 30rem;
      position: static;
    }
  }
  .your_targets_block_content_text {
    order: 2;
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
    top: -15rem;
    margin-right: 4rem;

    :first-child {
      font-size: 4rem;
    }
    :last-child {
      font-size: 3rem;
    }
  }
}

@media (max-width: 767px) {
  .your_targets_block_content {
    flex-direction: column;
  }

  .your_targets_block_content::before {
    width: 100%;
    height: 87%;
    border-radius: 4rem;
    top: 10rem
  }

  .your_targets_block_content_text {
    top: 0;
    max-width: 100%;
    padding: 3rem;
    order: 2;
    width: 90%;

    :first-child {
      font-size: 3rem;
    }
    :last-child {
      font-size: 2rem;
    }
  }

  .your_targets_block_content_item {
    order: 3;
    place-self: center;
    width: 34rem;

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

  .your_targets_block_list {
    order: 1;
    place-self: center;
    width: 32rem;

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

  .your_targets_block_content_header {
    :first-child {
      font-size: 4rem;
    }

    .your_targets_block_header_description {
      font-size: 1.8rem;
      text-align: center;
    }
  }
}

@media (min-width: 991px) {
  .your_targets_block_content {
    margin-top: 5rem;
  }
  .your_targets_block_header_description {
    max-width: 32rem;
    text-align: left;
  }
}

@media (min-width: 991px) {
  .your_targets_block_content_left {
    max-width: 80rem;
    width: 65%;
  }
}

.your_targets_block_content_left_wrapper {
  display: flex;
  gap: 5rem;
  flex-direction: column;
  min-height: 43.5rem;
  background: #fff;
  border-radius: 5rem;
  padding: 3rem;
  overflow: hidden;
}
@media (min-width: 991px) {
  .your_targets_block_content_left_wrapper {
    flex-direction: row;
    padding: 2.5rem 3rem 0;
    align-items: center;
  }
}
@media (min-width: 1280px) {
  .your_targets_block_content_left_wrapper {
    min-height: unset;
    padding: 4.2rem 3rem 0;
  }
}

@media (min-width: 991px) {
  .your_targets_block_content_left_wrapper_image_desktop {
    display: block;
    align-self: stretch !important;
  }
}

.your_targets_block_content_left_wrapper_image_mobile {
  max-width: 32rem;
}

.your_targets_block_content_left_wrapper_image {
  width: auto;
  display: grid;
  place-content: center;
}
@media (min-width: 991px) {
  .your_targets_block_content_left_wrapper_image {
    align-self: stretch;
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .your_targets_block_content_left_wrapper_image {
    position: relative;
    align-self: stretch;
    width: 300px;
    max-width: 300px;
    flex: 0 0 300px;
  }
}
@media (min-width: 1280px) {
  .your_targets_block_content_left_wrapper_image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 300px;
    height: auto;
  }
}

.your_targets_block_content_left_text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.3rem;
  max-width: 100%;
}
@media (min-width: 991px) {
  .your_targets_block_content_left_text {
    margin-top: 6.4rem;
    max-width: 58rem;
  }
}

.your_targets_block_content_left_text p {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.7rem;
}
@media (min-width: 991px) {
  .your_targets_block_content_left_text p {
    font-size: 1.8rem;
  }
}
.your_targets_block_content_left_text p span {
  color: #9b6ce6;
}

.your_targets_block_content_right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.your_targets_block_content_right_title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 100%;
  padding-bottom: 0 !important;
}

.your_targets_block_content_right_img img {
  max-height: 65rem;
}

/* your_targets_block end */
/* gratitude_diary_block start */
.gratitude_diary_block {
  margin-top: 3rem;
}

.gratitude_diary_block_header {
  margin-bottom: 3rem;
}

.gratitude_diary_block_layout {
  display: flex;
  flex-direction: column;
  padding: 4rem 2rem;
  align-items: center;
}
@media (min-width: 991px) {
  .gratitude_diary_block_layout {
    flex-direction: row;
    align-items: flex-start;
    padding: 6rem;
  }
}

.gratitude_diary_block_visual {
  position: relative;
  width: 100%;
  max-width: 42rem;
  min-height: 40rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 991px) {
  .gratitude_diary_block_visual {
    flex: 0 0 auto;
  }
}

.gratitude_diary_block_visual_gradient {
  position: absolute;
  width: 32rem;
  height: 32rem;
  background-image: url(/app/images/gratitude_diary_block/gradient_background.png);
  background-size: cover;
  background-repeat: no-repeat;
  filter: drop-shadow(0 1.6rem 4.8rem rgba(155, 108, 230, 0.35));
  border-radius: 50%;
  inset: auto;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 20%);
  z-index: 0;
}
@media (min-width: 991px) {
  .gratitude_diary_block_visual_gradient {
    width: 42rem;
    height: 42rem;
    transform: translate(-40%, 25%);
  }
}

.gratitude_diary_block_visual_phone {
  width: 32rem;
  max-width: 33rem;
  position: relative;
  z-index: 1;
}

.gratitude_diary_block_visual_phone img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2rem 4rem rgba(33, 19, 77, 0.35));
}

.gratitude_diary_block_details {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.gratitude_diary_block_intro_title {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 1.4rem;
}
@media (min-width: 991px) {
  .gratitude_diary_block_intro_title {
    font-size: 3rem;
  }
}

.gratitude_diary_block_intro_description {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #7d869c;
  max-width: 60rem;
}

.gratitude_diary_benefits {
  list-style: none;
  margin: -2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.gratitude_diary_benefits_item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 3rem;
  border-radius: 3.5rem;
  background: #f1f4fb;
  box-shadow: 0 1.5rem 3.5rem rgba(155, 108, 230, 0.12);
}
@media (min-width: 991px) {
  .gratitude_diary_benefits_item {
    padding: 3rem 4.5rem;
  }
}

.gratitude_diary_benefits_item_icon {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  background: linear-gradient(110deg, #dcb6ff 0%, #9b6ce6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  position: relative;
}

.gratitude_diary_benefits_item_icon::after {
  content: "";
  width: 1rem;
  height: 2rem;
  border-right: 0.3rem solid #fff;
  border-bottom: 0.3rem solid #fff;
  transform: rotate(45deg);
  margin-top: -0.3rem;
}

.gratitude_diary_benefits_item_text p {
  font-size: 1.9rem;
  line-height: 2.8rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
@media (min-width: 991px) {
  .gratitude_diary_benefits_item_text p {
    font-size: 2.1rem;
  }
}

.gratitude_diary_benefits_item_text span {
  font-size: 1.5rem;
  line-height: 2.4rem;
  color: #8f95a8;
  display: block;
}

.gratitude_diary_results {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem 0rem;
  padding-bottom: 3rem;
}

/* phones: images full width (full viewport width) */
@media (max-width: 767px) {
  .gratitude_diary_results .gratitude_diary_block_visual {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

/* tablets: list in 2 columns, two images side-by-side */
@media (min-width: 768px) and (max-width: 990px) {
  .gratitude_diary_results {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    gap: 2.4rem;
    align-items: start;
  }

  .gratitude_diary_results_title {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .gratitude_diary_results_list {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-auto-flow: column;
    justify-items: stretch;
  }

  .gratitude_diary_results .gratitude_diary_block_visual:first-of-type {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .gratitude_diary_results .gratitude_diary_block_visual:last-of-type {
    grid-column: 3 / 5;
    grid-row: 3;
  }
}

@media (min-width: 991px) {
  .gratitude_diary_results {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    grid-template-rows: minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
  }
  .gratitude_diary_results_list {
    grid-column: 2;
    grid-row: 1;
    height: 100%;
  }
  .gratitude_diary_results .gratitude_diary_block_visual:first-of-type {
    grid-column: 1;
    grid-row: 1;
    align-self: stretch;
  }
  .gratitude_diary_results .gratitude_diary_block_visual:last-of-type {
    grid-column: 3;
    grid-row: 1;
    align-self: stretch;
  }
}

.gratitude_diary_results_title {
  font-size: 2.9rem;
  line-height: 1.3;
  text-align: center;
  padding: 5rem 0 !important;
}
@media (min-width: 991px) {
  .gratitude_diary_results_title {
    font-size: 3.5rem;
    max-width: 60rem;
  }
}

.gratitude_diary_results_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) and (max-width: 990px) {
  .gratitude_diary_results_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    justify-items: stretch;
  }

  .gratitude_diary_results_item {
    width: 100%;
  }
}

@media (min-width: 991px) {
  .gratitude_diary_results_list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 991px) {
  .gratitude_diary_results .gratitude_diary_block_visual {
    height: 100%;
    min-height: auto;
    align-items: stretch;
  }

  .gratitude_diary_results .gratitude_diary_block_visual_phone {
    width: 100%;
    max-width: none;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .gratitude_diary_results .gratitude_diary_block_visual_phone img {
    width: auto;
    height: 100%;
    max-height: none;
    object-fit: fill;
    aspect-ratio: 1 / 2;
  }
}

.gratitude_diary_results_item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 2rem 2.8rem;
  border-radius: 3rem;
  border: 0.2rem solid #e0daff;
  background: rgba(241, 244, 251, 0.4);
}

.gratitude_diary_results_item_emoji {
  font-size: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 4rem;
}

.gratitude_diary_results_item_emoji--1 {
  content: url(/app/images/gratitude_diary_block/calm_emoji.png);
}

.gratitude_diary_results_item_emoji--2 {
  content: url(/app/images/gratitude_diary_block/cloud_emoji.png);
}

.gratitude_diary_results_item_emoji--3 {
  content: url(/app/images/gratitude_diary_block/tree_emoji.png);
}

.gratitude_diary_results_item_emoji--4 {
  content: url(/app/images/gratitude_diary_block/hand_emoji.png);
}

.gratitude_diary_results_item_emoji--5 {
  content: url(/app/images/gratitude_diary_block/heart_emoji.png);
}

.gratitude_diary_results_item_emoji--6 {
  content: url(/app/images/gratitude_diary_block/sun_emoji.png);
}

.gratitude_diary_results_item p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin: 0;
  color: #8168c6;
  font-weight: 500;
}

/* phones wrapper for diary visuals */
.gratitude_diary_phones_wrapper {
  display: contents;
}

@media (max-width: 767px) {
  .gratitude_diary_phones_wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .gratitude_diary_phones_wrapper::before {
    content: "";
    position: absolute;
    inset: 7rem 0;
    border-radius: 3.5rem;
    background: #F1F4FB;
    z-index: 0;
    opacity: 80%;
  }

  .gratitude_diary_phones_wrapper .gratitude_diary_block_visual {
    position: relative;
    z-index: 1;
    padding-bottom: 1rem;
  }
}

.gratitude_diary_intro {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 4rem;
}
@media (min-width: 991px) {
  .gratitude_diary_intro {
    flex-direction: row;
    gap: 8rem;
  }
}

.gratitude_diary_intro_item {
  position: relative;
  padding-left: 3rem;
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #8e94a6;
}
@media (min-width: 991px) {
  .gratitude_diary_intro_item {
    flex: 1;
    padding-left: 4.5rem;
    font-size: 2rem;
    line-height: 2.8rem;
  }
}

.gratitude_diary_intro_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.3rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #e0daff 0%, rgba(224, 218, 255, 0) 100%);
}

/* gratitude_diary_block end */
/* notice_block start */
.notice_block {
  height: max-content;
  padding-bottom: 2rem;
  margin-bottom: 5rem;
  max-width: 116rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .notice_block {
    max-height: 85rem;
    padding-bottom: 0;
    margin-top: -3rem;
  }
}

.notice_block_content {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 0rem;
  margin: 3rem 0;
  position: relative;
}
@media (min-width: 768px) {
  .notice_block_content {
    flex-direction: row;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 3rem;
    gap: 6rem;

    &::before {
      content: '';
      top: 35%;
      left: 0;
      width: 100%;
      height: 65%;
      position: absolute;
      background-color: #F1F4FB;
      z-index: -1;
      border-radius: 4rem;
      align-self: flex-end;
    }
  }
}

.notice_block_header {
  max-width: 90%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .notice_block_header {
    position: relative;
    align-items: start;
    max-width: 40%;
    left: 10rem;
    top: 13rem;
    margin: 0;

    :first-child {
      padding: 0;
    }

    :last-child {
      text-align: left;
    }
  }
}

.notice_block_content_image {
  position: relative;
  max-width: 30rem;
}
@media (min-width: 991px) {
  .notice_block_content_image {
    max-width: 36rem;
  }
}
@media (max-width: 768px) {
  .notice_block_content_image {
    max-width: 32rem;
    top: 0.2rem;
    z-index: -1;
  }
}

.notice_block_content_image::before {
  content: "";
  width: 50rem;
  height: 50rem;
  background-image: url(/app/images/gratitude_diary_block/gradient_background.png);
  background-size: cover;
  position: absolute;
  z-index: 0;
  top: -30rem;
  left: -20rem;
}

.notice_block_content_image::after {
  content: "";
  width: 40rem;
  height: 40rem;
  background-image: url(/app/images/gratitude_diary_block/gradient_background.png);
  background-size: cover;
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: -20rem;
}

.notice_block_content_image img {
  width: 100%;
}

.notice_block_content_text {
  width: 90%;
  padding: 3rem;
  background: #F1F4FB;
  border-radius: 4rem;
  align-content: center;
  height: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .notice_block_content_text {
    margin-top: 0;
    width: 48rem;
    font-size: 1.8rem;
    top: 8rem;
    background: #fff;
  }
}
@media (min-width: 991px) {
  .notice_block_content_text {
    font-size: 2.3rem;
  }
}

/* notice_block end */
/* training_courses_block start */
.training_courses_block {
  max-width: 116rem;
  margin: 0 auto;
  position: relative;
  margin-top: 5rem;
}

.training_courses_block_header_description,
.training_courses_block_header_title {
  margin: 0 auto;
}

.training_courses_block_content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin: 0 auto;
  width: 95%;
  padding: 5rem;
  margin-top: 2rem;
}

.training_courses_block_text_wrapper {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.training_courses_block_image_wrapper {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.training_courses_block_img {
  aspect-ratio: 1 / 2;
  width: 32rem;
  height: auto;
  margin: 0 auto;
}

.training_courses_block_content::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 90%;
  top: 0;
  left: 0;
  background: #F1F4FB;
  border-radius: 4rem;
  z-index: -1;
}

@media (min-width: 768px) {
  .training_courses_block_header {
    max-width: 90%;
    margin: 0 auto;
  }

  .training_courses_block_header_description,
  .training_courses_block_header_title {
    margin: 0;
    text-align: left;
  }

  .training_courses_block_image_wrapper {
    flex-direction: row;
  }
}

@media (min-width: 1023px) {
  .training_courses_block_header_title {
    max-width: 60rem;
  }
  .training_courses_block_header_description {
    max-width: 40rem;
  }

  .training_courses_block_content {
    flex-direction: row;
    padding: 3rem 5.5rem;
    width: 100%;
  }

  .training_courses_block_content::before {
    height: 35rem;
  }

  .training_courses_block_text_wrapper {
    width: 38rem;
  }

  .training_courses_block_image_wrapper {
    gap: 4rem;
    position: relative;
    top: -20rem;
  }
}
/* training_courses_block end */
/* ai_assistance_block start */
.ai_assistance_block {
  max-width: 116rem;
  margin: 0 auto;
  max-height: max-content;
  margin-bottom: 20rem;
  margin-top: -10rem;
}

.ai_assistance_container {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  position: relative;
}

.ai_assistance_container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 70%;
  top: 10rem;
  border-radius: 3rem;
  background: #F1F4FB;
  z-index: -1;
}

.ai_assistance_header {
  place-content: center;
  position: relative;
  top: 4rem;
  left: 2rem;
  
  .app_page_block_header_description {
    text-align: left;
  }
  .ai_assistance_header_title {
    text-align: left;
  }
}

.ai_assistance_content {
  grid-area: content;
  padding: 5rem;
  place-content: center;
  justify-self: center;

  .ai_assistance_text_title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2rem;
  }
  .ai_assistance_text_description {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 40rem;
  }
}

.ai_assistance_img_chat {
  position: relative;
  top: 15rem;
}

.ai_assistance_avatars_wrapper {
  margin-bottom: 3rem;

  img {
    max-width: 20rem;
  }
}

.ai_assistance_img_wrapper {
  max-width: fit-content;

  img {
    max-width: 100%;
    height: 65.8rem;
    aspect-ratio: 1 / 1.9;
  }
}

@media (max-width: 991px) {
  .ai_assistance_block {
    margin-bottom: 0;
    margin-top: 4rem;
  }
  .ai_assistance_container {
    flex-wrap: wrap;
    max-width: 90%;
    margin: 0 auto;
    place-content: center;
  }
  .ai_assistance_container::before {
    width: 100%;
    height: 90%;
    top: 0;
    border-radius: 4rem;
  }

  .ai_assistance_header {
    position: static;
    place-items: center;
    margin: 0 auto;
    text-align: center;

    .ai_assistance_header_title {
      font-size: 6rem;
      margin: 0 auto;
    }
  }
  .ai_assistance_img_chat{ 
    position: static;
    order: 3;
    
    img {
      margin: 0 auto;
      width: 32rem;
    }
  }
  .ai_assistance_img_phone {
    order: 2;

    img {
      margin: 0 auto;
      width: 32rem;
    }
  }
  .ai_assistance_content {
    position: relative;
    order: 1;
    flex-basis: 100%;
    max-width: 90%;

    .ai_assistance_text_description {
      max-width: 100%;
    }
  }
  .ai_assistance_avatars_wrapper {
    position: absolute;
    left: 40rem;
  }
}

@media (max-width: 767px) {
  .ai_assistance_block {
    margin-bottom: 0;
  }
  .ai_assistance_container::before {
    display: none;
  }

  .ai_assistance_container {
    flex-direction: column;
    place-items: center;
    gap: 3.5rem;
  }
  .ai_assistance_content {
    order: 1;
    max-width: 100%;
    padding: 5rem;
    margin-top: 4rem;
  }
  .ai_assistance_text_title {
    font-size: 4rem;
  }
  .ai_assistance_text_description {
    font-size: 3rem;
  }

  .ai_assistance_content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 3rem;
    background: #F1F4FB;
    z-index: -1;
  }

  .ai_assistance_avatars_wrapper {
    position: static;
    transform: none;
    margin-bottom: 2rem;
  }

  .ai_assistance_header {
    .ai_assistance_header_title {
      font-size: 3rem;
    }
    .ai_assistance_header_description {
      font-size: 2rem;
      text-align: center;
    }
  }
  .ai_assistance_img_wrapper {
    height: auto;
  }
  .ai_assistance_img_chat {
    order: 2;
    position: relative;
    top: 0;
    width: 100%;
    max-width: 100%;
    place-items: center;
  }

  .ai_assistance_img_chat::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 5rem;
    left: 0;
    border-radius: 3rem 3rem 0 0;
    background: #F1F4FB;
    z-index: -1;
  }

  .ai_assistance_img_phone {
    order: 3;
    position: relative;
    width: 100%;
    max-width: 100%;
    place-items: center;
  }
  .ai_assistance_img_phone::before {
    content: "";
    position: absolute;
    place-self: center;
    width: 100%;
    height: 100%;
    border-radius: 0 0 3rem 3rem;
    background: #F1F4FB;
    z-index: -1;
    top: -5rem;
  }
}
/* ai_assistance_block end */
/* why_work_block start */
.why_work_block { 
  max-width: 116rem;
  margin: 0 auto;
  position: relative;
}

.why_work_block_header {
  margin-top: 10rem;
  margin-bottom: 15rem;
}
@media (min-width: 768px) {
  .why_work_block_header {
    max-width: 90%;
    margin-inline: auto;
    justify-items: center;
  }
}
@media (min-width: 991px) {
  .why_work_block_header {
    margin-bottom: 5rem;
  }
}

.text-mobile-desc {
  position: absolute;
  top: -100%;
  left: calc(50% - 9rem);
  margin: 0 auto;
  font-size: 1.8rem;
}
@media (min-width: 991px) {
  .text-mobile-desc {
    position: static;
    font-size: 2.4rem;
  }
}

.why_work_block_content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .why_work_block_content {
    gap: 4rem;
  }
}
@media (min-width: 991px) {
  .why_work_block_content {
    flex-direction: row;
    gap: 2rem;
  }
}

.why_work_block_content_list {
  display: flex;
  gap: 5rem;
  flex-direction: column;
  margin-top: 3rem;
}
@media (min-width: 991px) {
  .why_work_block_content_list {
    margin-top: 0;
    flex: 2;
    gap: 2rem;
  }
}

.why_work_block_content_item {
  position: relative;
  display: flex;
  flex-direction: row;
  max-width: 90%;
  margin: 0 auto;
  background-color: #F9FBFD;
  border-radius: 3rem;
  padding: 5rem 1rem;
  width: 100%;
  text-align: center;

  p {
    font-size: 1.8rem;
    margin: 0 auto;
  }

  img {
    max-width: 9rem;
  }
}

@media (min-width: 768px) {
  .why_work_block_content_item {
    max-width: 50%;
  }
}
@media (min-width: 991px) {
  .why_work_block_content_item {
    max-width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 4rem;
    gap: 3rem;
    
    p {
      font-size: 2.5rem;
      text-align: left;
    }
  }
}

.why_work_block_content_brain_icon,
.why_work_block_content_notebook_icon,
.why_work_block_content_heart_icon {
  position: absolute;
  top: -5rem;
  left: calc(50% - 4.5rem);
}

@media (min-width: 991px) {
  .why_work_block_content_brain_icon,
  .why_work_block_content_notebook_icon,
  .why_work_block_content_heart_icon {
    position: static;
  }
}

.why_work_block_content_mascots {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  
  &::before {
    content: "";
    position: absolute;
    background-color: #F9FBFD;
    top: 20%;
    left: 0;
    height: 80%;
    width: 100%;
    /* max-width: 95%; */
    border-radius: 3rem;
    z-index: -1;
  }
}

@media (min-width: 768px) {
  .why_work_block_content_mascots {
    flex-wrap: nowrap;
    justify-items: center;

    &::before {
      display: none;
    }
  }
}
@media (min-width: 991px) {
  .why_work_block_content_mascots {
    flex-wrap: wrap;
    justify-content: center;
    flex: 2;
    top: -6rem;

    &::before {
      display: block;
      top: 10%;
      height: 90%;
    }
  }
}

.why_work_block_content_mascots_lion {
  order: 1;
  max-width: 50%;
  height: 50%;
  align-self: flex-end;
}
@media (min-width: 768px) {
  .why_work_block_content_mascots_lion {
    width: 15rem;
    position: absolute;
    z-index: 2;
    height: auto;
  }
}
@media (min-width: 991px) {
  .why_work_block_content_mascots_lion {
    position: relative;
    top: 0;
    width: 38%;
    z-index: 3;
  }
}

.why_work_block_content_mascots_rabbit {
  order: 2;
  max-width: 50%;
  height: 50%;
}
@media (min-width: 768px) {
  .why_work_block_content_mascots_rabbit {
    width: 15rem;
    order: 3;
    position: absolute;
    top: -110%;
    z-index: 2;
    height: auto;
    left: calc(100% - 15rem);
  }
}
@media (min-width: 991px) {
  .why_work_block_content_mascots_rabbit {
    position: relative;
    top: 0;
    left: 0rem;
    width: 38%;
    transform: none;
  }
}

.why_work_block_content_mascots_text {
  order: 3;
  flex-basis: 100%;
  background-color: #F1F4FB;
  border-radius: 3rem;
  padding: 4rem 3rem;
}
@media (min-width: 768px) {
  .why_work_block_content_mascots_text {
    order: 2;
    padding-inline: 15rem;
    margin: 0 auto;
  }
}
@media (min-width: 991px) {
  .why_work_block_content_mascots_text {
    order: 3;
    padding: 4rem 5rem;
    margin: 0;
    flex-basis: auto;
    font-size: 2rem;
    align-content: center;
  }
}

/* why_work_block end */
/* function_block start */
.function_block {
  max-width: 116rem;
  margin: 0 auto;
  margin-top: 5rem;
}
.function_block_header_title {
  font-size: 3rem;
  text-transform: none;
}
.function_block_content {
  max-width: 90%;
  margin: 0 auto;
  margin-top: 5rem;
}
.function_block_list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.function_block_item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #F1F4FB;
  border-radius: 3.5rem;
  padding: 4rem;
}
.function_block_item_text {
  font-size: 1.8rem;
}
.function_block_item_title {
  font-size: 1.8rem;
}

@media (min-width: 768px) {
  .function_block_item_title {
    font-size: 2rem;
  }
}

@media (min-width: 991px) {
  .function_block_header_title {
    font-size: 5.4rem;
  }
  .function_block_content {
    max-width: 100%;
  }
  .function_block_list {
    flex-direction: row;
    gap: 2rem;
  }
}
/* function_block end */
/* for_whom_block start */
.for_whom_block {
  max-width: 116rem;
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
}
.for_whom_block_header_title {
  font-size: 3rem;
  margin: 0 auto;
  text-transform: none;
}
.for_whom_block_header_desc {
  font-size: 2rem;
  margin: 7rem auto;
  text-align: center;
  max-width: 90%;
}
.for_whom_block_header_desc span {
  font-weight: 600;
}
.for_whom_block_content_images {
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  width: 90%;
  height: 30rem;
}
.for_whom_block_content_images::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #F1F4FB;
  border-radius: 2rem;
  z-index: -1;
}
.for_whom_block_image {
  width: auto;
  position: absolute;
  height: 23rem;
  aspect-ratio: 1 / 2.05;
}
.for_whom_block_main_page_img {
  z-index: 1;
  left: 17%;
  top: -10%;
  /* width: 32%; */
}
.for_whom_block_wish_map_img {
  z-index: 1;
  left: 52%;
  top: -10%;
}
.for_whom_block_day_plan_img {
  z-index: 2;
  left: 2%;
  top: 25%;
  /* width: 30%; */
}
.for_whom_block_ai_assistance_page_img {
  z-index: 2;
  left: 35%;
  top: 32%;
  /* width: 31%; */
}
.for_whom_block_wish_item_img {
  z-index: 2;
  left: 68%;
  top: 25%;
  /* width: 30%; */
}
.for_whom_block_content_text_wrapper {
  margin: 10rem auto;
  margin-bottom: 0;
  max-width: 90%;
}
.for_whom_block_content_text {
  text-align: center;
  font-size: 2rem;
  margin: 0 auto;
}
.for_whom_block_content_text span {
  font-weight: 600;
}
@media (min-width: 600px) {
  .for_whom_block_image {
    height: 30rem;
  }
  .for_whom_block_content_text_wrapper {
    margin-top: 18rem;
  }
  .for_whom_block_image {
    height: 27rem;
  }
  .for_whom_block_day_plan_img {
    top: 29%;
  }
  .for_whom_block_ai_assistance_page_img {
    top: 36%;
  }
  .for_whom_block_wish_item_img {
    top: 29%;
  }
}
@media (min-width: 768px) {
  .for_whom_block_content_text {
    max-width: 59rem;
  }
  .for_whom_block_header_desc {
    max-width: 55rem;
  }
  .for_whom_block_content_images::before {
    display: none;
  }
  .for_whom_block_content_images {
    left: -6%;
    max-width: 110%;
    width: 110%;
    display: flex;
    flex-direction: row;
    gap: 5rem;
  }
  .for_whom_block_image {
    position: relative;
    margin: 0 auto;
    width: 35%;
    height: 37rem;
  }
  .for_whom_block_main_page_img {
    top: 0;
    left: 0;
  }
  .for_whom_block_wish_map_img {
    top: 0;
    left: 0;
  }
  .for_whom_block_day_plan_img {
    top: 10%;
    left: 0;
  }
  .for_whom_block_ai_assistance_page_img {
    top: 20%;
    left: 0;
  }
  .for_whom_block_wish_item_img {
    top: 10%;
    left: 0;
  }
}
@media (min-width: 991px) {
  .for_whom_block_image {
    
    height: 45rem;
    /* width: 17%; */
    /* aspect-ratio: 1 / 1.9; */
  }
  .for_whom_block_content_text_wrapper {
    margin-top: 40rem;
  }
}
/* for_whom_block end */