:root{
    --bg-black: #000;
    --bg-red: #dd292b;
    --main-white: #fff;
    --main-yellow: #f1992d;
}

.error, .raderror, .chkerror {
    color: var(--bg-red);
}


#body-content {
    opacity: 0;
}

#body-content.open {
    opacity: 1;
}

/* -------- TOP HEADER -------- */
.top-header {
    display: flex;
    color: var(--main-white);
    font-size: 14px;
}

/* left red area */
.top-left {
    background: var(--bg-red);
    width: 50%;
    padding: 6px 15px;
    overflow: hidden;
    position: relative;
}

/* right gray area */
.top-right {
    background: var(--bg-black);
    width: 50%;
    padding: 6px 15px;
    text-align: right;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
}

/* running notice */
.notice-marquee {
    white-space: nowrap;
    animation: moveRight 12s linear infinite;
}
@keyframes moveRight {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}


/* ------ NAV BAR ------ */
.navbar-brand img {
    height: 60px;
}

/* ------ INNER PAGE BANNER ------ */
.inner-banner {
    /* background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1200&q=80')
        center/cover no-repeat; */
    padding: 120px 0 80px;
    color: var(--main-white);
    text-align: center;
    position: relative;
}

.inner-banner::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
}

.inner-banner .content {
    position: relative;
    z-index: 5;
}

.breadcrumb-area {
    padding-top: 10px;
    font-size: 14px;    width: fit-content;
    margin: auto;
    background: #010101a1;
    padding: 10px;
}

.breadcrumb-area a {
    color: var(--main-yellow);
    text-decoration: underline;
}

.top-left::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 150px solid var(--bg-black);
    z-index: 999999;
    right: -211px;
    position: absolute;
    top: 0px;
    transform: rotate(-9deg);
}

/* footer */
.footer-title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-underline {
    width: 40px;
    height: 2px;
    background: #fff;
    margin-top: 4px;
}
/* end footer */

