/* fonts */
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,400;0,700;1,400;1,700&display=swap");
/* global css */
:root {
    --main-color: #1efd1e;
    --secondary-color: #61e861;
    --color-1: #1efd1e;
    --color-2: #15b015;
    --color-3: #2a632a;
    --bg-dark: #2b2c2f;
    --main-to-dark-color: var(--main-color);
    --dark-to-main-color: var(--color-2);
    --shadow-black-100: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-black-300: 0 5px 15px rgba(0, 0, 0, 0.3);
    --black-900: #000;
    --black-400: #555;
    --black-100: #f7f7f7;
    --black-000: #fff;
    --black-alpha-100: rgba(0, 0, 0, 0.05);
    --footer-text-color: #f7f7f7;
    --text-color: #000;
}

body {
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
    background-color: #fff;
    line-height: 1.5;
}

body.dark {
    background-color: var(--bg-dark);
    --text-color: #fff;
    --black-400: var(--bg-dark);
    --black-100: var(--bg-dark);
    --black-000: var(--bg-dark);
    --main-to-dark-color: var(--bg-dark);
    --dark-to-main-color: var(--main-color);
    --shadow-black-100: var(--shadow-black-300);
    --black-alpha-100: rgba(255, 255, 255, 0.05);
    --footer-text-color: #fff;
}

* {
    margin: 0;
    padding: 0;
    outline: none !important;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul {
    list-style: none;
}

.footer_link {
    color: #fff;
}

.footer_link:hover {
    color: #000;
}

.footer_link:active {
    color: #fff;
}

.navbar-brand-img {
    width: 100%;
    max-width: 170px;
    margin: 0;
    color: var(--black-900);
    text-shadow: 0px 3px rgba(255, 255, 255, 0.5);
}

.btn-download {
    background-color: #fff;
    padding: 8px 10px;
    border: 1px solid #fff;
    border-radius: 25px;
    color: var(--main-color);
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-black-300);
    font-weight: 500;
}

.btn-download:focus {
    box-shadow: var(--shadow-black-300);
}

.btn-download:hover {
    color: #fff;
    background-color: var(--main-color);
}

.btn-1 {
    background-color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    color: var(--main-color);
    font-size: 16px;
    text-transform: capitalize;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-black-300);
    font-weight: 500;
}

.btn-1:focus {
    box-shadow: var(--shadow-black-300);
}

.btn-1:hover {
    color: #fff;
    background-color: var(--main-color);
}

.btn-2 {
    background-color: var(--main-color);
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-black-100);
    font-weight: 500;
}

.btn-2:focus {
    box-shadow: var(--shadow-black-100);
}

.btn-2:hover {
    color: var(--main-color);
    background-color: #fff;
}

@keyframes spin_01 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounceTop_01 {
    0%,
    100% {
        transform: translateY(-30px);
    }
    50% {
        transform: translateY(0px);
    }
}

