:root {
  --dark-background: #475e42;
  --background: #deede6;
  --white: white;
  --accent: #ff851a;
  --cells-bg: #ccffe6;
  --black: black;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--dark-background);
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

a {
  text-decoration: none;
}

.body {
  background-color: var(--background);
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  line-height: 1.4;
}

.navbar {
  background-color: var(--dark-background);
  color: var(--background);
  height: 60px;
}

.navbar-container {
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.brand {
  justify-content: flex-start;
  align-items: center;
  margin-right: auto;
  display: flex;
}

.nav-link {
  color: var(--background);
  font-weight: 500;
  transition: all .5s;
}

.nav-link:hover {
  color: var(--white);
}

.nav-link.w--current {
  color: var(--background);
  text-decoration: none;
}

.nav-link.w--current:hover {
  color: var(--white);
}

.menu-button {
  background-color: var(--background);
}

.button {
  background-color: var(--accent);
  color: var(--white);
  border: 10px solid #fff;
  border-radius: 50em;
  margin-top: 30px;
  padding: 30px 40px;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 24px;
  line-height: 1;
  transition: all .5s;
  box-shadow: 0 0 20px #fff;
}

.button:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px 0 var(--accent);
  color: var(--accent);
  background-color: #fff;
  padding: 30px 40px;
  font-size: 24px;
}

.div-block {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 0;
  display: flex;
}

.text-03 {
  max-width: 420px;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
}

.text-hero {
  color: var(--accent);
  margin-bottom: 30px;
  font-weight: 300;
}

.container {
  max-width: 1140px;
  padding-left: 30px;
  padding-right: 30px;
}

.container.hero {
  position: static;
}

.text-price {
  color: var(--accent);
  text-shadow: 0 3px 6px rgba(255, 133, 26, .4);
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 58px;
  line-height: 1;
}

