@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

html {
  font-family: "Raleway";
  overflow-x: hidden;
}

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

.error {
  padding: 30px 0 0 0;
}

.error__title {
  font-weight: 500;
  font-size: 58px;
  line-height: 120%;
  color: #353A5A;
}

.error__image {
  margin: 40px 0 0 0;
}
.error__image img {
  width: 300px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

.error__desc {
  margin: 40px 0 0 0;
  font-weight: 400;
  font-size: 30px;
  line-height: 150%;
  color: #353A5A;
}

.error__btn {
  background: #10B582;
  margin: 40px 0 0 0;
}

@media (max-width: 640px) {
  .error__desc {
    text-align: center;
  }

  .error__title {
    text-align: center;
  }

  .error__image {
    max-width: 270px;
    margin: 40px auto 0;
  }
  .error__image img {
    width: 270px;
    height: 270px;
  }

  .error__btn {
    margin: 40px auto 0;
  }
}
.container {
  max-width: 1170px;
  margin: 0 auto;
}
@media (max-width: 1170px) {
  .container {
    padding: 0 10px 0;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0 auto;
  z-index: 50;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background: #10B582;
  padding: 50px 0;
}

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

.header__burger {
  display: none;
}

.header__menu {
  display: none;
}

.header__list {
  max-width: 650px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.header__link {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #FDFDFD;
}
.header__link.active {
  border-bottom: 2px dashed #FA9F42;
}

.header__logoblock {
  display: none;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 180px;
}

.header__logo img {
  width: 28px;
  height: 22px;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__title-logo {
  font-size: 30px;
  font-weight: 500;
  color: #FDFDFD;
}

@media (max-width: 769px) {
  .content {
    padding: 90px 0 0 0;
  }

  .header {
    padding: 30px 0;
  }

  .main {
    padding: 100px 0 100px 0;
  }

  .header__list {
    display: none;
  }

  .header__logoblock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header__body {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .header__menu {
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0px;
    left: -100%;
    background: #FDFDFD;
  }
  .header__menu ul {
    display: block;
  }
  .header__menu ul li:first-child {
    margin: 32px 0 0 10px;
  }
  .header__menu ul li {
    margin: 10px 0 0 10px;
  }
  .header__menu ul .header__link.active {
    border: none;
  }
  .header__menu .header__link {
    color: #353A5A;
  }
  .header__menu .header__link.active {
    color: #FA9F42;
  }

  .header__burger {
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    z-index: 50;
    position: relative;
    display: block;
    width: 30px;
    height: 27px;
  }
  .header__burger span {
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    background: #FDFDFD;
    top: 12px;
    border-radius: 3px;
  }
  .header__burger:before, .header__burger:after {
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #FDFDFD;
    border-radius: 3px;
  }
  .header__burger:before {
    top: 0;
  }
  .header__burger:after {
    bottom: 0;
  }

  .header__burger.active span {
    display: none;
  }
  .header__burger.active:before, .header__burger.active:after {
    background: #FA9F42;
  }
  .header__burger.active:before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 11.75px;
  }
  .header__burger.active:after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: 11.75px;
  }

  .header__menu.active {
    left: 0;
  }

  #coursePage .header__burger span {
    background: #353A5A;
  }
  #coursePage .header__burger:before, #coursePage .header__burger:after {
    background: #353A5A;
  }
  #coursePage .header__burger.active:before, #coursePage .header__burger.active:after {
    background: #FA9F42;
  }
}
.content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding: 116px 0 0 0;
}

.main {
  background: #10B582;
  padding: 160px 0 212px 0;
}
.main .container {
  position: relative;
}

.main__mediablock {
  position: absolute;
  top: -150px;
}

.media-list li {
  margin: 30px 0 0 0;
}
.media-list li:first-child {
  margin: 0;
}

.main__imageblock-1 {
  position: absolute;
  width: 270px;
  top: -150px;
  right: 0;
}
.main__imageblock-1 img {
  position: absolute;
  display: block;
  width: 240px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 80px 0px 0px 0px;
  top: 30px;
  left: 30px;
}
.main__imageblock-1:before {
  content: "";
  position: absolute;
  display: block;
  width: 240px;
  height: 300px;
  border: 1px dashed #FDFDFD;
  border-radius: 80px 0px 0px 0px;
}