@keyframes pulse_01 {
    0% {
        transform: scale(0.94);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(0.94);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes zoomInOut_01 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.effect-wrap .effect {
    position: absolute;
    z-index: -1;
}

.effect-wrap .effect-1 {
    left: 20%;
    top: 20%;
    font-size: 20px;
    color: var(--color-2);
    animation: spin_01 5s linear infinite;
}

.effect-wrap .effect-2 {
    right: 5%;
    top: 10%;
    font-size: 25px;
    color: rgba(255, 255, 255, 0.5);
    animation: spin_01 7s linear infinite;
}

.effect-wrap .effect-3 {
    left: 5%;
    bottom: 30%;
    font-size: 25px;
    color: var(--color-3);
    animation: bounceTop_01 3s linear infinite;
}

.section-padding {
    padding: 5px 0;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 40px;
    color: var(--black-900);
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    margin: 0;
}

.section-title h2 span {
    color: var(--main-color);
}

.owl-carousel .owl-dots {
    padding: 0 15px;
    text-align: center;
    margin-top: 20px;
}

.owl-carousel button.owl-dot {
    height: 6px;
    width: 24px;
    background-color: #ddd;
    display: inline-block;
    margin: 0 4px;
    border-radius: 5px;
}

.owl-carousel button.owl-dot.active {
    background-color: var(--main-color);
}

/* preloader */
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2100;
    background-color: var(--main-to-dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader span {
    display: block;
    height: 60px;
    width: 60px;
    background-color: var(--dark-to-main-color);
    border-radius: 50%;
    animation: zoomInOut_01 1s ease infinite;
}

/* navbar */
.navbar {
    background-color: transparent;
    padding: 0 0;
    transition: all 0.5s ease;
}

.navbar.navbar-shrink {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    background: var(--color-2);
    padding: 10px 0;
}

.navbar > .container {
    padding: 0 15px;
}

.navbar .navbar-brand {
    font-size: 30px;
    color: #fff;
    font-weight: 500;
    text-transform: capitalize;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
}

.navbar .nav-item {
    margin-left: 33px;
}

.navbar .nav-item .nav-link {
    color: var(--black-900);
    font-size: 16px;
    font-weight: 700;
    padding: 3px 0;
    position: relative;
}

.navbar .nav-item .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background-color: #fff;
    transition: all 0.5s ease;
    transform: scale(0);
}

.navbar .nav-item .nav-link.active::before,
.navbar .nav-item .nav-link:hover::before {
    transform: scale(1);
}

/* home section */
.home {
    min-height: 5vh;
    padding: 110px 0 0px 0;
    background: var(--black-000);
   /*border-radius: 0 0 140px 140px;*/
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    background-color: #ffffff;
    background: radial-gradient(
        circle,
        transparent 20%,
        #ffffff 20%,
        #ffffff 80%,
        transparent 80%,
        transparent
    ),
    radial-gradient(
        circle,
        transparent 20%,
        #ffffff 20%,
        #ffffff 80%,
        transparent 80%,
        transparent
    ) 10px 10px,
    linear-gradient(rgba(30, 253, 30, 0.2) 0.8px, transparent 0.8px) 0 -0.4px,
    linear-gradient(
        90deg,
        rgba(30, 253, 30, 0.2) 0.8px,
        rgba(255, 255, 255, 0) 0.8px
    ) -0.4px 0;
    background-size: 20px 20px, 20px 20px, 10px 10px, 10px 10px;
}

.home .home-btn {
    margin-top: 40px;
    margin-bottom: 0px;
}

.home .home-btn .video-play-btn {
    margin-left: 30px;
    height: 50px;
    width: 50px;
    padding: 0;
    animation: pulse_01 2s ease infinite;
}

.home .home-btn .video-play-btn i {
    line-height: 50px;
    font-size: 16px;
}

.home .home-btn .video-play-btn:hover {
    animation: none;
    box-shadow: var(--shadow-black-300);
}

.home-text h1 {
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
}

.home-text p {
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    margin: 0;
    font-weight: 300;
}

.home-img {
    position: relative;
}

.home-img .circle {
    position: absolute;
    z-index: 1;
    height: 400px;
    width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home-img .circle::before {
    content: "";
    position: absolute;
    height: 60px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    top: 30px;
    left: 30px;
    transform-origin: 170px 170px;
    animation: spin_01 10s linear infinite;
}

.home-img img {
    max-width: 250px;
    width: 100%;
    box-shadow: var(--shadow-black-100);
    border-radius: 32px;
    animation: bounceTop_01 3s ease infinite;
    margin-top: 50px;
}

/* video popup */
.video-popup {
    padding: 30px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1999;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.video-popup .iframe-box {
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.video-popup #player-1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-popup-inner {
    width: 100%;
    max-width: 900px;
    position: relative;
}

.video-popup .video-popup-close {
    position: absolute;
    right: 0;
    top: -30px;
    height: 30px;
    width: 30px;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    color: #fff;
}

.video-popup.open {
    opacity: 1;
    visibility: visible;
}

/* booking section */
.booking .bg {
    position: absolute;
    top: 660px;
    right: 0px;
    z-index: -1;
    width: 80vw;
}

.booking .section-title {
    margin-bottom: 20px;
}

.booking .section-title h2 {
    font-size: 20px;
    text-align: left;
}

.booking .section-title h1 {
    font-size: 30px;
    text-align: left;
    text-transform: capitalize;
    color: var(--color-2);
}

.about-us-img img {
    max-width: 400px;
    width: 100%;
    border-radius: 32px;
    animation: bounceTop_01 10s ease infinite;
}

.about-us-text p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-color);
    margin: 0 0 15px;
    font-weight: 400;
}

/* profile section */
.profile {
    background-color: var(--black-000);
}

.profile .section-title {
    margin-bottom: 20px;
}

.profile .section-title h2 {
    font-size: 20px;
    text-align: center;
}

.profile .section-title h1 {
    font-size: 30px;
    text-align: center;
    text-transform: capitalize;
    color: var(--black-900);
}

.profile .card {
    min-height: 500px;
}

.profile-img img {
    max-width: 250px;
    width: 100%;
    border-radius: 32px;
    animation: bounceTop_01 10s ease infinite;
}

.profile-text p {
    font-size: 16px;
    line-height: 26px;
    color: var(--black-400);
    margin: 0 0 15px;
    font-weight: 300;
}

/* android section */
.android {
    background: linear-gradient(63deg, var(--color-2), var(--color-3));
}

.android .android-text h2 {
    color: var(--black-900);
}

.android .android-text p {
    color: var(--black-400);
}

.android-img img {
    max-width: 350px;
    width: 100%;
    border-radius: 32px;
    animation: bounceTop_01 10s ease infinite;
}

/* team section */
.team {
    background-color: var(--black-100);
}

.team-item {
    margin: 15px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-black-100);
    text-align: center;
    transition: all 0.5s ease;
}

.team-item h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--black-900);
    margin: 15px 0 5px;
    text-transform: capitalize;
}

