.t4-megamenu .navbar-nav > li > a {
    color: #111;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
    padding: 18px 20px;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

/* Hover */
.t4-megamenu .navbar-nav > li > a:hover {
    color: #b22222;
}

/* Active menu */
.t4-megamenu .navbar-nav > li.active > a,
.t4-megamenu .navbar-nav > li.current > a {
    color: #b22222;
}

/* Garis bawah active */
.t4-megamenu .navbar-nav > li.active > a::after,
.t4-megamenu .navbar-nav > li.current > a::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 10px;
    width: calc(100% - 40px);
    height: 2px;
    background: #b22222;
}

.site-logo img,
.logo-image {
    max-height: 90px;
    width: auto;
}

.site-logo {
    padding: 0;
    margin: 0;
}

/* HERO FEATURE */

.hero-feature {
    position: relative;
    overflow: hidden;
}

/* gambar hero */
.hero-feature img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

/* area teks */
.hero-feature .newsflash {
    position: relative;
}

/* overlay gelap */
.hero-feature .newsflash::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.45) 40%,
        rgba(0,0,0,0.1) 100%
    );
    z-index: 1;
}

/* konten teks */
.hero-feature .newsflash-item {
    position: absolute;
    left: 60px;
    bottom: 60px;
    z-index: 2;
    max-width: 520px;
    color: white;
}

/* judul */
.hero-feature .newsflash-title,
.hero-feature .newsflash-title a {
    color: white;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;
    text-decoration: none;
}

/* intro text */
.hero-feature .newsflash p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-top: 20px;
}

/* tombol */
.hero-feature .readmore a {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 28px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.hero-feature .readmore a:hover {
    background: white;
    color: black;
}