@charset "UTF-8";
.bg_color_primary {
  background-color: #cf2788;
}
main {
  overflow-x: hidden;
}

.portfolio-button, .students-button {
  margin-top: 20px !important;
}
.phone-block {
  display: flex;
  margin: 0;
  align-items: center;
}
.phone-block .icon {
  margin-right: 10px;
}
.phone-block a:last-of-type {
  color: inherit;
  font-size: 18px;
}
@media (min-width: 1199.98px) {
  .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;
  transition: transform 0.3s ease-in-out;
}
#mobileMenuButton .icon-menu {
  transform: translateY(0);
}
#mobileMenuButton:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "✕";
  transform: translateY(100px);
}
#mobileMenuButton[aria-expanded=true] .icon-menu {
  transform: translateY(-100px);
}
#mobileMenuButton[aria-expanded=true]:after {
  transform: translate(-50%, -50%);
}
@media (min-width: 991.98px) {
  #mobileMenuButton {
    display: none;
  }
}

.main-navigation {
  padding: 0;
  overflow-x: hidden;
  z-index: 100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: preShowMenu;
          animation-name: preShowMenu;
}
@media (min-width: 991.98px) {
  .main-navigation {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
  .main-navigation.main-navigation_cover-up {
    transform: translateY(-100%);
    box-shadow: none !important;
  }
}
@media (min-width: 991.98px) {
  .main-navigation .col-lg-9, .main-navigation .col-lg-3 {
    max-width: unset;
    width: auto;
    flex-basis: auto;
  }
  .main-navigation .col-lg-9 {
    flex-grow: 1;
  }
  .main-navigation .col-lg-3 {
    display: flex;
    align-items: center;
    padding-left: 50px;
  }
}
@media (min-width: 991.98px) and (max-width: 1197px) {
  .main-navigation .col-lg-9 {
    margin-right: -40px;
  }
}

@media (max-width: 991.98px) {
  .main-navigation__menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: unset;
    max-width: 100%;
    width: 320px;
    height: 100%;
    transform: translateX(100%);
    z-index: 101;
  }
  .main-navigation__menu.show {
    transform: translateX(0);
    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;
    -moz-column-width: 48%;
         column-width: 48%;
    -moz-column-count: 2;
         column-count: 2;
    -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;
    justify-content: center;
  }
}
@media (min-width: 991.98px) {
  .main-navigation__menu {
    padding-left: 11px;
    padding-right: 11px;
  }
}

@media (max-width: 991.98px) {
  .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 {
  flex-direction: column;
  padding: 0;
  margin: 0;
  font-size: 18px;
}
@media (min-width: 1199.98px) {
  .main-navigation__list {
    font-size: 20px;
  }
}

@-webkit-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: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding-left: 12px;
  border: 0;
  border-radius: 50%;
  background-image: linear-gradient(to bottom, #e83a9f 4%, #a11a68 100%);
  opacity: 0.9;
  overflow: hidden;
  font-size: 2rem;
  line-height: 0;
  color: #fff;
  transition: opacity 0.3s;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.custom-video__play-button:before {
  content: "";
  position: relative;
  left: 0.5rem;
  display: block;
  border: 0.9rem solid transparent;
  border-left: 1.3rem solid #fff;
}
.custom-video__play-button:hover {
  opacity: 1;
}
.custom-video__play-button:focus {
  outline: none;
  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");
  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: flex;
  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%;
    transform: translateX(-50%);
  }
  .flip-clock-label {
    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: 419.98px) {
  .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 {
    transform: translateY(-200%) translateX(-50%);
  }
  .flip-clock-dot.bottom {
    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: 767.98px) {
  .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;
  border-radius: 6px;
  transition: background-color 0.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;
  border-radius: 50%;
  color: white;
  padding-top: 6px;
  background: #3a6686;
  cursor: pointer;
  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);
  /*background-color: rgb(248, 227, 227, 0.5);*/
}

.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: 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);
  border-radius: 42px;
  box-shadow: 0 0 7px 1px #5a5a5a;
  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;
  border-radius: 0.5em;
}

