* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Red Hat Display", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background-color: #f5f5f5;
}

:root {
    --biru: #2041bb;
    --abu: #c4c4c4;
}

.bg-biru {
    background-color: var(--biru);
}

.btn-login {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    height: 40px;
    background-color: white;
    font-weight: 700;
    transition: 0.3s all;
}

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.7);
}


/* footer */

#footer {
    padding-bottom: 30px;
    background-color: white;
}

.footer-title {
    font-size: 18px;
}

.footer-text {
    font-size: 16px;
}

.footer {
    margin-bottom: 100px;
}


/* ---------------------------- */

#header {
    /* height: 380px; */
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.header-wrap {
    height: 100%;
}

.header-text {
    font-size: 56px;
    font-weight: 800;
    color: white;
}

.header-input {
    background-color: #476fff;
    box-shadow: 0px 4px 12px -1px #00000026;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    outline: none;
    outline-style: none;
    border: none;
    width: 300px;
    height: 50px;
    padding: 5px;
    font-size: 18px;
    color: white;
    transition: 0.3s all;
}

::placeholder {
    color: white;
}

.header-btn {
    border: none;
    background: none;
    outline-style: none;
    outline: none;
    background-color: #476fff;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.bi-search {
    font-size: 28px;
}

.sub-title {
    font-weight: 900;
    font-size: 24px;
    margin-top: 50px;
    margin-bottom: 10px;
    margin-left: 0px;
}

.box-info {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.box-info:hover {
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.box-info img {
    transition: transform 0.3s ease;
}

.box-info:hover img {
    transform: scale(1.05);
}

.info-cover {
    overflow: hidden;
    height: 150px;
}

.info-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.judul-info {
    font-size: 16px;
}

@media only screen and (min-width: 768px) {
    .btn-login {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        width: 100px;
        height: 40px;
        background-color: white;
        font-weight: 700;
        transition: 0.3s all;
    }
    .header-text {
        font-size: 86px;
    }
    .header-sub {
        font-size: 24px;
    }
    .header-input {
        width: 600px;
        height: 55px;
        padding: 10px;
    }
}

@media only screen and (max-width: 400px) {
    .header-text {
        font-size: 42px;
    }
    .header-input {
        width: 200px;
        height: 50px;
        padding: 10px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 780px) {
    .header-wrap {
        height: 150px!important;
    }
}

@media only screen and (max-width: 500px) {
    .judul-info{
        font-size: 16px;
    }

    .text-informasi{
        font-size: 12px;
    }

    /* FORMS */
    .header-input{
        font-size: 14px;
    }
    form .bi-search{
        font-size: 18px;
    }
}
