:root {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    color: #fff;
    background-color: #262626;
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
figure {
    padding: 0;
    margin: 0;
}

ul {
    list-style-type: none;
}

a {
    font-family: inherit;
    text-decoration: none;
    color: inherit;
}

button,
input[type='submit'] {
    padding: 0;
    margin: 0;
    color: inherit;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: none;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    /* Прозрачный черный фон */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Отображаем над всем остальным */
}

.loader-circle {
    width: 80px;
    height: 80px;
    border: 8px solid #494949;
    border-radius: 50%;
    border-top-color: #000000;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.container {
    max-width: 1360px;
    margin: 0 auto;
}

@media (max-width:1080px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (max-width:550px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
    }
}

/*header*/
.header {
    position: sticky;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    z-index: 7;
}

@media (max-width:1080px) {}

.header__inner {
    display: flex;
    justify-content: space-between;
    padding: 45px 0px;
}

@media (max-width:1080px) {
    .header__inner {
        padding: 25px 0px;
    }
}

.header__logo-list {
    display: flex;
    gap: 40px;
}

@media (max-width:1080px) {
    .header__left {
        z-index: 10;
    }
}

.header__logo-item{
    display: flex;
    gap: 10px;
    align-items: center;
}

nav {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav__link {
    color: #FFF;
    font-family: "Open Sans";
    font-size: 19px;
    opacity: 0.9;
    font-style: normal;
    font-weight: 400;
    line-height: 142%;
    transition: 0.3s all;
    /* 26.98px */
}

.nav__link:hover {
    opacity: 1;
}

.nav__link:last-child {
    color: #8A3B52;
    text-decoration: underline;
}

.button__nav-mobile {
    display: none;
    position: relative;
    height: 25.5px;
    z-index: 20;
}

.button__nav-mobile>span {
    width: 34px;
    height: 4px;
    border-radius: 12px;
    background-color: #8A3B52;
    display: flex;
    align-items: center;
    transition: 0.3s all;
}

.button__nav-mobile>span::after {
    content: '';
    position: absolute;
    top: 0%;
    width: 100%;
    height: 4px;
    background-color: #8A3B52;
    transition: 0.3s all;
    border-radius: 12px;
}

.button__nav-mobile>span::before {
    content: '';
    position: absolute;
    top: 90%;
    width: 100%;
    height: 4px;
    background-color: #8A3B52;
    transition: 0.3s all;
    border-radius: 12px;
}

.button-active>span {
    background-color: inherit;
}

.button-active>span::before {
    top: 50%;
    transform: rotateZ(45deg);
}

.button-active>span::after {
    top: 50%;
    transform: rotateZ(-45deg);
}

.mobile__logo {
    display: none;
}

.mobile__application {
    display: none;
}

.mobile__application-text {
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 142%;
}

.mobile__application-button {
    color: #000;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 142%;

    border-radius: 68px;
    background: #8A3B52;

    max-width: 225px;
    width: 100%;

    padding: 12px 18px;
}

.mobile__application-footer {
    display: none;
}

.mobile__application-action {
    display: none;
}

@media (max-width:1080px) {
    .button__nav-mobile {
        display: block
    }

    .mobile__logo {
        display: block;
        width: 68px;
    }

    .header__inner {}

    .header__container {
        position: relative;
    }

    .header__right {
        position: absolute;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 27px;
        transform: translateX(-100%);
        transition: 0.3s ease-in-out;
        background-color: #000;
        z-index: 10;
    }

    .nav__links--open {
        transform: translateX(0);
        align-items: center;
    }

    nav {
        flex-direction: column;
        gap: 13px;
        padding: 55px 0px;
        border-bottom: 1px solid #1F1E1E;
    }

    .nav__link {
        opacity: 1;
        font-size: 15px;
        font-weight: 400;
        line-height: 142%;
    }

    .mobile__application {
        padding-top: 38px;
        display: flex;
        flex-direction: column;
        gap: 17px;
        align-items: start;
    }

    .mobile__application-footer {
        color: #FFF;
        font-size: 15px;
        font-style: normal;
        font-weight: 300;
        line-height: 132.1%;
        letter-spacing: -0.15px;
        display: block;
        padding-top: 110px;
    }

    .point {
        color: #C09651;
        text-align: center;
        font-size: 8px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        padding: 0 4px;
    }

    .mobile__addr {
        color: #999;
        font-size: 15px;
        font-style: normal;
        font-weight: 300;
        line-height: 132.1%;
        letter-spacing: -0.15px;
    }

    .mobile__application-action {
        color: #999;
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 126%;
        padding-top: 34px;
        padding-bottom: 17px;
        display: flex;
    }
}

@media (max-width:550px) {
    .header__logo-list {
        gap: 20px;
    }

    .nav__links--open {
        align-items: start;
    }
}

/******/

/*main*/
main {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow-y: hidden;
}

.main__video {
    position: absolute;
    width: 100%;
    top: 3px;
    left: 50%;
    height: 950px;
    transform: translateX(-50%);
}

@media (max-width:550px) {
    .main__video{
        display: none;
    }
}

.main__inner {
    padding-top: 195px;
}

@media (max-width:1080px) {
    .main__inner {
        padding-top: 100px;
    }
}

@media (max-width:550px) {
    .main__inner {
        padding-top: 32px;
    }
}

.main__center {
    display: flex;
    justify-content: space-between;
    padding-bottom: 220px;
}


@media (max-width:1080px) {
    .main__center {
        flex-direction: column;
        gap: 86px;
        padding-bottom: 100px;
    }
}

@media (max-width:550px) {
    .main__center {
        padding-bottom: 64px;
    }
}

.main__center-left {
    z-index: 1;
}

.main__logo {
    width: 100%;
}

@media (max-width:700px) {
    .main__logo{
        width: 345px;
        height: 133px;
    }
}

.main__center-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* align-items: start; */
    position: relative;
    width: 30%;
    overflow: hidden;
    gap: 20px;
}

@media (max-width:1080px) {
    .main__center-right {
        width: 100%;
        overflow-y: hidden;
        flex-direction: column-reverse;
        gap: 36px;
    }
}

.year-list-wrapper {
    max-height: 200px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    position: relative;
}

@media (max-width:1080px) {
    .year-list-wrapper {
        width: auto;
    }
}

.year-list-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, and Opera */
}

