@font-face {
  font-family: "Golos";
  src: url('fonts/GolosText-Regular.woff2') format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Golos";
  src: url('fonts/GolosText-Medium.woff2') format("woff2");
  font-weight: 500;
}

@font-face {
  font-family: "Golos";
  src: url('fonts/GolosText-SemiBold.woff2') format("woff2");
  font-weight: 500;
}

* {
  font-family: 'Golos';
  font-weight: 400;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --text-size: 16px;
  --text-line: 26px;
  --headings: 36px;
  --headings-line: 42px;
  --button-text: 14px;
  --padding-container: 200px;
  --gunter: 30px;
  --column: calc(100% / 12);
  --width-screen: calc(100vw - 200px);
  --small: calc((100vw - 200px) / 3);
  --medium: calc(((100vw - 200px) / 2) - 30px);
}

@media (max-width: 1400px) {
  :root {
    --text-size: 14px;
    --text-line: 20px;
    --headings: 36px;
    --headings-line: 42px;
    --button-text: 14px;
    --padding-container: 100px;
    --gunter: 30px;
    --column: calc(100% / 12);
    --width-screen: calc(100% - 100px);
    --small: calc((100vw - 100px) / 3);
    --medium: calc(((100vw - 100px) / 2) - 30px);
  }
}

@media (max-width: 1100px) {
  :root {
    --text-size: 14px;
    --text-line: 20px;
    --headings: 36px;
    --headings-line: 42px;
    --button-text: 14px;
    --padding-container: 100px;
    --gunter: 30px;
    --column: calc(100% / 12);
    --width-screen: calc(100% - 60px);
    --small: calc((100vw - 60px) / 2);
    --medium: calc(((100vw - 60px) / 2) - 30px);
  }
}

@media (max-width: 900px) {
  :root {
    --text-size: 14px;
    --text-line: 20px;
    --headings: 36px;
    --headings-line: 42px;
    --button-text: 14px;
    --padding-container: 100px;
    --gunter: 30px;
    --column: calc(100% / 12);
    --width-screen: calc(100% - 60px);
    --small: calc(((100vw - 60px) / 2) - 15px);
    --medium: calc(((100vw - 60px) / 2) - 30px);
  }
}

@media (max-width: 700px) {
  :root {
    --text-size: 14px;
    --text-line: 20px;
    --headings: 24px;
    --headings-line: 32px;
    --button-text: 14px;
    --padding-container: 100px;
    --gunter: 30px;
    --column: calc(100% / 12);
    --width-screen: calc(100% - 40px);
    --small: 100%;
    --medium: 100%;
  }
}

.planet-logo {
  display: block;
  width: auto;
  height: 40px;
}

.planet-play {
  display: block;
  width: auto;
  height: var(--button-text);
}

.planet-login {
  display: block;
  width: auto;
  height: var(--button-text);
}

.planet-autorization {
  display: block;
}

section {
  padding: 100px 0;
}

.large {
  width: var(--width-screen);
}

.medium {
  width: calc((var(--width-screen) / 2) - 30px);
}

.small {
  width: calc(var(--width-screen) / 3);
}

.planet-background {
  background-color: black;
  color: white;
}

.planet-done {
  display: block;
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.planet-flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.planet-container {
  width: var(--width-screen);
  margin: 0 auto;
}

.planet-heading {
  font-size: var(--headings);
  line-height: var(--headings-line);
  font-weight: 600;
  margin-bottom: 40px;
}

.planet-flex-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  -webkit-gap: 10px;
}

.planet-eye {
  display: block;
}

.planet-no-eye {
  display: none;
}

.planet-eye-img {
  display: block;
  width: 40px;
  height: auto;
}

.planet-hero-header {
  font-size: var(--headings);
  line-height: var(--headings-line);
  font-weight: 600;
  margin-bottom: 40px;
  width: 50%;
}

.planet-hero-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  -webkit-gap: 20px;
  margin-top: 40px;
}

.planet-text {
  font-size: var(--text-size);
  line-height: var(--text-line);
}

.planet-possib-lead {
  font-size: var(--text-size);
  line-height: var(--text-line);
  max-width: 500px;
}

.planet-btn {
  display: inline-flex;
  padding: 15px 30px;
  background-color: #312C55;
  border-radius: 50px;
  font-size: var(--button-text);
  line-height: var(--button-text);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  gap: 15px;
  -webkit-gap: 15px;
}

