/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* END FONTS */

/* MAIN */

* {
  font-family: Montserrat;
}

body {
  max-width: 1920px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Rubik;
}

h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 57px;

  text-transform: uppercase;
  margin-bottom: 58px;
}

h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;

  text-transform: uppercase;
}

.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 1920px) {
  h2 {
    font-size: 36px;
    line-height: 43px;
  }

  h3 {
    font-size: 24px;
    line-height: 36px;
  }
}

section a:hover,
section a:focus,
section a {
  color: #000;
  width: max-content;
}
/* END MAIN */

/* Menu */
.second-menu--line {
  margin-top: 1rem;
  padding: 0;
}
.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;
  margin: auto;
}
.second-menu--logo {
  height: 60px;
  width: 470px;
  background-repeat: no-repeat;
}
.second-menu--burger {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  text-align: right;
}

.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%;
  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: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
}

.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: 0px;
}

.active-hide {
  overflow: hidden;
}
@media (max-width: 1920px) {
  .second-menu--pull-out ul li a {
    font-size: 12px;
  }

  .second-menu--pull-out.active ul {
    margin: 0 15px;
  }
}
@media (max-width: 992px) {
  .second-menu--logo {
    width: 350px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .span-invisible {
    display: none;
  }

  .second-menu--pull-out ul li a {
    font-size: 16px;
  }
}

@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: 100vh;
  }
  .second-menu--pull-out.active ul {
    flex-direction: column;
    align-items: center;
    height: 80vh;
  }
}

/* END Menu */

/* Buttons */

.btn img {
  vertical-align: initial;
}
.btn.btn-blue {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  background: #77efff;
  border-radius: 40px;
  padding: 2rem 3rem;
}

.btn.btn-yellow {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  background: #fff031;
  border-radius: 25px;
  padding: 1rem 2rem;
}

.btn.btn-lightblue {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  background: #e1fffa;
  border: 1px solid #000000;
  border-radius: 30px;
  padding: 1rem 2rem;
}

.btn.btn-violet {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  background: #574cff;
  border-radius: 40px;
  padding: 2rem 3rem;
  color: #fff;
}

.btn.btn-gray {
  background: #e7e7e7;
  border-radius: 25px;
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 24px;
  padding: 1rem 2rem;
  text-align: center;
  text-transform: uppercase;

  color: #000000;
}

@media (max-width: 992px) {
  .btn {
    width: 100%;
  }
}

/* END Buttons */

/* Main banner */
.uspeh-header__wrapper {
  position: relative;
  height: auto;
  
  /*background: linear-gradient(
      180deg,
      rgba(105, 204, 226, 0) 46.35%,
      rgba(30, 170, 201, 0.8) 67.71%,
      rgba(0, 96, 117, 0.8) 100%
    ),
    url(/uploads/media/img/uspeh/main-image.jpg);
  background-position: center;
  background-position-y: 30%;
  background-size: cover;*/
}

.uspeh-header__wrapper h1 {
  font-style: normal;
  font-weight: 500;
  font-size: 160px;
  line-height: 170px;
  text-align: center;

  color: #ffffff;

  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  bottom: 20vh;
}

.uspeh-header__btn {
  position: absolute;
  bottom: 10vh;
  text-align: center;
  width: 100%;
}

.uspeh-header__video-wrapper {
  width: 1920px;
  margin: 0 auto;
}

.uspeh-header__video {
  width: 100%;
  height: 100%;
}

@media (max-width: 1920px) {
  .uspeh-header__wrapper {
    
  }
  
  .uspeh-header__video-wrapper {
	  width: auto;
	}
  
  .uspeh-header__wrapper h1 {
    font-size: 100px;
    line-height: 110px;
  }
}

@media (max-width: 1700px) {
  .uspeh-header__video {
	width: 100%;
	height: 100%;
  }
}