.upsell__button {
  padding: 15px 60px;
}

.section {
  padding: 3rem 0;
}

footer {
  padding: 40px 0;
  background-color: #27272E !important;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 16px;
}

.footer-left__block {
  flex-wrap: wrap;
  margin-top: 45px;
  margin-left: -20px;
  width: 75%;
}
.footer-left__block p {
  margin-top: 25px;
}
.footer-center__block {
  margin-top: 50px;
}
.footer-right__block {
  margin-top: 45px;
}
.footer-right__block p {
  margin-bottom: 25px;
}

.icon-mail {
  margin-bottom: 15px;
}
.icon-mail-img {
  margin-right: 15px;
}
.icon-whatsup-img {
  margin-right: 15px;
}

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

.text_color_primary {
  color: #cf2788;
}

.text_color_white {
  color: #fff;
}

.text_size_small {
  font-size: 0.7em;
}

.text_size_biger {
  font-size: 1.08em;
}

.text_size_large {
  font-size: 1.7em;
}

.heading {
  margin-bottom: 48px;
}

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

.heading {
  font-size: 35px;
}
@media (max-width: 767.98px) {
  .heading {
    text-align: center !important;
  }
}
@media (min-width: 767.98px) {
  .heading {
    font-size: 56px;
  }
  .footer-left__block {
    margin-left:0;
  }
}
@media (max-width: 767.98px) {
  .footer-left__block {
    margin-left:0;
  }
}
.main-heading {
  font-size: 45px;
}
@media (max-width: 360px) {
  .main-heading {
    font-size: 40px;
  }
}
@media (min-width: 767.98px) {
  .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 0 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");
  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: 20px;
}
ul:not(.list-unstyled):not(.list_bullet):not(.flip) li {
  position: relative;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 24px;
}
ul:not(.list-unstyled):not(.list_bullet):not(.flip) li:before {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  left: -12px;
  top: 13px;
  background-color: #FD3D54;
  transform: translateY(-50%);
}

.materials__list {
  margin-top: -33px;
  margin-left: 25px;
  width: 535px;
}

.materials__list li {
  font-size: 24px !important;
  line-height: 32px !important;
}

.materials__list li:before {
  display: block !important;
  left: -37px !important;
  top: 13px !important;
  width: 23px !important;
  height: 22px !important;
  background-image: url(images/icons/icon-li.png) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}

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

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

.button {
  display: inline-block;
  padding: 18px 20px;
  min-width: 273px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 40px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-transform: uppercase;
}

