@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;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  transition: ease-in-out 0.3s;
}

:root {
  --newdes-main-color: rgb(79, 142, 202);
  --newdes-main-color-pacity: rgba(0, 0, 0, 0.7);
  --newdes-heading-color: rgb(0, 0, 0);
  --newdes-text-color: rgb(92, 92, 92);
  --newdes-background: white;
  --newdes-backfround-card: #7777a11c;
  --newdes-hero-headline: 42px;
  --newdes-hero-description: 21px;
  --newdes-btn-size: 16px;
  --newdes-text-size: 16px;
}

@media (max-width: 1360px) {
  :root {
    --newdes-hero-headline: 36px;
    --newdes-hero-description: 18px;
    --newdes-btn-size: 14px;
    --newdes-text-size: 14px;
  }
}

@media (max-width: 1000px) {
  :root {
    --newdes-hero-headline: 24px;
    --newdes-hero-description: 16px;
    --newdes-btn-size: 13px;
    --newdes-text-size: 13px;
  }
}

.newdes-background-theme {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--newdes-background);
  z-index: -2;
}

@media (max-width: 800px) {
  .newdes-background-theme {
    background-size: 100vw auto;
  }
}

ul {
  list-style: none;
}

.newdes-btn {
  display: inline-flex;
  padding: 15px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background-color: var(--newdes-main-color);
  color: white;
  border-radius: 5px;
  font-size: var(--newdes-btn-size);
}

.newdes-btn:hover {
  background-color: #b100e7;
}

.newdes-container-wrapper {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 86vw;
  margin: 0 40px 0 auto;
}

h1 {
  font-size: var(--newdes-hero-headline);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.02;
  color: var(--newdes-heading-color);
}

.newdes-header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: auto;
  background: none;
}

.newdes-header-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  padding: 7vh 20px;
}

.newdes-header-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  -webkit-gap: 30px;
}

.newdes-header-nav-icon:hover {
  filter: saturate(50);
}

.newdes-header-nav-link-theme {
  margin-top: auto;
}

.newdes-header-nav-icon-theme {
  display: none;
  cursor: pointer;
}

.newdes-header-nav-icon-theme-dark {
  display: block;
  cursor: pointer;
}

@media (max-width: 800px) {
  .newdes-header {
    display: block;
    position: fixed;
    z-index: 5;
    top: auto;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--newdes-background);
  }

  .newdes-header-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: auto;
    padding: 20px 30px;
    border-top: 1px solid rgb(209, 209, 209);
  }

  .newdes-header-nav-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: auto;
    -webkit-gap: auto;
  }

  .newdes-header-nav-link-theme {
    margin-top: 0;
  }
}

.newdes-hero {
  padding-top: 7vh;
  padding-bottom: 7vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 50px;
  -webkit-gap: 50px;
  height: 100vh;
}

@media (max-width: 800px) {
  .newdes-hero {
    padding-top: 50px;
  }
}

.newdes-logo-list-hero {
  margin-bottom: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  -webkit-gap: 30px;
}

.newdes-logo-item-hero {
  position: relative;
  display: block;
  width: 180px;
  height: 80px;
  position: relative;
}

