/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Nickel Gothic";
  font-weight: 400;
  src: url("../fonts/NickelGothic-Regular.eot");
  src: url("../fonts/NickelGothic-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/NickelGothic-Regular.ttf") format("truetype"), url("../fonts/NickelGothic-Regular.woff") format("woff"), url("../fonts/NickelGothic-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Serif";
  font-weight: 300;
  src: url("../fonts/NotoSerif-Light.eot");
  src: url("../fonts/NotoSerif-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/NotoSerif-Light.ttf") format("truetype"), url("../fonts/NotoSerif-Light.woff") format("woff"), url("../fonts/NotoSerif-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Serif";
  font-weight: 400;
  src: url("../fonts/NotoSerif-Regular.eot");
  src: url("../fonts/NotoSerif-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/NotoSerif-Regular.ttf") format("truetype"), url("../fonts/NotoSerif-Regular.woff") format("woff"), url("../fonts/NotoSerif-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Serif";
  font-weight: 500;
  src: url("../fonts/NotoSerif-Medium.eot");
  src: url("../fonts/NotoSerif-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/NotoSerif-Medium.ttf") format("truetype"), url("../fonts/NotoSerif-Medium.woff") format("woff"), url("../fonts/NotoSerif-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Serif";
  font-weight: 700;
  src: url("../fonts/NotoSerif-Bold.eot");
  src: url("../fonts/NotoSerif-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/NotoSerif-Bold.ttf") format("truetype"), url("../fonts/NotoSerif-Bold.woff") format("woff"), url("../fonts/NotoSerif-Bold.woff2") format("woff2");
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 999;
  transition: opacity 0.1s ease;
  padding: 50px;
}
@media only screen and (max-width: 1024px) {
  .modal {
    padding: 60px 0;
  }
}

.modal__overlay {
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.success-popup-content {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 40px;
  background: var(--white, #fff);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  z-index: 3;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 666px) {
  .success-popup-content {
    width: 95%;
  }
}

.success-popup-close {
  position: absolute;
  right: 0;
  top: -55px;
}

.success-popup-icon {
  width: 250px;
  margin-bottom: 50px;
}
.success-popup-icon img {
  width: 100%;
}
@media only screen and (max-width: 666px) {
  .success-popup-icon {
    width: 200px;
    margin-bottom: 40px;
  }
}

.success-popup-icon2 {
  width: 96px;
  margin-bottom: 50px;
}
.success-popup-icon2 img {
  width: 100%;
}
@media only screen and (max-width: 666px) {
  .success-popup-icon2 {
    width: 64px;
    margin-bottom: 40px;
  }
}

.success-popup-title {
  color: var(--brand-black, #000);
  font-family: Leleka;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  letter-spacing: -1.28px;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
}
@media only screen and (max-width: 666px) {
  .success-popup-title {
    font-size: 24px;
  }
}

.success-popup-text {
  color: var(--brand-black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-bottom: 50px;
  text-align: center;
}
.success-popup-text a {
  color: #0000b4;
}

.success-popup-victory {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black, #000);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}

.relevant-popup-content {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 64px;
  background: #f6f6f6;
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  z-index: 3;
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .relevant-popup-content {
    padding: 40px;
    width: 95%;
    border-radius: 40px;
  }
}
@media only screen and (max-width: 666px) {
  .relevant-popup-content {
    padding: 24px;
  }
}

.relevant-popup-top {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .relevant-popup-top {
    margin-bottom: 40px;
  }
}

.relevant-popup-title {
  width: 50.929054%; /* 603/1184 */
  color: #000;
  font-family: Leleka;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: -0.96px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
  .relevant-popup-title {
    width: 90%;
  }
}
@media only screen and (max-width: 666px) {
  .relevant-popup-title {
    font-size: 30px;
  }
}

.relevant-popup-down {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .relevant-popup-down {
    flex-direction: column;
  }
}

.relevant-popup-down-left {
  width: 50.929054%; /* 603/1184 */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .relevant-popup-down-left {
    width: 100%;
    margin-bottom: 40px;
  }
}

.relevant-popup-down-left-text {
  color: #000;
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}
@media only screen and (max-width: 1024px) {
  .relevant-popup-down-left-text {
    width: 100%;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 666px) {
  .relevant-popup-down-left-text {
    font-size: 18px;
  }
}

.relevant-popup-down-left-btn {
  color: var(--white, #fff);
  text-align: center;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
  letter-spacing: -0.308px;
  border-radius: 99999px;
  background: var(--brand-blue, #0000b4);
  padding: 16px 64px;
}
@media only screen and (max-width: 666px) {
  .relevant-popup-down-left-btn {
    width: 100%;
  }
}

.relevant-popup-down-right {
  width: 35.557432%; /* 421/1184 */
  height: 372px;
}
.relevant-popup-down-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  .relevant-popup-down-right {
    width: 100%;
  }
}
@media only screen and (max-width: 666px) {
  .relevant-popup-down-right {
    height: 197px;
  }
  .relevant-popup-down-right img {
    border-radius: 20px;
  }
}

.new-expert-popup-content {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 40px;
  background: var(--white, #fff);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  z-index: 3;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 666px) {
  .new-expert-popup-content {
    width: 95%;
  }
}

.new-expert-popup-close {
  position: absolute;
  top: -49px;
  right: 0px;
}

.menu-wrapper {
  width: 50%;
  height: 100dvh;
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 30;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  background: #ebebe8;
}
.menu-wrapper.show {
  right: 0;
}
@media only screen and (max-width: 666px) {
  .menu-wrapper {
    width: 100%;
  }
}

.menu-content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 130px 48px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 666px) {
  .menu-content {
    padding: 150px 16px 16px 16px;
  }
}

.menu-content-top-lang {
  position: absolute;
  top: 46px;
  left: 46px;
  color: #111;
  font-family: "Noto Serif";
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (max-width: 666px) {
  .menu-content-top-lang {
    top: 16px;
    left: 16px;
    font-size: 24px;
  }
}

.menu-content-close {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  cursor: pointer;
  position: absolute;
  top: 46px;
  right: 46px;
}
@media only screen and (max-width: 666px) {
  .menu-content-close {
    top: 16px;
    right: 16px;
  }
}

.menu-content-link {
  color: #111;
  font-family: "Noto Serif";
  font-size: 3.033333vw; /* 64/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  display: block;
  margin-bottom: 35px;
}
.menu-content-link:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 666px) {
  .menu-content-link {
    font-size: 32px;
  }
}

.menu-content-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-content-social-link {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid #3b141a;
}
.menu-content-social-link:hover {
  background: #3b141a;
}
.menu-content-social-link:hover svg path {
  fill: #fff;
}

.menu-content-top-lang {
  position: absolute;
  top: 46px;
  left: 46px;
  color: #111;
  font-family: "Noto Serif";
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (max-width: 666px) {
  .menu-content-top-lang {
    top: 16px;
    left: 16px;
    font-size: 24px;
  }
}

.home-page {
  width: 100%;
}

.home-main {
  width: 100%;
  padding: 48px;
}
@media only screen and (max-width: 1024px) {
  .home-main {
    padding: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .home-main {
    padding: 0;
  }
}

.home-hero {
  width: 100%;
  aspect-ratio: 1824/1032;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  margin-bottom: 300px;
}
@media only screen and (max-width: 1024px) {
  .home-hero {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 666px) {
  .home-hero {
    padding: 0 16px 16px 16px;
    margin-top: -25px;
    background: linear-gradient(0deg, #ebebe8 0%, #ebebe8 100%), #fff;
  }
}

.home-hero-header {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 31px;
}
@media only screen and (max-width: 666px) {
  .home-hero-header {
    background: #ebebe8;
    padding: 16px;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.home-hero-header-logo {
  width: 19.895833vw; /* 382/1920 */
}
.home-hero-header-logo img {
  width: 100%;
}
@media only screen and (max-width: 666px) {
  .home-hero-header-logo {
    width: 267px;
    transform: translateY(-4px);
  }
}

.home-hero-header-menu-btn {
  color: #3b141a;
  font-family: "Noto Serif";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: lowercase;
  cursor: pointer;
  padding: 10px 12px 12px 12px;
  border-radius: 12px;
  margin-right: -12px;
}
.home-hero-header-menu-btn:hover {
  background: #3b141a;
  color: #fff;
}
@media only screen and (max-width: 666px) {
  .home-hero-header-menu-btn {
    font-size: 18px;
    margin-right: 0;
    padding: 0;
  }
  .home-hero-header-menu-btn:hover {
    background: transparent;
    color: #3b141a;
  }
}

.home-hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.home-hero-background-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
@media only screen and (max-width: 666px) {
  .home-hero-background-image {
    position: relative;
    height: 352px;
    margin: 48px 0;
  }
}

.home-hero-content {
  position: relative;
  z-index: 2;
}

.home-hero-content-title {
  color: #3b141a;
  font-family: "Nickel Gothic";
  font-size: 10.416667vw; /* 200/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: 80%; /* 160px */
  text-transform: lowercase;
}
@media only screen and (max-width: 666px) {
  .home-hero-content-title {
    font-size: 3em;
  }
}

.home-hero-gta-btn {
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  color: #3b141a;
  font-family: "Noto Serif";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: lowercase;
  border-radius: 12px;
  border: 1px solid #3b141a;
  margin-top: 72px;
  padding: 12px 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-hero-gta-btn:hover {
  background: #3b141a;
  color: #fff;
}
@media only screen and (max-width: 666px) {
  .home-hero-gta-btn {
    margin-top: 48px;
    font-size: 24px;
    width: 100%;
    padding: 12px 65px;
  }
}

.home-about {
  width: 100%;
}
@media only screen and (max-width: 666px) {
  .home-about {
    padding: 0 16px;
  }
}

.home-about-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 7.0125vw; /* 150/1920 */
}

.home-about-top-image {
  width: 31.979167vw; /* 614/1920 */
  height: 353px;
  margin-left: -48px;
}
@media only screen and (max-width: 1024px) {
  .home-about-top-image {
    height: 150px;
  }
}
@media only screen and (max-width: 666px) {
  .home-about-top-image {
    display: none;
  }
}

#animatedSVG {
  display: block;
}

.home-about-top-title {
  color: #3b141a;
  font-family: "Nickel Gothic";
  font-size: 7.8125vw; /* 150/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: 80%; /* 120px */
  text-transform: lowercase;
}
@media only screen and (max-width: 666px) {
  .home-about-top-title {
    font-size: 3em;
  }
}

.home-about-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6.53125vw; /* 135/1920 */
}
@media only screen and (max-width: 1024px) {
  .home-about-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}

.home-about-col {
  color: #3b141a;
  font-family: "Noto Serif";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%; /* 35px */
}
.home-about-col:first-child {
  font-weight: 700;
}

.home-poll {
  width: 100%;
  margin: 300px 0;
}
@media only screen and (max-width: 666px) {
  .home-poll {
    padding: 0 16px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-poll {
    margin: 100px 0;
  }
}

.vote-form-btn,
.vote-btn {
  cursor: pointer;
  width: fit-content;
  background-color: transparent;
  color: #3b141a;
  font-family: "Noto Serif";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: lowercase;
  border-radius: 12px;
  border: 1px solid #3b141a;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease-in;
  margin-top: auto;
}
.vote-form-btn:hover,
.vote-btn:hover {
  background: #3b141a;
  color: #fff;
}
.vote-form-btn.disabled,
.vote-btn.disabled,
button:disabled,
button[disabled] {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}
@media only screen and (max-width: 666px) {
  .vote-form-btn,
  .vote-btn {
    font-size: 24px;
    width: 100%;
  }
}
.vote-form-btn {
  position: relative;
  margin: 3.5rem auto 0 auto;
}

.home-poll__title {
  width: 70%;
  color: #3b141a;
  font-family: "Nickel Gothic";
  font-size: 7.8125vw; /* 150/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: 80%; /* 120px */
  text-transform: lowercase;
  margin-bottom: 70px;
  word-break: break-all;
}
@media only screen and (max-width: 1024px) {
  .home-poll__title {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 666px) {
  .home-poll__title {
    width: 100%;
    font-size: 3em;
    margin-bottom: 40px;
  }
}

.home-poll__message {
  display: none;
  font-size: 2rem;
  color: #3b141a;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 666px) {
  .home-poll__message {
    font-size: 1.25em;
  }
}

.home-poll__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 3.5rem;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home-poll__grid {
    grid-gap: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .home-poll__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .home-poll__grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2.5rem;
  }
}
.home-poll__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-poll__card .not-active-text {
  text-align: center;
  font-size: 22px;
  line-height: normal;
  margin: 1rem 0;
}

.home-poll__card .contestant-photo {
  border: 2px solid #b39b58;
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
.home-poll__card .contestant-photo.--bw-filter {
  filter: grayscale(100%);
}
.home-poll__card .contestant-photo picture {
  display: flex !important;
  height: 100%;
}
.home-poll__card .contestant-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 2500px) {
  .home-poll__card .contestant-photo {
    width: 572px;
    height: 725px;
  }
}
@media (min-width: 1920px) and (max-width: 2499px) {
  .home-poll__card .contestant-photo {
    width: 412px;
    height: 538px;
  }
}
@media (min-width: 1400px) and (max-width: 1919px) {
  .home-poll__card .contestant-photo {
    /*width: 410px;
    height: 575px;*/
    width: 294px;
    height: 395px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .home-poll__card .contestant-photo {
    width: 270px;
    height: 395px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .home-poll__card .contestant-photo {
    width: 352px;
    height: 488px;
  }
}
@media (min-width: 375px) and (max-width: 767px) {
  .home-poll__card .contestant-photo {
    width: 343px;
    height: 455px;
  }
}
@media (max-width: 374px) {
  .home-poll__card .contestant-photo {
    width: 285px;
    height: 395px;
  }
}

.home-poll__card .contestant-slider .slick-next::before,
.home-poll__card .contestant-slider .slick-prev::before {
  color: #3b141a;
}
.home-poll__card .contestant-slider .slick-next,
.home-poll__card .contestant-slider .slick-prev {
  z-index: 1;
}
.home-poll__card .contestant-slider .slick-next {
  right: 5px;
}
.home-poll__card .contestant-slider .slick-prev {
  left: 5px;
}
.home-poll__card .contestant-slider .slick-dots {
  bottom: 5px;
}
.home-poll__card .contestant-slider .slick-dots li {
  margin: 0;
}
.home-poll__card .contestant-slider .slick-dots li button::before {
  font-size: 28px;
  color: #ffffff;
  mix-blend-mode: difference;
}
.home-poll__card .contestant-slider, .slick-list, .slick-track,
.slick-slide > div {
  height: 100%;
}

.home-poll__card .contestant-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #3b141a;
  margin-bottom: .5rem;
}

.home-poll__card .contestant-description {
  color: #3b141a;
  font-size: 18px;
}

.home-poll__card .card-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  margin: 1rem 0;
}
@media only screen and (max-width: 666px) {
    .home-poll__card .card-footer {
        padding: 0;
    }
}

.home-poll__card .card-footer a {
  display: flex;
}
.home-poll__card .card-footer a svg {
  width: 2.25rem;
  height: 2.25rem;
}
.home-poll__card .card-footer svg {
  width: 2rem;
  height: 2rem;
  transition: all .2s ease-in;
}
.home-poll__card .card-footer a:hover svg {
  fill: #b39b58;
}
.home-poll__card .card-footer .contestant-votes {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
.home-poll__card .card-footer .vote-text {
    font-size: 1.25rem;
}
.home-poll__card .card-footer .vote-count {
  font-size: 1.25rem;
}

.home-mission {
  width: 100%;
  display: flex;
  margin: 300px 0;
  border-radius: 24px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .home-mission {
    margin: 100px 0;
  }
}
@media only screen and (max-width: 666px) {
  .home-mission {
    flex-direction: column-reverse;
    border-radius: 0;
  }
}

.home-mission-left {
  width: 50%;
  background: #ebebe8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 48px 60px 48px;
}
@media only screen and (max-width: 1024px) {
  .home-mission-left {
    padding: 24px;
  }
}
@media only screen and (max-width: 666px) {
  .home-mission-left {
    width: 100%;
    padding: 48px 16px;
  }
}

.home-mission-title {
  color: #3b141a;
  font-family: "Nickel Gothic";
  font-size: 7.8125vw; /* 150/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 150px */
  text-transform: lowercase;
}
@media only screen and (max-width: 666px) {
  .home-mission-title {
    font-size: 56px;
    margin-bottom: 24px;
  }
}

.home-mission-description {
  width: 63%;
  color: #3b141a;
  font-family: "Noto Serif";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%; /* 35px */
}
@media only screen and (max-width: 666px) {
  .home-mission-description {
    width: 100%;
  }
}

.home-mission-right {
  width: 50%;
}
.home-mission-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 666px) {
  .home-mission-right {
    width: 100%;
  }
}

.home-advantages {
  width: 100%;
  margin: 300px 0;
}
@media only screen and (max-width: 1024px) {
  .home-advantages {
    margin: 100px 0;
  }
}
@media only screen and (max-width: 666px) {
  .home-advantages {
    padding: 0 16px;
  }
}

.home-advantages-title {
  width: 70%;
  color: #3b141a;
  font-family: "Nickel Gothic";
  font-size: 7.8125vw; /* 150/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: 80%; /* 120px */
  text-transform: lowercase;
  margin-bottom: 70px;
}
@media only screen and (max-width: 1024px) {
  .home-advantages-title {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 666px) {
  .home-advantages-title {
    width: 100%;
    font-size: 3em;
    margin-bottom: 40px;
  }
}

.home-advantages-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 666px) {
  .home-advantages-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.home-advantages-item {
  height: 26.041667vw; /* 500/1920 */
  border-radius: 24px;
  background: #ebebe8;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .home-advantages-item {
    padding: 44px 20px 48px 20px;
    height: 32vw;
  }
}
@media only screen and (max-width: 666px) {
  .home-advantages-item {
    height: auto;
  }
}

.home-advantages-item-name {
  color: #3b141a;
  font-family: "Noto Serif";
  font-size: 3.333333vw; /* 64/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: 122%; /* 96px */
  text-transform: capitalize;
}
@media only screen and (max-width: 1024px) {
  .home-advantages-item-name {
    font-size: 22px;
  }
}
@media only screen and (max-width: 666px) {
  .home-advantages-item-name {
    font-size: 32px;
    margin-bottom: 60px;
  }
}

.home-advantages-item-text {
  color: #3b141a;
  font-family: "Noto Serif";
  font-size: 1.041667vw; /* 20/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: 175%; /* 35px */
}
@media only screen and (max-width: 1024px) {
  .home-advantages-item-text {
    font-size: 13px;
  }
}
@media only screen and (max-width: 666px) {
  .home-advantages-item-text {
    font-size: 20px;
  }
}

.home-program {
  width: 100%;
  display: flex;
  margin: 300px 0;
  border-radius: 24px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .home-program {
    margin: 100px 0;
  }
}
@media only screen and (max-width: 666px) {
  .home-program {
    flex-direction: column;
    border-radius: 0;
  }
}

.home-program-left {
  width: 46.5%;
  position: relative;
}
.home-program-left img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 666px) {
  .home-program-left {
    width: 100%;
  }
}

.home-program-right {
  width: 53.5%;
  background: #ebebe8;
  padding: 48px 48px 70px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .home-program-right {
    padding: 48px 24px;
  }
}
@media only screen and (max-width: 666px) {
  .home-program-right {
    width: 100%;
  }
}

.home-program-title {
  color: #3b141a;
  font-family: "Nickel Gothic";
  font-size: 7.8125vw; /* 150/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 150px */
  text-transform: lowercase;
  margin-bottom: 48px;
}
@media only screen and (max-width: 666px) {
  .home-program-title {
    font-size: 3em;
  }
}

.home-program-list-item {
  display: flex;
  align-items: center;
  gap: 37px;
  color: #3b141a;
  font-family: "Noto Serif";
  font-size: 1.979167vw; /* 38/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 57px */
  margin-bottom: 1.9vw;
}
.home-program-list-item:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 666px) {
  .home-program-list-item {
    margin-bottom: 24px;
  }
}

.home-program-list-item-number {
  color: #3b141a;
  font-family: "Noto Serif";
  font-size: 3.75vw; /* 72/1920 */
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 108px */
  text-transform: uppercase;
  position: relative;
}
@media only screen and (max-width: 666px) {
  .home-program-list-item-number {
    font-size: 48px;
  }
}

.home-program-list-item-number-bg {
  position: absolute;
  width: 4.114583vw; /* 79/1920 */
  height: 2.447917vw; /* 47/1920 */
  top: -22px;
  left: -17px;
}
.home-program-list-item-number-bg img {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 666px) {
  .home-program-list-item-number-bg {
    width: 52.667px;
    height: 31.05px;
    top: -18px;
    left: -12px;
  }
}

.home-program-list-item-text {
  color: #3b141a;
  font-family: "Noto Serif";
  font-size: 1.979167vw; /* 38/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 57px */
}
@media only screen and (max-width: 666px) {
  .home-program-list-item-text {
    font-size: 24px;
  }
}

.home-winners {
  width: 100%;
  margin: 300px 0;
}
@media only screen and (max-width: 1024px) {
  .home-winners {
    margin: 100px 0;
  }
}

.home-winners-title {
  color: #3b141a;
  font-family: "Nickel Gothic";
  font-size: 7.8125vw; /* 150/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 150px */
  text-transform: lowercase;
  margin-bottom: 70px;
}
@media only screen and (max-width: 666px) {
  .home-winners-title {
    word-break: break-word;
    font-size: 3em;
    margin-bottom: 120px;
    padding: 0 16px;
  }
}

.home-winners-wrapper {
  width: 100%;
  position: relative;
}

.home-winners-slider-arrows {
  width: 162px;
  height: 44px;
  position: absolute;
  top: -139px;
  right: 0px;
  z-index: 10;
  border-radius: 99999px;
}
.home-winners-slider-arrows .slick-prev {
  position: absolute;
  top: 29px;
  left: 0px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid #2c0e14;
}
.home-winners-slider-arrows .slick-prev:hover {
  background: #2c0e14;
}
.home-winners-slider-arrows .slick-prev:hover svg path {
  stroke: #fff;
}
.home-winners-slider-arrows .slick-prev::before {
  display: none;
}
.home-winners-slider-arrows .slick-prev svg {
  width: 100%;
}
.home-winners-slider-arrows .slick-next {
  position: absolute;
  top: 29px;
  right: 0px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid #2c0e14;
}
.home-winners-slider-arrows .slick-next:hover {
  background: #2c0e14;
}
.home-winners-slider-arrows .slick-next:hover svg path {
  stroke: #fff;
}
.home-winners-slider-arrows .slick-next::before {
  display: none;
}
.home-winners-slider-arrows .slick-next svg {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .home-winners-slider-arrows {
    width: 130px;
    right: 24px;
    top: -73px;
  }
  .home-winners-slider-arrows .slick-prev,
  .home-winners-slider-arrows .slick-next {
    width: 56px;
    height: 56px;
  }
}
@media only screen and (max-width: 666px) {
  .home-winners-slider-arrows {
    width: 130px;
    right: 16px;
    top: -82px;
  }
  .home-winners-slider-arrows .slick-prev,
  .home-winners-slider-arrows .slick-next {
    width: 56px;
    height: 56px;
  }
}

.home-winners-slider-item-inner {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 666px) {
  .home-winners-slider-item-inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}

.home-winners-slider-item-left {
  height: 34vw;
}
.home-winners-slider-item-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
@media only screen and (max-width: 666px) {
  .home-winners-slider-item-left {
    height: 343px;
  }
  .home-winners-slider-item-left img {
    border-radius: 0;
  }
}

.home-winners-slider-item-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
  border-radius: 24px;
  background: #ebebe8;
}
@media only screen and (max-width: 666px) {
  .home-winners-slider-item-right {
    padding: 24px;
    border-radius: 0;
  }
}

.home-winners-slider-item-right-top {
  color: #3b141a;
  font-family: "Noto Serif";
  font-size: 1.5625vw; /* 30/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 45px */
  text-transform: uppercase;
}
@media only screen and (max-width: 666px) {
  .home-winners-slider-item-right-top {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

.home-winners-slider-item-right-name {
  width: 60%;
  color: #3b141a;
  font-family: "Noto Serif";
  font-size: 3.333333vw; /* 64/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 86.4px */
  margin-bottom: 24px;
}
@media only screen and (max-width: 666px) {
  .home-winners-slider-item-right-name {
    font-size: 32px;
    line-height: 115%;
  }
}

.home-winners-slider-item-right-address {
  color: #3b141a;
  font-family: "Noto Serif";
  font-size: 1.5625vw; /* 30/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 45px */
}
@media only screen and (max-width: 666px) {
  .home-winners-slider-item-right-address {
    font-size: 20px;
  }
}

.home-galery {
  width: 100%;
  margin: 350px 0 300px 0;
}
.home-galery:target {
  scroll-margin-top: 130px;
}
@media only screen and (max-width: 1024px) {
  .home-galery {
    margin: 210px 0 100px 0;
  }
}

.home-galery-wrapper {
  width: 100%;
  position: relative;
}

.home-galery-slider-arrows {
  width: 162px;
  height: 44px;
  position: absolute;
  top: -110px;
  right: 0px;
  z-index: 10;
  border-radius: 99999px;
}
.home-galery-slider-arrows .slick-prev {
  position: absolute;
  top: 29px;
  left: 0px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid #2c0e14;
}
.home-galery-slider-arrows .slick-prev:hover {
  background: #2c0e14;
}
.home-galery-slider-arrows .slick-prev:hover svg path {
  stroke: #fff;
}
.home-galery-slider-arrows .slick-prev::before {
  display: none;
}
.home-galery-slider-arrows .slick-prev svg {
  width: 100%;
}
.home-galery-slider-arrows .slick-next {
  position: absolute;
  top: 29px;
  right: 0px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid #2c0e14;
}
.home-galery-slider-arrows .slick-next:hover {
  background: #2c0e14;
}
.home-galery-slider-arrows .slick-next:hover svg path {
  stroke: #fff;
}
.home-galery-slider-arrows .slick-next::before {
  display: none;
}
.home-galery-slider-arrows .slick-next svg {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .home-galery-slider-arrows {
    right: 24px;
    top: -96px;
  }
}
@media only screen and (max-width: 666px) {
  .home-galery-slider-arrows {
    width: 130px;
    right: 16px;
    top: -72px;
  }
  .home-galery-slider-arrows .slick-next,
  .home-galery-slider-arrows .slick-prev {
    width: 56px;
    height: 56px;
  }
}

.home-galery-slider-item {
  height: 47vw;
}
.home-galery-slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 666px) {
  .home-galery-slider-item {
    height: 291px;
  }
}

.home-contacts {
  width: 100%;
  margin: 300px 0 200px 0;
}
@media only screen and (max-width: 1024px) {
  .home-contacts {
    margin: 100px 0;
  }
}
@media only screen and (max-width: 666px) {
  .home-contacts {
    margin: 60px 0 100px 0;
    padding: 0 16px;
  }
}

.home-contacts-title {
  color: #3b141a;
  font-family: "Nickel Gothic";
  font-size: 7.8125vw;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: lowercase;
  margin-bottom: 70px;
}
@media only screen and (max-width: 666px) {
  .home-contacts-title {
    font-size: 3em;
    margin-bottom: 48px;
  }
}

.home-contacts-content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
@media only screen and (max-width: 666px) {
  .home-contacts-content {
    flex-direction: column;
  }
}

.home-contacts-content-left {
  width: 33%;
  height: 36.458333vw; /* 700/1920 */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media only screen and (max-width: 666px) {
  .home-contacts-content-left {
    width: 100%;
  }
}

.home-contacts-container {
  width: 66%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 666px) {
  .home-contacts-container {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
}

.home-contacts-item {
  height: 36.458333vw; /* 700/1920 */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 35px;
}
.home-contacts-item.first {
  padding-left: 0;
}
@media only screen and (max-width: 1024px) {
  .home-contacts-item {
    padding: 24px;
  }
}
@media only screen and (max-width: 666px) {
  .home-contacts-item {
    height: auto;
  }
  .home-contacts-item.photo {
    height: 500px;
  }
}

.home-contacts-item-text {
  color: #3b141a;
  font-family: "Noto Serif";
  font-size: 1.041667vw; /* 20/1920 */
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 20px */
  margin-bottom: 24px;
}
@media only screen and (max-width: 1024px) {
  .home-contacts-item-text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .home-contacts-item-text {
    font-size: 20px;
  }
}

.home-contacts-item-tel {
  color: #3b141a !important;
  font-family: "Noto Serif";
  font-size: 1.041667vw; /* 20/1920 */
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 20px */
  margin-bottom: 24px;
}
.home-contacts-item-tel:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1024px) {
  .home-contacts-item-tel {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .home-contacts-item-tel {
    font-size: 20px;
  }
}

.home-contacts-item-email {
  color: #3b141a;
  font-family: "Noto Serif";
  font-size: 1.041667vw; /* 20/1920 */
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 20px */
}
.home-contacts-item-email:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1024px) {
  .home-contacts-item-email {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .home-contacts-item-email {
    font-size: 20px;
    word-break: break-all;
  }
}

.home-contacts-item-photo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.home-contacts-item-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}

.home-contacts-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 57.2%, #111 100%);
}

.home-contacts-item-name {
  color: #fff;
  font-family: "Noto Serif";
  font-size: 3.333333vw; /* 64/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 76.8px */
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 666px) {
  .home-contacts-item-name {
    font-size: 48px;
  }
}

.home-contacts-item-job {
  color: #fff;
  font-family: "Noto Serif";
  font-size: 1.5625vw; /* 30/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 45px */
  position: relative;
  z-index: 3;
  margin-bottom: 20px;
}
@media only screen and (max-width: 666px) {
  .home-contacts-item-job {
    font-size: 24px;
  }
}

.home-contacts-item-phone {
  color: #fff;
  font-family: "Noto Serif";
  font-size: 14px; /* 30/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 45px */
  text-transform: uppercase;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 666px) {
  .home-contacts-item-phone {
    font-size: 13px;
  }
}

.home-footer {
  padding: 48px;
  border-radius: 24px;
  background: #ebebe8;
}
@media only screen and (max-width: 1024px) {
  .home-footer {
    padding: 24px;
  }
}
@media only screen and (max-width: 666px) {
  .home-footer {
    border-radius: 0;
    padding: 32px 16px 16px 16px;
  }
}

.home-footer-top {
  color: #000;
  font-family: "Noto Serif";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 45px */
  text-transform: uppercase;
  margin-bottom: 48px;
}
@media only screen and (max-width: 666px) {
  .home-footer-top {
    font-size: 21px;
    margin-bottom: 24px;
  }
}

.home-footer-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .home-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.home-footer-menu {
  display: flex;
  align-items: center;
  gap: 2.083333vw; /* 40/1920 */
}
@media only screen and (max-width: 1024px) {
  .home-footer-menu {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 666px) {
  .home-footer-menu {
    gap: 40px;
  }
}

.home-footer-menu-item {
  color: #111;
  font-family: "Noto Serif";
  font-size: 1.041667vw; /* 20/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.home-footer-menu-item:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1024px) {
  .home-footer-menu-item {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .home-footer-menu-item {
    font-size: 20px;
  }
}

.home-footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 92px;
}
@media only screen and (max-width: 666px) {
  .home-footer-social {
    padding-right: 0;
  }
}

.home-footer-social-item {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid #2c0e14;
}
.home-footer-social-item:hover {
  background: #2c0e14;
}
.home-footer-social-item:hover svg path {
  fill: #fff;
}
@media only screen and (max-width: 666px) {
  .home-footer-social-item {
    width: 56px;
    height: 56px;
  }
}

.arrow-up {
  position: fixed;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid #2c0e14;
  right: 96px;
  bottom: 96px;
  z-index: 10;
  background: #ebebe8;
  cursor: pointer;
  display: none;
}
.arrow-up:hover {
  background: #2c0e14;
}
.arrow-up:hover svg path {
  stroke: #fff;
}
@media only screen and (max-width: 1024px) {
  .arrow-up {
    bottom: 44px;
    right: 48px;
  }
}
@media only screen and (max-width: 666px) {
  .arrow-up {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

.participant-page {
  width: 100%;
}
.participant-page .home-hero {
  padding: 48px 48px 8.854167vw 48px;
}
@media only screen and (max-width: 1024px) {
  .participant-page .home-hero {
    padding: 24px;
  }
}
.participant-page .home-hero-content-title {
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .participant-page .home-hero-content-title {
    color: #3b141a;
  }
}
.participant-page .home-program-title {
  font-size: 6.8vw;
}
@media only screen and (max-width: 666px) {
  .participant-page .home-program-title {
    font-size: 46px;
  }
}
.participant-page .home-program-list-item {
  margin-bottom: 7px;
}
@media only screen and (max-width: 666px) {
  .participant-page .home-program-list-item {
    margin-bottom: 24px;
  }
}

.partisipant-hero-content-title {
  color: #3b141a;
  font-family: "Nickel Gothic";
  font-size: 10.416667vw; /* 200/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: 80%; /* 160px */
  text-transform: lowercase;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.895833vw; /* 94/1920 */
}
.partisipant-hero-content-title img {
  width: 23.802083vw; /* 457/1920 */
}
@media only screen and (max-width: 666px) {
  .partisipant-hero-content-title {
    font-size: 64px;
  }
  .partisipant-hero-content-title img {
    width: 90%;
  }
}

.participant-profile {
  width: 100%;
}

.participant-profile-title {
  color: #3b141a;
  font-family: "Nickel Gothic";
  font-size: 7.8125vw; /* 150/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: 80%; /* 120px */
  text-transform: lowercase;
  margin-bottom: 72px;
}
@media only screen and (max-width: 666px) {
  .participant-profile-title {
    font-size: 46px;
    margin-bottom: 60px;
    padding: 0 16px;
  }
}

.participant-profile-form {
  width: 100%;
}

.participant-profile-item {
  border-radius: 24px;
  background: #ebebe8;
  padding: 48px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 666px) {
  .participant-profile-item {
    padding: 32px 16px;
    margin-bottom: 0;
    border-radius: 0;
  }
}

.participant-profile-item-title {
  color: #3b141a;
  font-family: "Noto Serif";
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 96px */
  margin-bottom: 2.5vw; /* 48/1920 */
}
@media only screen and (max-width: 1024px) {
  .participant-profile-item-title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 666px) {
  .participant-profile-item-title {
    font-size: 32px;
    margin-bottom: 35px;
  }
}

.participant-profile-item-input-caption {
  color: #3b141a;
  font-family: "Noto Serif";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 35px */
  margin-bottom: 7px;
}

.participant-profile-item-input {
  width: 100%;
  padding: 33px 0 14px 0;
  border-bottom: 1px solid #3b141a;
  position: relative;
}
.participant-profile-item-input input,
.participant-profile-item-input textarea {
  width: 100%;
  border: none;
  background: transparent;
  color: #3b141a;
  font-family: "Noto Serif";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%; /* 35px */
}
.participant-profile-item-input select {
  color: #757575;
  width: 100%;
  border: none;
  background: transparent;
  font-family: "Noto Serif";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%; /* 35px */
}
.participant-profile-item-input select.--selected {
  color: #3b141a;
}
.participant-profile-item-input.success {
  border-bottom: 1px solid #01930b;
}
.participant-profile-item-input.success .participant-profile-item-input-error {
  color: #01930b;
}
.participant-profile-item-input.error {
  border-bottom: 1px solid #dc3545;
}
.participant-profile-item-input.error .participant-profile-item-input-error,
.participant-profile-item-input.success .participant-profile-item-input-error {
  display: block;
}
.participant-profile-item.success {
  border-bottom: 1px solid #01930b;
}
.participant-profile-item.error {
  border-bottom: 1px solid #dc3545;
}
.participant-profile-item.error .participant-profile-item-input-error,
.participant-profile-item.success .participant-profile-item-input-error {
  display: block;
}
@media only screen and (max-width: 666px) {
  .participant-profile-item-input {
      padding-top: 24px;
      padding-bottom: 8px;
  }
  .participant-profile-item-input input, .participant-profile-item-input select {
    font-size: 16px;
  }
}

input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}
/*input[type="date"]:before {
  content: attr(placeholder) !important;
  color: #757575;
  margin-right: 0.5em;
}

input[type="date"]:focus:before,
input[type="date"]:valid:before {
  content: ""; !* Hide placeholder when focused or valid *!
}*/

.participant-profile-item-input-error {
  position: absolute;
  bottom: -23px;
  left: 0;
  display: none;
  color: #dc3545;
  font-family: "Noto Serif";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%; /* 35px */
}

.participant-profile-item-triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.participant-profile-item-double {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 666px) {
  .participant-profile-item-triple {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .participant-profile-item-double {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}

.participant-profile-item-text {
  color: #3b141a;
  font-family: "Noto Serif";
  font-size: 1.041667vw; /* 20/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: 175%; /* 35px */
  margin-bottom: 45px;
}
@media only screen and (max-width: 1024px) {
  .participant-profile-item-text {
    font-size: 16px;
  }
}

.upload-photo-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 666px) {
  .upload-photo-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.upload-box {
  height: 29.166667vw; /* 560/1920 */
  border-radius: 12px;
  border: 1px solid #3b141a;
  overflow: hidden;
}
.upload-box .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.upload-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 666px) {
  .upload-box {
    height: 300px;
  }
}

.participant-profile-button {
  border-radius: 12px;
  border: 1px solid #3b141a;
  padding: 12px 72px;
  color: #3b141a;
  font-family: "Noto Serif";
  font-size: 1.25vw; /* 24/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: lowercase;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin: 0 auto;
  margin-top: 48px;
  cursor: pointer;
}
.participant-profile-button:hover {
  background: #3b141a;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .participant-profile-button {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .participant-profile-button {
    height: 72px;
    padding: 0;
    width: calc(100% - 32px);
    font-size: 24px;
  }
}

.success-send-main {
  width: 100%;
  height: 100dvh;
  padding: 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ebebe8;
}
@media only screen and (max-width: 666px) {
  .success-send-main {
    padding: 64px 16px 16px 16px;
  }
}

.success-send-title {
  width: 80%;
  color: #3b141a;
  font-family: "Nickel Gothic";
  font-size: 10.416667vw; /* 200/1920 */
  font-style: normal;
  font-weight: 400;
  line-height: 80%; /* 160px */
  text-transform: lowercase;
}
@media only screen and (max-width: 666px) {
  .success-send-title {
    width: 100%;
    font-size: 64px;
    word-break: break-all;
  }
}

.success-send-close {
  position: absolute;
  top: 48px;
  right: 48px;
  cursor: pointer;
}
@media only screen and (max-width: 666px) {
  .success-send-close {
    top: 16px;
    right: 16px;
  }
}

.success-send-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 666px) {
  .success-send-footer {
    flex-direction: column;
  }
}

.success-send-footer-goto-main {
  color: #3b141a;
  font-family: "Noto Serif";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: lowercase;
  border-radius: 12px;
  border: 1px solid #3b141a;
  padding: 12px 72px;
  display: block;
}
.success-send-footer-goto-main:hover {
  background: #3b141a;
  color: #fff;
}
@media only screen and (max-width: 666px) {
  .success-send-footer-goto-main {
    width: 100%;
    margin-bottom: 20px;
  }
}

.success-send-footer-goto-again {
  color: #3b141a;
  font-family: "Noto Serif";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: lowercase;
  border-radius: 12px;
  border: 1px solid #3b141a;
  padding: 12px 72px;
}
.success-send-footer-goto-again:hover {
  background: #3b141a;
  color: #fff;
}
@media only screen and (max-width: 666px) {
  .success-send-footer-goto-again {
    width: 100%;
  }
}

html,
body {
  font-family: "M PLUS 1";
  font-weight: 400;
  background: #fff;
}
html.is-hidden,
body.is-hidden {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  outline: none;
}

a {
  text-decoration: none;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
/*# sourceMappingURL=main.css.map */
.official-statement-text {
  padding-top: 1.5rem;
}
.official-statement-text p {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.official-statement-text strong {
  font-weight: 600;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}
.mfp-close {
  width: 50px;
  height: 50px;
  font-size: 45px;
  line-height: 50px;
  top: 10px;
  right: 10px;
}
.popup-content {
  padding: 60px;
  text-align: left;
  width: 100%;
  max-width: 500px;
  margin: 40px auto;
  position: relative;
  border-radius: 24px;
}
.popup-content-lg {
  /*text-align: center;*/
  max-width: 960px;
}
@media only screen and (max-width: 666px) {
  .popup-content  {
    padding: 50px 40px;
  }
  .popup-content-lg {
    max-height: 600px;
    overflow: auto;
  }
}
.popup-content--light {
  background: #ebebe8;
}
#result {
  display: none;
  text-align: center;
  font-size: 2rem;
}

.vote-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.vote-form-title {
  font-size: 2rem;
  color: #3b141a;
  margin-bottom: .5rem;
}
#contestant_name {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 666px) {
  .vote-form-title {
    font-size: 1.75rem;
  }
  #contestant_name {
    margin-bottom: 1.5rem;
  }
}


/**
 * Fade-zoom animation for first dialog
 */

/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}
/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.error-message {
    position: absolute;
    bottom: -20px;
    display: block;
    width: 100%;
    text-align: left;
    font-size: 16px;
    color: red;
}
#form-loader {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
}
#form-loader svg {
    width: 48px;
    height: 48px;
    fill: #3b141a;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }
    to {
        transform: rotate(2turn);
    }
}