.planet-modal-btn {
  display: inline-flex;
  width: fit-content;
  padding: 15px 30px;
  background-color: #3827CC;
  border-radius: 50px;
  font-size: var(--button-text);
  line-height: var(--button-text);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  gap: 15px;
  -webkit-gap: 15px;
}

.planet-btn:hover {
  background-color: #3827CC;
  border: 0;
}

.planet-header {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 15px 100px;
 max-width: 100vw;
 background: rgba(0, 0, 0, 0.071);
 backdrop-filter: blur(50px);
 -webkit-backdrop-filter: blur(50px);
}

.planet-hero {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  max-width: 100vw;
  min-height: 100vh;
  /* background: url('../assets/images/hero.jpeg') center center no-repeat;
  background-size: cover; */
}

.planet-index {
  position: relative;
  z-index: 2;
}

.planet-video-main {
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.planet-video-dark {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.planet-nav {
  position: fixed;
  max-width: 100vw;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 15px 0;
  background: rgba(56, 39, 204, 0.50);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.planet-nav-list {
  display: flex;
  align-items: flex-start;
  gap: 43px;
  list-style-type: none;
}

.planet-nav-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  -webkit-gap: 10px;
}

.planet-nav-item-img {
  display: block;
  width: 24px;
  height: 24px;
}

.planet-nav-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  -webkit-gap: 10px;
  text-decoration: none;
  color: white;
  line-height: 14px;
  font-size: 14px;
  text-transform: uppercase;
}

.planet-possib {
  background-color: #3827CC;
}

.planet-flex-wrap {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 100px;
}

.planet-possib-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: var(--medium);
}

.planet-possib-logo-braim {
  display: block;
  width: 240px;
  margin-top: auto;
}

.planet-braim-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.planet-possib-list {
  display: flex;
  list-style-type: none;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.planet-possib-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  -webkit-gap: 25px;
  width: 33%;
  margin-bottom: 25px;
}

.planet-possib-text {
  max-width: 220px;
}

.planet-challenges-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.planet-view-all {
  background: none;
  border: 1px solid white;
}

.planet-challenges-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  gap: var(--gunter);
  -webkit-gap: var(--gunter);
  margin-top: 60px;
}

.planet-challenges-item {
  display: flex;
  max-width: calc((100% - 60px) / 3);
  padding: 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: 25px;
  background: linear-gradient(136deg, rgba(97, 92, 136, 0.37) 5.84%, rgba(56, 39, 204, 0.17) 84.98%);
}

.planet-challenges-cover {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 40vh;
  object-fit: cover;
  border-radius: 5px;
}

.planet-challenges-time {
  display: block;
  padding-left: 28px;
  background: url('../assets/svg/time.svg') no-repeat left center;
  background-size: 18px 18px;
}

.planet-challenges-heading {
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
}

.challenges-btn {
  padding-left: 55px;
  background: url('../assets/svg/arrow.svg') left center no-repeat;
  background-position-x: 30px;
  background-size: 15px auto;
  background-color: #3827CC;
  margin-top: auto;
}

.planet-stages-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.plamet-stages-list {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  align-items: center;
  gap: 15px;
  -webkit-gap: 15px;
  margin-bottom: 40px;
}

.planet-stages-item-active {
  background: #3827CC;
}

.planet-stages-item {
  display: block;
  background: none;
  border: 1px solid white;
}

.planet-btn-white {
  background: white;
  color: #3827CC;
  width: fit-content;
  text-align: center;
}

.planet-btn-white:hover {
  background-color: white;
}

