html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  color: rgb(63, 63, 63);
  background-color: rgb(246, 246, 246);
}

body.lock {
  overflow: hidden;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  margin: 0 auto;
}

.footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

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

.btn {
  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;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: rgb(63, 63, 63);
  font-family: "Mulish", sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 25px;
  padding: 20px 60px;
  border-radius: 30px;
  -webkit-transition: linear 0.3s;
  -o-transition: linear 0.3s;
  transition: linear 0.3s;
}
.btn:hover {
  -webkit-transform: translate(-2px, -2px);
      -ms-transform: translate(-2px, -2px);
          transform: translate(-2px, -2px);
}
.btn--yellow {
  background: rgb(253, 231, 76);
}
.btn--yellow:hover {
  background-color: #7DD0FF;
}
.btn--blue {
  background-color: #7DD0FF;
}
.btn--blue:hover {
  background: rgb(253, 231, 76);
}

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

.title {
  color: rgb(63, 63, 63);
  font-family: "Mulish", sans-serif;
  font-size: 60px;
  font-weight: 900;
  line-height: 100%;
}

.element-animation {
  opacity: 0;
  -webkit-transform: translateY(3rem);
      -ms-transform: translateY(3rem);
          transform: translateY(3rem);
  -webkit-transition: linear 0.7s;
  -o-transition: linear 0.7s;
  transition: linear 0.7s;
}

.element-animation.element-show {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
  background-color: rgba(246, 246, 246, 0.7);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  -webkit-transition: linear 0.2s;
  -o-transition: linear 0.2s;
  transition: linear 0.2s;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 0;
  max-width: 1445px;
  margin: 0 auto;
  height: 94px;
}
.header__logo {
  width: 244px;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header nav {
  margin: 0 90px 0 auto;
}
.header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header nav li {
  margin: 0 0 0 60px;
}
.header nav a {
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  -webkit-transition: linear 0.2s;
  -o-transition: linear 0.2s;
  transition: linear 0.2s;
}
.header nav a:hover {
  -webkit-text-decoration-color: rgb(63, 63, 63);
          text-decoration-color: rgb(63, 63, 63);
}
.header .btn {
  padding: 16px 35px;
  font-size: 20px;
}
.header__menu-btn {
  display: none;
}
.header .btn--mob {
  display: none;
}

.intro {
  padding: 135px 0 130px;
  margin: 94px 0 0 0;
}
.intro__inner {
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.intro .modal__parallax {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: linear 0.3s;
  -o-transition: linear 0.3s;
  transition: linear 0.3s;
}
.intro .modal__parallax:nth-child(1) {
  top: -22%;
  left: -3%;
  width: 360px;
}
.intro .modal__parallax:nth-child(2) {
  bottom: -17%;
  left: 2%;
  width: 300px;
}
.intro .modal__parallax:nth-child(3) {
  bottom: 1%;
  left: -3%;
  width: 105px;
  -webkit-animation: rotate 15s normal linear infinite;
          animation: rotate 15s normal linear infinite;
}
.intro .modal__parallax:nth-child(4) {
  width: 140px;
  top: -60px;
  right: 130px;
  -webkit-animation: rotate 25s normal linear infinite;
          animation: rotate 25s normal linear infinite;
}
.intro .modal__parallax:nth-child(5) {
  bottom: -50%;
  right: 1%;
  width: 319px;
}
.intro h1 {
  max-width: 950px;
  margin: 0 auto 30px;
  font-family: "Mulish", sans-serif;
  font-size: 100px;
  font-weight: 900;
  line-height: 100%;
  text-align: center;
}
.intro p {
  margin: 0 0 50px 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
}
.intro .btn {
  margin: 0 auto;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }
  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }
  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }
  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }
  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

