* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #084ca7;
    font-family: 'Montserrat', sans-serif;
    background-image: url('./images/BackgroundM.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: auto;
}
@media  screen and (min-width:1024px) {
    body{
        font-family: 'Montserrat', sans-serif;
        background-image: url('./images/BackgroundW.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: auto;
        overflow: hidden !important;
    }   
}
section{
    margin: 2em 0 0 0;
}
@media  screen and (min-width:1024px) {
    section{
        margin: 4.5em 0 .5em 0;
        width: auto;
        height: 100%;
        overflow: hidden !important;
    } 
}
.container{
    display: flex;
    flex-direction: column;
}
.mainBody{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
@media  screen and (min-width:1024px) {
    .mainBody{
        display: flex;
        justify-content: space-around;
        flex-direction: row;
    }
    .body{
        display: flex;
        justify-content: center;
        align-items: start !important;
        margin-left: 0em;
    }
}
.body{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.logo{
    width: 45vw;
    height: 10vh;
}
.logoImg{
    background-image: url('./images/DigitalLogo-01.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 100%;
}
.coming{
    width: 80vw;
    height: 25vh;
    margin: 3em 0;
}
@media  screen and (max-width:479px) {
    .coming{
        width: 70vw;
        height: 25vh;
        margin: 1.5em 0;
    } 
}
@media  screen and (min-width:1024px) {
    .logo{
        width: 25vw;
        height: 10vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .logoImg{
        background-image: url('./images/DigitalLogo-01.png');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        width: 100%;
        height: 100%;
    }
    .coming{
        display: flex;
        justify-content: flex-start;
        width: 40vw;
        height: 25vh;
        padding: 0 2em 0 0;
    } 
}
@media  screen and (min-width:1200px) {
    .coming{
        margin: 4em 0;
    } 
}
.comingImg{
    background-image: url('./images/ComingSC.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 100%;
}
@media  screen and (min-width:1024px) {
    .comingImg{
        background-image: url('./images/ComingS.png');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        width: 100%;
        height: 100%;
    }   
}
.loadContainer{
    display: flex;
}
@media  screen and (max-width:479px) {
    .loadContainer{
        transform: scale(80%);
        margin-right: 1em;
    }   
}
@media  screen and (min-width:500px) {
    .loadContainer{
        transform: scale(110%);
    }   
}
@media  screen and (min-width:768px) {
    .loadContainer{
        transform: scale(120%);
    }   
}
@media  screen and (min-width:1024px) {
    .loadContainer{
        transform: scale(130%);
        margin-left: 3em;
    }   
}
.loadingText{
    display: flex;
    align-items: center;
    color: white;
}
.text{
    border: .1em solid white;
    border-radius: 10em;
    padding: .5em 1em .5em 1em;
}
@media  screen and (max-width:479px) {
    .text{
        padding: .7em 1.5em .7em .7em;
    }   
}
@media  screen and (min-width:768px) {
    .text{
        padding: .7em 1em .7em 1em;
    }    
}
@media  screen and (min-width:1024px) {
    .text{
        padding: .7em 1em .7em 1em;
    } 
}
.text p{
    margin-right: 1.5em;
    overflow: hidden;
    border-right: .15em solid white;
    white-space: nowrap;
    letter-spacing: .1em;
    animation: typing 2.5s steps(24, end),
                blink-cart .5s step-end,
                hide-blink-cart 2.6s step-end forwards;
    font-size: 1.22em;
}
@media  screen and (max-width:479px) {
    .text p{
        margin-right: 1.5em;
        font-size: 1em;
    }  
}
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
@keyframes blink-cart {
    from, to{
        border-color: transparent;
    }
    50% {
        border-color: white;
    }
}
@keyframes hide-blink-cart {
    100% {
            border-color: transparent;
    }
}
.loading{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 1vw;
    height: 5vh;
}
.loadDots{
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 10em;
    width: 4.5em;
    height: 4.5em;
    position: absolute;
    left: -2.5em;
}
@media  screen and (max-width:479px) {
    .loadDots{
        left: -3em;
    }  
}
.dots{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.dots span{
    position: absolute;
    margin: 0;
    padding: 0;
    width: 1em;
    height: 1em;
    border-radius: .2em;
	border-bottom: .6em solid #0071CE;
	border-left: .2em solid transparent;
	border-right: .2em solid transparent;
    transform: rotate(calc(var(--i)*(360deg/10))) translateY(1.5em);
    animation: loading .95s linear infinite;
    animation-delay: calc(var(--i)*0.1s);
    opacity: 0;
}
@keyframes loading{
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
.middle{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 5em 0 2em 0;
}
@media  screen and (max-width:479px) {
    .middle{
        margin: 5em 0 2em 0;
    }  
}
@media  screen and (min-width:500px) {
    .middle{
        margin: 7em 0 4em 0;
    }  
}
@media  screen and (min-width:768px) {
    .middle{
        margin: 10em 0 6em 0;
    }   
}
@media  screen and (min-width:1024px) {
    .middle{
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 4em 3em 0 3em;
        padding: 1em 3em;
        transform: scale(120%);
    }   
}
.bgImgContainer{
    display: flex;
    align-items: center;
    position: relative;
}
@media  screen and (max-width:479px) {
    .bgImgContainer{
        transform: scale(95%);
    }  
}
@media  screen and (min-width:500px) {
    .bgImgContainer{
        transform: scale(110%);
    }  
}
@media  screen and (min-width:768px) {
    .bgImgContainer{
        transform: scale(150%);
    }   
}
@media  screen and (min-width:1024px) {
    .bgImgContainer{
        transform: scale(120%);
    }   
}
@media  screen and (min-width:1200px) {
    .bgImgContainer{
        transform: scale(140%);
    }   
}
.bgMachImg{
    width: 30em;
    height: auto;
    z-index: 0;
}
@media  screen and (max-width:479px) {
    .bgMachImg{
        width: 25em;
        height: auto;
        z-index: 0;
    } 
}
@media  screen and (min-width:1024px) {
    .bgMachImg{
        transform: scale(100%);
    }   
}
.bgBoardImg{
    position: absolute;
    width: 8em;
    height: auto;
    z-index: 1;
    right: 1em;
}
@media  screen and (max-width:479px) {
    .bgBoardImg{
        width: 7em;
    } 
}
.whiteCapImg{
    position: absolute;
    width: 6.5em;
    height: auto;
    z-index: 2;
    bottom: 3em;
    right: 7em;
    transform: rotate(calc(23deg));
}
@media  screen and (max-width:479px) {
    .whiteCapImg{
        width: 5em;
        right: 6.5em;
    }
}
.carteImg{
    position: absolute;
    width: 5em;
    height: auto;
    z-index: 3;
    top: -2em;
    left: 1.8em;
}
@media  screen and (max-width:479px) {
    .carteImg{
        width: 4.5em;
        left: 1.5em;
    }
}
.carteVImg{
    position: absolute;
    width: 5em;
    height: auto;
    z-index: 4;
    top: -1em;
    right: 9em;
}
@media  screen and (max-width:479px) {
    .carteVImg{
        width: 4em;
        right: 7em;
    }
}
.bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: .5em .3em;
    margin: 1.5em 0;
}
@media  screen and (max-width:479px) {
    .bottom{
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
        padding: .3em .2em;
        margin: 1em 0;
    }  
}
@media  screen and (min-width:500px) {
    .bottom{
        padding: .3em .2em;
        margin: 1em 3em;
    }  
}
@media  screen and (min-width:768px) {
    .bottom{
        padding: .1em .6em;
        margin: .5em 5em;
    }   
}
@media  screen and (min-width:1024px) {
    .bottom{
        padding: 0 auto;
        margin: 3.5em 3em;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }   
}
.infoContainer{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: white;
    font-size: .9em;
}
@media  screen and (max-width:479px) {
    .infoContainer{
        display: flex;
        justify-content: center;
        text-align: center;
        font-size: .8em;
    }
}
@media  screen and (min-width:500px) {
    .infoContainer{
        font-size: 1.1em;
    }
}
@media  screen and (min-width:768px) {
    .infoContainer{
        font-size: 1.2em;
    }  
}
@media  screen and (min-width:1024px) {
    .infoContainer{
        font-size: 1.3em;
    }  
}
.numb{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: 300;
    margin-bottom: .3em;
}
@media  screen and (max-width:479px) {
    .numb{
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}
.numb span{
    font-weight: 500;
}
.mail{
    color: white;
    font-weight: 300;
    font-size: 1em;
    text-decoration: none;
}
.socialsContainer{
    margin-left: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
@media  screen and (max-width:479px) {
    .socialsContainer{
        margin-left: 0em;
        margin-top: 1em;
    }
}
.socials{
    display: flex;
    justify-content: center;
    align-items: center;
}
.socials a{
    text-decoration: none;
}
.socials span{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: white;
    border-radius: 10em;
    margin: .4em .3em;
    padding: .1em .1em;
}
.socials span i{
    font-size: 2em;
    color: #0071CE;
}
@media  screen and (max-width:479px) {
    .socials span i{
        font-size: 1.5em;
    }
}
@media  screen and (min-width:500px) {
    .socials span{
        margin: .5em .4em;
        padding: .1em .1em;
    }
}
@media  screen and (min-width:768px) {
    .socials span{
        margin: .5em .4em;
        padding: .2em .2em;
    } 
}
@media  screen and (min-width:1024px) {
    .socials span{
        margin: .55em .45em;
        padding: .25em .25em;
    } 
}
.web{
    display: flex;
    justify-content: center;
    align-items: start;
    font-weight: 500;
    font-size: 1em;
    color: white;
}
@media  screen and (max-width:479px) {
    .web{
        font-size: .8em;
    }
}
@media  screen and (min-width:1024px) {
    .web{
        margin-top: .5em;
    } 
}
.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
    color: white;
    font-size: .6em;
    font-weight: 100;
}
@media  screen and (max-width:479) {
    .footer{
        margin: 1em 0;
    }
}
@media  screen and (min-width:500px) {
    .footer{
        font-size: .7em;
    }
}
@media  screen and (min-width:768px) {
    .footer{
        font-size: 1em;
    } 
}
@media  screen and (min-width:1024px) {
    .footer{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1em;
    }
}