﻿
/*-- General --*/
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}


/*-- Header --*/

#header {
}

.header .logo h1 {
    font-size: 2.4em !important;
}



/*-- Hero Section --*/
.hero {
    background-color: var(--doj-blue);
}

    .hero:before {
        background: none;
    }

    .hero h1 {
        color: white;
    }



/*-- Initiatives Section --*/
.initiatives .content {
    font-size: 1.2em;
}

    .initiatives .content p {
        font-family: Assistant, sans-serif;
        font-weight: bold;
    }

    .initiatives .content h1 {
        font-style: italic;
        font-weight: bold;
        font-family: 'Noto Serif', serif;
        font-size: 4em;
    }

.initiatives .icon-box-container {
    margin-bottom: 10px;
}

.initiatives .icon-box {
    padding: 50px 40px;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #fff;
    height: 100%;
    transition: all 0.3s ease 0s;
}

    .initiatives .icon-box h3 {
        font-weight: bold;
    }

    .initiatives .icon-box:hover {
        background-color: var(--doj-blue);
        color: white;
        transition: all 0.3s ease 0s;
    }

        .initiatives .icon-box:hover h3 {
            color: var(--doj-gold) !important;
        }

    .initiatives .icon-box .bi {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        font-size: 32px;
        line-height: 0;
        transition: all 0.4s ease-out 0s;
        background-color: rgba(var(--accent-color-rgb), 0.05);
        color: var(--accent-color);
    }

    .initiatives .icon-box:hover .bi {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }



/*-- News Section --*/
.news .btn-morenews {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 26px;
    margin: 0;
    border-radius: 4px;
    transition: 0.3s;
}

.news .news-item {
    position: relative;
    padding: 20px 0 30px 0;
}

    .news .news-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: rgba(var(--default-color-rgb), 0.1);
    }

    .news .news-item::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background: var(--accent-color);
        border-right: 5px solid var(--background-color);
    }

    .news .news-item a.btn {
        padding: 12px;
        font-weight: bold;
        font-size: 1.2em;
        margin-top: 10px;
        width: 35%;
    }

.news .news-header {
    color: var(--doj-blue);
}

    .news .news-header a {
        color: var(--heading-color);
        transition: 0.3s;
    }

        .news .news-header a:hover {
            color: var(--accent-color);
            transition: 0.3s;
        }

.news .news-teaser {
    display: none;
}

.news .news-date {
    color: var(--accent-color);
    font-family: Assistant, sans-serif;
    font-weight: bold;
    font-size: 1.1em;
}

.news .feature {
}

    .news .feature img {
        width: 100%;
    }

    .news .feature p {
        font-size: 0.75em;
        font-family: Assistant, sans-serif;
        font-weight: 600;
    }

    .news .feature .news-date {
        display: block;
        margin: 10px 0;
        font-size: 1.2em;
    }



/*-- Meet Liz Section --*/
.meet h1 {
    font-family: 'Noto Serif', serif;
}

.meet .content {
    margin-top: 100px;
}


/*-- FAQ Section --*/
.faq .faq-item {
    background-color: #FFFFFF;
}