.year__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    /* Добавляем относительное позиционирование */
    top: 0;
    /* Изначальное положение */
    gap: 20px;

}

@media (max-width:1080px) {
    .year__list {
        flex-direction: row;
        gap: 36px;
    }
}

.year-list--item {
    height: 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #969696;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 126%;
}

@media (max-width:1080px) {
    .year-list--item {
        color: #969696;
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 126%;
    }
}

.year__list a {
    text-decoration: none;
    color: #337ab7;
}

.year__list a:hover {
    color: #23527c;
}

.main__button {
    margin-right: 30px;
    padding: 10px 20px;
    cursor: pointer;
    max-width: 250px;
    width: 100%;

    color: #000;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 142%;

    border-radius: 68px;
    background: #ffffff;
    transition: 0.3s all ease-in-out;
}

@media (max-width:1080px) {
    .main__button {
        margin-right: 0px;
    }
}

.selected-year {
    border-radius: 100px;
    background: #ffffff;
    color: #131313;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 126%;
    height: 44px;
    width: 85px;
    opacity: 1;
}

@media (max-width:1080px) {
    .selected-year {}
}

.special-button-style {
    background: #8A3B52;
}

.special-list-item-style {
    background: #8A3B52;
}

.main__lower-text {
    color: #999;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 142%;
    padding-bottom: 32px;
}

.main__lower {
    display: flex;
    column-gap: 50px;
}

.genDir--block {
    padding-left: 32px;
}


@media (max-width:1080px) {
    .main__lower-text {
        font-size: 12px;
        padding-bottom: 16px;
    }

    .main__lower {
        display: flex;
        column-gap: 10px;
    }

    .genDir--block {
        padding-left: 0;
    }
}

.main__lower-partners {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: start;
    gap: 15px;
    padding-bottom: 30px;
}

/* .logo__main-partners {
    max-width: 80px;
} */

