html {
    font-size: calc(100vw / 1920 * 10);
}
body {
    font-family: 'Ubuntu';
    font-weight: 400;
    transition: all .2s linear !important;
    min-height: 100vh;
    font-size: 1.6rem;
    color: #000;
    background: #FFF;
}
a, h1, h2, h3, h4, h5, p, span, button, ul, li {
    padding: 0;
    margin: 0;
    background: transparent;
    text-decoration: none;
    border: none;
    transition: all .2s linear;
    color: #000;
}
input, textarea, select {
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    outline: none;
	transition: all .2s linear;
}
.container {
    max-width: 167.7rem;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
div {
    transition: all .2s linear;
}
path, rect, circle {
    transition: all .2s linear;
}
main {
    display: flex;
    flex-direction: column;
    padding-top: 7rem;
    overflow: hidden;
}
svg {
    vertical-align: middle;
    overflow: visible;
}

/* header */

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    padding: 2.25rem 0;
}
.header-container {
    display: flex;
    justify-content: center;
}
.header-menu ul {
    display: flex;
    align-items: center;
    gap: 6.7rem;
}
.header-menu ul li {
    display: flex;
    list-style: none;
}
.header-menu ul li a {
    color: #000;
    font-family: Roboto;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.56rem;
}
.header-menu ul li a:hover {
    color: #FF9BC4;
}
.header-menu ul li a.active {
    color: #D50057;
}
.burger-open {
    display: none;
}
.mobile_menu {
    display: none;
}
.logo {
    display: none;
}

@media screen and (max-width: 1124px) {
    html {
        font-size: calc(100vw / 1024 * 10);
    }
    .container {
        max-width: 85.8rem;
    }
    header {
        padding: 2.2rem 0;
    }
    .header-menu ul {
        gap: 3rem;
    }
    .header-menu ul li a {
        font-size: 1.4rem;
        line-height: 1.13rem;
    }
    main {
        padding-top: 5.5rem;
    }
}
@media screen and (max-width: 992px) {
    html {
        font-size: calc(100vw / 768 * 10);
    }
    .container {
        max-width: 63.4rem;
    }
}
@media screen and (max-width: 596px) {
    html {
        font-size: calc(100vw / 320 * 10);
    }
    .container {
        max-width: 28rem;
    }
    header {
        padding: 0.6rem 0;
    }
    .logo {
        display: flex;
        opacity: 0;
        transition: .3s all;
    }
    .logo img {
        width: 7.2rem;
    }
    header.fixed .logo {
        opacity: 1;
    }
    .header-container {
        align-items: center;
        justify-content: space-between;
    }
    .header-menu {
        display: none;
    }
    .burger-open {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 2.2rem;
        height: 1.5rem;
        gap: 0.4rem;
        position: relative;
        z-index: 999;
    }
    .bar {
        height: 2px;
        width: 2.2rem;
        background: #D50057;
        border-radius: 0.2rem;
    }
    .change .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-0.5rem, 0.5rem);
    }
    .change .bar:nth-child(2) {
        opacity: 0;
    }
    .change .bar:nth-child(3) {
        transform: rotate(45deg) translate(-0.4rem, -0.4rem);
    }
    .mobile_menu.active {
        display: flex;
        background: #FFF;
        box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        overflow-y: auto;
        padding: 5.3rem 3rem;
        max-width: 24.4rem;
    }
    .mobile_menu.active nav ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .mobile_menu.active nav ul li {
        display: flex;
        list-style: none;
    }
    .mobile_menu.active nav ul li a {
        color: #000;
        font-family: Roboto;
        font-size: 1.4rem;
        font-style: normal;
        font-weight: 400;
        line-height: var(--line-height-25_6, 2.2079rem);
    }
}

/* video */

.video-container {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
}
.video-name {
    display: flex;
    align-items: flex-end;
    gap: 10rem;
}
.video-title {
    color: #000;
    font-family: "Viaoda Libre";
    font-size: 17rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}
.video-subtitle {
    color: #D50057;
    font-family: "Viaoda Libre";
    font-size: 8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    max-width: 121.1rem;
}
.video-block {
    background: #D9D9D9;
    height: 83.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.video-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-block iframe {
    width: 100%;
    height: 100%;
}
.video-block svg {
    width: 12.2rem;
    height: auto;
    position: absolute;
    z-index: 3;
}

@media screen and (max-width: 1124px) {
    .video-name {
        gap: 7rem;
    }
    .video-title {
        font-size: 9rem;
    }
    .video-subtitle {
        font-size: 4rem;
    }
    .video-block {
        height: 44.7rem;
    }
    .video-block svg {
        width: 6.6rem;
    }
}
@media screen and (max-width: 992px) {
    .video-name {
        gap: 6rem;
    }
    .video-title {
        font-size: 6rem;
    }
    .video-subtitle {
        font-size: 3rem;
    }
    .video-block {
        height: 33.5rem;
    }
    .video-block svg {
        width: 4.9rem;
    }
}
@media screen and (max-width: 596px) {
    .video-container {
        gap: 2rem;
    }
    .video-name {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .video-title {
        font-size: 4rem;
    }
    .video-subtitle {
        font-size: 2.2rem;
    }
    .video-block {
        height: 18rem;
    }
    .video-block svg {
        width: 4.2rem;
    }
}

/* steps */

.steps {
    margin-bottom: 12rem;
    position: relative;
}
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 4.4rem;
    position: relative;
}
.steps-img {
    width: 102.3rem;
    position: absolute;
    right: 1.5rem;
    top: -23.5rem;
    z-index: -1;
}
.steps-name {
    display: flex;
    flex-direction: column;
    gap: 9.4rem;
}
.steps-title {
    color: #000;
    font-family: "Viaoda Libre";
    font-size: 17rem;
    font-style: normal;
    font-weight: 400;
    line-height: 80%;
}
.steps-description {
    color: #040404;
    font-size: 3.9rem;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}
.steps-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}
.steps-item {
    display: flex;
    flex-direction: column;
}
.steps-item__date {
    color: #D50057;
    font-family: "Viaoda Libre";
    font-size: 3.1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 6rem;
	margin-bottom: -1rem;
}
.steps-item__month {
    color: #D50057;
    font-family: "Viaoda Libre";
    font-size: 5.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 2rem;
}
.steps-item__title {
    color: #000;
    font-size: 2.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
#about, #nominations, #steps, #jury {
	scroll-margin-top: 10rem;
}