.newdes-logo-item-link {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.newdes-logo-item-hero-white {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.newdes-logo-item-hero-dark {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 800px) {
  .newdes-logo-item-hero {
    display: block;
    width: 120px;
    height: 60px;
    position: relative;
  }
}

.newdes-right-block {
  position: sticky;
  width: 45%;
  right: 0;
  top: 7vh;
  bottom: 7vh;
  padding-bottom: 7vh;
  height: 86vh;
  overflow: hidden;
}

.newdes-hero-video {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.newdes-hero-video-mobile {
  display: none;
}

@media (max-width: 800px) {
  .newdes-hero-video-mobile {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 20px;
  }

  .newdes-right-block {
    display: none;
  }
}

.newdes-left-block {
  max-width: 45%;
}

.newdes-hero-btn-block {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  -webkit-gap: 20px;
}

.newdes-hero-description {
  color: var(--newdes-text-color);
  font-size: var(--newdes-hero-description);
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  max-width: 550px;
}

.newdes-hero-btn-description {
  color: var(--newdes-text-color);
  font-size: var(--newdes-text-size);
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  max-width: 290px;
}

@media (max-width: 1040px) {
  .newdes-left-block {
    max-width: 100%;
  }

  .newdes-right-block {
    position: relative;
    width: 100%;
    right: 0;
    top: 7vh;
    bottom: 7vh;
    padding-bottom: 7vh;
    height: 60vh;
    overflow: hidden;
  }

  .newdes-container-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 86vw;
    margin: 0 20px 0 auto;
  }

  .newdes-hero {
    padding-top: 7vh;
    padding-bottom: 7vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 50px;
    -webkit-gap: 50px;
    height: auto;
  }

  .newdes-logo-list-hero {
    margin-bottom: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    -webkit-gap: 30px;
  }
}

@media (max-width: 800px) {
  .newdes-left-block {
    max-width: 100%;
  }

  .newdes-right-block {
    position: relative;
    width: 100%;
    right: 0;
    top: 7vh;
    bottom: 7vh;
    padding-bottom: 7vh;
    height: 45vh;
    overflow: hidden;
  }

  .newdes-container-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 100%;
    margin: 0 20px 0 20px;
  }

  .newdes-hero {
    padding-top: 20px;
    padding-bottom: 7vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 20px;
    -webkit-gap: 20px;
    height: fit-content;
  }

  .newdes-logo-list-hero {
    margin-bottom: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    -webkit-gap: 30px;
  }

}

.newdes-section-standart {
  position: relative;
  padding: 200px 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
  -webkit-gap: 50px;
}

.newdes-section-standart:last-child {
  padding-bottom: 0;
}

@media (max-width: 1000px) {
  .newdes-section-standart {
    position: relative;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
    -webkit-gap: 50px;
  }
}

.newdes-position-svg {
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: 0;
  width: 30%;
  z-index: -1;
  height: auto;
}

.newdes-style-svg {
  fill: var(--newdes-main-color);
  opacity: 0.1;
}

.newdes-heading-block {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--newdes-heading-color);
}

.newdes-text-description {
  font-size: var(--newdes-text-size);
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: var(--newdes-text-color);
}

.newdes-tag-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  -webkit-gap: 10px;
}

.newdes-tag-item {
  display: flex;
  padding: 15px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  -webkit-gap: 10px;
  border-radius: 30px;
  border: 2px solid var(--newdes-main-color);
  font-size: var(--newdes-text-size);
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  color: var(--newdes-main-color);
}

.newdes-logo-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  -webkit-gap: 30px;
}

.newdes-logo-item-img {
  display: block;
  width: 160px;
  height: 130px;
  object-fit: contain;
}

.newdes-cards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  -webkit-gap: 20px;
}

.newdes-cards-item-stage {
  display: flex;
  padding: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
  border-radius: 10px;
  background: var(--newdes-backfround-card);
}

.newdes-cards-item-stage-active {
  display: flex;
  padding: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
  border-radius: 10px;
  background: var(--newdes-main-color-pacity);
}

.newdes-stage-card-subline {
  color: var(--newdes-text-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px; /* 100% */
  text-transform: uppercase;
}

.newdes-stage-card-subline-active {
  color: var(--newdes-main-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px; /* 100% */
  text-transform: uppercase;
}

.newdes-stage-card-headline {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--newdes-heading-color);
}

.newdes-stage-card-description {
  color: var(--newdes-text-color);
  font-size: var(--newdes-text-size);
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.newdes-stage-flex-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .newdes-stage-flex-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    -webkit-gap: 20px;
    flex-wrap: wrap;
  }
}

.newdes-stage-card-date {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 14px; /* 100% */
  text-transform: uppercase;
  color: var(--newdes-text-color);
}

.newdes-stage-card-date-active {
  color: var(--newdes-main-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 14px; /* 100% */
  text-transform: uppercase;
}

.newdes-people-list {
  width: 150px;
  height: 64px;
  display: inline-flex;
  align-items: flex-start;
}

.newdes-people-item {
  position: relative;
  display: block;
  min-width: 64px;
  height: 64px;
  border: 5px solid white;
  border-radius: 32px;
  overflow: hidden;
  filter: drop-shadow(10px 10px 20px rgba(40, 137, 206, 0.4));
}

.newdes-people-item:nth-child(2) {
  left: -20px;
}

.newdes-people-item:nth-child(3) {
  left: -40px;
}

.newdes-people-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newdes-school-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  -webkit-gap: 20px;
}

