
@font-face {
    font-family: Monserrat;
    src: url('fonts/Montserrat.ttf');
}

@font-face {
    font-family: Franklin;
    src: url('fonts/frank.ttf');
}

@font-face {
    font-family: FranklinBold;
    src: url('fonts/frank-bold.ttf');
}

/* Стили для плашки */
.notice {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ff0000;
    color: white;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1000;
    width: 80%;
    max-width: 600px;
    border: 3px solid black;
    border-radius: 5px; 
}
.notice-text {
    font-size: 24px;
    margin-bottom: 10px;
}
.notice-close-button {
    background: #df0000;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: auto; /* Выравнивание кнопки внизу */
    transition: background 0.3s;
    border: 1px solid black;
}
.notice-close-button:hover {
    background: #cf0000;
}

/* Разметка секций */
.grid_main {
    display: grid;
    grid-template-rows: max-content;
}

/* Секцния "О ВЫСТАВКЕ" */
.sec_about {
    grid-row-start: 1;
    grid-row-end: 1;
    background-image: url(img/sections/sec5_background_2.png);
}
.sec_about_wrap{
    padding: 50px 10px;
}
/* Секция "РАЗДЕЛЫ ВЫСТАВКИ" */
.sec_sections {
    grid-row-start: 2;
    grid-row-end: 2;
    background-image: url(img/sections/sec2-3_background.png);
    background-size: cover;
}
.sec_sections_wrap{
    padding: 0px 10px;
    padding-bottom: 50px;
}

/* Разметка секции "РАЗДЕЛЫ ВЫСТАВКИ" */
.sec_sections_grid {
    display: grid;
    grid-template:  "f f e e"
                    "b b e e"
                    "b b i i"
                    "b b i i"
                    "c c d d"
                    "c c d d";
}
/* Ячейки секции "РАЗДЕЛЫ ВЫСТАВКИ" (grid) - начало */
.grid_sections1 {
    grid-area: f;
    padding-top: 50px;
    padding-bottom: 20px;
}
.grid_sections2 {
    grid-area: b;
}
.grid_sections3 {
    grid-area: e;
    text-align: end;
}
.grid_sections4 {
    grid-area: i;
    text-align: end;
    margin-bottom: 5px;
}
.grid_sections5 {
    grid-area: c;   
}
.grid_sections6 {
    grid-area: d;
    display: flex;
    align-items: center;
}
/* Ячейки секции "РАЗДЕЛЫ ВЫСТАВКИ" (grid) - конец */

/* Секция "ПОСЕТИТЕЛИ" */
.sec_visitors {
    grid-row-start: 3;
    grid-row-end: 3;
    background-image: url(img/sections/sec2-3_background.png);
    background-position: 25% 79%;
    background-size: cover;
}

.sec_visitors_wrap{
    padding-top: 50px;
}

.ticket_form {
    font-size: 18px;
}

/* Секция "НОВОСТИ" */
.sec_news{
    grid-row-start: 4;
    grid-row-end: 4;
    background-image: url(img/sections/sec5_background_2.png);
    background-size: 100%;
    padding: 50px 0px;
    padding-top: 80px;
}
.sec_subscribe{
    background: rgb(239,0,96);
    background: linear-gradient(65deg, rgba(239,0,96,1) 30%, rgba(66,36,77,1) 93%);
    padding: 20px 0;
}
.button_subscribe{
    padding-left: 0px !important;
    padding-right: 0px !important;
    background: linear-gradient(to right, rgb(120 79 197), rgb(25 0 229)) !important;
}
.button_subscribe_wrap{
    text-align: center;
}
.sec_news_all_news_btn_wrap{
    text-align: end;
}
.sec_news_all_news_btn{
    color: white;
}
.sec_news_all_news_btn:hover{
    color: white;
    text-decoration: none;
}

/* Секция "КОМПЛЕКСНЫЙ МЕДИА СТЭК" */
.sec_media {
    grid-row-start: 4;
    grid-row-end: 4;
    background-size: 100%;
}
.sec_place_main_text{
    color: white;
    font-size: 26px;
    font-weight: 100;
    line-height: 1.2;
    text-align: justify;
    padding-top: 10px; 
}
.sec_media_wrap{
    padding-bottom: 80px;
    display: flex;
    align-items: center;
}