.main__imageblock-2 {
  position: absolute;
  width: 270px;
  bottom: 150px;
  left: 0;
}
.main__imageblock-2 img {
  position: absolute;
  display: block;
  width: 240px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0px 80px 0px 0px;
  top: 30px;
  left: 0px;
}
.main__imageblock-2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  display: block;
  width: 240px;
  height: 300px;
  border: 1px dashed #FDFDFD;
  border-radius: 0px 80px 0px 0px;
}

.main__logoblock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 180px;
  margin: 0 auto;
}

.main__logo img {
  width: 28px;
  height: 22px;
  -o-object-fit: cover;
     object-fit: cover;
}

.main__title-logo {
  font-size: 30px;
  font-weight: 500;
  color: #FDFDFD;
}

.main__title {
  margin: 40px 0 0 0;
}

.title {
  font-weight: 500;
  font-size: 58px;
  line-height: 120%;
  text-align: center;
  color: #FDFDFD;
}

.main__desc {
  margin: 20px 0 0 0;
}

.desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #FDFDFD;
}

.main__btn {
  background: #FA9F42;
  margin: 50px auto 0;
}

.btn {
  cursor: pointer;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  display: block;
  width: 230px;
  height: 53px;
  font-size: 16px;
  line-height: 56px;
  text-align: center;
  color: #FDFDFD;
  border-radius: 0px 20px;
}
.btn:hover {
  border-radius: 20px;
  font-size: 18px;
}

@media (max-width: 1100px) {
  .content {
    padding: 116px 0 0 0;
  }

  .main {
    padding: 80px 0;
  }

  .main__imageblock-1 {
    display: none;
  }

  .main__imageblock-2 {
    display: none;
  }

  .main__mediablock {
    top: 75px;
  }
}
@media (max-width: 769px) {
  .content {
    padding: 90px 0 0 0;
  }

  .main {
    padding: 60px 0 100px 0;
  }

  .main__logoblock {
    display: none;
  }

  .main__title {
    margin: 0;
  }

  .main__mediablock {
    top: 5px;
  }
}
@media (max-width: 635px) {
  .main__title {
    font-size: 40px;
  }

  .main__desc {
    margin: 15px 0 0 0;
  }

  .main__btn {
    margin: 35px auto 0;
  }
}
@media (max-width: 465px) {
  .main {
    padding: 120px 0 100px 0;
  }

  .main__mediablock {
    position: relative;
  }

  .media-list {
    max-width: 150px;
    margin: 20px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .media-list li {
    margin: 0;
  }

  .main__title {
    font-size: 30px;
  }

  .main__desc {
    margin: 15px 0 0 0;
  }
  .main__desc br {
    display: none;
  }

  .main__btn {
    margin: 35px auto 0;
  }
}
@media (max-width: 305px) {
  .main__title {
    font-size: 26px;
    font-weight: 500;
  }
}
.statistics {
  padding: 120px 0;
  background: #FDFDFD;
}

.statistics-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.statistics__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 270px;
          flex: 0 0 270px;
}

.statistics__number {
  color: #10B582;
  font-weight: 500;
  font-size: 58px;
  line-height: 100%;
  text-align: center;
}

.statistics__desc {
  max-width: 270px;
  margin: 15px 0 0 0;
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  color: #353A5A;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}

@media (max-width: 1170px) {
  .statistics-row .statistics__item:last-child {
    margin: 0 auto;
  }
}
@media (max-width: 890px) {
  .statistics {
    padding: 75px 0;
  }

  .statistics-row .statistics__item:last-child {
    margin: 0;
  }
}
@media (max-width: 590px) {
  .statistics-row {
    display: block;
    max-width: 100%;
    margin: 0 auto;
  }
  .statistics-row .statistics__item {
    margin: 20px 0 0 0;
  }
  .statistics-row .statistics__item:last-child {
    margin: 20px 0 0 0;
  }
  .statistics-row .statistics__item:first-child {
    margin: 0;
  }

  .statistics__desc {
    margin: 15px auto 0;
  }
}
.team {
  padding: 0 0 120px 0;
}

.team__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
}