@media (max-width:550px) {
    .main__lower-partners {
        gap: 8px;
    }

    .main__lower-partners>img {
        width: 15%;
    }

    .logo__main-partners {
        max-width: 80px;
    }


}

.main__partners-inner{
    display: flex;
    gap:10px;
    align-items: center;
}

/*******/

.speaker {}

.speaker__inner {
    padding-top: 158px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 257px;
}

.speaker__content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.speaker__img {
    width: 100%;
    max-width: 517px;
}

@media (max-width:800px) {
    .speaker__img{
        width: 331px;
        height: 466px;
    }
}

.speaker__title {
    color: #FFF;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 126%;
    position: absolute;
    width: 30%;
    left: 93px;
    top: 12%;
}

.speaker__subtitle {
    color: #FFF;
    max-width: 435px;
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: 142%;
    position: absolute;
    bottom: 20%;
    right: -60px;
}

.speaker__name {
    color: #FFF;
    text-align: right;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 126%;
    padding-top: 15px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.speaker__name>span {
    font-weight: 700;
    font-size: 18px;
    line-height: 126%;
    text-align: right;
    color: #52b4b1;
}

.mobile__speaker-img {
    display: none;
}

@media (max-width:1080px) {
    .speaker__inner {
        padding: 80px 0px;
        padding-bottom: 240px;
    }

    .speaker__title {
        color: #FFF;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 126%;
        top: -5%;
        width: 40%;
        left: 0;
        /* 31.5px */
    }

    .speaker__subtitle {
        color: #FFF;
        font-family: "Open Sans";
        font-size: 15px;
        font-style: normal;
        font-weight: 300;
        line-height: 142%;
        width: 50%;
        right: 0;
        /* 21.3px */
    }

    .speaker__name {
        font-size: 16px;
    }
}

@media (max-width:550px) {
    .speaker__content {
        justify-content: start;
        padding-left: 14px;
    }

    .speaker__title {
        font-size: 25px;
        width: 85%;
        top: -5%;
        left: 0;
    }

    .speaker__subtitle {
        width: 85%;
        padding: 16px;
        left: 50%;
        transform: translateX(-50%);
        right: 0;
        bottom: -20%;
        background-color: rgba(0, 0, 0, 0.8);
    }

    .speaker__name {
        bottom: -40%;
    }
}


.slider {
    padding-bottom: 195px;
}


.slider__text {
    color: #8A3B52;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 126%;
    text-decoration-line: underline;
}

.slider__inner {
    margin-top: 86px;
    width: 100%;
    height: 1026px;
    background-image: url(../img/slider/slider24.webp);
    /* ширина и высота кратинки */
    animation: move-right 40s linear infinite;
    animation-direction: alternate-reverse;
}

@media (max-width:1080px) {
    .slider__inner {
        margin-top: 23px;
        height: 671px;
        background-size: cover;
    }
}

@keyframes move-right {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: -100% 0%;
        /* move the background image to the left by 100% */
    }
}


@media (max-width:550px) {
    .winner{
        display: none;
    }
}


.winner__title {
    color: #FFF;
    font-family: "Open Sans";
    font-size: 74px;
    font-style: normal;
    font-weight: 700;
    line-height: 126%;
    text-transform: uppercase;
    /* 93.24px */
}

@media (max-width:1080px) {
    .winner__title {
        font-size: 54px;
        text-align: center;
    }

}


.winner__title>span {
    font-weight: 300;
}

.winner__wrapper {
    padding-top: 124px;
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 20px;
    align-items: center;
}

@media (max-width:1360px) {
    .winner__wrapper {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
    }
}

@media (max-width:650px) {
    .winner__wrapper {
        display: flex;
        gap: 0;
        padding-bottom: 64px;
    }

    .winner__title {
        font-size: 35px;
    }
}



.winner__card {
    display: flex;
    flex-direction: column;
}

.winner__card-upper {
    display: flex;
    max-height: 641px;
    height: 100%;
}

.winner__card-upper>img {
    width: 440px;
    height: 641px;
}

@media (max-width:800px) {
    .winner__card-upper>img {
        width: 345px;
        height: 517px;
    }
}

.winner__card-lower {
    background: #0D0D0D;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 37px 0px;
}