.planet-container-stages {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.planet-stages-block-list {
  max-width: 700px;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.planet-stage-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.planet-stage-line-line {
  width: 2px;
  height: 100%;
  background-color: #3827CC;
}

.planet-stage-num {
  display: block;
  padding: 15px 0;
  width: 44px;
  height: 44px;
  background-color: #3827CC;
  border-radius: 22px;
  font-size: var(--button-text);
  line-height: var(--button-text);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  gap: 15px;
  -webkit-gap: 15px;
  text-align: center;
}

.planet-stage-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  -webkit-gap: 20px;
  padding-bottom: 60px;
}

.planet-stage-heading {
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
}

.planet-stage-text-about {
  font-size: var(--text-size);
  line-height: var(--text-line);
}

.planet-stages-block-item {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 30px;
  -webkit-gap: 30px;
  border-radius: 25px;
}

.planet-stages-block-item:last-child {
  align-items: start;
}

.planet-stages-block-text {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.planet-stages-block-heading {
  max-width: var(--medium);
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.planet-stages-text {
  max-width: var(--medium);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}

.planet-participants-block {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 30px;
  -webkit-gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.planet-participants-left {
  width: var(--small);
  display: flex;
  flex-direction: column;
  gap: 20px;
  -webkit-gap: 20px;
}

.planet-participants-right {
  width: calc(var(--column) * 8);
}

.planet-participants-img {
  display: block;
  width: 100%;
  height: 60vh;
  object-fit: cover;
  border-radius: 25px;
}

.planet-organizator {
  min-height: 100vh;
  background: url('../assets/images/organizator.jpeg') center center no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.planet-container-organizator {
  max-width: var(--medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px;
}

.planet-logo-org {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 30px 0;
}

.planet-text-organizator {
  font-size: var(--text-size);
  line-height: var(--text-line);
  text-align: center;
  margin-bottom: 60px;
}

.planet-flex-row-org {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  -webkit-gap: 30px;
}

.planet-partner {
  width: 140px;
  height: 100px;
  object-fit: contain;
}

.planet-partners-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  list-style-type: none;
}

.planet-partners-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(100% / 6);
  height: 100px;
}

.planet-partners-item:last-child {
  margin-right: auto;
}

.planet-partners-logo {
  display: block;
  width: 140px;
  height: 100%;
  object-fit: contain;
}

.planter-testimonials {
  background: url('../assets/images/testers.jpeg') no-repeat center bottom;
  background-size: cover;
}

.planet-testimonials-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  gap: var(--gunter);
  -webkit-gap: var(--gunter);
  list-style-type: none;
}

.planet-testimonials-item {
  width: calc((100% - (var(--gunter) * 2)) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  -webkit-gap: 30px;
  padding: 60px;
  border-radius: 25px;
  background: linear-gradient(0deg, rgba(56, 39, 204, 0.30) 0%, rgba(56, 39, 204, 0.30) 100%), url('../assets/images/block\ color.jpeg'), lightgray 50% / cover no-repeat;
}

.planet-testimonial-avatar {
  display: block;
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
}

.planet-testimonial-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  -webkit-gap: 15px;
}

.planet-testimonial-name {
  font-size: 21px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
}

.planet-testimonials-text {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.planet-footer {
  background: black;
  padding: 100px 0 100px 0;
  color: white;
}

.planet-footer-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.planet-footer-block {
  width: var(--small);
}

.planet-footer-nav {
  display: flex;
  flex-direction: row;
  gap: 50px;
  -webkit-gap: 50px;
}

.planet-footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  -webkit-gap: 10px;
  list-style-type: none;
}

.planet-footer-item {
  width: 260px;
}

.planet-footer-heading {
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.planet-footer-text {
  font-size: var(--text-size);
  line-height: var(--text-line);
}

.planet-footer-link {
  width: fit-content;
  text-decoration: none;
  color: white;
  padding-bottom: 5px;
  border-bottom: 1px solid #3727cc00;
  display: flex;
  flex-direction: column;
  gap: 2px;
  -webkit-gap: 2px;
  font-size: var(--text-size);
  line-height: var(--text-line);
}

.planet-footer-link:hover {
  border-bottom: 1px solid #72acf7;
  color: #72acf7;
}

.planet-challenges-page {
  background: url('../assets/images/hero.jpeg') no-repeat center bottom;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 200px;
}

.planet-gallery {
  padding: 50px 0 0 0;
}

.planet-gallery-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
}

.planet-gallery-item {
  width: calc(100% / 3);
  height: 400px;
  position: relative;
}

.planet-gallery-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.planet-podpis {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(0deg, rgba(56, 39, 204, 0.80) 0%, rgba(56, 39, 204, 0.00) 65.65%);
  color: white;
  opacity: 0;
}

.planet-gallery-item:hover .planet-podpis {
  opacity: 1;
}

.mobile-autorization {
  display: none;
}

.planet-container-challenges {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px;
}

.planet-hero-pages {
  font-size: var(--headings);
  line-height: var(--headings-line);
  font-weight: 600;
  margin-bottom: 40px;
  width: 100%;
  text-align: center;
}

.planet-switch-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  -webkit-gap: 10px;
}

.planet-switch {
  position: relative;
  display: block;
  width: 44px;
  height: 24px;
  background-color: #3827CC;
  border-radius: 22px;
  cursor: pointer;
}

.planet-switch-circle-left {
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: white;
  transition: ease-in-out 0.3s;
}

.planet-switch-circle-right {
  display: none;
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: white;
  transition: ease-in-out 0.3s;
}

.planet-winners-year-list {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  -webkit-gap: 10px;
  width: 100%;
  justify-content: center;
  margin-bottom: 30px;
}

.planet-winners-year-link {
  display: block;
  padding: 10px 25px;
  text-decoration: none;
  border: 1px solid white;
  border-radius: 20px;
  color: white;
}

.planet-winners-active {
  background-color: #3827CC;
  border: 1px solid #3827CC;
}

.planet-winners-winners {
  padding: 60px 0;
}

.planet-winners-uzes {
  padding: 60px 0;
  display: none;
}

.planet-winners-heading {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.planet-winners-list {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  -webkit-gap: 30px;
  margin-bottom: 40px;
}

.planet-winners-item {
  display: flex;
  flex-direction: row;
  width: calc((100% - 60px) / 3);
  background: #5148a556;
  padding: 30px;
  border-radius: 15px;
  gap: 20px;
  -webkit-gap: 20px;
}

.planet-winners-right {
  position: relative;
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.planet-winners-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
  -webkit-gap: 15px;
}

.planet-winners-points {
  position: relative;
  top: -15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  -webkit-gap: 10px;
}

.planet-winners-gold {
  display: block;
  width: 40px;
  height: 40px;
  background-color: gold;
  border-radius: 20px;
}

.planet-winners-silver {
  display: block;
  width: 40px;
  height: 40px;
  background-color: silver;
  border-radius: 20px;
}

.planet-winners-bronze {
  display: block;
  width: 40px;
  height: 40px;
  background-color: rgb(153, 104, 49);
  border-radius: 20px;
}

.planet-winners-img {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 60px;
}

.planet-winners-name {
  font-size: 18px;
  font-weight: 600;
}

.planet-winners-nomination {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.planet-winners-nomination::before {
  content: 'Конкурс: ';
  font-weight: 600;
}

.planet-winners-uz {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.planet-winners-uz::before {
  font-weight: 600;
}

.planet-winners-uz-item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 60px) / 3);
  background: #5148a556;
  padding: 30px;
  border-radius: 15px;
  gap: 20px;
  -webkit-gap: 20px;
}

.planet-winner-uz-status {
  display: block;
  width: fit-content;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  font-weight: 600;
  background-color: #3827CC;
  border-radius: 20px;
}

.planet-wiiner-uz-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
}

.planet-winners-uz-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.planet-winnets-uz-site {
  font-size: 16px;
  line-height: 16px;
  color: #8f84f0;
  text-decoration: none;
}

.planet-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  width: 100vw;
  height: 100vh;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.425);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
}

