@font-face {
    font-family: 'Roboto';
    src: url(/assets/fonts/Roboto-Light.ttf) format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url(/assets/fonts/Roboto-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url(/assets/fonts/Roboto-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url(/assets/fonts/Roboto-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    padding: 0;
    margin: 0;
}

html {
    font-size: 20px;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
    color: #000;
    -webkit-box-sizing: border-box;
          box-sizing: border-box;
    overflow-x: hidden;
}

body.lock {
    padding-right: 15px;
    overflow-y: hidden;
}

a {
    text-decoration: none;
}

a:hover {
    color: initial;
    text-decoration: none;
}

p {
    margin-top: 0;
    margin-bottom: 0;
}

input:hover, input:focus {
    outline: none;
}

ul {
    padding: 0;
    margin: 0;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0;
}

.button {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    color: #FFFFFF;
    display: inline-block;
    border: none;
    border: none;
    border-radius: 50px;
    padding: 1.2rem 3rem;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
            transition: -webkit-transform 0.5s ease 0s;
    -o-transition: transform 0.5s ease 0s;
        transition: transform 0.5s ease 0s;
        transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
    background: #d07f00;
    background: -webkit-linear-gradient(96deg, #d07f00 0%, #ffe59b 100%);
    background: -o-linear-gradient(96deg, #d07f00 0%, #ffe59b 100%);
    background: linear-gradient(354deg, #d07f00 0%, #ffe59b 100%);
}

.button:hover {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
}

.container {
    width: 100%;
    max-width: 1190px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin: 0 auto;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    min-height: 100vh;
}

.wrapper main.course {
    flex: 1 1 auto;
}

.course {
    padding: 3.2rem 0 19rem 0;
}

.course__left {
    position: relative;
}

.course__left:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 10px;
    z-index: 5;
    
    width: 45%;
    height: 97%;

    border-right: 0.5px solid #CCCBCB;
    border-bottom: 0.5px solid #CCCBCB;
    filter: blur(1px);
    opacity: 0.5;
}

.course__left:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 46%;
    z-index: 6;
    transform: translateY(55%);
    
    width: 37px;
    height: 37px;
    
    background: url(/assets/images/circle.svg) center / 25px no-repeat;
    border-radius: 50%;
    border: 9px solid rgba(8, 194, 183, 0.2);
}

.course__photo {
    position: relative;
    width: 85%;
    height: 100%;
    max-height: 360px;
    border-radius: 10px;
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.course__photo:before {
    content: '';
    position: absolute;
    top: 46%;
    left: 60%;
    z-index: -1;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: url(/assets/images/frequent-bg-1.svg) center/contain no-repeat;
}

.course__photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
        object-fit: cover;
    -o-object-position: center;
        object-position: center;
    border-radius: 10px;
}

.course__content {
    
}

.course__title {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.9rem;
}

.course__text {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.7;
}

.section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.section__title {
    display: inline-block;
    margin-bottom: 3rem;
    
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.7;
    
    position: relative;
    z-index: 1;
}

.section__title:after {
    content: '';
    position: absolute;
    top: 0;
    z-index: -1;
    
    width: 245px;
    height: 55px;
    background: url(/assets/images/stroke.svg) center/contain no-repeat;
}

.section__title_left:after {
    left: 0;
}

.section__title_center:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

.section__title_right:after {
    right: 0;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
}

#questions {
    background: url(/assets/images/backgrounds/questions-bg.png) center center/auto 100% no-repeat;
}

.intro {
    padding-bottom: 5rem;
    background: url(/assets/images/backgrounds/intro-bg-3.png) calc(50% + 450px) bottom/auto 90% no-repeat, 
                url(/assets/images/backgrounds/intro-bg-2.svg) center bottom/auto 30% no-repeat, 
                url(/assets/images/backgrounds/intro-bg-1.jpg) center bottom/cover no-repeat;
}

.intro__body {
    padding: 3rem 2rem 7rem 2rem;
    max-width: 650px;
    background: rgb(222,222,222);
    background: radial-gradient(circle, rgba(222,222,222,1) 0%, rgba(196,196,196,0) 65%);
}

.intro__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #063A4C;
    position: relative;
    z-index: 1;
}

.intro__title:after {
    content: '';
    position: absolute;
    top: 0;
    left: -2rem;
    z-index: -1;
    
    width: 245px;
    height: 55px;
    background: url(/assets/images/stroke.svg) center/contain no-repeat;
}

.intro__list {
    list-style: none;
    margin-top: 2.5rem;
    margin-bottom: 3rem;
}

.intro__list-item {
    font-size: 1.1rem;
    font-weight: 500;
    color: #063A4C;
    
    position: relative;
    margin-left: 0.6rem;
    padding-left: 2rem;
}

.intro__list-item:not(:last-child) {
    margin-bottom: 1.9rem;
}

.intro__list-item:before {
    content: url(/assets/images/mark.svg);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    
    width: 1rem;
    height: 1rem;
}

.intro__button {
    position: relative;
}

.intro__button:after {
    content: url(/assets/images/airplane.svg);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    transform: translate(65%, -70%);
    
    width: 4rem;
    height: 4rem;
}

.header {
    position: fixed;
    width: 100%;
    z-index: 99;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    -webkit-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
            transition: all 0.5s ease 0s;
}

.header.fixed {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #FFE59B;
}

.header__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
             align-items: stretch;
}

.header.static {
    position: static;
    background-color: #FFE59B;
}

.header__burger {
    display: none;
}

.header__logo {
    -webkit-box-flex: 0;
         -ms-flex: 0 0 140px;
             flex: 0 0 140px;
}

.header__logo img {
    width: 100%;
}

.header__nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    list-style: none;
}

