* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Red Hat Display", sans-serif;
}

:root {
  /** sunny side **/
  --blue-background: #c2e9f6;
  --blue-border: #72cce3;
  --blue-color: #96dcee;
  --yellow-background: #fffaa8;
  --yellow-border: #f5eb71;
  /** dark side **/
  --indigo-background: #808fc7;
  --indigo-border: #5d6baa;
  --indigo-color: #6b7abb;
  --gray-border: #e8e8ea;
  --gray-dots: #e8e8ea;
  /** general **/
  --white: #fff;
}

.toggle--checkbox {
  display: none;
}

.toggle--checkbox:checked {
  /** This will all flip from sun to moon **/
  /** Change the label color **/
}

.toggle--checkbox:checked ~ .background {
  background: var(--indigo-background);
}

.toggle--checkbox:checked + .toggle--label {
  background: var(--indigo-color);
  border-color: var(--indigo-border);
  /** Change the cloud to stars **/
  /** Change the sun into the moon **/
  /** Show the dimples on the moon **/
}

.toggle--checkbox:checked + .toggle--label .toggle--label-background {
  left: 60px;
  width: 5px;
}

.toggle--checkbox:checked + .toggle--label .toggle--label-background:before {
  width: 5px;
  height: 5px;
  top: -34px;
  left: -38px;
}

.toggle--checkbox:checked + .toggle--label .toggle--label-background:after {
  width: 5px;
  height: 5px;
  left: -44px;
  top: -25px;
}

