.bg_color_primary {
  background-color: #a54a96;
}

.phone-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.phone-block .icon {
  margin-right: 10px;
}

.phone-block a:last-of-type {
  color: inherit;
  font-size: 18px;
}

@media (min-width: 1200px) {
  .phone-block a:last-of-type {
    font-size: 20px;
  }
}

#mobileMenuButton {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  padding: 5px 15px;
  font-size: 1.3rem;
  color: #fff;
  border: 0;
  background-color: #a54a96;
  cursor: pointer;
  z-index: 110;
  overflow: hidden;
}

#mobileMenuButton .icon-menu, #mobileMenuButton:after {
  display: block;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  -moz-transition: transform .3s ease-in-out, -moz-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out, -moz-transform .3s ease-in-out;
}

#mobileMenuButton .icon-menu {
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

#mobileMenuButton:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '\2715';
  -webkit-transform: translateY(100px);
     -moz-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
}

#mobileMenuButton[aria-expanded="true"] .icon-menu {
  -webkit-transform: translateY(-100px);
     -moz-transform: translateY(-100px);
      -ms-transform: translateY(-100px);
          transform: translateY(-100px);
}

#mobileMenuButton[aria-expanded="true"]:after {
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (min-width: 992px) {
  #mobileMenuButton {
    display: none;
  }
}

.main-navigation {
  padding: 0;
  overflow-x: hidden;
  z-index: 100;
  -webkit-animation-duration: 1s;
     -moz-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: preShowMenu;
     -moz-animation-name: preShowMenu;
          animation-name: preShowMenu;
}

