/********** common setting **********/

.navbar {
    background-color: #00ff84;
    color: #000000;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between; /* Mengatur elemen untuk menyebar di antara ruang */
    align-items: center;
}

.navbar-brand a {
    color: #000000;
    text-decoration: none;
    font-size: 1.5em;
}

.navbar-brand .logo {
    width: 50px;  /* Ukuran logo */
    height: auto;
    margin-right: 10px; /* Memberikan jarak antara logo dan teks (jika ada) */
}

.navbar-menu {
    list-style-type: none; /* Menghilangkan titik pada list */
    padding: 0; /* Menghilangkan padding default */
    margin: 0; /* Menghilangkan margin default */
    display: flex; /* Menyusun item secara horizontal */
    gap: 10px; /* Mengurangi jarak antara item */
    margin-left: auto; /* Memindahkan menu ke kanan */
}

.navbar-menu li {
    display: inline; /* Menampilkan item list secara inline */
    margin-left: 20px;
}

.logo-left {
    position: absolute;
    height: 45px; /* Adjust the size of the logo */
    margin-top: -10px;
    left:-10px; /* Aligns the logo to the left */
    margin-right: 10px; /* Adds some space to the right of the logo */
}


.navbar-menu a {
    text-decoration: none; /* Menghilangkan garis bawah pada link */
    color: #333; /* Mengubah warna teks */
    font-weight: bold; /* Membuat teks menjadi tebal */
    padding: 8px 15px; /* Menambahkan padding di sekitar teks */
    border-radius: 5px; /* Membuat sudut menjadi melengkung */
    transition: background-color 0.3s, color 0.3s; /* Transisi halus saat hover */
}

.navbar-menu a:hover {
    background-color: #ffffff; /* Warna latar belakang saat hover */
    color: #6e1a1a; /* Warna teks saat hover */
}
h2 {
    font-size: 2.8rem !important;
    font-weight: 700;
}

img {
    display: block;
    max-width: 100%;
}

a,
button {
    cursor: pointer;
}

.jumbotron {
    margin-bottom: 0 !important;
}

.atlas-cta {
    border-radius: 22px !important;
    padding: 12px 30px !important;
    font-weight: 700;
    transition: .3s ease-in-out !important;
}

.atlas-cta:hover {
    text-decoration: none;
    transform: translateY(-5px);
}

.atlas-cta-wide {
    width: 100%;
}

.cta-green {
    background: #00ff84;
    color: #192440;
}

.cta-green:hover {
    color: #ffffff;
    background: #00e69c;
}

.cta-blue {
    background: #192440;
    color: #ffffff;
}

.cta-blue:hover {
    color: #ffffff;
    background: #121a2e;
}

.cta-ghost {
    border: 2px solid #192440 !important;
    color: #192440;
}

.cta-ghost:hover {
    color: #ffffff;
    background: #121a2e;
}

#banner {
    background-size: cover;
}

/********** banner **********/
#banner header {
    overflow: hidden;
}

#banner header img {
    max-width: 80px;
}

/********** feature (skew background) **********/
.feature img {
    width: 100%;
    max-width: 480px;
}

#feature-first {
    background: linear-gradient(168deg, #ffffff 55%, #00ff84 0);
}

#feature-last {
    background: #00ff84;
}

/********** price table **********/
#price-table {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

#price-table__premium {
    background: #192440;
    color: #ffffff;
}

#price-table ul li {
    padding: 5px 0;
}

/********** contact **********/
#contact {
    background-size: cover;
}

#contact ul li {
    padding: 3px 0;
}

#contact form {
    color: #00FFAD;
}

#contact form input,
#contact form textarea {
    background: transparent;
    border: 1px solid #00FFAD;
    color: #ffffff;
}

/********** copyright **********/
#copyright {
    background: #192440;
    padding: 2rem 3rem;
}

#copyright #social-media a {
    width: 40px;
    height: 40px;
    border-radius: 99%;
    background: #ffffff;
    transition: .4s ease;
}

#copyright #social-media a i {
    color: #192440;
    font-size: 1.2rem;
    line-height: 40px;
}

#copyright #social-media a:hover {
    background: #00FFAD;
}

#copyright #social-media a:hover i {
    color: #ffffff;
}

/********** RWD **********/
@media (max-width: 575px) {
    #banner h1 {
        font-size: 3.6rem;
    }
}