*{
    margin: 0;
    padding: 0;
}
@font-face {
    font-family: the-font;
    src: url(../assets/Playfair_Display/PlayfairDisplay-Italic-VariableFont_wght.ttf);
}
body{
    /* font-family: 'the-font'; */
    background-color: #ffffff;
}
#logo{
    z-index: 1;
    position: fixed;
}
#logo a{
    font-family: 'the-font';
    text-decoration: none;
    color: #00a7e5;
    font-size: 15px;
}

@media screen and (max-width: 800px){
    /* header */
    .contact-header{
        background-color: #00345b;
        width: 100%;
        height: 60px;
        position: fixed;
        color: #ffffff;
    }
    .contact-header p{
        margin-left: 15px;
        position: fixed;
        margin-top: 5px;
    }
    header{
        width: 100%;
        height: 55px;
        margin-top: 60px;
        background-color: #001920;
        position: fixed;
    }
    #logo h1{
        margin-left: 15px;
        margin-top: 5px;
    }
    nav {
        display:none;
        clear: both;
        width: 100%;
        position: absolute;
        z-index: 2;
        margin-top: 50px;
        background-color: #001920;
    }
    nav ul {
        margin: 0;
        padding: 0;
        background-color: #001920;
    }
    nav ul li {
        list-style-type: none;
        background-color: #001920;
    }
    nav ul li a {
        display: block;
        text-decoration: none;
        margin: 10px;
        padding: 14px 20px;
        color: #00a7e5;
        background-color: #001920;
        border-radius: 5px;
        text-align: center;
        font-weight: bold;
    }
    nav ul li a:hover {
        color:#fff;
        background-color: #00a7e5;
    }
    #hamburger{
        float:right;
        padding: 7px 10px;
        margin: 10px;
        color: #252523;
        background-color: #00a7e5;
        border-radius: 5px;
        font-size: 20px;
    }
    #hamburger:hover{
        color: #fff;
        background-color: #00a7e5;
    }

    /* content */
    .container{
        margin-top: 75px;
    }

    /* banner */
    .banner-area{
        height: 200px;
        background-image: url(../assets/banner-2.jpg);
        background-position: center;
        background-size: 100%;
        color: #00a7e5;
        font-size: 18px;
    }
    .banner-image{
        margin: 0 auto;
        text-align: center;
    }
    .slogan{
        margin: 0 auto;
        width: 80%;
        margin-top: 50px;
        background: rgb(0, 25, 32, 0.8);
    }

    /* about us */
    .about-us{
        width: 95%;
        height: auto;
        margin: auto;
        margin-bottom: 30px;
        margin-top: 20px;
    }
    .about-us h2{
        font-size: 30px;
    }
    .box-1{
        display: flex;
        width: 100%;
        flex-wrap: wrap;
    }
    .box-1 img{
        /* width sesuaikan dengan gambar pendukung */
        width: 95%; 
        margin: auto;
        margin-bottom: 20px;
    }
    .box-1 p{
        width: 90%;
        margin: auto;
        font-size: 18px;
    }

    /* provides */
    .provide{
        width: 90%;
        margin: auto;
        margin-bottom: 30px;
    }
    .provide h2{
        font-size: 30px;
    }
    .box-2{
        width: 100%;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
    }
    .point{
        width: 90%;
        margin: auto;
        font-size: 18px;
        list-style: decimal;
        margin-bottom: 30px;
    }
    .point li{
        margin-bottom: 10px;
    }
    .box-2 img{
        margin: auto;
        width: 90%;
    }

    /* mision */
    .mision{
        width: 80%;
        margin: auto;
        list-style: circle;
        margin-bottom: 30px;
    }
    .mision h2{
        font-size: 30px;
    }
    .mision li{
        margin: 10px;
    }

    /* legality */
    .legality-area{
        margin: auto;
        width: 100%;
        margin-bottom: 30px;
    }
    .legality-area h2{
        font-size: 30px;
    }
    .legality{
        display: flex;
        flex-wrap: wrap;
    }
    .legality img{
        margin: 20px auto;
        width: 90%;
    }

    /* button wa pojok kanan bawah */
    .box-9{
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        z-index: 3;
        position: fixed;
    }
    .box-9 img{
        width: 100%;
    }

    /* footer website */
    .footer-area{
        color: #ffffff;
        background-color: #00345b;
        width: 100%;
        margin: auto;
    }
    .about-footer{
        width: 80%;
        margin: auto;
        margin-bottom: 50px;
    }
    .about-footer h1{
        font-family: 'the-font';
        text-align: center;
    }
    .about-footer p{
        width: 100%;
        font-size: 20px;
        text-align: center;
        margin: auto;
    }
    .contact-footer{
        width: 90%;
        margin: auto;
    }
    .contact-footer table{
        margin: auto;
        width: 100%;
        font-size: 19px;
    }
}