@media (max-width: 1149px) {
  .uspeh-header__wrapper h1 {
    font-size: 64px;
    line-height: 60px;
    bottom: 15vh;
  }

  .uspeh-header__btn {
    bottom: 5vh;
  }
  
  .uspeh-header__video {
	width: 100%;
	height: 100%;
  }
}
@media (max-width: 992px) {
  .uspeh-header__video-wrapper {
	margin-bottom: 5vh;
  }
  
  .uspeh-header__btn {
    padding-right: 15px;
    padding-left: 15px;
  }
  
  
}
@media (max-width: 768px) {
  /*.uspeh-header__wrapper {
    height: 258px;
  }*/
  
  .uspeh-header__wrapper {
    height: auto;
  }
  
  .uspeh-header__wrapper h1 {
    font-size: 30px;
    line-height: 36px;
    bottom: 0;
  }

  .uspeh-header__btn {
    margin-top: 52px;
    position: inherit;
  }
}

/* END Main banner */

/* Author */
.uspeh-author {
  margin: 149px 290px 0;
}
.author__img {
  margin-top: 10%;
  text-align: center;
}
.author__img img {
  max-width: 504px;
  width: 100%;
}

.author__social {
  margin-top: 30px;
  text-align: center;
}

.author__social img {
  margin-right: 5%;
}

.author__text p {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  margin: 0;
  line-height: 30px;
  text-indent: 1.5em;
}

.author__btn {
  margin-top: 35px;
}

