@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap");
*,
*:before,
*::after{
    margin:0px;
    padding: 0px;
    box-sizing: inherit;
}
.webgl{
    position: fixed;
    top:0px;
    left: 0px;
    z-index: 1;
    font-size: 100px;
}
/*
html{
    scroll-snap-type: y mandatory;
}*/
body{
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    font-family: "Orbitron", sans-serif;
    padding: 0px;
    margin: 0px;
    background: #ffc0cb;
}
section{
    height: 100vh;
    width: 100%;
    position: relative;
    /*scroll-snap-align:start;*/
}
section .container{
    max-width: 1360px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    justify-content: flex-start;
}
section.one .container{
    grid-template-areas: 'content ..';
}
section.dos .container{
    grid-template-areas: '.. content';
}
.imgbanner{
    width: 100%;
    height: auto;
}
.hero{
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
    grid-area: content;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}
h1{
    position: absolute;
    top:30%;
    font-size: 50px;
    line-height: 100px;
    font-weight: 700;
    width:90%;
    height: 100px;
    text-align: center;
}
h2{
    font-size: 60px;
    font-weight: 600;
    line-height:70px;
    display: block;
    font-family: inherit;
}
h2 span{
    font-size: 40px;
    display: block;
    line-height: 50px;
    width: 100%;
    font-weight: 400;
    margin-bottom: 20px;
}
p{
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
    width: 100%;
    display: block;
}
.loading-bar {
    position: fixed;
    top: 50%;
    width: 100%;
    height: 2px;
    z-index: 99;
    background: #ffffff;
    transform: scaleX(0);
    transition: transform 0.5s;
    transform-origin: top left;
}

.loading-bar.ended {
    transform: scaleX(0);
    transform-origin: 100% 0;
    transition: transform 1.5s ease-in-out;
}