.text-price.old {
  color: rgba(255, 133, 26, .6);
  text-shadow: none;
  font-size: 45px;
  text-decoration: line-through;
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section.hero {
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
}

.stack {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  padding: 0;
}

.stack.about {
  margin-bottom: 30px;
}

.cell-hero {
  justify-content: center;
  align-items: flex-start;
}

.cell-hero.toppadding {
  padding-top: 60px;
}

.h1 {
  max-width: 510px;
  margin-bottom: 20px;
  padding-top: 0;
}

.cell-hero-price.centered {
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}

.image-2 {
  width: 50px;
}

.h2 {
  text-align: center;
}

.cell {
  border: 2px solid var(--dark-background);
  background-color: var(--cells-bg);
  border-radius: 20px;
  padding: 30px;
  transition: all .5s;
}

.cell.centered {
  justify-content: center;
  align-items: center;
}

.cell.no-padding {
  padding: 0;
}

.cell.horizontal {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}

.cell.aftercouse {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

.text-accent {
  color: var(--dark-background);
  max-width: 620px;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.line {
  background-color: var(--dark-background);
  width: 100%;
  height: 2px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.text {
  color: var(--dark-background);
  font-size: 16px;
  line-height: 1.4;
}

.text.about {
  font-size: 20px;
}

.text-numbers {
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 32px;
  line-height: 1;
}

.container-h2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  display: flex;
}

.numbers {
  color: var(--dark-background);
  text-shadow: 0 3px 6px rgba(0, 0, 0, .3);
  margin-bottom: 30px;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
}

.text-accent-2 {
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.text-accent-2.small {
  font-size: 20px;
}

.text-accent-2.timer {
  max-width: 300px;
  margin-bottom: 20px;
}

.text-accent-2.pink {
  color: var(--background);
  margin-bottom: 20px;
}

.line-2 {
  background-color: var(--dark-background);
  width: 100%;
  height: 2px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.minus-button-text {
  font-size: 24px;
  font-weight: 500;
}

.text-3 {
  max-width: 640px;
  line-height: 1.4;
}

.text-3.program {
  margin-top: 20px;
}

.plus-button {
  border: 1px solid var(--dark-background);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: all .3s;
  display: flex;
}

.plus-button:hover {
  background-color: #fff;
}

.lesson-container {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.cell-dropdown {
  border: 2px solid var(--dark-background);
  background-color: var(--cells-bg);
  cursor: pointer;
  border-radius: 20px;
  margin-bottom: 10px;
  padding: 30px;
}

.plus-button-text {
  font-size: 24px;
  font-weight: 500;
}

.cta-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.bonus-container {
  border: 1px solid var(--dark-background);
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  display: none;
}

.cell-time {
  border: 2px solid var(--accent);
  background-color: rgba(255, 255, 255, 0);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  padding: 20px;
  transition: all .5s;
}

.text-price-old {
  color: rgba(71, 94, 66, .5);
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 50px;
  line-height: 1;
  text-decoration: line-through;
}

.cell-timer {
  justify-content: flex-start;
  align-items: center;
}

.text-time {
  color: var(--accent);
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 44px;
  line-height: 1;
}

.image-reviews {
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

.slider {
  background-color: #fff;
  border-radius: 20px;
  height: 530px;
}

.slide-nav {
  position: static;
}

.slide-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px 20px 20px 10px;
  display: flex;
}

.text-copyright {
  color: #ffdef2;
  font-size: 14px;
  line-height: 1.4;
}

.text-copyright.right {
  color: var(--background);
  margin-left: auto;
}

.footer-copyright {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: 20px;
  display: flex;
}

.text-link {
  color: var(--background);
  margin-bottom: 10px;
  font-family: Georgia, Times, Times New Roman, serif;
  text-decoration: none;
}

.text-link:hover {
  color: var(--background);
  transform: translate(6px);
}

.social-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 10px;
  display: flex;
}

.footer {
  background-color: var(--dark-background);
  color: var(--background);
  padding-top: 60px;
  padding-bottom: 60px;
}

.link-footer {
  color: var(--background);
}

.text-footer {
  color: var(--background);
  margin-top: 20px;
}

.logo {
  margin-bottom: 0;
}

.social {
  border: 2px solid #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 15px;
  transition: all .5s;
  display: flex;
}

.social:hover {
  background-color: var(--background);
}

.logo-block {
  justify-content: flex-start;
  align-items: center;
}

.img-2 {
  object-fit: contain;
  width: 340px;
  display: block;
}

.cell-footer {
  padding: 30px 0;
}

.h2-decor {
  width: 60px;
}

.image-bonus {
  max-width: 60px;
}

.image-about {
  object-fit: cover;
  border-radius: 18px;
}

.text-policy {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.bold-text {
  margin-left: auto;
  margin-right: auto;
  font-size: 24px;
}

.hero-timer {
  font-weight: 700;
}

.image-forwho {
  width: 60px;
  max-width: none;
}

.text-container {
  max-width: 470px;
}

.text-container.horizontal {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  max-width: 480px;
  margin-top: 20px;
  display: flex;
}

.image-aftercourse {
  border-radius: 30px;
  width: 300px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .3);
}

.image-course {
  width: 50px;
}

.image-results {
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

.about-container {
  border: 2px solid var(--dark-background);
  background-color: var(--cells-bg);
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 30px;
  transition: all .5s;
}

.hero-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border: 2px solid var(--dark-background);
  background-color: var(--cells-bg);
  border-radius: 30px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
  padding: 20px;
  display: flex;
}

.image-hero {
  width: 50px;
  display: none;
}

@media screen and (min-width: 1280px) {
  .footer {
    color: #ffdef2;
  }
}

@media screen and (max-width: 991px) {
  .nav-menu {
    background-color: var(--dark-background);
    border-radius: 20px;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    overflow: hidden;
  }

  .nav-link {
    background-color: rgba(255, 204, 235, 0);
  }

  .menu-button {
    background-color: var(--dark-background);
    border-radius: 20px;
    padding: 10px;
  }

  .menu-button.w--open, .icon {
    background-color: var(--dark-background);
  }

  .text-03 {
    max-width: 580px;
  }

  .text-hero {
    max-width: 210px;
  }

  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .cell-hero {
    justify-content: center;
    align-items: center;
  }

  .cell-hero.toppadding {
    padding-top: 0;
  }

  .h1 {
    max-width: 410px;
    margin-top: 20px;
  }

  .cell-hero-price.centered {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .cell {
    padding: 20px;
  }

  .cell.horizontal, .cell.aftercouse {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .text-accent {
    max-width: 530px;
    font-size: 20px;
  }

  .text {
    max-width: 440px;
    font-size: 16px;
  }

  .text.about {
    max-width: 510px;
  }

  .text-numbers {
    font-size: 20px;
  }

  .numbers {
    margin-bottom: 20px;
    font-size: 80px;
  }

  .text-accent-2 {
    max-width: 530px;
    font-size: 20px;
  }

  .text-3 {
    font-size: 16px;
  }

  .bonus-container {
    width: 100px;
  }

  .image-reviews, .img-2 {
    object-fit: none;
  }

  .image-about {
    height: 100%;
  }

  .image-forwho {
    width: 40px;
  }

  .image-aftercourse {
    width: 280px;
  }

  .image-results {
    object-fit: none;
  }

  .about-container {
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .button {
    padding-left: 60px;
    padding-right: 60px;
  }

  .text-03 {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .text-hero {
    max-width: 350px;
  }

  .text-price {
    font-size: 52px;
  }

  .text-price.2 {
    font-size: 32px;
  }
  .h1 {
    max-width: 390px;
    font-size: 36px;
  }

  .cell.horizontal, .cell.aftercouse {
    justify-content: flex-start;
    align-items: center;
  }

  .text-accent {
    max-width: 360px;
    font-size: 18px;
  }

  .text.about {
    font-size: 18px;
  }

  .container-h2 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom: 30px;
  }

  .text-accent-2 {
    max-width: 360px;
    font-size: 18px;
  }

  .text-accent-2.pink {
    font-size: 22px;
  }

  .text-3.program {
    max-width: 400px;
  }

  .plus-button {
    display: none;
  }

  .cta-container {
    flex-flow: wrap;
  }

  .bonus-container {
    width: 120px;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .text-link {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .image-forwho {
    width: 40px;
  }

  .image-aftercourse {
    width: 140px;
  }

  .hero-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .image-book {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 479px) {
  .nav-menu {
    margin-left: 10px;
    margin-right: 10px;
  }

  .menu-button {
    border-radius: 20px;
  }

  .menu-button.w--open {
    padding: 10px;
  }

  .button {
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 30px;
    font-size: 18px;
  }

  .button:hover {
    margin-left: auto;
    margin-right: auto;
    padding: 20px 30px;
    font-size: 18px;
  }

  .button.hero {
    padding-left: 55px;
    padding-right: 55px;
  }

  .div-block {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .text-03 {
    max-width: 300px;
    margin-bottom: 20px;
    font-size: 18px;
  }

  .text-hero {
    max-width: 280px;
    font-size: 16px;
  }

  .container {
    padding: 10px;
  }

  .text-price {
    font-size: 42px;
  }

  .text-price.old {
    font-size: 36px;
  }

  .section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .stack {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .stack.about {
    margin-bottom: 10px;
  }

  .h1 {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    font-size: 28px;
    line-height: 1.2;
  }

  .cell-hero-price.centered {
    justify-content: center;
    align-items: center;
  }

  .h2 {
    max-width: 240px;
    font-size: 20px;
  }

  .cell {
    padding: 15px;
  }

  .cell.horizontal, .cell.aftercouse {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .text-accent {
    max-width: 200px;
    font-size: 16px;
  }

  .line {
    margin: 10px 0;
  }

  .text {
    max-width: 360px;
    font-size: 12px;
  }

  .text.about {
    font-size: 18px;
  }

  .text.hero {
    font-size: 10px;
  }

  .text-numbers {
    font-size: 22px;
  }

  .container-h2 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom: 20px;
  }

  .numbers {
    margin-bottom: 10px;
    font-size: 60px;
  }

  .text-accent-2 {
    max-width: 200px;
    font-size: 16px;
    line-height: 1.2;
  }

  .text-accent-2.small {
    max-width: 280px;
    font-size: 14px;
  }

  .text-accent-2.timer {
    max-width: 170px;
    margin-top: 10px;
    font-size: 14px;
  }

  .h3 {
    margin-top: 0;
    font-size: 16px;
  }

  .line-2 {
    height: 1px;
    margin: 10px 0;
  }

  .text-3 {
    max-width: 360px;
    font-size: 12px;
  }

  .text-3.program {
    font-size: 12px;
  }

  .plus-button {
    width: 30px;
    height: 30px;
    display: flex;
  }

  .cta-container {
    flex-flow: wrap;
  }

  .bonus-container {
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
  }

  .cell-time {
    padding: 10px;
  }

  .text-price-old {
    margin-top: 10px;
    font-size: 34px;
  }

  .text-time {
    font-size: 20px;
  }

  .image-reviews {
    object-fit: contain;
  }

  .slider {
    height: 300px;
  }

  .text-copyright.right {
    margin-left: 0;
  }

  .footer-copyright {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: wrap;
  }

  .img-2 {
    object-fit: contain;
  }

  .cell-footer {
    padding: 10px 0;
  }

  .h2-decor {
    width: 40px;
  }

  .image-bonus {
    max-width: 40px;
  }

  .text-policy {
    font-size: 14px;
  }

  .bold-text {
    font-size: 20px;
  }

  .image-forwho {
    width: 20px;
  }

  .image-aftercourse {
    border-radius: 20px;
    width: 80px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
  }

  .image-course {
    width: 30px;
  }

  .image-results {
    object-fit: contain;
  }

  .about-container {
    padding: 15px;
  }

  .hero-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    border-width: 1px;
    flex-flow: row;
    margin-top: 10px;
  }

  .image-hero {
    width: 36px;
  }
}

#w-node-_799be426-73fd-4cdc-ac95-da8889edbc7a-23e1cb36 {
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1.75fr;
}

#w-node-_94611a4b-654a-afc3-895b-6dec36a4a757-23e1cb36 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_71954a47-5d93-7549-ac84-0bab1d0291e5-23e1cb36 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-ed3bc123-d1d2-92fd-b8eb-ab21c9b5c838-23e1cb36 {
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
}

#w-node-ed3bc123-d1d2-92fd-b8eb-ab21c9b5c857-23e1cb36 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-dba5b313-4be8-48fd-0c21-5acde5014ce2-23e1cb36 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-dba5b313-4be8-48fd-0c21-5acde5014cf0-23e1cb36 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e1700b16-e20d-42b9-71a5-4fe51f386a39-23e1cb36 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_7f0b300f-f7f6-27b2-27ed-6c388f17fbef-23e1cb36 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_7f0b300f-f7f6-27b2-27ed-6c388f17fbfd-23e1cb36 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_89a54ae6-2f73-1df8-141b-30da7111c502-23e1cb36 {
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1fr;
}

@media screen and (max-width: 991px) {
  #w-node-_799be426-73fd-4cdc-ac95-da8889edbc7a-23e1cb36 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_94611a4b-654a-afc3-895b-6dec36a4a757-23e1cb36 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-dba5b313-4be8-48fd-0c21-5acde5014ce2-23e1cb36, #w-node-_7f0b300f-f7f6-27b2-27ed-6c388f17fbef-23e1cb36 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_94611a4b-654a-afc3-895b-6dec36a4a757-23e1cb36 {
    grid-template-rows: auto;
    grid-template-columns: .75fr;
  }

  #w-node-_71954a47-5d93-7549-ac84-0bab1d0291e5-23e1cb36 {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-ed3bc123-d1d2-92fd-b8eb-ab21c9b5c838-23e1cb36, #w-node-ed3bc123-d1d2-92fd-b8eb-ab21c9b5c857-23e1cb36 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_89a54ae6-2f73-1df8-141b-30da7111c502-23e1cb36 {
    grid-template-rows: auto;
    grid-template-columns: 2fr;
  }
}
