body{
    background-color: #FFFFFF;
}
section.video{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background-image: url('../media/images/home.jpg');
    background-size: cover;
    background-position: right top;
}
section.video video{
    position: fixed;
    width: 100%;
    min-height: 80vh;
    z-index: -1;
    object-fit: cover;
}
section.video a{
    position:absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width:fit-content;
    margin:0 auto;
    left:0;
    right:0;
    bottom: 2vw;
}
section.video a span{
    color:#000000;
    font-weight:bold;
    border-radius:10px;
    opacity: 0;
    transition: .3s;
}
section.video a svg{
    width: 5vw;
    height: 5vw;
    cursor:pointer;
    transition:.3s;
    transform: rotate(90deg);
}
section.video a:hover span{
    padding:2vh 2vw;
    background-color: #FFFFFF;
    opacity: 1;
    font-size: var(--font-size-3);
}
section.video a:hover svg{
    width:7vw;
    height:7vw;
    bottom:1vw;
    fill:#000000;
}

div.scroll-separator{
    height:var(--header-max-height);
    margin-top: var(--neg-header-max-height);
}

section.about-us{
    display: flex;
    flex-direction: column;
    width: 50vw;
    margin: 0 auto 10vh auto;
    padding: 0 2vw 2vw 2vw;
    background: #ffffffbd;
    border-radius: 10px;
}
section.about-us h1{
    margin:0;
    padding:0 0 5vh 0;
    text-align: left;
}
section.about-us p{
    margin:0;
    padding:0 0 2vh 0;
    text-align: justify;
}
section.about-us p img:first-of-type{
    float:left; 
    margin:1vw 1vw 1vw 0;
    width:15vw;
    border-radius: 10px;
}
section.about-us p img:last-of-type{
    float:right; 
    margin:1vw 0 1vw 1vw;
    width:15vw;
    border-radius: 10px;
}





div#images-separator{
    display: block;
    position: relative;
    width: 50vw;
    height: 50vw;
    margin: 0 auto 10vh auto;
    padding: 2vw;
    background: #ffffffbd;
    border-radius: 10px;
    background-image: url('../media/images/home42.jpg');
    background-repeat:no-repeat;
    background-size:80% auto;
    border-radius: 0;
    margin-top:3vh;
}

div#images-separator img{
    position: absolute;
    bottom:0;
    right:0;
    width: 20vw;
}



/* ******************* **
** ***** LOADING ***** **
** ******************* */
div#loading-screen{
    position: fixed;
    top: 0;
    left: 0;
    width:100dvw;
    height: 100dvh;
    background: #FFFFFF;
    z-index: 9999;
    transition:.3s;
    overflow: hidden;
}
div#loading-screen div.loading-container{
    display: flex;
    position: absolute;
    top: 35vh;
    bottom: 35vh;
    left: 10vw;
    right: 10vw;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
div#loading-screen div.loading-container div.loading-first-line{
    font-family: 'saniretro';
    font-weight: bold;
    font-size: 6rem;;
}
div#loading-screen div.loading-container div.loading-second-line{
    font-size:3rem;
}
div#loading-screen.loaded{
    height: 0;
}


@media only screen and (max-width: 600px) {
    section.video,
    section.video video{
        height:88vh;
    }
    section.video a{
        bottom:10vh;
    }
    section.video a svg{
        width:24vw;
        height: 24vw;
    }
    section.video a:hover svg{
        width:27vw;
        height:27vw;
    }
    section.about-us{
		width:90dvw;
        padding:2vh 7vw;
    }
    section.about-us p img:first-of-type,
    section.about-us p img:last-of-type{
        float: none;
        width: 100%;
        margin: 1vh 0;
    }
    div#loading-screen div.loading-container div.loading-second-line{
        font-size: 1rem;
    }
}






