@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --border-radius: 28px;
    --border-radius-m: 16px;
    --color-white: #ffffff;
    --color-text: #0a1048;
    --color-light-grey: #f4f5f6;
    --color-blueviolet: #5a43da;
    --color-red: #E47896;
}

html {
    font-size: 16px;
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    font-family: "Fira Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 400;
    color: var(--color-text);
}

main {
    flex: 1 0 auto;
}

.container {
    width: 94%;
    max-width: 1400px;
}

.hoverable:hover {
    box-shadow: 0 8px 17px 0 #48668540, 0 6px 20px 0 #48668540;
}

.divider {
    margin: 80px 0;
}
/* 
.btn-red, .btn-red:active, .btn-red:focus {
	background: var(--color-red);
}

.btn-blue, .btn-blue:active, .btn-blue:focus {
	background: #060552;
}

.btn-gradient, .btn-gradient:active, .btn-gradient:focus {
    background: rgb(228,120,150);
    background: -webkit-linear-gradient(164deg, rgba(228,120,150,1) 0%, rgba(98,71,231,1) 100%);
    background: -moz-linear-gradient(164deg, rgba(228,120,150,1) 0%, rgba(98,71,231,1) 100%);
    background: -o-linear-gradient(164deg, rgba(228,120,150,1) 0%, rgba(98,71,231,1) 100%);
    background: linear-gradient(164deg, rgba(228,120,150,1) 0%, rgba(98,71,231,1) 100%);
} */

.glass-effect {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.33);
  box-shadow: 0 0 24px -7px rgba(0, 0, 0, 0.4);
}

.section {
    padding: 80px 0;
    
    .section-title {
        font-size: clamp(1.4rem, 1.012rem + 1.657vw, 3rem);
        line-height: clamp(1.2, 1.573 + -0.019vw, 1.5);
        text-transform: uppercase;
        font-weight: 500;
    }
}

.text-red {
    color: var(--color-red);
    font-weight: 500;
}

.d-flex {
    display: flex !important;
}

.buttons-container {
    display: flex;
    gap: 20px;
}

.button {
    display: inline-flex;
    background-color: var(--color-white);
    align-items: center;
    border-radius: var(--border-radius-m);
    box-sizing: border-box;
    cursor: pointer;
    justify-content: center;
    position: relative;
    text-align: center;
    text-decoration: none;
    touch-action: manipulation;
    transition: .3s ease-in-out;
    user-select: none;
    vertical-align: middle;
    color: var(--color-text);
    min-height: 56px;
    min-width: 180px;
    font-size: 1rem;
    opacity: 1;
    padding: 0 28px;

    &:hover {
        opacity: 0.7;
    }

    &.button-red {
        background-color: var(--color-red);
        color: var(--color-white);
    }

    &.button-blueviolet {
        background-color: var(--color-blueviolet);
        color: var(--color-white);
    }

    &.button-light-grey {
        background-color: var(--color-light-grey);
        color: var(--color-text);
    }
}

nav  {
    background-color: transparent;
    box-shadow: none;
    height: 80px;
    line-height: 80px;

    .nav-wrapper {
        i {
            height: 80px;
            line-height: 80px;
        }
    }

    a.sidenav-trigger {
        height: 80px;
        line-height: 80px;

        i {
            height: 80px;
            line-height: 80px;
        }
    }

    ul > a {
        font-weight: bold;
    }

    .brand-logo > img {
        height: 120px;
        margin-top: 20px
    }

    i.right {
        font-size: 1.2rem;
    }

    @media screen and (max-width: 992px) {
        .brand-logo > img {
            height: 80px;
        }
    }
}

.dropdown-content {
    width: auto !important;
    top: 60px !important;
}

.dropdown-content li > a,
.dropdown-content li > span {
    font-size: 16px;
    color: #212121;
    font-weight: 500;
    display: block;
    line-height: 22px;
    padding: 14px 16px;
    transition: all .3s ease-out;
}