.planet-modal-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
  -webkit-gap: 50px;
  max-width: 500px;
  padding: 30px;
  background-color: #3727cc4b;
  border-radius: 20px;
}

.planet-modal-block-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  -webkit-gap: 15px;
}

.planet-modal-heading {
  font-size: 21px;
  line-height: 21px;
  font-weight: 600;
  color: white;
}

.planet-modal-text {
  font-size: var(--text-size);
  line-height: var(--text-line);
  color: white;
}

.planet-close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
  cursor: pointer;
}

.planet-links {
  font-size: var(--text-size);
  line-height: var(--text-line);
  color: #72acf7;
  text-decoration: none;
}

.planet-logo-braim-link {
  margin-top: auto;
}

.planet-suppot-list {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.planet-support-item {
  display: block;
  width: 20%;
  height: 140px;
}

.planet-support-logo {
  display: block;
  width: 80%;
  height: 100%;
  object-fit: contain;
}

.planet-modal-form {
  padding: 0 20px;
}

.planet-doc {
  width: fit-content;
  display: flex;
  flex-direction: row;
  gap: 10px;
  -webkit-gap: 10px;
  align-items: center;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px dashed white;
}

.planet-doc-img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}


@media (max-width: 1400px) {
  .planet-winners-item {
    display: flex;
    flex-direction: row;
    width: calc((100% - 30px) / 2);
    background: #5148a556;
    padding: 30px;
    border-radius: 15px;
    gap: 20px;
    -webkit-gap: 20px;
  }

  .planet-winners-right {
    position: relative;
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .planet-winners-uz-item {
    display: flex;
    flex-direction: column;
    width: calc((100% - 30px) / 2);
    background: #5148a556;
    padding: 30px;
    border-radius: 15px;
    gap: 20px;
    -webkit-gap: 20px;
  }

  .planet-suppot-list {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .planet-support-item {
    display: block;
    width: 25%;
    height: 140px;
  }

  .planet-support-logo {
    display: block;
    width: 80%;
    height: 100%;
    object-fit: contain;
  }
}


@media (max-width: 1200px) {

  .planet-winners-img {
    display: block;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50px;
  }

  .planet-header {
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
   max-width: 100vw;
   background: rgba(0, 0, 0, 0.071);
   backdrop-filter: blur(50px);
   -webkit-backdrop-filter: blur(50px);
  }

  section {
    padding: 80px 0;
  }

  .large {
    width: var(--width-screen);
  }

  .medium {
    width: calc((var(--width-screen) / 2) - 30px);
  }

  .small {
    width: calc(var(--width-screen) / 2);
  }

  .planet-footer-flex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    -webkit-gap: 50px;
  }

  .planet-footer-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px;
    -webkit-gap: 50px;
  }

  .planet-testimonials-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: var(--gunter);
    -webkit-gap: var(--gunter);
  }

  .planet-testimonials-item {
    width: calc((100% - var(--gunter)) / 2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    -webkit-gap: 30px;
    padding: 40px;
    border-radius: 25px;
    background: linear-gradient(0deg, rgba(56, 39, 204, 0.30) 0%, rgba(56, 39, 204, 0.30) 100%), url('../assets/images/block\ color.jpeg'), lightgray 50% / cover no-repeat;
  }

  .planet-partners-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(100% / 5);
    height: 100px;
  }

  .planet-gallery-item {
    width: calc(100% / 2);
    height: 400px;
    position: relative;
  }

  .planet-challenges-item {
    display: flex;
    max-width: calc((100% - 30px) / 2);
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    border-radius: 25px;
    background: linear-gradient(136deg, rgba(97, 92, 136, 0.37) 5.84%, rgba(56, 39, 204, 0.17) 84.98%);
  }

  .planet-suppot-list {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .planet-support-item {
    display: block;
    width: 25%;
    height: 140px;
  }

  .planet-support-logo {
    display: block;
    width: 80%;
    height: 100%;
    object-fit: contain;
  }
}