.newdes-school-item {
  position: relative;
  padding: 30px;
  width: calc((100% - 20px) / 2);
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
  -webkit-gap: 20px;
  background: url('../assets/img/play_back.png') no-repeat center top;
  background-size: 290px auto;
  border-radius: 10px;
  background-color: var(--newdes-main-color);
}

@media (max-width: 1200px) {
  .newdes-school-item {
    width: 100%;
  }
}

.newdes-school-heading {
  color: #FFF;
  font-size: var(--newdes-text-size);
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.newdes-time-code {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px; /* 100% */
}

.newdes-play-button {
  text-decoration: none;
  width: fit-content;
  display: block;
  font-size: var(--newdes-text-size);
  line-height: var(--newdes-text-size);
  color: black;
  padding: 10px 20px 10px 40px;
  background: url('../assets/img/play.svg') no-repeat left center;
  background-size: 32px 32px;
  background-position-x: 2px;
  background-color: #FFF;
  border-radius: 20px;
}

.newdes-lock-button {
  text-decoration: none;
  width: fit-content;
  display: block;
  font-size: var(--newdes-text-size);
  line-height: var(--newdes-text-size);
  color: black;
  padding: 10px 20px 10px 40px;
  background: url('../assets/img/lock.svg') no-repeat left center;
  background-size: 32px 32px;
  background-position-x: 2px;
  background-color: #FFF;
  border-radius: 20px;
}

.newdes-cards-list-jury {
  display: flex;
  flex-direction: column;
  gap: 20px;
  -webkit-gap: 20px;
}

.newdes-jury {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  -webkit-gap: 30px;
  padding: 30px;
  border-radius: 10px;
  background: var(--newdes-backfround-card);
}

@media (max-width: 1200px) {
  .newdes-jury {
    display: flex;
    flex-direction: column;
    gap: 30px;
    -webkit-gap: 30px;
    padding: 30px;
    border-radius: 10px;
    background: var(--newdes-backfround-card);
  }
}

.newdes-jury-img-container {
  min-width: 200px;
  height: 200px;
  position: relative;
}

.newdes-img-jury {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100px;
}

.newdes-text-jury {
  display: flex;
  flex-direction: column;
  gap: 20px;
  -webkit-gap: 20px;
}

.newdes-headline-jury {
  color: var(--newdes-heading-color);
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
}

.newdes-footer {
  display: flex;
  flex-direction: column;
  gap: 50px;
  -webkit-gap: 50px;
  width: 100%;
  background-color: var(--newdes-backfround-card);
  padding: 100px 7vw;
  margin-top: 100px;
}

.newdes-footer-nav-logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  -webkit-gap: 10px;
  max-width: 250px;
  height: auto;
  margin-right: auto;
  text-decoration: none;
}

.newdes-footer-nav-logo-img {
  display: block;
  width: 150px;
  height: auto;
  filter: invert(1);
}

.newdes-footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 50px;
  -webkit-gap: 30px;
  padding-bottom: 50px;
}

.newdes-footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  -webkit-gap: 20px;
}

.newdes-footer-nav-link {
  color: var(--newdes-text-color);
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--newdes-text-color);
}

.newdes-headline-footer {
  font-size: 21px;
  line-height: 21px;
  font-weight: 500;
  color: var(--newdes-text-color);
}

.newdes-copyright {
  padding-top: 30px;
  border-top: 1px solid var(--newdes-backfround-card);
  color: var(--newdes-text-color);
}

.newdes-active {
  color: var(--newdes-main-color)
}

.newdes-link-text {
  font-weight: 600;
  color: var(--newdes-main-color);
  text-decoration: none;
}

.newdes-link-text:hover {
  color: #b100e7;
}

.newdes-round {
  border-radius: 100px;
}

.newdes-logo-hero-white {
  display: block;
  width: 200px;
  height: auto;
  margin-bottom: auto;
}

.hero-main-logo {
  display: none;
  width: 160px;
  max-height: 80px;
}

