@font-face {
  font-family: "GolosText-Bold";
  src: url(../font/GolosText-Bold.ttf);
}
@font-face {
  font-family: "GolosText-SemiBold";
  src: url(../font/GolosText-SemiBold.ttf);
}
@font-face {
  font-family: "GolosText-Medium";
  src: url(../font/GolosText-Medium.ttf);
}
@font-face {
  font-family: "GolosText-Regular";
  src: url(../font/GolosText-Regular.ttf);
}
@font-face {
  font-family: "Montserrat-Medium";
  src: url(../font/Montserrat-Medium.ttf);
}
@font-face {
  font-family: "Merriweather-Regular";
  src: url(../font/Merriweather-Regular.ttf);
}
html,
body {
  overflow-x: hidden;
}

::-webkit-scrollbar {
  background-color: #f54932;
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #fbce51;
  border-radius: 9em;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #bd921c;
}

.container {
  width: 1222px;
  margin: 0 auto;
}

header {
  width: 100%;
  height: 700px;
  background: #e9ded4;
  position: relative;
  overflow: hidden;
}

.background-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/path_to_image.png");
  background-position: center;
  mix-blend-mode: color-burn;
  z-index: 6;
}

.header-container {
  position: relative;
  height: 100%;
  padding-top: 26px;
}
.header-container p {
  font-family: "GolosText-Regular";
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #313131;
  width: 542px;
  margin-top: 24px;
  margin-bottom: 40px;
}
.header-container p br {
  display: none;
}

.header-btn {
  width: 542px;
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 10;
}
.header-btn a {
  width: 263px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "GolosText-Medium";
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #fff;
  padding: 20px;
  border-radius: 66px;
  background: #1f1f1f;
  transition: all 0.3s;
}
.header-btn a:hover {
  background: #fbce51;
  color: #1f1f1f;
}
.header-btn a:nth-child(2) {
  border: 2px solid #1f1f1f;
  background: transparent;
  color: #1f1f1f;
}
.header-btn a:nth-child(2):hover {
  color: #fff;
  background: #1f1f1f;
}

h1 {
  width: 542px;
  margin-top: 62px;
  display: flex;
  flex-direction: column;
  font-family: "Merriweather-Regular";
  font-weight: 400;
  font-size: 60px;
  line-height: 110%;
  text-transform: uppercase;
  color: #313131;
  position: relative;
  z-index: 10;
}
h1 span:nth-child(2) {
  margin: 0 auto;
}
h1 span:nth-child(3) {
  text-align: right;
}