@media (max-width: 1920px) {
  .uspeh-author {
    margin: 149px 46px 0;
  }

  .author__text p {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .uspeh-author {
    margin: 100px 24px 0;
  }

  .author__img {
    margin-top: 20px;
  }

  .author__text {
    margin-top: 40px;
  }
}

/* END Author */

/* Project */
.uspeh-project {
  margin: 149px 290px 0;
}

.project__img {
  margin-top: 10%;
  margin-left: -290px;
  margin-right: 5%;
}
.project__img img {
  width: 100%;
}

.project__text p {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  text-align: justify;
  text-indent: 1.5em;
}

.project__when {
  margin-top: 38px;
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;

  text-transform: uppercase;
}

@media (max-width: 1920px) {
  .uspeh-project {
    margin: 149px 46px 0;
  }
  .project__img {
    margin-left: -46px;
  }

  .project__text p {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .uspeh-project {
    margin: 100px 24px 0;
  }

  .project__img {
    margin-left: -24px;
    margin-right: -24px;
  }

  .project__when {
    font-size: 24px;
  }
}
/* END Project */

/* Rules */
.uspeh-rules {
  margin: 149px 290px 0;
}

.rules__img {
  margin-top: 195px;
  margin-left: -290px;
  margin-right: 5%;
}

.rules__img img {
  width: 100%;
}

.rules__who {
  margin-bottom: 50px;
}

.rules__who p {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
}

.rules__text {
  margin-top: 30px;
}

.rules__text p {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}

.rules__warning {
  margin-top: 30px;
}
.rules__warning p {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}

.rules__btns {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.rules__btns a {
  margin-top: 30px;
}

@media (max-width: 1920px) {
  .uspeh-rules {
    margin: 149px 46px 0;
  }

  .rules__img {
    margin-left: -46px;
  }

  .rules__text p {
    font-size: 14px;
  }

  .rules__warning p {
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  .uspeh-rules {
    margin: 149px 24px 0;
  }

  .rules__img {
    margin: 0 -24px 40px;
  }

  .rules__btns a,
  .rules__btns a:hover,
  .rules__btns a:focus {
    width: 100%;
  }

  .rules__btns .btn.btn-lightblue {
    font-size: 4vw;
  }
}
/* END Rules */

/* Stages */
.uspeh-stages {
  margin: 149px 150px 0;
}
.stages__h2 {
  text-align: center;
}
.stages__h2 h2 {
  color: #ef5747;
}

.stages__item {
  padding: 0 3rem;
}

.stages__items img {
  width: 100%;
}

.stages__title {
  padding-top: 30px;
}

.stages__title p {
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 36px;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.stages__date p {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1920px) {
  .uspeh-stages {
    margin: 149px 46px 0;
  }

  .stages__title p,
  .stages__date p {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .uspeh-stages {
    margin: 100px 46px 0;
  }

  .stages__items {
    margin-right: -46px;
  }

  .uspeh-stages .slick-list {
    padding: 0 30% 0 0;
  }

  .uspeh-stages .slick-prev {
    display: none;
  }

  .uspeh-stages .slick-next {
    top: 35%;
    right: 10%;
    width: 40px;
    height: 40px;
  }

  .uspeh-stages .slick-next:before {
    content: url("data:image/svg+xml; base64, PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMjAiIHRyYW5zZm9ybT0icm90YXRlKDE4MCAyMCAyMCkiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTYuNzkyOSAyNi43MDcxQzE2LjQwMjQgMjYuMzE2NiAxNi40MDI0IDI1LjY4MzQgMTYuNzkyOSAyNS4yOTI5TDIyLjA4NTggMjBMMTYuNzkyOSAxNC43MDcxQzE2LjQwMjQgMTQuMzE2NiAxNi40MDI0IDEzLjY4MzQgMTYuNzkyOSAxMy4yOTI5QzE3LjE4MzQgMTIuOTAyNCAxNy44MTY2IDEyLjkwMjQgMTguMjA3MSAxMy4yOTI5TDI0LjIwNzEgMTkuMjkyOUMyNC41OTc2IDE5LjY4MzQgMjQuNTk3NiAyMC4zMTY2IDI0LjIwNzEgMjAuNzA3MUwxOC4yMDcxIDI2LjcwNzFDMTcuODE2NiAyNy4wOTc2IDE3LjE4MzQgMjcuMDk3NiAxNi43OTI5IDI2LjcwNzFaIiBmaWxsPSJibGFjayIvPgo8L3N2Zz4K");
  }
}
/* END Stages */

/* Cups */
.uspeh-cups {
  margin: 149px 24px 0;
}

.cups__h2 {
  text-align: center;
}
.cups__wrapper {
  display: flex;
  justify-content: center;
}

.cups__info img {
  width: 100%;
}

.cups__money {
  display: flex;
  justify-content: space-around;
}

.cups__money p {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  margin: 0;

  text-align: center;
  text-transform: uppercase;
}
.cups__text {
  margin-top: 55px;
}
.cups__text span.red {
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 30px;

  color: #ff0000;
}

.cups__text p {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  text-indent: 1.5em;
}

@media (max-width: 1920px) {
  .uspeh-cups {
    margin: 149px 46px 0;
  }

  .cups__money p {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .uspeh-cups {
    margin: 130px 24px 0;
  }

  .cups__money {
    display: flex;
    flex-direction: column;
  }

  .cups__money p {
    margin-bottom: 30px;
  }

  .cups__money p:nth-child(2) {
    color: #e8c464;
    order: 1;
  }
  .cups__money p:first-child {
    color: #b9c3cc;
    order: 2;
  }

  .cups__money p:last-child {
    color: #d29d7e;
    order: 3;
  }

  .cups__text p {
    font-size: 14px;
    line-height: 30px;
  }

  .cups__text p span.red {
    font-size: 24px;
    line-height: 30px;
  }
}
/* END Cups */

/* Programs */
.uspeh-programs {
  margin: 365px 214px 0;
}

.programs__wrapper {
  margin-right: -214px;
  display: flex;
  align-items: center;
}

.programs__img img {
  width: 100%;
}

.programs__text p {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
}

@media (max-width: 1920px) {
  .uspeh-programs {
    margin: 150px 46px 0;
  }

  .programs__wrapper {
    margin-right: -46px;
  }
}

@media (max-width: 992px) {
  .uspeh-programs {
    margin: 100px 24px 0;
  }

  .programs__wrapper {
    margin-right: 0;
  }

  .programs__wrapper {
    flex-direction: column-reverse;
  }

  .programs__text {
    margin-top: 30px;
  }
}

/* END programs */

/* Partners */
.uspeh-partners {
  margin: 200px 137px 0;
}

.partners__h3 {
  text-align: center;
}

.partners__slider {
  margin-top: 40px;
}

.partners__slider__item {
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners__slider__item img {
  width: 100%;
  min-height: 343px;
}

.uspeh-partners .slick-next:before {
  content: url("data:image/svg+xml; base64, PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDkgMTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMC43OTI4OTMgMTMuNzA3MUMwLjQwMjM2OCAxMy4zMTY2IDAuNDAyMzY4IDEyLjY4MzQgMC43OTI4OTMgMTIuMjkyOUw2LjA4NTc5IDdMMC43OTI4OTIgMS43MDcxMUMwLjQwMjM2NyAxLjMxNjU4IDAuNDAyMzY3IDAuNjgzNDE4IDAuNzkyODkyIDAuMjkyODk0QzEuMTgzNDIgLTAuMDk3NjMwOCAxLjgxNjU4IC0wLjA5NzYzMDkgMi4yMDcxMSAwLjI5Mjg5NEw4LjIwNzExIDYuMjkyODlDOC41OTc2MyA2LjY4MzQyIDguNTk3NjMgNy4zMTY1OCA4LjIwNzExIDcuNzA3MTFMMi4yMDcxMSAxMy43MDcxQzEuODE2NTggMTQuMDk3NiAxLjE4MzQyIDE0LjA5NzYgMC43OTI4OTMgMTMuNzA3MVoiIGZpbGw9ImJsYWNrIi8+Cjwvc3ZnPg==");
}

.uspeh-partners .slick-prev:before {
  content: url("data:image/svg+xml; base64, PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDkgMTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC4yMDcxMSAwLjI5Mjg5M0M4LjU5NzYzIDAuNjgzNDE3IDguNTk3NjMgMS4zMTY1OCA4LjIwNzExIDEuNzA3MTFMMi45MTQyMSA3TDguMjA3MTEgMTIuMjkyOUM4LjU5NzYzIDEyLjY4MzQgOC41OTc2MyAxMy4zMTY2IDguMjA3MTEgMTMuNzA3MUM3LjgxNjU4IDE0LjA5NzYgNy4xODM0MiAxNC4wOTc2IDYuNzkyODkgMTMuNzA3MUwwLjc5Mjg5MyA3LjcwNzExQzAuNDAyMzY5IDcuMzE2NTggMC40MDIzNjkgNi42ODM0MiAwLjc5Mjg5MyA2LjI5Mjg5TDYuNzkyODkgMC4yOTI4OTNDNy4xODM0MiAtMC4wOTc2MzExIDcuODE2NTggLTAuMDk3NjMxMSA4LjIwNzExIDAuMjkyODkzWiIgZmlsbD0iYmxhY2siLz4KPC9zdmc+Cg==");
}

@media (max-width: 992px) {
  .uspeh-partners {
    margin: 70px 24px 0;
  }

  .partners__slider {
    margin-right: -24px;
  }

  .uspeh-partners .slick-list {
    padding: 0 30% 0 0;
  }

  .uspeh-partners .slick-prev {
    display: none !important;
  }

  .uspeh-partners .slick-next {
    right: 10%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
  }
}
/* END partners */

/* Results */

.uspeh-results {
  margin: 150px 214px 0;
}

.results__h2 {
  text-align: center;
}

.results-wrapper {
  margin-right: -214px;
  display: flex;
  align-items: center;
}

.results__text p {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}

.results__img img {
  width: 100%;
}

@media (max-width: 1920px) {
  .uspeh-results {
    margin: 150px 46px 120px;
  }
  .results-wrapper {
    margin-right: -46px;
  }
}

@media (max-width: 992px) {
  .uspeh-results {
    margin: 100px 24px 0;
  }

  .results-wrapper {
    margin-right: 0;
  }
  .results-wrapper {
    flex-direction: column-reverse;
  }

  .results__text {
    margin: 40px auto 50px;
  }
}

/* END Results */

/* Contacts */
.uspeh-contacts {
  background: #e1fffa;
}

.contacts-wrapper {
  margin: 0 214px;
  padding-top: 40px;
}

.contacts__block {
  margin-bottom: 70px;
}

.contacts__block span.phone {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;

  text-transform: uppercase;
}

.contacts__block p.description {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  margin-top: 10px;
}
.social__icon {
  margin-bottom: 20px;
}
.social__icon img,
.contacts__block-email img {
  background: #fff;
  border-radius: 50%;
  margin-right: 30px;
}

.contacts__block-email {
  display: flex;
  align-items: center;
}

.contacts__block-email > .contacts__block {
  margin-bottom: 0;
}

.contacts__command {
  display: flex;
  align-items: center;
  padding: 110px 0 150px;
}

.command__image {
  max-width: 428px;
}

.command__image img {
  width: 100%;
}

.command__arrow {
  margin: 0 30px;
  margin-top: 130px;
}

.command__arrow img {
  animation: arrow 1s ease-in-out infinite;
}

.command__go p {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  margin: 0;
  margin-bottom: 30px;

  text-transform: uppercase;

  color: #574cff;
}

@media (max-width: 1920px) {
  .contacts-wrapper {
    margin: 0 46px;
  }

  .contacts__command {
    padding-bottom: 100px;
  }
}

@media (max-width: 992px) {
  .contacts-wrapper {
    margin: 0 24px;
  }
  .contacts__block {
    margin-bottom: 60px;
  }
  .contacts__block span.phone {
    font-size: 24px;
  }

  .contacts__block p.description {
    font-size: 14px;
  }

  .contacts__command {
    padding: 60px 0 40px;
    flex-direction: column;
  }

  .command__image {
    max-width: 100vw;
    width: 100vw;
  }

  .command__arrow {
    display: none;
  }

  .command__go {
    margin-top: 40px;
  }

  .command__go p {
    font-size: 24px;
  }

  .social__icon img,
  .contacts__block-email img {
    margin-right: 15px;
  }

  .contacts__block-email span.phone {
    font-size: 12px;
  }
}

@keyframes arrow {
  0% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(-10px);
  }
}
/* END contacts */

/* Quiz */
.quiz {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .quiz .btn {
    font-size: 4vw;
  }
}
/* END quiz */

/* Form */

.uspeh-form h1 {
  font-family: Rubik;
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 57px;
  text-align: left;
  margin-top: 80px;

  text-transform: uppercase;

  color: #000000;
}

.uspeh-form form {
  margin: 70px auto;
}

.field-item-institution_id,
.field-item-spec,
.field-item-master {
  margin-bottom: 50px;
}

.field-item-institution_id {
  display: flex;
  flex-direction: column;
}

.field-item-institution_id label,
.field-item-spec label,
.field-item-master label {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
}

#item-spec {
  height: 80px;
  width: 580px;
  background: #ffffff;
  border: 1px solid #000000;
  box-sizing: border-box;
  border-radius: 4px;
  padding-left: 3rem;
}

.uspeh-form .select2-selection {
  height: 80px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding-left: 3rem;
}

.uspeh-form
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #555;
}

.uspeh-form .select2-container--default .select2-selection--single {
  border: 1px solid #000000;
}

.uspeh-form .select2.select2-container.select2-container--default {
  max-width: 580px;
}

.uspeh-form
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: inherit;
  right: 2rem;
}

#item-master > label {
  display: flex;
  margin-top: 42px;
}

#item-master > label > input {
  display: none;
}

#item-master > label > span {
  width: 24px;
  min-width: 24px;
  height: 24px;
  background: #ffffff;
  border: 1px solid #000000;
  box-sizing: border-box;
  border-radius: 12px;
  position: relative;
}

#item-master > label > input:checked + span::after {
  content: "";
  background: #000;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.master__info {
  margin-left: 24px;
  max-width: 900px;
}

