html,body{
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    border: none;
    font-family: 'DM Sans', sans-serif;
    background-color: var(--white);
    min-width: 320px;
    font-feature-settings: 'liga' off, 'clig' off;
    font-style: normal !important;
    -webkit-user-select: none;
    user-select: none;

}
main, footer{
    overflow-x: hidden;
    overflow-y: hidden;
}

a{
    text-decoration: none;
}

@keyframes opareveal{
    0%{opacity: 0;}
    25%{opacity: 0.25;}
    50%{opacity: 0.5 ;}
    75%{opacity: 0.75;}
    100%{opacity: 1;}
}
@keyframes opahide{
    0%{opacity: 1;}
    25%{opacity: 0.75;}
    50%{opacity: 0.5 ;}
    75%{opacity: 0.25;}
    100%{opacity: 0;}
}

/*ANIMATE INTRO LOGO*/
@media only screen and (max-width: 500px){
    #animatelogo svg{
        width:10em;
    }
}
@media only screen and (min-width: 501px){
    #animatelogo svg{
        width:15em;
    }
}
.animated-logo-section{
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #020111;
    z-index: 6;
}
.animate-logo-wrapper{
    width: fit-content;
}
#animatelogo svg{
    fill: #ffffff00;
    animation: filllogo 0.5s forwards 1.8s;
}

#animatelogo path:nth-child(4){
    stroke-dasharray: 678.4;
    stroke-dashoffset: 678.4;
    animation: lineanimate 1s forwards;

}
#animatelogo path:nth-child(3){
    stroke-dasharray: 557;
    stroke-dashoffset: 557;
    animation: lineanimate 1s forwards 0.3s;  
}
#animatelogo path:nth-child(2){
    stroke-dasharray: 326;
    stroke-dashoffset: 326;
    animation: lineanimate 1s forwards 0.6s;
    
}
#animatelogo path:nth-child(1){
    stroke-dasharray: 587.6;
    stroke-dashoffset: 587.6;
    animation: lineanimate 1s forwards 0.8s;
    
}
@keyframes filllogo{
    from{
        fill: #ffffff00;
    }
    to{
        fill: #44d800;
    };
}
@keyframes lineanimate{
    to{
        stroke-dashoffset: 0;
    };
}

/*LIMITING DOCUMENT EXPANSION FOR WIDER SCREENS*/
@media only screen and (min-width: 1700px) {
    main{
        width: 95%;
        margin: 0px auto;
    }   
}
@media only screen and (min-width: 1900px) {
    main{
        width: 90%;
        margin: 0px auto;
    }   
}

/*FLEXBOX CLASSES*/
.flex {
    display: flex;
}
.column{
    flex-direction: column;
}

/*flex-wrap*/
.wrap{
    flex-wrap: wrap;
}
.no-wrap{
    flex-wrap: nowrap;
}
.wrap-reverse{
    flex-wrap: wrap-reverse;
}

/*justify-content*/
.flex-start{
    justify-content: flex-start;
}
.flex-end{
    justify-content: flex-end;
}
.center{
    justify-content: center;
}
.space-between{
    justify-content: space-between;
}
.space-around{
    justify-content: space-around;
}

/*align-items*/
.align-start{
    align-items: flex-start;
}
.align-center{
    align-items: center;
}
.align-end{
    align-items: flex-end;
}
.align-stretch{
    align-items: stretch;
}

/*align-content*/
.content-start{
    align-content: flex-start;
}
.content-center{
    align-content: center;
}
.content-end{
    align-content: flex-end;
}
.content-space-between{
    align-content: space-between;
}
.content-space-around{
    align-content: space-around;
}
.content-stretch{
    align-content: stretch;
}

/*align-self*/
.self-start{
    align-self: flex-start;
}
.self-end{
    align-self: flex-end;
}
.self-center{
    align-self: center;
}
/*//////////////////////////////////////////////////////////////////////////////*/



.no-pointer{
    pointer-events: none;
}
.hidden{
    opacity: 0%;
}


.relative{
    position: relative;
}
.absolute{
    position: absolute;
}
.sticky{
    position: sticky;
}
.fixed{
    position: fixed;
}


