@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 #021515;
    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: #12494a;
    color: #ffff;
    transition: all 0.4s;
}

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

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

.text-color-primary {
    color: #1e1477;
}
.text-color-secondary {
    /* color: #598297; */
    color: #497b94;
}
.text-color-info {
    color: #3a2c9a;
}
.text-color-dark {
    color: #021515;
}
.text-color-light {
    color: #fff9e1;
}
.text-primary-50 {
    color: rgba(21, 13, 95, 0.5) !important;
}
.text-primary-70 {
    color: rgba(21, 13, 95, 0.6) !important;
}
.text-dark-50 {
    color: rgba(2, 21, 21, 0.5) !important;
}
.text-dark-70 {
    color: rgba(2, 21, 21, 0.7) !important;
}
.bg-color-primary {
    background-color: #1e1477;
}
.bg-soft-color-primary {
    background-color: rgba(21, 13, 95, 0.1);
}
.bg-color-info {
    background-color: #3a2c9a;
}
.bg-color-secondary {
    background-color: #497b94;
}
.bg-soft-color-info {
    background-color: rgba(58, 44, 154, 0.1);
}
.bg-color-dark {
    background-color: #021515;
}
.bg-soft-color-dark {
    background-color: rgba(2, 21, 21, 0.1);
}
.bg-color-light {
    background-color: #f0f0f0;
}
.bg-color-lighter {
    background-color: #fff9e1 !important;
}

.bg {
    line-height: 1.9;
    max-width: 780px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(3rem);
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); */
    border-radius: 10px 0 0 10px;
    /* border: 2px solid rgba(255, 117, 40, 0.7); */
    box-shadow: var(--box-shadow);
}

.login h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    color: #963600;
}
.login label {
    font-weight: 500;
}
/*--------------------------------------------------------------
# Border
--------------------------------------------------------------*/

.border-dark-70 {
    border-color: rgba(2, 21, 21, 0.7) !important;
}

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

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

.w-lg-45 {
    width: 45% !important;
}
.w-lg-55 {
    width: 55% !important;
}
.w-lg-50 {
    width: 50% !important;
}
.tutorial-text:hover {
    color: #d40c54;
    text-decoration: underline;
}

/*--------------------------------------------------------------
# Parallax
--------------------------------------------------------------*/
/* .parallax {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
} */

.parallax img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    pointer-events: none;
    display: block;
    /* position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none; */
}

.text-parallax {
    position: absolute;
}

#text {
    position: absolute;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/*====== responsive screen ======*/
/* @media only screen and (max-width: 450px) {
    .parallax img {
        position: absolute;
        background-size: auto 600px;
    }
} */

@media only screen and (max-width: 1199px) {
    .navbar-brand img {
        width: 120px;
    }

    .parallax {
        position: absolute;
        background-size: auto 600px;
    }

    .text-parallax {
        margin-top: 10%;
    }

    .text-parallax h3 {
        font-size: 10px;
    }

    .text-parallax h2 {
        font-size: 20px;
    }

    .text-parallax p {
        font-size: 12px;
    }

    .navbar-brand img {
        width: 100px;
    }

    .login-bg {
        background-image: url(/image/background/bg-responsive-phone.png);
        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;
    }

    .col-lg-4 .text h2 {
        color: #000000;
    }
    .col-lg-4 .text p {
        color: #8c98a4;
    }
    .logo-app img {
        width: 150px;
    }
    .logo-img img {
        width: 70px;
        margin-top: 20px;
    }
}