.team__textblock {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 500px;
          flex: 0 0 500px;
}

.team__title {
  font-weight: 500;
  font-size: 58px;
  line-height: 100%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #353A5A;
}

.team__desc {
  margin: 20px 0 0 0;
  font-size: 16px;
  line-height: 150%;
  color: #353A5A;
}

.team__btn {
  margin: 50px 0 0 0;
  background: #10B582;
}

.team__imageblock {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 570px;
          flex: 0 0 570px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
.team__imageblock .team__imageblock-item:nth-child(1) .team__image img {
  border-radius: 0px 0px 0px 80px;
}
.team__imageblock .team__imageblock-item:nth-child(2) .team__image img {
  border-radius: 80px 0px;
}
.team__imageblock .team__imageblock-item:nth-child(3) .team__image img {
  border-radius: 0px 0px 80px 0px;
}
.team__imageblock .team__imageblock-item:nth-child(4) .team__image img {
  border-radius: 80px 0px 0px 0px;
}
.team__imageblock .team__imageblock-item:nth-child(5) .team__image img {
  border-radius: 80px 0px;
}
.team__imageblock .team__imageblock-item:nth-child(6) .team__image img {
  border-radius: 0px 80px 0px 0px;
}

.team__imageblock-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 170px;
          flex: 0 0 170px;
}

.team__image {
  width: 170px;
}
.team__image img {
  width: 170px;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
}

.team__name {
  margin: 15px 0 0 0;
  max-width: 170px;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #353A5A;
}

@media (max-width: 1171px) {
  .team__row {
    width: 100%;
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }

  .team__textblock {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .team__title {
    text-align: center;
  }

  .team__desc {
    font-size: 20px;
    max-width: 90%;
    margin: 20px auto 0;
  }

  .team__btn {
    margin: 50px auto 0;
  }

  .team__imageblock {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
  }

  .team__imageblock-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
  }

  .team__image {
    width: 250px;
    margin: 0 auto;
  }
  .team__image img {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }

  .team__name {
    max-width: 250px;
    margin: 15px auto 0;
    font-size: 20px;
  }
}
@media (max-width: 651px) {
  .team__imageblock-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
            flex: 0 0 250px;
  }
}
@media (max-width: 551px) {
  .team__imageblock-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
  }

  .team__image {
    width: 200px;
  }
  .team__image img {
    width: 200px;
    height: 200px;
  }

  .team__name {
    max-width: 200px;
    font-size: 17px;
  }
}
@media (max-width: 451px) {
  .team__imageblock .team__imageblock-item:nth-child(1) .team__image img {
    border-radius: 80px;
  }
  .team__imageblock .team__imageblock-item:nth-child(2) .team__image img {
    border-radius: 80px;
  }
  .team__imageblock .team__imageblock-item:nth-child(3) .team__image img {
    border-radius: 80px;
  }
  .team__imageblock .team__imageblock-item:nth-child(4) .team__image img {
    border-radius: 80px;
  }
  .team__imageblock .team__imageblock-item:nth-child(5) .team__image img {
    border-radius: 80px;
  }
  .team__imageblock .team__imageblock-item:nth-child(6) .team__image img {
    border-radius: 80px;
  }

  .team__imageblock-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .team__image {
    width: 100%;
  }
  .team__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
  }

  .team__name {
    max-width: 100%;
    font-size: 17px;
  }
}
.course {
  background: #10B582;
  color: #FDFDFD;
  padding: 120px 0;
}

.course__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 100px;
}

.course__imageblock {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 500px;
          flex: 0 0 500px;
  position: relative;
  height: 362px;
  width: 500px;
}
.course__imageblock img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 470px;
  height: 332px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0px 120px 0px 0px;
}
.course__imageblock:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 470px;
  height: 332px;
  border: 1px dashed #FDFDFD;
  border-radius: 0px 120px 0px 0px;
}

#coursePageCourse img {
  border-radius: 120px 0px 0px 0px;
  bottom: 0;
  left: auto;
  right: 0;
}
#coursePageCourse:before {
  top: 0;
  left: 0;
  right: auto;
  border-radius: 120px 0px 0px 0px;
}

