/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.box{
    width: 100%;
    height: 150px;
    background: linear-gradient(65deg, #05a0a5, #c79635);
    position: absolute;
    opacity: 0.5;
    top:0;
    z-index: 0;
    border-radius: 0px 0px 30% 30%;
}
.kontent{
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 1;
}

.navigation{
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(65deg, #05a0a5, #c79635);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px 20px 0px 0px;
    z-index: 2;
}

.navigation ul{
    display: contents;
    width: 400px;
}

.navigation ul li{
    position: relative;
    width: 70px;
    height: 70px;
    list-style: none;
    z-index: 1;
}

.navigation ul li a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    font-weight: 500;
}

.navigation ul li a .icon{
    position: relative;
    display: block;
    line-height: 90px;
    font-size: 1.5em;
    text-align: center;
    color: #ffffff;
    transition: .5s;
}

.navigation ul li.aktive a .icon{
    transform: translateY(-20px);
    font-size: 35px;
}

.navigation ul li a .text{
    position: absolute;
    color: #ffffff;
    font-weight: 400;
    font-size: .75em;
    letter-spacing: .05em;
    opacity: 0;
    transform: translateY(20px);
    transition: .5s;
}

.navigation ul li.aktive a .text{
    opacity: 1;
    transform: translateY(5px);
}

.menu-toggle{
    width: 100%;
    padding: 10px; 
    text-decoration: none;   
}

.menu-toggle .addmenu{
    margin: auto;
    background: #eeeeee;
    width: 80%;
    padding: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    border-radius: 10px;
}

.menu-toggle .addmenu .icon{
    font-size: 50px;
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .images{
        width: 0%;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .images{
        width: 40%;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .images{
        width: 30%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .images{
        width: 20%;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .images{
        width: 20%;
    }
}

.img-menu{
    width: 100%;
}

.label-menu1{
    font-size: 12px;
}

.label-menu1 {
    line-height: 1.5; /* Atur jarak spasi atas dan bawah antar baris menjadi minimum */
}

.label-menu1 br {
    display: none; /* Sembunyikan tag <br> agar label-menu dalam satu baris */
}

.label-menu1::after {
    content: "Inap / Rawat Jalan"; /* Tambahkan teks "Keperawatan" setelah "Layanan" dengan menggunakan pseudo-element */
    display: block; /* Jadikan elemen ::after berupa blok agar dapat diatur margin */
    margin-top: -0.5em; /* Atur jarak spasi antara "Layanan" dan "Keperawatan" */
}

.label-menu2{
    font-size: 12px;
}

.label-menu2 {
    line-height: 1.5; /* Atur jarak spasi atas dan bawah antar baris menjadi minimum */
}

.label-menu2 br {
    display: none; /* Sembunyikan tag <br> agar label-menu dalam satu baris */
}

.label-menu2::after {
    content: "Komplain Pelayanan"; /* Tambahkan teks "Keperawatan" setelah "Layanan" dengan menggunakan pseudo-element */
    display: block; /* Jadikan elemen ::after berupa blok agar dapat diatur margin */
    margin-top: -0.5em; /* Atur jarak spasi antara "Layanan" dan "Keperawatan" */
}