/*------------------------------------------------------------------------------ BLOCK 1
*/


.block-parralax.parallax-container {
    height: 100vh;

    .parallax {
        background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    }

    .flex-container {
        height: 100vh;
        margin-top: -120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    h1 {
        color: white;
        font-weight: 800;
        font-size: clamp(3rem, 1.786rem + 5.178vw, 8rem);
        line-height: clamp(1.2, 1.573 + -0.019vw, 1.5);
        margin-top: 0;
        margin-bottom: 20px;
    }

    h2 {
        color: white;
        font-weight: 400;
        font-size: clamp(1rem, 0.757rem + 1.036vw, 2rem);
        line-height: clamp(1.2, 1.573 + -0.019vw, 1.5);
        margin: 0;
    }

    .glass-effect-panel {
        background: hsla(0, 0%, 100%, .08);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        border: 1px solid hsla(0, 0%, 100%, .2);
        border-radius: var(--border-radius);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 24px 28px 28px;
        position: relative;
        text-decoration: none;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
        width: 100%;
        color: white;
        margin-bottom: 20px;
        font-size: 1.4rem;

        .glass-effect-panel__content {
            margin-bottom: 40px;
        }

        .glass-effect-panel__title {
            font-size: 2.4rem;
            font-weight: 700;
            white-space: nowrap;
        }
    }

    @media screen and (max-width: 992px) {
        height: auto;

        .flex-container {
            height: auto;
            margin-top: 80px;
            align-items: center;
            text-align: center;
        }

        .glass-effect-panel {
            .glass-effect-panel__title {
                font-size: 2rem;
            }
        }
    }
}


.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}



/*------------------------------------------------------------------------------ BLOCK 2
*/

.block-info {
    display: block;
    padding: 100px 0;
    background-color: var(--color-light-grey);

    @media screen and (max-width: 992px) {
        padding: 40px 0;
    }
}


.infografic-container {
    display: grid;
	grid-template-rows: 1fr;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	width: 100%;
	height: 100%;

    .infografic-item {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-direction: column;
        padding: 24px 28px 28px;
        position: relative;
        background-color: var(--color-white);
        border-radius: var(--border-radius);

        .infografic__number {
            font-size: clamp(2rem, 1.515rem + 2.071vw, 4rem);
            font-weight: 700;
            color: var(--color-blueviolet);
            white-space: nowrap;
        }

        .infografic__title {
            font-size: 1.2rem;
        }
    }

    @media screen and (max-width: 960px) {
        grid-template-rows: repeat(2, 1fr);
	    grid-template-columns: repeat(2, 1fr);
    }
}

.white-card-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    padding: 24px 28px 28px;
    text-align: center;
    color: var(--color-text);
    border-radius: var(--border-radius);
    min-height: 140px;

    .white-card-panel__content {
        background: linear-gradient(to right, #E47896 0%, #6247E7 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 600;
        font-size: 1.4rem;
    }
}

/*------------------------------------------------------------------------------ мы приглашаем
*/


.block-hello {
    padding: 0;

    .parallax-container {
        padding: 120px 0;
        height: auto;
    }

    .section-title { 
        text-align: center;
        color: #ffffffa8;
    }

    @media screen and (max-width: 960px) {
         .parallax-container {
            padding: 40px 0;
        }
    }
}


.stage {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;

    .card-item {
        flex: 0 0 320px;
        white-space: pre-line;
        background: hsla(0, 0%, 100%, .08);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        border: 1px solid hsla(0, 0%, 100%, .2);
        border-radius: var(--border-radius);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 24px 28px 28px;
        position: relative;
        text-decoration: none;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
        width: 100%;
        color: white;
        font-size: 1.2rem;
    }

    @media screen and (max-width: 960px) {
        .card-item {
            flex: 1;
        }
    }
}