.course__textblock {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 500px;
          flex: 0 0 500px;
}

.course__title {
  font-weight: 500;
  font-size: 58px;
  line-height: 120%;
}

.course__desc {
  margin: 20px 0 0 0;
  font-size: 16px;
  line-height: 150%;
}

.course__btn {
  margin: 50px 0 0 0;
  background: #FA9F42;
}

@media (max-width: 1101px) {
  .course__imageblock {
    display: none;
  }

  .course__textblock {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 0 auto;
  }

  .course__title {
    text-align: center;
  }

  .course__btn {
    margin: 50px auto 0;
  }

  .course__desc {
    text-align: center;
  }
  .course__desc br {
    display: none;
  }
}
@media (max-width: 381px) {
  .course__title {
    font-size: 46px;
  }

  .course__desc {
    font-size: 20px;
  }

  .course {
    padding: 75px 0;
  }
}
@media (max-width: 306px) {
  .course__title {
    font-size: 40px;
  }
}
.course-choice {
  padding: 120px 0;
  background: #FDFDFD;
}

.course-choice__title {
  font-weight: 500;
  font-size: 58px;
  line-height: 100%;
  text-align: center;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #353A5A;
}

.course-choice__item-title {
  position: relative;
  left: 20px;
  top: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #353A5A;
}
.course-choice__item-title:before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  width: 16px;
  height: 16px;
  display: block;
}

