* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body{
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 13px;
    background-color: #000;
}

header {
    height: 100px;
    color:#FFF;
    border-bottom: 1px solid #868686;
}
.header {
    max-width: 1140px;
    height: 100px;
    margin: auto;
    display:flex;
    align-items: center;
}

.logo{
    width: 100px;

}
.logoimg{
    width: 300px;
    height: 100px;
}

/*AREA SECTION */

.container {
    width: 100%;
    height: calc(100vh - 200px);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ring {
    width: 200px;
    height: 200px;
    border: 0px solid #000;
    border-radius: 50%;
    position: absolute;
}

.loading {
    color:#FFF;
    font-size: 1.5rem;

}

.ring:nth-child(1) {
    border-bottom-width: 8px;
    border-color: #007194;
    animation: rotate1 2s linear infinite;
}

.ring:nth-child(2) {
    border-bottom-width: 8px;
    border-color: #868686;
    animation: rotate2 2s linear infinite;
}

.ring:nth-child(3) {
    border-top-width: 8px;
    border-color: #00b5f0;
    animation: rotate3 2s linear infinite;
}

/*AREA FOOTER */

footer {
    height: 100px;
    color:#FFF;
    border-top: 1px solid #868686;
}
.footer {
    max-width: 1140px;
    height: 80px;
    margin: auto;
    display:flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    font-size: 20px;
}

.footer a {
    text-decoration: none;
    color: #FFF;
} 
@keyframes rotate1{
    0%{
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@keyframes rotate2{
    0%{
        transform: rotateX(50deg) rotateY(-10deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(50deg) rotateY(-10deg) rotateZ(360deg);
    }
}

@keyframes rotate3{
    0%{
        transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}