*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}



/* Demo page content */
.content{
    padding:80px;
}

/* ===========================
   FULL SCREEN LOADER
=========================== */

#pageLoader{
    position:fixed;
    inset:0;
    background:rgba(255,255,255,.96);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
    transition:opacity .6s ease, visibility .6s ease;
}

#pageLoader.hide{
    opacity:0;
    visibility:hidden;
}

/* ===========================
   LOADER CONTAINER
=========================== */

.loader{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

/* ===========================
   RING + LOGO
=========================== */

.loader-ring{
    position:relative;
    width:180px;
    height:180px;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* Rotating Ring */

.ring{
    position:absolute;
    width:150px;
    height:150px;
    animation:spin 2.5s linear infinite;
}

.ring span{
    position:absolute;
    width:18px;
    height:18px;
    background:#0b3d91;
    border-radius:50%;
    box-shadow:0 0 10px rgba(11,61,145,.35);
}

.ring span:nth-child(1){
    top:0;
    left:50%;
    transform:translateX(-50%);
}

.ring span:nth-child(2){
    top:50%;
    right:0;
    transform:translateY(-50%);
}

.ring span:nth-child(3){
    bottom:0;
    left:50%;
    transform:translateX(-50%);
}

.ring span:nth-child(4){
    top:50%;
    left:0;
    transform:translateY(-50%);
}

/* ===========================
   CENTER LOGO
=========================== */

.center-logo{
    position:absolute;
    width:80px;
    height:80px;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:10;
}

.center-logo img{
    width:75px;
    height:75px;
    object-fit:contain;
}

/* ===========================
   COMPANY NAME
=========================== */

.brand{
    margin-top:15px;
    font-size:28px;
    font-weight:bold;
    color:#0b3d91;
    text-align:center;
    animation:pulse 1.8s ease-in-out infinite;
}

/* ===========================
   TAGLINE
=========================== */

.tagline{
    margin-top:6px;
    font-size:14px;
    font-weight:500;
    color:#666;
    text-align:center;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

/* ===========================
   ANIMATIONS
=========================== */

@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

@keyframes pulse{
    0%,100%{
        opacity:.5;
    }
    50%{
        opacity:1;
    }
}