@media screen and (min-width: 800px){
    /* header */
    .contact-header{
        background-color: #00345b;
        width: 100%;
        height: 43px;
        position: fixed;
        color: #ffffff;
    }
    .contact-header p{
        margin-left: 20px;
        position: fixed;
        margin-top: 10px;
    }
    header{
        display: inline-flex;
        width: 100%;
        height: 50px;
        margin-top: 43px;
        background-color: #001920;
        position: fixed;
    }
    nav{
        background-color: #001920;
        margin-left: 43vw;
        float: right;
    }
    header ul{
        display: inline-flex;
        background-color: #001920;
    }
    header ul li{
        position: relative;
        list-style: none;
        z-index: 2;
        background-color: #001920;
    }
    #logo{
        background-color: #001920;
        height: 50px;
    }
    #logo h1{
        margin-left: 20px;
        margin-top: 5px;
        background-color: #001920;
    }
    header ul li a{
        position: relative;
        margin-top: 11px;
        margin-right: 3.4vw;
        display: inline-block;
        color: #00a7e5;
        text-align: center;
        /* font-weight: bold; */
        padding: 1px;
        text-decoration: none;
        font-size: 1.5em;
        letter-spacing: 0.5px;
        background-color: #001920;
    }

    /* content */
    .container{
        margin-top: 75px;
    }

    /* banner */
    .banner-area{
        height: 200px;
        background-image: url(../assets/banner-2.jpg);
        background-position: center;
        background-size: 100%;
        color: #00a7e5;
        font-size: 30px;
    }
    .banner-image{
        margin: 0 auto;
        text-align: center;
    }
    .slogan{
        margin: 0 auto;
        width: 80%;
        margin-top: 30px;
        background: rgb(0, 25, 32, 0.85);
    }

    /* about us */
    .about-us{
        width: 95%;
        height: auto;
        margin: auto;
        margin-bottom: 30px;
        margin-top: 20px;
    }
    .about-us h2{
        font-size: 30px;
    }
    .box-1{
        display: flex;
        width: 100%;
    }
    .box-1 img{
        /* width sesuaikan dengan gambar pendukung */
        width: 35%; 
        margin: auto;
    }
    .box-1 p{
        width: 50%;
        margin: auto;
        font-size: 18px;
    }

    /* provides */
    .provide{
        width: 90%;
        margin: auto;
        margin-bottom: 30px;
    }
    .provide h2{
        font-size: 30px;
    }
    .box-2{
        width: 100%;
        margin: auto;
        display: flex;
    }
    .point{
        width: 55%;
        margin: auto;
        font-size: 18px;
        list-style: decimal;
        margin-bottom: 30px;
    }
    .point li{
        margin-bottom: 10px;
    }
    .box-2 img{
        margin: auto;
        width: 35%;
    }

    /* mision */
    .mision{
        width: 80%;
        margin: auto;
        list-style: circle;
        margin-bottom: 30px;
    }
    .mision h2{
        font-size: 30px;
    }
    .mision li{
        margin: 10px;
    }

    /* legality */
    .legality-area{
        margin: auto;
        width: 100%;
        margin-bottom: 30px;
    }
    .legality-area h2{
        font-size: 30px;
    }
    .legality{
        display: flex;
        flex-wrap: wrap;
    }
    .legality img{
        margin: 20px auto;
        width: 30%;
    }

    /* button wa pojok kanan bawah */
    .box-9{
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        z-index: 3;
        position: fixed;
    }
    .box-9 img{
        width: 100%;
    }

    /* footer website */
    .footer-area{
        color: #ffffff;
        background-color: #00345b;
        display: inline-flex;
        width: 100%;
        margin: auto;
    }
    .about-footer{
        width: 40%;
        margin: auto;
        text-align: center;
    }
    .about-footer h1{
        font-family: 'the-font';
        text-align: center;
    }
    .about-footer p{
        width: 80%;
        font-size: 20px;
        margin: auto;
    }
    .contact-footer{
        width: 40%;
        margin: auto;
    }
    .contact-footer table{
        margin: auto;
        width: 90%;
        font-size: 20px;
    }
}

#footer{
    background-color: #001920;
    color: #00a7e5;
    height: 50px;
    width: 100%;
    text-align: center;
    display: inline-flex;
}
#footer label{
    font-size: 20px;
    margin: auto;
    margin-top: 11px;
}