@media (max-width: 900px) {

  .planet-video-dark {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

  .planet-hero-header {
    font-size: var(--headings);
    line-height: var(--headings-line);
    font-weight: 600;
    margin-bottom: 40px;
    width: 100%;
  }

  .planet-container-organizator {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 30px;
  }

  .planet-flex-row-org {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    -webkit-gap: 20px;
  }

  .planet-logo {
    width: 150px;
  }

  section {
    padding: 80px 0;
  }

  .large {
    width: var(--width-screen);
  }

  .medium {
    width: var(--width-screen);
  }

  .small {
    width: 100%;
  }

  .planet-flex-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 100px;
  }

  .planet-possib-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
  }

  .planet-possib-left .planet-heading {
    font-size: var(--headings);
    line-height: var(--headings-line);
    font-weight: 600;
    margin-bottom: 0;
  }

  .planet-possib-logo-braim {
    display: block;
    width: 200px;
    margin-top: auto;
    margin-bottom: 30px;
  }

  .planet-possib-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    -webkit-gap: 25px;
    width: 48%;
    margin-bottom: 25px;
  }

  .planet-challenges-list {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: var(--gunter);
    -webkit-gap: var(--gunter);
    margin-top: 60px;
  }

  .planet-nav-list {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    list-style-type: none;
  }

  .planet-footer-flex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
  }

  .planet-footer-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px;
    -webkit-gap: 50px;
  }

  .planet-footer-block {
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    -webkit-gap: 20px;
  }

  .planet-testimonials-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: var(--gunter);
    -webkit-gap: var(--gunter);
  }

  .planet-testimonials-item {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    -webkit-gap: 30px;
    padding: 30px;
    border-radius: 25px;
    background: linear-gradient(0deg, rgba(56, 39, 204, 0.30) 0%, rgba(56, 39, 204, 0.30) 100%), url('../assets/images/block\ color.jpeg'), lightgray 50% / cover no-repeat;
  }

  .planet-partners-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(100% / 3);
    height: 100px;
  }

  .planet-participants-block {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
  }

  .planet-participants-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    -webkit-gap: 20px;
  }

  .planet-participants-right {
    width: 100%;
  }

  .planet-participants-img {
    display: block;
    width: 100%;
    height: 50vh;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
  }

  .planet-participants-block .planet-heading {
    margin-bottom: 0;
  }

  .planet-winners-item {
    display: flex;
    flex-direction: row;
    width: 100%;
    background: #5148a556;
    padding: 30px;
    border-radius: 15px;
    gap: 20px;
    -webkit-gap: 20px;
  }

  .planet-winners-right {
    position: relative;
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .planet-winners-uz-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #5148a556;
    padding: 30px;
    border-radius: 15px;
    gap: 20px;
    -webkit-gap: 20px;
  }

  .planet-gallery-item {
    width: calc(100% / 2);
    height: 400px;
    position: relative;
  }

  .planet-challenges-item {
    display: flex;
    max-width: calc((100% - 30px) / 2);
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    border-radius: 25px;
    background: linear-gradient(136deg, rgba(97, 92, 136, 0.37) 5.84%, rgba(56, 39, 204, 0.17) 84.98%);
  }

  .planet-suppot-list {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .planet-support-item {
    display: block;
    width: 33%;
    height: 140px;
  }

  .planet-support-logo {
    display: block;
    width: 80%;
    height: 100%;
    object-fit: contain;
  }

}