.master__info .title {
  font-family: Montserrat;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 30px;
}

.master__info p {
  margin-top: 30px;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}

.btn.btn-gray {
  display: none;
}

.uspeh-form__error-message,
.opros-form__error-message {
  margin-top: 10px;
  color: #dc3545;
}

@media (max-width: 1920px) {
}

@media (max-width: 992px) {
  #item-spec {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .btn.btn-gray {
    display: block;
  }

  .btn.btn-gray + p {
    display: none;
  }
}
/* END Form */

/* Modal */

.modalWindow {
  border: 10px solid #d6ffdf;
}

button.close.closeBigX {
  right: 5%;
  border: none;
  color: #000;
  font-weight: 600;
  text-transform: lowercase;
}

.sendSuccessWindow.uspeh h3 {
  font-family: "ArtegraSoft-Bold";
  font-weight: bold;
  font-size: 50px;
  line-height: 62px;
  text-align: center;
  text-transform: uppercase;
}

.sendSuccessWindow.uspeh h4 {
  font-family: "ArtegraSoft-Bold";
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
}

.sendSuccessWindow.uspeh p {
  font-family: "ArtegraSoft-Regular";
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;

  text-align: center;
}

.modal-dialog {
  width: 700px;
}

.button__wrapper a {
  margin: 0 1rem;
}