.participants_sec_wrap{
    padding: 15px 0;
    display: flex;
    gap: 20px;
}
.participants_sec_wrap_text>p{
    line-height: 1.4;
    text-align: justify;
}
.participants_section_middl_text{
    text-align: justify;
}
/* Секция "МЕСТО ПРОВЕДЕНИЯ" */
.sec_place {
    grid-row-start: 5;
    grid-row-end: 5;
    background-image: url(img/sections/sec5_background_2.png);
    background-size: 100%;
    padding-top: 50px;
    padding-top: 80px;
}

/* Секция "ПРИНЯТЬ УЧАСТИЕ" */
.sec_form {
    grid-row-start: 6;
    grid-row-end: 6;
    background-image: url(img/sections/sec5_background_2.png);
    background-size: 100%;
    padding-top: 60px;
}

.sec_form .frame_title {
    margin-bottom: 40px;
}

/* Стиль заголовка */
.main_title {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 32px;
    color: white;
}

/* Задний фон заголовков */
.frame_title {
    width: fit-content;
    padding-left: 5%;
    padding-right: 5%;
    text-align: center;
    border: none;
    border-radius: 50px;
    background: linear-gradient(to right, rgb(122, 15, 53), rgb(232, 10, 128));
}

.frame_title_about, .frame_title_visitors{
    margin-bottom: 25px;
}

.button {
    margin: 1%;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 20px;
    color: white;
    width: 250px;
    height: 50px;
    padding-left: 5%;
    padding-right: 5%;
    text-align: center;
    border: none;
    border-radius: 50px;
    background: linear-gradient(to right, rgb(122, 15, 53), rgb(232, 10, 128));
    cursor: pointer;
    transition: all .4s;
}

.button:hover {
    border: 1px solid white;
}

.btn_about:hover{
    transform: scale(1.1);
    box-shadow: 8px 8px 15px #0000007d;
    border: none;
}

.btn_about{
    padding-left: 0px !important;
    padding-right: 0px !important;
    background: linear-gradient(to right, rgb(120 79 197), rgb(25 0 229)) !important;
}

/* Стиль текста */
.main_text {
    color: white;
    font-size: 26px;
    font-weight: 100;
    line-height: 1.4;
    text-align: justify;
    padding-top: 24px;
}

/* Изображения, обтекаемые текстом */
.steamlined_img {
    float: inline-start;
    padding-right: 20px;
    padding-top: 30px;
    width: 500px;
}

/* Список "РАЗДЕЛЫ ВЫСТАВКИ" */
.grid_sections5{
    padding-top: 40px;
}

.list_sections {
    list-style-type: none;
}

/* Пункты списка "РАЗДЕЛЫ ВЫСТАВКИ" */
.list_sections li {
    line-height: 1.1;
    font-size: 32px;
    color: white;
    font-weight: 300;
}

/* Маркер списка "РАЗДЕЛЫ ВЫСТАВКИ" */
.list_sections li::before {
    content: "";
    display: grid;
    position: relative;
    right: 30px;
    top: 30px;
    width: 23px;
    height: 23px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: linear-gradient(to bottom, rgb(18, 0, 95), rgb(253, 0, 1));
}

/* Жирный текст */
.bold_lettering {
    font-weight: 700;
}

/* Центрированные изображения */
.img_center {
    text-align: center;
    width: 100%;
}

/* Изобрыжение из секции "КОМПЛЕКСНЫЙ МЕДИА СТЭК" */
.circle {
    width: 35%;
}