.team-item span {
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: var(--black-400);
    text-transform: capitalize;
}

.team-item:hover {
    box-shadow: var(--shadow-black-300);
    transition: all 0.5s ease;
}

/* timeline section */
.timeline .section-title p {
    color: var(--black-900);
    text-align: center;
}

.timeline-item {
    margin: 15px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-black-100);
}

.timeline-item h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--black-900);
    margin: 15px 0 5px;
    text-transform: capitalize;
}

.timeline-item span {
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: var(--black-400);
    text-transform: capitalize;
}

/* app download section */
.as-seen {
    background-image: url("../img/asseenbg.jpg");
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.as-seen .section-title h2 {
    color: #fff;
}

.as-seen::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--main-to-dark-color);
    opacity: 0.6;
}

.as-seen-item {
    padding: 30px 30px;
}

/* timeline section */
.timeline-item {
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-item.line-right::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    left: 50%;
    top: 60px;
    background-color: var(--main-color);
    z-index: -1;
}

.timeline-item .step {
    display: inline-block;
    height: 60px;
    width: 60px;
    background-color: var(--main-color);
    font-size: 30px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    color: #fff;
    font-weight: 500;
}

.timeline-item h3 {
    margin: 20px 0;
    font-size: 22px;
    font-weight: 500;
    color: var(--black-900);
    text-transform: capitalize;
}

.timeline-item p {
    font-size: 16px;
    font-weight: 300px;
    margin: 0;
    color: var(--black-400);
    line-height: 26px;
}

/* contact section */
.contact {
    background-color: var(--black-100);
}

.contact-info h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--black-900);
    margin: 0 0 40px;
}

.contact-info-item {
    position: relative;
    padding-left: 55px;
    margin-bottom: 30px;
}

.contact-info-item i {
    position: absolute;
    height: 40px;
    width: 40px;
    left: 0;
    top: 0;
    border-radius: 50%;
    font-size: 16px;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    text-align: center;
    line-height: 38px;
}

.contact-info-item h4 {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 10px;
    color: var(--black-900);
}

.contact-info-item p {
    font-size: 16px;
    font-weight: 300;
    margin: 0;
    line-height: 26px;
    color: var(--black-400);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-control {
    height: 52px;
    border: 1px solid transparent;
    box-shadow: var(--shadow-black-100);
    border-radius: 30px;
    padding: 0 24px;
    color: var(--black-900);
    background-color: var(--black-000);
    transition: all 0.5s ease;
}

.contact-form .form-control:focus {
    border-color: var(--main-color);
}

.contact-form textarea.form-control {
    height: 140px;
    padding-top: 12px;
    resize: none;
}

/* footer section */
.footer {
    background-color: var(--black-400);
    padding: 50px 0 0;
}

.footer .copyright-text {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    padding: 20px 0;
    text-align: center;
    margin: 50px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--footer-text-color);
    margin: 0 0 25px;
    text-transform: capitalize;
}