.header__nav-item {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.header__nav-link {
    font-size: 0.65rem;
    font-weight: 500;
    color: #000;
    
    position: relative;
    -webkit-transition: color 0.5s ease 0s;
        -o-transition: color 0.5s ease 0s;
        transition: color 0.5s ease 0s;
}

.header__nav-link:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 80px;
    height: 10px;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease 0s;
        -o-transition: opacity 0.5s ease 0s;
            transition: opacity 0.5s ease 0s;
    background: url(/assets/images/stroke-small.svg) center/100% no-repeat;
}

.header__nav-link.active:after,
.header__nav-link:hover:after {
    opacity: 1;
}

.header__number {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1rem;
    font-weight: 700;
    color: #063A4C;
    -webkit-transition: color 0.5s ease 0s;
        -o-transition: color 0.5s ease 0s;
            transition: color 0.5s ease 0s;
}

.header__number img {
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.burger {
    position: relative;
    top: 0;
    left: 0;
    z-index: 99;
    width: 30px;
    height: 25px;
}

.burger.active span {
    background-color: #000000;
    background-color: #FFFFFF;
}

.burger.active span:nth-child(1) {
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    top: calc(50% - 1.5px);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

.burger.active span:nth-child(2) {
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
}

.burger.active span:nth-child(3) {
    bottom: calc(50% - 1px);
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 5px;
    background-color: #3E96B4;
    -webkit-transition: all 300ms ease 0ms;
        -o-transition: all 300ms ease 0ms;
            transition: all 300ms ease 0ms;
}

.burger span:nth-child(1) {
    top: 0;
}

.burger span:nth-child(2) {
    top: calc(50% - 1.5px);
}

.burger span:nth-child(3) {
    bottom: 0;
}

.frequent:not(:last-child) {
    margin-bottom: 3rem;
}

.frequent__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}

.frequent__photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 160px;
            flex: 0 1 160px;
    position: relative;
    width: 100%;
    height: 160px;
    border-radius: 10px;
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.frequent__photo:before {
    content: '';
    position: absolute;
    top: 40%;
    left: 60%;
    z-index: -1;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: url(/assets/images/frequent-bg.svg) center/contain no-repeat;
}

.frequent__photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
        object-fit: cover;
    -o-object-position: center;
        object-position: center;
    border-radius: 10px;
}

.frequent:not(:last-child) .frequent__pin:before {
    width: calc(100% + 4rem);
}

.frequent__pin {
    position: relative;
    margin-top: 1.8rem;
    margin-bottom: 1.8rem;
}

.frequent__pin:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
          
    width: 100%;
    height: 0.5px;
    -webkit-filter: blur(2px);
            filter: blur(2px);
    background-color: #CCCBCB;
}

.frequent__pin > div {
    position: relative;
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    background-color: #08C2B7;
}

.frequent__pin > div:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    z-index: -1;
    
    width: 2rem;
    height: 2rem;
    border-radius: 100%;
    background-color: rgba(8, 194, 183, 0.2);
    -webkit-animation: pulse 1.4s ease 0s infinite;
            animation: pulse 1.4s ease 0s infinite;
}

.frequent__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
             align-items: flex-start;
    padding-left: 0.5rem;
}

