* {
    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: 48px;
    color: white;
    font-weight: 800;
}

.header-sub {
    font-size: 18px;
    color: white;
    position: relative;
    top: 20px;
    color: #ffffffbf;
}


/* image */

.detail-box {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
}

.detail-cover {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-text {
    text-align: justify;
}

.info-image {
    max-width: 1024px;
}

.sub-title {
    font-weight: 900;
    font-size: 24px;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: 10px;
}


/* card info */

.box-info {
    background-color: white;
    transition: 0.3s all;
    border-radius: 15px;
    overflow: hidden;
}

.a-info:hover .box-info {
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.03);
}

.info-cover {
    overflow: hidden;
    height: 150px;
}

.info-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.judul-info {
    font-size: 18px;
}

.owl-dots {
    margin-top: 40px !important;
}

@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-sub {
        font-size: 28px;
    }
    .header-text {
        font-size: 64px;
    }
    .sub-title {
        font-weight: 900;
        font-size: 24px;
        margin-top: 50px;
        margin-bottom: 50px;
        margin-left: 0px;
    }
}

@media only screen and (max-width: 400px) {
    .header-text {
        font-size: 42px;
    }
}

@media only screen and (max-width: 780px) {
    .header-wrap {
        height: 100px!important;
    }
}