.course-choice__row {
  margin: 60px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
.course-choice__row .course-choice__item:nth-child(1) .course-choice__item-title:before {
  background: url("../img/course page/course/01.svg") no-repeat;
  background-size: 16px 16px;
}
.course-choice__row .course-choice__item:nth-child(2) .course-choice__item-title:before {
  background: url("../img/course page/course/02.svg") no-repeat;
  background-size: 16px 16px;
}
.course-choice__row .course-choice__item:nth-child(3) .course-choice__item-title:before {
  background: url("../img/course page/course/03.svg") no-repeat;
  background-size: 16px 16px;
}
.course-choice__row .course-choice__item:nth-child(4) .course-choice__item-title:before {
  background: url("../img/course page/course/04.svg") no-repeat;
  background-size: 16px 16px;
}

.course-choice__item {
  max-width: 270px;
  padding: 20px;
  -webkit-box-shadow: 5px 5px 30px rgba(101, 101, 101, 0.12);
          box-shadow: 5px 5px 30px rgba(101, 101, 101, 0.12);
  border-radius: 10px;
}

.course-choice__name {
  margin: 20px 0 0 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #353A5A;
}

.course-choice__btn {
  margin: 60px auto 0;
  background: #FA9F42;
}

@media (max-width: 1171px) {
  .course-choice__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .course-choice__item {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
  }

  .course-choice__image img {
    width: 100%;
  }

  .course-choice__name {
    font-size: 20px;
    text-align: center;
  }

  .course-choice__item-title {
    max-width: 200px;
    margin: 0 auto;
  }
}
@media (max-width: 701px) {
  .course-choice__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .course-choice__name {
    font-size: 26px;
  }
}
@media (max-width: 406px) {
  .course-choice__name {
    font-size: 18px;
  }

  .course-choice__title {
    font-size: 40px;
  }

  .course-choice {
    padding: 70px 0;
  }
}
.join {
  position: relative;
  color: #353A5A;
  height: 578px;
}

.join__image img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 578px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.join__textblock {
  max-width: 510px;
  position: absolute;
  top: 120px;
  left: 50%;
}

.join__title {
  font-weight: 500;
  font-size: 58px;
  line-height: 120%;
}

.join__desc {
  margin: 20px 0 0 0;
  font-size: 16px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}

.join__btn {
  margin: 50px 0 0 0;
  background: #FA9F42;
  color: #FDFDFD;
}

@media (max-width: 1100px) {
  .join__textblock {
    position: relative;
    left: 0;
    margin: 0 auto;
    text-align: center;
  }

  .join__image {
    -webkit-filter: blur(8px);
            filter: blur(8px);
  }

  .join__btn {
    margin: 50px auto 0;
  }
}
@media (max-width: 529px) {
  .join__textblock {
    max-width: 100%;
  }

  .join__title {
    font-size: 40px;
  }

  .join__image img {
    height: 500px;
  }

  .join {
    height: 500px;
  }
}
@media (max-width: 371px) {
  .join__title {
    font-size: 28px;
  }

  .join__desc {
    font-size: 14px;
  }
}
.footer {
  border-top: 1px solid #353A5A;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.footer .container {
  padding: 80px 10px 50px;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__row .footer__item:first-child {
  max-width: 270px;
}
.footer__row .footer__item:last-child {
  max-width: 182px;
}

.footer__item {
  max-width: 150px;
}
.footer__item li:first-child {
  margin: 0;
}
.footer__item li:nth-child(2) {
  margin: 31px 0 0 0;
}
.footer__item li {
  margin: 20px 0 0 0;
}
.footer__item span {
  display: block;
  margin: 30px 0 0 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #353A5A;
}

.footer__logoblock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 180px;
}

.footer__logo img {
  width: 28px;
  height: 22px;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__title-logo {
  font-size: 30px;
  font-weight: 500;
  color: #353A5A;
}

.footer__desc {
  margin: 27px 0 0 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
}

.footer__media {
  margin: 27px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
.footer__media li {
  margin: 0;
}
.footer__media li:nth-child(2) {
  margin: 0;
}

.footer__link img {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-filter: invert(1);
          filter: invert(1);
  opacity: 0.3;
}
.footer__link img:hover {
  opacity: 1;
}

.footer__item-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #353A5A;
}

.footer__item-link {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #353A5A;
  display: block;
}
.footer__item-link:after {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  content: "";
  display: block;
  height: 1px;
  width: 0%;
  background: #353A5A;
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer__item-link:hover:after {
  width: 60%;
}

.footer__email {
  text-decoration: underline;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
}

@media (max-width: 885px) {
  .footer__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__row .footer__item:nth-child(1) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 100%;
  }
  .footer__row .footer__item:nth-child(5) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer__row .footer__item:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: 100%;
    -ms-flex: 0 0 20%;
        flex: 0 0 20%;
    text-align: center;
    margin: 20px 0 0 0;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .footer__row .footer__item:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: 100%;
    -ms-flex: 0 0 20%;
        flex: 0 0 20%;
    text-align: center;
    margin: 20px 0 0 0;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .footer__row .footer__item:nth-child(4) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: 100%;
    -ms-flex: 0 0 20%;
        flex: 0 0 20%;
    text-align: center;
    margin: 20px 0 0 0;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}
@media (max-width: 400px) {
  .footer .container {
    padding: 80px 0 50px;
  }

  .footer__row .footer__item:nth-child(1) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    background: #FDFDFD;
    padding: 0 10px;
  }
  .footer__row .footer__item:nth-child(5) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    text-align: center;
    margin: 20px 0 0 0;
    background: #FDFDFD;
    padding: 0 10px;
  }
  .footer__row .footer__item:nth-child(5) span {
    margin: 10px 0 0 0;
  }
  .footer__row .footer__item:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100vw;
            flex: 0 0 100vw;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    background: #353A5A;
    color: #FDFDFD;
    padding: 10px 0;
  }
  .footer__row .footer__item:nth-child(2) .footer__item-title {
    color: #FDFDFD;
  }
  .footer__row .footer__item:nth-child(2) a {
    color: #FDFDFD;
  }
  .footer__row .footer__item:nth-child(2) .footer__item-link:after {
    background: #FDFDFD;
  }
  .footer__row .footer__item:nth-child(2) .footer__item-link:hover:after {
    width: 100%;
  }
  .footer__row .footer__item:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    background: #FDFDFD;
    padding: 0 10px;
  }
  .footer__row .footer__item:nth-child(4) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100vw;
            flex: 0 0 100vw;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    background: #353A5A;
    color: #FDFDFD;
    padding: 10px 0;
  }
  .footer__row .footer__item:nth-child(4) .footer__item-title {
    color: #FDFDFD;
  }
  .footer__row .footer__item:nth-child(4) a {
    color: #FDFDFD;
  }
  .footer__row .footer__item:nth-child(4) .footer__item-link:after {
    background: #FDFDFD;
  }
  .footer__row .footer__item:nth-child(4) .footer__item-link:hover:after {
    width: 100%;
  }
}
.footer-downpage {
  border-top: 1px solid #353A5A;
  padding: 30px 0px;
}
.footer-downpage .container {
  padding: 0 10px;
}

