/***************GLOBAL***************/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "TT Firs Neue", sans-serif;
  color: #1D1D1D;
  background-color: #FFF;
}

.protect {
  width: 100%;
  position: absolute;
  top: 3px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.protect__item {
  font-size: 8px;
  line-height: 10px;
  color: #000;
  opacity: 0.15;
}

.protect__item a {
  color: #000;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}

.main {
  overflow: hidden;
}

.selected-text {
  color: #5B645B;
}

.bold-text {
  font-weight: 600;
}

.brand-name {
  font-style: normal;
  white-space: nowrap;
  font-weight: 600;
  line-height: 160%;
  text-decoration-line: underline;
}

.line-through {
  text-decoration: line-through;
}

/***************GLOBAL***************/
/***************BIG-BUTTON***************/

.big-button {
  display: block;
  padding: 12px 16px;
  border-radius: 50px;
  background-color: transparent;
  color: #1D1D1D;
  border: 1px solid rgba(29, 29, 29, 0.59);
  outline: none;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 19.2px */
  letter-spacing: 0.08px;
  white-space: nowrap;
  text-decoration: none;
  transition: 0.3s ease;
}

.big-button:hover {
  background-color: #5B645B;
  border: 1px solid rgba(29, 29, 29, 0);
  color: #FFF;
  cursor: pointer;
}

.big-button.inverted {
  background-color: #5B645B;
  border: 1px solid rgba(29, 29, 29, 0);
  color: #FFF;
}

/*.big-button.inverted:hover {*/
/*  background-color: transparent;*/
/*  color: #1D1D1D;*/
/*  border: 1px solid rgba(29, 29, 29, 0.59);*/
/*}*/

/***************BIG-BUTTON***************/
/***************HEADER***************/

.header {
  border-bottom: 2px solid #F4F4F4;
  background: rgba(251, 251, 251, 0.90);
  backdrop-filter: blur(20px);
}

.header__container {
  display: flex;
  position: relative;
  padding-block: 20px;
  flex-direction: row;
  justify-content: space-between;
}

.header__logo-container {
  display: flex;
  align-items: center;
  max-width: 296px;
}

.header__logo {
  width: 100%;
}

.header__nav-container {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center;
}

.header__nav-link {
  position: relative;
  color: #404040;
  font-size: 16px;
  font-style: normal;
  z-index: 30;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
  letter-spacing: 0.08px;
  text-decoration: none;
  transition: 0.3s ease;
}

.header__nav-link:before {
  content: "";
  display: block;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: -2px;
  width: 0;
  z-index: -30;
  height: 100%;
  background-color: #5B645B;
  transition: 0.3s ease;
}

.header__nav-link:hover {
  color: #FFF;
}

.header__nav-link:hover:before {
  width: calc(100% + 4px);
}

.header__menu-button-container {
  display: none;
}

/***************HEADER***************/
/***************BOOK***************/

.book {

}

.book__container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  padding-block: 50px;
}

.book__description {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.book__text-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.book__title {
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.76px;
}

.book__subtitle {
  color: #404040;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: 0.1px;
}

.book__buttons-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.book__rate-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.book__rate-text {
  color: #404040;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 30px */
  letter-spacing: 0.1px;
}

.book__rate {
  display: flex;
  flex-direction: row;
  gap: 15px;
  padding: 17px 20px;
  /*align-items: center;*/
  border-radius: 15px;
  background-color: #FAFAFA;
}

.book__rate-title {
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 36px */
  letter-spacing: 0.18px;
}

.book__rate-subtitle {
  color: #404040;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
  letter-spacing: 0.07px;
}

.book__rate-stars, .book__rate-sales {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.book__rate-stars .book__rate-subtitle {
  width: 130px;
}

.book__rate-sales .book__rate-subtitle {
  width: 113px;
}

.book__buttons-container .big-button {
  padding: 24px 32px;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 22px */
  letter-spacing: 0.44px;
}

.book__illustration {
  flex: 1;
  display: flex;
  position: relative;
}

.book__container > .book__rate-container,
.book__container > .book__buttons-container {
  display: none;
}

.book__illustration-base {
  position: relative;
  border-radius: 40px;
  width: 580px;
  background: radial-gradient(217.27% 120.24% at -0.00% 166.60%, #7C9078 0.57%, rgba(158, 180, 122, 0.60) 67.05%, rgba(122, 139, 95, 0.00) 100%), radial-gradient(126.79% 94.63% at 109.19% -8.09%, #7A9177 0%, rgba(128, 148, 116, 0.60) 50.57%, rgba(118, 139, 114, 0.00) 100%), #5B645B;
}

.book__illustration-image-container {
  position: relative;
  border-radius: 40px 0px 0px 40px;
  background-image: url("../images/Book_1-min.png");
  background-repeat: no-repeat;
  background-size: auto 902px;
  background-position: left -255px center;
  height: 852px;
  width: 945px;
}

.book__illustration-star {
  position: absolute;
}

.book__star-1 {
  top: 296px;
  left: 77px;
}

.book__star-2 {
  top: 50px;
  right: 50px;
}

.book__illustration-info {
  display: flex;
  flex-direction: column;
  padding-right: 20px;
  position: absolute;
  right: 40px;
  bottom: 40px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(25px);
}

.book__illustration-info-item {
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding-block: 7px;
  padding-left: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.book__illustration-info-item-text {
  display: block;
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.88px;
  opacity: 0.9;
  max-width: 260px;
}

/***************BOOK***************/
/***************OVERVIEW***************/

.overview {

}

.overview__container {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
  padding-block: 50px;
}

.overview__star {
  position: absolute;
  z-index: -20;
}

.overview__star-1 {
  left: -9%;
  bottom: 13%;
}

.overview__star-2 {
  right: -4%;
  top: 20%;
}

.overview__text-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 980px;
  align-items: center;
  text-align: center;
}

.overview__title {
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.76px;
}

.overview__subtitle {
  color: #404040;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: 0.1px;
}

.overview__topics-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.overview__topics-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.overview__topics-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(91, 100, 91, 0.50);
  padding: 20px;
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(20px);
  max-width: 550px;
}

.overview__topics-top .overview__topics-item:nth-child(1) {
  border-top-left-radius: 20px;
}
.overview__topics-top .overview__topics-item:nth-child(2) {
  border-top-right-radius: 20px;
}
.overview__topics-top .overview__topics-item:nth-child(3) {
  border-bottom-left-radius: 20px;
}
.overview__topics-top .overview__topics-item:nth-child(4) {
  border-bottom-right-radius: 20px;
}
.overview__topics-bottom .overview__topics-item {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.overview__topics-item-title {
  color: #5B645B;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.12px;
}
.overview__topics-item-subtitle {
  color: rgba(29, 29, 29, 0.70);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.8px;
}

/***************OVERVIEW***************/
/***************PLAN***************/

.plan {

}

.plan__container {
  display: flex;
  justify-content: center;
  padding-block: 50px;
  max-width: 980px;
  margin-inline: auto;
}

.plan__inner {
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 30px;
  border-radius: 20px 200px 20px 20px;
  background: linear-gradient(180deg, #9BFA9B 0%, rgba(180, 255, 180, 0.10) 100%);
}

.plan__title {
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.76px;
  max-width: 771px;
}

.plan__list-container {
  display: flex;
  flex-direction: column;
}

.plan__item {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding-block: 20px;
  border-bottom: 1px solid rgba(29, 29, 29, 0.15);
}

.plan__item:last-child {
  border-bottom: none;
}

.plan__item-title-container {
  min-width: 350px;
}

.plan__item-subtitle-container {
  /*width: 550px;*/
}

.plan__item-title {
  color: #5B645B;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.12px;
}

.plan__item-subtitle {
  color: rgba(29, 29, 29, 0.70);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.8px;
}


/***************PLAN***************/
/***************UPGRADES***************/

.upgrades {

}

.upgrades__deco {
  position: absolute;
  z-index: -20;
}

.upgrades__deco-1 {
  width: 401px;
  height: 365px;
  border-radius: 0 463px 463px 0;
  background: #88A784;
  left: 0;
  bottom: 50px;
}

.upgrades__deco-2 {
  width: 306px;
  height: 298px;
  border-radius: 345px 0 0 345px;
  background: #9CFA9C;
  right: 0;
  top: 200px;
}

.upgrades__container {
  display: flex;
  max-width: 980px;
  margin-inline: auto;
  position: relative;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding-block: 50px 100px;
}

.upgrades__text-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.upgrades__title {
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.76px;
}

.upgrades__subtitle {
  color: #404040;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: 0.1px;
}

.upgrades__list-container {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
}

.upgrades__item {
  display: flex;
  flex-direction: row;
  gap: 15px;
  max-width: 580px;
  padding: 20px;
  border-bottom: 1px solid #E2E2E2;
  background-color: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(20px);
}

.upgrades__item-number-container {
  display: flex;
  width: 100%;
  max-width: 39px;
  justify-content: center;
  align-items: center;
}

.upgrades__item-number {
  color: #5B645B;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -2px;
}

.upgrades__item-text {
  color: rgba(29, 29, 29, 0.70);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.96px;
}

/***************UPGRADES***************/
/***************REVIEWS***************/

.reviews {
  position: relative;
  background-image: url("../images/bg_1-min.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.reviews:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(136, 167, 132, 0.9);
}

.reviews__container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  padding-block: 70px;
  position: relative;
  z-index: 10;
}

.reviews__text-container {
  display: flex;
  justify-content: center;
}

.reviews__title {
  color: #FFF;
  text-align: center;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.76px;
}

.reviews__slider {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.reviews__item {
  width: 770px;
  padding: 50px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(20px);
}

.reviews__item-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.reviews__item-description {
  color: #1D1D1D;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.reviews__item-user {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 20px;
}

.reviews__item-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.reviews__item-wrapper {
  display: flex;
  align-items: center;
}

.reviews__item-name {
  color: #1D1D1D;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.reviews__slider-navigation {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
}

.reviews__slider-pagination {
  display: flex;
  align-items: center;
  column-gap: 20px;
  position: relative !important;
  bottom: unset !important;
  width: fit-content !important;
}

.reviews__slider-prev,
.reviews__slider-next {
  cursor: pointer;
}

.reviews__slider-next {
  transform: rotate(180deg);
}

.reviews__slider-pagination .swiper-pagination-bullet {
  transition: all 0.3s ease-in-out;
  width: 16px !important;
  height: 16px !important;
  background: #FFFFFF;
  opacity: 0.5;
  border-radius: 50%;
  margin: 0 !important;
}

.reviews__slider-pagination .swiper-pagination-bullet-active {
  width: 24px !important;
  height: 24px !important;
  opacity: 1;
}

/***************REVIEWS***************/
/***************REGISTER***************/

.register {
  position: relative;
}

.register__bg-circle-container {
  position: absolute;
  z-index: -20;
  top: -22%;
  right: -35%;

}

.register__container {
  display: flex;
  flex-direction: row;
  position: relative;
  gap: 20px;
  padding-block: 180px 110px;
  max-width: 980px;
  margin-inline: auto;
}

.register__description {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 20px;
  top: 75px;
}

.register__title {
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.76px;
}

.register__subtitle {
  color: #404040;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: 0.1px;
}

.register__message-container {
  position: absolute;
  width: 353px;
  height: 205px;
  top: -130px;
  left: -70px;
  z-index: -20;
}

.message {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #FEFEFE;
  width: 100%;
  height: 100%;
  padding: 15px;
  border-radius: 15px;
  border: 1px solid #D6D6D6;
  box-shadow: 0px -18px 30px 0px rgba(156, 250, 156, 0.20);
}

.message:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(0deg, #FEFEFE 0%, rgba(254, 254, 254, 0.00) 100%);
}

.message__main {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.message__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.message__title {
  color:  #292929;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.message__subtitle {
  color: #292929;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.message__text {
  color: #5D5C5D;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.message__file {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3px;
  padding: 4px 8px;
  border-radius: 30px;
  border: 1px solid #B3B2B3;
}

.message__file-name {
  color: #5D5C5D;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.message__aside {
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: flex-end;
}

.message__time {
  color: #292929;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/***************REGISTER***************/
/***************THX-POPUP***************/

.thx-popup {
  display: none;
  position: relative;
  z-index: 999;
}

.thx-popup__wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: 0.3s ease;
}

.thx-popup__container {
  position: absolute;
  width: 100%;
  max-width: 883px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  top: 0;
  opacity: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  padding: 30px;
  background: #FFF;
  transition: 0.3s ease;
  transition-delay: 0.3s;
}

.thx-popup.active {
  display: block;
}

.thx-popup.active .thx-popup__wrapper {
  background-color: rgba(0, 0, 0, 0.8);
}

.thx-popup.active .thx-popup__container {
  top: 50%;
  opacity: 1;
}

.thx-popup__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.thx-popup__title {
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #000;
}

.thx-popup__subtitle {
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #000;
}

.thx-popup__close-button {
  display: block;
  position: absolute;
  top: 30px;
  right: 24px;
}

.thx-popup__close-button:hover {
  cursor: pointer;
}

/***************THX-POPUP***************/
/***************MEDIA(1200px)***************/

@media (max-width: 1200px) {

  .container {
    padding-inline: 19px;
  }

  .header__container {
    flex-direction: column;
    align-items: center;
    padding-block: 14px;
    gap: 25px;
  }
  .header__nav-container {
    gap: 40px;
  }

  .book__container {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    padding-block: 50px 40px;
    gap: 30px;
  }

  .book__title {
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.52px;
  }

  .book__subtitle {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    letter-spacing: 0.09px;
  }

  .book__description .book__buttons-container,
  .book__description .book__rate-container {
    display: none;
  }

  .book__container > .book__rate-container,
  .book__container > .book__buttons-container {
    display: flex;
  }

  .book__rate-text {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
    letter-spacing: 0.09px;
    max-width: 251px;
  }

  .book__illustration {
    position: static;
    width: 100%;
  }

  .book__illustration-star {
    display: none;
  }

  .book__illustration-base {
    width: 100%;
    height: 693px;
    position: static;
  }

  .book__illustration-info-item-text {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.8px;
  }

  .book__illustration-image-container {
    width: 100%;
    height: 100%;
    position: inherit;
    background-size: auto 800px;
    background-position: left -200px top -70px;
  }

  .book__illustration-info {
    right: auto;
    left: 30px;
    bottom: 30px;
  }

  .overview__container {
    padding-block: 40px;
    gap: 30px;
  }

  .overview__text-container {
    max-width: 658px;
  }

  .overview__title {
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.52px;
  }

  .overview__subtitle {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    letter-spacing: 0.09px;
  }

  .overview__topics-top {
    grid-template-columns: 1fr;
  }

  .overview__topics-top .overview__topics-item:nth-child(1) {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .overview__topics-top .overview__topics-item:nth-child(2) {
    border-top-right-radius: 0;
  }
  .overview__topics-top .overview__topics-item:nth-child(3) {
    border-bottom-left-radius: 0;
  }
  .overview__topics-top .overview__topics-item:nth-child(4) {
    border-bottom-right-radius: 0;
  }
  .overview__topics-bottom .overview__topics-item {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .overview__topics-item-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.96px;
  }

  .overview__topics-item-subtitle {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.72px;
  }

  .plan__container {
    padding-block: 40px;
  }

  .plan__title {
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.52px;
    max-width: 637px;
  }

  .plan__inner {
    padding: 20px;
    border-radius: 20px 120px 20px 20px;
  }

  .plan__item-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.96px;
  }

  .plan__item-subtitle {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.72px;
  }

  .upgrades__container {
    padding-block: 40px 80px;
  }

  .upgrades__deco-1 {
    left: -19px;
  }

  .upgrades__deco-2 {
    right: -19px;
  }


  .upgrades__title {
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.52px;
  }

  .upgrades__subtitle {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    letter-spacing: 0.09px;
  }

  .upgrades__item-text {
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.88px;
  }

  .reviews {
    background-position: top center;
  }

  .reviews__container {
    padding-block: 60px;
    /*padding-inline: 19px;*/
  }

  .reviews__slider {
    gap: 50px;
  }

  .reviews__item {
    width: 730px;
  }

  .register__container {
    padding-block: 212px 100px;
    flex-direction: column;
    gap: 80px;
    align-items: center;
  }

  .register__bg-circle-container {
    left: 50%;
    top: 20%;
    right: auto;
    transform: translateX(-50%);
    width: 120%;
  }

  .register__bg-circle {
    width: 100%;
  }

  .register__description {
    top: auto;
  }

  .register__message-container {
    left: 50%;
    transform: translate3d(-50%, 0, 0) !important;
  }

  .register__title {
    text-align: center;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.52px;
    max-width: 610px;
    margin-inline: auto;
  }

  .register__subtitle {
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    letter-spacing: 0.09px;
    max-width: 610px;
    margin-inline: auto;
  }

  .thx-popup__container {
    max-width: 646px;
  }

  .thx-popup__check-icon {
    width: 110px;
    height: 110px;
  }

  .thx-popup__text {
    gap: 30px;
  }

  .thx-popup__title {
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }

  .thx-popup__subtitle {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }

}

/***************MEDIA(1200px)***************/
/***************MEDIA(700px)***************/

@media (max-width: 700px) {

  .container {
    padding-inline: 10px;
  }

  .header {
    position: relative;
    z-index: 100;
  }

  .header__container {
    padding-block: 25px 25px;
  }

  .header__logo {
    margin-top: 6px;
  }

  .header__menu-button-container {
    display: block;
    position: absolute;
    width: 28px;
    height: 28px;
    top: 42px;
    left: 0;
  }

  .header__menu-button-container:hover {
    cursor: pointer;
  }

  .header__menu-button {
    position: absolute;

    transform-origin: center center;
    transform: scale(0, 0);
    transition: 0.3s ease;
  }

  .header__menu-button.active {
    transform: scale(1, 1) ;
  }

  .header__nav-container {
    position: absolute;
    width: 120%;
    gap: 40px;
    background: linear-gradient(180deg, rgba(251, 251, 251) 70%, rgba(180, 255, 180, 0.10) 100%);
    height: 0;
    top: 98px;
    z-index: 900;
    overflow: hidden;
    flex-direction: column;

    transition: 0.3s ease;
  }

  .header__nav-container .big-button {
    font-size: 20px;
  }

  .header__nav-container.active {
    height: 414px;
  }

  .book__container {
    padding-block: 20px;
  }

  .book__title {
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.04px;
  }

  .book__subtitle {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: 0.08px;
  }

  .book__illustration-base {
    width: 100%;
    height: 411px;
    position: relative;
    border-radius: 30px;
  }

  .book__illustration-image-container {
    width: 100%;
    height: 100%;
    position: inherit;
    background-size: auto 400px;
    background-position: left -120px top -30px;
  }

  .book__illustration-info {
    position: relative;
    bottom: 165px;
    margin-inline: 15px;
    left: auto;
  }

  .book__buttons-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .book__buttons-container .big-button {
    font-size: 18px;
  }

  .book__rate-container {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .book__rate-text {
    max-width: none;
  }

  .book__rate {
    max-width: none;
  }

  .book__rate-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 24px */
    letter-spacing: 0.12px;
  }

  .book__rate-subtitle {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
    letter-spacing: 0.07px;
  }

  .overview__container {
    padding-block: 35px;
  }

  .overview__star-1 {
    bottom: -2%;
    left: -13%;
    width: 127px;
    height: 127px;
  }

  .overview__star-2 {
    top: 30.5%;
    right: -18%;
    width: 127px;
    height: 127px;
  }

  .overview__title {
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.04px;
  }

  .overview__subtitle {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: 0.08px;
  }

  .overview__topics-item {
    padding: 15px;
  }

  .overview__topics-item-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.8px;
  }

  .overview__topics-item-subtitle {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.64px;
  }

  .plan__container {
    padding-block: 35px;
  }

  .plan__inner {
    border-radius: 20px 80px 20px 20px;
    padding: 15px;
    gap: 10px;
    width: 100%;
  }

  .plan__title {
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.04px;
  }

  .plan__item {
    flex-direction: column;
    gap: 20px;
  }

  .plan__item-title-container {
    min-width: none;
  }

  .plan__item-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.8px;
  }

  .plan__item-subtitle {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.64px;
  }

  .upgrades__container {
    padding-block: 35px 70px;
  }

  .upgrades__deco-1 {
    bottom: 25px;
    left: -120px;
    width: 303px;
    height: 275px;
  }

  .upgrades__deco-2 {
    top: 300px;
    right: -120px;
    width: 244px;
    height: 237px;
  }

  .upgrades__text-container {
    gap: 20px;
  }

  .upgrades__title {
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.04px;
  }

  .upgrades__subtitle {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: 0.08px;
  }

  .upgrades__item {
    padding: 15px;
  }

  .upgrades__item-text {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.8px;
  }

  .upgrades__item-number {
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.6px;
  }

  .reviews__container {
    padding-block: 40px 70px;
    gap: 30px;
  }

  .register__bg-circle-container {
    top: 26%;
    width: 180%;
  }

  .reviews__title {
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.04px;
  }

  .reviews__item-quote-container {
    display: flex;
    align-items: flex-end;
    height: 60px;
  }

  .reviews__item-quote {

  }

  .reviews__item {
    width: 340px;
    padding: 20px;
  }

  .reviews__slider-navigation {
    margin-top: -30px;
  }

  .register__container {
    padding-block: 148px 70px;
    gap: 60px;
  }

  .register__title {
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.04px;
  }

  .register__subtitle {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: 0.08px;
  }

  .register__message-container {
    width: 276px;
    height: 160px;
    top: -110px;
  }

  .message:after {
    height: 70%;
  }

  .message__title {
    font-size: 12.528px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .message__subtitle {
    font-size: 10.962px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }

  .message__text {
    font-size: 10.962px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .message__file-icon {
    width: 11px;
    height: 11px;
  }

  .message__file-name {
    font-size: 10.962px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .message__time {
    font-size: 9.396px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .thx-popup__container {
    max-width: 336px;
    padding: 20px;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .thx-popup__check-icon {
    width: 70px;
    height: 70px;
  }

  .thx-popup__text {
    gap: 20px;
  }

  .thx-popup__title {
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }

  .thx-popup__subtitle {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }

}


/***************MEDIA(700px)***************/
/***************GLOBAL***************/
/***************GLOBAL***************/
/***************GLOBAL***************/
/***************GLOBAL***************/
/***************GLOBAL***************/
/***************GLOBAL***************/
/***************GLOBAL***************/
/***************GLOBAL***************/
/***************GLOBAL***************/
/***************GLOBAL***************/
/***************ANIMATIONS***************/
/***************ANIMATIONS***************/
