/* CSS Document */
/* Put here all style referred to specific Visual */

body {  
    width: 3840px;
    height: 2160px;
}

#export-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 50px;
    z-index: 9999;
    background: transparent;
}

.simplebutton {
    z-index: 999;
}

#tools {
    pointer-events: none;
}

.popup {
    backdrop-filter: blur(5px);
    background-color: #7DB4DC44 !important;
}

.section-images {
    position: absolute;
    height: auto;
    width: calc(100% - 600px);
    top: 1150px;
    left: 300px;
    right: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-img {
    width: 386px;
    height: auto;
}

.section-img.animate#section-img-1 {
    animation: section-img-1-pulse 9s infinite forwards linear;
}
.section-img.animate#section-img-2 {
    animation: section-img-2-pulse 9s infinite forwards linear;
}
.section-img.animate#section-img-3 {
    animation: section-img-3-pulse 9s infinite forwards linear;
}
.section-img.animate#section-img-4 {
    animation: section-img-4-pulse 9s infinite forwards linear;
}
.section-img.animate#section-img-5 {
    animation: section-img-5-pulse 9s infinite forwards linear;
}
.section-img.animate#section-img-6 {
    animation: section-img-6-pulse 9s infinite forwards linear;
}


main {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    background-color: black;
    position: relative;
}

main.hidden {
    display: none;
}

.splash-matcode {
    position: absolute;
    bottom: 0.2em;
    right: 1em;
    font-size: 24px;
    color: white;
    text-align: right;
	margin-bottom: 0;
}

main section#navigation-menu{
    background-image: url('../images/splash-page.png');
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
    height: 100%;
}

main .navigation-btn {
    position: absolute;
    top: 720px;
    width: 900px;
    height: 900px;
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    animation: pulse 1.5s infinite forwards linear;
}

main .navigation-btn#explore-pathway {
    left: 1010px;
    background-image: url(../images/pathway-btn.png);
    animation: navigation-pulse-1 3s infinite forwards linear;
}

main .navigation-btn#see-video {
    left: 2010px;
    background-image: url(../images/video-btn.png);
    animation: navigation-pulse-2 3s infinite forwards linear;
}

section#video {
    width: 100%;
    height: 100%;
    background-color: white;
}

section#video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section#meet-the-expert {
    width: 100%;
    height: 100%;
    position: relative;
    background-image: url(../images/expert/MeetTheExpert.jpg);
}

section#symposia-section {
    width: 100%;
    height: 100%;
    position: relative;
}

.back-btn {
    position: absolute;
    background-color: white;
    background-image: url(../images/back-btn.png);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    top: 100px;
    right: 100px;
}

main section.disabled {
    display: none;
}

@keyframes activation-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes navigation-pulse-1 {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
    
}

@keyframes navigation-pulse-2 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
    
}

@keyframes section-img-1-pulse {
    0% {
        transform: scale(1);
    }
    8.3% {
        transform: scale(1.1);
    }
    16.7% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes section-img-2-pulse {
    0% {
        transform: scale(1);
    }
    16.7% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    33.3% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes section-img-3-pulse {
    0% {
        transform: scale(1);
    }
    33.3% {
        transform: scale(1);
    }
    41.7% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes section-img-4-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1);
    }
    58.3% {
        transform: scale(1.1);
    }
    66.7% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes section-img-5-pulse {
    0% {
        transform: scale(1);
    }
    66.7% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.1);
    }
    83.3% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes section-img-6-pulse {
    0% {
        transform: scale(1);
    }
    83.3% {
        transform: scale(1);
    }
    91.7% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