.toggle--checkbox:checked + .toggle--label:before {
  background: var(--white);
  border-color: var(--gray-border);
  -webkit-animation-name: switch;
          animation-name: switch;
  -webkit-animation-duration: 350ms;
          animation-duration: 350ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.toggle--checkbox:checked + .toggle--label:after {
  -webkit-transition-delay: 350ms;
          transition-delay: 350ms;
  opacity: 1;
}

.toggle--label {
  /** Placeholder element, starting at blue **/
  width: 100px;
  height: 50px;
  background: var(--blue-color);
  border-radius: 100px;
  border: 5px solid var(--blue-border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transition: all 350ms ease-in;
  transition: all 350ms ease-in;
  /** The sun cloud and moon stars **/
  /** Sun/Moon element **/
  /** Gray dots on the moon **/
}

.toggle--label-background {
  width: 10px;
  height: 5px;
  border-radius: 5px;
  position: relative;
  background: transparent;
  left: 135px;
  top: 45px;
  -webkit-transition: all 150ms ease-in;
  transition: all 150ms ease-in;
}

.toggle--label-background:before {
  content: "";
  position: absolute;
  top: -26px;
  width: 27px;
  height: 4px;
  border-radius: 5px;
  background: var(--white);
  left: -83px;
  -webkit-transition: all 150ms ease-in;
  transition: all 150ms ease-in;
}

.toggle--label-background:after {
  content: "";
  position: absolute;
  top: -16px;
  width: 35px;
  height: 4px;
  border-radius: 5px;
  background: var(--white);
  left: -88px;
  -webkit-transition: all 150ms ease-in;
  transition: all 150ms ease-in;
}

.toggle--label:before {
  -webkit-animation-name: reverse;
          animation-name: reverse;
  -webkit-animation-duration: 350ms;
          animation-duration: 350ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: all 350ms ease-in;
  transition: all 350ms ease-in;
  content: "";
  width: 30px;
  height: 30px;
  border: 5px solid var(--yellow-border);
  top: 0px;
  left: -2px;
  position: absolute;
  border-radius: 82px;
  background: var(--yellow-background);
}

.toggle--label:after {
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
  -webkit-transition: all 250ms ease-in;
  transition: all 250ms ease-in;
  position: absolute;
  content: "";
  -webkit-box-shadow: var(--gray-dots) -13px 0 0 2px, var(--gray-dots) -24px 14px 0 -2px;
          box-shadow: var(--gray-dots) -13px 0 0 2px, var(--gray-dots) -24px 14px 0 -2px;
  left: 88px;
  top: 20px;
  width: 5px;
  height: 5px;
  background: transparent;
  border-radius: 50%;
  opacity: 0;
}

@-webkit-keyframes switch {
  0% {
    left: 4px;
  }
  60% {
    left: 4px;
    width: 32px;
  }
  100% {
    left: 48px;
    width: 32px;
  }
}

@keyframes switch {
  0% {
    left: 4px;
  }
  60% {
    left: 4px;
    width: 32px;
  }
  100% {
    left: 48px;
    width: 32px;
  }
}
@-webkit-keyframes reverse {
  0% {
    left: 48px;
    width: 32px;
  }
  60% {
    left: 20px;
    width: 32px;
  }
  100% {
    left: 4px;
  }
}
@keyframes reverse {
  0% {
    left: 48px;
    width: 32px;
  }
  60% {
    left: 20px;
    width: 32px;
  }
  100% {
    left: 4px;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  font-size: 62.5%;
}

@-webkit-keyframes backgroundAnimation {
  0% {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px);
  }
  10% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes backgroundAnimation {
  0% {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px);
  }
  10% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
body {
  font-size: 16px;
  position: relative;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.container-fluid {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}

#wrapper {
  background-color: #ebedf0;
}

.contest-title {
  font-size: 6.6rem;
  line-height: 7.4rem;
  letter-spacing: 3.3px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.contest-title span {
  background: #bf5bef;
  background: linear-gradient(46deg, #27aec4 0%, #4b87d4 25.27%, #bf5bef 48.63%, #e350b0 74.78%, #f189b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#hamburger-menu {
  position: relative;
  z-index: 120;
}

.section-title {
  font-weight: 900;
  font-size: 5.2rem;
  line-height: 6.6rem;
  letter-spacing: 2.6px;
  font-style: normal;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.section-title span {
  background: #bf5bef;
  background: linear-gradient(46deg, #27aec4 0%, #4b87d4 25.27%, #bf5bef 48.63%, #e350b0 74.78%, #f189b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.white-color {
  color: #fff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.paragraph {
  font-style: normal;
  font-weight: 400;
  line-height: 2.8rem;
  letter-spacing: 1px;
  font-size: 2rem;
}
.paragraph span {
  background: #bf5bef;
  background: linear-gradient(46deg, #27aec4 0%, #4b87d4 25.27%, #bf5bef 48.63%, #e350b0 74.78%, #f189b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contest-contaier {
  max-width: 1600px;
  margin: 0px auto;
}

.light-nav {
  background-color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.contest-nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 20;
  max-width: 1920px;
  margin: 0px auto;
  padding: 20px 160px;
  background-color: #fff;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.contest-nav__blur {
  position: absolute;
  top: -238px;
  right: -17%;
  pointer-events: none;
  max-width: 800px;
}
.contest-nav__blur img {
  max-width: 100%;
  pointer-events: none;
}
.contest-nav__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contest-nav__menu {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
.contest-nav__menu li {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.9px;
}
.contest-nav__menu li a {
  color: #0f0e0e;
}
.contest-nav__gradient-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
  padding: 12px 30px;
  border-radius: 30px;
  background: #bf5bef;
  background: linear-gradient(46deg, #27aec4 0%, #4b87d4 25.27%, #bf5bef 48.63%, #e350b0 74.78%, #f189b0 100%);
}
.contest-nav__gradient-link span {
  font-style: normal;
  color: #fff;
}
.contest-nav .menu {
  display: none;
}

.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  width: 35px;
}
.menu svg {
  width: 34px;
  height: 34px;
}

.line {
  fill: none;
  stroke: black;
  stroke-width: 6;
  -webkit-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.title-section {
  position: relative;
}
.title-section__container {
  margin: 0px auto;
  text-align: center;
  max-width: 1080px;
  padding-top: clamp(7rem, 140px, 140px);
  padding-bottom: clamp(7rem, 140px, 140px);
}
.title-section__container p {
  margin-top: 24px;
}

.descritpion-section__container {
  max-width: 1300px;
  margin: 0px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 24px;
  padding-bottom: clamp(7rem, 180px, 180px);
}
.descritpion-section__container img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  pointer-events: none;
}
.descritpion-section__left-cell-title {
  font-style: normal;
  font-weight: 700;
  line-height: 2.8rem;
  letter-spacing: 1.2px;
  font-size: 2.4rem;
  display: block;
  margin-bottom: 18px;
}
.descritpion-section__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.descritpion-section__left-cell {
  padding: 50px 38px;
  background-color: #ebedf0;
  border-radius: 24px;
  color: #000;
  -webkit-transition: background-image 0.4s, color 0.4s;
  transition: background-image 0.4s, color 0.4s;
}
.descritpion-section__left-cell:hover {
  background-image: linear-gradient(46deg, #7300dd 0%, #d70076 100%);
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  color: #fff;
}

.contest-list {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1430px;
  margin: 0px auto;
  padding-bottom: clamp(7rem, 180px, 180px);
}
.contest-list__list {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
.contest-list__list-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.4rem;
  line-height: 2.8rem;
  padding: 16px 40px;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 60px;
}

.contest-list-2 {
  max-width: 1600px;
  position: relative;
}

.active-menu {
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
  -webkit-transition: -webkit-transform 0.4s !important;
  transition: -webkit-transform 0.4s !important;
  transition: transform 0.4s !important;
  transition: transform 0.4s, -webkit-transform 0.4s !important;
}

.contest-prizes {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(7rem, 80px, 80px);
}
.contest-prizes h3 {
  text-align: center;
  margin-bottom: 80px;
}
.contest-prizes__blur {
  position: absolute;
  z-index: 0;
  max-width: 1200px;
  pointer-events: none;
}
.contest-prizes__blur img {
  max-width: 100%;
}
.contest-prizes__blur--1 {
  top: 0;
  left: -550px;
}
.contest-prizes__blur--2 {
  top: 0;
  right: -550px;
}
.contest-prizes__blur--3 {
  bottom: -400px;
  right: -400px;
}
.contest-prizes__container {
  z-index: 2;
  position: relative;
  max-width: 1300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin: 0px auto;
}
.contest-prizes__container p {
  font-style: normal;
  font-weight: 600;
  line-height: 3.2rem;
  letter-spacing: 1.1px;
  font-size: 2.2rem;
}
.contest-prizes__left {
  max-width: 746px;
  width: 100%;
  padding: 36px;
  background-color: #ebedf0;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 0px;
  gap: 40px;
}
.contest-prizes__left img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0px auto;
}
.contest-prizes__left__right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-width: 100%;
}
.contest-prizes__left__right--2 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contest-prizes__right {
  max-width: 526px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: grid;
  gap: 24px;
}
.contest-prizes__right img {
  max-height: 315px;
  max-width: 356px;
  margin: 0px auto;
}
.contest-prizes__right-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #ebedf0;
  border-radius: 20px;
  padding: 36px;
  gap: 15px;
  padding-bottom: 0px;
}
.contest-prizes__right-cell--2 {
  padding-bottom: 36px;
  background: #bf5bef;
  background: linear-gradient(46deg, #27aec4 0%, #4b87d4 25.27%, #bf5bef 48.63%, #e350b0 74.78%, #f189b0 100%);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contest-prizes__right-cell--2 p {
  color: #fff;
}

.contest-info {
  position: relative;
  padding-top: clamp(7rem, 80px, 80px);
  padding-bottom: 80px;
  overflow: hidden;
  overflow: hidden;
  border-radius: 0px 0px 60px 60px;
}
.contest-info__blur {
  position: absolute;
  max-width: 1300px;
  right: -362px;
  z-index: 2;
  bottom: -900px;
}
.contest-info__blur img {
  max-width: 100%;
}
.contest-info__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  text-align: center;
}
.contest-info__container h4 {
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.5px;
}
.contest-info__container p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.8rem;
  letter-spacing: 0.9px;
}

footer {
  background-color: #ebedf0;
}

.footer-container {
  max-width: 1300px;
  margin: 0px auto;
  padding: 30px 0px;
}
.footer-container a {
  font-size: 1.8rem;
  color: #0f0e0e;
  font-weight: 700;
  line-height: 2.8rem;
  letter-spacing: 0.9px;
}

.img-section {
  padding-bottom: clamp(7rem, 180px, 180px);
  text-align: center;
}
.img-section img {
  max-width: 100%;
}
.img-section ul {
  list-style: none;
  margin-top: 24px;
}
.img-section ul li {
  margin-bottom: 12px;
}
.img-section__container {
  max-width: 1120px;
  margin: 0px auto;
}
.img-section__content {
  position: relative;
  z-index: 2;
}
.img-section__content p:nth-child(2) {
  margin-top: 24px;
}
.img-section__content p:nth-child(3) {
  margin-top: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.5px;
  font-size: 3rem;
}

.main-image {
  padding-top: 0px;
  padding-bottom: clamp(7rem, 180px, 180px);
  position: relative;
}
.main-image__mobile-img {
  display: none;
}
.main-image__blur-obj-1 {
  max-width: 1900px;
  top: -68%;
  left: -60%;
  max-width: 1658px;
}
.main-image__blur-obj-2 {
  top: -81%;
  right: -30%;
  max-width: 1400px;
}
.main-image__overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.main-image__container {
  max-width: 1340px;
  margin: 0px auto;
  position: relative;
}
.main-image__img {
  max-width: 100%;
  z-index: 1;
}

.object {
  position: absolute;
  z-index: 0;
}
.object--1 {
  top: 30px;
  left: 34%;
}
.object--2 {
  top: 10%;
  right: 14%;
}
.object--3 {
  bottom: 23%;
  left: 7%;
}
.object--4 {
  bottom: 50%;
  left: 16%;
}
.object--5 {
  bottom: 17%;
  right: 20%;
}

.blur-object {
  position: absolute;
  z-index: 0;
}
.blur-object img {
  max-width: 100%;
}

.section-background {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.second-list {
  position: relative;
}
.second-list__blur {
  pointer-events: none;
  position: absolute;
  top: -330px;
  z-index: 0;
  right: -450px;
  max-width: 1200px;
}
.second-list__blur img {
  max-width: 100%;
}

.light-backgorund {
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.dark-backgorund {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #171616 !important;
}

.light-color {
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.pink-background {
  background-color: #f189b0;
}

.purple-background {
  background-color: #bf5bef;
}

.dark-blue-background {
  background-color: #4b87d4;
}

.aquamarine-background {
  background-color: #27aec4;
}

.gray-background {
  background-color: #ebedf0;
  color: #000;
}

@media only screen and (max-width: 1600px) {
  .contest-nav__blur {
    right: -400px;
  }
  .main-image__blur-obj-1 {
    left: -950px;
  }
  .main-image__blur-obj-2 {
    right: -750px;
  }
  .contest-contaier {
    padding: 0px 20px;
  }
  .contest-list__list-item {
    padding: 16px 24px;
  }
}
@media only screen and (max-width: 1400px) {
  .contest-list__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contest-info__blur {
    right: -562px;
    bottom: -900px;
  }
  .contest-prizes__blur--1 {
    left: -750px;
  }
  .contest-prizes__blur--2 {
    right: -750px;
  }
  html {
    font-size: 60%;
  }
  .contest-nav {
    padding: 20px 20px;
  }
  .contest-nav__menu {
    gap: 24px;
  }
  .descritpion-section__left-cell {
    padding: 38px 60px;
  }
}
@media only screen and (max-width: 1200px) {
  html {
    font-size: 55%;
  }
  .descritpion-section__left-cell {
    padding: 30px 30px;
  }
  .descritpion-section__container img {
    max-width: 50%;
  }
}
@media only screen and (max-width: 992px) {
  .contest-nav__blur {
    right: -500px;
    top: -300px;
  }
  .main-image__blur-obj-1 {
    left: -1150px;
  }
  .main-image__blur-obj-2 {
    right: -950px;
  }
  html {
    font-size: 50%;
  }
  .contest-nav__menu {
    gap: 24px;
  }
  .contest-prizes__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contest-prizes__left {
    max-width: 100%;
    gap: 48px;
  }
  .contest-prizes__right {
    max-width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media only screen and (max-width: 768px) {
  .main-image {
    padding-bottom: clamp(7rem, 70px, 70px);
    position: relative;
  }
  .main-image__desktop-img {
    display: none;
  }
  .main-image__mobile-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .img-section__content p:nth-child(3) {
    margin-top: 30px;
  }
  .contest-prizes h3 {
    margin-bottom: 30px;
  }
  .contest-info {
    padding-top: clamp(7rem, 60px, 60px);
  }
  .contest-prizes {
    padding-bottom: clamp(7rem, 80px, 80px);
  }
  .img-section {
    padding-bottom: clamp(7rem, 80px, 80px);
  }
  .object {
    max-width: 25px;
  }
  .contest-nav .menu {
    display: block;
  }
  .contest-nav__menu {
    position: absolute;
    top: 72px;
    background: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 2;
    width: 100%;
    right: 0;
    left: 0px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 40px;
    padding-top: 40px;
    -webkit-transform: translateY(-150%);
            transform: translateY(-150%);
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }
  html {
    font-size: 47.5%;
  }
  .contest-nav__gradient-link {
    padding: 4px 14px;
  }
  .contest-list {
    padding-bottom: 80px;
  }
  .title-section__container {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .descritpion-section__container {
    padding-bottom: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .descritpion-section__container img {
    max-width: 100%;
  }
  .contest-prizes__right {
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contest-prizes__right img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  html {
    font-size: 45%;
  }
  .contest-info__blur {
    right: -562px;
    bottom: -750px;
  }
  .contest-list__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    margin-top: 30px;
  }
  .contest-list__list-item {
    margin: 0px auto;
  }
  .contest-prizes__left {
    padding: 24px;
    padding-bottom: 0px;
  }
  .contest-prizes__right-cell {
    padding: 24px;
    padding-bottom: 0px;
  }
  .contest-prizes__right-cell--2 {
    padding-bottom: 24px;
  }
}
.winners {
  position: relative;
  padding-bottom: 160px;
}
.winners__blur {
  border-radius: 50%;
  -webkit-filter: blur(250px);
          filter: blur(250px);
  position: absolute;
  width: 1000px;
  height: 1000px;
}
.winners__blur--1 {
  right: -30%;
  top: -10%;
  background-color: rgba(39, 174, 196, 0.3137254902);
}
.winners__blur--2 {
  top: 40%;
  left: 0;
  background: rgba(191, 91, 239, 0.3137254902);
}
.winners__blur--3 {
  width: 500px;
  height: 500px;
  bottom: 300px;
  right: 0;
  background: rgba(191, 91, 239, 0.4392156863);
}
.winners .contest-contaier {
  position: relative;
  z-index: 2;
}
.winners .section-title {
  text-align: center;
  margin-bottom: 68px;
}
.winners__paragraph {
  text-align: center;
  font-size: 32px;
  line-height: 45px;
  font-weight: 900;
}
.winners__paragraph--1 {
  padding-bottom: 90px;
}
.winners__paragraph--2 {
  padding-bottom: 90px;
}
.winners .contest-list__list {
  margin-top: 0;
  margin-bottom: 80px;
}
.winners .contest-list__list--2 {
  margin-bottom: 0;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
}
.winners .contest-list__list--2 .contest-list__list-item {
  margin: 0 !important;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.winners .contest-list__list--2 .contest-list__list-item.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.winners__show-all-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}
.winners__show-all {
  display: none;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media (max-width: 1199px) {
  .winners .contest-list__list--2 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .winners__blur--1 {
    top: 0;
  }
  .winners__blur--2 {
    top: 400px;
  }
  .winners__blur--3 {
    top: 1000px;
  }
  .winners .contest-list__list--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .winners .contest-list__list--2 .contest-list__list-item {
    display: none;
  }
  .winners__show-all {
    display: inline-block;
  }
}
@media (max-width: 575px) {
  .winners .contest-list__list-item {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .winners .contest-list__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .winners .contest-list__list--2 {
    grid-template-columns: repeat(1, 1fr);
  }
}/*# sourceMappingURL=style.css.map */