.circle {
  width: 660px;
  height: 660px;
  border-radius: 100%;
  background: #fbce51;
  position: absolute;
  left: 602.5px;
  top: -44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.circle .circle-group {
  width: 634px;
  height: 634px;
  background: url(../img/Group.svg);
  background-size: 100%;
  background-position: center;
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.ches {
  width: 131px;
  height: 266px;
  background: url(../img/ches.png);
  background-size: 100%;
  position: absolute;
  left: 658px;
  top: 270px;
}

.chess {
  width: 147px;
  height: 266px;
  background: url(../img/chess.png);
  background-size: 100%;
  position: absolute;
  left: 990px;
  top: 165px;
}

.cite {
  width: 1627px;
  height: 463px;
  background: url(../img/city.png);
  background-size: 100%;
  position: absolute;
  left: calc((100% - 1627px) / 2 + 11px);
  bottom: -23px;
}

/* Анимации для шахматных фигур */
@keyframes horseMove {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(2deg);
  }
  50% {
    transform: translateY(-25px) rotate(-1deg);
  }
  75% {
    transform: translateY(-10px) rotate(1deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes pawnBounce {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes horseGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 5px rgba(251, 206, 81, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(251, 206, 81, 0.6))
      drop-shadow(0 0 25px rgba(251, 206, 81, 0.3));
  }
}

@keyframes pawnPulse {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.1);
    filter: brightness(1.2);
  }
}

.horse {
  width: 197px;
  height: 269px;
  background: url(../img/horse.png);
  background-size: 100%;
  position: absolute;
  left: 765px;
  bottom: -50px;
  z-index: 10;
  animation: horseMove 4s ease-in-out infinite,
    horseGlow 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.horse:hover {
  animation-play-state: paused;
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(251, 206, 81, 0.8));
}

.pawn {
  width: 83px;
  height: 123px;
  background: url(../img/pawn.png);
  background-size: 100%;
  position: absolute;
  left: 1168px;
  bottom: 20px;
  z-index: 10;
  animation: pawnBounce 2.5s ease-in-out infinite,
    pawnPulse 4s ease-in-out infinite;
  transition: all 0.3s ease;
}

.pawn:hover {
  animation-play-state: paused;
  transform: scale(1.15);
  filter: brightness(1.3) drop-shadow(0 0 10px rgba(245, 73, 50, 0.6));
}

.logo {
  width: 245px;
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
.logo img {
  width: 21px;
  height: 31px;
  margin-right: 1.7px;
}
.logo img:nth-child(4) {
  margin-right: 6.3px;
}
.logo span {
  display: block;
  font-family: "GolosText-Bold";
  font-weight: 700;
  font-size: 16px;
  line-height: 108%;
  text-transform: uppercase;
  color: #595653;
}

.ticker {
  position: relative;
  overflow: hidden;
  height: 60px;
  background: #f54932;
  display: flex;
  align-items: center;
}

.ticker__item {
  font-family: "Merriweather-Regular";
  font-weight: 400;
  font-size: 22px;
  line-height: 110%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
  color: #fff;
  animation: ticker 25s linear infinite;
  padding-left: 12px;
  width: auto;
}
.ticker__item span {
  display: block;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 100%;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.support {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 200px;
}

.support__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
  width: 100%;
}
.support__top h2 {
  font-family: "Merriweather-Regular";
  font-weight: 400;
  font-size: 36px;
  line-height: 135%;
  text-transform: uppercase;
  color: #313131;
  width: 764px;
}
.support__top h2 span:nth-child(3) {
  font-weight: 700;
  color: #f54932;
}
.support__top img {
  width: 394px;
  height: 250px;
  border-radius: 100%;
}

.support__left {
  border: 1px solid #000;
  width: 474px;
  height: 527px;
  position: relative;
  background-color: #fff;
}
.support__left .cooper-union {
  position: absolute;
  top: 39px;
  left: 22px;
  width: 437px;
  height: 405px;
  opacity: 0.8;
}
.support__left .money {
  width: 121px;
  height: 240px;
  position: absolute;
  right: 0;
  top: 23px;
}
.support__left .explosion__big {
  width: 530px;
  height: 344px;
  position: absolute;
  top: -27px;
  left: -27px;
  background: url(../img/explosion__big.svg);
  background-size: 100% 100%;
}
.support__left .human {
  width: 338px;
  height: 340px;
  position: absolute;
  top: 88px;
  left: 75px;
}
.support__left .arm {
  width: 174px;
  height: 234px;
  transform: rotate(40deg);
  position: absolute;
  right: 50px;
  bottom: -68px;
}
.support__left .explosion__small {
  width: 245px;
  height: 213px;
  position: absolute;
  left: -15px;
  bottom: 13px;
  background: url(../img/explosion__small.svg);
  background-size: 100% 100%;
}
@keyframes horseBlackMove {
  0% {
    transform: rotate(-35deg) translateY(0);
  }
  50% {
    transform: rotate(-35deg) translateY(-8px);
  }
  100% {
    transform: rotate(-35deg) translateY(0);
  }
}

.support__left .horse_black {
  width: 87px;
  height: 148px;
  position: absolute;
  transform: rotate(-35deg);
  left: 98px;
  bottom: 12px;
  animation: horseBlackMove 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.support__left .horse_black:hover {
  animation-play-state: paused;
  transform: rotate(-35deg) scale(1.1);
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
}
.support__left .path_to_image_small {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: color-burn;
  background: url(../img/path_to_image_small.png);
}

.support__rigth {
  width: 704px;
  height: 527px;
}
.support__rigth h2 {
  width: 650px;
  font-family: "Merriweather-Regular";
  font-weight: 400;
  font-size: 36px;
  line-height: 135%;
  text-transform: uppercase;
  color: #313131;
  margin-bottom: 60px;
}
.support__rigth h2 br {
  display: none;
}
.support__rigth h2 span {
  font-weight: 700;
  color: #f54932;
}
.support__rigth p {
  font-family: "GolosText-Regular";
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #3057a2;
}
.support__rigth p br {
  display: none;
}

.support__rigth__table {
  width: 100%;
  position: relative;
  margin-bottom: 48px;
}
.support__rigth__table::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #d0d0d0;
  top: 0;
  left: 305px;
}
.support__rigth__table div {
  width: 100%;
  height: 40px;
  border-bottom: 2px solid #d0d0d0;
  font-family: "GolosText-Regular";
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #313131;
  margin-bottom: 16px;
  display: flex;
  gap: 32px;
}
.support__rigth__table div:nth-child(5) {
  margin-bottom: 0;
  height: 24px;
  border: none;
}
.support__rigth__table div:nth-child(5) del {
  text-decoration-color: #f54932;
  margin-right: 12px;
}
.support__rigth__table div span {
  width: 290px;
  height: 24px;
  display: block;
  opacity: 0.7;
}
.support__rigth__table div span:nth-child(2) {
  opacity: 1;
  font-weight: 600;
  font-family: "GolosText-SemiBold";
}

.stages {
  margin-bottom: 200px;
}
.stages h2 {
  font-family: "Merriweather-Regular";
  font-weight: 400;
  font-size: 54px;
  line-height: 120%;
  text-transform: uppercase;
  color: #313131;
  width: 780px;
  position: relative;
  height: 130px;
  margin-bottom: 54px;
}
.stages h2 span {
  position: absolute;
  text-transform: none;
  display: block;
  font-family: "GolosText-Regular";
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #3057a2;
  width: 280px;
  height: 48px;
  bottom: 10px;
  left: 300px;
}

.mentor__results {
  width: 100%;
}

.slider {
  width: 100%;
  position: relative;
}
.slider::before {
  content: "";
  position: absolute;
  width: 376px;
  height: 140px;
  right: -50px;
  bottom: 45px;
  transform: rotate(-15deg);
  z-index: 10;
  background: url(../img/plane.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}

.slider__line {
  display: grid;
  gap: 20px;
  grid-template-columns: 394px 394px 394px;
  grid-template-rows: 112px 112px 136px;
}
.slider__line .slider__slide {
  font-family: "GolosText-Medium";
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #313131;
  position: relative;
}
.slider__line .slider__slide p {
  position: relative;
  z-index: 10;
}
.slider__line .slider__slide .slider__slide__path_to_image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: color-burn;
  z-index: 5;
}
.slider__line .slider__slide span {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  width: 36px;
  height: 36px;
  background: #fff;
  font-family: "GolosText-SemiBold";
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: #313131;
  z-index: 10;
}
.slider__line .slider__slide:first-child {
  grid-area: 1/1/2/3;
  display: flex;
  justify-content: space-between;
}
.slider__line .slider__slide:first-child .slider__slide__path_to_image {
  display: none;
}
.slider__line .slider__slide:first-child div {
  width: 394px;
  background: url(../img/cooper-union.png);
  background-position: center;
  background-position: center;
  padding-top: 20px;
  padding-left: 72px;
  padding-right: 20px;
  position: relative;
}
.slider__line .slider__slide:first-child div img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: color-burn;
  z-index: 5;
}
.slider__line .slider__slide:nth-child(2) {
  grid-area: 1/3/3/4;
  background: url(../img/cooper-union.png);
  background-position: center;
  padding-top: 20px;
  padding-left: 72px;
  padding-right: 20px;
  position: relative;
}
.slider__line .slider__slide:nth-child(3) {
  grid-area: 2/1/3/3;
  display: flex;
  justify-content: space-between;
}
.slider__line .slider__slide:nth-child(3) .slider__slide__path_to_image {
  display: none;
}
.slider__line .slider__slide:nth-child(3) div {
  width: 394px;
  background: url(../img/cooper-union.png);
  background-position: center;
  background-position: center;
  padding-top: 20px;
  padding-left: 72px;
  padding-right: 20px;
  position: relative;
}
.slider__line .slider__slide:nth-child(3) div img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: color-burn;
  z-index: 5;
}
.slider__line .slider__slide:nth-child(4) {
  grid-area: 3/1/4/2;
  background: url(../img/cooper-union.png);
  background-position: center;
  background-position: center;
  padding-top: 20px;
  padding-left: 72px;
  padding-right: 20px;
  position: relative;
}
.slider__line .slider__slide:nth-child(4) br {
  display: none;
}
.slider__line .slider__slide:last-child {
  grid-area: 3/2/4/4;
  background: url(../img/cooper-union.png);
  background-position: center;
  background-size: 100%;
  background-position: center;
  padding-top: 20px;
  padding-left: 72px;
  padding-right: 290px;
  position: relative;
}
.slider__line .slider__slide:last-child br {
  display: none;
}
.slider__line .slider__slide:last-child br:nth-child(2) {
  display: block;
}

