@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;
}

#map {
    height: 350px;
}
/*--------------------------------------------------------------
# Border
--------------------------------------------------------------*/

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

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

/*--------------------------------------------------------------
# Width Column
--------------------------------------------------------------*/

.w-lg-45 {
    width: 45% !important;
}
.w-lg-55 {
    width: 55% !important;
}

/* .w-40 {
    width: 40% !important;
} */

/*--------------------------------------------------------------
# Custom color
--------------------------------------------------------------*/

.text-color-primary {
    color: #070d59 !important;
}
.text-color-secondary {
    color: #ff6347 !important;
}
.text-color-warning {
    color: #f8c432 !important;
}
.text-color-info {
    color: #7dc5d5 !important;
}
.text-color-light {
    color: #fff9e1 !important;
}
.text-dark-50 {
    color: rgba(0, 0, 0, 0.5) !important;
}
.text-dark-70 {
    color: rgba(0, 0, 0, 0.7) !important;
}
.bg-color-primary {
    background-color: #070d59 !important;
}
.bg-soft-color-primary {
    background-color: rgba(7, 13, 89, 0.1);
}
.bg-color-secondary {
    background-color: #ff6347 !important;
}
.bg-soft-color-secondary {
    background-color: rgba(255, 99, 71, 0.1);
}
.bg-color-warning {
    background-color: #f8c432 !important;
}
.bg-soft-color-warning {
    background-color: rgba(248, 196, 50, 0.1);
}
.bg-color-info {
    background-color: #7dc5d5 !important;
}
.bg-color-light {
    background-color: #eef5ff !important;
}
.bg-color-infoo {
    background-color: #8374f4;
}
.bg-soft-color-info {
    background-color: rgba(125, 197, 213, 0.1);
}

.sub-title {
    font-size: calc(18px + 8 * (100vw - 300px) / 1620);
    font-weight: 700;
    font-family: "Caveat", cursive;
    color: #f8f007;
}

.sub-title-content {
    font-size: calc(16px + 8 * (100vw - 300px) / 1620);
    font-weight: 700;
    font-family: "Caveat", cursive;
    color: #ee4b2e;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background-size: cover;
    padding: 120px 0;
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f3f5fa;
}

/*====== responsive screen ======*/

@media only screen and (max-width: 1199px) {
    .login-bg {
        background-image: url(/image/background/bg-responsive-phone.svg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
    }
    .login .flex-grow-1 {
        margin-right: auto !important;
        margin-left: auto !important;
        padding: 0 20px;
    }
    .logo-app img {
        width: 150px;
    }
    .logo-img img {
        width: 70px;
        margin-top: 20px;
    }
}

@media (min-width: 600px) and (max-width: 768px) {
    .login-bg {
        background-image: url(/image/background/bg-responsive-tab.svg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
    }
    .logo-app img {
        width: 200px;
    }
    .logo-img img {
        width: 80px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .login-bg {
        background-image: url(/image/background/bg-responsive-tab.svg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
    }
    .logo-app img {
        width: 200px;
    }
    .logo-img img {
        width: 80px;
    }
}

.moving-image {
    width: 600px;
    position: relative;
    animation: moveUpDown 3s ease-in-out infinite;
}

@keyframes moveUpDown {
    0% {
        top: 0;
    }
    50% {
        top: 50px;
    }
    100% {
        top: 0;
    }
}

.login-illustration {
    width: 750px;
    position: relative;
    animation: loginMoveUpDown 3s ease-in-out infinite;
}

@keyframes loginMoveUpDown {
    0% {
        top: 0;
    }
    50% {
        top: 30px;
    }
    100% {
        top: 0;
    }
}