@media (max-width: 600px) {

  .planet-hero-flex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    -webkit-gap: 20px;
    margin-top: 40px;
  }

  .planet-partners-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(100% / 2);
    height: 100px;
  }

  .planet-autorization {
    display: none;
    font-size: 0;
  }

  .mobile-autorization {
    display: block;
  }

  .planet-nav {
    position: fixed;
    max-width: 100vw;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 10px 0;
    background: rgba(56, 39, 204, 0.50);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
  }

  .planet-nav-list {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    list-style-type: none;
  }

  .planet-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    -webkit-gap: 5px;
  }

  .planet-nav-item-img {
    display: block;
    width: 30px;
    height: 30px;
  }

  .planet-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    -webkit-gap: 5px;
    text-decoration: none;
    color: white;
    line-height: 9px;
    font-size: 9px;
    text-transform: uppercase;
  }

  .planet-partners-logo {
    display: block;
    width: 100px;
    height: 100%;
    object-fit: contain;
  }

  .planet-possib-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    -webkit-gap: 10px;
    width: 100%;
    margin-bottom: 25px;
  }

  .planet-done {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
  }

  .planet-challenges-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    -webkit-gap: 20px;
  }

  .planet-challenges-header .planet-heading {
    margin-bottom: 0;
  }

  .planet-challenges-item {
    display: flex;
    max-width: var(--small);
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    border-radius: 25px;
    background: linear-gradient(136deg, rgba(97, 92, 136, 0.37) 5.84%, rgba(56, 39, 204, 0.17) 84.98%);
  }

  .planet-stages-block-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 15px;
    -webkit-gap: 15px;
    border-radius: 25px;
  }

  .planet-stage-heading {
    font-size: 21px;
    line-height: 26px;
    font-weight: 600;
  }

.planet-winners-item {
  flex-direction: column;
  align-items: center;
}

.planet-winners-name {
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.planet-winners-nomination {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.planet-winners-country {
  font-size: 14px;
  line-height: 14px;
  text-align: center;
}

.planet-winners-uz {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.planet-wiiner-uz-name {
  font-size: 14px;
  line-height: 20px;
}

.planet-winnets-uz-site {
  font-size: 14px;
  line-height: 14px;
}

.planter-winner-uz-country {
  font-size: 14px;
  line-height: 14px;
}

.planet-gallery-item {
  width: 100%;
  height: 400px;
  position: relative;
}

.planet-challenges-cover {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 5px;
}

.planet-suppot-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.planet-support-item {
  display: block;
  width: 50%;
  height: 140px;
}

.planet-support-logo {
  display: block;
  width: 80%;
  height: 100%;
  object-fit: contain;
}

.planet-testimonials-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  -webkit-gap: 30px;
  padding: 30px;
  border-radius: 25px;
  background: linear-gradient(0deg, rgba(56, 39, 204, 0.30) 0%, rgba(56, 39, 204, 0.30) 100%), url('../assets/images/block\ color.jpeg'), lightgray 50% / cover no-repeat;
}

}

.news-cover-page {
  position: relative;
  width: 100%;
  height: 100vh;
}

.news-cover-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heading-news {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: 30px;
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 43%);
}

.planet-news-body-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.planet-container-news {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  -webkit-gap: 20px;
  padding: 0 20px;
}

.planet-news-cover {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 5px;
}