@media (max-width: 1000px) {
  .hero-main-logo {
    display: block;
    width: 110px;
    max-height: 60px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.newdes-logo-hero-block {
  display: flex;
  flex-direction: row;
  align-items:center;
  gap: 30px;
  -webkit-gap: 30px;
  margin-bottom: auto;
}

.newdes-prize-img-container {
  position: relative;
  display: block;
  min-width: 200px;
  height: 200px;
}

.newdes-img-prize {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

a .newdes-braim-description {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  max-width: 250px;
  color: var(--newdes-text-color);
  text-decoration: none;
}

.newdes-hero-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  -webkit-gap: 30px;
}

.newdes-edit-block {
  position: fixed;
  z-index: 999;
  top: 20px;
  right: 20px;
  bottom: 20px;
  display: none;
  flex-direction: column;
  max-width: calc(700px - 40px);
  height: calc(100vh - 40px);
  background-color: var(--newdes-background-edit);
  backdrop-filter: blur(50px);
  padding: 40px 40px 91px 40px;
  border-radius: 15px;
  filter: drop-shadow(0 0 80px var(--newdes-main-color));
}

@media (max-width: 800px) {
  .newdes-edit-block {
    left: 20px;
    padding: 20px 20px 87px 20px;
    border-radius: 15px;
    filter: drop-shadow(0 0 80px var(--newdes-main-color));
  }
}

.newdes-edit-buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 40px 20px 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  -webkit-gap: 20px;
  width: 100%;
  border-top: 1px solid rgba(134, 134, 134, 0.384);
}

.edit-done {
  display: block;
  background: var(--newdes-main-color);
  padding: 15px 20px;
  width: 100%;
  text-align: center;
}

.edit-cancel {
  display: block;
  background: var(--newdes-text-color);
  color: var(--newdes-background);
  padding: 15px 20px;
  width: 100%;
  text-align: center;
}

.newdes-heading-edit {
  display: inline-block;
  width: 100%;
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  color: var(--newdes-heading-color);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(134, 134, 134, 0.384);
}

.newdes-edit-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  -webkit-gap: 15px;
  width: 100%;
  overflow-y: scroll;
  height: 100%;
  padding: 30px 0;
}

.newdes-edit-form::-webkit-scrollbar {
  width: 0;
}

.newdes-fieldset {
  outline: none;
  border: 0;
}

.newdes-legend {
  font-size: calc(var(--newdes-text-size) - 2px);
  color: var(--newdes-text-color);
  margin-bottom: 5px;
}

.newdes-edit-input {
  display: inline-block;
  width: 100%;
  padding: 20px;
  font-size: var(--newdes-text-size);
  line-height: calc(var(--newdes-text-size) + 6px);
  background: none;
  outline: none;
  border: 2px solid rgba(134, 134, 134, 0.384);
  border-radius: 10px;
  color: var(--newdes-heading-color);
}

.newdes-textarea {
  min-height: 100px;
}

input[type=date]::-webkit-calendar-picker-indicator{
	display:none;
}
input[type=date]{
	background:url("../assets/img/calendar.svg") center right no-repeat;
  background-size: 30px 30px;
  background-position-x: calc(100% - 10px);
}

.newdes-form-flex-prize {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  -webkit-gap: 10px;
}

.newdes-form-prize {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  width: calc((100% - 30px) / 3);
  background-color: white;
  border-radius: 20px;
}

.newdes-photo-expert-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  -webkit-gap: 20px;
}

@media (max-width: 800px) {
  .newdes-photo-expert-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    -webkit-gap: 20px;
  }
}

.newdes-load-expert-photo-plus {
  position: relative;
  display: block;
  width: 150px;
  height: 150px;
  border: 2px solid var(--newdes-main-color);
  border-radius: 75px;
  cursor: pointer;
}

.newdes-photo-expert-loaded {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.newdes-loaded-expert-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: var(--newdes-text-color);
}

.newdes-active-prize-img {
  position: absolute;
  z-index: 8;
  top: 5px;
  right: 5px;
  display: block;
  width: 35px;
  height: 35px;
}

.newdes-prize-active {
  background-color: var(--newdes-main-color);
}

.newdes-form-prize-img {
  display: block;
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.newdes-insert-logo {
  display: block;
  width: 180px;
  height: 80px;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid var(--newdes-main-color);
  cursor: pointer;
}

.newdes-insert-logo-input {
  display: none;
}

.newdes-insert-logo-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 2px dashed var(--newdes-main-color);
  color: var(--newdes-main-color);
  font-weight: 500;
  padding: 5px;
  text-align: center;
}

.newdes-delete {
  display: block;
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 7;
  width: 54px;
  height: 54px;
  border-radius: 27px;
  background-color: white;
  filter: drop-shadow(4px 4px 15px rgba(0, 0, 0, 0.3));
  cursor: pointer;
}

