@charset "UTF-8";

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

.preloader-logo {
    position: absolute;
    z-index: 200;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    display: inline-block;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-top: 6px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    border: 6px solid #142a93;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #0b3cd4;
    color: #ffff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #082788;
    color: #ffff;
}

.color-secondary {
    color: #f8c804;
}
.bg-color-secondary {
    background-color: #f8c804;
}
.bg-soft-color-primary {
    background-color: rgba(11, 60, 212, 0.1) !important;
}
.color-primary {
    color: #0b3cd4;
}
.bg-soft-color-secondary {
    background-color: rgba(248, 200, 4, 0.1) !important;
}
.bg-color-primary {
    background-color: #0b3cd4;
}

.border-dark-70 {
    border-color: rgba(33, 50, 91, 0.7) !important;
}

.border-dark-50 {
    border-color: rgba(33, 50, 91, 0.5) !important;
}