.winner__card-title {
    color: #FFF;
    text-align: center;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 126%;
    padding-top: 21px;
    width: 80%;
}

.winner__card-subtitle{
    color: #999999;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 126%;
    padding-top: 5px;
    width: 80%;
}

.winner__card-text {
    color: #8A3B52;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    padding-top: 22px;
    /* 21px */
}

.swiper-button-prev,
.swiper-button-next {
    display: none;
}

@media (max-width:650px) {

    .swiper-button-prev,
    .swiper-button-next {
        display: block;
        display: block;
        bottom: 0;
        top: inherit;
        width: auto;
    }

    .swiper-button-prev {
        left: 40%;
    }

    .swiper-button-next {
        right: 40%;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 32px;
        color: #999999;
    }
}


.nomination {
    padding-top: 195px;
    padding-bottom: 120px;
}

.nomination__inner {
    padding-top: 129px;
}

.nomination__list {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.nomination__block-center {
    display: flex;
    padding-top: 50px;
}

.nomination__left,
.nomination__right {
    width: 50%;
}

.nomination__left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.nomination__block-title {
    color: #FFF;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 126%;
    /* 44.1px */
}

.nomination_for__text:nth-child(10){
    border-top: 1px solid #52B4B1;
}

.nomination__block-text {
    color: #999;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 142%;
}

.nomination__link {
    color: #999;
    text-align: center;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 142%;

    border-radius: 68px;
    border: 0.5px solid #999;
    background: #000;

    padding: 10px 16px;
    max-width: 224px;
    width: 100%;
}

.nomination__open-button {
    margin-top: 10px;
}

.nomination__plaque {
    margin-top: 38px;
}

.nomination__plaque-text {
    color: #52B4B1;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 142%;
}

.nomination__plaque-center {
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
}

.nomination__plaque-left {
    width: 13.5%;
    display: flex;
    justify-content: center;
    align-items: start;
}

.nomination__plaque-right {
    width: 80%;
}

.nomination__plaque-right-old {
    width: 100%;
}

.nomination__logo-list {
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
}

@media (max-width:1080px) {
    .nomination__block-center {
        flex-direction: column;
        gap: 36px;
    }

    .nomination__left,
    .nomination__right {
        width: 100%;
    }
}

.nomination-logo {
    max-width: 183px;
    border-radius: 100px;
}

@media (max-width:600px) {
    .nomination-logo {
        max-width: 70px;
        border-radius: 40px;
    }

    .nomination__block-title {
        font-size: 25px;
    }

    .nomination__block-text {
        font-size: 15px;
    }

    .nomination__plaque-text {
        font-size: 12px;
        width: 30%;
    }

    .nomination__plaque-left {
        width: 20%;
    }

    .nomination__plaque-right {
        width: 70%;
    }

    .nomination__plaque-right-old {
        width: 100%;
    }


    .nomination__logo-list {
        gap: 16px;
    }
}

.callback {
    padding-top: 164px;
}

.mobile__callback{
    padding-top: 100px;
}

@media (max-width:550px) {

}

@media (max-width:800px) {
    .callback {
        padding-top: 140px;
    }
    .mobile__callback{
        padding-top: 60px;
    }
}

.callback__inner {
    border: 1px solid rgba(192, 150, 81, 0.35);
    background: #000;
    box-shadow: 0px 0px 70px 2px rgba(138,59,82, 0.25);

    padding: 72px 250px;
    display: flex;
    justify-content: space-between;
}

@media (max-width:1240px) {
    .callback__inner {
        padding: 72px 150px;
    }
}

@media (max-width:1080px) {
    .callback__inner {
        padding: 72px 60px;
    }
}

.callback__left {
    width: 40%;
}

.callback__right {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}

@media (max-width:800px) {
    .callback__right {
        width: 100%;
    }

    .callback__left {
        display: none;
    }

    .callback__inner {
        flex-direction: column;
        padding: 36px 32px;
    }
}

.callback__name {
    color: #FFF;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 132.1%;
    letter-spacing: -0.21px;
    padding-top: 35px;
}

.callback__info {
    color: #FFF;
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: 132.1%;
    letter-spacing: -0.21px;
    padding-top: 10px;
}

.callback__title {
    color: var(--Basic-White, #FFF);
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 124%;
    /* 43.4px */
}

@media (max-width:550px) {
    .callback__title {
        color: var(--Basic-White, #FFF);
        font-size: 25px;
        font-style: normal;
        font-weight: 700;
        line-height: 124%;
    }
}

.callback__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.callback__input {
    background: #FFF;
    backdrop-filter: blur(32px);
    padding: 16px 16px;
    color: #757475;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 116%;
}

.callback__button {
    color: #1F1E1E;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 142%;
    padding: 14px 16px;
    background: #8A3B52;
    transition: all 0.3s ease-in-out;
}

.callback__button:disabled {
    opacity: 0.6;
    background-color: #99a9a8;
}

.checkbox__label {
    display: flex;
    gap: 16px;
    align-items: center;
}

.checkbox__text {
    color: #999;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 142%;
    /* 17.04px */
}

@media (max-width:550px) {
    .checkbox__text {
        font-size: 10px;
    }
}

.checkbox__input {
    width: 30px;
    /* Размер чекбокса */
    height: 30px;
    border: 1px solid #8A3B52;
    background: #000;
    border-radius: 50%;
    appearance: none;
    cursor: pointer;
    position: relative;
}

@media (max-width:550px) {
    .checkbox__input {
        /* width: 36px; */
    }
}

.checkbox__input::before {
    /* Создание псевдоэлемента для галочки */
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-70%, -50%) scale(0);
    /* Скрываем галочку по умолчанию */
    width: 15px;
    height: 9px;
    border-left: 3px solid #fff;
    /* Зеленая линия */
    border-bottom: 3px solid #fff;
    border-radius: 2px;
    /* Зеленая линия */
    transform-origin: 50% 0;
    /* Точка вращения */
    transition: all 0.2s ease;
    /* Плавное появление */
}

.checkbox__input:checked::before {
    /* Изменение галочки при нажатии */
    transform: translate(-70%, -50%) scale(1) rotate(320deg);
}

.organizators {
    padding-top: 158px;
}

.organizators__inner {
    display: flex;
    flex-direction: column;
    gap: 150px;
    padding: 0px 100px;
    padding-top: 216px;
}

.organizators__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.organizators__item:nth-child(2) {
    flex-direction: row-reverse;
}

.organizators__text-block {
    width: 55%;
    margin-bottom: auto;
    padding-top: 15px;
}

.organizators__title {
    color: var(--Basic-White, #FFF);
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 126%;
    padding-bottom: 33px;
    /* 44.1px */
}

.organizators__subtitle {
    color: #808080;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 142%;
}

.organizators__circle {
    display: flex;
    align-items: center;
    justify-content: center;

    max-width: 300px;
    width: 100%;
    max-height: 300px;
    height: 300px;
    border-radius: 300px;
    /* padding-top: 50px; */
}

.organizators__circle-brown {
    background: #C09651;
}

.organizators__circle-red {
    background: #EC5555;
}

.organizators__circle-white {
    background: white;
    border-radius: 50%;
    max-width: 250px;
    width: 100%;
}

.organizators__circle-grey {
    background: #757475;
}

.organizators__circle-blue {
    background: #52B4B1;
}

@media (max-width:1080px) {
    .organizators__inner {
        padding: 0px 0px;
        padding-top: 97px;
    }

    .organizators__item {
        flex-direction: row-reverse;
    }
}

@media (max-width:750px) {
    .organizators__circle {
        width: 150px;
        height: 150px;
    }

    .organizators__circle>img {
        width: 80%;
    }

    .organizators__text-block {
        width: 70%;
    }
}

@media (max-width:550px) {
    .organizators__title {
        color: var(--Basic-White, #FFF);
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 126%;
    }

    .organizators__subtitle {
        color: #999;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 142%;
    }

    .organizators__inner {
        gap: 70px;
    }

    .organizators__item {
        align-items: start;
    }

    .organizators__text-block {
        width: 80%;
        padding-left: 16px;
    }

    .organizators__circle {
        width: 75px;
        height: 75px;
    }
}

footer {
    border: 1px solid rgba(153, 153, 153, 0.10);
    background: #000;
    box-shadow: -7px -10px 57.1px 0px rgba(82, 180, 177, 0.15);
    margin-top: 200px;
}

@media (max-width:550px) {
    footer {
        margin-top: 100px;
    }
}

.footer__inner {
    padding-top: 70px;
}

.footer__upper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width:1080px) {
    .footer__upper {
        flex-direction: column;
        gap: 40px;
    }
}

.footer__logo-list {
    display: flex;
    gap: 15px;
    align-items: center;
}

@media (max-width:1080px) {
    .footer__logo-list {}

    .footer__logo-list--item>img {
        width: 100%;
    }
}

@media (max-width:550px) {
    .footer__logo-list {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.footer__upper-right {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 46px;
    width: 55%;
}

@media (max-width:1080px) {
    .footer__upper-right {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width:550px) {
    .footer__upper-right {
        flex-direction: column;
        align-items: start;
        gap: 19px;
    }
}

.footer__upper-right--text {
    color: #FFF;
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: 132.1%;
    letter-spacing: -0.21px;
}

@media (max-width:550px) {
    .footer__upper-right--text {
        font-size: 15px;
        line-height: 132.1%;
        letter-spacing: -0.15px;
    }
}

.footer__addr {
    color: #999;
    font-style: normal;
    font-weight: 300;
    line-height: 132.1%;
    letter-spacing: -0.21px;
}

.point-blue {
    color: #52B4B1;
    text-align: center;
    font-size: 8px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    padding: 0 10px;
}

.footer__button {
    max-width: 223px;
    width: 100%;
    color: #000;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 142%;

    padding: 10px 16px;
    border-radius: 68px;
    background: #8A3B52;
}

.footer__center {
    padding-top: 80px;
    display: flex;
    justify-content: space-between;
}

@media (max-width:1080px) {
    .footer__center {
        /* justify-content: space-evenly; */
    }
}

.footer__list-links {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 5px;
    column-gap: 100px;
    max-height: 150px;
}

@media (max-width:1080px) {
    .footer__list-links {
        max-height: none;
        gap: 0;
    }
}

.footer__links--item {
    color: #999;
}

.footer__links--item:nth-child(1) {
    color: #8A3B52;
    text-decoration-line: underline;
}

.footer__link {
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: 132.1%;
    /* 27.741px */
    letter-spacing: -0.21px;
}

@media (max-width:550px) {
    .footer__link {
        font-size: 10px;
        line-height: 132.1%;
        /* 13.21px */
        letter-spacing: -0.1px;
    }
}

.footer__center-right {
    padding-right: 130px;
}

@media (max-width:1080px) {
    .footer__center-right {
        padding-right: 0;
        padding-left: 48px;
        border-left: 1px solid #999999;
        display: flex;
        align-items: center;
    }
}

.footer__person-list {
    display: flex;
    gap: 100px;
}

@media (max-width:1080px) {
    .footer__person-list {
        flex-direction: column;
        gap: 20px;
    }
}

.footer__person-list--item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width:550px) {
    .footer__person-list--item {
        gap: 5px;
    }
}

.footer__person--name {
    color: #FFF;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 132.1%;
    letter-spacing: -0.21px;
}

@media (max-width:550px) {
    .footer__person--name {
        font-size: 10px;
        line-height: 132.1%;
        letter-spacing: -0.1px;
    }
}

.footer__person--info {
    color: #FFF;
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: 132.1%;
    letter-spacing: -0.21px;
}

@media (max-width:550px) {
    .footer__person--info {
        font-size: 10px;
        line-height: 132.1%;
        letter-spacing: -0.1px;
    }
}

.footer__lower {
    padding-top: 80px;
}

.footer__info-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width:550px) {
    .footer__info-list {
        gap: 6px;
        row-gap: 3px;
    }
}

.footer__list--item {
    color: #999;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 126%;
}

@media (max-width:550px) {
    .footer__list--item {
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 126%;
        /* 12.6px */
    }
}

.form__container {
    max-width: 528px;
}

.form__inner {}

.form__upper--content {
    padding-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 65px;
}

.form__title {
    color: #FFF;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 132%;
}

.form__subtitle {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 136%;
}

.form__warning-block {
    border-radius: 8px;
    border-left: 2px solid #C199CB;
    background: #8A3B52;
    padding: 24px 54px 43px 16px;
    padding-left: 16px;
    padding-top: 24px;
    padding-right: 54px;
    padding-bottom: 43px;
    position: relative;
}

.form__warning-title {
    color: #C199CB;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 132%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.form__warning-subtitle {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 136%;
    padding-left: 43px;
    padding-top: 12px;
    /* 21.76px */
}

.form__warning-close {
    position: absolute;
    right: 16px;
    top: 16px;
}

.main__form {
    display: flex;
    flex-direction: column;
    gap: 65px;
    padding-top: 65px;
    padding-bottom: 65px;
}

.form__input {
    border-radius: 8px;
    background: #242424;
    box-shadow: 0px -1px 0px 0px #393939 inset;
    padding: 24px 16px;
    color: #969696;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 132%;
}

.form__section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form__section-title {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 132%;
    padding-bottom: 8px;
}

.form__section-subtitle {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 132%;
    /* 21.12px */
}

.file__container {
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 5px;
    border: 1px dashed #393939;
    padding: 32px;
    cursor: pointer;
}

.upload__file-title {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 132%;
}

.upload__file-title>span {
    color: #8A3B52;
}

.upload__file-subtile {
    color: #969696;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 132%;
}

.file__info-block {
    display: flex;
    align-items: center;
    gap: 8px;
}

.file__info {
    color: #7C7C7C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 132%;
    /* 21.12px */
}

.form__input-textarea {
    color: #999;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 132%;
    border-radius: 5px;
    border: 1px solid #393939;
    resize: vertical;
    background-color: transparent;
    padding: 5px 15px;
}

.form__section-checkbox {
    display: flex;
    gap: 12px;
}

.form__section-checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    height: 20px;
    max-width: 20px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #5A5A5A;
    background-color: transparent;
    cursor: pointer;
    position: relative;
}

/* Styling for the checkmark (add this part) */
.form__section-checkbox input[type="checkbox"]:checked:after {
    content: "";
    position: absolute;
    top: 10%;
    left: 7px;
    width: 6px;
    height: 10px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}

.form__checkbox-input {
    width: 20px;
    height: 20px;
}

.form__checkbox-subtitle {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 132%;
}

.form__checkbox-subtitle_inner{
    padding-left: 38px;
}

.sub_button {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 132%;
    letter-spacing: 0.4px;
    padding: 24px;
    margin-top: 24px;
    width: 100%;
    border-radius: 100px;
    background: #8A3B52;
    box-shadow: 0px 1px 1px 0px rgba(255, 255, 255, 0.56) inset;
}

.sub_button:disabled {
    opacity: 0.6;
}

.experts__title--page {
    font-weight: 700;
    font-size: 35px;
    line-height: 126%;
    color: #fff;
}

.experts__textBlock {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 36px;
    padding-bottom: 150px;
}

.experts__textBlock--text {
    font-weight: 300;
    font-size: 21px;
    line-height: 142%;
    color: #fff;
    max-width: 869px;
}

@media (max-width:550px) {
    .experts__textBlock--text {
        font-size: 16px;
    }
}

.experts__block--2 {
    padding-top: 128px;
}

@media (max-width:550px) {
    .experts__block--2 {
        padding-top: 64px;
    }
}

.experts__block--title {
    font-weight: 700;
    font-size: 35px;
    line-height: 126%;
    color: #52b4b1;
}

@media (max-width:550px) {
    .experts__block--title {
        padding-top: 36px;
    }
}

.experts__title {
    font-weight: 700;
    font-size: 21px;
    line-height: 126%;
    text-align: center;
    color: #52b4b1;
}

.experts__subtitle {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 18px;
    line-height: 128%;
    text-align: center;
    color: #fff;
    padding-top: 33px;
    max-width: 300px;
}

.experts__card-lower {
    background: #0D0D0D;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0px;
    max-height: 220px;
    height: 100%;
}