.newdes-delete-element {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  object-fit: contain;
  cursor: pointer;
  z-index: 3;
}

.newdes-load-logo {
  position: fixed;
  z-index: 6;
  right: calc((100vw / 2) - 300px);
  bottom: 30px;
  display: none;
  flex-direction: column;
  gap: 20px;
  -webkit-gap: 20px;
  max-width: 600px;
  max-height: 50vh;
  background-color: var(--newdes-background-edit);
  backdrop-filter: blur(50px);
  padding: 40px 40px 100px 40px;
  border-radius: 15px;
  filter: drop-shadow(0 0 80px var(--newdes-main-color));
}

@media (max-width: 600px) {
  .newdes-load-logo {
    position: fixed;
    z-index: 999;
    right: 20px;
    left: 20px;
    bottom: 0;
    border-radius: 20px 20px 0 0;
    padding: 20px 20px 90px 20px;
  }
}

.newdes-load-logo-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  -webkit-gap: 20px;
  padding-bottom: 20px;
}

.newdes-load-logo-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  -webkit-gap: 15px;
}

@media (max-width: 800px) {
  .newdes-load-logo-flex {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    -webkit-gap: 15px;
  }
}

.newdes-load-logo-inputs-white {
  display: block;
  height: 100px;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid var(--newdes-main-color);
  cursor: pointer;
  background-color: white;
}

.newdes-load-logo-inputs-dark {
  display: block;
  height: 100px;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid var(--newdes-main-color);
  cursor: pointer;
  background-color: black;
}

@media (max-width: 800px) {
  .newdes-load-logo-inputs-white {
    width: 100%;
    height: 100px;
  }

  .newdes-load-logo-inputs-dark {
    width: 100%;
    height: 100px;
  }
}

.newdes-logo-load-input {
  display: none;
}

.newdes-logo-load-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 2px dashed var(--newdes-main-color);
  color: var(--newdes-main-color);
  font-weight: 500;
  padding: 5px;
  text-align: center;
}

.newdes-load-logo-preview-white {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  height: 100px;
  border-radius: 10px;
}

.newdes-load-logo-preview-dark {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: black;
  height: 100px;
  border-radius: 10px;
}

.newdes-logo-load-block-white {
  display: block;
  height: 70%;
  object-fit: contain;
}

.newdes-logo-load-block-dark {
  display: block;
  height: 70%;
  object-fit: contain;
}

.newdes-click-edit {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  -webkit-gap: 10px;
  width: fit-content;
  background-color: var(--newdes-text-color);
  padding: 5px 15px 5px 5px;
  border-radius: 20px;
  cursor: pointer;
}

.newdes-edit-icon {
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background: url('../assets/img/edit.svg') no-repeat center center;
  background-size: 14px 14px;
  background-color: rgb(110, 110, 255);
}

.newdes-edit-text {
  font-size: var(--newdes-text-size);
  line-height: var(--newdes-text-size);
  color: var(--newdes-background);
}

.newdes-edit-line {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.newdes-hidden-element {
  font-size: var(--newdes-text-size);
  line-height: var(--newdes-text-size);
  color: white;
  background-color: red;
  padding: 10px 25px;
  border-radius: 20px;
  cursor: pointer;;
}

.newdes-braim-element {
  display: block;
  font-size: var(--newdes-text-size);
  line-height: var(--newdes-text-size);
  color: white;
  font-weight: 500;
  background-color: var(--newdes-main-color);
  padding: 10px 25px;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
}

.newdes-visible-element {
  font-size: var(--newdes-text-size);
  line-height: var(--newdes-text-size);
  color: var(--newdes-background);
  background-color: var(--newdes-text-color);
  padding: 10px 25px;
  border-radius: 20px;
  cursor: pointer;
}

.newdes-hidden-block {
  opacity: 0.4;
}

.newdes-school-item-new {
  position: relative;
  padding: 30px;
  width: calc((100% - 20px) / 2);
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
  -webkit-gap: 20px;
  background: none;
  background-size: 290px auto;
  border-radius: 10px;
  border: 2px solid var(--newdes-main-color);
  cursor: pointer;
}

@media (max-width: 800px) {
  .newdes-school-item-new {
    width: 100%;
  }
}

.newdes-load-video-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  -webkit-gap: 20px;
  width: 100%;
  height: 100%;
  border: 2px dashed var(--newdes-main-color);
  border-radius: 5px;
}