.slider__wrapper {
  display: none;
  align-items: center;
  width: 178px;
  height: 36px;
  margin: 0 auto;
  margin-top: 28px;
}
.slider__wrapper .slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #d9d9d9;
  margin-left: 6px;
}
.slider__wrapper .slider__dot:last-child {
  margin-left: 0;
}
.slider__wrapper .active-dot {
  background: #313131;
}
.slider__wrapper button {
  width: 36px;
  height: 36px;
  background: #313131;
  border-radius: 50%;
  display: flex;
  align-items: center;
  padding-left: 11px;
  transition: background 0.3s;
}
.slider__wrapper button:hover {
  background: #fbce51;
}
.slider__wrapper button:disabled {
  opacity: 0.2;
}
.slider__wrapper button:disabled:hover {
  background: #313131;
}
.slider__wrapper button img {
  width: 10px;
  height: 18px;
}
.slider__wrapper .slider__btn-prev {
  margin-right: 16px;
}
.slider__wrapper .slider__btn-next {
  margin-left: 16px;
  transform: rotate(180deg);
}

.participant {
  margin-bottom: 140px;
}

.participant__top {
  margin-bottom: 60px;
  width: 100%;
  height: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.participant__top .participant__btn {
  display: flex;
  align-items: center;
}
.participant__top button {
  width: 44px;
  height: 44px;
  background: #313131;
  border-radius: 50%;
  display: flex;
  align-items: center;
  padding-left: 14px;
  transition: background 0.3s;
}
.participant__top button:first-child {
  margin-right: 14px;
}
.participant__top button:last-child {
  margin-left: 14px;
  transform: rotate(180deg);
}
.participant__top button:hover {
  background: #fbce51;
}
.participant__top h2 {
  font-family: "Merriweather-Regular";
  font-weight: 400;
  font-size: 54px;
  line-height: 120%;
  text-transform: uppercase;
  color: #313131;
}
.participant__top span {
  font-family: "GolosText-Regular";
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #313131;
  opacity: 0.6;
}
.participant__top .participant__btn__active {
  opacity: 1;
}

.wrapper {
  width: 100%;
}

.wrapper .carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 394px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  overflow-x: hidden;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel.no-transition {
  scroll-behavior: auto;
}

.carousel .card {
  scroll-snap-align: start;
  height: 462px;
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.carousel .card .img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  background: url(../img/cooper-union-carousel.png);
  background-size: 100% 100%;
  margin-bottom: 28px;
}

.card .img img {
  width: 293px;
  height: 333px;
}

.carousel .card h3 {
  font-family: "GolosText-SemiBold";
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: #313131;
  margin-bottom: 6px;
}

.carousel .card span {
  font-family: "GolosText-Regular";
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #313131;
  opacity: 0.6;
  margin-bottom: 20px;
}

.carousel .card a {
  border: 1px solid #3057a2;
  border-radius: 62px;
  width: 113px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "GolosText-Medium";
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #3057a2;
  transition: color 0.4s, background 0.4s;
}
.carousel .card a:hover {
  color: #fff;
  background: #3057a2;
}

footer {
  background: #e9ded4;
  padding-top: 40px;
  padding-bottom: 72px;
}
footer p {
  font-family: "GolosText-Regular";
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #313131;
  opacity: 0.6;
}
footer br {
  display: none;
}

@media (max-width: 1249px) {
  .wrapper .carousel {
    grid-auto-columns: 440px;
  }
  .container {
    width: 900px;
  }
  header {
    height: 580px;
  }
  .header-container {
    padding-top: 18px;
  }
  .header-container p {
    width: 405px;
    margin-bottom: 32px;
  }
  .header-btn {
    width: 405px;
    gap: 15px;
  }
  .header-btn a {
    width: 195px;
    height: 62px;
  }
  h1 {
    width: 405px;
    margin-top: 42px;
    font-size: 45px;
  }
  .circle {
    width: 500px;
    height: 500px;
    left: 442.5px;
    top: 20px;
  }
  .circle .circle-group {
    width: 484px;
    height: 484px;
  }
  .ches {
    width: 100px;
    height: 190px;
    left: 488px;
    top: 270px;
  }
  .chess {
    width: 110px;
    height: 190px;
    left: 730px;
    top: 185px;
  }
  .cite {
    width: 1200px;
    height: 345px;
    left: calc((100% - 1200px) / 2 + 11px);
    bottom: -18px;
  }
  .horse {
    width: 150px;
    height: 200px;
    left: 565px;
    bottom: -35px;
    animation: horseMove 3s ease-in-out infinite,
      horseGlow 2.5s ease-in-out infinite;
  }
  .pawn {
    width: 60px;
    height: 90px;
    left: 860px;
    bottom: 14px;
    animation: pawnBounce 2s ease-in-out infinite,
      pawnPulse 3s ease-in-out infinite;
  }
  .ticker {
    height: 45px;
  }
  .ticker__item {
    font-size: 20px;
  }
  .support {
    justify-content: center;
  }
  .support__top h2 {
    width: 470px;
  }
  .support__left {
    margin-bottom: 40px;
  }
  .support__rigth {
    width: 660px;
  }
  .slider::before {
    right: 10px;
  }
  .slider__line {
    grid-template-columns: 440px 440px;
    grid-template-rows: 112px 112px 112px 112px 136px;
  }
  .slider__line .slider__slide:first-child {
    grid-area: 1/1/3/2;
    flex-wrap: wrap;
    gap: 20px;
  }
  .slider__line .slider__slide:first-child div {
    width: 440px;
    height: 112px;
    background-size: 100%;
    padding-right: 65px;
  }
  .slider__line .slider__slide:nth-child(2) {
    grid-area: 1/2/3/3;
    background-size: 100%;
    padding-right: 65px;
  }
  .slider__line .slider__slide:nth-child(3) {
    grid-area: 3/1/5/2;
    flex-wrap: wrap;
    gap: 20px;
  }
  .slider__line .slider__slide:nth-child(3) div {
    width: 440px;
    height: 112px;
    background-size: 100%;
    padding-right: 65px;
  }
  .slider__line .slider__slide:nth-child(4) {
    grid-area: 3/2/5/3;
    background-size: 100%;
    padding-right: 65px;
  }
  .slider__line .slider__slide:last-child {
    grid-area: 5/1/6/3;
    padding-right: 400px;
  }
  footer br {
    display: block;
  }
  footer br:first-child,
  footer br:nth-child(3),
  footer br:last-child {
    display: none;
  }
}
@media (max-width: 929px) {
  .participant__top {
    height: auto;
  }
  .participant__top h2 {
    font-size: 46px;
  }
  .wrapper .carousel {
    grid-auto-columns: calc((100% - 20px) / 2);
  }
  .container {
    width: 670px;
  }
  header {
    height: 620px;
  }
  .header-container {
    padding-top: 18px;
  }
  .header-container p {
    width: 335px;
    margin-bottom: 32px;
    text-align: left;
    position: relative;
    z-index: 10;
  }
  .header-container p br {
    display: block;
  }
  .logo {
    width: 213px;
    height: 32px;
  }
  .logo img {
    width: 19px;
    height: 27px;
    margin-right: 1.5px;
  }
  .logo img:nth-child(4) {
    margin-right: 5.5px;
  }
  .logo span {
    font-size: 14px;
  }
  .header-btn a:nth-child(2) {
    border: none;
    background: #fff;
    opacity: 0.9;
  }
  .header-btn a:nth-child(2):hover {
    opacity: 1;
  }
  .circle {
    width: 297px;
    height: 297px;
    left: 325px;
    top: calc(100% - 365px);
  }
  .circle .circle-group {
    width: 284px;
    height: 284px;
  }
  .ches {
    width: 59px;
    height: 121px;
    left: 410px;
    top: 340px;
  }
  .chess {
    width: 60px;
    height: 110px;
    transform: rotate(8deg);
    left: 525px;
    top: calc(100% - 272px);
  }
  .cite {
    width: 887px;
    height: 252px;
    left: calc((100% - 887px) / 2);
    bottom: -11px;
  }
  .horse {
    width: 98px;
    height: 134px;
    left: 440px;
    bottom: -20px;
    animation: horseMove 2.5s ease-in-out infinite,
      horseGlow 2s ease-in-out infinite;
  }
  .pawn {
    display: none;
  }
  .ticker {
    height: 38px;
  }
  .ticker__item {
    font-size: 16px;
  }
  .support {
    margin-bottom: 150px;
  }
  .support__top {
    position: relative;
    height: auto;
  }
  .support__top h2 {
    font-size: 32px;
    width: 100%;
    text-align: center;
  }
  .support__top h2 span:first-child {
    display: block;
    margin-bottom: 300px;
    height: 130px;
  }
  .support__top img {
    position: absolute;
    top: 155px;
    left: 50%;
    transform: translateX(-50%);
  }
  .support__rigth {
    width: 100%;
  }
  .support__rigth h2 {
    font-size: 32px;
    width: 600px;
  }
  .stages {
    margin-bottom: 150px;
  }
  .stages h2 {
    font-size: 46px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .stages h2 span {
    position: static;
    width: 100%;
    height: auto;
  }
  .slider::before {
    width: 335px;
    height: 182px;
    right: -20px;
  }
  .slider__line {
    grid-template-columns: 328px 328px;
    grid-template-rows: 132px 152px 132px 132px 200px;
    gap: 14px;
  }
  .slider__line .slider__slide:first-child {
    gap: 14px;
  }
  .slider__line .slider__slide:first-child div {
    width: 328px;
    height: 132px;
    padding-right: 20px;
  }
  .slider__line .slider__slide:first-child div:nth-child(2) {
    height: 152px;
  }
  .slider__line .slider__slide:nth-child(2) {
    padding-right: 20px;
  }
  .slider__line .slider__slide:nth-child(3) {
    gap: 14px;
  }
  .slider__line .slider__slide:nth-child(3) div {
    width: 328px;
    height: 132px;
    padding-right: 20px;
  }
  .slider__line .slider__slide:nth-child(4) {
    padding-right: 20px;
  }
  .slider__line .slider__slide:last-child {
    padding-right: 300px;
  }
  footer br:first-child,
  footer br:nth-child(2),
  footer br:last-child {
    display: none;
  }
}
@media (max-width: 699px) {
  .participant {
    margin-bottom: 176px;
  }
  .participant__top {
    position: relative;
    height: auto;
  }
  .participant__top h2 {
    font-size: 45px;
  }
  .participant__top .participant__btn {
    position: absolute;
    bottom: -598px;
    left: 50%;
    transform: translateX(-50%);
  }
  .participant__top button {
    width: 36px;
    height: 36px;
    padding-left: 11px;
  }
  .participant__top button img {
    width: 10px;
    height: 18px;
  }
  .wrapper .carousel {
    grid-auto-columns: 100%;
  }
  .container {
    width: 405px;
  }
  header {
    height: 774px;
  }
  .circle {
    left: 45px;
  }
  .ches {
    left: 78px;
    top: calc(100% - 230px);
  }
  .chess {
    left: 240px;
  }
  .cite {
    left: calc((100% - 887px) / 2 - 150px);
  }
  .horse {
    left: 160px;
    animation: horseMove 2s ease-in-out infinite,
      horseGlow 1.8s ease-in-out infinite;
  }
  .support {
    margin-top: 48px;
    margin-bottom: 120px;
  }
  .support__top {
    margin-bottom: 34px;
  }
  .support__top h2 {
    text-align: left;
  }
  .support__top h2 span:first-child {
    height: auto;
  }
  .support__top h2 span:nth-child(2) {
    display: block;
    width: 350px;
  }
  .support__top img {
    top: 197px;
  }
  .support__left {
    border: none;
    width: 335px;
    height: 402px;
    margin-bottom: 24px;
  }
  .support__left .cooper-union {
    top: 47px;
    left: 15px;
    width: 309px;
    height: 286px;
  }
  .support__left .money {
    width: 85px;
    height: 170px;
    top: 36px;
  }
  .support__left .explosion__big {
    width: 375px;
    height: 244px;
    top: 0;
    left: -20px;
  }
  .support__left .human {
    width: 239px;
    height: 240px;
    top: 82px;
    left: 53px;
  }
  .support__left .arm {
    width: 123px;
    height: 166px;
    right: 35px;
    bottom: -38px;
  }
  .support__left .explosion__small {
    width: 174px;
    height: 152px;
    left: -11px;
    bottom: 18px;
  }
  .support__left .horse_black {
    width: 61px;
    height: 105px;
    left: 69px;
    bottom: 18px;
    animation: horseBlackMove 2.5s ease-in-out infinite;
  }
  .support__rigth {
    width: 100%;
    height: auto;
  }
  .support__rigth h2 {
    margin-bottom: 44px;
    width: 100%;
  }
  .support__rigth h2 br {
    display: block;
  }
  .support__rigth p {
    font-size: 18px;
  }
  .support__rigth p br {
    display: block;
  }
  .support__rigth__table {
    margin-bottom: 40px;
    height: auto;
  }
  .support__rigth__table::after {
    display: none;
  }
  .support__rigth__table div {
    height: 76px;
    margin-bottom: 16px;
    gap: 12px;
    flex-direction: column;
  }
  .support__rigth__table div:nth-child(4) {
    flex-direction: row;
    height: 40px;
  }
  .support__rigth__table div:nth-child(4) span {
    width: auto;
  }
  .support__rigth__table div:nth-child(5) {
    margin-bottom: 0;
    height: 60px;
    border: none;
  }
  .stages h2 {
    margin-bottom: 148px;
    font-size: 44px;
  }
  .slider::before {
    width: 335px;
    height: 182px;
    right: 50%;
    bottom: 246px;
    background: url(../img/plane-small.png);
    transform: translateX(50%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .slider .slaider__over {
    overflow: hidden;
  }
  .slider__line {
    display: flex;
    align-items: center;
    transition: transform 1s;
    gap: 0;
    width: 100%;
    height: 300px;
  }
  .slider__line .slider__slide {
    width: 100%;
    height: 300px;
    padding-top: 62px;
    background: url(../img/cooper-union.png);
    background-position: center;
    background-size: 100%;
    background-position: center;
    padding-right: 20px;
  }
  .slider__line .slider__slide span {
    top: 62px;
  }
  .slider__line .slider__slide:first-child {
    gap: 28px;
    display: block;
  }
  .slider__line .slider__slide:first-child .slider__slide__path_to_image {
    display: block;
  }
  .slider__line .slider__slide:first-child div {
    width: 100%;
    height: auto;
    padding-top: 0;
    padding-right: 0;
    background: none;
    margin-bottom: 28px;
  }
  .slider__line .slider__slide:first-child div img {
    display: none;
  }
  .slider__line .slider__slide:first-child div span {
    top: 0;
  }
  .slider__line .slider__slide:first-child div:last-child {
    height: auto;
  }
  .slider__line .slider__slide:nth-child(2) {
    padding-top: 62px;
  }
  .slider__line .slider__slide:nth-child(3) {
    display: block;
  }
  .slider__line .slider__slide:nth-child(3) .slider__slide__path_to_image {
    display: block;
  }
  .slider__line .slider__slide:nth-child(3) div {
    width: 100%;
    height: auto;
    padding-top: 0;
    padding-right: 0;
    background: none;
    margin-bottom: 28px;
  }
  .slider__line .slider__slide:nth-child(3) div img {
    display: none;
  }
  .slider__line .slider__slide:nth-child(3) div span {
    top: 0;
  }
  .slider__line .slider__slide:nth-child(3) div:last-child {
    height: auto;
  }
  .slider__line .slider__slide:nth-child(4) {
    padding-top: 62px;
  }
  .slider__line .slider__slide:last-child {
    padding-top: 62px;
    padding-right: 20px;
  }
  .slider__line .slider__slide:last-child br {
    display: block;
  }
  .slider__wrapper {
    display: flex;
  }
  footer br:nth-child(3) {
    display: block;
  }
}
@media (max-width: 439px) {
  .container {
    width: 335px;
  }
  .circle {
    left: 10px;
  }
  .ches {
    left: 42px;
  }
  .chess {
    left: 205px;
  }
  .horse {
    left: 126px;
    animation: horseMove 1.8s ease-in-out infinite,
      horseGlow 1.5s ease-in-out infinite;
  }
  h1 {
    width: 100%;
    font-size: 36px;
  }
  .header-btn {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px;
  }
  .header-btn a {
    width: 100%;
    height: 47px;
  }
  .header-btn a br {
    display: none;
  }
  .support__top h2 {
    font-size: 28px;
  }
  .support__top h2 span:first-child {
    margin-bottom: 260px;
  }
  .support__top h2 span:nth-child(2) {
    width: 100%;
  }
  .support__top img {
    width: 335px;
    height: 212px;
    top: 175px;
  }
  .support__rigth h2 {
    font-size: 28px;
  }
  .stages {
    margin-bottom: 120px;
  }
  .stages h2 {
    font-size: 36px;
    line-height: 110%;
  }
  .stages h2 span {
    font-size: 18px;
  }
  .slider__line .slider__slide {
    font-size: 18px;
    line-height: 120%;
  }
  .slider__line .slider__slide:nth-child(4) {
    padding-top: 62px;
  }
  .slider__line .slider__slide:nth-child(4) br {
    display: block;
  }
  .participant__top {
    margin-bottom: 40px;
  }
  .participant__top h2 {
    font-size: 36px;
    line-height: 110%;
  }
  .participant__top .participant__btn {
    bottom: -504px;
  }
  .wrapper .carousel {
    grid-auto-columns: 335px;
  }
  .carousel .card {
    height: 388px;
  }
  .carousel .card .img {
    width: 244px;
    height: 244px;
  }
  .card .img img {
    width: 223px;
    height: 254px;
  }
  .carousel .card h3 {
    margin-bottom: 8px;
  }
  footer br:first-child,
  footer br:nth-child(2),
  footer br:nth-child(3),
  footer br:last-child {
    display: block;
  }
} /*# sourceMappingURL=style.css.map */
