@charset "UTF-8";
/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul,
ol {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  font-family: 'Montserrat';
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
  color: #FFFFFF;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul,
ol {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a {
  text-decoration: none;
  color: inherit;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
  font-size: 10px;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  height: 100%;
  padding: 0 15px;
  height: 100%;
}

@font-face {
  font-family: 'Bebas Neue';
  src: url("../fonts/BebasNeueBold.woff2") format("woff2"), url("../fonts/BebasNeueBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

.header {
  position: absolute;
  background: transparent;
  width: 100%;
  z-index: 2;
  padding-top: 5px;
}

.header__burger {
  display: none;
}

.header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1 0;
          flex: 1 0;
}

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

.header__logo {
  font-family: 'Qwigley';
  font-style: normal;
  font-weight: normal;
  font-size: 58px;
  line-height: 72px;
  color: #FF9901;
  margin-right: 80px;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-item + .header__nav-item {
  margin-left: 55px;
}

.header__nav-link {
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.header__nav-link:hover {
  color: #FFCF26;
}

.header__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__social-item path {
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.header__social-item:hover path {
  fill: #FFCF26;
}

.header__social-item + .header__social-item {
  margin-left: 24px;
}

.header__search {
  width: 219px;
  height: 40px;
  position: relative;
}

.header__search-input {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background-color: transparent;
  border: 1px solid #fff;
  padding: 0 50px 0 20px;
}

.header__search-input:focus {
  outline: none;
}

.header__search-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__search-btn path {
  fill: #fff;
}

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero__slider {
  height: 100%;
}

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

.hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  position: absolute;
  top: 55%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.hero__info {
  width: 555px;
}

.hero__title {
  font-family: 'Bebas Neue';
  font-weight: bold;
  font-size: 70px;
  line-height: 70px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.hero__brand {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: bold;
  font-size: 190px;
  line-height: 190px;
  /* identical to box height */
  color: #FFCF26;
  text-shadow: 0px 4px 25px rgba(0, 0, 0, 0.55);
  margin-bottom: 60px;
}

.hero__btn {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  background: linear-gradient(89.82deg, #FF9900 1.49%, #FFB800 98.03%);
  -webkit-box-shadow: 0px 4px 25px rgba(255, 153, 0, 0.5);
          box-shadow: 0px 4px 25px rgba(255, 153, 0, 0.5);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 220px;
  height: 50px;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

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

.hero__img {
  width: 670px;
  height: 670px;
  overflow: hidden;
}

.hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.hero__slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero__slide-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__pagination {
  position: absolute;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 30px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero__pagination span {
  margin-bottom: 28px;
  position: relative;
  width: 23px;
  height: 23px;
  border: 1px solid transparent;
  background: transparent;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  opacity: 1;
}

.hero__pagination span.swiper-pagination-bullet-active {
  border-color: #fff;
}

.hero__pagination span:before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff !important;
  z-index: 3;
  border-radius: 50%;
}

.hero__arrow {
  position: absolute;
  left: 30px;
  bottom: 50px;
  z-index: 2;
  cursor: pointer;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.hero__arrow:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.lessons {
  background: url(../img/lessons-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  padding-top: 30px;
}

.lessons__outer {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.lessons__inner {
  width: 100%;
}

.lessons__title {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: bold;
  font-size: 52px;
  line-height: 52px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.lessons__suptitle {
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  color: #FFFFFF;
  max-width: 560px;
  margin: 0 auto 40px auto;
}

.lessons__slider {
  min-height: 449px;
  width: 100%;
}

.lessons__wrapper {
  height: 100%;
}

.lessons__slide {
  position: relative;
  width: 370px;
  height: 265px;
  cursor: pointer;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.lessons__slide.swiper-slide-active {
  width: 606px;
  height: 309px;
  margin-top: 100px;
  z-index: 2;
  -webkit-transform: scaleX(1.3);
          transform: scaleX(1.3);
  overflow-y: hidden;
}

.lessons__slide.swiper-slide-active > .lessons__img {
  width: 100%;
  height: 100%;
  -webkit-transform: scaleY(1.3);
          transform: scaleY(1.3);
  -o-object-fit: cover;
     object-fit: cover;
}

.lessons__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lessons__play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.lessons__play:hover {
  -webkit-transform: scale(1.2) translate(-50%, -50%);
          transform: scale(1.2) translate(-50%, -50%);
}

.lessons__arrow {
  position: absolute;
  bottom: 90px;
  width: 61px;
  height: 61px;
  z-index: 2;
  cursor: pointer;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.lessons__arrow:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.lessons__arrow-prev {
  left: 150px;
}

.lessons__arrow-next {
  right: 150px;
}

@media (max-width: 1500px) {
  .hero__img {
    width: 570px;
    height: 570px;
  }
  .lessons__outer {
    margin-top: -60px;
  }
}

@media (max-width: 1400px) {
  .hero__img {
    width: 498px;
    height: 498px;
  }
  .lessons__outer {
    margin-top: -50px;
  }
}

@media (max-width: 1350px) {
  .container {
    max-width: 1020px;
  }
}

@media (max-width: 1280px) {
  .hero__img {
    width: 450px;
    height: 450px;
  }
}

@media (max-width: 1180px) {
  .container {
    max-width: 890px;
  }
  .hero__title {
    font-size: 48px;
    line-height: 48px;
  }
  .hero__brand {
    font-size: 130px;
    line-height: 130px;
  }
  .header__logo {
    margin-right: 30px;
  }
  .header__search {
    margin-left: 0px;
  }
  .hero__info {
    width: 380px;
  }
  .header__nav-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header__nav-item + .header__nav-item {
    margin-left: 20px;
  }
  .hero__inner {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .hero__img {
    width: 435px;
    height: 435px;
  }
}

@media (max-width: 1025px) {
  .hero__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    position: relative;
    margin-top: 100px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .hero__title {
    font-size: 90px;
    line-height: 90px;
  }
  .hero__slider {
    overflow: hidden;
  }
  .hero__info {
    width: 100%;
  }
  .hero__brand {
    font-size: 200px;
    line-height: 200px;
    margin-bottom: 40px;
  }
  .hero__info {
    text-align: center;
  }
  .hero__btn {
    margin: 0 auto;
    width: 300px;
    height: 70px;
    font-size: 24px;
  }
  .hero__img {
    width: 700px;
    height: 700px;
    overflow: hidden;
  }
  .hero__img img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
    height: 100%;
  }
  .lessons__arrow-prev {
    left: 100px;
  }
  .lessons__arrow-next {
    right: 100px;
  }
  .lessons__suptitle {
    margin-bottom: 100px;
  }
}

@media (max-width: 1000px) {
  .hero__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
  .hero__img img {
    width: 72%;
    height: 72%;
    margin: 0 auto;
  }
  .hero__title {
    font-size: 60px;
    line-height: 60px;
  }
  .hero__brand {
    font-size: 150px;
    line-height: 150px;
  }
  .hero__info {
    text-align: center;
  }
  .hero__btn {
    margin: 0 auto;
    width: 300px;
    height: 60px;
    font-size: 22px;
  }
  .hero__img img {
    width: 72%;
    height: 72%;
    margin: 0 auto;
  }
  .header__burger {
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 0;
  }
  .header__burger span {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background: #fff;
    -webkit-transition: .3s ease;
    transition: .3s ease;
  }
  .header__burger::before, .header__burger::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    -webkit-transition: .3s ease;
    transition: .3s ease;
  }
  .header__burger::before {
    top: 0;
  }
  .header__burger::after {
    bottom: 0;
  }
  .header__main {
    position: absolute;
    display: block;
    width: 100%;
    height: 100vh;
    background: #fff;
    left: 0;
    top: 0;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 34px 0 50px;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .header__main.active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .header__social {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .header__search {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .header__nav {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__nav-link {
    color: #383838;
    font-weight: bold;
    font-size: 24px;
  }
  .header__nav-item:not(:last-child) {
    margin-bottom: 30px;
  }
  .header__nav-item + .header__nav-item {
    margin-left: 0;
  }
  .header__social-item path {
    fill: #3c3c3c;
  }
  .header__search-input {
    border-color: #9B9B9B;
    color: #a0a0a0;
  }
  .header__search-btn path {
    fill: #a1a1a1;
  }
  .header__burger-close {
    display: block;
    position: absolute;
    right: 30px;
    top: 34px;
    width: 44px;
    height: 44px;
    background: #EEEEEE;
    border-radius: 50%;
  }
  .header__burger-close::before, .header__burger-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 1px;
    background: #686868;
  }
  .header__burger-close::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .header__burger-close::after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
  .lessons {
    padding-top: 40px;
  }
  .lessons .container {
    padding: 0;
  }
  .lessons__slide.swiper-slide-active {
    width: 100%;
    height: 100%;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    margin-top: 0;
  }
  .lessons__slide.swiper-slide-active > .lessons__img {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  .lessons__slide {
    width: 100% !important;
    height: 100% !important;
  }
  .lessons__slider {
    min-height: 0;
    padding: 0 15px;
  }
  .lessons__arrow-next {
    right: 3px;
  }
  .lessons__arrow-prev {
    left: 3px;
  }
  .lessons__arrow {
    bottom: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 2;
    width: 30px;
    height: 30px;
  }
  .lessons__arrow:hover {
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
  }
  .lessons__suptitle {
    margin-bottom: 40px;
  }
  .lessons__outer {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 0;
  }
  .lessons__slider {
    padding: 0 50px;
  }
  .lessons__suptitle {
    margin-bottom: 100px;
  }
}

@media (max-width: 500px) {
  .hero__title {
    font-size: 42px;
    line-height: 42px;
  }
  .hero__brand {
    font-size: 120px;
    line-height: 120px;
    margin-bottom: 30px;
  }
  .hero__img {
    width: 361px;
    height: 361px;
  }
  .hero__img img {
    width: 100%;
    height: 100%;
  }
  .hero__slide {
    height: 100%;
  }
  
  .hero__btn:hover {
    transform: translateX(-50%) scale(1.05);
}
  
  .hero__btn {
    position: absolute;
    bottom: 120px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .hero__outer {
    height: 100%;
  }
  .hero__inner {
    height: 100%;
    margin-top: 0;
    padding-top: 100px;
  }
  .hero__btn {
    width: 220px;
    height: 49px;
    font-size: 18px;
  }
  .hero__pagination {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 25px;
    top: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .hero__pagination span {
    margin-bottom: 0;
  }
  .hero__arrow {
    display: none;
  }
  .header__main {
    padding: 34px 15px 60px;
  }
  .header__burger-close {
    top: 34px;
    right: 10px;
  }
  .header__burger.active {
    z-index: -1;
  }
  .header__search {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .lessons__title {
    font-size: 36px;
  }
  .lessons__suptitle {
    font-size: 16px;
    padding: 0 15px;
    margin-bottom: 40px;
  }
  .lessons__slider {
    padding: 0 15px;
  }
}

@media (max-height: 420px) {
  .hero__img {
    display: none;
  }
  .hero__title {
    font-size: 36px;
    line-height: 36px;
  }
  .hero__brand {
    font-size: 100px;
    line-height: 100px;
  }
  .hero__arrow {
    display: none;
  }
  .hero__inner {
    margin-top: 80px;
  }
  .lessons {
    height: auto;
  }
  .lessons__slider {
    padding: 0 20px;
    width: 100%;
  }
  .lessons__wrapper {
    width: 100%;
  }
  .lessons__suptitle {
    margin-bottom: 40px;
  }
}


.current-menu-item a {
  color: #FFCF26;  
}


.item-icon{
  background-color: #def5ee;
  width: 80px;
  height:80px;
  border-radius: 100%;
  display: flex;
  margin: 0 auto;
  margin-bottom: 20px;
}

.item-icon svg{
  color:#FFCF26;
  width: 40px;
  height: auto;
  align-self: center;
  margin:0 auto;
}

.swiper-container {
    overflow: hidden;
}

/*# sourceMappingURL=style.css.map */