@media (max-width: 768px) {
  .sendSuccessWindow.uspeh h4 {
    font-weight: 300;
    font-size: 48px;
    line-height: 48px;
  }

  .sendSuccessWindow.uspeh p {
    font-size: 18px;
    line-height: 24px;
  }

  .modal-dialog {
    width: 100%;
  }
}
/* END Modal */
/* Footer */

.uspeh-footer {
  margin: 5rem 0 -10px 0;
}

.uspeh-footer__header {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f8f8;
  padding: 1.5rem 0;
}
.uspeh-footer__menu-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 0;
  background: #f8f8f8;
  position: relative;
}

.uspeh-footer__menu-wrapper::before,
.uspeh-footer__menu-wrapper::after {
  content: "";
  height: 1px;
  background: #000;
  width: 100%;
  position: absolute;
}

.uspeh-footer__menu-wrapper::before {
  top: 0;
}
.uspeh-footer__menu-wrapper::after {
  bottom: 0;
}

.uspeh-footer__header a,
.uspeh-footer__menu-items li a {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
}
.uspeh-footer ul {
  display: flex;
  align-items: center;
}
.uspeh-footer li {
  display: block;
}

ul.uspeh-footer__menu-items {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0 2%;
  justify-content: space-between;
  padding-left: 0;
}

