@charset "UTF-8";
/* .parallax .container {
  position: relative;
} */

#logo {
  position: absolute;
  left: 50%;
  top: 20vh;
  transform: translateX(-50%);
}


/*--------------------------------------------------------------
# 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 #1c1311;
    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-image: linear-gradient(
        to bottom,
        rgba(123, 205, 22, 1),
        rgba(123, 205, 22, 1)
    );
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: rgba(41, 122, 13, 1);
    color: #fff;
}

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

.text-color-primary {
    color: #297a0d;
}
.text-color-secondary {
    color: #f7cf10;
}
.text-color-dark {
    color: #1c1311;
}
.text-color-light {
    color: #e2e2dd;
}
.text-color-info {
    color: #144540;
}
.text-color-warning {
    color: #c79521;
}
.text-primary-50 {
    color: rgba(41, 122, 13, 0.5) !important;
}
.text-primary-70 {
    color: rgba(41, 122, 13, 0.6) !important;
}
.text-info-50 {
    color: rgba(20, 69, 64, 0.5) !important;
}
.text-info-70 {
    color: rgba(20, 69, 64, 0.7) !important;
}
.text-dark-50 {
    color: rgba(28, 19, 17, 0.5) !important;
}
.text-dark-70 {
    color: rgba(28, 19, 17, 0.7) !important;
}
.text-color-gradient {
    font-weight: bold;
    background: linear-gradient(to right, #297a0d, #fdcf17);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.text-gradient {
    font-weight: bold;
    background: linear-gradient(to bottom, #297a0d, #fdcf17);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.w-lg-75 .text-cap {
    font-size: 20px;
}
.w-75 img {
    width: 800px;
}
.w-sm-85 {
    width: 85% !important;
}
.w-lg-85 {
    width: 85% !important;
}
.w-90 {
    width: 90% !important;
}
.w-sm-90 {
    width: 90% !important;
}
.w-lg-90 {
    width: 90% !important;
}
.w-90 {
    width: 90% !important;
}

/*--------------------------------------------------------------
# Background color
--------------------------------------------------------------*/

.bg-color-primary {
    background-color: #297a0d;
}
.bg-color-bg {
    background-color: #49c1f8;
}
.bg-soft-color-primary {
    background-color: rgba(41, 122, 13, 0.1);
}
.bg-color-secondary {
    background-color: #f7cf10;
}
.bg-soft-color-secondary {
    background-color: rgba(247, 207, 16, 0.1);
}
.bg-color-dark {
    background-color: #1c1311;
}
.bg-soft-color-dark {
    background-color: rgba(28, 19, 17, 0.1);
}
.bg-color-light {
    background-color: #e2e2dd;
}
.bg-soft-color-dark {
    background-color: rgba(226, 226, 221, 0.1);
}
.bg-color-info {
    background-color: #144540;
}
.bg-soft-color-info {
    background-color: rgba(20, 69, 64, 0.1);
}
.bg-color-warning {
    background-color: #c79521;
}
.bg-soft-color-warning {
    background-color: rgba(199, 149, 33, 0.1);
}
.bg-gradient-primary {
    background-image: linear-gradient(
        to bottom,
        rgba(41, 122, 13, 1),
        rgba(247, 207, 16, 1)
    );
}

.bg {
    line-height: 1.9;
    max-width: 780px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(3rem);
    border-radius: 10px 0 0 10px;
    box-shadow: var(--box-shadow);
}

.gradient-x-overlay-lg::before {
    background-image: linear-gradient(
        to right,
        rgba(41, 122, 13, 0.9) 0%,
        rgba(247, 207, 16, 1) 100%
    );
}

/*--------------------------------------------------------------
# Border
--------------------------------------------------------------*/

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

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

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

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

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

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

.text-parallax {
    position: absolute;
}

#text {
    position: absolute;
    text-shadow: 4px 4px 4px rgba(255, 255, 255, 0.4);
}

.col-lg-4 .text h2 {
    color: #ffff;
}
.col-lg-4 .text p {
    color: rgba(255, 255, 255, 0.7);
}

#map {
    height: 400px;
}

.img-parallax {
    bottom: 0;
}

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

@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;
        padding-top: 40%;
    } */
    .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%;
    }
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# Animation
--------------------------------------------------------------*/

.dashboard {
    width: 500px;
}

.man {
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    z-index: 1;
    background-repeat: repeat-x;
    animation: man 3s linear infinite;
}

@keyframes man {
    0% {
        transform: translateX(20px);
    }
    50% {
        transform: translateX(-30px);
    }
    100% {
        transform: translateX(20px);
    }
}

.cloud {
    background-repeat: repeat-x;
    animation: cloud 9s linear infinite;
}

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

.leaf {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    z-index: 2;
}

.man-steps {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    z-index: 1;
    /* background-repeat: repeat-x;
    animation: leaf 25s linear infinite; */
}

/* @keyframes leaf {
    100% {
        transform: translatex(-1300px);
    }
} */

.leaf-right {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    /* z-index: 1; */
}

.faq-illustration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
}

.login-illustration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
}