@media (min-width: 992px) {
  .main-navigation {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
  .main-navigation.main-navigation_cover-up {
    -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
    -moz-box-shadow: none !important;
         box-shadow: none !important;
  }
}

@media (min-width: 992px) {
  .main-navigation .col-lg-9, .main-navigation .col-lg-3 {
    max-width: unset;
    width: auto;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
  }
  .main-navigation .col-lg-9 {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
       -moz-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .main-navigation .col-lg-3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 50px;
  }
}

@media (min-width: 992px) and (max-width: 1197px) {
  .main-navigation .col-lg-9 {
    margin-right: -40px;
  }
}

@media (max-width: 992px) {
  .main-navigation__menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: unset;
    max-width: 100%;
    width: 320px;
    height: 100%;
    -webkit-transform: translateX(100%);
       -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    z-index: 101;
  }
  .main-navigation__menu.show {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    -moz-box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
         box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .main-navigation__menu {
    max-width: unset;
    width: 100%;
    height: 100%;
  }
  .main-navigation__menu .main-navigation__list {
    display: block;
    text-align: center;
    -webkit-column-width: 48%;
       -moz-column-width: 48%;
            column-width: 48%;
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 4%;
       -moz-column-gap: 4%;
            column-gap: 4%;
  }
  .main-navigation__menu .main-navigation__list .nav-link:active, .main-navigation__menu .main-navigation__list .nav-link.active, .main-navigation__menu .main-navigation__list .nav-link:hover {
    background: none;
    border: none;
    color: #a54a96;
  }
  .main-navigation__menu .phone-block {
    margin-top: 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (min-width: 992px) {
  .main-navigation__menu {
    padding-left: 11px;
    padding-right: 11px;
  }
}

@media (max-width: 992px) {
  .main-navigation__menu.show + .main-navigation__drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100;
  }
}

.main-navigation__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  margin: 0;
  font-size: 18px;
}

@media (min-width: 1200px) {
  .main-navigation__list {
    font-size: 20px;
  }
}

@-webkit-keyframes preShowMenu {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes preShowMenu {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes preShowMenu {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.custom-video {
  position: relative;
}

.custom-video__play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  padding-left: 12px;
  border: 0;
  -moz-border-radius: 50%;
       border-radius: 50%;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(4%, #ce70be), to(#a54a96));
  background-image: -webkit-linear-gradient(top, #ce70be 4%, #a54a96 100%);
  background-image: -moz-linear-gradient(top, #ce70be 4%, #a54a96 100%);
  background-image: linear-gradient(to bottom, #ce70be 4%, #a54a96 100%);
  opacity: 0.9;
  overflow: hidden;
  font-size: 2rem;
  line-height: 0;
  color: #fff;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

.custom-video__play-button:before {
  content: '';
  position: relative;
  left: .5rem;
  display: block;
  border: .9rem solid transparent;
  border-left: 1.3rem solid #fff;
}

.custom-video__play-button:hover {
  opacity: 1;
}

.custom-video__play-button:focus {
  outline: none;
  -moz-box-shadow: 0 0 15px rgba(165, 74, 150, 0.7);
       box-shadow: 0 0 15px rgba(165, 74, 150, 0.7);
}

.custom-video.playing .custom-video__play-button {
  opacity: 0;
}

.custom-video.playing .custom-video__play-button:hover {
  opacity: 0.3;
}

.custom-video:not(.playing) .custom-video__drawer {
  display: block;
}

.custom-video__drawer {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #676a76;
  background-image: url("../images/video-poster.jpg");
  -moz-background-size: cover;
       background-size: cover;
  background-position: center center;
  display: none;
}

/*flip v2*/
.flip-container {
  overflow: hidden;
}

.flip-container .clock_timer {
  width: 100%;
  max-width: 630px;
  margin: 60px auto;
}

.flip-clock-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.flip-clock-wrapper ul.flip {
  padding: 0;
  overflow: hidden;
}

.flip-container .flip-clock-divider .flip-clock-label {
  font-size: 14px !important;
  color: #333;
}

@media (min-width: 450px) {
  .flip-container .flip-clock-divider .flip-clock-label {
    font-size: 21px !important;
  }
}

@media (max-width: 767.97px) {
  .flip-clock-dot {
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .flip-clock-label {
    -webkit-transform: translateX(50%);
       -moz-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
  }
}

@media (max-width: 369.97px) {
  .flip-container .flip-clock-divider .flip-clock-label,
  .flip-container .flip-clock-divider .minutes .flip-clock-label,
  .flip-container .flip-clock-divider .seconds .flip-clock-label {
    right: -35px !important;
  }
}

@media (max-width: 420px) {
  .flip-container .flip-clock-divider .flip-clock-label {
    right: -40px !important;
  }
}

@media (max-width: 449.97px) {
  .flip-clock-wrapper ul li a div div.inn {
    font-size: 28px !important;
  }
  .flip-clock-dot {
    width: 7px;
    height: 7px;
    top: 50% !important;
  }
  .flip-clock-dot.top {
    -webkit-transform: translateY(-200%) translateX(-50%);
       -moz-transform: translateY(-200%) translateX(-50%);
        -ms-transform: translateY(-200%) translateX(-50%);
            transform: translateY(-200%) translateX(-50%);
  }
  .flip-clock-dot.bottom {
    -webkit-transform: translateY(150%) translateX(-50%);
       -moz-transform: translateY(150%) translateX(-50%);
        -ms-transform: translateY(150%) translateX(-50%);
            transform: translateY(150%) translateX(-50%);
  }
  .flip-clock-wrapper ul.flip {
    height: 60px;
    margin: auto 2px;
  }
  .flip-clock-wrapper ul.flip .inn {
    line-height: 60px;
  }
  .flip-clock-wrapper ul li a div.up:after {
    top: 29px;
  }
  .flip-container .flip-clock-divider .flip-clock-label,
  .flip-container .flip-clock-divider .minutes .flip-clock-label,
  .flip-container .flip-clock-divider .seconds .flip-clock-label {
    display: block;
    width: 60px;
    top: -15px;
    right: -45px;
    text-align: center;
  }
}

@media (min-width: 450px) and (max-width: 499.97px) {
  .flip-clock-wrapper ul li a div div.inn {
    font-size: 45px !important;
  }
  .flip-container .flip-clock-divider .flip-clock-label,
  .flip-container .flip-clock-divider .minutes .flip-clock-label,
  .flip-container .flip-clock-divider .seconds .flip-clock-label {
    right: -50px;
  }
}

@media (min-width: 500px) and (max-width: 767.97px) {
  .flip-clock-wrapper ul li a div div.inn {
    font-size: 55px !important;
  }
  .flip-container .flip-clock-divider .flip-clock-label {
    right: -55px;
  }
  .flip-container .flip-clock-divider .seconds .flip-clock-label {
    right: -55px;
  }
}

@media (min-width: 768px) {
  .flip-container .flip-clock-divider .flip-clock-label {
    right: -100px;
  }
  .flip-container .flip-clock-divider .days .flip-clock-label,
  .flip-container .flip-clock-divider .hours .flip-clock-label {
    right: -95px;
  }
}

.codes > a {
  display: inline-block;
  width: 35px;
  height: 35px;
  font-size: 25px;
  line-height: 36px;
  text-align: center;
  color: #cb8ac0;
  background-color: #ead1e6;
  -moz-border-radius: 6px;
       border-radius: 6px;
  -webkit-transition: background-color .4s;
  -moz-transition: background-color .4s;
  transition: background-color .4s;
}

.codes > a.active, .codes > a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #a54a96;
}

.codes > a:active {
  background-color: rgba(165, 74, 150, 0.8);
}

/*talks*/
.talks-widget-button {
  z-index: 1500;
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 15px;
  right: 20px;
  font-size: 25px;
  text-align: center;
  -moz-border-radius: 50%;
       border-radius: 50%;
  color: white;
  padding-top: 6px;
  background: #3a6686;
  cursor: pointer;
  -moz-box-shadow: 0 6px 13px 0 rgba(0, 0, 0, 0.23);
       box-shadow: 0 6px 13px 0 rgba(0, 0, 0, 0.23);
}

.talks-widget-button .comments-icon {
  position: absolute;
  top: 10px;
  left: 13px;
}

/*font awesome*/
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.modal-open .modal {
  background-color: rgba(72, 43, 117, 0.8);
}

.modal-open .modal-close {
  position: fixed;
  top: 5px;
  right: 25px;
  display: block;
  width: 36px;
  height: 36px;
  font-size: 40px;
  line-height: 36px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: rgba(255, 255, 255, 0.35);
  background: -webkit-radial-gradient(68.75% 465.87% at 50% 50%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 100%), -webkit-radial-gradient(84.37% 84.37% at 50% 50%, rgba(255, 255, 255, 0.25) 34.9%, rgba(255, 255, 255, 0) 100%), rgba(72, 43, 117, 0.8);
  background: -moz-radial-gradient(68.75% 465.87% at 50% 50%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 100%), -moz-radial-gradient(84.37% 84.37% at 50% 50%, rgba(255, 255, 255, 0.25) 34.9%, rgba(255, 255, 255, 0) 100%), rgba(72, 43, 117, 0.8);
  background: radial-gradient(68.75% 465.87% at 50% 50%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(84.37% 84.37% at 50% 50%, rgba(255, 255, 255, 0.25) 34.9%, rgba(255, 255, 255, 0) 100%), rgba(72, 43, 117, 0.8);
  -moz-border-radius: 42px;
       border-radius: 42px;
  -moz-box-shadow: 0 0 7px 1px #5a5a5a;
       box-shadow: 0 0 7px 1px #5a5a5a;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  transition: all 200ms;
  cursor: pointer;
  z-index: 500;
}

.modal-open .modal-close:hover {
  opacity: 0.7;
}

.special-title {
  background-color: #ff0861;
  font-family: "Lifehack Sans", "Times New Roman", Times, serif;
  font-size: 2.5rem;
  color: #fff;
  -moz-border-radius: 0.5em;
       border-radius: 0.5em;
}

.upsell__button {
  padding: 15px 60px;
}

.section {
  padding: 3rem 0;
}

footer {
  padding: 40px 0;
  background-color: #a54a96 !important;
}

@font-face {
  font-family: "Lifehack Sans";
  font-weight: normal;
  src: url("../fonts/MAGNOLIA SCRIPT.woff2"), url("../fonts/MAGNOLIA SCRIPT.woff"), url("../fonts/MAGNOLIA SCRIPT.svg"), url("../fonts/MAGNOLIA SCRIPT.OTF"), url("../fonts/MAGNOLIA SCRIPT.ttf");
}

body {
  font-family: "PT Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #000;
  line-height: 1.4;
}

a {
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: #a54a96;
}

.text_color_primary {
  color: #a54a96;
}

.text_color_white {
  color: #fff;
}

.text_small {
  font-size: .7em;
}

.text_large {
  font-size: 1.7em;
}

.heading,
.main-heading {
  font-family: "Lifehack Sans", "Times New Roman", Times, serif;
  color: #a54a96;
  line-height: 1.2;
}

.heading {
  font-size: 35px;
}

@media (max-width: 768px) {
  .heading {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .heading {
    font-size: 65px;
  }
}

.main-heading {
  font-size: 45px;
}

@media (min-width: 768px) {
  .main-heading {
    font-size: 80px;
    line-height: 92px;
  }
}

.main-heading__pre-title {
  display: block;
  font-family: "PT Sans", Helvetica, Arial, sans-serif;
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 50px;
  font-weight: 500;
  color: #000;
}

.list_bullet {
  padding-left: 80px;
  margin: 30px 00 50px;
  list-style: none;
  font-size: 22px;
  line-height: 28px;
}

.list_bullet li {
  position: relative;
}

.list_bullet li + li {
  margin-top: 30px;
}

.list_bullet li:before {
  content: '';
  position: absolute;
}

.list_bullet li:before {
  display: block;
  left: -80px;
  top: -2px;
  width: 40px;
  height: 40px;
  background-image: url("../images/bullit.png");
  -moz-background-size: contain;
       background-size: contain;
  background-repeat: no-repeat;
}

ul:not(.list-unstyled):not(.list_bullet):not(.flip) {
  list-style: none;
}

ul:not(.list-unstyled):not(.list_bullet):not(.flip) li {
  position: relative;
  margin-bottom: 10px;
}

ul:not(.list-unstyled):not(.list_bullet):not(.flip) li:before {
  content: '';
  position: absolute;
  left: -15px;
  top: .7em;
  display: block;
  width: 6px;
  height: 6px;
  -moz-border-radius: 50%;
       border-radius: 50%;
  background-color: #a54a96;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.icon {
  display: inline-block;
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: 19px;
       background-size: 19px;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  transition: all 200ms;
}

.icon-whatsapp {
  width: 30px;
  height: 30px;
  background-color: #1cd742;
  background-image: url("../images/icons/icon-whatsapp.svg");
  -moz-background-size: 80%;
       background-size: 80%;
  -moz-border-radius: 100%;
       border-radius: 100%;
  -moz-box-shadow: 0px 0px 10px #1cd742;
       box-shadow: 0px 0px 10px #1cd742;
}

.icon-whatsapp:hover {
  -moz-box-shadow: 0px 0px 10px #fff;
       box-shadow: 0px 0px 10px #fff;
}

.button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px 20px;
  min-width: 290px;
  max-width: 290px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #000;
  text-align: center;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid transparent;
  -moz-border-radius: 40px;
       border-radius: 40px;
  -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  -moz-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-moz-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-moz-box-shadow .15s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-transform: uppercase;
}

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

.button:hover, .button:active {
  outline: none;
}

.button_primary {
  background-color: #a54a96;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(4%, #ce70be), to(#a54a96));
  background-image: -webkit-linear-gradient(top, #ce70be 4%, #a54a96 100%);
  background-image: -moz-linear-gradient(top, #ce70be 4%, #a54a96 100%);
  background-image: linear-gradient(to bottom, #ce70be 4%, #a54a96 100%);
  color: #fff;
  -moz-box-shadow: 0px 4px 0px 0px rgba(113, 49, 102, 0.004), 0px 5px 20px 0px rgba(113, 49, 102, 0.4);
       box-shadow: 0px 4px 0px 0px rgba(113, 49, 102, 0.004), 0px 5px 20px 0px rgba(113, 49, 102, 0.4);
}

.button_primary:hover, .button_primary:active {
  color: #fff;
  text-decoration: none;
}

.button_gray {
  background-color: #676a76;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#cdcdcd), color-stop(50%, #a7a7a7), to(#969696));
  background-image: -webkit-linear-gradient(top, #cdcdcd 0%, #a7a7a7 50%, #969696 100%);
  background-image: -moz-linear-gradient(top, #cdcdcd 0%, #a7a7a7 50%, #969696 100%);
  background-image: linear-gradient(to bottom, #cdcdcd 0%, #a7a7a7 50%, #969696 100%);
  border-bottom-color: #a7a7a7;
  color: #fff;
}

.button_gray:hover {
  color: #fff;
  -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.button_primary,
.button_gray {
  -moz-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
       box-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
}

.button_primary, .button_primary:hover,
.button_gray,
.button_gray:hover {
  position: relative;
  cursor: pointer;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  transition: all 200ms;
}

.button_primary:hover, .button_primary:active,
.button_gray:hover,
.button_gray:active {
  -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.animation-shake {
  -webkit-animation: shake 6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both infinite;
     -moz-animation: shake 6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both infinite;
          animation: shake 6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both infinite;
}

@-webkit-keyframes shake {
  1%, 9% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  2%, 8% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  3%, 5%, 7% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
  }
  4%, 6% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
}

@-moz-keyframes shake {
  1%, 9% {
    -moz-transform: translate3d(-1px, 0, 0);
         transform: translate3d(-1px, 0, 0);
  }
  2%, 8% {
    -moz-transform: translate3d(2px, 0, 0);
         transform: translate3d(2px, 0, 0);
  }
  3%, 5%, 7% {
    -moz-transform: translate3d(-4px, 0, 0);
         transform: translate3d(-4px, 0, 0);
  }
  4%, 6% {
    -moz-transform: translate3d(4px, 0, 0);
         transform: translate3d(4px, 0, 0);
  }
}

@keyframes shake {
  1%, 9% {
    -webkit-transform: translate3d(-1px, 0, 0);
       -moz-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  2%, 8% {
    -webkit-transform: translate3d(2px, 0, 0);
       -moz-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  3%, 5%, 7% {
    -webkit-transform: translate3d(-4px, 0, 0);
       -moz-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
  }
  4%, 6% {
    -webkit-transform: translate3d(4px, 0, 0);
       -moz-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
}

.animation-rocket {
  -webkit-animation: startRocket both 1s;
     -moz-animation: startRocket both 1s;
          animation: startRocket both 1s;
}

@-webkit-keyframes startRocket {
  0% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  10% {
    -webkit-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg);
  }
  80% {
    -webkit-transform: translateY(-240px) rotate(-60deg);
            transform: translateY(-240px) rotate(-60deg);
  }
  100% {
    -webkit-transform: translateY(-300px) rotate(-30deg);
            transform: translateY(-300px) rotate(-30deg);
    opacity: 0;
  }
}

@-moz-keyframes startRocket {
  0% {
    -moz-transform: rotate(-45deg);
         transform: rotate(-45deg);
  }
  10% {
    -moz-transform: translateY(0) rotate(-45deg);
         transform: translateY(0) rotate(-45deg);
  }
  80% {
    -moz-transform: translateY(-240px) rotate(-60deg);
         transform: translateY(-240px) rotate(-60deg);
  }
  100% {
    -moz-transform: translateY(-300px) rotate(-30deg);
         transform: translateY(-300px) rotate(-30deg);
    opacity: 0;
  }
}

@keyframes startRocket {
  0% {
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  10% {
    -webkit-transform: translateY(0) rotate(-45deg);
       -moz-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg);
  }
  80% {
    -webkit-transform: translateY(-240px) rotate(-60deg);
       -moz-transform: translateY(-240px) rotate(-60deg);
            transform: translateY(-240px) rotate(-60deg);
  }
  100% {
    -webkit-transform: translateY(-300px) rotate(-30deg);
       -moz-transform: translateY(-300px) rotate(-30deg);
            transform: translateY(-300px) rotate(-30deg);
    opacity: 0;
  }
}

.label {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid #fff;
  -moz-border-radius: 10px;
       border-radius: 10px;
  font-size: 16px;
  line-height: 22px;
  color: #3a3735;
  -moz-box-shadow: 5px 5px 30px rgba(75, 63, 42, 0.3);
       box-shadow: 5px 5px 30px rgba(75, 63, 42, 0.3);
}

@media (min-width: 768px) {
  .label {
    height: 80px;
    width: 270px;
  }
}

.label__text-before {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
     -moz-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.label__text-selected {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .label__text-selected {
    font-size: 25px;
  }
}

.main-navigation {
  font-size: 20px;
  background-color: #fff;
}

.main-navigation__menu {
  padding: 20px 0;
}

@media (max-width: 992px) {
  .main-navigation__menu {
    padding: 70px 30px 50px;
    background-color: #fff;
  }
}

.main-navigation__list li .nav-link {
  border-bottom: solid 3px #fff;
}

.main-navigation__list li .nav-link.active {
  border-color: #a54a96;
}

.main-navigation__list li .nav-link:focus, .main-navigation__list li .nav-link:hover, .main-navigation__list li .nav-link:active {
  color: #a54a96;
}

.main-navigation__list li .nav-link:focus.nav-link.active {
  outline: none;
}

@media (max-width: 992px) {
  .main-navigation__list {
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: 15px;
  }
  .main-navigation__list li .nav-link {
    padding: 15px 30px;
  }
  .main-navigation__list li .nav-link.active, .main-navigation__list li .nav-link:active, .main-navigation__list li .nav-link:focus, .main-navigation__list li .nav-link:hover {
    color: #fff;
    background-color: #a54a96;
    border-color: #a54aa5;
  }
}

@media (min-width: 992px) {
  .main-navigation__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
  .main-navigation__list li .nav-link {
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
  }
}

.gallery-box {
  padding: 50px 30px;
  background-color: #fff;
  -moz-border-radius: 15px;
       border-radius: 15px;
  -moz-box-shadow: 5px 5px 30px rgba(75, 63, 42, 0.3);
       box-shadow: 5px 5px 30px rgba(75, 63, 42, 0.3);
}

.custom-video__play-button {
  width: 60px;
  height: 60px;
  padding-left: 12px;
  border: 0;
  -moz-border-radius: 50%;
       border-radius: 50%;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(4%, #ce70be), to(#a54a96));
  background-image: -webkit-linear-gradient(top, #ce70be 4%, #a54a96 100%);
  background-image: -moz-linear-gradient(top, #ce70be 4%, #a54a96 100%);
  background-image: linear-gradient(to bottom, #ce70be 4%, #a54a96 100%);
  opacity: 0.9;
  overflow: hidden;
  font-size: 2rem;
  line-height: 0;
  color: #fff;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.custom-video__play-button:before {
  content: '';
  position: relative;
  left: .5rem;
  display: block;
  border: .9rem solid transparent;
  border-left: 1.3rem solid #fff;
}

.custom-video__play-button:hover {
  opacity: 1;
}

.custom-video__play-button:focus {
  outline: none;
  -moz-box-shadow: 0 0 15px rgba(165, 74, 150, 0.7);
       box-shadow: 0 0 15px rgba(165, 74, 150, 0.7);
}

.custom-video.playing .custom-video__play-button {
  opacity: 0;
}

.custom-video.playing .custom-video__play-button:hover {
  opacity: 0.3;
}

.custom-video:not(.playing) .custom-video__drawer {
  display: block;
}

.custom-video__drawer {
  background-color: #676a76;
  background-image: url("../images/video-poster.jpg");
  -moz-background-size: cover;
       background-size: cover;
  background-position: center center;
  display: none;
}

.widget-form {
  min-width: 290px;
  max-width: 415px;
  min-height: 310px;
  padding: 20px;
  padding-bottom: 40px;
  background-color: #fff;
  -moz-border-radius: 8px;
       border-radius: 8px;
  -moz-box-shadow: 5px 5px 30px rgba(75, 63, 42, 0.3);
       box-shadow: 5px 5px 30px rgba(75, 63, 42, 0.3);
}

.widget-form_top {
  margin-top: 20px;
}

.first-block {
  position: relative;
  padding-top: 20px;
  background-image: url("../images/transition-bottom.png"), url("../images/background-1.jpg");
  background-repeat: no-repeat, no-repeat;
  -moz-background-size: 100%, cover;
       background-size: 100%, cover;
  background-position: center bottom, center top;
  font-size: 25px;
}

@media (min-width: 993px) {
  .first-block {
    padding-top: 100px;
  }
}

@media (min-width: 1900px) {
  .first-block {
    background-image: url("../images/transition-bottom.png"), url("../images/background-1-2x-scale-2_00x.webp");
  }
}

.webp .first-block {
  background-image: url("../images/transition-bottom.webp"), url("../images/background-1.webp");
}

@media (min-width: 1900px) {
  .webp .first-block {
    background-image: url("../images/transition-bottom.webp"), url("../images/background-1-2x-scale-2_00x.webp");
  }
}

@media (min-width: 992px) {
  .first-block__cover-wrapper {
    position: relative;
  }
}

.first-block__cover img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}

@media (max-width: 991.7px) {
  .first-block__cover {
    max-height: 70vh;
  }
}

@media (min-width: 992px) {
  .first-block__cover {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    max-width: 400px;
    padding: 0;
    -webkit-transform: rotate(5deg);
       -moz-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}

@media (min-width: 1200px) {
  .first-block__cover {
    max-width: 500px;
  }
}

.first-block__bonus-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

@media (min-width: 992px) {
  .first-block__bonus-wrapper {
    position: relative;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.first-block__bonus-desc {
  margin-top: 50px;
  max-width: 570px;
}

.first-block__bonus-preview {
  position: relative;
  width: 350px;
  height: 370px;
  background-image: url("../images/bonus.png");
}

.first-block__bonus-preview, .first-block__bonus-preview:before {
  display: block;
  background-repeat: no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  background-position: center;
}

.first-block__bonus-preview:before {
  content: '';
  position: absolute;
  left: -30px;
  top: 30px;
  width: 50px;
  height: 50px;
  background-image: url("../images/arrow-1.png");
  -webkit-transform: scaleX(-1) rotate(85deg);
     -moz-transform: scaleX(-1) rotate(85deg);
      -ms-transform: scaleX(-1) rotate(85deg);
          transform: scaleX(-1) rotate(85deg);
}

@media (min-width: 992px) {
  .first-block__bonus-preview {
    position: absolute;
    top: unset;
    left: unset;
    bottom: -30px;
    right: -180px;
    width: 350px;
    height: 370px;
  }
  .first-block__bonus-preview:before {
    -webkit-transform: scale(1) rotate(0deg);
       -moz-transform: scale(1) rotate(0deg);
        -ms-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
    top: 0;
    bottom: unset;
    left: 20px;
  }
}

@media (min-width: 1200px) {
  .first-block__bonus-preview {
    right: -80px;
  }
}

.webp .first-block__bonus-preview {
  background-image: url("../images/bonus.webp");
}

@media (min-width: 992px) {
  .first-block__bonus-widget {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
       -moz-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.greeting {
  background-image: url("../images/transition-bottom.png"), url("../images/background-2.png");
  -moz-background-size: 100%, cover;
       background-size: 100%, cover;
  background-position: center bottom, center bottom;
  background-repeat: no-repeat, no-repeat;
}

@media (min-width: 1900px) {
  .greeting {
    background-image: url("../images/transition-bottom.png"), url("../images/background-2-2x-scale-2_00x.png");
  }
}

.webp .greeting {
  background-image: url("../images/transition-bottom.webp"), url("../images/background-2.webp");
}

@media (min-width: 1900px) {
  .webp .greeting {
    background-image: url("../images/transition-bottom.webp"), url("../images/background-2-2x-scale-2_00x.webp");
  }
}

.greeting__text {
  padding-top: 50px;
  padding-bottom: 100px;
  font-size: 25px;
  line-height: 35px;
}

@media (min-width: 992px) {
  .greeting__text {
    padding-bottom: 200px;
  }
}

.greeting__text p + p {
  margin-top: 30px;
}

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

.greeting__cover {
  position: relative;
  height: 320px;
}

@media (min-width: 768px) {
  .greeting__cover {
    height: 500px;
  }
}

@media (min-width: 992px) {
  .greeting__cover {
    height: auto;
  }
}

.greeting__image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
}

@media (min-width: 992px) {
  .greeting__image {
    margin-top: 50px;
    max-height: unset;
  }
}

.greeting__label {
  width: 260px;
  height: 60px;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-40%);
     -moz-transform: translateX(-40%);
      -ms-transform: translateX(-40%);
          transform: translateX(-40%);
}

@media (min-width: 768px) {
  .greeting__label {
    bottom: 50px;
    left: 35%;
  }
}

@media (min-width: 992px) {
  .greeting__label {
    bottom: 340px;
    -webkit-transform: translateX(-60%);
       -moz-transform: translateX(-60%);
        -ms-transform: translateX(-60%);
            transform: translateX(-60%);
  }
}

@media (min-width: 1200px) {
  .greeting__label {
    bottom: 135px;
  }
}

.greeting__button {
  width: 350px;
}

.promise__title {
  max-width: 800px;
}

.promise__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .promise__list {
    margin-top: -40px;
    margin-bottom: 20px;
  }
}

@media (min-width: 992px) {
  .promise__list {
    margin-top: -90px;
    margin-bottom: -170px;
  }
}

@media (min-width: 1200px) {
  .promise__list {
    margin-top: -60px;
    margin-bottom: -200px;
  }
}

.promise__item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px;
  -moz-border-radius: 5px;
       border-radius: 5px;
  -moz-box-shadow: 5px 5px 30px rgba(75, 63, 42, 0.3);
       box-shadow: 5px 5px 30px rgba(75, 63, 42, 0.3);
}

.promise__item img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .promise__item_1 {
    -webkit-flex-basis: 290px;
        -ms-flex-preferred-size: 290px;
            flex-basis: 290px;
    -webkit-transform: rotate(-3deg) translateY(40%);
       -moz-transform: rotate(-3deg) translateY(40%);
        -ms-transform: rotate(-3deg) translateY(40%);
            transform: rotate(-3deg) translateY(40%);
  }
  .promise__item_2 {
    -webkit-flex-basis: 340px;
        -ms-flex-preferred-size: 340px;
            flex-basis: 340px;
    -webkit-transform: rotate(4deg) scale(1.1) translate(-2%, 20%);
       -moz-transform: rotate(4deg) scale(1.1) translate(-2%, 20%);
        -ms-transform: rotate(4deg) scale(1.1) translate(-2%, 20%);
            transform: rotate(4deg) scale(1.1) translate(-2%, 20%);
  }
  .promise__item_2 .promise__label {
    -webkit-transform: scale(0.91);
       -moz-transform: scale(0.91);
        -ms-transform: scale(0.91);
            transform: scale(0.91);
  }
  .promise__item_3 {
    -webkit-flex-basis: 280px;
        -ms-flex-preferred-size: 280px;
            flex-basis: 280px;
    -webkit-transform: rotate(4deg) scale(1.1) translate(15%, 30%);
       -moz-transform: rotate(4deg) scale(1.1) translate(15%, 30%);
        -ms-transform: rotate(4deg) scale(1.1) translate(15%, 30%);
            transform: rotate(4deg) scale(1.1) translate(15%, 30%);
  }
  .promise__item_3 .promise__label {
    -webkit-transform: scale(0.91);
       -moz-transform: scale(0.91);
        -ms-transform: scale(0.91);
            transform: scale(0.91);
  }
  .promise__item_4 {
    -webkit-flex-basis: 350px;
        -ms-flex-preferred-size: 350px;
            flex-basis: 350px;
    -webkit-transform: rotate(-4deg) scale(1.1) translate(0%, -20%);
       -moz-transform: rotate(-4deg) scale(1.1) translate(0%, -20%);
        -ms-transform: rotate(-4deg) scale(1.1) translate(0%, -20%);
            transform: rotate(-4deg) scale(1.1) translate(0%, -20%);
  }
  .promise__item_4 .promise__label {
    -webkit-transform: scale(0.91);
       -moz-transform: scale(0.91);
        -ms-transform: scale(0.91);
            transform: scale(0.91);
  }
  .promise__item_5 {
    -webkit-flex-basis: 140px;
        -ms-flex-preferred-size: 140px;
            flex-basis: 140px;
    -webkit-transform: rotate(-3deg) scale(1.7) translate(190%, -20%);
       -moz-transform: rotate(-3deg) scale(1.7) translate(190%, -20%);
        -ms-transform: rotate(-3deg) scale(1.7) translate(190%, -20%);
            transform: rotate(-3deg) scale(1.7) translate(190%, -20%);
  }
  .promise__item_5 .promise__label {
    -webkit-transform: scale(0.6);
       -moz-transform: scale(0.6);
        -ms-transform: scale(0.6);
            transform: scale(0.6);
  }
}

@media (min-width: 992px) {
  .promise__item {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
       -moz-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .promise__item_1 {
    -webkit-flex-basis: 400px;
        -ms-flex-preferred-size: 400px;
            flex-basis: 400px;
  }
  .promise__item_2 {
    -webkit-flex-basis: 450px;
        -ms-flex-preferred-size: 450px;
            flex-basis: 450px;
  }
  .promise__item_3 {
    -webkit-flex-basis: 350px;
        -ms-flex-preferred-size: 350px;
            flex-basis: 350px;
  }
  .promise__item_4 {
    -webkit-flex-basis: 450px;
        -ms-flex-preferred-size: 450px;
            flex-basis: 450px;
  }
  .promise__item_5 {
    -webkit-flex-basis: 350px;
        -ms-flex-preferred-size: 350px;
            flex-basis: 350px;
    -webkit-transform: rotate(-3deg) translate(140%, -32%);
       -moz-transform: rotate(-3deg) translate(140%, -32%);
        -ms-transform: rotate(-3deg) translate(140%, -32%);
            transform: rotate(-3deg) translate(140%, -32%);
  }
  .promise__item_5 .promise__label {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}

@media (min-width: 1200px) {
  .promise__item_1 {
    -webkit-flex-basis: 440px;
        -ms-flex-preferred-size: 440px;
            flex-basis: 440px;
  }
  .promise__item_2 {
    -webkit-flex-basis: 600px;
        -ms-flex-preferred-size: 600px;
            flex-basis: 600px;
  }
  .promise__item_3 {
    -webkit-flex-basis: 450px;
        -ms-flex-preferred-size: 450px;
            flex-basis: 450px;
  }
  .promise__item_4 {
    -webkit-flex-basis: 600px;
        -ms-flex-preferred-size: 600px;
            flex-basis: 600px;
  }
  .promise__item_5 {
    -webkit-flex-basis: 450px;
        -ms-flex-preferred-size: 450px;
            flex-basis: 450px;
  }
}

.promise__label {
  top: 0;
  left: 20px;
  width: 165px;
  height: 65px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffcd4a), to(#ffb804));
  background-image: -webkit-linear-gradient(top, #ffcd4a 0%, #ffb804 100%);
  background-image: -moz-linear-gradient(top, #ffcd4a 0%, #ffb804 100%);
  background-image: linear-gradient(to bottom, #ffcd4a 0%, #ffb804 100%);
  border: 0;
  -moz-border-radius: 0 0 8px 8px;
       border-radius: 0 0 8px 8px;
  -webkit-transform-origin: left top;
     -moz-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}

.promise__buttons {
  margin-top: 35px;
}

@media (min-width: 768px) {
  .promise__buttons {
    margin-top: 0;
  }
}

.bonus {
  position: relative;
  padding-top: 60px;
  padding-bottom: 100px;
  background-image: url("../images/transition-top.png"), url("../images/background-4.png");
  background-position: center top;
  -moz-background-size: 100%, cover;
       background-size: 100%, cover;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .bonus {
    padding-top: 150px;
  }
}

@media (min-width: 1900px) {
  .bonus {
    background-image: url("../images/transition-top.png"), url("../images/background-4-2x-scale-2_00x.png");
  }
}

.webp .bonus {
  background-image: url("../images/transition-top.webp"), url("../images/background-4.webp");
}

@media (min-width: 1900px) {
  .webp .bonus {
    background-image: url("../images/transition-top.webp"), url("../images/background-4-2x-scale-2_00x.webp");
  }
}

.bonus__text {
  margin-top: 20px;
  padding: 20px 35px;
  background-color: rgba(255, 255, 255, 0.66);
  border: 1px solid #fff;
  -moz-border-radius: 6px;
       border-radius: 6px;
  font-weight: 600;
}

@media (min-width: 992px) {
  .bonus__text {
    position: absolute;
    bottom: -300px;
    left: 0;
    width: 320px;
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
  .bonus__text {
    left: 40px;
    font-size: 22px;
    width: 340px;
  }
}

@media (min-width: 768px) {
  .bonus__title {
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) {
  .bonus__picture {
    position: relative;
    left: 50%;
    width: 60%;
    -webkit-flex-basis: unset;
        -ms-flex-preferred-size: unset;
            flex-basis: unset;
    z-index: 1;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .bonus__picture:before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    -moz-background-size: auto 350px, auto 400px;
         background-size: auto 350px, auto 400px;
    background-position: 10px 250px, 420px 0;
    background-image: url("../images/line-1.png"), url("../images/line-2.png");
  }
}

@media (min-width: 1200px) {
  .bonus__picture:before {
    left: -10%;
    width: 120%;
    background-position: 60px 350px, 600px 50px;
  }
}

.bonus__list {
  margin: 0 auto 50px;
}

@media (min-width: 992px) {
  .bonus__picture .bonus__item {
    position: absolute;
    width: 230px;
    font-size: 22px;
    line-height: 28px;
  }
  .bonus__picture .bonus__item:before {
    left: -60px;
  }
  .bonus__picture .bonus__item_reverse:before {
    left: unset;
    right: -50px;
  }
  .bonus__picture .bonus__item_1 {
    width: 200px;
    top: 50%;
    left: -190px;
  }
  .bonus__picture .bonus__item_2 {
    width: 160px;
    top: 65%;
    left: -100px;
  }
  .bonus__picture .bonus__item_3 {
    top: 10%;
    left: 520px;
  }
  .bonus__picture .bonus__item_4 {
    top: 20%;
    left: 538px;
  }
  .bonus__picture .bonus__item_5 {
    top: 30%;
    left: 547px;
  }
}

@media (min-width: 992px) and (min-width: 1200px) {
  .bonus__picture .bonus__item_1 {
    top: 50%;
    left: -215px;
  }
  .bonus__picture .bonus__item_2 {
    top: 65%;
    left: -125px;
  }
  .bonus__picture .bonus__item_3 {
    top: 10%;
    left: 618px;
  }
  .bonus__picture .bonus__item_4 {
    top: 20%;
    left: 645px;
  }
  .bonus__picture .bonus__item_5 {
    top: 30%;
    left: 658px;
  }
}

.materials {
  padding-top: 100px;
  padding-bottom: 220px;
  overflow: hidden;
  background-image: url("../images/transition-top.png"), url("../images/background-52.jpg");
  background-position: center top, center bottom;
  -moz-background-size: 100%, cover;
       background-size: 100%, cover;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .materials {
    padding-top: 150px;
  }
}

@media (min-width: 1900px) {
  .materials {
    background-image: url("../images/transition-top.png"), url("../images/background-52-2x-scale-2_00x.png");
  }
}

.webp .materials {
  background-image: url("../images/transition-top.webp"), url("../images/background-52.webp");
}

@media (min-width: 1900px) {
  .webp .materials {
    background-image: url("../images/transition-top.webp"), url("../images/background-52-2x-scale-2_00x.webp");
  }
}

.materials__title {
  margin-bottom: 30px;
}

.materials__easel {
  margin: 100px auto;
  padding: 25px;
  padding-bottom: 120px;
  -moz-border-radius: 6px;
       border-radius: 6px;
  background-color: #fff;
}

@media (min-width: 768px) {
  .materials__easel {
    padding: 50px 80px 40px 50px;
  }
}

.materials__easel:before, .materials__easel:after {
  content: '';
  position: absolute;
  left: 50%;
  display: block;
  -moz-background-size: contain;
       background-size: contain;
  background-repeat: no-repeat;
}

.materials__easel:before {
  top: 0;
  background-image: url("../images/easel-top.png");
  width: 290px;
  height: 100px;
  -webkit-transform: translate(-50%, -100%);
     -moz-transform: translate(-50%, -100%);
      -ms-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  background-position: center bottom;
}

.materials__easel:after {
  bottom: 0;
  background-image: url("../images/easel-bottom.png");
  width: 300%;
  height: 500px;
  -webkit-transform: translate(-50%, 270px);
     -moz-transform: translate(-50%, 270px);
      -ms-transform: translate(-50%, 270px);
          transform: translate(-50%, 270px);
  background-position: center top;
  -moz-background-size: auto 500px;
       background-size: auto 500px;
  z-index: 2;
}

@media (min-width: 1900) {
  .materials__easel:after {
    background-image: url("../images/easel-bottom-2x-scale-2_00x.png");
  }
}

.webp .materials__easel::before {
  background-image: url("../images/easel-top.webp");
}

.webp .materials__easel::after {
  background-image: url("../images/easel-bottom.webp");
}

@media (min-width: 1900px) {
  .webp .materials__easel::after {
    background-image: url("../images/easel-bottom-2x-scale-2_00x.webp");
  }
}

.materials__list {
  margin-left: 0;
  margin-bottom: 40px;
  padding-left: 50px;
}

.materials__list li + li {
  margin-top: 15px;
}

.materials__list li:before {
  left: -50px;
  width: 30px;
  height: 30px;
}

.materials__button {
  width: auto;
  min-width: unset;
  padding-left: 55px;
  padding-right: 55px;
}

@media (min-width: 768px) {
  .materials__button {
    width: 330px;
  }
}

.why {
  background-image: url("../images/transition-bottom.png"), url("../images/background-7.png");
  background-position: center bottom, center top;
  -moz-background-size: 100%, cover;
       background-size: 100%, cover;
  background-repeat: no-repeat;
}

@media (min-width: 1900px) {
  .why {
    background-image: url("../images/transition-bottom.png"), url("../images/background-7-2x-scale-2_00x.png");
  }
}

.webp .why {
  background-image: url("../images/transition-bottom.webp"), url("../images/background-7.webp");
}

@media (min-width: 1900px) {
  .webp .why {
    background-image: url("../images/transition-bottom.webp"), url("../images/background-7-2x-scale-2_00x.webp");
  }
}

.why__title {
  max-width: 880px;
  margin-bottom: 20px;
}

.why__intro {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.why__about {
  display: inline-block;
  width: 400px;
  margin-top: 30px;
  margin-right: 30px;
  font-size: 22px;
  line-height: 30px;
}

.why__dog {
  opacity: 0;
  position: relative;
  display: inline-block;
  width: 410px;
  height: 180px;
  padding: 65px;
  margin: 20px auto;
  font-size: 22px;
  background-image: url("../images/cloud-7.png");
  background-position: left center;
}

.why__dog, .why__dog:before {
  background-repeat: no-repeat;
  -moz-background-size: contain;
       background-size: contain;
}

.why__dog:before {
  content: '';
  position: absolute;
  right: 0;
  bottom: -10px;
  display: block;
  width: 125px;
  height: 120px;
  background-image: url("../images/dog-7.png");
}

@media (max-width: 500px) {
  .why__dog {
    margin-bottom: 150px;
  }
  .why__dog:before {
    bottom: -150px;
  }
}

@media (min-width: 992px) {
  .why__decoration {
    position: relative;
  }
  .why__decoration:after {
    content: '';
    position: absolute;
    right: -25px;
    bottom: 50px;
    width: 350px;
    height: 120%;
    background-image: url("../images/flower.png");
    -moz-background-size: contain;
         background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
  }
}

@media (min-width: 1200px) {
  .why__decoration:after {
    right: 0;
    width: 380px;
  }
}

@media (min-width: 992px) {
  .webp .why__decoration::after {
    background-image: url("../images/flower.webp");
  }
}

.why__explaination {
  max-width: 680px;
}

.animation-fade-in {
  -webkit-animation: fade-in .7s forwards ease-in;
     -moz-animation: fade-in .7s forwards ease-in;
          animation: fade-in .7s forwards ease-in;
}

@-webkit-keyframes fade-in {
  0% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    opacity: 0;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@-moz-keyframes fade-in {
  0% {
    -moz-transform: translateX(50%);
         transform: translateX(50%);
    opacity: 0;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    -moz-transform: translateX(0);
         transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    -webkit-transform: translateX(50%);
       -moz-transform: translateX(50%);
            transform: translateX(50%);
    opacity: 0;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

.expert {
  position: relative;
  padding-top: 100px;
  background-color: #f4f0e9;
  background-image: url("../images/transition-top.png"), url("../images/transition-bottom.png");
  -moz-background-size: 100%, 100%;
       background-size: 100%, 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center bottom;
}

.webp .excpert {
  background-image: url("../images/transition-top.webp"), url("../images/transition-bottom.webp");
}

.expert__cover {
  -webkit-flex-basis: 70%;
      -ms-flex-preferred-size: 70%;
          flex-basis: 70%;
  margin: 0 auto;
  max-height: 400px;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
     -moz-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

@media (min-width: 768px) {
  .expert__cover {
    max-height: 500px;
  }
}

@media (min-width: 992px) {
  .expert__cover {
    position: absolute;
    width: 60%;
    height: 100%;
    max-height: 800px;
    top: 0;
    left: 0;
  }
}

.expert__image {
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  display: block;
}

.expert__label {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-20%);
     -moz-transform: translateX(-20%);
      -ms-transform: translateX(-20%);
          transform: translateX(-20%);
}

@media (min-width: 992px) {
  .expert__label {
    bottom: 260px;
    left: 40%;
  }
}

.portfolio {
  position: relative;
}

.portfolio__title {
  font-family: "Lifehack Sans", "Times New Roman", Times, serif;
}

.portfolio__item {
  margin: 15px;
  width: 100%;
}

.portfolio__item img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .portfolio__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 30%;
       -moz-box-flex: 1;
        -ms-flex: 1 0 30%;
            flex: 1 0 30%;
  }
}

@media (min-width: 992px) {
  .portfolio__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 20%;
       -moz-box-flex: 1;
        -ms-flex: 1 0 20%;
            flex: 1 0 20%;
  }
}

@media (min-width: 768px) {
  .students__title {
    margin-bottom: 20px;
  }
}

.students__item {
  margin: 15px;
}

.students__item img {
  max-width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .students__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 40%;
       -moz-box-flex: 1;
        -ms-flex: 1 0 40%;
            flex: 1 0 40%;
  }
}

.students .button[data-mailiq-animation="fireworks"] img {
  margin-right: -20px;
}

@media (min-width: 768px) {
  .reviews__title {
    margin-bottom: 20px;
  }
}

.reviews__item {
  margin: 15px;
    box-shadow: 2px 10px 40px rgb(0 0 0 / 10%);
    border-radius: 10px;
    overflow: hidden;    
}

.reviews__item img {
  max-width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .reviews__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 45%;
       -moz-box-flex: 1;
        -ms-flex: 1 0 45%;
            flex: 1 0 45%;
  }
}

.you-can {
  padding: 100px 0;
  font-size: 25px;
  line-height: 30px;
  background-image: url("../images/transition-top.png"), url("../images/background-1.jpg");
  -moz-background-size: 100%, cover;
       background-size: 100%, cover;
  background-position: center top;
  background-repeat: no-repeat;
}

@media (min-width: 992px) and (max-width: 1199.97px) {
  .you-can {
    padding-bottom: 200px;
  }
}

@media (min-width: 1900px) {
  .you-can {
    background-image: url("../images/transition-top.png"), url("../images/background-1-2x-scale-2_00x.png");
  }
}

.webp .you-can {
  background-image: url("../images/transition-top.webp"), url("../images/background-1.webp");
}

@media (min-width: 1900px) {
  .webp .you-can {
    background-image: url("../images/transition-top.webp"), url("../images/background-1-2x-scale-2_00x.webp");
  }
}

.you-can__subtitle {
  font-size: 30px;
  line-height: 35px;
}

.you-can__bonus-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .you-can__bonus-wrap {
    width: 100%;
  }
}

.you-can__bonus-desc {
  margin-bottom: 30px;
  margin-top: 80px;
  width: 360px;
  text-align: left;
}

@media (min-width: 992px) {
  .you-can__bonus-desc {
    -webkit-align-self: baseline;
        -ms-flex-item-align: baseline;
            align-self: baseline;
  }
}

.you-can__bonus-preview {
  position: relative;
  width: 350px;
  height: 370px;
  background-image: url("../images/bonus.png");
  -moz-background-size: contain;
       background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 992px) and (max-width: 1199.97px) {
  .you-can__bonus-preview {
    position: absolute;
    bottom: -220px;
    left: 180px;
  }
}

.you-can__bonus-preview:before {
  position: absolute;
  top: 20px;
  left: -40px;
  -webkit-transform: rotate(50deg);
     -moz-transform: rotate(50deg);
      -ms-transform: rotate(50deg);
          transform: rotate(50deg);
  content: "";
  display: block;
  width: 65px;
  height: 65px;
  background-image: url("../images/arrow-2.png");
  -moz-background-size: contain;
       background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 992px) {
  .you-can__bonus-preview:before {
    top: 150px;
    left: -60px;
  }
}

@media (min-width: 768px) and (max-width: 991.97px), (min-width: 1200px) {
  .you-can__bonus-preview:before {
    top: unset;
    bottom: -20px;
    left: -40px;
    -webkit-transform: rotate(0deg);
       -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.webp .you-can__bonus-preview {
  background-image: url("../images/bonus.webp");
}

@media (min-width: 992px) {
  .you-can__widget {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
       -moz-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.modal-open .modal {
  background-color: rgba(72, 43, 117, 0.8);
}

.modal-open .modal-close {
  color: #fff;
  background: rgba(255, 255, 255, 0.35);
  background: -webkit-radial-gradient(68.75% 465.87% at 50% 50%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 100%), -webkit-radial-gradient(84.37% 84.37% at 50% 50%, rgba(255, 255, 255, 0.25) 34.9%, rgba(255, 255, 255, 0) 100%), rgba(72, 43, 117, 0.8);
  background: -moz-radial-gradient(68.75% 465.87% at 50% 50%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 100%), -moz-radial-gradient(84.37% 84.37% at 50% 50%, rgba(255, 255, 255, 0.25) 34.9%, rgba(255, 255, 255, 0) 100%), rgba(72, 43, 117, 0.8);
  background: radial-gradient(68.75% 465.87% at 50% 50%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(84.37% 84.37% at 50% 50%, rgba(255, 255, 255, 0.25) 34.9%, rgba(255, 255, 255, 0) 100%), rgba(72, 43, 117, 0.8);
  -moz-box-shadow: 0 0 7px 1px #5a5a5a;
       box-shadow: 0 0 7px 1px #5a5a5a;
}

.special-title {
  background-color: #ff0861;
  font-family: "Lifehack Sans", "Times New Roman", Times, serif;
  font-size: 2.5rem;
  color: #fff;
  -moz-border-radius: 0.5em;
       border-radius: 0.5em;
}

.upsell__button {
  padding: 15px 60px;
}

.upsell-first .bg_color_primary {
  background-color: #48b635;
}

.upsell-first .text_color_primary {
  color: #48b635;
}

.upsell-first a:hover {
  color: #48b635;
}

.upsell-first ul:not(.list-unstyled):not(.list_bullet):not(.flip) li:before {
  background-color: #48b635;
}

.upsell-first .button_primary {
  background-color: #48b635;
  background: -webkit-gradient(linear, left bottom, left top, from(#3bb635), to(#59b635));
  background: -webkit-linear-gradient(bottom, #3bb635 0%, #59b635 100%);
  background: -moz-linear-gradient(bottom, #3bb635 0%, #59b635 100%);
  background: linear-gradient(0deg, #3bb635 0%, #59b635 100%);
}

.upsell-first .price_current {
  color: #48b635;
}

.upsell-first .codes > a {
  color: #87d879;
  background-color: #ceefc8;
}

.upsell-first .codes > a.active, .upsell-first .codes > a:hover {
  color: #fff;
  background-color: #48b635;
}

.upsell-first .codes > a:active {
  background-color: rgba(72, 182, 53, 0.8);
}

.upsell-second .bg_color_primary {
  background-color: #3557b6;
}

.upsell-second .text_color_primary {
  color: #3557b6;
}

.upsell-second a:hover {
  color: #3557b6;
}

.upsell-second ul:not(.list-unstyled):not(.list_bullet):not(.flip) li:before {
  background-color: #3557b6;
}

.upsell-second .button_primary {
  background-color: #3557b6;
  background: -webkit-gradient(linear, left bottom, left top, from(#354ab6), to(#3568b6));
  background: -webkit-linear-gradient(bottom, #354ab6 0%, #3568b6 100%);
  background: -moz-linear-gradient(bottom, #354ab6 0%, #3568b6 100%);
  background: linear-gradient(0deg, #354ab6 0%, #3568b6 100%);
}

.upsell-second .price_current {
  color: #3557b6;
}

.upsell-second .codes > a {
  color: #7992d8;
  background-color: #c8d2ef;
}

.upsell-second .codes > a.active, .upsell-second .codes > a:hover {
  color: #fff;
  background-color: #3557b6;
}

.upsell-second .codes > a:active {
  background-color: rgba(53, 87, 182, 0.8);
}
