.bg_color_primary {
  background-color: #cf2788;
}

.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: #cf2788;
  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: #cf2788;
  }
  .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%, #e83a9f), to(#a11a68));
  background-image: -webkit-linear-gradient(top, #e83a9f 4%, #a11a68 100%);
  background-image: -moz-linear-gradient(top, #e83a9f 4%, #a11a68 100%);
  background-image: linear-gradient(to bottom, #e83a9f 4%, #a11a68 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(207, 39, 136, 0.7);
       box-shadow: 0 0 15px rgba(207, 39, 136, 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: #e577b7;
  background-color: #f5cde4;
  -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: #cf2788;
}

.codes > a:active {
  background-color: rgba(207, 39, 136, 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: "Loccon", "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: #530d35 !important;
}

@font-face {
  font-family: "Loccon";
  font-weight: normal;
  src: url("../fonts/LOCKON.woff2?v=1"), url("../fonts/LOCKON.woff"), url("../fonts/LOCKON.svg"), url("../fonts/LOCKON.OTF"), url("../fonts/LOCKON.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: #cf2788;
}

.text_color_primary {
  color: #cf2788;
}

.text_color_white {
  color: #fff;
}

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

.text_size_biger {
  font-size: 1.08em;
}

.text_size_large {
  font-size: 1.7em;
}

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

.heading {
  font-size: 35px;
}

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

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

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

@media (max-width: 360px) {
  .main-heading {
    font-size: 40px;
  }
}

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

.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;
}

.webp .list_bullet li::before {
  background-image: url("../images/bullit.webp");
}

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

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: -30px;
  top: .7em;
  display: block;
  width: 10px;
  height: 10px;
  -moz-border-radius: 50%;
       border-radius: 50%;
  background-color: #cf2788;
  -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: inline-block;
  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;
}

.button_primary {
  background-color: #cf2788;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(4%, #e83a9f), to(#a11a68));
  background-image: -webkit-linear-gradient(top, #e83a9f 4%, #a11a68 100%);
  background-image: -moz-linear-gradient(top, #e83a9f 4%, #a11a68 100%);
  background-image: linear-gradient(to bottom, #e83a9f 4%, #a11a68 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);
  border-bottom: #713166 solid 2px;
}

.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);
  outline: none !important;
}

.button_primary, .button_primary:hover,
.button_gray,
.button_gray:hover {
  position: relative;
  cursor: pointer;
}

.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 0;
}

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

@media (min-width: 992px) {
  .main-navigation__menu .phone-block {
    margin-bottom: 20px;
  }
}

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

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

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

.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: #cf2788;
    border-color: #cf27a4;
  }
}

@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 {
    padding-bottom: 28px;
    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%, #e83a9f), to(#a11a68));
  background-image: -webkit-linear-gradient(top, #e83a9f 4%, #a11a68 100%);
  background-image: -moz-linear-gradient(top, #e83a9f 4%, #a11a68 100%);
  background-image: linear-gradient(to bottom, #e83a9f 4%, #a11a68 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(207, 39, 136, 0.7);
       box-shadow: 0 0 15px rgba(207, 39, 136, 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;
}

.dog,
.dog:before {
  display: block;
  -moz-background-size: contain;
       background-size: contain;
  background-repeat: no-repeat;
}

.dog {
  position: relative;
  max-width: 100%;
  width: 314px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 180px;
  font-size: 22px;
  line-height: 30px;
}

.dog:before {
  content: '';
  position: absolute;
  width: 125px;
  height: 119px;
  background-image: url("../images/dog-4.png");
  top: -150px;
  right: -150px;
}

@media (min-width: 500px) {
  .dog {
    padding-right: 150px;
    width: 464px;
    margin-top: 20px;
  }
  .dog:before {
    right: 0;
    top: 0;
  }
}

@media (max-width: 768px) {
  .dog {
    margin-left: auto;
    margin-right: auto;
  }
  .dog:before {
    right: 0;
  }
}

.dog-4 {
  width: 290px;
  height: 250px;
  margin-top: 20px;
  margin-bottom: 170px;
  padding: 10px 40px 45px 60px;
  font-size: 18px;
  line-height: 1.4;
  background-image: url("../images/dogs/cloud-4-1.png");
}

.dog-4::before {
  width: 185px;
  height: 174px;
  background-image: url("../images/dogs/dog-4.png");
  top: unset;
  bottom: -180px;
  left: 0;
}

@media (min-width: 490px) {
  .dog-4 {
    width: 470px;
    background-position: right top;
    padding-left: 240px;
    margin-bottom: 70px;
  }
  .dog-4::before {
    bottom: -50px;
  }
}

@media (min-width: 992px) {
  .dog-4 {
    width: 290px;
    margin-left: 150px;
    background-position: left top;
    padding-left: 60px;
  }
  .dog-4::before {
    top: unset;
    bottom: -90px;
    left: -150px;
  }
}

.dog-9,
.dog-10 {
  height: 170px;
  width: 269px;
  margin-top: 120px;
  margin-bottom: 70px;
  padding: 70px;
  background-image: url("../images/dogs/cloud-9.png");
}

.dog-9:before,
.dog-10:before {
  top: -120px;
  right: -15px;
  background-image: url("../images/dogs/dog-9.png");
}

@media (min-width: 500px) {
  .dog-9,
  .dog-10 {
    margin-top: 0;
    width: 420px;
  }
  .dog-9::before,
  .dog-10::before {
    top: -10px;
    right: 0;
  }
}

@media (min-width: 992px) {
  .dog-9,
  .dog-10 {
    width: 269px;
  }
  .dog-9::before,
  .dog-10::before {
    top: -10px;
    right: -150px;
  }
}

.dog-10 {
  width: 304px;
  height: 194px;
  padding: 60px 80px 60px 40px;
  margin-bottom: 0;
  background-image: url("../images/dogs/cloud-10.png");
}

.dog-10::before {
  background-image: url("../images/dogs/dog-10.png");
}

@media (min-width: 500px) {
  .dog-10 {
    width: 450px;
  }
  .dog-10::before {
    top: 0;
  }
}

@media (min-width: 992px) {
  .dog-10 {
    width: 304px;
  }
}

.dog-2 {
  width: 290px;
  height: 200px;
  margin-top: 130px;
  padding: 40px 40px 40px 100px;
  background-image: url("../marafon/images/dogs/cloud-2.png");
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}

.dog-2::before {
  left: 0;
  top: -100px;
  background-image: url("../marafon/images/dogs/dog-2.png");
}

@media (min-width: 470px) {
  .dog-2 {
    width: 450px;
    height: 290px;
    padding: 60px 90px 60px 150px;
    font-size: 20px;
  }
}

@media (min-width: 700px) {
  .dog-2 {
    width: 510px;
    height: 290px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    padding: 80px 70px 60px 200px;
    background-position: right top;
  }
  .dog-2::before {
    top: 80px;
    left: 0;
  }
}

@media (min-width: 1200px) {
  .dog-2::before {
    left: -50px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .dog-2 {
    margin-top: 60px;
    width: 450px;
    padding: 60px 90px 60px 150px;
  }
  .dog-2::before {
    left: -100px;
  }
}

.subscribe {
  position: relative;
  background-color: #fff;
  width: 100%;
  min-height: 350px;
  max-width: 400px;
  -moz-border-radius: 6px;
       border-radius: 6px;
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
       box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding-bottom: 40px;
}

@media (min-width: 430px) {
  .subscribe {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 849.97px) {
  .subscribe-top {
    margin-bottom: 450px !important;
  }
}

.greeting {
  margin-bottom: 180px;
}

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

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

@media (max-width: 992px) {
  .greeting__buttons {
    width: 100%;
    text-align: center;
  }
}

.greeting__cover {
  position: relative;
  max-height: 450px;
}

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

@media (min-width: 992px) {
  .greeting__cover {
    height: auto;
    max-height: none;
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
  }
}

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

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

.greeting__label {
  width: 290px;
  height: 60px;
  bottom: -30px;
  left: 50%;
  padding: 10px 20px;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (min-width: 992px) {
  .greeting__label {
    bottom: 5px;
    left: 50px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-transform: none;
       -moz-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

.greeting__button {
  width: 350px;
}

.programm {
  padding: 100px 0;
}

.programm__heading {
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .programm__heading {
    margin-bottom: 60px;
  }
}

.programm__heading-2 {
  font-size: 24px;
  font-weight: bold;
  line-height: 28px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .programm__heading-2 {
    font-size: 33px;
    line-height: 35px;
    max-width: 60%;
    margin-top: 30px;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
  }
}

.programm__label {
  position: absolute;
  top: 0;
  left: 50%;
  width: 120px;
  height: 40px;
  font-size: 18px;
  font-weight: bold;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  text-transform: uppercase;
  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;
  -moz-border-radius: 0 0 6px 6px;
       border-radius: 0 0 6px 6px;
  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%);
}

@media (min-width: 768px) {
  .programm__label {
    width: 160px;
    height: 60px;
    font-size: 20px;
  }
}

.programm__list {
  margin-bottom: 30px;
}

.programm__list > .col-12 {
  padding-bottom: 30px;
}

@media (min-width: 992px) {
  .programm__list_sketched .programm__item .card-img-top {
    height: 448px;
  }
  .programm__list_sketched .programm__sketch {
    top: 330px;
  }
}

@media (min-width: 1200px) {
  .programm__list_sketched .programm__item .card-img-top {
    height: 538px;
  }
  .programm__list_sketched .programm__sketch {
    top: 395px;
  }
}

.programm__item {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
  -moz-box-shadow: 5px 5px 30px rgba(75, 63, 42, 0.3);
       box-shadow: 5px 5px 30px rgba(75, 63, 42, 0.3);
  -moz-border-radius: 6px;
       border-radius: 6px;
  font-size: 20px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .programm__item .card-body {
    padding: 40px;
  }
}

.programm__item h3 {
  font-size: 25px;
  font-weight: bold;
}

.programm__item ul {
  padding-left: 20px;
}

.programm__title {
  font-weight: bold;
  font-size: 22px;
  line-height: 1.2;
  text-align: center;
}

@media (min-width: 992px) {
  .programm__title.programm__title_2em {
    min-height: 2.4em;
  }
  .programm__title.programm__title_3em {
    min-height: 3.7em;
  }
}

@media (min-width: 992px) {
  .programm__title {
    font-size: 20px;
  }
}

.programm__sketch {
  position: absolute;
  left: 15px;
  width: 30%;
  border: 10px solid #fff;
  -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);
}

.programm__sketch-image {
  max-width: 100%;
}

.programm__duration {
  margin-bottom: 20px;
  font-size: .9em;
  color: #676a76;
}

.materials {
  padding-bottom: 80px;
  overflow: hidden;
}

.materials__title {
  margin-bottom: 30px;
}

.materials__easel {
  position: relative;
  width: unset !important;
  padding: 50px 20px 150px;
  background-image: url("../images/materials/sheet.png");
  background-repeat: no-repeat;
  -moz-background-size: 100% 100%;
       background-size: 100% 100%;
  background-position: center center;
}

@media (min-width: 992px) {
  .materials__easel {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.materials__easel::before {
  position: absolute;
  bottom: -170px;
  right: -50px;
  content: "";
  display: block;
  width: 280px;
  height: 396px;
  background-image: url("../images/materials/paints.png");
  -moz-background-size: contain;
       background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 800px) {
  .materials__easel::before {
    width: 500px;
    right: -300px;
  }
}

@media (min-width: 992px) {
  .materials__easel::before {
    height: 500px;
    width: 550px;
    right: -300px;
    bottom: -220px;
  }
}

.webp .materials__easel {
  background-image: url("../images/materials/sheet.webp");
}

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

@media (min-width: 500px) and (max-width: 767.97px) {
  .materials__list {
    padding-left: 50px;
  }
}

@media (min-width: 768px) and (max-width: 991.97px) {
  .materials__list {
    padding-left: 60px;
  }
}

.expert {
  background-color: #fbf4eb;
}

.expert__text {
  position: relative;
  padding: 45px;
  background-color: #fff;
  -moz-border-radius: 6px;
       border-radius: 6px;
  margin: 50px 0;
}

@media (min-width: 992px) {
  .expert__text {
    -webkit-flex-basis: 50% !important;
        -ms-flex-preferred-size: 50% !important;
            flex-basis: 50% !important;
    margin-left: 25px;
  }
  .expert__text::before {
    position: absolute;
    left: 0;
    top: 40px;
    -webkit-transform: translateX(-50%) rotate(45deg);
       -moz-transform: translateX(-50%) rotate(45deg);
        -ms-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-color: #fff;
  }
}

.quotes::before, .quotes::after {
  position: absolute;
  content: "";
  display: block;
  width: 54px;
  height: 43px;
  background-repeat: no-repeat;
  -moz-background-size: contain;
       background-size: contain;
}

.quotes::before {
  top: -28px;
  left: 50px;
  background-image: url("../images/quotation-marks-1.png");
}

.quotes::after {
  bottom: -28px;
  right: 50px;
  background-image: url("../images/quotation-marks-2.png");
}

.expert__cover {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
              -ms-grid-row-align: center;
          align-self: center;
}

.expert__list {
  padding-left: 50px;
}

@media (min-width: 576px) {
  .expert__list {
    padding-left: 30px;
  }
}

@media (min-width: 992px) {
  .expert__list {
    margin-left: 0;
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
  }
}

.expert__label {
  bottom: 25px;
  left: 30px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 5px 20px;
  min-width: 290px;
}

.portfolio {
  position: relative;
  margin-top: 20px;
}

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

.portfolio__item {
  margin: 15px;
}

.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 40%;
       -moz-box-flex: 1;
        -ms-flex: 1 0 40%;
            flex: 1 0 40%;
  }
}

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

@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%;
  }
}

.reviews {
  padding: 30px 0;
}

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

.reviews__item {
  margin: 15px;
}

.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%;
  }
}

.bonus {
  position: relative;
  display: block;
  max-width: 350px;
}

.bonus img {
  display: block;
  max-width: 100%;
}

.bonus::before {
  position: absolute;
  right: 0;
  top: 0;
  content: '';
  display: block;
  width: 80px;
  height: 80px;
  background-image: url("../marafon/images/arrow1.png");
  background-repeat: no-repeat;
  -moz-background-size: contain;
       background-size: contain;
  -webkit-transform: rotate(70deg);
     -moz-transform: rotate(70deg);
      -ms-transform: rotate(70deg);
          transform: rotate(70deg);
}

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

@media (min-width: 992px) {
  .first-block {
    padding-top: 100px;
    background-image: url("../marafon/images/background-1.jpg");
    background-repeat: no-repeat;
    -moz-background-size: 100% 70%;
         background-size: 100% 70%;
    background-position: center top;
  }
}

@media (min-width: 1200px) {
  .first-block {
    -moz-background-size: 100% 78%;
         background-size: 100% 78%;
    background-position: center top;
  }
}

@media (min-width: 1400px) {
  .first-block {
    background-position: center top;
  }
}

.first-block__cta {
  max-width: 350px;
  margin-bottom: 45px;
}

.first-block__slogan b {
  max-width: 350px;
  margin-bottom: 25px;
}

@media (max-width: 992px) {
  .first-block__slogan b,
  .first-block__cta,
  .first-block__subscribe {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.first-block__bonus-wrap {
  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;
}

@media (max-width: 729.97px) {
  .first-block__bonus-wrap {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
       -moz-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.pretitle {
  display: block;
  font-family: "PT Sans", Helvetica, Arial, sans-serif;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #000;
}

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

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

@media (min-width: 991.7px) {
  .first-block__cover img {
    max-height: unset;
    width: 400px;
  }
}

@media (min-width: 992px) {
  .first-block__cover img {
    width: 800px;
  }
}

.first-block__text {
  line-height: 1.15;
}

@media (min-width: 730px) and (max-width: 991.97px) {
  .first-block__text {
    width: 350px;
    padding-right: 400px;
    margin-top: 60px;
    margin-bottom: 80px;
  }
}

.first-block_main {
  padding-top: 50px;
  overflow-x: hidden;
}

@media (min-width: 992px) {
  .first-block_main {
    position: relative;
  }
  .first-block_main .first-block__title {
    font-size: 40px;
  }
  .first-block_main .first-block__cover {
    position: absolute;
    right: -150px;
    width: 550px;
    max-width: unset;
  }
}

@media (min-width: 1200px) {
  .first-block_main {
    padding-bottom: 100px;
  }
  .first-block_main .first-block__title {
    font-size: 80px;
  }
  .first-block_main .first-block__cover {
    width: 800px;
    right: -200px;
  }
}

@media (min-width: 1400px) {
  .first-block_main .first-block__cover {
    width: 900px;
    right: -350px;
  }
}

.first-block__button-wrapper {
  margin-bottom: 40px;
}

.first-block__bonus {
  max-width: 380px !important;
  width: 100%;
  margin-top: 60px;
}

.first-block__bonus::before {
  position: absolute;
  top: -50px;
  left: 45%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-image: url("../marafon/images/arrow1.png");
  -moz-background-size: contain;
       background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 730px) {
  .first-block__bonus {
    position: absolute;
    top: -80px;
    right: 0;
    -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .first-block__bonus::before {
    top: 250px;
    left: -20px;
    -webkit-transform: scaleY(-1) rotate(-30deg);
       -moz-transform: scaleY(-1) rotate(-30deg);
        -ms-transform: scaleY(-1) rotate(-30deg);
            transform: scaleY(-1) rotate(-30deg);
  }
}

@media (min-width: 992px) {
  .first-block__bonus {
    margin-top: 0;
    top: 0;
    left: 0;
    -webkit-transform: translateX(100%);
       -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
  .first-block__bonus::before {
    top: -30px;
    left: 80px;
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}

.greeting {
  margin-bottom: 0;
  padding-bottom: 90px;
}

@media (max-width: 991.97px) {
  .greeting__title {
    margin-bottom: 40px;
  }
}

.greeting__label {
  background-color: rgba(255, 255, 255, 0.95);
}

.greeting__dog-text_hide {
  font-weight: inherit;
}

@media (max-width: 470px) {
  .greeting__dog-text_hide {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

.days {
  background-image: url("../marafon/images/background-3.jpg");
}

.days__heading {
  -webkit-box-flex: 0 !important;
  -webkit-flex: 0 0 35% !important;
     -moz-box-flex: 0 !important;
      -ms-flex: 0 0 35% !important;
          flex: 0 0 35% !important;
  line-height: 1.2;
  font-size: 40px;
}

.days__item {
  border: 10px solid #fff;
  -moz-border-radius: 6px;
       border-radius: 6px;
  margin-bottom: 30px;
  padding: 0 !important;
}

@media (min-width: 992px) {
  .days__item {
    position: relative;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 35%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
    margin-bottom: 15px;
    -webkit-transform: rotate(-3deg);
       -moz-transform: rotate(-3deg);
        -ms-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  .days__item.days__item_1, .days__item.days__item_3, .days__item.days__item_5 {
    margin-left: 30px;
  }
  .days__item.days__item_1 {
    -webkit-transform: rotate(2deg);
       -moz-transform: rotate(2deg);
        -ms-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  .days__item.days__item_2 {
    top: -200px;
    right: -10px;
    -webkit-transform: rotate(-4deg);
       -moz-transform: rotate(-4deg);
        -ms-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  .days__item.days__item_3 {
    left: -50px;
    -webkit-transform: rotate(-1deg);
       -moz-transform: rotate(-1deg);
        -ms-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  .days__item.days__item_4 {
    top: -120px;
    right: -10px;
  }
  .days__item.days__item_5 {
    left: -70px;
    -webkit-transform: rotate(4deg);
       -moz-transform: rotate(4deg);
        -ms-transform: rotate(4deg);
            transform: rotate(4deg);
  }
}

.days__label {
  top: 0;
  left: 0;
  font-weight: bold;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#ffcd48), to(#ffb804));
  background-image: -webkit-linear-gradient(top left, #ffcd48, #ffb804);
  background-image: -moz-linear-gradient(top left, #ffcd48, #ffb804);
  background-image: linear-gradient(to bottom right, #ffcd48, #ffb804);
  -moz-border-radius: 0 0 10px 0;
       border-radius: 0 0 10px 0;
  text-transform: uppercase;
  font-size: 18px;
  width: 120px;
  border: none;
  height: 55px;
}

.bonus-block {
  padding-top: 0px;
  font-size: 20px;
}

@media (min-width: 992px) {
  .bonus-block {
    background-image: url("../marafon/images/bonus/bonus.png");
    background-repeat: no-repeat;
    -moz-background-size: 400px;
         background-size: 400px;
    background-position: 100% 50%;
  }
}

@media (min-width: 1200px) {
  .bonus-block {
    background-position: 70% 50%;
  }
}

.bonus-block__subtitle {
  font-size: 24px;
}

.bonus-block p {
  margin-bottom: 5px;
}

.bonus-block__list {
  padding-left: 28px;
}

.expert {
  padding-bottom: 80px !important;
}

@media (min-width: 992px) {
  .expert__text {
    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;
    font-size: 22px;
  }
}

.expert__list {
  margin-top: 26px;
  font-size: 22px;
}

.why {
  padding: 100px 0;
  background-image: url("../images/background-9.jpg");
  background-position: center bottom;
  -moz-background-size: cover;
       background-size: cover;
  background-repeat: no-repeat;
}

.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;
  margin-top: 20px;
}

@media (min-width: 992px) {
  .why__intro {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

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

@media (min-width: 1200px) {
  .why__about {
    margin-right: 80px;
  }
}

.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;
  }
}

.why__item {
  position: relative;
  max-width: 100%;
  padding: 80px 52px 42px;
  border: 1px solid #ffaec3;
  -moz-border-radius: 5px;
       border-radius: 5px;
  font-size: 20px;
  text-align: center;
  height: 100%;
  background-color: #fff;
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
       box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.why__counter {
  position: absolute;
  top: 0;
  left: 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: 66px;
  height: 66px;
  font-family: "Loccon", "Times New Roman", Times, serif;
  font-size: 25px;
  color: #fff;
  -moz-border-radius: 50%;
       border-radius: 50%;
  background-image: url("../images/background-9.jpg");
  background-attachment: fixed;
  -moz-background-size: 100vw;
       background-size: 100vw;
  background-position: 40% 60%;
  border: 1px solid #ffaec3;
  border-top-color: transparent;
  border-right-color: transparent;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
     -moz-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.why__counter span {
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.why__counter::before {
  position: absolute;
  top: -1px;
  left: -3px;
  display: block;
  width: 70px;
  height: 32px;
  z-index: -1;
}

.why__counter::after {
  position: absolute;
  left: 6px;
  top: 6px;
  content: "";
  display: block;
  width: 52px;
  height: 52px;
  background-color: #ffaec3;
  -moz-border-radius: 50%;
       border-radius: 50%;
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
       box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.resume {
  background-image: url("../marafon/images/background-10.jpg");
}

.resume__subtitle {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 30px;
}

.resume__cta {
  display: block;
  max-width: 290px;
  margin-top: 30px;
  font-size: 22px;
  line-height: 1.2;
}

.resume__cta,
.resume__bonus,
.resume__subscribe {
  margin-left: auto;
  margin-right: auto;
}

.reviews__text {
  font-weight: bold;
  font-size: 20px;
}

@media (min-width: 400px) {
  .materials__list {
    margin-left: 20px;
  }
}

.floating-button__wrapper {
  position: relative;
}

.floating-button__button {
  position: absolute !important;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
     -moz-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}