.button_primary {
  color: #fff;
  border-bottom: #713166 solid 2px;
  background: linear-gradient(360deg, #FD3653 0%, #FE9A63 100%);
  box-shadow: inset 0px -2px 0px #d2223d;
  border-radius: 80px;
}
.button_primary:hover, .button_primary:active {
  color: #fff;
  text-decoration: none;
  background: linear-gradient(360deg, #FD3653 0%, #FB8A4D 100%);
  box-shadow: inset 0px 7px 10px rgba(210, 34, 61, 0.25), inset 0px -2px 0px #D2223D;
}

.button_gray {
  background-color: #676a76;
  background-image: linear-gradient(to bottom, #cdcdcd 0%, #a7a7a7 50%, #969696 100%);
  border-bottom-color: #a7a7a7;
  color: #fff;
}
.button_gray:hover {
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.button_primary,
.button_gray {
  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 {
  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;
          animation: shake 6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both infinite;
}

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

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

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

@keyframes startRocket {
  0% {
    transform: rotate(-45deg);
  }
  10% {
    transform: translateY(0) rotate(-45deg);
  }
  80% {
    transform: translateY(-240px) rotate(-60deg);
  }
  100% {
    transform: translateY(-300px) rotate(-30deg);
    opacity: 0;
  }
}
.label {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid #fff;
  border-radius: 10px;
  font-size: 16px;
  line-height: 22px;
  color: #3a3735;
  box-shadow: 5px 5px 30px rgba(75, 63, 42, 0.3);
}
@media (min-width: 767.98px) {
  .label {
    height: 80px;
    width: 270px;
  }
}

.label__text-before {
  order: -1;
}

.label__text-selected {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
}
@media (min-width: 767.98px) {
  .label__text-selected {
    font-size: 25px;
  }
}

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

.main-navigation__menu {
  padding: 20px 0 0;
}
@media (max-width: 991.98px) {
  .main-navigation__menu {
    padding: 70px 30px 50px;
    background-color: #fff;
  }
}
@media (min-width: 991.98px) {
  .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: 991.98px) {
  .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: 991.98px) {
  .main-navigation__list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    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;
  border-radius: 15px;
  box-shadow: 5px 5px 30px rgba(75, 63, 42, 0.3);
}

.custom-video__play-button {
  width: 60px;
  height: 60px;
  padding-left: 12px;
  border: 0;
  border-radius: 50%;
  background-image: linear-gradient(to bottom, #e83a9f 4%, #a11a68 100%);
  opacity: 0.9;
  overflow: hidden;
  font-size: 2rem;
  line-height: 0;
  color: #fff;
  transition: opacity 0.3s;
}
.custom-video__play-button:before {
  content: "";
  position: relative;
  left: 0.5rem;
  display: block;
  border: 0.9rem solid transparent;
  border-left: 1.3rem solid #fff;
}
.custom-video__play-button:hover {
  opacity: 1;
}
.custom-video__play-button:focus {
  outline: none;
  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");
  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;
  border-radius: 8px;
  box-shadow: 5px 5px 30px rgba(75, 63, 42, 0.3);
}

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

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

.dog {
  position: relative;
  max-width: 100%;
  width: 314px;
  display: flex;
  justify-content: flex-start;
  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: 767.98px) {
  .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: 991.98px) {
  .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: 419.98px;
  }
  .dog-9::before,
.dog-10::before {
    top: -10px;
    right: 0;
  }
}
@media (min-width: 991.98px) {
  .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: 991.98px) {
  .dog-10 {
    width: 304px;
  }
}

.dog-2 {
  width: 290px;
  height: 200px;
  margin-top: 130px;
  padding: 40px 40px 40px 100px;
  background-image: url("../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("../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: 1199.98px) {
  .dog-2::before {
    left: -50px;
  }
}
@media (min-width: 991.98px) and (max-width: 1199.98px) {
  .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;
  border-radius: 6px;
  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: 991.98px) {
  .greeting__buttons {
    width: 100%;
    text-align: center;
  }
}

.greeting__cover {
  position: relative;
  max-height: 450px;
}
@media (min-width: 767.98px) {
  .greeting__cover {
    height: 500px;
  }
}
@media (min-width: 991.98px) {
  .greeting__cover {
    height: auto;
    max-height: none;
    align-self: flex-start;
  }
}

.greeting__image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
}
@media (min-width: 991.98px) {
  .greeting__image {
    margin-top: 50px;
    max-height: 700px;
  }
}

.greeting__label {
  width: 290px;
  height: 60px;
  bottom: -30px;
  left: 50%;
  padding: 10px 20px;
  transform: translateX(-50%);
}
@media (min-width: 991.98px) {
  .greeting__label {
    bottom: 5px;
    left: 50px;
    align-items: flex-start;
    transform: none;
  }
}

.greeting__button {
  width: 350px;
}

.button-bonus {
  width: 485px;
  letter-spacing: 0.03em;
  margin-top: 10px;
}

.programm {
  padding: 100px 0;
}

.programm__heading {
  margin-bottom: 20px;
}
@media (min-width: 991.98px) {
  .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: 991.98px) {
  .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: 78%;
  left: 50%;
  width: 120px;
  height: 40px;
  font-size: 24px !important;
  font-weight: bold;
  transform: translateX(-50%);
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 6px 6px;
  color: #FD3D54;
  font-size: 24px;
  letter-spacing: 0.03em;
}
.programm__label-5 {
  top: 81%;
}
@media (min-width: 767.98px) {
  .programm__label {
    width: 160px;
    height: 60px;
    font-size: 20px;
  }
}

.card-img-top {
  border-radius: 20px 20px 0px 0px;
}

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

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

.programm__item {
  position: relative;
  height: 92%;
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 1.4;
  background: #FFFFFF;
  box-shadow: 0px 4px 11px rgba(201, 176, 189, 0.5);
  border-radius: 20px;
}

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

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

ul {
  padding-left: 20px;
}

.programm__title {
  line-height: 1.2;
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  width: 105%;
  margin-top: 20px;
}
@media (min-width: 991.98px) {
  .programm__title.programm__title_2em {
    font-size: 22px;
    line-height: 24px;
    width: 105%;
  }
  .programm__title.programm__title_3em {
    min-height: 3.7em;
    font-size: 22px;
    line-height: 24px;
    width: 105%;
  }
}
@media (min-width: 991.98px) {
  .programm__title {
    font-size: 22px;
    line-height: 24px;
    width: 105%;
  }
}

.programm__sketch {
  position: absolute;
  left: 15px;
  width: 30%;
  border: 10px solid #fff;
  border-radius: 5px;
  box-shadow: 5px 5px 30px rgba(75, 63, 42, 0.3);
}

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

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

.col-lg-5 {
  margin-bottom: -20px;
}

.text-black {
  color: black !important;
}

.promise {
  background-image: url(../images/marathon-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;

}

.promise__list-block {
  margin-bottom: 80px;
}

.heading-promise {
  margin-top: 44px;
}

.promise__item {
  border-radius: 8px;
  font-size: 20px;
  background-color: #fff;
  padding: 16px 24px;
  margin-bottom: 15px;
}

.promise__item p {
  border-left: 2px solid #FD3D54;
  margin: 0;
  padding-left: 15px;
  font-size: 18px;
  line-height: 24px;
}

.button_greeting {
  line-height: 24px;
  letter-spacing: 0.03em;
  margin-left: 30px;
}

.item-card-margin {
  margin-left: 105px;
}

.item-last {
  margin: 0 auto;
}

@media (max-width: 991px) {
  .item-card-margin {
    margin: 0 auto;
  }
  .first-block__title {
    margin-bottom: 60px;
  }
}
.materials {
  padding-bottom: 80px;
  overflow: hidden;
  margin-top: 80px;
}

.materials__title {
  margin-bottom: 30px;
}

.materials__easel::before {
  position: absolute;
  bottom: -170px;
  right: -50px;
  content: "";
  display: block;
  width: 280px;
  height: 396px;
}
@media (min-width: 800px) {
  .materials__easel::before {
    width: 500px;
    right: -300px;
  }
}
@media (min-width: 991.98px) {
  .materials__easel::before {
    height: 500px;
    width: 550px;
    right: -300px;
    bottom: -220px;
  }
}

.webp .materials__easel::before {
  background-image: url("../images/materials/material_img.jpg");
  background-size: 91% 60%;
  background-repeat: no-repeat;
  height: 526px;
  width: 613px;
  right: -268px;
  bottom: -206px;
}

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

.materials__easel {
  margin-bottom: 35px;
}

.expert {
  background-color: #F8E3E3;
  background-image: url('../images/expert_margarita.png');
  background-repeat: no-repeat;
  background-size: 653px;
  background-position: 71% 110px;
}

.expert__text {
  position: relative;
  padding: 45px;
  background-color: #fff;
  border-radius: 6px;
  margin: 50px 0;
}
@media (min-width: 991.98px) {
  .expert__text {
    flex-basis: 50% !important;
    margin-left: 25px;
  }
  .expert__text::before {
    position: absolute;
    left: 0;
    top: 40px;
    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;
  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 {
  align-self: center;
}

.expert__list {
  padding-left: 50px;
}
@media (min-width: 575.98px) {
  .expert__list {
    padding-left: 30px;
  }
}
@media (min-width: 991.98px) {
  .expert__list {
    margin-left: 0;
  }
}

.expert__label {
  bottom: 25px;
  left: 30px;
  align-items: flex-start;
  padding: 5px 20px;
  min-width: 290px;
}
.portfolio {
  position: relative;
  margin-top: 20px;
  margin-left: 0;
}

.portfolio__title {
  font-family: "Loccon", "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 40px;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 50px;
}

.portfolio__item {
  margin: 15px;
}
.portfolio__item img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 767.98px) {
  .portfolio__item {
    flex: 1 0 40%;
  }
}
@media (min-width: 991.98px) {
  .portfolio__item {
    flex: 1 0 40%;
  }
}

.students {
  margin-top: -55px;
}

.students__title {
  font-size: 40px !important;
  line-height: 40px !important;
  margin-top: 20px;
}
@media (min-width: 767.98px) {
  .students__title {
    margin-bottom: 20px;
  }
}

.students__item {
  margin: 15px 20px 15px 20px;
}
.students__item img {
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 767.98px) {
  .students__item {
    flex: 1 0 40%;
  }
}

.students-gallery {
  background-color: #F8E3E3;
  box-shadow: 0px 4px 5px rgba(194, 189, 203, 0.7);
  border-radius: 20px;
}

.reviews {
  padding: 30px 0;
}

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

.reviews__item {
  margin-top: 45px;
}
.reviews__item img {
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 767.98px) {
  .reviews__item {
    flex: 1 0 45%;
  }
}

.bonus {
  position: relative;
  display: block;
  max-width: 350px;
}
.bonus img {
  display: block;
  max-width: 59%;
  margin-left: 62px;
  margin-top: 59px;
}
.bonus::before {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-image: url("../images/arrow1.png");
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(70deg);
}

.button_materials {
  min-width: 235px;
}

.first-block {
  position: relative;
  padding-top: 20px;
  background-image: url("../images/background-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-position-y: -170px;
  font-size: 25px;
}
@media (min-width: 991.98px) {
  .first-block {
    padding-top: 100px;
    background-image: url("../images/background-1.jpg");
    background-repeat: no-repeat;
    background-size: 100% 70%;
    background-position: center top;
    background-position-y: -170px;
  }
}
@media (min-width: 1199.98px) {
  .first-block {
    background-size: 100% 78%;
    background-position: center top;
  }
}
@media (min-width: 1400px) {
  .first-block {
    background-position: center top;
  }
}
.first-block__cta {
  max-width: 620px;
  margin-bottom: 45px;
}

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

@media (max-width: 991.98px) {
  .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: flex;
  justify-content: center;
}
@media (max-width: 729.97px) {
  .first-block__bonus-wrap {
    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: 991.98px) {
  .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: 991.98px) {
  .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: -35px;
    margin-bottom: 80px;
  }
}

.first-block_main {
  padding-top: 50px;
  overflow-x: hidden;
}
@media (min-width: 991.98px) {
  .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: 1199.98px) {
  .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: 430px !important;
  width: 100%;
  margin-top: 60px;
}
.first-block__bonus::before {
  position: absolute;
  top: -50px;
  left: 45%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-image: url("../images/arrow1.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 730px) {
  .first-block__bonus {
    position: absolute;
    top: -80px;
    right: 0;
    transform: translateY(-100%);
  }
  .first-block__bonus::before {
    top: 250px;
    left: -20px;
    transform: scaleY(-1) rotate(-30deg);
  }
}
@media (min-width: 991.98px) {
  .first-block__bonus {
    margin-top: 0;
    top: 0;
    left: -65px;
    transform: translateX(100%);
  }
  .first-block__bonus::before {
    top: -30px;
    left: 80px;
    transform: translateX(0);
  }
}
@media (max-width: 991px) {
  .last-block__title {
    margin-bottom: -20px;
  }
}
.last-block {
  background-position-y: 0px;
  background-size: cover;
  margin-top: 80px;
  padding-bottom: 98px !important;
}

.first-block-img {
  position: absolute;
  width: 88%;
  height: 90%;
  overflow: hidden;
  top: -67px;
  left: 531px;
}

.last-block__cover-wrapper {
  margin-top: 65px;
}

.last-block__cta {
  margin-top: 60px;
}

.last-block-img {
  position: absolute;
  width: 92%;
  height: 127%;
  top: -118px;
  left: 520px;
  overflow: hidden;
}

@media (max-width: 1199.98px) {
  .img-fluid {
    max-width: 67%;
  }
  .programm__label {
    top: 74%;
  }
  .promise {
    background-size:cover;
  }
  .expert {
    background-position: 110% 110px;
  }
  .webp .materials__easel::before {
    background-image: unset;
  }
  .img-material {
    width: 100%;
  }
  .last-block-img {
    width: 151%;
    height: 127%;
    top: -100px;
    left: 431px;
  }
}
@media (max-width: 991.98px) {
  .img-fluid {
    display: none;
  }
  .last-block-img {
    display: none;
  }
  .first-block {
    background-position-y: unset;
  }
  .bonus__image {
    display: block;

  }
}
@media (max-width: 991px) {
  .item-card-margin {
    margin: 0 auto;
  }
  .programm__item {
    height: 100%;
  }
  .programm__label {
    margin-top: 57px;
    font-size: 35px !important;
  }
  .programm__title {
    margin-top: 60px;
    font-size: 28px;
    width: 100%;
  }
  .item-card-bot {
    margin-bottom: 60px;
  }
  .promise {
    background-position: -712px -4px;
    background-size: cover;
  }
  .promise__list {
    width: 100% !important;
  }
  .promise__ite .promise__item p {
    font-size: 25px;
  }
}
.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("../images/background-3.jpg");
}

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

.days__item {
  border: 10px solid #fff;
  border-radius: 6px;
  margin-bottom: 30px;
  padding: 0 !important;
}
@media (min-width: 991.98px) {
  .days__item {
    position: relative;
    flex: 0 0 35%;
    margin-bottom: 15px;
    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 {
    transform: rotate(2deg);
  }
  .days__item.days__item_2 {
    top: -200px;
    right: -10px;
    transform: rotate(-4deg);
  }
  .days__item.days__item_3 {
    left: -50px;
    transform: rotate(-1deg);
  }
  .days__item.days__item_4 {
    top: -120px;
    right: -10px;
  }
  .days__item.days__item_5 {
    left: -70px;
    transform: rotate(4deg);
  }
}

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

.bonus-block {
  padding-top: 80px;
  font-size: 20px;
  margin-bottom: 75px;
}

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

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

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

.bonus-title {
  font-size: 24px;
  line-height: 32px;
  margin-top: 30px;
}
.bonus-title-bottom {
  margin-top: 65px;
}

.bonus__image {
  max-width: 103%;
  height: auto;
  margin-top: -10px;
  margin-left: -17px;
}

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

.expert-title {
  margin-top: 35px;
}

@media (min-width: 991.98px) {
  .expert__text {
    display: flex;
    align-items: center;
    font-size: 22px;
  }
}

.expert__list {
  margin-top: 26px;
  font-size: 22px;
  padding-left: 35px;
  margin-left: 15px;
  margin-bottom: 115px;
}
.expert__list li {
  width: 560px;
  line-height: 26px;
}

.heading-expert {
  margin-bottom: 25px !important;
}

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

.why__intro {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-top: 20px;
}
@media (min-width: 991.98px) {
  .why__intro {
    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: 1199.98px) {
  .why__about {
    margin-right: 80px;
  }
}

.why__explaination {
  max-width: 680px;
}

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

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

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

.why__counter {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 66px;
  height: 66px;
  font-family: "Loccon", "Times New Roman", Times, serif;
  font-size: 25px;
  color: #fff;
  border-radius: 50%;
  background-image: url("images/background-9.jpg");
  background-attachment: fixed;
  background-size: 100vw;
  background-position: 40% 60%;
  border: 1px solid #ffaec3;
  border-top-color: transparent;
  border-right-color: transparent;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.why__counter span {
  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;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.resume {
  background-image: url("../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-block {
  margin-top: 80px;
}

.reviews__text {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  margin-top: 25px;
}

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

.floating-button__wrapper {
  position: relative;
}

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

.portfolio-button,
.students-button {
  position: unset !important;
  left: unset;
  bottom: unset;
  transform: unset;
  margin: 0 auto;
  margin-top: -10px;
  min-width: 235px;
  margin-bottom: 10px;
}/*# sourceMappingURL=style-marafon.css.map */

.img-material {
  display: none;
}

@media (max-width: 1199.98px) {
  .img-material {
    display: block;
  }
}

.programm__label-botanika {
  font-weight: bold;
  text-transform: uppercase;
  align-items: center;
  border-radius: 0 0 6px 6px;
  color: #FD3D54;
  font-size: 27px !important;
  letter-spacing: 0.03em;
  margin-bottom: 15px;
  flex: 0 0 auto;
  width: 100%;
}
.programm__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 5px;
}
.img-material {
  max-width: 100%;
}

.first-block__slogan {
  width: 670px;
  margin-bottom: 22px;
}

@media (max-width: 855px) {
  .bonus-ul li {
    font-size: 24px !important;
    line-height: 28px !important;
  }
  .expert {
    background-image: unset;
  }
  .img-expert {
    display: block;
    margin: 0 auto;
  }
  .expert__list li {
    margin: 0 auto !important;
    font-size: 23px !important;
    margin-top: 20px !important;
  }
  ul:not(.list-unstyled):not(.list_bullet):not(.flip) li:before {
    width: 8px;
    height: 8px;
    left: -18px;
    top: 13px;
  }
  ul:not(.list-unstyled):not(.list_bullet):not(.flip) {
    padding-left: 65px;
  }
  .last-block {
    background-size: unset;
    margin-top: unset;
    padding-bottom: unset;
    padding-top: unset;
  }
}


@media (max-width: 991.98px) {
  .portfolio {
    margin-top: -60px;
  }
  .expert {
    background-image: unset;
  }
  .img-expert {
    display: block;
    margin: 0 auto;
  }
  .expert__list li {
    margin: 0 auto !important;
    font-size: 23px !important;
    margin-top: 20px !important;
  }
  ul:not(.list-unstyled):not(.list_bullet):not(.flip) li:before {
    width: 8px;
    height: 8px;
    left: -18px;
    top: 13px;
  }
  ul:not(.list-unstyled):not(.list_bullet):not(.flip) {
    padding-left: 5px;
  }
}

@media (max-width: 855px) {

  .button-bonus {
    width: unset;
  }
  .gallery-box { 
    padding: 0;
  }
  .portfolio__title {
    margin-top: 40px;
  }
}


@media (max-width:767px) {
  .programm__label {
    top: 72%;
    width: 130px;
  }
  ul:not(.list-unstyled):not(.list_bullet):not(.flip) li {
    font-size: 24px !important  ;
  }
  .bonus__image {
    display: block;
  }
  .expert__list li {
  }
  .first-block__slogan {
    width: 350px;
  }
  .first-block__cta {
    width: 370px;
    margin-bottom: 230px;
  }
  .expert-title {
    margin: 0 auto;
  }
}

@media (max-width:546px) {
  .programm__label {
    top: 69%;
  }
}
@media (max-width: 572px) {
  .row {
    margin-right: 0;
    margin-left: 0;
  }
  .container {
    padding-right: unset;
    padding-left: unset;
    margin-right: unset;
    margin-left: unset;
  }
}

@media (max-width: 630px) {
  ul:not(.list-unstyled):not(.list_bullet):not(.flip) {
    padding-left: 15px;
  }
  .expert__list li {
    width: 500px;
    line-height: 30px !important;
  }
}
@media (max-width:425px) {
  .programm__label {
    top: 63%;
  }
  .button_greeting {
    margin-left: 25px;
  }
  .bonus__image {
    max-width: 100%;
    margin-left: 0;
  }
  .bonus-title {
    font-size: 28px;
    text-align: center;
  }

  .heading {
    font-size: 40px;
  }
  .materials__list li {
    width: 360px;
  }
  .last-block__cover-wrapper {
    margin-top: 30px;
  }
  .footer-left__block {
    max-width: 330px;
    margin-left: 55px;
  }
  .footer-right__block {
    max-width: 330px;
    margin-left: 55px;
  }
  .footer-center__block {
    max-width: 330px;
    margin-left: 55px;
  }






  .row {
    margin-right: 0;
    margin-left: 0;
  }
  .container {
    margin: 0;
    padding: 0;
  }
}


@media (max-width: 565px) {
  .expert__list li {
    width: 380px;
  }
  .materials__list li {
    width: 395px;
  }
}

@media (max-width:425px) {
  .expert__list li {
    width: 290px;
  }
  .materials__list li {
    width: 296px;
  }
  .footer-left__block, .footer-right__block, .footer-center__block {
    max-width: 230px;
    margin-left: 35px;
  }
  .promise__item {
    padding: 18px 10px;
  }
  .promise__item p {
    font-size: 20px;
  }

  .button_greeting {
    margin-left: 0;
  }
  .img-expert {
    max-width: 100%;
  }
  .programm__title {
    line-height: 30px;
  }
  .programm__label-4 {
    top: 59%;
  }
  .programm__label {
    font-size: 32px !important;
  }
  .programm__title {
    font-size: 27px;
  }
}

@media (max-width:375px) {
  .first-block__slogan {
    width: 340px;
  }
  .first-block__cta {
    width: 350px;
    margin-bottom: 50px;
  }
  .first-block__bonus::before {
    top: -35px;
  }
  .programm__label {
    position: unset;
    top: unset;
    left: unset;
    margin: 0 auto;
    margin-top: -46px;
    margin-bottom: 15px;
    margin-left: 48%;
  }
  .portfolio__title {
    margin-top: 40px;
  }
  .expert__list {
    margin-bottom: 20px;
  }
}

@media (max-width:344px) {
  .first-block__slogan {
    width: 240px;
  }
  .first-block__cta {
    width: 280px;
  }
  .programm__label {
    margin-left: 50%;
  }
  .heading {
    font-size: 36px;
  }
  .expert__list li {
    width: 245px;
  }
  .materials__list li {
    width: 220px;
  }
  .main-heading {
    margin-top: 30px;
  }
}


@media (max-width:425px) {
  .pretitle {
    margin-top: 40px;
  }
}

@media (max-width:729px) {
  .expert__portfolio {
    margin-top: 10px;
  }
  .first-block__cta {
    width: unset;
    margin-bottom: 47px;
  }
  .programm__label {
    top: 70%;
  }
  .programm__label-5 {
    top: 72%;
  }
  ul:not(.list-unstyled):not(.list_bullet):not(.flip) {
    padding-left: 15px;
  }
  .first-block__bonus::before {
    width: 64px;
    height: 63px;
    top: -45px;
    left: 36%;
  }
  .bonus img {
    margin-top: 15px;
  }
  .portfolio__title {
    margin-top: 30px;
  }
  .expert__list {
    margin-bottom: 30px;
  }
}


@media (max-width: 1999px) {
  .first-block-img {
    width: 83%;
    height: 90%;
    overflow: hidden;
    top: -68px;
    left: 552px;
  }
}


@media (max-width: 1199.98px) {

  .first-block-img {
    width: 128%;
    top: -50px;
    left: 420px;
  }
  .last-block-img {
    width: 159%;
    height: 130%;
    top: -118px;
    left: 272px;
  }
  .first-block {
    background-size: 100% 105%;
  }
  .first-block-img {
    width: 136%;
    height: 100%;
  }

}

.portfolio {
  margin: 0 auto !important;
}

@media (max-width: 575.98px) {
  .footer-left__block,
  .footer-right__block,
  .footer-center__block {
    margin-left: 0px;
  }
  .footer-left__block {
    width: 70%;
  }
}

@media (max-width: 572px) {
  .button_greeting {
    margin-left: 0px;
  }
}

@media (max-width: 419.98px) {
  .footer-left__block {
    width: 100%;
  }
}

@media (min-width: 1900px) {
  .first-block-img,
  .last-block-img {
    left: 716px;
  }
}