.footer-downpage__row {
  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;
}

.footer-downpage__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333%;
          flex: 0 0 33.333%;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #353A5A;
}

#coursePage {
  background: #FDFDFD;
}
#coursePage .header__logoblock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#coursePage .header__title-logo {
  color: #353A5A;
}
#coursePage .header__link {
  color: #353A5A;
}
#coursePage .header__link.active {
  color: #FA9F42;
}

.navigation {
  padding: 20px 0;
}

.navigation__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.navigation__row li {
  position: relative;
  display: block;
}
.navigation__row li:after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  display: block;
  width: 16px;
  height: 16px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-top: 5px solid #FA9F42;
  border-right: 5px solid #FA9F42;
  border-radius: 2px;
}
.navigation__row li:last-child:after {
  display: none;
}
.navigation__row li:last-child .navigation__item {
  opacity: 0.5;
  cursor: default;
}

.navigation__item {
  font-size: 14px;
  line-height: 100%;
  color: #353A5A;
}

.info {
  padding: 40px 0 0 0;
}

.info__title {
  font-weight: 500;
  font-size: 58px;
  line-height: 120%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #353A5A;
}

.info__image {
  margin: 40px 0 0 0;
}
.info__image img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.info__textblock {
  margin: 40px 0 0 0;
}

.info__textlock-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
  color: #353A5A;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}

.info__textlock-desc {
  margin: 25px 0 0 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #353A5A;
}

@media (max-width: 1170px) {
  .info__image img {
    height: 300px;
  }
}
@media (max-width: 578px) {
  .info__title {
    text-align: center;
    font-size: 30px;
    max-width: 300px;
    margin: 0 auto;
  }
}
@media (max-width: 305px) {
  .info__title {
    font-size: 26px;
  }
}
.question {
  padding: 120px 0;
  color: #353A5A;
}

.question__title {
  font-weight: 500;
  font-size: 58px;
  line-height: 120%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}

.question__list {
  margin: 30px 0 0 0;
  height: 100%;
}

.question__item {
  cursor: default;
  margin: 30px 0 0 0;
  -webkit-box-shadow: 5px 5px 30px rgba(101, 101, 101, 0.12);
          box-shadow: 5px 5px 30px rgba(101, 101, 101, 0.12);
  border-radius: 10px;
  padding: 30px;
  position: relative;
  height: 89px;
}
.question__item .question__item-desc {
  -webkit-transition: all 0.1s ease 0s;
  transition: all 0.1s ease 0s;
  opacity: 0;
}
.question__item.active {
  height: 100%;
}
.question__item.active .question__item-desc {
  margin: 15px 0 0 0;
  opacity: 1;
}
.question__item.active .question__item-close:before {
  width: 0;
}

.question__item-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}

.question__item-desc {
  margin: -20px 0 0 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  max-width: 640px;
}

.question__item-close {
  cursor: pointer;
  position: absolute;
  top: 28px;
  right: 30px;
  width: 33px;
  height: 33px;
  border: 1px dashed #10B582;
  border-radius: 50%;
}
.question__item-close:after {
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 15px;
  height: 1px;
  background: #10B582;
}
.question__item-close:before {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 15px;
  height: 1px;
  background: #10B582;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media (max-width: 792px) {
  .question__item-title {
    max-width: 330px;
  }

  .question__item {
    height: 117.2px;
  }
}
@media (max-width: 500px) {
  .question__item {
    height: 146px;
  }

  .question__item-title {
    max-width: 270px;
  }

  .question__title {
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
    font-size: 30px;
  }
}
@media (max-width: 380px) {
  .question__item {
    height: 210px;
  }

  .question__item-title {
    padding: 35px 0 0 0;
    max-width: 100%;
  }
}