@media (min-width: 600px) and (max-width: 768px) {
    .navbar-brand img {
        width: 160px;
    }
    .parallax {
        position: absolute;
        background-size: cover;
        height: 42vh;
    }
    .text-parallax {
        position: absolute;
        margin-top: 30%;
    }
    .text-parallax h3 {
        font-size: 14px;
    }
    .text-parallax h2 {
        font-size: 30px;
    }
    .text-parallax p {
        font-size: 18px;
    }
    .login-bg {
        background-image: url(/image/background/bg-responsive-tab.png);
        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) {
    .navbar-brand img {
        width: 160px;
    }
    .parallax {
        position: absolute;
        background-size: cover;
        height: 42vh;
    }
    .text-parallax {
        position: absolute;
        margin-top: 30%;
    }
    .text-parallax h3 {
        font-size: 14px;
    }
    .text-parallax h2 {
        font-size: 30px;
    }
    .text-parallax p {
        font-size: 18px;
    }
    .login-bg {
        background-image: url(/image/background/bg-responsive-tab.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
    }
    .logo-app img {
        width: 200px;
    }
    .logo-img img {
        width: 80px;
    }
}

@media (min-width: 992px) {
    .d-lg-flex {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .table-wrapper {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Custom animation
--------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
}
.hero {
    height: 100vh;
    width: 100%;
    background-image: url("/image/component/bg.png");
    background-size: cover;
    background-position: top center;
    position: relative;
    overflow-x: hidden;
}

.mountain {
    height: 100vh;
    width: 500%;
    display: block;
    background-image: url("/image/component/mountain.png");
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.gradient {
    height: 100vh;
    width: 500%;
    display: block;
    background-image: url("/image/component/gradient.png");
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.cloud {
    height: 100vh;
    width: 500%;
    background-image: url("/image/component/cloud.png");
    position: absolute;
    bottom: 200px;
    left: 0;
    right: 0;
    display: block;
    z-index: 1;
    background-repeat: repeat-x;
    animation: cloud 25s linear infinite;
}

@keyframes cloud {
    100% {
        transform: translatex(-1300px);
    }
}

.building-shadow {
    height: 500px;
    width: 500%;
    background-image: url("/image/component/building-shadow.png");
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    display: block;
    z-index: 1;
    background-repeat: repeat-x;
    animation: building-shadow 23s linear infinite;
}

@keyframes building-shadow {
    100% {
        transform: translatex(-1400px);
    }
}

.building {
    height: 440px;
    width: 500%;
    background-image: url("/image/component/building.png");
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    display: block;
    z-index: 1;
    background-repeat: repeat-x;
    animation: building 20s linear infinite;
}

@keyframes building {
    100% {
        transform: translatex(-1400px);
    }
}

.road {
    height: 120px;
    width: 500%;
    background-image: url("/image/component/road.png");
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    z-index: 1;
    background-repeat: repeat-x;
    /* animation: road 5s linear infinite; */
}

@keyframes road {
    100% {
        transform: translatex(-1400px);
    }
}

.civil {
    height: 380px;
    width: 500%;
    background-image: url("/image/component/civil.png");
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    z-index: 2;
    background-repeat: repeat-x;
}

/* @keyframes civil {
    100% {
        transform: translateY(-1px);
    }
    50% {
        transform: translateY(1px);
    }
    0% {
        transform: translateY(-1px);
    }
} */

/*--------------------------------------------------------------
# Custom map
--------------------------------------------------------------*/

#map {
    height: 400px;
}

.w-75 h2 {
    text-shadow: 7px 7px 7px rgba(18, 73, 74, 0.9);
    color: #bdee0f;
}
.w-80 {
    width: 80% !important;
}

/*--------------------------------------------------------------
# Swiper
--------------------------------------------------------------*/

.swiper {
    width: 100%;
    height: 37%;
}

.swiper-slide {
    text-align: center;
    font-size: 20px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*--------------------------------------------------------------
# Card
--------------------------------------------------------------*/
.static-top-widget:hover .icon-bg {
    -webkit-transform: rotate(-5deg) scale(1.1);
    transform: rotate(-5deg) scale(1.1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.static-top-widget div.align-self-center svg {
    width: 30px;
    height: 30px;
}

.static-top-widget .media-body {
    -ms-flex-item-align: center !important;
    align-self: center !important;
    padding-left: 30px;
}
.static-top-widget .media-body .icon-bg {
    position: absolute;
    right: -14px;
    top: 6px;
    opacity: 0.2;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 100px;
    height: 100px;
}

.bg-info .media.static-top-widget .align-self-center {
    background-color: #a927f9;
}

.bg-primary .media.static-top-widget .align-self-center {
    background-color: var(--theme-deafult);
}

.bg-secondary .media.static-top-widget .align-self-center {
    background-color: var(--theme-secondary);
}

.bg-danger .media.static-top-widget .align-self-center {
    background-color: #dc3545;
}
html[dir="rtl"] .static-top-widget .media-body {
    padding-right: 30px;
    padding-left: unset;
}
html[dir="rtl"] .static-top-widget .media-body .icon-bg {
    left: -20px;
    right: unset;
}
