/* ===========================
   LINTAS INFORMASI
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f5f5f5;
    color:#333;
    line-height:1.7;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

/* ===========================
TOPBAR
=========================== */

.topbar{
    background:#0d6efd;
    color:#fff;
    padding:8px 0;
    font-size:14px;
}

/* ===========================
HEADER
=========================== */

header{
    background:#fff;
    padding:30px 0;
    text-align:center;
    border-bottom:1px solid #e5e5e5;
}

header h1{
    font-size:42px;
    font-weight:bold;
    color:#0d6efd;
}

header p{
    color:#777;
    margin-top:8px;
}

/* ===========================
MENU
=========================== */

.navbar{
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.nav-link{
    color:#fff !important;
    padding:15px 18px !important;
    font-weight:600;
}

.nav-link:hover{
    background:rgba(255,255,255,.12);
}

/* ===========================
HERO
=========================== */

.hero{
    padding:50px 0;
}

.hero img{
    border-radius:10px;
}

.hero h2{
    margin-top:20px;
    font-size:34px;
    font-weight:bold;
}

.hero p{
    margin:15px 0;
}

.headline{
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.headline h4{
    margin-bottom:15px;
    color:#0d6efd;
}

.headline ul{
    list-style:none;
}

.headline li{
    padding:12px 0;
    border-bottom:1px solid #eee;
}

.headline li:last-child{
    border-bottom:none;
}

.headline a:hover{
    color:#0d6efd;
}

/* ===========================
BERITA
=========================== */

.news{
    padding:70px 0;
}

.news h2{
    margin-bottom:30px;
    font-weight:bold;
}

.card{
    border:none;
    border-radius:10px;
    overflow:hidden;
    transition:.3s;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    margin-bottom:30px;
}

.card:hover{
    transform:translateY(-6px);
}

.card img{
    height:220px;
    object-fit:cover;
}

.card-body{
    padding:25px;
}

.card h5{
    font-weight:bold;
    margin-bottom:15px;
}

.btn-outline-primary{
    border-radius:50px;
}

/* ===========================
FOOTER
=========================== */

footer{
    background:#222;
    color:#fff;
    padding:60px 0 20px;
    margin-top:60px;
}

footer h4{
    margin-bottom:20px;
}

footer ul{
    list-style:none;
}

footer li{
    margin-bottom:10px;
}

footer a{
    color:#ddd;
}

footer a:hover{
    color:#fff;
}

footer hr{
    border-color:#444;
    margin:30px 0;
}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:991px){

header h1{
    font-size:32px;
}

.hero{
    text-align:center;
}

.headline{
    margin-top:30px;
}

}

@media(max-width:768px){

header{
    padding:20px 0;
}

.hero h2{
    font-size:26px;
}

.card img{
    height:200px;
}

}
/* BACK TO TOP */

#backTop{

position:fixed;

right:25px;

bottom:25px;

width:50px;

height:50px;

border:none;

border-radius:50%;

background:#0d6efd;

color:#fff;

cursor:pointer;

display:none;

z-index:999;

font-size:18px;

box-shadow:0 5px 15px rgba(0,0,0,.3);

transition:.3s;

}

#backTop:hover{

background:#084298;

transform:translateY(-3px);

}