/*------------------------------------------------------------------------------ ФОРМАТЫ УЧАСТИЯ
*/

.block-format {
    padding: 80px 0;

    .section-title {
        text-align: center;
    }

    @media screen and (max-width: 960px) {
        padding: 40px 0;
    }
}

.format-info-container {
    display: grid;
	grid-template-rows: 1fr;
	grid-template-columns: repeat(2, 1fr);
	gap: 56px;
	width: 100%;
	height: 100%;
    line-height: 140%;

    .format-info-left {
        width: 100%;
        background: var(--color-light-grey);
        background-size: cover;
        background-position: center;
        padding: 56px;
        border-radius: var(--border-radius);
        display: flex;
        align-items: center;
    }

    .format-info-right {
        padding: 56px 0;
        .format-info-right__title {
            font-size: 2rem;
            font-weight: 600;
        }
    }

    @media screen and (max-width: 960px) {
        grid-template-rows: repeat(2, 1fr);
	    grid-template-columns: 1fr;
        gap: 20px;

        .format-info-right {
            padding: 0;
        }

        .format-info-left {
            padding: 42px;
        }
    }
}


/*------------------------------------------------------------------------------ ОРГАНИЗАТОРЫ
*/


.block-organizators {
    padding: 80px 0;
    background: #f4f5f6;

    .section-title {
        text-align: center;
    }

    @media screen and (max-width: 992px) {
        padding: 40px 0;
    }
}

.org-cards-container {
    .org-card_item {
        border-radius: var(--border-radius);
        background-color: var(--color-white);
        margin-bottom: 20px;
        padding: 3rem 2rem;
        text-align: center;
        font-size: 0.9rem;
        color: var(--color-text);
        height: 300px;
        overflow: hidden;
        font-weight: 600;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        img {
            max-height: 100px;
        }
    }

     @media screen and (max-width: 992px) {
        .org-card_item {
            padding: 1rem;
            height: auto;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            font-size: 0.8rem;
            img {
                max-height: 60px;
            }
        }
    }
}


.block-partners {
    padding: 0 0 80px 0;
    background: #f4f5f6;
}

.block-partners h3 {
    font-weight: 600;
    font-size: 3rem;
    text-transform: uppercase;
}



/*------------------------------------------------------------------------------ VIDEO BLOCK
*/


.videotitle {
    padding: 10px;
    line-height: 1.2rem;
    font-size: 1rem;
}

.videotitle strong{
    font-weight: 500;
    color: var(--color-red);
    font-size: 1.4rem;
    display: block;
    margin-bottom: 10px;
}


/*------------------------------------------------------------------------------ BLOCK 4 ПРОГРАММА КОНФЕРЕНЦИИ
*/

a.video-container {
    display: block;
}

a.video-container:hover:after {
    opacity: 1;
}

a.video-container:after {
    content: 'Подключиться';
    opacity: 0;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    color: white;
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
    background: #212121;
    padding-top: 25%;
    transition: all .3s ease-out;
}

a.video-container:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.prog-section {
    background-color: var(--color-white);
    padding: 80px 0;

}