.frequent__title {
  font-size: 0.9em;
  font-weight: 400;
  color: #000000;
}

.includes {
  background: url(/assets/images/backgrounds/includes-bg-2.png) calc(50% + 415px) bottom/auto 90% no-repeat,
              url(/assets/images/backgrounds/includes-bg-1.png) center/auto 110% no-repeat;
}

.include {
  margin-bottom: 70px;
}

.include__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
}

.include__photo {
    width: 110px;
    height: 100px;
    margin-bottom: 25px;
}

.include__photo img {
    width: 100%;
    height: 100%;
}

.include__title {
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 130px;
    text-align: start;
}

.example__body {
    position: relative;
}

.example .swiper-container {
    width: calc(100% - 120px);
    max-width: 870px;
    height: 65vh;
    max-height: 470px;
    border-radius: 10px;
    overflow: hidden;
}

.example .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.example__item {
  width: 100%;
  height: 100%;
}

.example .swiper-button-prev, 
.example .swiper-button-next {
  width: 2.5rem;
  height: 2.5rem;
}

.example .swiper-button-prev:after, 
.example .swiper-button-next:after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 16px;
  height: 28px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #C4C4C4;
}

.example .swiper-button-prev:before, 
.example .swiper-button-next:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 3px solid #C4C4C4;
  border-radius: 50%;
}

.example .swiper-button-prev {
  left: 0;
}

.example .swiper-button-next {
  right: 0;
}

.example .swiper-button-next:after {
  left: 55%;
}

.example .swiper-pagination {
  position: static;
  margin-top: 40px;
  margin-bottom: 10px;
}

.example .swiper-pagination-bullet {
  position: relative;
  opacity: 1;
  width: 15px;
  height: 15px;
  margin-left: 10px !important;
  margin-right: 10px !important;
  background-color: #08C2B7;
}

.example .swiper-pagination-bullet:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0px;
  height: 0px;
  border-radius: 100%;
  background-color: rgba(8, 194, 183, 0.2);
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.example .swiper-pagination-bullet-active:before {
  width: 30px;
  height: 30px;
}

.reviews {
  background: url(/assets/images/backgrounds/review-bg.svg) calc(50% - 695px) 60px/390px no-repeat;
}

.reviews__title {
    margin-bottom: 4rem;
}

.review {
  padding-left: 1.3rem;
  padding-right: 1.3rem;
  margin-bottom: 3rem;
}

.review__body {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 2px;
  -webkit-box-shadow: 2px 3px 3px 1px rgba(155, 155, 155, 0.25);
          box-shadow: 2px 3px 3px 1px rgba(155, 155, 155, 0.25);
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  padding: 3rem 1rem 1rem 1rem;
}

.review__body:hover:before {
  -webkit-transform: rotate(5deg);
      -ms-transform: rotate(5deg);
          transform: rotate(5deg);
}

.review__body:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  -webkit-transform: rotate(-5deg);
      -ms-transform: rotate(-5deg);
          transform: rotate(-5deg);
  width: 100%;
  height: 100%;
  border-radius: 2px;
  -webkit-box-shadow: 2px 3px 7px 0px rgba(105, 105, 105, 0.25);
          box-shadow: 2px 3px 7px 0px rgba(105, 105, 105, 0.25);
  background-color: #EDEFEE;
  -webkit-transition: -webkit-transform 1s ease 0s;
  transition: -webkit-transform 1s ease 0s;
  -o-transition: transform 1s ease 0s;
  transition: transform 1s ease 0s;
  transition: transform 1s ease 0s, -webkit-transform 1s ease 0s;
}

.review__title {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 15px;
  position: relative;
}

.review__title:before {
  content: '';
  position: absolute;
  top: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: url(/assets/images/pin.png) center/contain no-repeat;
}

.review__raiting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 15px;
}

.review__raiting > div:not(:last-child) {
  margin-right: 3px;
}

.review__start img {
  width: 20px;
  height: 20px;
}

.review__text {
  font-size: 0.7rem;
  font-weight: 300;
}

.review__photo {
    position: relative;
    width: 100%;
    height: 100%;
}

.review__photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
        object-fit: cover;
    -o-object-position: center;
        object-position: center;
}

.review__photo:before {
  content: '';
  position: absolute;
  top: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: url(/assets/images/pin.png) center/contain no-repeat;
}

.about-us {
  background: url(/assets/images/backgrounds/about-us-bg.png) calc(50% - 1100px) bottom/auto 100% no-repeat;
  padding-bottom: 12rem;
}

