/* CSS Document */

body {
    width: 100%;
    height: 100%;
    margin: 0;
	color: #fff;
    background: #000;
    
    font-size: 62.5%;
    font-family: sans-serif;
}
a {
	outline: none;
    text-decoration: none;
}
a img {
	border: none;
    outline: none;
}
section, div, span {
    box-sizing: border-box;
}
* img {
    width: 100%;
    height: auto;
    display: block;
}



/* --------- L O A D I N G --------- */

.PGwrap {
    width: 100vw;
    height: 100vh;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    pointer-events: none;
    background: rgba(0,0,0,1);
    
    will-change: opacity;
    opacity: 0;
    
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
}
body.bd_fade .PGwrap {
    opacity: 1;
}

#load {
    width: 300px;
    height: 300px;
    z-index: 21;
    
    position: fixed;
    left: 50%;
    top: 50%;
    margin: -150px 0 0 -150px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    pointer-events: none;
    
    will-change: opacity;
    opacity: 1;
    transition: all 0.3s ease-out;
}
#load.fadeout { opacity: 0; visibility: hidden; }

#load::after {
    content: "";
    display: block;
    width: 30%;
    height: 30%;
    background: url("../img/ld-dino.png") no-repeat center center;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -15% 0 0 -15%;
}
.ld-line {
    width: 50%;
    height: 50%;
    padding: 1px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    border-radius: 50%;
    background: linear-gradient(0deg, rgba(86,31,158,0.1) 33%, rgba(86,31,158,1) 100%);
    animation: loading 0.8s linear infinite;
}
.ld-core {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 50%;
}
@keyframes loading {
    from { transform: rotate(0); }
    to   { transform: rotate(359deg); }
}





/* --------- M A I N --------- */

.wrap {
    width: 100%;
    height: auto;
    margin: 0;
    
    display: flex;
    flex-wrap: wrap;
}
.wrap section {
    width: 50%;
    height: auto;
    display: block;
    margin: 0;
}



/* --------- < 1000px > --------- */

@media (max-width: 1000px) {

.wrap section {
    width: 100%;
}

}