.collapsible-program {
    box-shadow: none;
    border: none;

    .collapsible-program-item {
        border-radius: var(--border-radius);
        padding: 24px;
        box-shadow: none;
        margin: .5rem 0 1rem 0;
        background-color: var(--color-light-grey);
        border: 4px solid var(--color-light-grey);

        .collapsible-program__header {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            position: relative;
            background-color: transparent;
            color: var(--color-text);
            border-bottom: 0;
            height: 120px;
            transition: all 0.3s ease-in-out;
            padding: 0;

            .collapsible-program__button {
                display: flex;
                align-items: center;
                justify-content: center;
                height: 40px;
                width: 40px;
                background-color: var(--color-blueviolet);
                transition: all 0.3s ease-in-out;
                position: relative;
                border-radius: 50%;
                padding: 10px;

                span {
                    display: inline-block;
                    width: 20px;
                    height: 3px;
                    background-color: var(--color-white);
                    border-radius: 10px;

                    &:last-child {
                        position: absolute;
                        transform: rotateZ(-90deg);
                        transition: all 0.3s ease-in-out;
                    }
                }
            }

            .collapsible-program__title {
                margin: 0;
                padding: 0;
                font-size: clamp(1.2rem, 1.006rem + 0.828vw, 2rem);
                font-weight: 500;
            }

            .collapsible-program__date {
                font-size: 0.9rem;
                color: var(--color-red);
                font-weight: 600;
            }
        }

        &.active {
            border-color: var(--color-blueviolet);
            background-color: var(--color-white);

            .collapsible-program__header {   
                .collapsible-program__button {
                    transform: rotateZ(-180deg);

                    & span {
                        &:last-child {
                            position: absolute;
                            transform: rotateZ(360deg);
                        }
                    }
                }
            }
        }

        .collapsible-body {
            border-bottom: 0;
            padding: 0;
        }

        .collapsible-program__body {
            padding-top: 20px;
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
            gap: 20px;
            position: relative;

            .collapsible-body__col-content {
                width: 100%;
            }

            .collapsible-body__col-video {
                width: 50%;
                max-width: 500px;
                border: 4px solid hsla(0, 0%, 100%, .2);
                border-radius: var(--border-radius-m);
                overflow: hidden;
                display: flex;
                flex-direction: column;
                gap: 20px;
            }
        }
    }

    @media screen and (max-width: 992px) {
        .collapsible-program-item {
            padding: 12px;

            .collapsible-program__body {
                flex-direction: column-reverse;

                .collapsible-body__col-video {
                    width: 100%;
                    max-width: 100%;
                }
            }
        }
    }
}

.collection-program {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;

    .collection-program-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;

        .collection-program__speaker {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: 12px;

            .collection-program__avatar {
                width: 100px;
                aspect-ratio: 1 / 1;
                object-fit: cover;
                border-radius: var(--border-radius-m);
                border: 4px solid hsla(0, 0%, 100%, .2)
            }

            .collection-program__multiple-avatars {
                display: flex;

                .collection-program__avatar:first-child {
                    transform: rotate(-10deg);
                }

                .collection-program__avatar:last-child {
                    position: relative;
                    left: -12%;
                    border-color: var(--color-white);
                    transform: rotate(10deg);
                }
            }

            .collection-program__content {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;

                .collection-program__time {
                    font-weight: 0.9rem;
                    font-weight: 700;
                }

                .collection-program__name {
                    font-size: 0.9rem;
                    .collection-program__fio {
                        color: var(--color-red);
                        font-weight: 500;
                    }
                }

                .collection-program__description {
                    
                }
            }
        }
    }
}



/* .block4 h4 {
    font-weight: 600;
    color: #060552;
    font-size: 1.6rem;
    text-transform: uppercase;
}

.block4 .white-content {
    padding: 20px;
    line-height: 1.5;
    background-color: white;
}

.block4 .collapsible {
    box-shadow: none;
    border: none;
}

.block4 .collapsible li {
    padding: 20px 0;
}

.block4 .collapsible .collapsible-header {
    display: block !important;
    padding: 10px 70px 10px 0;
    position: relative;
}

.block4 .collapsible .collapsible-header span {
    display: inline !important;
    font-weight: 500;
    font-size: 20px;
    color: #060552;
}

.block4 .collapsible .collapsible-header h4 span  {
    font-weight: 600;
    font-size: 1.6rem;
    text-transform: uppercase;
}


.block4 .collapsible .collapsible-header:before {
    content: "+";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 32px;
    height: 49px;
    margin: auto;
    font-size: 34px;
    font-weight: 600;
}

.block4 .collapsible li.active .collapsible-header span {
    border-color: transparent;
    font-weight: 700;
}

.block4 .collapsible .collapsible-header:hover span {
    border-color: transparent;
}

.block4 .collapsible .collapsible-header .date {
    color: var(--color-red);
    text-transform: uppercase;
    font-weight: 700;
} 

.block4 .collapsible li.active .collapsible-header:before {
    transform: rotate(45deg);
}

.block4 .collapsible .collapsible-body {
    padding: 20px;
    line-height: 1.5;
    border-bottom: 1px solid white;
}

.block4 .collapsible .collapsible-body p {
    margin-top: -20px;
    padding: 40px 0 20px 0;
    line-height: 1.5;
    background-color: white;
    border-bottom: 1px solid white;
    text-align: justify;
}

.block4 .collapsible .collapsible .collapsible-body {
    padding: 20px;
    line-height: 1.5;
    background-color: white;
    border-bottom: 1px solid white;
}

.block4 .collapsible .collapsible li:last-child {
    border-bottom: none;
}


.block4 .collapsible-body .collapsible {
    padding-left: 100px;
}

.block4 .collapsible-body h5 {
    font-weight: 700;
    font-size: 1.4rem;
}
 */


