@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
}

.nav-item {
    color: #4E4E4E !important;
}

.btn-navbar-right {
    border-radius: 20px;
    width: 100px;
}

/* hero */
.hero {
    background-image: url("../images/background/Gambar\ Hero.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
    padding: 50px 0;
}

.swal-button {
    padding: 7px 19px;
    border-radius: 2px;
    background-color: #4962B3;
    font-size: 12px;
    border: 1px solid #3e549a;
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.3);
}

.swal-overlay {
    background-color: rgba(43, 165, 137, 0.45);
}

.sky {
    width: 100%;
    height: 100vh;
    position: relative;
    background-color: #00ccff;
    overflow-x: hidden;
}

.clouds {
    position: absolute;
    top: 50px;
    height: 100px;
    right: 0;
    left: -2000px;
    width: 500%;
    background-image: url(https://i.ibb.co/7S6qn59/clouds.png);
    background-repeat: repeat-x;
    animation: clouds 50s linear infinite;
}

@keyframes clouds {
    100% {
        transform: translateX(2000px);
    }
}

.mountains {
    position: absolute;
    bottom: 0;
    height: 150px;
    right: 0;
    left: -2000px;
    width: 500%;
    background-image: url(https://i.ibb.co/zJbfkgZ/mountain.png);
    background-repeat: repeat-x;
    animation: mountains 10s linear infinite;
}

@keyframes mountains {
    100% {
        transform: translateX(2000px);
    }
}

.airplane {
    top: 180px;
    left: 70%;
    position: absolute;
    z-index: 1;
}

.flame {
    top: -40px;
    left: 150px;
    height: 10px;
    width: 60px;
    position: relative;
    border-radius: 50%;
    background-color: #ffffff;
    animation: flame 0.3s linear infinite;
    z-index: -1;
}

.flame2 {
    top: -195px;
    left: 115px;
}

@keyframes flame {
    0% {
        transform: translateX(0%);
    }

    50% {
        transform: translateX(50%);
    }

    100% {
        transform: translateX(0%);
    }
}

#loading {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 800;

    background: url(dropbox.gif) 50% 50% no-repeat;
    background-color: #FFFFFF;
    opacity: 0.9;
}

.open-button {
    border-radius: 20px;
    cursor: pointer;
    position: fixed;
    bottom: 23px;
    right: 28px;
}

.chat-popup {
    display: none;
    position: fixed;
    bottom: 0;
    right: 15px;
    border: 3px solid #f1f1f1;
    z-index: 9;
}

.form-container {
    width: 800px;
    padding: 10px;
    background-color: white;
}