@media screen and (max-width: 1124px) {
    .steps {
        margin-bottom: 5rem;
    }
    .steps-container {
        gap: 7rem;
    }
    .steps-img {
        width: 61.6rem;
        right: -1.5rem;
        top: -8.1rem;
    }
    .steps-name {
        gap: 3rem;
    }
    .steps-title {
        font-size: 9rem;
        line-height: 100%;
    }
    .steps-description {
        font-size: 2rem;
    }
    .steps-items {
        gap: 2rem;
    }
    .steps-item__date {
        font-size: 1.5rem;
        line-height: 3.2rem;
		margin-bottom: 0;
    }
    .steps-item__month {
        font-size: 2.5rem;
        margin-bottom: 1.3rem;
    }
    .steps-item__title {
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 992px) {
    .steps {
        margin-bottom: 2.5rem;
    }
    .steps-container {
        gap: 5.35rem;
    }
    .steps-img {
        width: 44.7rem;
        right: -0.5rem;
        top: -6.5rem;
    }
    .steps-name {
        gap: 3.8rem;
    }
    .steps-title {
        font-size: 6rem;
    }
    .steps-description {
        font-size: 1.5rem;
    }
    .steps-items {
        gap: 1rem;
    }
    .steps-item__date {
        font-size: 1.4rem;
        line-height: 2.4rem;
    }
    .steps-item__month {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    .steps-item__title {
        font-size: 1.4rem;
    }
}
@media screen and (max-width: 596px) {
    .steps {
        margin-bottom: 5rem;
    }
    .steps-container {
        gap: 2.5rem;
    }
    .steps-img {
        width: 40.3rem;
        min-width: 40.3rem;
        right: 0;
        margin-left: -3.6rem;
        top: 0;
        position: relative;
    }
    .steps-name {
        gap: 1rem;
    }
    .steps-title {
        font-size: 4rem;
        line-height: 110%;
    }
    .steps-description {
        font-size: 1.4rem;
    }
    .steps-title br {
        display: none;
    }
    .steps-description br {
        display: none;
    }
    .steps-items {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .steps-item__date {
        font-size: 1.4rem;
        line-height: 2.4rem;
    }
    .steps-item__month {
        font-size: 2rem;
        margin-bottom: 0;
    }
    .steps-item__title {
        font-size: 1.4rem;
        max-width: 27rem;
    }
    .steps-item__title br {
        display: none;
    }
}

/* banner */

.banner {
    position: relative;
    padding-bottom: 11.8rem;
    padding-top: 2.3rem;
}
.banner-container {
    display: flex;
    flex-direction: column;
    position: relative;
}
.banner-title {
    color: #000;
    font-family: "Viaoda Libre";
    font-size: 24.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 2.9rem;
}
.banner__img-1 {
    position: absolute;
    width: 15.7rem;
    top: 3.5rem;
    right: 67.5rem;
}
.banner__description-1 {
    color: #000;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    position: absolute;
    right: 8.1rem;
    top: 9.9rem;
}
.banner__img-2 {
    width: 101.8rem;
    margin-left: 44rem;
}
.banner-subtitle {
    color: #000;
    font-family: "Viaoda Libre";
    font-size: 17rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    margin-bottom: 4rem;
    margin-left: 22.8rem;
}
.banner-col {
    display: flex;
    flex-direction: column;
    gap: 3.3rem;
    max-width: 82.1rem;
    margin-left: 43.4rem;
}
.banner__description-2 {
    color: #000;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.banner__description-2 span {
    color: #D50057;
    font-size: 3.7rem;
    font-family: "Viaoda Libre";
    font-weight: 400;
    line-height: 120%;
}
.banner__img-3 {
    width: 60.3rem;
    position: absolute;
    z-index: 0;
    right: 0;
    top: 40.3rem;
}
.banner__img-4 {
    width: 54.6rem;
    position: absolute;
    z-index: -1;
    left: -5.5rem;
    bottom: 14rem;
}

@media screen and (max-width: 1124px) {
    .banner {
        padding-bottom: 9.1rem;
        padding-top: 2.7rem;
    }
    .banner-title {
        font-size: 12rem;
        margin-bottom: 1.9rem;
    }
    .banner__img-1 {
        width: 8.4rem;
        top: 2.7rem;
        right: 37rem;
    }
    .banner__description-1 {
        font-size: 2rem;
        right: 3.6rem;
        top: 6.8rem;
    }
    .banner__img-2 {
        width: 53rem;
        margin-left: 26.5rem;
        margin-bottom: 4.7rem;
    }
    .banner-subtitle {
        font-size: 9rem;
        margin-bottom: 3rem;
        margin-left: 10.6rem;
    }
    .banner-col {
        gap: 3rem;
        max-width: 47.8rem;
        margin-left: 22.4rem;
    }
    .banner__description-2 {
        font-size: 2rem;
    }
    .banner__description-2 span {
        font-size: 2.6rem;
    }
    .banner__img-3 {
        width: 32.9rem;
        top: 22.9rem;
    }
    .banner__img-4 {
        width: 29.8rem;
        bottom: 18.4rem;
    }
}
@media screen and (max-width: 992px) {
    .banner {
        padding-bottom: 6.6rem;
        padding-top: 0.6rem;
    }
    .banner-title {
        font-size: 9rem;
        margin-bottom: 1.4rem;
    }
    .banner__img-1 {
        width: 6.28rem;
        top: 0.6rem;
        right: 27.8rem;
    }
    .banner__description-1 {
        font-size: 1.5rem;
        right: 2.7rem;
        top: 3.6rem;
    }
    .banner__img-2 {
        width: 39.75rem;
        margin-left: 19.9rem;
        margin-bottom: 3.5rem;
    }
    .banner-subtitle {
        font-size: 6rem;
        margin-left: 8rem;
    }
    .banner-col {
        gap: 2.5rem;
        max-width: 35.85rem;
        margin-left: 19.9rem;
    }
    .banner__description-2 {
        font-size: 1.5rem;
    }
    .banner__description-2 span {
        font-size: 2rem;
    }
	.banner-col .banner__description-2:nth-child(2) {
		max-width: 28rem;
	}
    .banner__img-3 {
        width: 24.7rem;
        top: 15.7rem;
    }
    .banner__img-4 {
        width: 25.4rem;
        bottom: 12.8rem;
        left: -3rem;
    }
}
@media screen and (max-width: 596px) {
    .banner {
        padding-bottom: 3.8rem;
        padding-top: 0.4rem;
    }
    .banner-title {
        font-size: 5.8rem;
        margin-bottom: 1rem;
    }
    .banner__img-1 {
        width: 11.4rem;
        top: 3rem;
        right: 1rem;
    }
    .banner__description-1 {
		font-size: 1.2rem;
        right: 0;
        top: 0;
        position: relative;
        order: 3;
        margin-bottom: 8.1rem;
    }
    .banner__img-2 {
        width: 22.3rem;
        margin-left: 1rem;
        margin-bottom: 1.4rem;
        margin-top: 0.4rem;
    }
    .banner-subtitle {
        font-size: 4rem;
        margin-bottom: 2.4rem;
        margin-left: 0;
		order: 4;
		max-width: 23.8rem;
        margin-left: 4.2rem;
    }
    .banner-col {
        gap: 1.5rem;
        max-width: 23.8rem;
        margin-left: 4.2rem;
		order: 5;
    }
    .banner__description-2 {
        font-size: 1.4rem;
    }
    .banner__description-2 span {
        font-size: 1.6rem;
    }
    .banner__img-3 {
        width: 16rem;
        top: 17.4rem;
		display: none;
    }
    .banner__img-4 {
        width: 12.8rem;
        bottom: auto;
        top: 28.1rem;
        left: -2rem;
    }
	.banner-col .banner__description-2:nth-child(2) {
        max-width: 20rem;
    }
}

/* footer */

footer {
    background: #D50057;
    padding: 6.5rem 0;
}
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4.4rem;
}
.footer-logo {
    display: flex;
}
.footer-logo img {
    width: 26.3rem;
}
.footer-description {
    color: #FFF;
    font-family: Montserrat;
    font-size: 1.9rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.footer-description a {
    color: #FFF;
    text-decoration-line: underline;
}
.footer-row > .footer-description {
	padding-bottom: 4.7rem;
}
.footer-row > .footer-description br:nth-child(4), .footer-row > .footer-description br:nth-child(5) {
	display: none;
}
.footer-row > .footer-description .footer-privacy {
	display: none;
}

@media screen and (max-width: 992px) {
    footer {
        padding: 4.9rem 0;
    }
    .footer-container {
        gap: 3.3rem;
    }
    .footer-logo img {
        width: 19.7rem;
    }
    .footer-description {
        font-size: 1.05rem;
    }
	.footer-row > .footer-description {
		padding-bottom: 3rem;
	}
}
@media screen and (max-width: 596px) {
    footer {
        padding: 3rem 0;
    }
    .footer-container {
        gap: 2rem;
    }
    .footer-logo img {
        width: 15.4rem;
    }
    .footer-description {
        font-size: 1rem;
    }
	.footer-description .footer-privacy {
		display: none;
	}
	.footer-description br:nth-child(3), .footer-description br:nth-child(4) {
		display: none;
	}
	.footer-row > .footer-description br:nth-child(4), .footer-row > .footer-description br:nth-child(5) {
		display: block;
	}
	.footer-row > .footer-description .footer-privacy {
		display: block;
	}
}


/* cookie */

.cookie {
    background: #D50057;
    padding: 2rem 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 99999;
    display: none;
}
.cookie-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}
.cookie-container > p {
    color: #FFF;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}
.cookie-container > p a {
    color: #FFF;
    text-decoration: underline;
}
.cookie-buttons {
    display: flex;
    gap: 3.15rem;
}
.cookie-button {
    color: #FFF;
    text-align: center;
    font-size: 3.5rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    width: 30rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.6rem;
    border: 0.4rem solid#FFF;
}
.cookie-button:hover {
    color: #20366A;
    background: #FFF;
}

@media screen and (max-width: 1124px) {
    .cookie {
        padding: 1rem 0;
    }
    .cookie-container > p {
        font-size: 1.8rem;
        line-height: 90%;
    }
    .cookie-buttons {
        gap: 1.9rem;
    }
    .cookie-button {
        font-size: 2rem;
        max-width: 15rem;
        padding: 1rem;
        border-radius: 1rem;
        border: 0.2rem solid#FFF;
    }
}

@media screen and (max-width: 992px) {
    .cookie {
        padding: 0.8rem 0;
    }
    .cookie-container > p {
        font-size: 1.2rem;
        line-height: 100%;
        max-width: 40.7rem;
    }
    .cookie-buttons {
        gap: 1.1rem;
    }
    .cookie-button {
        font-size: 1.5rem;
        max-width: 11rem;
        padding: 0.8rem;
        border-radius: 0.75rem;
    }
}

@media screen and (max-width: 692px) {
    .cookie {
        padding: 1.2rem 0;
    }
    .cookie-container > p {
        line-height: 120%;
        max-width: none;
        text-align: center;
    }
    .cookie-buttons {
        gap: 2.1rem;
    }
    .cookie-button {
        font-size: 1.51rem;
        width: 11.8rem;
        padding: 1.1rem;
        border-radius: 1rem;
    }
    .cookie-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
}


/* jury */

.jury {
    padding-bottom: 15.5rem;
    position: relative;
}
.jury-fon {
    position: absolute;
    z-index: -1;
    right: 0;
    width: 78.7rem;
    bottom: 7.2rem;
	display: none;
}
.jury-container {
    display: flex;
    flex-direction: column;
    gap: 7rem;
}
.jury-name {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.jury-title {
    color: #000;
    font-family: "Viaoda Libre";
    font-size: 17rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}
.jury-description {
    color: #000;
    font-size: 2.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    max-width: 124.4rem;
    margin-left: auto;
	width: 100%;
}
.jury-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6rem 4.7rem;
}
.jury-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.jury-item__img {
    width: 100%;
    height: 36rem;
    object-fit: cover;
}
.jury-item__title {
    color: #D50057;
    font-family: "Viaoda Libre";
    font-size: 6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}
.jury-item__description {
    color: #000;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
}
.jury_swiper {
	display: none;
}

@media screen and (max-width: 1124px) {
    .jury {
        padding-bottom: 4.4rem;
    }
    .jury-fon {
        width: 34.5rem;
        right: 3rem;
        bottom: 8.7rem;
    }
    .jury-container {
        gap: 3.6rem;
    }
    .jury-name {
        gap: 2rem;
    }
    .jury-title {
        font-size: 9rem;
    }
    .jury-description {
        font-size: 2rem;
        max-width: 68.9rem;
    }
    .jury-main {
        gap: 4.5rem 2.5rem;
    }
    .jury-item {
        gap: 1rem;
    }
    .jury-item__img {
        height: 19.2rem;
    }
    .jury-item__title {
        font-size: 3rem;
    }
    .jury-item__description {
        font-size: 1.4rem;
    }
}
@media screen and (max-width: 992px) {
    .jury {
        padding-bottom: 6.1rem;
    }
    .jury-fon {
        width: 45.9rem;
		bottom: 1.9rem;
        right: 6rem;
    }
    .jury-container {
        gap: 2rem;
    }
    .jury-name {
        gap: 2.3rem;
    }
    .jury-title {
        font-size: 6rem;
    }
    .jury-description {
        font-size: 1.4rem;
        max-width: 50.4rem;
    }
	.jury-description br {
		display: none;
	}
    .jury-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 4.5rem 2rem;
    }
    .jury-item {
        gap: 1rem;
    }
    .jury-item__img {
        height: 18rem;
    }
    .jury-item__title {
        font-size: 2.6rem;
    }
    .jury-item__description {
        font-size: 1.4rem;
    }
}
@media screen and (max-width: 596px) {
    .jury {
        padding-bottom: 3rem;
    }
    .jury-fon {
        display: none;
    }
    .jury-container {
        gap: 2.8rem;
    }
    .jury-name {
        gap: 1.5rem;
    }
    .jury-title {
        font-size: 4rem;
    }
    .jury-description {
        font-size: 1.4rem;
    }
    .jury-description p br {
        display: none;
    }
    .jury-main {
        display: none;
        overflow-x: auto;
        margin-left: -2rem;
        min-width: 100vw;
        padding: 0 2rem;
        gap: 1.4rem;
        padding-bottom: 1rem;
    }
    .jury-item {
        width: 100%;
        min-width: 100%;
        gap: 1rem;
    }
    .jury-item__img {
        height: 24.6rem;
    }
    .jury-item__title {
        font-size: 2.6rem;
    }
    .jury-item__description {
        font-size: 1.4rem;
    }
	.jury_swiper {
		display: block;
		width: 100%;
		overflow: visible;
	}
	.jury_swiper .swiper-slide {
		height: auto;
	}
}

/* picture */

.picture {
    margin-bottom: 3.5rem;
    position: relative;
}
.picture-img {
    width: 32.5rem;
    position: absolute;
    right: 0;
    z-index: -1;
    top: 0;
}
.picture-container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.picture-name {
    display: flex;
    align-items: center;
    gap: 16rem;
}
.picture-title {
    color: #000;
    font-family: "Viaoda Libre";
    font-size: 17rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}
.picture-subtitle {
    color: #D50057;
    font-family: "Viaoda Libre";
    font-size: 8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    max-width: 121.1rem;
}
.picture-main {
    display: flex;
    flex-direction: column;
}
.picture-main::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 42.6rem;
    background: linear-gradient(0deg, #FFF 54.75%, rgba(255, 255, 255, 0.00) 100%);
    z-index: 2;
    transition: .3s all;
}
.picture-grid {
	column-width: 40rem;
	column-gap: 2.5rem;
}
.picture-images {
    max-height: 104.3rem;
    overflow: hidden;
    position: relative;
}
.picture-item {
	background: linear-gradient(0deg, #D9D9D9 0%, #D9D9D9 100%);
	transition: opacity .4s ease-in-out;
    display: inline-block;
    column-break-inside: avoid;
    margin-bottom: 2.5rem;
}
.picture-item img {
	width: 100%;
    height: auto;
    object-fit: cover;
}
.picture-more {
    position: relative;
    background: #D50057;
    z-index: 3;
    width: 53.3rem;
    height: 8rem;
    color: #FFF;
    text-align: center;
    font-size: 3.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    margin: 0 auto;
    left: 0;
    right: 0;
}
.picture-main.active::before {
    display: none;
}
.picture-main.active .picture-more {
    position: relative;
    bottom: 0;
}
.picture-main > p, .picture-desc p {
    position: relative;
    z-index: 2;
    font-size: 2.4rem;
    color: #aaaaaa;
    text-align: center;
    margin-top: 2rem;
}
.picture-main.active > p, .picture-main.active .picture-desc p {
	margin-top: 2rem;
}

@media screen and (max-width: 1124px) {
    .picture {
        margin-bottom: 1.2rem;
    }
    .picture-img {
        width: 15.7rem;
        top: 1.5rem;
    }
    .picture-container {
        gap: 3.2rem;
    }
    .picture-name {
        gap: 6.4rem;
    }
    .picture-title {
        font-size: 9rem;
        line-height: 100%;
    }
    .picture-subtitle {
        font-size: 4rem;
    }
    .picture-main {
        width: 94.4rem;
        margin-left: -4.3rem;
    }
    .picture-main::before {
        height: 24.5rem;
    }
    .picture-grid {
        column-width: 22.6rem;
        column-gap: 1.5rem;
    }
    .picture-images {
        max-height: 59.3rem;
    }
    .picture-item {
        margin-bottom: 1.5rem;
    }
    .picture-more {
        width: 30.2rem;
        height: 4.6rem;
        font-size: 2rem;
    }
	.picture-main > p, .picture-desc p {
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 992px) {
    .picture {
        margin-bottom: 1rem;
    }
    .picture-img {
        width: 11.8rem;
        top: 1rem;
    }
    .picture-container {
        gap: 3rem;
    }
    .picture-name {
        gap: 9rem;
    }
    .picture-title {
        font-size: 6rem;
    }
    .picture-subtitle {
        font-size: 3rem;
    }
    .picture-main {
        width: 70.8rem;
        margin-left: -4rem;
    }
    .picture-main::before {
        height: 18.3rem;
    }
    .picture-grid {
        column-width: 17rem;
        column-gap: 1rem;
    }
    .picture-images {
        max-height: 44.5rem;
    }
    .picture-item {
        margin-bottom: 1rem;
    }
    .picture-more {
        width: 22.65rem;
        height: 3.45rem;
        font-size: 1.5rem;
    }
	.picture-main > p, .picture-desc p {
        font-size: 1.4rem;
    }
}
@media screen and (max-width: 596px) {
    .picture {
        margin-bottom: 5rem;
    }
    .picture-img {
        display: none;
    }
    .picture-container {
        gap: 2rem;
    }
    .picture-name {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .picture-title {
        font-size: 4rem;
    }
    .picture-subtitle {
        font-size: 2.2rem;
    }
    .picture-main {
        width: 100%;
        margin-left: 0;
    }
    .picture-main::before {
        height: 9rem;
    }
    .picture-grid {
        column-width: 13rem;
        column-count: 2;
        column-gap: 1rem;
    }
    .picture-images {
        max-height: 30.7rem;
    }
    .picture-more {
        width: 23.2rem;
        height: 3.45rem;
        font-size: 1.5rem;
        bottom: 0;
    }
	.picture-main > p, .picture-desc p {
        font-size: 1.4rem;
        position: absolute;
        bottom: -3rem;
        width: 100%;
        left: 0;
    }
}
.picture-img {
	display: none;
}

/* nominations */

.nominations {
    padding-bottom: 24rem;
    position: relative;
    overflow: hidden;
}
.nominations-container {
    display: flex;
    flex-direction: column;
    gap: 3.3rem;
}
.nominations-name {
    display: flex;
    align-items: center;
    position: relative;
}
.nominations-title {
    color: #000;
    font-family: "Viaoda Libre";
    font-size: 17rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}
.nominations-main {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.nominations-col {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.nominations-col > p {
    color: #6B6B6B;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.nominations-tabs {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.nominations-tab {
    color: #000;
    text-align: center;
    font-size: 2.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    text-decoration-line: underline;
	position: relative;
}
.nominations-tab img {
	height: 8.5rem;
	display: none;
}
.nominations-tab .nominations-tab__img-active {
	height: auto !important;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.nominations-slider {
    position: relative;
}
.nominations_swiper {
	width: 100%;
    max-width: 164rem;
    margin-left: 0;
}
.nominations_swiper .swiper-slide {
    height: auto;
}
.nominations_slide {
    display: flex;
    align-items: center;
    gap: 7.3rem;
    padding: 0.5rem 0;
}
.nominations_slide-img__block {
    width: 46.4rem;
    min-width: 46.4rem;
    height: 45rem;
    position: relative;
}
.nominations_slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nominations_slide-win {
    position: absolute;
    z-index: 2;
    width: 22rem;
    top: 1.8rem;
    right: -18.7rem;
}
.nominations_slide-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.nominations_slide-title {
    color: #D50057;
    font-family: "Viaoda Libre";
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}
.nominations_slide-fio {
	color: #000;
	font-family: "Viaoda Libre";
	font-size: 3.6rem;
	font-style: normal;
	font-weight: 400;
	line-height: 110%;
}
.nominations_slide-description {
    color: #000;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    max-width: 97.2rem;
}
.nominations_slide-link {
	color: #6B6B6B;
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 300;
	line-height: 130%;
	text-decoration-line: underline;
}
.nominations-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    left: 53.7rem;
    bottom: 0;
    z-index: 3;
}
.nominations-prev {
    display: flex;
}
.nominations-prev svg {
    width: 8.3rem;
    height: auto;
}
.nominations-pagination {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.nominations-pagination .swiper-pagination-bullet {
    width: 1.4rem;
    height: 1.4rem;
    background: transparent;
    border-radius: 100%;
    border: 1px solid #000;
    margin: 0 !important;
    opacity: 1;
}
.nominations-pagination .swiper-pagination-bullet-active {
    background: #000;
}
.nominations-next {
    display: flex;
}
.nominations-next svg {
    width: 8.3rem;
    height: auto;
}
.nominations-prev.swiper-button-disabled, .nominations-next.swiper-button-disabled {
	opacity: .5;
}

@media screen and (max-width: 1124px) {
    .nominations {
        padding-bottom: 7.6rem;
    }
    .nominations-container {
        gap: 1.5rem;
    }
    .nominations-title {
        font-size: 9rem;
    }
    .nominations-main {
        gap: 5.2rem;
    }
    .nominations-col {
        gap: 2.2rem;
    }
    .nominations-col > p {
        font-size: 1.5rem;
    }
    .nominations-tabs {
        gap: 2rem;
    }
    .nominations-tab {
        font-size: 1.5rem;
    }
    .nominations-tab img {
        width: auto;
        height: 4rem;
    }
    .nominations_swiper {
		max-width: 84rem;
		overflow: visible;
    }
    .nominations_slide {
        gap: 5.3rem;
    }
    .nominations_slide-img__block {
        width: 27.5rem;
        min-width: 27.5rem;
        height: 28.1rem;
    }
    .nominations_slide-win {
        width: 13.1rem;
        right: -11.1rem;
        top: 1.5rem;
    }
	.nominations_slide-col {
		gap: 1.5rem;
	}
    .nominations_slide-title {
        font-size: 2rem;
    }
	.nominations_slide-fio {
		font-size: 1.6rem;
	}
    .nominations_slide-description {
        font-size: 1.4rem;
        max-width: 48.6rem;
    }
	.nominations_slide-link {
		font-size: 1.4rem;
	}
    .nominations-buttons {
        gap: 0.5rem;
        left: 32.8rem;
    }
    .nominations-prev svg {
        width: 4.5rem;
    }
    .nominations-pagination {
        gap: 0.5rem;
    }
    .nominations-pagination .swiper-pagination-bullet {
        width: 0.7rem;
        height: 0.7rem;
    }
    .nominations-next svg {
        width: 4.5rem;
    }
    .nominations_slide-description br {
        display: none;
    }
}
@media screen and (max-width: 992px) {
    .nominations {
        padding-bottom: 5.9rem;
    }
    .nominations-container {
        gap: 2rem;
    }
    .nominations-title {
        font-size: 6rem;
    }
    .nominations-main {
        gap: 3.2rem;
    }
    .nominations-col {
        gap: 1.8rem;
    }
    .nominations-col > p {
        font-size: 1.4rem;
    }
    .nominations-tabs {
        gap: 1.6rem;
    }
    .nominations-tab {
        font-size: 1.125rem;
    }
    .nominations-tab img {
        height: 3rem;
    }
    .nominations_swiper {
		max-width: 66rem;
    }
    .nominations_slide {
        gap: 3.8rem;
    }
    .nominations_slide-img__block {
        width: 20.4rem;
        min-width: 20.4rem;
        height: 20.9rem;
    }
    .nominations_slide-win {
        width: 9.2rem;
        right: -8.2rem;
        top: 1rem;
    }
    .nominations_slide-col {
        gap: 1rem;
    }
    .nominations_slide-title {
        font-size: 1.4rem;
    }
	.nominations_slide-fio {
        font-size: 1.4rem;
    }
    .nominations_slide-description {
        font-size: 1.2rem;
        max-width: 34.2rem;
    }
	.nominations_slide-link {
        font-size: 1.2rem;
    }
    .nominations-buttons {
        gap: 0.5rem;
        left: 24.2rem;
    }
    .nominations-prev svg {
        width: 3.2rem;
    }
    .nominations-pagination {
        gap: 0.5rem;
    }
    .nominations-pagination .swiper-pagination-bullet {
        width: 0.5rem;
        height: 0.5rem;
    }
    .nominations-next svg {
        width: 3.2rem;
    }
}
@media screen and (max-width: 596px) {
    .nominations {
        padding-bottom: 0;
    }
    .nominations-container {
        gap: 2rem;
    }
    .nominations-title {
        font-size: 4rem;
    }
    .nominations-main {
        gap: 1rem;
    }
    .nominations-col {
        gap: 2.5rem;
    }
    .nominations-col > p {
        font-size: 1.4rem;
        color: #000;
    }
    .nominations-tabs {
        gap: 2rem;
        overflow-y: auto;
        padding: 0 2rem 0.5rem 2rem;
        min-width: 100vw;
        margin-left: -2rem;
    }
    .nominations-tab {
        font-size: 1.3rem;
        white-space: nowrap;
    }
    .nominations-tab img {
        height: 4rem;
    }
    .nominations_swiper {
		max-width: 27rem;
    }
    .nominations_slide {
        gap: 4.8rem;
        flex-direction: column;
        align-items: flex-start;
    }
    .nominations_slide-img__block {
        width: 100%;
        min-width: 100%;
        height: 24.6rem;
    }
    .nominations_slide-win {
        width: 12rem;
        right: auto;
        top: auto;
        bottom: -4.7rem;
        left: 0.6rem;
    }
    .nominations_slide-col {
        gap: 1.5rem;
    }
    .nominations_slide-title {
        font-size: 2.6rem;
    }
    .nominations_slide-description {
        font-size: 1.4rem;
        max-width: none;
    }
    .nominations-slider {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .nominations-buttons {
        gap: 0.5rem;
        position: relative;
        left: auto;
		display: none;
    }
    .nominations-prev svg {
        width: 3.7rem;
    }
    .nominations-pagination {
        gap: 0.5rem;
        width: auto !important;
    }
    .nominations-pagination .swiper-pagination-bullet {
        width: 0.6rem;
        height: 0.6rem;
    }
    .nominations-next svg {
        width: 3.7rem;
    }
	.nominations_slide-fio {
        font-size: 1.8rem;
    }
}

/* wins_banner */

.wins_banner {
    position: relative;
    overflow: hidden;
    padding-top: 6.3rem;
    padding-bottom: 13.2rem;
}
.wins_banner::before {
    content: '';
    position: absolute;
    width: 135.0604rem;
    height: 93.7157rem;
    transform: rotate(51.842deg);
    border-radius: 135.0604rem;
    background: rgba(213, 0, 87, 0.06);
    top: -25rem;
    left: -60rem;
}
.wins_banner-img {
    width: 30.9rem;
    position: absolute;
    z-index: 0;
    top: 4.2rem;
    left: 21.6rem;
}
.wins_banner-fon {
    position: absolute;
    z-index: -1;
    width: 63.9rem;
    top: 16.1rem;
    right: 11.9rem;
}
.wins_banner-container {
    display: flex;
    justify-content: flex-end;
}
.wins_banner-col {
    display: flex;
    flex-direction: column;
    gap: 6.9rem;
    max-width: 107.6rem;
}
.wins_banner-title {
    color: #000;
    font-family: "Viaoda Libre";
    font-size: 15rem;
    font-style: normal;
    font-weight: 400;
    line-height: 80%;
}
.wins_banner-description {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.wins_banner-description p {
    color: #0B1009;
    font-size: 3rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.wins_banner-description p span {
    color: #D50057;
    font-weight: 400;
    font-family: "Viaoda Libre";
    font-size: 3.4rem;
    line-height: 120%;
}

@media screen and (max-width: 1124px) {
    .wins_banner {
        padding-top: 2rem;
        padding-bottom: 7.9rem;
    }
    .wins_banner::before {
        width: 72.0322rem;
        height: 49.9817rem;
        transform: rotate(51.842deg);
        border-radius: 72.0322rem;
        top: -20.2rem;
        left: -36rem;
    }
    .wins_banner-img {
        width: 15.3rem;
        top: 2.75rem;
        left: 12.1rem;
    }
    .wins_banner-fon {
        width: 34.08rem;
        top: 7.2rem;
        right: 9.35rem;
    }
    .wins_banner-col {
        gap: 3.7rem;
        max-width: 56.64rem;
    }
    .wins_banner-title {
        font-size: 8rem;
    }
    .wins_banner-description {
        gap: 1.9rem;
    }
    .wins_banner-description p {
        font-size: 1.6rem;
    }
    .wins_banner-description p span {
        font-size: 1.8rem;
    }
}
@media screen and (max-width: 992px) {
    .wins_banner {
        padding-top: 2rem;
        padding-bottom: 1.2rem;
    }
    .wins_banner::before {
        width: 53.9609rem;
        height: 37.4424rem;
        transform: rotate(51.842deg);
        border-radius: 53.9609rem;
        top: -16rem;
        left: -23rem;
    }
    .wins_banner-img {
        width: 11.6rem;
        top: 3rem;
        left: 9rem;
    }
    .wins_banner-fon {
        width: 25.56rem;
        top: 6.8rem;
        right: 1.8rem;
    }
    .wins_banner-col {
        gap: 3.6rem;
        max-width: 40rem;
    }
    .wins_banner-title {
        font-size: 6rem;
        line-height: 90%;
    }
    .wins_banner-description {
        gap: 2rem;
    }
    .wins_banner-description p {
        font-size: 1.4rem;
    }
    .wins_banner-description p br {
        display: none;
    }
	.wins_banner-description p br:nth-child(3), .wins_banner-description p br:nth-child(4) {
		display: block;
	}
    .wins_banner-description p span {
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 596px) {
    .wins_banner {
        padding-top: 1.7rem;
        padding-bottom: 5rem;
    }
    .wins_banner::before {
        width: 27.6rem;
        background: transparent;
        height: 16.3rem;
        background-image: url('/wp-content/uploads/2025/11/wins_banner-fon11.svg');
        background-position: center;
        transform: none;
        border-radius: 0;
        top: -3.5rem;
        left: 3rem;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .wins_banner-img {
        width: 4.8rem;
        top: 1.1rem;
        left: auto;
        right: 2.2rem;
    }
    .wins_banner-fon {
        width: 15.9rem;
        top: 5.6rem;
        right: 4.1rem;
    }
    .wins_banner-container {
        justify-content: flex-start;
    }
    .wins_banner-col {
        gap: 5.9rem;
        max-width: 27rem;
    }
    .wins_banner-title {
        font-size: 4rem;
		z-index: 2;
    }
    .wins_banner-description {
        gap: 2rem;
    }
    .wins_banner-description p {
        font-size: 1.4rem;
    }
    .wins_banner-description p span {
        font-size: 1.6rem;
    }
}

/* wins */

.wins {
    margin-bottom: 10rem;
}
.wins-container {
    display: flex;
    flex-direction: column;
    gap: 7.3rem;
}
.wins-name {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.wins-name p {
    color: #000;
    font-size: 3.9rem;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
}
.wins-name select {
    color: #000;
    font-size: 3.9rem;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    cursor: pointer;
    padding-right: 2rem;
}
.wins-main {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}
.wins-item {
    display: flex;
    gap: 7rem;
	position: relative;
}
.wins-item__img {
    width: 46.5rem;
    min-width: 46.5rem;
    height: 45rem;
    object-fit: cover;
}
.wins-item__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
	padding-top: 8rem;
}
.wins-item__tag {
    height: 7rem;
    position: absolute;
    left: 43rem;
    top: 1.5rem;
}
.wins-item__title {
    color: #D50057;
    font-family: "Viaoda Libre";
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}
.wins-item__subtitle {
    color: #000;
    font-family: "Viaoda Libre";
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}
.wins-item__description {
    color: #000;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
}
.wins-item__link {
    color: #6B6B6B;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    text-decoration-line: underline;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: auto;
}
.wins-item__link svg {
    width: 4.8rem;
    height: auto;
}

@media screen and (max-width: 1124px) {
    .wins {
        margin-bottom: 8rem;
    }
    .wins-container {
        gap: 4.2rem;
    }
    .wins-name {
        gap: 2rem;
    }
    .wins-name p {
        font-size: 1.7rem;
    }
    .wins-name select {
        font-size: 1.7rem;
        padding-right: 1rem;
    }
    .wins-main {
        gap: 3rem;
    }
    .wins-item {
        gap: 4.3rem;
    }
    .wins-item__img {
        width: 27.5rem;
        min-width: 27.5rem;
        height: 26.7rem;
    }
    .wins-item__col {
        gap: 1rem;
    }
    .wins-item__tag {
        height: 4rem;
		left: 26rem;
    }
    .wins-item__title {
        font-size: 2rem;
    }
    .wins-item__subtitle {
        font-size: 1.6rem;
    }
    .wins-item__description {
        font-size: 1.4rem;
    }
    .wins-item__link {
        font-size: 1.4rem;
        gap: 1rem;
    }
    .wins-item__link svg {
        width: 3.4rem;
    }
    .wins-item__description br {
        display: none;
    }
}
@media screen and (max-width: 992px) {
    .wins {
        margin-bottom: 5rem;
    }
    .wins-container {
        gap: 3rem;
    }
    .wins-name {
        gap: 2rem;
    }
    .wins-name p {
        font-size: 1.4rem;
    }
    .wins-name select {
        font-size: 1.4rem;
    }
    .wins-main {
        gap: 3rem;
    }
    .wins-item {
        gap: 2.9rem;
    }
    .wins-item__img {
        width: 21.4rem;
        min-width: 21.4rem;
        height: 21.9rem;
    }
    .wins-item__col {
        gap: 1rem;
    }
    .wins-item__tag {
        height: 3rem;
        left: 20rem;
    }
    .wins-item__title {
        font-size: 1.4rem;
    }
    .wins-item__subtitle {
        font-size: 1.4rem;
    }
    .wins-item__description {
        font-size: 1.2rem;
    }
    .wins-item__link {
        font-size: 0.8rem;
        gap: 1rem;
    }
    .wins-item__link svg {
        width: 2rem;
    }
}
@media screen and (max-width: 596px) {
    .wins {
        margin-bottom: 4rem;
    }
    .wins-container {
        gap: 2rem;
    }
    .wins-name p {
        font-size: 1.4rem;
    }
    .wins-name select {
        font-size: 1.4rem;
    }
    .wins-main {
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
        padding: 0 2rem 1rem 2rem;
        min-width: 100vw;
        margin-left: -2rem;
    }
    .wins-item {
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
        width: 26.1rem;
        min-width: 26.1rem;
    }
    .wins-item__img {
        width: 100%;
        min-width: 100%;
        height: 24.6rem;
    }
    .wins-item__col {
        gap: 1rem;
    }
    .wins-item__tag {
        height: 5rem;
        left: 0;
        top: 27rem;
    }
    .wins-item__title {
        font-size: 2.2rem;
    }
    .wins-item__subtitle {
        font-size: 1.8rem;
    }
    .wins-item__description {
        font-size: 1.4rem;
    }
    .wins-item__link {
        margin-top: 0;
        font-size: 1.2rem;
        gap: 1rem;
    }
    .wins-item__link svg {
        width: 2.9rem;
    }
}

/* header */

.fancybox-bg {
    background: rgba(65, 65, 65, 0.50);
}
.fancybox-is-open .fancybox-bg {
	opacity: 1;
}
.fancybox-inner-wrap {
    padding: 10px;
    background: #fff;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    height: calc(100% - 73px);
	position: relative;
}
.fancybox-slide.fancybox-slide--image .fancybox-image {
    position: relative;
    border-radius: 0.2rem;
	object-fit: cover;
}
.fancybox-custom-close {
    display: flex;
    position: absolute;
    top: 0;
    right: -70px;
}
.choices[data-type*=select-one]::after {
    border: none !important;
    background-image: url(/wp-content/uploads/2025/11/vector.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 2rem;
    margin: 0;
    width: 2rem !important;
    height: 1.2rem !important;
    transition: .3s all;
    right: 0 !important;
}
.choices__inner {
	padding: 0 !important;
    color: #000;
    font-size: 3.9rem !important;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    border: none !important;
    background: transparent !important;
    min-height: auto !important;
}
.choices__list--single {
    padding: 0 !important;
    padding-right: 3rem !important;
    width: 100%;
}
.choices__list--dropdown, .choices__list[aria-expanded] {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
    border-radius: 0 !important;
}
.choices[data-type*=select-one].is-open::after {
	transform: rotate(180deg);
	margin-top: 0 !important;
}
.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
    padding: 0.5rem !important;
    color: #000;
    font-size: 3.2rem !important;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
}
.choices__list--dropdown .choices__item:hover, .choices__list[aria-expanded] .choices__item:hover {
	background: transparent !important;
	color: #D50057;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
	background: transparent !important;
	color: #D50057;
}
.choices {
	display: flex;
}
.nominations-tab:hover {
	color: #FF9BC4;
}
.nominations-tab.active p {
	display: none;
}
.nominations-tab.active img {
	display: block;
}
.nominations_description {
	display: none;
}
.nominations_description.active {
	display: block;
}
.nominations-slider {
	display: none;
}
.nominations-slider.active {
	display: flex;
}
.fancybox-custom-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
	height: 100%;
}
.fancybox-custom-wrap .buttons {
	display: flex;
    align-items: center;
    justify-content: center;
}
.fancybox-toolbar {
	display: none !important;
}
.fancybox-custom-wrap .buttons button {
	display: flex;
}
.fancybox-custom-wrap .buttons .prev {
	transform: rotate(180deg);
}
.fancybox-custom-wrap .buttons p {
	color: #FFF;
	text-align: center;
	font-size: 30px;
	font-style: normal;
	font-weight: 500;
	line-height: 110%;
}
.fancybox-custom-wrap .buttons p span {
	color: #FFF;
}
.choices {
	z-index: 3;
}
.wins-item__col.not-img .wins-item__tag {
    left: 0;
}

@media screen and (max-width: 1124px) {
	.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
		font-size: 1.7rem !important;
	}
	.choices__inner {
		font-size: 1.7rem !important;
	}
	.choices[data-type*=select-one]::after {
		margin-top: -4.5px !important;
        background-size: 1.5rem;
        margin: 0;
        width: 1.5rem !important;
        height: 1rem !important;
	}
	.choices[data-type*=select-one].is-open::after {
		margin-top: -4.5px !important;
	}
	.choices__list--single {
		padding-right: 2rem !important;
	}
}
@media screen and (max-width: 992px) {
	.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
		font-size: 1.4rem !important;
	}
	.choices__inner {
		font-size: 1.4rem !important;
	}
	.choices[data-type*=select-one]::after {
        margin-top: -4.5px !important;
        background-size: 1.2rem;
        width: 1.2rem !important;
        height: 0.8rem !important;
    }
	.choices[data-type*=select-one].is-open::after {
		margin-top: -4.5px !important;
	}
}
@media screen and (max-width: 596px) {
	.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
		font-size: 1.4rem !important;
	}
	.choices__inner {
		font-size: 1.4rem !important;
	}
	.choices[data-type*=select-one]::after {
		margin-top: -3.5px !important;
		background-size: 1.2rem;
        width: 1.2rem !important;
        height: 0.8rem !important;
	}
	.choices[data-type*=select-one].is-open::after {
		margin-top: -3.5px !important;
	}
	.wins-item__col.not-img .wins-item__tag {
		left: 0;
		top: 0;
	}
}

/* footer-row */

.footer-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
@media screen and (max-width: 596px) {
	.footer-row {
		flex-direction: column;
		gap: 2rem;
		align-items: flex-start;
	}
}






@media screen and (min-width: 596px) {
	.wins-swiper {
		width: 100%;
	}
	.wins-swiper .swiper-wrapper {
		display: flex;
        flex-direction: column;
        gap: 3rem;
        transform: none !important;
	}
}
@media screen and (min-width: 992px) {
	.wins-swiper .swiper-wrapper {
        gap: 3rem;
	}
}
@media screen and (min-width: 1124px) {
	.wins-swiper .swiper-wrapper {
        gap: 6rem;
	}
}

@media screen and (max-width: 596px) {
	.wins-swiper {
        width: 100%;
        overflow: visible;
        max-width: 26rem;
        margin-left: 0;
	}
	#steps {
		scroll-margin-top: -25rem;
	}
	
	
	
	
	
}

/* header */


.nominations-next.swiper-button-lock {
	display: none;
}
.nominations-pagination.swiper-pagination-lock {
	display: none;
}
.nominations-prev.swiper-button-lock {
	display: none;
}




@media screen and (max-width: 992px) {
	.fancybox-custom-close {
		top: -50px;
		right: 10px;
	}
	.fancybox-custom-close svg {
		width: 20px;
		height: auto;
	}
	.fancybox-custom-wrap .buttons p {
		font-size: 18px;
	}
	.fancybox-custom-wrap {
		gap: 20px;
	}
}

/* header */









@media screen and (min-width: 1380px) {
	html {
		font-size: calc(1280px / 1920 * 10);
	}
}
@media screen and (min-width: 2140px) {
	.banner-container {
		position: relative;
	}
	.steps-container {
		position: relative;
	}
	.video-block {
		max-width: 167.7rem;
		margin: 0 auto;
	}
	.wins_banner {
		max-width: 167.7rem;
		width: 100%;
		margin: 0 auto;
		overflow: visible;
	}
	.banner__img-3 {
		top: 40.3rem;
	}
}

@media screen and (min-width: 992px) {
	.wins_banner {
		max-width: 167.7rem;
		width: 100%;
		margin: 0 auto;
		overflow: visible;
	}
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}

/* header */









@media screen and (max-width: 992px) {
    
}