.block4 .collection .collection-item.avatar:not(.circle-clipper)>.circle {
    width: 60px;
    height: 60px;
    left: 0px;
}

.block4 .collection .collection-item.avatar .title {
    font-size: 16px;
    display: block;
}

.block4 .collection .divider {
    margin: 10px 0;
}

/*------------------------------------------------------------------------------ BLOCK 9 ФОТО
*/

.history-section {
    padding: 80px 0;

    @media screen and (max-width: 992px) {
        padding: 40px 0;
    }
}


/*------------------------------------------------------------------------------ PAGE
*/

.page {

    nav {
        background-image: url(/assets/img/bg-1920-2.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        height: 80px;
        line-height: 80px;

        .brand-logo > img {
            height: 60px;
            margin-top: 10px;
        }
    }
    .page-title {
        font-size: clamp(1.4rem, 1.012rem + 1.657vw, 3rem);
        line-height: clamp(1.2, 1.573 + -0.019vw, 1.5);
        text-transform: uppercase;
        font-weight: 500;
    }

    .page-content {
        min-height: 600px;

        blockquote {
            border-left-color: var(--color-red);
        }

        strong {
            font-weight: 600;
        }

        .pdf {
            display: inline-block;
            margin: 10px 10px 10px 0;
            padding-bottom: 10px;
            border-bottom: 1px dashed #cbcbcb;
        }

        .size-file {
            color: #b5b5b5;
        }

        h5 {
            font-weight: 600;
            color: #060552;
        }
    }
}

.video-container {
    border-radius: var(--border-radius-m);
    overflow: hidden;
}

/*------------------------------------------------------------------------------ PAGE ДЕТСКАЯ КОНФЕРЕНЦИЯ
*/

/* .page .page-content .pro-card {
    padding: 0 20px;
}

.page .page-content .pro-card h3 {
    font-weight: 600;
    color: #060552;
    font-size: 2rem;
    text-transform: uppercase;
    margin-top: 0;
}

.page .page-content .pro-card .description {
    font-weight: 600;
}

.page .page-content .pro-card .introtext {
    margin: 10px 0;
    padding: 10px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.page .page-content .pro-card .content {
    text-align: justify;
}

.page .page-content .pro-card .content .collapsible {
    border-top: none;
    border-right: none;
    border-left: none;
    margin: .5rem 0 1rem 0;
    box-shadow: none;
}

.page .page-content .pro-card .content .collapsible .collapsible-header {
    padding: 10px 0;
}

.page .page-content .pro-card .content .collapsible .collapsible-header i{
    line-height: 1rem;
} 

.page .page-content .pro-card .fa-fw {
    margin-right: 10px;
    color: #b5b5b5;
}

.page .page-content .pro-card .content .collapsible .collapsible-body {
    border-bottom: none;
} */


/*------------------------------------------------------------------------------ УЧАСТНИКИ
*/

.stat-conf-section {
    padding: 80px 0;
    height: auto;

    .section-title {
        text-align: center;
        color: #ffffffa8;
    }

    .section-decription {
        color: var(--color-light-grey);
        text-align: center;
    }  

    @media screen and (max-width: 992px) {
        padding: 40px 0;
    }
}

.participants-container {
    display: grid;
	grid-template-rows: 1fr;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	width: 100%;
	height: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;

    .participants__card {
        background: hsla(0, 0%, 100%, .08);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        border: 1px solid hsla(0, 0%, 100%, .2);
        border-radius: var(--border-radius);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        justify-content: center;
        padding: 24px 28px 28px;
        position: relative;
        text-decoration: none;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
        width: 100%;
        color: white;
        margin-bottom: 20px;
        text-align: center;
        aspect-ratio: 1 / 1;

        .participants__title {
            font-size: clamp(2rem, 1.029rem + 4.142vw, 6rem);
            font-weight: 500;
        }

        .participants__description {
            font-size: 2rem;
            font-weight: 600;
            opacity: 0.6;
        }
    }

    @media screen and (max-width: 960px) {
        .participants__card {
            .participants__description {
                font-size: 1rem;
            }
        }
    }
}


.block10 {
    position: relative;
    overflow: hidden;
    
    .owl-carousel {
        .owl-item {
            img {
                display: block;
                width: 100%;
                border-radius: var(--border-radius);
            }
        }
    }
}

.exponents {
    padding: 80px 0;
    background: #f4f5f6;
}

.exponents h3 {
    font-weight: 600;
    font-size: 3rem;
    text-transform: uppercase;
}

.exponents .org_item {
    overflow:hidden;
    position:relative;
}

.exponents .org_item:hover {
    box-shadow: 0 6px 10px -4px rgb(0 0 0 / 15%);
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    -moz-transform: none;
}

.exponents .org_item .curtain {
    position:absolute;
    left:0;top:100%;
    width:100%;
    height:100%;
    transition: top .5s;
    background:#00d4ff;
    color:white;
    padding:24px;
}

.exponents .org_item .curtain .text-container {
    width:100%;height:100%;
    border:solid white 1px;
    display:flex;
}
.exponents .org_item .curtain .text-container .text {
    margin:auto;
}
.exponents .org_item:hover .curtain {
    top:0;
}



/*------------------------------------------------------------------------------ FOOTER
*/

 #up-arrow {
    position: fixed;
    z-index: 999;
    right: 10px;
    bottom: 60px;
    width: 60px;
    height: 60px;
    background: var(--color-red);
    color: white;
    font-size: 30px;
    text-align: center;
    padding-top: 15px;
    border-radius: 50%;
    display: none;
    cursor: pointer;
    border: solid 3px var(--color-red);
    transition: .5s;
}

 #up-arrow:hover {
    background: white;
    color: var(--color-red);
}


footer.page-footer .container {
    padding: 80px 0;
}

footer.page-footer {
    background: var(--color-text);
}

footer.page-footer h5 {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.6rem;
    text-transform: uppercase;
}

footer.page-footer .foot-info .fab {
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
}

footer.page-footer .foot-info .fas {
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
}


footer.page-footer .footer-copyright {
    display: block;
    background-color: var(--color-text);
    text-align: center;
    font-size: .8rem;
    line-height: 2rem;
}

/*------------------------------------------------------------------------------ MODAL INFO
*/


.modal.info-modal {
    padding: 40px;
    border-radius: var(--border-radius);
    overflow: hidden;

    .info-modal__title {
        text-align: center;
        font-size: clamp(1.4rem, 1.012rem + 1.657vw, 3rem);
        line-height: clamp(1.2, 1.573 + -0.019vw, 1.5);
        text-transform: uppercase;
        font-weight: 500;
    }
}