/* Контейнер для формы */
.form_container {
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

/* Заголовок плашки "Подписаться", которая идёт после Блога */
.subscribe_title {
    text-align: center;
    font-size: 28px;
    color: white;
}

.btn_sec_about {
    display: flex;
    justify-content: space-around;
    padding-top: 40px;
}

.form_container form {
    color: white;
    width: 450px;
    margin-right: 50px;
    padding-top: 70px;
}

.sec_form_wrap{
    background-image: url(img/sections/forma_background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 43%;
}
.stand_form_input > input{
    margin-bottom: 20px;
}

.stand_form_input{
    font-size: 22px;
}
/* Стили раздела участникам */
.participants_section{
    background-image: url(img/sections/sec2-3_background.png);
    background-size: cover;
}
.sub_title{
    padding-bottom: 20px;
    padding-top: 50px;
}
.sub_title > h3 {
    background: linear-gradient(65deg, rgba(39, 42, 111, 1) 30%, rgba(52, 86, 166, 1) 93%);
    width: 55%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section_visitors{
    background-image: url(img/sections/sec5_background_2.png);
    background-size: cover;
    padding: 40px 0px;
    padding-bottom: 0;
    color: white;
    font-size: 32px;
    font-weight: 100;
    line-height: 1.2;
    text-align: justify;
}
.section_visitors_main_text{
    font-size: 26px;
}
.section_visitors_place{
    background-image: url(img/sections/sec2-3_background.png);
    background-size: cover;
    font-size: 26px;
}
.visitors_ul{
    column-count: 2;
    text-align:left;
    list-style: none;
}
.visitors_ul > li{
    position: relative;
    z-index: auto;
}
.visitors_ul > li > p{ 
    position: relative;
    z-index: 20;
    margin-bottom: 82px;
    background-color: #542385c7;
    font-size: 20px;
    margin-left: 50px;
    padding: 10px;
    height: 100px;
    width: 400px;
    border-radius: 15px;
    border: 1px solid white;
    display: flex; 
    align-items: center; 

}
.visitors_ul > li > .circle_1 {
    display: block;
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid #c163cf;
    border-radius: 100%;
    top: 33px;
    left: 33px;
}

.visitors_ul > li > .circle_2 {
    display: block;
    position: absolute;
    width: 75px;
    height: 75px;
    border: 3px dashed #c163cf;
    border-radius: 100%;
    top: 25px;
    left: 25px;
}

.visitors_ul > li > .circle_3 {
    display: block;
    position: absolute;
    width: 85px;
    height: 85px;
    border: 3px solid #0076c9;
    border-radius: 100%;
    top: 20px;
    left: 20px;
}

.visitors_ul > li > .circle_4 {
    display: block;
    position: absolute;
    width: 105px;
    height: 105px;
    border: 3px solid #04b7e9;
    border-radius: 100%;
    top: 10px;
    left: 10px;
}

.visitors_ul > li > .circle_5 {
    display: block;
    position: absolute;
    width: 125px;
    height: 125px;
    border: 3px solid #83d7fd;
    border-radius: 100%;
}

.visitors_btns_wrap{
    background-color: #6a66be;
    padding: 50px 0;
}
.visitors_btns_subwrap{
    display: flex;
    gap: 50px;
}
.visitors_btns_ticket, .visitors_btns_participants_list{
    display: flex;
    width: 50%;
    background: white;
    border-radius: 35px;
}

.visitors_btns_ticket_text_wrap, .visitors_btns_participants_text_wrap{
    display: flex;
    flex-direction: column;
    width: 60%;
    padding: 15px 15px 0 15px;
}
.visitors_btns_ticket_img_wrap, .visitors_btns_ticket_participants_wrap{
    height: 100%;
    width: 40%;
}
.visitors_btns_ticket_img_wrap > img, .visitors_btns_ticket_participants_wrap > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-bottom-left-radius: 35px;
    border-top-left-radius: 35px;
    overflow: hidden;
}
.visitors_btns_ticket_text, .visitors_btns_participants_text{
    font-size: 21px;
    color: grey;
    text-align: start;
}
.visitors_btns_ticket_text_btn, .visitors_btns_participants_text_btn{
    color: black;
    text-align: center;
    font-weight: 400;
    padding-bottom: 10px;
    transition: all .3s;
    text-align: start;
    font-size: 27px;
}

.visitors_btns_ticket_text_wrap a, .visitors_btns_participants_text_wrap a{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-block-start: auto;
    margin-bottom: 15px;
}
.schedule_address, .schedule_address:hover{
    color:white
}
.visitors_btns_ticket_text_wrap a:hover, .visitors_btns_participants_text_wrap a:hover{
    text-decoration: none;
    color: white;
}

.sections_buisiness_program, .section_press, .section_realease{
    padding:50px 0;
    background-image: url(img/sections/sec2-3_background.png);
    background-size: cover;
}

/* Стили раздела участникам */

.presentation_btn_wrap {
    display: flex;
    justify-content: center;
    padding-bottom: 2vh;
}


/* Стили раздела "Контакты" - начало */

/* Секция "Контакты" */
.sec_contacts {
    margin: 50px 0;
    font-size: 24px;
}

.sec_contacts a, .sec_contacts a:hover {
    color: white;
}

/* Стили раздела "Контакты" - конец */



/* Стили раздела "Партнеры" - начало */

/* Контейнер под логотипы партнеров */
.partners_container {
    padding-top: 3vh;
}

/* Отображение логотипов */
.partners_container > a {
    display: inline-block;
    margin: 0.5vh 0.5vw;
}

/* Стили раздела "Партнеры" - конец */


/* Стили новостей */
.news_19_06_2024 > ul > li::before {
content: "✓ ";
}

.news_19_06_2024 {
    width: 30vw;
}



@media (max-width: 1024px) {
    
    .sections_img {
        width: 80%;
    }

    .participants_sec_img {
        width: 400px;
    }

    .participants_sec_wrap_text>p {
        font-size: 20px;
    }

    .sec_media_text {
        font-size: 20px;
    }

    .participants_section_middl_text {
        font-size: 20px;
    }

}

@media (max-width: 768px) {
    .visitors_btns_ticket_img_wrap, .visitors_btns_ticket_participants_wrap{
        height: auto;
    }
    .participants_sec_img {
        width: 300px;
    }

    .participants_sec_wrap_text>p {
        font-size: 16px;
    }

    .sec_media_text {
        font-size: 16px;
    }

    .participants_section_middl_text {
        font-size: 16px;
    }

    .visitors_ul > li > p {
        width: 280px;
        font-size: 18px;
    }

    .visitors_btns_subwrap{
        flex-direction: column;
    }

    .visitors_btns_ticket, .visitors_btns_participants_list {
        width: 100%;
    }

    .visitors_btns_ticket_text, .visitors_btns_participants_text {
        font-size: 18px;
    }


    .section_visitors_main_text, .section_visitors_place {
        font-size: 20px;
    }

    /* Стили новостей */
    .news_19_06_2024 {
        width: 80vw;
    }
}

@media (max-width: 425px) {

    .steamlined_img {
        padding: 20px 20px 20px 0px;
        width: 370px;
    }

    .frame_title {
        margin: 0 auto;
    }

    .btn_about {
        font-size: 17px;
        width: fit-content;
    }

    .sec_sections_grid {
        display: grid;
        grid-template:  "f"
                        "b"
                        "d";
    }


    .grid_sections3 {
        display: none;
    }
    .grid_sections4 {
        display: none;
    }
    .grid_sections5 {
        display: none;
    }

    .list_sections li {
        font-size: 25px;
    }

    .main_text {
        font-size: 20px;
    }

    .circle {
        display: none;
    }

    .participants_sec_wrap {
        flex-direction: column;
    }

    .participants_sec_img {
        width: 370px;
    }

    .sec_media_text {
        font-size: 16px;
    }

    .visitors_ul{
        column-count: 1;
    }

    .visitors_ul > li > p {
        width: 250px;
        font-size: 16px;
    }

    .visitors_btns_ticket_text_btn, .visitors_btns_participants_text_btn {
        font-size: 22px;
    }

    .visitors_btns_ticket_text, .visitors_btns_participants_text {
        font-size: 16px;
    }

    .section_visitors_main_text, .section_visitors_place, .sec_contacts {
        font-size: 20px;
    }

    .row_margin {
        margin: 0;
    }

}

@media (max-width: 375px) {
    
    .steamlined_img {
        width: 330px;
    }

    .participants_sec_img {
        width: 330px;
    }

    .visitors_ul > li > p {
        width: 230px;
        font-size: 16px;
    }
}

@media (max-width: 320px) {

    .steamlined_img {
        width: 270px;
    }

    .participants_sec_img {
        width: 270px;
    }

    .visitors_ul > li > p {
        width: 180px;
        font-size: 13px;
    }
}