@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
    --color1: #102871;
    --color2: #38b1c3;
}
::-webkit-scrollbar {
    width: 8px; /* Lebar scrollbar vertical */
    height: 8px; /* Tinggi scrollbar horizontal */
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* Warna track (jalur) scrollbar */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background-color: #38b1c3; /* Warna utama scrollbar */
    border-radius: 4px;
    border: 2px solid #f1f1f1; /* Memberi sedikit jarak agar terlihat elegan */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #2c90a1; /* Warna saat hover untuk efek interaktif */
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #38b1c3 #f1f1f1;
}
*,*::before,*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background-color: #edebeb;
}
img{
    max-width: 100%;
    height: auto;
}
.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.spacer{
    display: block;
    margin-top: 6rem;
}
.pHeader{
    width: 100%;
    padding: 15px 0 10px 0;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}
.pInner{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.brand{
    width: auto;
    height: 35px;
}
.small-brand{
    display: none;
}
.menu-right{
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.menu{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.menu li{
    position: relative;
}
.menu-link{
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    transition: 0.5s ease-in-out;
}
.menu-link.active::before,
.menu-link:hover::before{
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 30px;
    height: 3px;
    border-radius: 10px;
    background-color: var(--color2);
    transition: 0.5s ease-in-out;
}
.login-btn{
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    background-color: var(--color2);
    padding: 8px 20px;
    border-radius: 5px;
    box-sizing: border-box;
}
#menuOpen{
    cursor: pointer;
    font-size: 22px;
    color: var(--color2);
    display: none;
}
.relatif-postion{
    position: relative;
}
.profile-img{
    width: 40px;
    height: 40px;
    object-position: center;
    object-fit: cover;
    border-radius: 50%;
    cursor: pointer;
}
.munculJikaKlik{
    position: absolute;
    top: 20px;
    right: 0;
    padding: 20px;
    list-style: none;
    width: 250px;
    background-color: var(--color2);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.3);
    display: none;
}
.munculJikaKlik p{
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}
.munculJikaKlik .list-menu{
    margin-bottom: 1rem;
    font-size: 14px;
}
.munculJikaKlik .list-menu a{
    text-decoration: none;
    color: #edebeb;
}
.munculJikaKlik li form button{
    border: none;
    color: #fff;
    background: red;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
}

/* Hero */
.grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: center;
}
.inline-heading{
    color: var(--color2);
    font-size: 3rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
}
.dblock p{
    font-size: 20px;
    color: #666;
    margin-bottom: 1.5rem;
    display: block;
}
a.action{
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.3);
    background-color: var(--color2);
    color: #fff;
    text-decoration: none;
}


/* Footer */
.footer{
    background-color: #0a3d62;
    padding: 3rem 0 2rem 0;
    color: #999;
}
.fooInner{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.flex-foo{
    display: grid;
    grid-template-columns: 300px auto;
    gap: 1.5rem;
}
.fooLogo{
    width: 100%;
    max-width: 300px;
    text-align: center;
}
.fooLogo p{
    font-size: 14px;
    color: #fff;
    line-height: 2;
}
.fgrid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.fooUri{
    display: block;
    margin-bottom: 1rem;
}
.fooUri img{
    width: 100px;
    height: 100px;
    object-position: center;
    object-fit: cover;
}
.headline-foo{
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
}


/* Tablet */
/* Mobile */
@media(max-width:580px){
    .brand{
        display: none;
    }
    .small-brand{
        display: block;
        width: auto;
        height: 30px;
        object-position: center;
        object-fit: cover;
    }
    .menu-right .menu{
        display: none;
    }
    #menuOpen{
        display: block;
    }
    .profile-img{
        width: 35px;
        height: 35px;
    }
    .flex-foo{
        display: block;
    }
    .fooLogo{
        width: 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    .fgrid{
        display: block;
    }
    .grid{
        grid-template-columns: 1fr;
    }
}