.excellence {
  padding: 135px 0 0;
}
.excellence .container {
  max-width: 1470px;
}
.excellence .title {
  margin: 0 0 40px 0;
}
.excellence ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 0 -30px;
}
.excellence__item {
  background-color: #fff;
  width: calc(33.33333% - 30px);
  margin: 0 0 30px 30px;
  border-radius: 20px;
  padding: 10px;
  overflow: hidden;
}
.excellence__item:nth-child(1) {
  background-color: transparent;
}
.excellence__item:nth-child(1) img {
  width: 85%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.excellence__item:nth-child(6) {
  background-color: transparent;
}
.excellence__item:nth-child(6) img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.excellence__item-inner {
  padding: 40px 20px 25px;
  border: 1px solid rgba(63, 63, 63, 0.2);
  border-radius: 20px;
  height: 100%;
}
.excellence h6 {
  margin: 0 0 20px 0;
  font-family: "Mulish", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 120%;
}
.excellence p {
  margin: 0 0 15px 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.mission {
  padding: 110px 0 80px;
}
.mission .container {
  max-width: 1540px;
}
.mission__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid rgba(63, 63, 63, 0.2);
  border-radius: 20px;
  background: rgb(255, 255, 255);
}
.mission__wrapper {
  padding: 30px;
  border-radius: 20px;
  background: rgb(255, 255, 255);
}
.mission__left {
  margin: 0 50px 0 -60px;
  max-width: 660px;
  height: 620px;
  width: 100%;
  -webkit-transform: rotate(5deg);
      -ms-transform: rotate(5deg);
          transform: rotate(5deg);
  position: relative;
}
.mission__left::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(-8deg);
      -ms-transform: rotate(-8deg);
          transform: rotate(-8deg);
  border-radius: 20px;
  background: rgb(182, 156, 224);
  z-index: -1;
}
.mission__left img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mission__right {
  padding: 50px 40px;
}
.mission__item {
  margin: 0 0 40px 0;
}
.mission h6 {
  margin: 0 0 20px 0;
  font-family: "Mulish", sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 120%;
}
.mission p {
  margin: 0 0 15px 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}
.mission__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mission .btn {
  padding: 20px 28px;
}
.mission .btn--yellow {
  margin: 0 20px 0 0;
}

.join {
  padding: 75px 0 25px;
}
.join .container {
  max-width: 1640px;
}
.join__inner {
  padding: 70px 30px;
  background-repeat: no-repeat !important;
  background-size: 97% !important;
  background-position: center !important;
  border-radius: 50px;
  background: rgb(81, 141, 236);
}
.join h3 {
  max-width: 1200px;
  margin: 0 auto 20px;
  color: rgb(255, 255, 255);
  font-family: "Mulish", sans-serif;
  font-size: 50px;
  font-weight: 900;
  line-height: 120%;
  text-align: center;
}
.join p {
  max-width: 950px;
  margin: 0 auto 15px;
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
}
.join .btn {
  margin: 50px auto 0;
}
.join--sup {
  margin: 0 0 -225px 0;
  z-index: 1;
  position: relative;
}
.join--sup .join__inner {
  background: rgb(182, 156, 224);
}