.newdes-load-video-plus {
  position: relative;
  display: block;
  width: 150px;
  height: 150px;
  border: 2px solid var(--newdes-main-color);
  border-radius: 75px;
}

.newdes-gor-line {
  position: absolute;
  top: 74px;
  left: 50px;
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--newdes-main-color);
  border-radius: 1px;
}

.newdes-vert-line {
  position: absolute;
  top: 50px;
  left: 74px;
  display: block;
  width: 2px;
  height: 50px;
  background-color: var(--newdes-main-color);
  border-radius: 1px;
}

.newdes-load-video-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: var(--newdes-main-color);
}

@media (max-width: 800px) {
  .newdes-load-video-text {
    text-align: center;
  }
}

.newdes-jury-load {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  -webkit-gap: 20px;
  padding: 30px;
  border-radius: 10px;
  border: 2px solid var(--newdes-main-color);
  cursor: pointer;
}

@media (max-width: 800px) {
  .newdes-jury-load {
    flex-direction: column;
  }
}

.newdes-new-block-load {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  -webkit-gap: 20px;
  padding: 30px;
  border-radius: 10px;
  cursor: pointer;
  background: var(--newdes-backfround-card);
  filter: drop-shadow(2px 2px 80px rgba(0, 0, 255, 0.349));
}

@media (max-width: 800px) {
  .newdes-new-block-load {
    flex-direction: column;
  }
}

.newdes-load-jury-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  -webkit-gap: 20px;
  padding: 30px;
  width: 100%;
  height: 100%;
  border: 2px dashed var(--newdes-main-color);
  border-radius: 5px;
}

@media (max-width: 800px) {
  .newdes-load-jury-block {
    flex-direction: column;
  }
}

.newdes-load-new-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  -webkit-gap: 20px;
  padding: 30px;
  width: 100%;
  height: 100%;
  border: 2px dashed var(--newdes-text-color);
  border-radius: 5px;
}

@media (max-width: 800px) {
  .newdes-load-new-block {
    flex-direction: column;
  }
}

.newdes-load-video-plus-white {
  position: relative;
  display: block;
  width: 150px;
  height: 150px;
  border: 2px solid var(--newdes-text-color);
  border-radius: 75px;
}


.newdes-gor-line-new {
  position: absolute;
  top: 74px;
  left: 50px;
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--newdes-text-color);
  border-radius: 1px;
}

.newdes-vert-line-new {
  position: absolute;
  top: 50px;
  left: 74px;
  display: block;
  width: 2px;
  height: 50px;
  background-color: var(--newdes-text-color);
  border-radius: 1px;
}

.newdes-load-video-text-white {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: var(--newdes-text-color);
}

@media (max-width: 800px) {
  .newdes-load-video-text-white {
    text-align: center;
  }
}

.newdes-settings {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--newdes-main-color);
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 35px;
  filter: drop-shadow(2px 2px 30px blue);
}

.newdes-settings-icon {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: content;
}

.newdes-nomination-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px;
  -webkit-gap: 20px;
}

.newdes-nomination-item {
  position: relative;
  padding-bottom: 30px;
  width: calc((100% - 20px) / 2);
  display: flex;
  flex-direction: column;
  gap: 10px;
  -webkit-gap: 10px;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--newdes-backfround-card);
}

@media (max-width: 1200px) {
  .newdes-nomination-item {
    width: 100%;
  }
}

.newdes-nomination-text {
  display: flex;
  flex-direction: column;
  padding: 0 30px;
  gap: 20px;
  -webkit-gap: 20px;
}

.newdes-nomiation-img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
}

.newdes-nomination-heading {
  color: var(--newdes-text-color);
  font-size: 18px;
  line-height: normal;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.newdes-nomnation-paragraph {
  color: var(--newdes-text-color);
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
}

.nomination-btn {
  background-color: var(--newdes-backfround-card);
  color: var(--newdes-text-color);
}

.newdes-flex-btn-eye {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
  -webkit-gap: 10px;
  position: fixed;
  z-index: 999;
  top: 20px;
  right: 20px;
}

.zrenie-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: blue;
  border-radius: 20px;
}

.no-zrenie-btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: blue;
  border-radius: 20px;
}

.zrenie-img {
  display: block;
  width: 30px;
  height: auto;
}