.about-us__body > div {
    padding-bottom: 2rem;
}

.about-us__text {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
}

.about-us__video {
    position: relative;
    height: 430px;
    max-height: 90vh;
    border-radius: 0.5rem;
    overflow: hidden;
}

.lazy-iframe iframe {
    width: 100%;
    height: 100%;
}

.lazy-iframe__poster {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    cursor: pointer;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 1;
    -webkit-transition: opacity 1s ease 0s,
                        width 0s ease 1s,
                        height 0s ease 1s;
        -o-transition: opacity 1s ease 0s,
                        width 0s ease 1s,
                        height 0s ease 1s;
            transition: opacity 1s ease 0s,
                        width 0s ease 1s,
                        height 0s ease 1s;
}

.lazy-iframe__poster.hidden {
  opacity: 0;
  width: 0;
  height: 0;
}

.lazy-iframe__poster img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.lazy-iframe__button {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: none;
    border-radius: 50%;
    background: url(/assets/images/play-button-bg.svg) center/cover no-repeat rgba(8, 194, 183, 0.1);
    -webkit-transition: -webkit-transform 0.5s ease 0s;
            transition: -webkit-transform 0.5s ease 0s;
    -o-transition: transform 0.5s ease 0s;
        transition: transform 0.5s ease 0s;
        transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.lazy-iframe__button:hover {
    -webkit-transform: translate(-50%, -50%) rotate(360deg) scale(1.05);
        -ms-transform: translate(-50%, -50%) rotate(360deg) scale(1.05);
            transform: translate(-50%, -50%) rotate(360deg) scale(1.05);
}

.lazy-iframe__button.loading {
    background: url(/assets/images/play-button-border.svg) center/cover no-repeat rgba(8, 194, 183, 0.1);
    -webkit-animation: spin 2000ms linear 0ms infinite;
            animation: spin 2000ms linear 0ms infinite;
}

.footer {
    position: relative;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
    background-color: #063A4C;
}

.footer:before {
    content: '';
    position: absolute;
    top: -140px;
    left: 0;
    width: 100%;
    height: 140px;
    background: url(/assets/images/backgrounds/footer-wave.png) bottom/auto 100% no-repeat;
}

.footer__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.footer__link {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: #FFFFFF;
}

.footer__link:hover {
    color: #FFFFFF;
}

.footer__list {
    list-style: none;
}

.footer__list-item {
    margin-bottom: 0.3rem;
}

.footer__copyright {
    position: relative;
    font-size: 0.9rem;
    font-weight: 300;
    color: #FFFFFF;
}

.footer__copyright:before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 145px;
    height: 10px;
    background: url(/assets/images/stroke-small.svg) center/contain no-repeat;
}

.footer__copyright span {
    font-size: 0.9rem;
    line-height: 1.4em;
}

.modal .request-form input {
    border-radius: 10px;
}

.modal-backdrop {
  background-color: #DEDEDE;
  opacity: 0.8;
}

.modal-content {
  background: url(/assets/images/backgrounds/modal-bg.jpg) center/cover no-repeat #86BECF;
}

.modal-header {
  border: none;
  border-radius: 0;
}

.modal-title {
  font-size: 1rem;
  font-weight: 300;
  color: #FFFFFF;
}

.modal-title span {
  font-weight: 500;
}

.modal-close {
  width: 40px;
  height: 40px;
  border: none;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  -o-transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  background: url(/assets/images/close-button-bg.svg) center/cover no-repeat;
}

.modal-close:active {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
}

.request-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.request-form input {
  font-size: 0.6rem;
  font-weight: 400;
  line-height: 1;
  color: #656565;
  border: none;
  padding: 0.8rem 1.5rem;
  margin-bottom: 1rem;
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
  background-color: #FFFFFF;
}

.request-form input::-webkit-input-placeholder {
  color: #656565;
}

.request-form input:-ms-input-placeholder {
  color: #656565;
}

.request-form input::-ms-input-placeholder {
  color: #656565;
}

.request-form input::placeholder {
  color: #656565;
}

.request-form input[type=checkbox] {
    position: absolute;
    top: 3px;
    left: 0;
    z-index: -1;
    
    width: 16px;
    height: 16px;
    margin-bottom: 0;
    opacity: 0;
}

.request-form input[type=checkbox] ~ label {
    position: relative;
    top: 3px;
    
    display: inline-block;
    width: 16px;
    height: 16px;
    
    -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
    background: center/cover no-repeat  #FFFFFF;
    margin-right: 0.5rem;
}