ul.uspeh-footer__menu-items li:first-child {
  margin-left: 0;
  padding-left: 0;
}

.uspeh-footer__social-items {
  margin-right: 1rem;
}
.uspeh-footer__menu-items li {
  padding: 0 0rem;
}
.uspeh-footer__social-items li {
  padding: 0 1rem;
}

@media (max-width: 1920px) {
  .uspeh-footer {
    margin: 0;
    margin-top: 0;
  }
}

@media (max-width: 1458px) {
  .uspeh-footer__menu-items li {
    padding: 0 1rem;
  }
}

@media (max-width: 1260px) {
  .uspeh-footer__menu-items li {
    padding: 0 1rem;
  }
}

@media (max-width: 1077px) {
  ul.uspeh-footer__menu-items {
    margin: 0 2%;
  }
}

@media (max-width: 992px) {
  .uspeh-footer__header {
    display: none;
  }
  .uspeh-footer__menu-wrapper {
    flex-direction: column;
    background: #fffdef;
  }
  ul.uspeh-footer__menu-items {
    flex-direction: column;
    align-items: center;
  }
  .uspeh-footer__menu-items li {
    padding: 2rem 0;
  }
  .uspeh-footer__social-items {
    margin: 1rem 0;
  }
  ul.uspeh-footer__social-items {
    margin: 0;
    padding: 0;
  }
  .uspeh-footer__social-items li {
    padding: 0 2rem;
  }
}

/* END Footer */
