@font-face {
  font-family: "Arantxa";
  src: url("/uploads/media/fonts/educator/Arantxa-Black.ttf") format("truetype"),
    url("/uploads/media/fonts/educator/Arantxa-Black.woff") format("woff"),
    url("/uploads/media/fonts/educator/Arantxa-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Arantxa";
  src: url("/uploads/media/fonts/educator/Arantxa-Bold.ttf") format("truetype"),
    url("/uploads/media/fonts/educator/Arantxa-Bold.woff") format("woff"),
    url("/uploads/media/fonts/educator/Arantxa-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Arantxa";
  src: url("/uploads/media/fonts/educator/Arantxa-Regular.ttf") format("truetype"),
    url("/uploads/media/fonts/educator/Arantxa-Regular.woff") format("woff"),
    url("/uploads/media/fonts/educator/Arantxa-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

/* Menu */

.second-menu--line {
  max-width: 1920px;
  margin-top: 1rem;
  padding: 0;
}

.second-menu--line::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
}

.second-menu-wrapper {
  max-width: 1920px;
  padding: 1rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.second-menu--logo {
  height: 60px;
  width: 470px;
  background-repeat: no-repeat;
}

.second-menu--burger {
  font-family: "SegoeUI";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 21px;
  text-align: right;
  text-transform: uppercase;
}

.nav-toggle__item {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 10px;
  left: 0;
  margin: auto;
  transition: background 0.2s linear;
}

.nav-toggle__item:before,
.nav-toggle__item:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  z-index: 1;
  transition: transform 0.2s linear;
}

.nav-toggle__item:before {
  top: -8px;
}

.nav-toggle__item:after {
  bottom: -8px;
}

.educator-nav-toggle {
  position: relative;
  font-size: 0;
  color: transparent;
  border: 0;
  background: none;
  cursor: pointer;
  z-index: 2;
  width: 24px;
}

.second-menu--burger {
  cursor: pointer;
}

.second-menu--burger span {
  padding-right: 1rem;
}

.second-menu--pull-out {
  transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
  opacity: 0;
  height: 0;
}

.second-menu--pull-out.active {
  transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
  opacity: 1;
  height: 120px;
}

.second-menu--pull-out::before {
  content: "";
  width: 100%;
  max-width: 1920px;
  position: absolute;
  height: 1px;
  background: #000;
}

.second-menu--pull-out ul {
  display: flex;
  justify-content: space-evenly;
  padding: 5rem 0;
}

.second-menu--pull-out ul {
  display: none;
}

.second-menu--pull-out.active ul {
  display: flex;
}

.second-menu--pull-out.active ul li {
  display: block;
}

.second-menu--pull-out ul li a {
  font-family: SegoeUI;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
}

.nav-toggle__item.active {
  background: none;
  width: 70%;
}

.nav-toggle__item.active:before {
  transform-origin: left top;
  transform: rotate(45deg) translateX(-3px);
}

.nav-toggle__item.active:after {
  transform-origin: left bottom;
  transform: rotate(-45deg) translateX(-3px);
  bottom: 1px;
}

.active-hide {
  overflow: hidden;
}

@media (max-width: 992px) {
  .second-menu--logo {
    width: 350px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .span-invisible {
    display: none;
  }
}

@media (max-width: 768px) {
  .second-menu--logo {
    display: none;
  }

  .second-menu--burger {
    display: flex;
    flex-direction: row-reverse;
    align-items: baseline;
  }

  .second-menu--burger button {
    margin-right: 3rem;
  }

  .second-menu-wrapper {
    justify-content: center;
  }

  .second-menu--pull-out.active {
    height: 40vh;
  }

  .second-menu--pull-out.active ul {
    flex-direction: column;
    align-items: center;
    height: 40vh;
  }
}

/* END Menu */

.educator-main,
.educator-items,
.educator-profile,
.educator-rules,
.educator-create {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.educator-main *,
.educator-items *,
.educator-profile *,
.educator-rules *,
.educator-create * {
  font-family: "Arantxa", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000;
}

.educator-rules__link {
  color: #5169FC;
  text-decoration: underline;
}

.educator-rules__underline {
  text-decoration: underline;
}

/* Buttons */

button.btn-pink {
  border: none;
}

.btn-pink,
.btn-violet,
.btn-white {
  display: block;
  width: fit-content;
  padding: 30px 42px 32px;

  font-size: 22px;
  font-weight: 700;
  line-height: 18px;

  border-radius: 25px;
  box-sizing: border-box;

  cursor: pointer;
}

.btn-pink,
.btn-violet {
  color: #fff;
}

.btn-white {
  color: #000;
  border: 1px solid #000000;
}

.btn-pink {
  background-color: #F61755;
}

.btn-violet {
  background-color: #5169FC;
}

.btn-white {
  background-color: #fff;
}

.btn-pink:hover,
.btn-violet:hover,
.btn-pink:focus,
.btn-violet:focus {
  text-decoration: none;
  color: #fff;
}

.btn-pink:hover,
.btn-pink:focus {
  background-color: #FFD715;
}

.btn-violet:hover,
.btn-violet:focus {
  background-color: #5FDE00;
}

.btn-pink:active,
.btn-violet:active {
  color: #fff;
}

.btn-pink:active {
  background-color: #FF6430;
}

.btn-violet:active {
  background-color: #5AFFB0;
}

.btn-white:active,
.btn-white:hover,
.btn-white:focus {
  color: #000;
  text-decoration: none;
}

.btn-white:active,
.btn-white:hover {
  background-color: #fff;
}

.btn-white:focus {
  background-color: #5169FC;
}

/* END Buttons */

/* Titles main page */

.first-block__title,
.author__title,
.about__title,
.rules__title,
.stages__title,
.nominations__title,
.prize__title,
.contacts__title,
.educator-rules__title {
  margin: 0 0 50px;

  font-size: 96px;
  line-height: 96px;
  text-align: left;
}

@media (max-width: 1919px) {

  .first-block__title,
  .author__title,
  .about__title,
  .rules__title,
  .stages__title,
  .nominations__title,
  .prize__title,
  .contacts__title,
  .educator-rules__title {
    margin-bottom: 30px;

    font-size: 64px;
    line-height: 64px;
  }
}

@media (max-width: 1260px) {

  .first-block__title,
  .author__title,
  .about__title,
  .rules__title,
  .stages__title,
  .nominations__title,
  .prize__title,
  .contacts__title,
  .educator-rules__title {
    font-size: 48px;
    line-height: 48px;
  }

  .btn-pink,
  .btn-violet,
  .btn-white {
    padding: 30px 50px 32px;

    font-size: 18px;
  }
}

@media (max-width: 768px) {

  .first-block__title,
  .author__title,
  .about__title,
  .rules__title,
  .stages__title,
  .nominations__title,
  .prize__title,
  .contacts__title,
  .educator-rules__title {
    text-align: center;
  }
}

/* END Titles main page */

/* First block */

.educator-main__first-block {
  display: flex;
  flex-direction: column;
  align-content: center;
  margin-bottom: 150px;
  padding-left: 160px;
  padding-right: 120px;
}

.first-block__text-wrapper {
  display: flex;
}

.first-block__title-wrapper {
  width: 55%;
  margin-right: 50px;
  padding: 150px 0 120px;
}

.first-block__bg {
  position: relative;
  width: 45%;
  height: auto;
}

.first-block__bg-img {
  display: block;
  width: 100%;
  margin-left: auto;
}

.first-block__bg-gif {
  position: absolute;
  width: 110%;
  bottom: 30px;
  left: -40px;
}

.first-block__btn-wrapper {
  display: flex;
}

.first-block__btn-wrapper--mobile {
  display: none;
}

.first-block__btn-pink {
  margin-right: 30px;
}

.first-block__count {
  display: flex;
  flex-direction: column;
}

.first-block__count-group {
  display: flex;
}

.first-block__count-group:first-child {
  padding-right: 130px;
}

.first-block__count-group:last-child {
  padding-left: 130px;
}

.first-block__number-wrapper {
  display: flex;
  align-items: center;
  width: 50%;
}

.first-block__number-wrapper:first-child {
  margin-right: 30px;
}

.first-block__number-icon {
  flex-shrink: 0;
  position: relative;
  width: 280px;
  height: 160px;
  margin: 0 20px 0 0;

  display: flex;
  align-items: center;
}

.first-block__number-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.first-block__number {
  position: relative;
  margin: 0 auto;
  padding-bottom: 8px;
  z-index: 1000;

  font-size: 64px;
  font-weight: 900;
  color: #fff;
  line-height: 64px;
}

.first-block__number-desc {
  padding-bottom: 8px;

  font-weight: 900;
  font-size: 36px;
  line-height: 40px;
}

@media (max-width: 1919px) {
  .educator-main__first-block {
    padding-left: 40px;
    padding-right: 20px;
  }

  .first-block__text-wrapper {
    margin-bottom: 150px;
  }

  .first-block__title-wrapper {
    width: 40%;
    margin-right: 10px;
  }

  .first-block__bg {
    display: flex;
    align-items: flex-end;
    width: 60%;

    background-size: contain;
    background-position: right;
  }

  .first-block__bg-gif {
    width: 107%;
    bottom: -20%;
    left: -37px;
  }

  .first-block__btn-wrapper {
    flex-direction: column;
  }

  .first-block__btn-pink {
    order: 2;
    margin: 0;
  }

  .first-block__btn-violet {
    margin-bottom: 20px;
  }

  .first-block__number-icon,
  .first-block__number-bg {
    width: 210px;
    height: 120px;
  }

  .first-block__number {
    font-size: 48px;
    line-height: 48px;
  }

  .first-block__number-desc {
    font-size: 30px;
    line-height: 33px;
  }
}

@media (max-width: 1660px) {
  .first-block__bg-gif {
    left: -30px;
  }
}

@media (max-width: 1440px) {
  .first-block__bg {
    width: 50%;
  }

  .first-block__title-wrapper {
    width: 50%;
    padding: 100px 0;
  }

  .first-block__bg-gif {
    left: -20px;
  }
}

@media (max-width: 1280px) {
  .educator-main__first-block {
    margin-bottom: 120px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .first-block__title-wrapper {
    width: 45%;
    padding: 60px 0 100px;
  }

  .first-block__bg {
    width: 55%;
  }

  .first-block__number-desc {
    font-size: 24px;
    line-height: 26px;
  }
}

@media (max-width: 1024px) {
  .educator-main__first-block {
    padding-top: 40px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .first-block__text-wrapper {
    flex-direction: column;
    margin-bottom: 50px;
  }

  .first-block__title-wrapper {
    width: 100%;
    padding: 0 100px;
  }

  .first-block__bg {
    width: 100%;
    margin-bottom: 90px;
  }

  .first-block__bg-gif {
    left: -25px;
  }

  .first-block__btn-wrapper {
    display: none;
  }

  .first-block__btn-wrapper.first-block__btn-wrapper--mobile {
    display: flex;
    align-items: center;
  }

  .first-block__count-group {
    flex-direction: column;
    align-items: center;
  }

  .first-block__count-group:first-child {
    padding-right: 0;
  }

  .first-block__count-group:last-child {
    padding-left: 0;
  }

  .first-block__number-wrapper {
    width: 100%;
    margin-bottom: 20px;
  }

  .first-block__number-wrapper:first-child {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .educator-main__first-block {
    padding-left: 20px;
    padding-right: 20px;
  }

  .first-block__title-wrapper {
    padding: 0;
  }

  .first-block__number-icon,
  .first-block__number-bg {
    width: 136px;
    height: 80px;
  }

  .first-block__number {
    font-size: 36px;
    line-height: 36px;
  }

  .first-block__number-icon {
    margin-bottom: 10px;
  }
}

@media (max-width: 660px) {
  .first-block__bg-gif {
    left: -20px;
  }
}

@media (max-width: 480px) {
  .first-block__bg-gif {
    left: -15px;
  }

  .first-block__number-wrapper {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .first-block__number-icon {
    margin-right: 0;
  }
}

/* END First block */

/* Author */

.educator-main__author {
  margin-bottom: 150px;

  background-image: url(/uploads/media/img/educator/author.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.author__wrapper {
  display: flex;
  justify-content: space-between;
  padding: 120px 160px 100px;
}

.author__title--mobile {
  display: none;
}

.author__title.author__sub-title {
  margin: 0 0 15px;

  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}

.author__text-wrapper {
  width: 60%;
  margin-right: 100px;
}

.author__text {
  margin-bottom: 35px;
}

.author__text p {
  margin: 0 0 20px;
}

.author__btn-wrapper {
  display: flex;
}

.author__btn-violet {
  margin-right: 30px;
}

.author__photo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 40%;
}

.author__photo-link {
  display: block;
  margin-bottom: 20px;
}

.author__social-list {
  display: flex;
  margin: 0;
  padding: 0;

  list-style: none;
}

.author__social-item:not(:last-child) {
  margin-right: 20px;
}

@media (max-width: 1919px) {
  .educator-main__author {
    background-image: url(/uploads/media/img/educator/author-1280.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .author__wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

  .author__sub-title {
    margin: 0 0 20px;

    font-size: 30px;
    line-height: 33px;
  }
}

@media (max-width: 1280px) {
  .educator-main__author {
    margin-bottom: 120px;
  }

  .author__wrapper {
    padding-top: 140px;
    padding-bottom: 180px;
  }

  .author__text-wrapper,
  .author__photo-wrapper {
    width: 50%;
  }

  .author__text-wrapper {
    margin-right: 20px;
  }

  .author__photo-wrapper {
    margin-right: 0;
  }

  .author__sub-title {
    margin: 0 0 20px;

    font-size: 30px;
    line-height: 33px;
  }

  .author__photo-link img {
    display: block;
    width: 100%;
  }

  .author__btn-wrapper {
    position: absolute;
  }
}

@media (max-width: 1024px) {
  .author__wrapper {
    padding-bottom: 110px;
  }

  .author__title {
    display: none;
  }

  .author__title.author__title--mobile {
    display: block;
  }

  .educator-main__author {
    background-image: url(/uploads/media/img/educator/author-mobile.svg);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center;
  }

  .author__wrapper {
    flex-direction: column;
  }

  .author__text-wrapper,
  .author__photo-wrapper {
    width: 100%;
  }

  .author__photo-wrapper {
    order: 1;
    margin-bottom: 50px;
  }

  .author__text-wrapper {
    order: 2;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .author__wrapper {
    padding: 80px 20px 60px;
  }

  .author__btn-wrapper {
    position: relative;
    flex-direction: column;
    align-items: center;
  }

  .author__btn-pink {
    margin: 0;
  }

  .author__btn-violet {
    margin: 0 0 20px 0;
  }
}

@media (max-width: 480px) {
  .author__title.author__title--mobile {
    text-align: center;
  }

  .author__photo-wrapper {
    margin-bottom: 40px;
  }
}

/* END Author */

/* About */
.educator-main__about {
  display: flex;
  padding: 0 160px;
}

.about__title.about__title--mobile {
  display: none;
}

.about__bg {
  width: 45%;
  height: auto;
}

.about__bg-wrapper {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.about__bg-gif {
  position: absolute;
  bottom: 0;
  right: 45px;
}

.about__text-wrapper {
  width: 50%;
  margin-right: 50px;
  padding: 120px 0 200px;
}

.about__text {
  margin: 0 0 30px;
}

.about__time {
  margin: 0 0 30px;

  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}

@media (max-width: 1919px) {
  .educator-main__about {
    padding: 0 40px;
    margin-bottom: 50px;
  }

  .about__text-wrapper {
    width: 45%;
    margin-right: 35px;
  }

  .about__bg {
    width: 55%;
  }

  .about__bg-img {
    display: block;
    margin: auto;
  }

  .about__time {
    margin-bottom: 20px;

    font-size: 30px;
    line-height: 33px;
  }
}

@media (max-width: 1440px) {
  .about__text-wrapper {
    width: 40%;
    margin-right: 35px;
  }

  .about__bg {
    width: 60%;
  }
}

@media (max-width: 1280px) {
  .educator-main__about {
    margin-bottom: 90px;
  }

  .about__text-wrapper {
    padding: 0;
  }

  .about__bg {
    height: 100%;
    padding: 0;
  }

  .about__bg-img {
    display: block;
    height: 600px;
    margin: auto;
  }

  .about__bg-gif {
    width: 220px;
    right: 27px;
  }

  .about__time {
    font-size: 24px;
    line-height: 26px;
  }
}

@media (max-width: 1024px) {
  .educator-main__about {
    padding: 0;
    margin-bottom: 120px;
  }

  .about__text-wrapper {
    width: 60%;
    margin-right: 15px;
    padding-left: 70px;
  }

  .about__bg {
    width: 40%;
    padding: 0;
  }

  .about__bg-img {
    height: 390px;
  }

  .about__bg-gif {
    width: 160px;
    bottom: -15px;
    right: 10px;
  }
}

@media (max-width: 768px) {
  .educator-main__about {
    flex-direction: column;
    padding: 0 20px;
  }

  .about__title {
    display: none;
  }

  .about__title.about__title--mobile {
    display: block;
    margin: 0 auto 30px;
  }

  .about__text-wrapper {
    order: 2;
    width: 100%;
    margin-right: 0;
    padding-left: 0;
  }

  .about__time {
    text-align: center;
  }

  .about__btn-pink {
    margin: 0 auto;
  }

  .about__bg {
    order: 1;
    width: 100%;
    margin-bottom: 20px;
    padding: 0;
  }
}

/* END About */

/* Rules */

.educator-main__rules {
  display: flex;
  margin-bottom: 150px;
  padding: 0 160px;
}

.rules__title--mobile {
  display: none;
}

.rules__bg {
  width: 45%;
  height: auto;
  margin-right: 50px;
}

.rules__bg-wrapper {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.rules__bg-img {
  width: 100%;
}

.rules__bg-gif {
  position: absolute;
  width: 50%;
  bottom: -8%;
  right: calc(50% - 30px);
}

.rules__text-wrapper {
  width: 55%;
  padding: 120px 0 200px;
}

.rules__text {
  margin: 0 0 30px;
}

.rules__text p {
  margin: 0 0 20px;
}

.rules__btn-wrapper {
  display: flex;
}

.rules__btn-violet:first-child {
  margin-right: 30px;
}

@media (max-width: 1919px) {
  .educator-main__rules {
    padding: 0 40px;
  }

  .rules__bg {
    margin-right: 33px;
  }
}

@media (max-width: 1440px) {
  .rules__text-wrapper {
    padding: 50px 0;
  }
}

@media (max-width: 1280px) {
  .rules__text-wrapper {
    padding: 0;
  }

  .rules__bg {
    margin-right: 46px;
  }

  .rules__btn-wrapper {
    flex-direction: column;
  }

  .rules__btn-violet:first-child {
    order: 2;
    margin-right: 0;
  }

  .rules__btn-violet:last-child {
    order: 1;
    margin-bottom: 20px;
  }
}

@media (max-width: 1024px) {
  .educator-main__rules {
    padding: 0;
  }

  .rules__text-wrapper {
    padding: 0 67px 0 0;
  }

  .rules__bg {
    margin: auto 20px auto 0;
  }

  .rules__bg-gif {
    right: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .educator-main__rules {
    flex-direction: column;
    padding: 0 20px;
  }

  .rules__title {
    display: none;
  }

  .rules__title.rules__title--mobile {
    display: block;
    text-align: center;
  }

  .rules__text-wrapper {
    width: 100%;
    padding: 0;
  }

  .rules__bg {
    width: 100%;
    margin: 0 auto 40px;
  }

  .rules__bg-img {
    display: block;
    height: 390px;
    width: auto;
    margin: 0 auto;
  }

  .rules__bg-gif {
    right: calc(50% - 15px);
  }

  .rules__btn-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .rules__btn-violet:first-child {
    order: 2;
  }

  .rules__btn-violet:last-child {
    order: 1;
    margin-bottom: 20px;
  }
}

/* END Rules */

/* Stages */

.educator-main__stages {
  margin-bottom: 200px;
}

.stages__title {
  padding: 0 160px;
}

.stages__items-bg-wrapper {
  display: flex;
}

.stages__items-wrapper {
  position: relative;
  display: flex;
}

.stages__items-wrapper:first-child {
  margin-left: -54%;
  z-index: 100;
}

.stages__items-wrapper:last-child {
  margin-top: -20px;
  margin-left: -37%;
  z-index: 10;
}

.stages__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 480px;
  height: 362px;
  margin-right: 160px;
  padding: 35px 35px 65px;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
}

.stages__item--yellow {
  background-image: url(/uploads/media/img/educator/stages-bg-yellow.svg);
}

.stages__item--orange {
  background-image: url(/uploads/media/img/educator/stages-bg-orange.svg);
}

.stages__item--green {
  background-image: url(/uploads/media/img/educator/stages-bg-green.svg);
}

.stages__item--violet {
  background-image: url(/uploads/media/img/educator/stages-bg-violet.svg);
}

.stages__item-bg--mobile {
  display: none;
}

.stages__item-date-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 50px;
}

.stages__item-date,
.stages__item-description {
  text-align: center;
  margin: 0;
}

.stages__item-date {
  width: 90px;
  margin: 0;
}

.stages__item-date-wrapper::after {
  content: "";
  position: absolute;
  bottom: 16px;
  left: calc(50% - 100px);
  width: 200px;

  border: 2px solid #fff;
}

.stages__item-date-big,
.stages__item-date-small {
  display: block;
  font-weight: 900;
  color: #fff;
}

.stages__item-date-big {
  margin-bottom: 30px;

  font-size: 64px;
  line-height: 64px;
}

.stages__item-date-small {
  font-size: 24px;
  line-height: 26px;
}

.stages__item-description {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 40px;
}

@media (max-width: 1919px) {
  .stages__item {
    width: 440px;
    height: 332px;
    margin-right: 80px;
  }

  .stages__items-wrapper:last-child {
    margin-top: -10px;
  }

  .stages__item-date-wrapper::after {
    bottom: 7px;
    left: calc(50% - (183px/2));
    width: 183px;
  }

  .stages__items-wrapper:first-child {
    margin-left: -45%;
  }

  .stages__items-wrapper:last-child {
    margin-left: -30%;
  }

  .stages__item-date {
    width: 75px;
    margin: 0;
  }

  .stages__item-date-big {
    margin-bottom: 40px;

    font-size: 48px;
    line-height: 48px;
  }

  .stages__item-date-small {
    font-size: 24px;
    line-height: 26px;
  }

  .stages__item-description {
    font-size: 30px;
    line-height: 33px;
  }
}

@media (max-width: 1600px) {
  .stages__item {
    margin-right: 16px;
  }

  .stages__items-wrapper:first-child {
    margin-left: -50%;
  }

  .stages__items-wrapper:last-child {
    margin-left: -35%;
  }
}

@media (max-width: 1440px) {
  .stages__items-wrapper:first-child {
    margin-left: -58%;
  }

  .stages__items-wrapper:last-child {
    margin-left: -45%;
  }
}

@media (max-width: 1280px) {
  .stages__item {
    width: 380px;
    height: 332px;
    padding: 35px 25px 65px;
  }

  .stages__item--yellow {
    background-image: url(/uploads/media/img/educator/stages-bg-yellow-tablet.svg);
  }

  .stages__item--orange {
    background-image: url(/uploads/media/img/educator/stages-bg-orange-tablet.svg);
  }

  .stages__item--green {
    background-image: url(/uploads/media/img/educator/stages-bg-green-tablet.svg);
  }

  .stages__item--violet {
    background-image: url(/uploads/media/img/educator/stages-bg-violet-tablet.svg);
  }

  .stages__items-wrapper:first-child {
    margin-left: -54%;
  }

  .stages__items-wrapper:last-child {
    margin-left: -45%;
  }

  .stages__item-date-wrapper::after {
    left: calc(50% - 80px);
    width: 160px;
  }
}

@media (max-width: 1100px) {
  .stages__items-wrapper:first-child {
    margin-left: -65%;
  }

  .stages__items-wrapper:last-child {
    margin-left: -55%;
  }
}

@media (max-width: 1024px) {
  .stages__item {
    padding: 26px 12px 50px;
  }

  .stages__items-wrapper:first-child {
    margin-left: -560px;
  }

  .stages__items-wrapper:last-child {
    margin-left: -402px;
  }

  .stages__item--yellow {
    background-image: url(/uploads/media/img/educator/stages-bg-yellow-mobile.svg);
  }

  .stages__item--orange {
    background-image: url(/uploads/media/img/educator/stages-bg-orange-mobile.svg);
  }

  .stages__item--green {
    background-image: url(/uploads/media/img/educator/stages-bg-green-mobile.svg);
  }

  .stages__item--violet {
    background-image: url(/uploads/media/img/educator/stages-bg-violet-mobile.svg);
  }

  .stages__item {
    width: 300px;
    height: 260px;
  }

  .stages__item-date-wrapper::after {
    bottom: 3px;
    left: calc(50% - 40px);
    width: 80px;
  }

  .stages__item-date-wrapper {
    margin-bottom: 32px;
  }

  .stages__item-date {
    width: 75px;
    margin: 0;
  }

  .stages__item-date-big {
    margin-bottom: 35px;

    font-size: 36px;
    line-height: 36px;
  }

  .stages__item-date-small {
    font-size: 18px;
    line-height: 18px;
  }

  .stages__item-description {
    font-size: 24px;
    line-height: 26px;
  }
}

@media (max-width: 900px) {
  .stages__items-wrapper:first-child {
    margin-left: -570px;
  }

  .stages__items-wrapper:last-child {
    margin-left: -500px;
  }
}

@media (max-width: 768px) {
  .stages__title {
    padding: 0;
  }

  .stages__items-wrapper {
    flex-direction: column;
  }

  .stages__items-wrapper:first-child {
    margin-left: 0;
  }

  .stages__items-wrapper:last-child {
    margin-top: 0;
    margin-left: 0;
  }

  .stages__items-bg-wrapper {
    position: relative;
    margin-top: -10px;
  }

  .stages__items-bg-wrapper:first-child {
    margin-left: -140px;
  }

  .stages__items-bg-wrapper:last-child {
    margin-left: 0;
  }

  .stages__item {
    width: 270px;
    height: 220px;
    margin-right: 0;
    padding: 20px 12px 38px;
  }

  .stages__item-bg--mobile {
    display: block;
  }

  .stages__item-bg--desktop {
    display: none;
  }

  .stages__items-wrapper:first-child .stages__items-bg-wrapper:first-child {
    z-index: 40;
  }

  .stages__items-wrapper:first-child .stages__items-bg-wrapper:last-child {
    z-index: 30;
  }

  .stages__items-wrapper:last-child .stages__items-bg-wrapper:first-child {
    z-index: 20;
  }

  .stages__items-wrapper:last-child .stages__items-bg-wrapper:last-child {
    z-index: 10;
  }

  .stages__item-date-big {
    margin-bottom: 22px;
  }
}

@media (max-width: 600px) {
  .stages__items-bg-wrapper:first-child {
    margin-left: -220px;
  }

  .stages__items-bg-wrapper:last-child {
    margin-left: -85px;
  }
}

@media (max-width: 480px) {
  .stages__items-bg-wrapper:first-child {
    margin-left: 0;
  }

  .stages__items-bg-wrapper:last-child {
    align-self: flex-end;
    margin-left: 0;
  }

  .stages__items-bg-wrapper:first-child .stages__item--orange,
  .stages__items-bg-wrapper:last-child .stages__item--yellow,
  .stages__items-bg-wrapper:first-child .stages__item--violet,
  .stages__items-bg-wrapper:last-child .stages__item--green {
    display: none;
  }

  .stages__items-bg-wrapper:first-child .stages__item--orange.stages__item-bg--mobile,
  .stages__items-bg-wrapper:last-child .stages__item--yellow.stages__item-bg--mobile,
  .stages__items-bg-wrapper:first-child .stages__item--violet.stages__item-bg--mobile,
  .stages__items-bg-wrapper:last-child .stages__item--green.stages__item-bg--mobile {
    display: block;
  }
}

/* END Stages */

/* Nominations */

.educator-main__nominations {
  padding: 0 160px;
  margin-bottom: 200px;
}

.nominations__list {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;

  list-style: none;
}

.nominations__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min-content;
}

.nominations__item-photo {
  display: block;
  margin-bottom: 20px;
}

.nominations__btn-pink {
  position: absolute;
  bottom: 180px;
  left: calc(50% - 104px);
  width: 208px;
}

.nominations__item-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}

@media (max-width: 1919px) {
  .educator-main__nominations {
    margin-bottom: 150px;
    padding: 0 40px;
  }
}

@media (max-width: 1440px) {
  .educator-main__nominations {
    padding: 0 40px;
  }

  .nominations__item-photo {
    width: 364px;
    height: 520px;
  }

  .nominations__item-title {
    font-size: 30px;
    line-height: 33px;
  }

  .nominations__btn-pink {
    bottom: 160px;
  }
}

@media (max-width: 1280px) {
  .educator-main__nominations {
    margin-bottom: 120px;
  }

  .nominations__item-photo {
    width: 300px;
    height: 428px;
  }

  .nominations__item-title {
    font-size: 24px;
    line-height: 26px;
  }

  .nominations__btn-pink {
    bottom: 140px;
  }
}

@media (max-width: 1024px) {
  .educator-main__nominations {
    padding: 0 34px;
  }

  .nominations__item-photo {
    width: 220px;
    height: 314px;
  }

  .nominations__btn-pink {
    position: relative;
    bottom: unset;
    left: unset;
    width: 208px;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .nominations__list {
    flex-direction: column;
    align-items: center;
  }

  .nominations__item {
    margin-bottom: 50px;
  }

  .nominations__item-photo {
    width: 364px;
    height: 520px;
  }

  .nominations__item-title {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .nominations__item-photo {
    width: 340px;
    height: 486px;
  }
}

/* END Nominations */

/* Prize */

.educator-main__prize {
  margin-bottom: 200px;
  padding: 0 160px;
}

.prize__content {
  display: flex;
}

.prize__title {
  margin-bottom: 0;
}

.prize__text-wrapper {
  width: 25%;
  margin-right: 100px;
  padding-top: 150px;
}

.prize__lead-in-text,
.prize__rules-link {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}

.prize__lead-in-text {
  margin-bottom: 30px;
}

.prize__rules-link {
  color: #5169FC;
  text-decoration: none;
}

.prize__rules-link:hover,
.prize__rules-link:focus,
.prize__rules-link:active {
  color: #5169FC;
  text-decoration: none;
}

.prize__description {
  position: relative;
  width: 70%;
  padding-top: 120px;
}

.prize__list {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;

  list-style: none;
}

.prize__item,
.prize__item-text-wrapper {
  position: relative;
  z-index: 100;

  text-align: center;
}

.prize__item:not(:last-child) {
  margin-right: 100px;
}

.prize__item--pink .prize__item-square {
  background-color: #F61755;
}

.prize__item--orange .prize__item-square {
  background-color: #FF6430;
}

.prize__item--yellow .prize__item-square {
  background-color: #FFD715;
}

.prize__item-square {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 300px;
  margin-bottom: 10px;
  padding-bottom: 20px;

  border-radius: 40px;
}

.prize__item-text {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}

.prize__item-text--big {
  font-size: 96px;
  font-weight: 400;
  line-height: 96px;
}

.prize__bg-square-wrapper {
  position: absolute;
  top: 10px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.prize__bg-square-green,
.prize__bg-square-violet {
  width: 300px;
  height: 300px;
  z-index: 10;

  border-radius: 40px;
}

.prize__bg-square-green {
  margin: 60px 100px 0 0;
  background-color: #5FDE00;
}

.prize__bg-square-violet {
  background-color: #5169FC;
}

.prize__item-sert {
  margin: 0;
}

@media (max-width: 1919px) {
  .educator-main__prize {
    margin-bottom: 150px;
    padding: 0 40px;
  }

  .prize__content {
    flex-direction: column;
  }

  .prize__text-wrapper {
    width: 45%;
    margin-right: 0;
    padding-top: 0;
  }

  .prize__description {
    width: 100%;
    margin: 0 auto;
  }

  .prize__title {
    margin-bottom: 30px;
  }

  .prize__item-text {
    font-size: 30px;
    line-height: 33px;
  }

  .prize__item-text--big {
    margin-bottom: 10px;
    font-size: 64px;
    line-height: 64px;
  }

  .prize__lead-in-text,
  .prize__rules-link {
    font-size: 30px;
    line-height: 33px;
  }

  .prize__lead-in-text {
    margin-bottom: 20px;
  }
}

@media (max-width: 1280px) {
  .educator-main__prize {
    margin-bottom: 120px;
  }

  .prize__text-wrapper {
    width: 55%;
  }

  .prize__item:not(:last-child) {
    margin-right: 20px;
  }

  .prize__lead-in-text,
  .prize__rules-link {
    font-size: 24px;
    line-height: 26px;
  }
}

@media (max-width: 1024px) {
  .educator-main__prize {
    padding: 0 70px;
  }

  .prize__text-wrapper {
    width: 100%;
  }

  .prize__description {
    padding-top: 100px;
  }

  .prize__bg-square-wrapper {
    top: 0;
  }

  .prize__bg-square-green,
  .prize__bg-square-violet {
    width: 200px;
    height: 200px;
  }

  .prize__item-square {
    width: 200px;
    height: 200px;
  }

  .prize__item-text {
    font-size: 24px;
    line-height: 26px;
  }

  .prize__item-text--big {
    font-size: 48px;
    line-height: 48px;
  }

  .prize__lead-in-text,
  .prize__rules-link {
    font-size: 24px;
    line-height: 26px;
  }

  .prize__text {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .educator-main__prize {
    padding: 0 20px;
  }

  .prize__description {
    padding-top: 0;
  }

  .prize__list {
    flex-direction: column;
    width: 100%;
    padding: 0 70px;
  }

  .prize__item:not(:last-child) {
    margin-right: 0;
  }

  .prize__item {
    width: fit-content;
    margin-bottom: 20px;
  }

  .prize__item--pink,
  .prize__item--yellow {
    margin-right: auto;
  }

  .prize__item--orange {
    margin-left: auto;
  }

  .prize__bg-square-wrapper {
    flex-direction: column;
    justify-content: space-between;
    padding: 150px 120px 210px;
  }

  .prize__bg-square-green {
    margin: 0 0 50px;
  }

  .prize__bg-square-violet {
    align-self: flex-end;
  }
}

@media (max-width: 540px) {
  .prize__list {
    padding: 0 20px;
  }

  .prize__bg-square-wrapper {
    padding: 100px 0 180px;
  }
}

@media (max-width: 480px) {
  .prize__list {
    padding: 0 20px;
  }
}

/* END Prize */

/* Contacts */

.educator-main .educator-main__contacts {
  padding: 0 130px 0 170px;
}

.educator-main__contacts {
  margin-bottom: 200px;
}

.contacts__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;

  list-style: none;
}

.contacts__item {
  display: flex;
  align-items: flex-start;
}

.contacts__item:not(:last-child) {
  margin-bottom: 50px;
}

.contacts__item-description-wrapper {
  display: flex;
  flex-direction: column;
  width: 40%;
  margin-right: 50px;
}

.contacts__item-description,
.contacts__item-link {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}

.contacts__item-description {
  margin-bottom: 20px;
}

.contacts__item-link {
  color: #5169FC;
}

.contacts__item-phone {
  display: block;
  width: 60%;
  height: auto;
}

.contacts__item-note {
  margin: 0;
}

@media (max-width: 1919px) {
  .educator-main .educator-main__contacts {
    padding: 0 20px 0 40px;
  }

  .educator-main__contacts {
    margin-bottom: 150px;
  }

  .contacts__item-description-wrapper {
    width: 50%;
    margin-right: 20px;
  }

  .contacts__item-phone {
    width: 50%;
  }

  .contacts__item-description,
  .contacts__item-link {
    font-size: 30px;
    line-height: 33px;
  }
}

@media (max-width: 1280px) {

  .contacts__item-description,
  .contacts__item-link {
    font-size: 24px;
    line-height: 26px;
  }
}

@media (max-width: 1024px) {
  .educator-main .educator-main__contacts {
    padding: 0 190px 0 80px;
  }

  .educator-main__contacts {
    margin-bottom: 120px;
  }

  .contacts__item {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .contacts__item-description-wrapper {
    width: 100%;
    margin-right: 0;
  }

  .contacts__item-phone {
    width: 100%;
  }

  .contacts__item-note {
    margin: 0 0 10px;
  }
}

@media (max-width: 768px) {
  .educator-main .educator-main__contacts {
    padding: 0 20px;
  }

  .contacts__item-description {
    margin-bottom: 10px;
  }
}

/* END Contacts */

/* Items */

.educator-items {
  padding-top: 30px;
}

.educator-items__container {
  padding: 0 160px;
}

.educator-items__wrapper {
  background-image: url(/uploads/media/img/educator/best-educator-2023_background.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

.educator-items__prev {}

.educator-items__prev-title {
  text-align: center;
  font-weight: 900;
  font-size: 41px;
  font-family: "Arantxa", Arial, sans-serif;
}

.educator-items__prev-list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
}

.educator-items__prev-list>* {
  width: 360px;
}

.educator-items__prev-list .educator-items__item {
  width: auto;
  padding: 100px 30px 0;
}

.educator-items__prev-list .educator-item__info h3 {
  font-size: 22px;
  line-height: 24px;
}

.educator-items__prev-list .educator-item__info * {
  margin-top: 12px;
  font-size: 20px;
}

.educator-items__prev-list .educator-item__image-link img {
  object-fit: cover;
  width: 300px;
  height: 300px;
}

.educator-items__prev-list .educator-item__vote {
  width: 100px;
  height: 100px;
  top: 20px;
  left: 30px;
}

.educator-items__prev-list .educator-item__position {
  top: 35px;
  right: 35px;
  width: 85px;
  height: 85px;
}

.educator-items__title {
  margin: 0 0 80px;
}

.educator-items__subtitle {
  margin: 0 0 50px;

  font-weight: 900;
  font-size: 64px;
  line-height: 64px;
}

.educator-items__nomination-menu {
  margin: 0 0 50px;
}

.educator-items__form-title,
.educator-items__note-add {
  margin: 0 0 20px;

  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
}

.educator__red-text {
  color: red;
}

.educator-items__note-add.educator-items__items-empty {
  margin-bottom: 100px;
}

.educator-items__nomination-list {
  display: flex;
  margin: 0;
  padding: 0;

  list-style: none;
}

.educator-items__nomination-item:not(:last-child) {
  margin-right: 10px;
}

.educator-items__nomination-link {
  display: block;
  width: fit-content;
  height: 60px;
  padding: 18px 35px 22px;

  font-weight: 700;
  font-size: 18px;
  color: #fff;
  line-height: 18px;

  background-color: #C4C4C4;
  border-radius: 20px;
}

.educator-items__nomination-link.educator-items__nomination-link--active,
.educator-items__nomination-link:active {
  background-color: #5FDE00;
}

.educator-items__nomination-link:hover,
.educator-items__nomination-link:focus,
.educator-items__nomination-link:active {
  color: #fff;
  text-decoration: none;
}

.educator-items__nomination-link:hover,
.educator-items__nomination-link:focus {
  background-color: #5169FC;
}

.educator-items__search-form {
  margin-bottom: 85px;
}

.educator-items__search-form form {
  display: flex;
}

.educator-items__search-form .form-group {
  min-width: 300px;
  max-width: 300px;
}

.educator-items__search-form .form-group:not(:last-child) {
  margin: 0 20px 0 0;
  padding: 0;
}

.educator-items__search-form .form-group .form-control,
.educator-items__search-form .select2-container .select2-selection--single {
  min-width: 300px;
  max-width: 300px;
  height: 60px;
  padding: 19px 20px;

  border: 1px solid #000;
  border-radius: 10px;
}

.educator-items__search-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: inherit;
}

.educator-items__search-form .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 20px;
  right: 15px;
}

.educator-items__items-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 50px;
  column-gap: 40px;
  margin-bottom: 40px;
}

.educator-items__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 23%;
  margin-bottom: 50px;
  padding: 100px 30px 60px;
}

.educator-item__image {
  display: block;
  width: 380px;
  height: 380px;
  z-index: 10;
  border-radius: 40px;
}

.educator-item__vote,
.educator-item__position {
  position: absolute;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100;

  border-radius: 20px;
}

.educator-item__position {
  top: 22px;
  right: 0;
  width: 100px;
  height: 100px;

  background-color: #5FDE00;
}

.educator-item__position-count {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  line-height: 40px;
}

.educator-item__position-icon {
  position: relative;
  display: block;
  padding-left: 34px;

  color: #fff;
}

.educator-item__position-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 20px;

  background-image: url(/uploads/media/img/educator/position-icon.svg);
  background-repeat: no-repeat;
}

.educator-item__vote {
  top: 0;
  left: 0;
  width: 132px;
  height: 132px;

  background-color: #FF6430;
}

.educator-item__vote-icon {
  display: block;
  margin-bottom: 10px;
}

.educator-item__vote-count {
  display: block;

  font-size: 36px;
  font-weight: bold;
  color: #fff;
  line-height: 40px;
}

.educator-item__info {
  margin-bottom: 16px;

  text-align: center;
}

.educator-item__name {
  margin-bottom: 8px;

  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
}

.educator-item__institution {
  margin-bottom: 8px;
}

.educator-item__btn-wrapper {
  display: flex;
}

.educator-item__btn-pink {
  margin-right: 10px;
}

.educator-item__btn-pink_view {
  margin-top: 15px;
  padding-right: 80px;
}

.educator-items__button-create {
  margin-bottom: 200px;
}

.educator-items__note-add {
  margin: 0 0 30px;
}

.educator-items__btn-add {
  position: relative;
  padding-right: 80px;
}

.educator-items__btn-add::before,
.educator-items__btn-add::after {
  content: "";

  position: absolute;
  right: 40px;
  top: calc(50%);
  width: 16px;
  height: 2px;

  border: 1px solid #000000;
}

.educator-items__btn-add::after {
  transform: rotate(90deg);
}

.educator-items__contacts-wrapper {
  margin-bottom: 200px;
}

@media (max-width: 1919px) {
  .educator-items {
    padding: 30px 0 0;
  }

  .educator-items__wrapper {
    padding-top: 70px;
  }

  .educator-items__container {
    padding: 0 60px;
  }

  .educator-items__subtitle {
    margin: 0 0 30px;
    font-size: 48px;
    line-height: 48px;
  }

  .educator-items__nomination-menu {
    margin: 0 0 40px;
  }

  .educator-items__form-title,
  .educator-items__note-add {
    font-size: 30px;
    line-height: 33px;
  }
}

@media (max-width: 1600px) {
  .educator-items__items-list {
    row-gap: 40px;
    column-gap: 55px;
  }

  .educator-items__item {
    width: 30%;
  }
}

@media (max-width: 1280px) {
  .educator-items__items-list {
    row-gap: 70px;
    column-gap: 20px;
  }

  .educator-items__wrapper{
    background-position: center;
  }

  .educator-items__item {
    padding: 100px 25px 0;
  }

  .educator-item__image {
    width: 250px;
    height: 250px;
  }

  .educator-items__note-add.educator-items__items-empty {
    margin-bottom: 80px;
  }
}

@media (max-width: 1024px) {
  .educator-items__wrapper{
    padding-top: 0;
  }

  .educator-items__container {
    padding: 0 74px;
  }

  .educator-items__item {
    width: 47%;
  }

  .educator-items__nomination-link {
    padding: 10px 20px;
    text-align: center;
    vertical-align: middle;
  }

  .educator-items__nomination-item:first-child .educator-items__nomination-link {
    padding-top: 18px;
  }

  .educator-items__form-title,
  .educator-items__note-add {
    font-size: 24px;
    line-height: 26px;
  }

  .educator-items__search-form {
    margin-bottom: 100px;
  }

  .educator-items__search-form form {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .educator-items__container {
    padding: 0 20px;
  }

  .educator-items__nomination-list {
    flex-wrap: wrap;
  }

  .educator-items__nomination-link {
    margin-bottom: 10px;
    padding: 18px 20px 22px;
  }

  .educator-items__subtitle {
    font-size: 36px;
    line-height: 36px;
  }

  .educator-items__nomination-menu {
    margin: 0 0 40px;
  }

  .educator-items__search-form {
    margin-bottom: 70px;
  }

  .educator-items__form-title {
    margin: 0 0 20px;

    font-size: 30px;
    line-height: 33px;
  }

  .educator-items__items-list {
    flex-direction: column;
  }

  .educator-items__item {
    width: 300px;
    margin: 0 auto;
  }

  .educator-items__note-add.educator-items__items-empty {
    margin-bottom: 50px;
  }
}

@media (max-width: 417px) {
  .educator-items__nomination-item:last-child .educator-items__nomination-link {
    padding: 10px 20px;
    text-align: center;
  }
}

/* END Items */

/* Item Profile */

.educator-profile {
  margin-bottom: 200px;
  padding: 30px 160px 0;
}

.educator-profile .educator-items__subtitle {
  margin-bottom: 50px;
}

.educator-profile .educator-items__item {
  flex-direction: row;
  width: 100%;
  padding: 0;
}

.educator-profile__image-wrapper {
  position: relative;
  width: 460px;
  margin-right: 100px;
  padding: 80px 40px 0;
}

.educator-profile .educator-item__image {
  width: 380px;
  height: 380px;
  margin-bottom: 20px;
}

.educator-profile .educator-item__info {
  margin-bottom: 0;
  text-align: left;
}

.educator-profile__field-wrapper {
  margin-bottom: 50px;
}

.educator-profile .educator-items__form-title {
  margin-bottom: 16px;
}

.educator-profile__btn-photo {
  margin-bottom: 20px;
}

.educator-profile__btn-photo button {
  background-color: transparent;
  border: none;
}

.educator-profile .field-item-slug {
  display: none;
}

.educator-profile .field-item-image {
  display: none;
}

.educator-profile__btn-share {
  position: relative;
  padding-right: 90px;
}

.educator-profile__btn-share::after {
  content: "";

  position: absolute;
  top: calc(50% - 10px);
  right: 50px;

  width: 24px;
  height: 24px;
  background-image: url(/uploads/media/img/educator/share.svg);
}

.educator-items__contacts-wrapper {
  margin-bottom: 200px;
}

.educator-profile__review {}

.educator-profile__review .form-group {
  padding: 0;
}

.educator-profile__review .control-label {
  margin-bottom: 15px;
}

.educator-profile__review .btn-pink {
  margin: 0 auto;
}

@media (max-width: 1919px) {
  .educator-profile {
    margin-bottom: 150px;
    padding: 30px 40px 0;
  }
}

@media (max-width: 1280px) {
  .educator-profile {
    margin-bottom: 120px;
    padding: 30px 40px 0;
  }

  .educator-profile__image-wrapper {
    margin-right: 20px;
  }
}

@media (max-width: 1024px) {
  .educator-profile {
    padding: 30px 74px 0;
  }

  .educator-profile .educator-items__item {
    flex-direction: column;
    align-items: flex-start;
  }

  .educator-profile .educator-item__info {
    order: 1;
  }

  .educator-profile__image-wrapper {
    order: 2;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .educator-profile {
    padding: 30px 20px 0;
  }

  .educator-profile .educator-items__item {
    flex-direction: column;
    align-items: flex-start;
  }

  .educator-profile .educator-item__info {
    order: 1;
  }

  .educator-profile__image-wrapper {
    order: 2;
    width: fit-content;
    margin-right: 0;
    padding: 80px 25px 0;
  }

  .educator-profile .educator-item__image {
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .educator-profile__image-wrapper {
    margin: 0 auto;
    padding: 100px 25px 0;
  }

  .educator-profile .educator-item__image {
    width: 250px;
    height: 250px;
  }
}

/* END Item Profile */

/* Rules */

.educator-rules {
  margin-bottom: 200px;
  padding: 30px 160px 0;
}

.educator-rules__text-wrapper {
  width: 60%;
  margin-bottom: 50px;
}

.educator-rules__text {
  margin: 0 0 30px;
}

.educator-avtor__big-text {
  font-weight: 300;
  font-size: 30px;
  line-height: 130%;
}

@media (max-width: 1919px) {
  .educator-rules {
    margin-bottom: 150px;
    padding: 30px 40px 0;
  }

  .educator-rules__text-wrapper {
    width: 80%;
  }

  .educator-avtor__big-text {
    font-size: 24px;
  }
}

@media (max-width: 1280px) {
  .educator-rules {
    margin-bottom: 120px;
  }

  .educator-rules__text-wrapper {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .educator-rules {
    padding: 30px 74px 0;
  }
}

@media (max-width: 768px) {
  .educator-rules {
    padding: 30px 20px 0;
  }

  .educator-rules__text-wrapper {
    margin-bottom: 40px;
  }
}



/* END Rules */

/* Author Page */
/* END Author Page */

/* Create */

.educator-create {
  padding: 30px 160px 0;
}

.educator-create__title {
  margin-bottom: 80px;
}

.educator-create__create-form {
  margin-bottom: 200px;
}

.educator-form__subtitle {
  margin-bottom: 50px;
}

.educator-form__form-wrapper {
  display: flex;
  margin-bottom: 30px;
}

.educator-form .form-group.educator-form__photo-add {
  padding: 0;
  margin: 0 100px 0 0;
}

.educator-form__photo-field {
  position: relative;
  width: 380px;
  height: 380px;

  background-image: url(/uploads/media/img/educator/empty_photo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.educator-form__btn-upload,
.educator-form__btn-delete,
.educator-form__btn-pink {
  border-style: none;
}

.educator-form__btn-delete {
  border: 1px solid #000000;
}

.educator-form__btn-upload {
  margin-bottom: 20px;
}

.educator-form__photo-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;

  outline: none;
  opacity: 0;
  cursor: pointer;
}

.educator-form__photo-img {
  display: none;
  width: 380px;
  height: 380px;
  margin-bottom: 50px;
  border-radius: 40px;

  background-size: cover;
  background-position: center;
}

.educator-form__photo-error {
  color: #f00;
}

.educator-form__photo-note {
  margin: 10px 0 20px;
}

.educator-form .form-group {
  margin: 0 0 30px;
  padding: 0;
}

.educator-form .control-label {
  margin-bottom: 10px;

  font-weight: 400;
}

.educator-form .form-control,
.educator-form .select2-selection.select2-selection--single {
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;

  border: 1px solid #000000;
  border-radius: 10px;
  box-sizing: border-box;
}

.educator-form .form-control {
  width: 380px;
  padding: 18px 20px 20px;
}


.field-item-nomination {
  width: 380px;
}

.field-item-institution_id {
  width: 680px;
}

.educator-form .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 18px;
  right: 10px;
}

.educator-form__btn-add-institution {
  margin-bottom: 10px;
}

.educator-form__btn-add-institution-note {
  margin: 0;
}

.educator-form__institution-form {
  height: fit-content;
}

@media (max-width: 1919px) {
  .educator-create {
    padding: 30px 40px 0;
  }

  .educator-create__title {
    margin-bottom: 40px;
  }

  .educator-form .form-group.educator-form__photo-add {
    margin: 0 75px 0 0;
  }
}

@media (max-width: 1280px) {
  .educator-form .form-group.educator-form__photo-add {
    margin: 0 20px 0 0;
  }

  .field-item-institution_id {
    width: 480px;
  }
}

@media (max-width: 1024px) {
  .educator-form__form-wrapper {
    position: relative;
    flex-direction: column;
  }

  .educator-form .form-group.educator-form__photo-add {
    order: 2;
    margin: 0 0 130px;
  }

  .educator-form .educator-form__btn-pink {
    position: absolute;
    bottom: 0;
  }
}

@media (max-width: 768px) {
  .educator-create {
    padding: 30px 30px 0;
  }

  .educator-form .select2-selection.select2-selection--single {
    width: 380px;
  }

  .select2-dropdown.select2-dropdown--below {
    max-width: 380px;
  }

  .field-item-institution_id {
    width: 380px;
  }
}

@media (max-width: 480px) {

  .educator-form .form-control,
  .educator-form .select2-selection.select2-selection--single,
  .educator-form .field-item-job_id .select2-selection.select2-selection--single {
    width: 300px;
  }

  .select2-dropdown.select2-dropdown--below {
    max-width: 300px;
  }

  .educator-form .educator-form__photo-img,
  .educator-form .educator-form__photo-field {
    width: 300px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .educator-form__btn-upload,
  .educator-form__btn-delete {
    margin-left: auto;
    margin-right: auto;
  }

  .field-item-institution_id {
    width: 300px;
  }
}


/* END Create */

/* Modal */

.sendSuccessInner a {
  margin: 0 auto;
}

.sendSuccessInner .sendSuccessInner__title {
  margin: 0 auto 20px;
}

.sendSuccessWindow.educator h4 {
  font-family: "Arantxa";
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
  text-align: center;
  text-transform: uppercase;
}

.sendSuccessInner__title {
  font-family: "Arantxa" !important;
  font-style: normal;
  font-weight: 300;
  font-size: 36px !important;
  line-height: 36px;
  text-align: center;
}


.sendSuccessInner__text {
  font-family: "Arantxa" !important;
  font-weight: 300;
  font-size: 28px !important;
  line-height: 28px;
  text-align: center;
}


@media (max-width: 768px) {
  .sendSuccessWindow.educator h4 {
    font-weight: 300;
    font-size: 36px;
    line-height: 36px;
  }

 

  .sendSuccessInner__title {
    font-size: 18px !important;
    line-height: 18px;
  }

  .sendSuccessInner__text {
    font-family: "Arantxa" !important;
    font-weight: 300;
    font-size: 14px !important;
    line-height: 14px;
    text-align: center;
  }

}

/* END Modal */

/* Menu */

.second-menu--line::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
}

.second-menu-wrapper {
  padding: 1rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.second-menu--logo {
  height: 60px;
  width: 470px;
  background-repeat: no-repeat;
}

@media (max-width: 992px) {
  .second-menu--logo {
    width: 350px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}

@media (max-width: 768px) {
  .second-menu--logo {
    display: none;
  }

  .second-menu-wrapper {
    justify-content: center;
  }
}

/* END Menu */

/* Pagination */
.appealPaginator {
  padding: 0;
}

.pagination {
  display: flex;
  justify-content: center;
  margin: 0 0 180px;
}

.pagination>li {
  display: block;
  margin-right: 20px;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span,
.pagination>li:last-child>a,
.pagination>li:last-child>span {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus,
.pagination>li>a,
.pagination>li>span,
.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
  width: 40px;
  height: 40px;
  padding: 6px 0px;

  font-weight: 700;
  font-size: 18px;
  color: #fff;
  line-height: 22px;

  border-radius: 8px;
  border-color: transparent;
}

.pagination>li>a,
.pagination>li>a:hover,
.pagination>li>a:focus,
.pagination>.disabled>a,
.pagination>.disabled>span,
.pagination>.disabled>a:focus,
.pagination>.disabled>a:hover,
.pagination>.disabled>span:focus,
.pagination>.disabled>span:hover {
  color: #fff;
  font-weight: 700;

  background: #C4C4C4;
}

.pagination>.active>a,
.pagination>.active>a:hover,
.pagination>.active>a:focus {
  background: #5169FC;
}

.pagination>.prev>a,
.pagination>.next>a {
  font-weight: 700;
  color: #fff;
  border-radius: 8px;
  border-color: transparent;

  background: #5169FC;
}

@media (max-width: 1919px) {

  .pagination,
  .educator-items__button-create {
    margin: 0 0 150px;
  }
}

@media (max-width: 1280px) {

  .pagination,
  .educator-items__button-create {
    margin: 0 0 120px;
  }
}

/* END Pagination */

/* Footer */

.educator__footer {
  height: fit-content;
  padding: 15px 0;

  text-align: center;
  background-color: #F8F8F8;
}

.educator__footer a {
  display: block;

  font-family: "Arantxa", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000;
}

/* END Footer */