.request-form input[type=checkbox]:checked ~ label {
    background-image: url(/assets/images/mark.svg);
}

.request-form label {
    position: relative;
    font-size: 0.7rem;
    font-weight: 400;
    line-height: 1.3;
    color: #656565;
    cursor: pointer;
}

@media (min-width: 992px) {
  /* .review:nth-child(3n + 2) {
    position: relative;
    top: 3rem;
  } */
  
  .about-us__body > div {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .about-us__body > div:first-child {
    border-top: 3px solid #08C2B7;
  }
  
  .about-us__body > div:first-child:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 2rem;
    background-color: #08C2B7;
  }
  
  .about-us__body > div:last-child {
    padding-left: 3rem;
    margin-top: 2rem;
  }
  
  .about-us__body > div:last-child:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 3px;
    background-color: #08C2B7;
  }
}

@media screen and (max-width: 1249px) {
    .intro__list {
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 1199px) {
  .intro__title {
    font-size: calc(30px + 20 * (100vw - 320px) / 880) !important;
  }
  
  .section__title {
    font-size: calc(22px + 12 * (100vw - 320px) / 880) !important;
  }
}

@media screen and (max-width: 991px) {
  .header__burger {
    display: block;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  
  .header__nav {
    position: fixed;
    top: -100%;
    left: 0;
    z-index: 98;
    -webkit-transition: all 500ms cubic-bezier(0.09, 0.57, 0.46, 1.35) 0ms;
    -o-transition: all 500ms cubic-bezier(0.09, 0.57, 0.46, 1.35) 0ms;
    transition: all 500ms cubic-bezier(0.09, 0.57, 0.46, 1.35) 0ms;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    width: 100%;
    height: 100%;
    background-color: #FFCA77;
    overflow-y: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .header__nav.active {
    top: 0;
  }
  
  .header__nav-item {
    margin-bottom: 1rem;
  }
  
  .header__nav-link {
    font-size: 1rem;
    color: #000000;
    color: #FFFFFF;
  }
  
  .header__nav-link:hover {
    color: #FFFFFF;
  }
  
  .header__number {
    position: relative;
  }
  
  .header__number span {
    position: absolute;
    right: 3rem;
    white-space: nowrap;
  }
}

@media screen and (max-width: 767px) {
  .header__number span {
    display: none;
  }
  .example .swiper-container {
    width: 100%;
  }
  .example .swiper-button-prev {
    left: -15px;
  }
  .example .swiper-button-next {
    right: -15px;
  }
  .includes {
    background: url(/assets/images/backgrounds/includes-bg-1.png) center/auto 110% no-repeat;
}
}

@media screen and (min-width: 576px) {
    .frequent:nth-child(even) .frequent__photo {
        -webkit-box-shadow: 4px 0 4px 0 rgba(0, 0, 0, 0.25);
                box-shadow: 4px 0 4px 0 rgba(0, 0, 0, 0.25);
        -webkit-box-ordinal-group: 4;
                -ms-flex-order: 3;
                        order: 3;
  }
  
  .frequent:nth-child(1) .frequent__photo:before,
  .frequent:nth-child(4) .frequent__photo:before {
    -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
    top: 40%;
    left: 60%;
  }
  
  .frequent:nth-child(2) .frequent__photo:before,
  .frequent:nth-child(3) .frequent__photo:before {
    -webkit-transform: translate(-50%, -50%) scale(-1, -1);
        -ms-transform: translate(-50%, -50%) scale(-1, -1);
            transform: translate(-50%, -50%) scale(-1, -1);
    top: 60%;
    left: 40%;
  }
  
  .frequent:nth-child(5) .frequent__photo:before {
    -webkit-transform: translate(-50%, -50%) scale(-1, 1);
        -ms-transform: translate(-50%, -50%) scale(-1, 1);
            transform: translate(-50%, -50%) scale(-1, 1);
    top: 40%;
    left: 40%;
  }
  
  .frequent:nth-child(even) .frequent__pin {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  
  .frequent:nth-child(even) .frequent__pin > div:after {
    -webkit-animation: pulse 1.4s ease 0.7s infinite;
            animation: pulse 1.4s ease 0.7s infinite;
  }
  
  .frequent:nth-child(even) .frequent__content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  
  .frequent__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 160px;
            flex: 0 1 160px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (max-width: 424px) {
    .button {
        padding: 1.2rem 1.5rem;
    }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