.footer-col p {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 26px;
    margin: 0;
}

.footer-col ul {
    margin: 0;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    text-transform: capitalize;
    transition: all 0.5s ease;
    text-decoration: none;
}

.footer-col ul li a:hover {
    padding-left: 5px;
}

/* toggle theme */
.toggle-theme {
    position: fixed;
    right: 0;
    top: calc(50% - 20px);
    height: 40px;
    width: 40px;
    background-color: var(--dark-to-main-color);
    z-index: 1200;
    color: #fff;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: var(--shadow-black-300);
    transition: all 1s ease;
}

.toggle-theme i {
    line-height: 40px;
    transition: all 1s ease;
}

/* responsive */
@media (max-width: 991px) {
    .navbar.navbar-shrink .navbar-toggler,
    .navbar.navbar-shrink .navbar-nav {
        background-color: var(--color-2);
    }

    .navbar-toggler {
        background-color: var(--dark-to-main-color);
        box-shadow: var(--shadow-black-300);
        height: 34px;
        width: 44px;
        padding: 0;
        font-size: 17px;
        color: #fff;
    }

    .navbar-nav {
        background-color: var(--dark-to-main-color);
        padding-bottom: 15px;
    }

    .navbar .nav-item {
        margin: 0px;
        padding: 5px 15px;
    }

    .home-img .circle {
        height: 320px;
        width: 320px;
    }

    .home-img .circle::before {
        left: 18px;
        top: 18px;
        transform-origin: 142px 142px;
    }

    .home-text h1 {
        font-size: 40px;
    }

    .how-it-works-item,
    .app-download-item,
    .pricing-plan {
        margin-bottom: 30px;
    }

    .how-it-works-item.line-right::before {
        content: none;
    }

    .how-it-works-item {
        box-shadow: var(--shadow-black-100);
        border-radius: 10px;
    }

    .footer-col {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .home-text {
        margin-bottom: 80px;
    }

    .home {
        padding: 60px 0 0 0;
    }

    .fun-facts-img {
        margin-bottom: 30px;
    }

    .contact-form {
        margin-top: 20px;
    }

    .section-title h2 {
        font-size: 35px;
    }

    .fun-facts .section-title h2 {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .home-text h1 {
        font-size: 30px;
    }

    .home {
        padding: 60px 0 0 0;
    }

    .home-text p {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .home-btn .btn.btn-1 {
        margin-bottom: 20px;
    }

    .home-img {
        margin-top: -50px;
    }

    .android-img {
        margin-bottom: 10px;
    }
}

.choices__inner {
    min-height: calc(1.5em + 0.75rem + 2px) !important;
    height: calc(1.5em + 0.75rem + 2px) !important;
    border-radius: 0.25rem !important;
    font-size: 1rem !important;
    padding: 0.375rem 0.75rem !important;
}

.choices__list--single {
    padding: 1px 12px 1px 0px !important;
}

.bg-red {
    background: #ff0000;
}

.btn-danger:hover {
    color: #fff;
    background-color: #ff3700;
    border-color: #ff3700;
}

.btn-radius {
    border-radius: 50px;
}

#slick_slider img {
    border-radius: 0.25rem;
}

#tanggal_berangkat:read-only {
    background-color: #f9f9f9 !important;
}

.card-shadow {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

.card-shadow:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    transition: box-shadow 0.3s ease-in-out;
}

.btn-dark {
    color: #fff;
    background-color: #2b2c2f;
    border-color: #2b2c2f;
}

.img-logo {
    width: 150px;
    /* border-radius: 50%; */
}

.input-group-text {
    background-color: white;
}

.navbar-collapse {
    padding-top: 15px;
}

.card-semi {
    background-color: rgba(255, 255, 255, 0.8);
}

section#booking .form-control[readonly] {
    background-color: white;
}

/*# sourceMappingURL=welcome.css.map */

@media (max-width: 576px) {
    .logo-brand {
        width: 100px;
        height: 50px;
    }

    .navbar-nav .nav-item .nav-link {
        color: #fff !important;
    }
}

@media (min-width: 992px) {
    .logo-brand {
        width: 180px;
        height: 80px;
    }
}