.programm {
  padding: 75px 0 0;
}
.programm .container {
  max-width: 1440px;
}
.programm .title {
  margin: 0 0 50px 0;
}
.programm ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 0 -30px;
}
.programm li {
  width: calc(33.33333% - 30px);
  margin: 0 0 30px 30px;
  border-radius: 20px;
  padding: 20px;
  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;
}
.programm li img {
  width: 100%;
  border-radius: 22px;
}
.programm li:nth-child(1) {
  background: rgb(125, 208, 255);
}
.programm li:nth-child(1) img {
  -o-object-fit: cover;
     object-fit: cover;
}
.programm li:nth-child(2) {
  color: rgb(255, 255, 255);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.programm li:nth-child(3) {
  background: rgb(253, 231, 76);
}
.programm li:nth-child(3) img {
  -o-object-fit: contain;
     object-fit: contain;
}
.programm h6 {
  font-family: "Mulish", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 120%;
  text-align: center;
  margin: 20px 0 0 0;
}

.faq {
  padding: 75px 0 0 0;
}
.faq .container {
  max-width: 1440px;
}
.faq .title {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  margin: 0 50px 0 0;
}
.faq__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.faq__right {
  max-width: 950px;
  width: 100%;
}
.faq dl {
  border-radius: 20px;
  background: rgb(255, 255, 255);
}
.faq dl a {
  color: #518DEC;
  text-decoration: underline;
}
.faq dt {
  padding: 30px 120px 30px 20px;
  position: relative;
  font-family: "Mulish", sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 120%;
  cursor: pointer;
}
.faq dt::after, .faq dt::before {
  content: "";
  position: absolute;
  width: 35px;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 3px;
  background-color: #518DEC;
}
.faq dt::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
      -ms-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.faq dt.active::before {
  display: none;
}
.faq dd {
  padding: 0 20px 20px 20px;
  margin: 0;
  font-size: 18px;
}

.footer {
  background-color: #3F3F3F;
  padding: 240px 0 100px;
  color: #fff;
  overflow: hidden;
}
.footer .container {
  max-width: 1440px;
}
.footer h3 {
  margin: 0 0 20px 0;
  color: rgb(255, 255, 255);
  font-family: "Mulish", sans-serif;
  font-size: 60px;
  font-weight: 900;
  line-height: 120%;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__left {
  max-width: 620px;
  width: 100%;
  margin: 0 30px 0 0;
}
.footer__left ul {
  margin: 50px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__left ul li {
  margin: 0 15px 0 0;
}
.footer__left ul a {
  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: 60px;
  height: 60px;
  -webkit-transition: linear 0.2s;
  -o-transition: linear 0.2s;
  transition: linear 0.2s;
  border-radius: 50%;
  background-color: #518DEC;
}
.footer__left ul a:hover {
  opacity: 0.8;
}
.footer p {
  font-size: 24px;
  font-weight: 400;
  line-height: 200%;
  margin: 0 0 15px 0;
}
.footer p a {
  color: rgb(81, 141, 238);
  text-decoration: underline;
  -webkit-text-decoration-color: rgb(81, 141, 238);
          text-decoration-color: rgb(81, 141, 238);
  -webkit-transition: linear 0.2s;
  -o-transition: linear 0.2s;
  transition: linear 0.2s;
}
.footer p a:hover {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
.footer__right {
  width: 50%;
  position: relative;
  z-index: 1;
}
.footer .modal__parallax {
  position: absolute;
  -webkit-transition: linear 0.3s;
  -o-transition: linear 0.3s;
  transition: linear 0.3s;
  opacity: 0;
}
.footer .modal__parallax.element-show:nth-child(1) {
  -webkit-animation: test-animation 0.5s forwards;
          animation: test-animation 0.5s forwards;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.footer .modal__parallax.element-show:nth-child(2) {
  -webkit-animation: test-animation 0.5s forwards;
          animation: test-animation 0.5s forwards;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.footer .modal__parallax.element-show:nth-child(3) {
  -webkit-animation: test-animation 0.5s forwards;
          animation: test-animation 0.5s forwards;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.footer .modal__parallax:nth-child(1) {
  top: -16%;
  left: 0;
  width: 57%;
}
.footer .modal__parallax:nth-child(2) {
  top: -52%;
  left: 30%;
  width: 62%;
}
.footer .modal__parallax:nth-child(3) {
  top: 8%;
  right: -3%;
  width: 24%;
}
@-webkit-keyframes test-animation {
  100% {
    opacity: 1;
  }
}
@keyframes test-animation {
  100% {
    opacity: 1;
  }
}

@media (max-width: 1550px) {
  .mission .btn {
    font-size: 22px;
  }

  .main,
.header__inner,
.footer .container {
    max-width: 1200px;
  }

  .header nav li {
    margin: 0 0 0 20px;
  }

  .header__logo {
    width: 180px;
  }

  .intro .modal__parallax {
    zoom: 0.7;
  }

  .intro .modal__parallax:nth-child(1) {
    left: -7%;
  }

  .intro .modal__parallax:nth-child(4) {
    right: 2%;
  }
}
@media (max-width: 1200px) {
  .main,
.header__inner,
.footer .container {
    max-width: 992px;
  }

  .header nav a {
    font-size: 16px;
  }

  .header .btn {
    padding: 10px 15px;
    font-size: 16px;
  }

  .intro h1 {
    font-size: 80px;
  }

  .excellence h6,
.mission h6,
.programm h6 {
    margin: 0 0 15px 0;
    font-size: 22px;
  }

  .faq dt {
    font-size: 22px;
  }

  .programm h6 {
    margin: 15px 0 0 0;
  }

  .excellence p,
.mission p {
    margin: 0 0 15px 0;
    font-size: 16px;
  }

  .mission__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .mission .btn--yellow {
    margin: 0 0 20px 0;
  }

  .mission .btn {
    width: 100%;
  }

  .mission__right {
    padding: 40px 30px;
  }

  .mission__right {
    padding: 40px 30px;
    width: 100%;
  }

  .mission__left {
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
    height: 320px;
  }

  .join h3 {
    font-size: 40px;
  }

  .join p {
    font-size: 20px;
  }

  .footer p a {
    display: block;
  }

  .footer__left {
    max-width: 420px;
    width: 100%;
    margin: 0 30px 0 0;
  }

  .footer__right {
    margin: 10% 0 0 0;
  }

  .footer p {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .main,
.header__inner,
.header nav ul,
.footer .container {
    max-width: 768px;
  }

  .header__menu-btn {
    margin: 0 0 0 auto;
    padding: 0;
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 100;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    border: none;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .header__menu-btn span {
    margin: 0 0 0 auto;
    display: block;
    width: 100%;
    height: 3px;
    background-color: #518DEC;
    -webkit-transition: linear 0.2s;
    -o-transition: linear 0.2s;
    transition: linear 0.2s;
  }

  .header__menu-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #518DEC;
    -webkit-transition: linear 0.2s;
    -o-transition: linear 0.2s;
    transition: linear 0.2s;
  }

  .header__menu-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #518DEC;
    -webkit-transition: linear 0.2s;
    -o-transition: linear 0.2s;
    transition: linear 0.2s;
  }

  .header__menu-btn.active::before {
    top: 8.5px;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .header__menu-btn.active span {
    opacity: 0;
    -webkit-transform: translateX(-1rem);
        -ms-transform: translateX(-1rem);
            transform: translateX(-1rem);
  }

  .header__menu-btn.active::after {
    bottom: 8.5px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .header__inner {
    height: 70px;
  }

  .header__nav {
    margin: 0 !important;
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 80px 15px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    overflow: auto;
    background-color: rgb(246, 246, 246);
    opacity: 0;
    -webkit-transition: linear 0.4s;
    -o-transition: linear 0.4s;
    transition: linear 0.4s;
  }
  .header__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .header__nav li {
    margin: 0 0 30px 0 !important;
  }

  .header.active {
    background-color: rgb(246, 246, 246);
  }

  .header nav a {
    font-size: 20px;
  }

  .header__nav.open {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }

  .header nav ul {
    margin: 0 auto;
  }

  .header .btn--mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header .btn--mob .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header .btn {
    display: none;
  }

  .intro .modal__parallax {
    zoom: 0.5;
  }

  .intro h1 {
    font-size: 52px;
  }

  .intro p {
    margin: 0 0 20px 0;
    font-size: 20px;
  }

  .intro .modal__parallax:nth-child(5) {
    bottom: -205px;
  }

  .btn {
    font-size: 20px !important;
    line-height: 25px !important;
    padding: 15px 20px !important;
    font-weight: 900 !important;
  }

  .excellence__item {
    width: calc(50% - 30px);
  }

  .title,
.footer h3 {
    font-size: 48px;
  }

  .programm li {
    width: calc(50% - 30px);
  }

  .faq__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .faq .title {
    margin: 0 0 30px 0;
  }

  .faq dt::after,
.faq dt::before {
    width: 20px;
  }

  .excellence {
    padding: 90px 0 40px;
  }

  .mission {
    padding: 25px 0 40px;
  }

  .programm {
    padding: 75px 0 45px;
  }

  .programm .title {
    margin: 0 0 30px 0;
  }

  .intro .modal__parallax:nth-child(1),
.intro .modal__parallax:nth-child(4) {
    top: -200px;
    zoom: 0.4;
  }

  .intro .modal__parallax:nth-child(2),
.intro .modal__parallax:nth-child(5) {
    bottom: -390px;
    zoom: 0.4;
  }
}
@media (max-width: 768px) {
  .main,
.header__inner,
.header nav ul,
.footer .container {
    max-width: 576px;
  }

  .intro h1 {
    font-size: 36px;
  }

  .title,
.footer h3 {
    font-size: 30px;
  }

  .excellence__item {
    width: calc(100% - 30px);
  }

  .mission__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .mission__left {
    margin: 30px 0 0 0;
    max-width: 660px;
  }

  .mission__wrapper {
    padding: 15px;
  }

  .mission__right {
    padding: 40px 20px;
  }

  .join h3 {
    font-size: 30px;
  }

  .join__inner {
    padding: 50px 20px;
    border-radius: 30px;
  }

  .programm li {
    width: calc(100% - 30px);
    height: 350px;
  }

  .programm li img {
    height: 80%;
  }

  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .footer__right {
    width: 100%;
    height: 250px;
  }

  .footer p {
    font-size: 18px;
  }

  .footer__left ul a {
    width: 40px;
    height: 40px;
  }
  .footer__left ul a img {
    width: 50%;
    height: 50%;
    -o-object-fit: contain;
       object-fit: contain;
  }

  .faq dt {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .footer__right {
    height: 200px;
  }
}