/* MISCELLANEOUS */
i {
    color: crimson;
}

a {
    text-decoration: none;
    /* color: white; */
    color: #333;
}

a:hover {
    /* color: white; */
    color: #333;
}

.disableClick {
    pointer-events: none;
}

/* IMAGE CUSTOM CLASS */
.img-custom {
    width: 100%;
    height: 20em;
    object-fit: cover;
    border-radius: 5px;
}

/* BUTTON CUSTOM CLASS */
.btn-custom {
    background-color: #333;
    border-radius: 25px;
    padding: 0.5em 0.9em 0.5em 0.9em;
    color: white;
}

.btn-custom:hover {
    transform: scale(1.05);
    transition: 0.3s;
    background-color: crimson;
    box-shadow: 3px 3px lightgray;
    color: white;
}

/* FONT*/
body {
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6, footer a {
    font-weight: 500;
    color: darkgoldenrod;
}


/* NAVBAR */
nav {
    background-color: white;
}

nav img {
    height: 2em;
}

nav h5 {
    margin-bottom: 0;
}

.navbar-brand:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

nav .form-control {
    border: none;
}

nav form {
    border-bottom: 1px solid darkgoldenrod;
    border-radius: 0.2em;
    margin-left: 2em;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 400;
}

nav .nav-link:hover {
    color: crimson;
    transform: scale(1.02);
    transition: 0.1s;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus,
nav form .form-control:focus,
nav form .form-control:active,
nav form .btn:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    color: #333;
    font-size: 1.7em;
}


/* HEADER */
header {
    background-image: linear-gradient(to left, rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
    url('../img/stock-market.jpg');
    background-size: cover;
    background-position: right 35% bottom 35%;
    padding-top: 10em;
    padding-bottom: 10em;
    margin-top: 5.5em;
}


/* PILLS */
.pills .nav-link h6 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.pills .nav-link.active h6 {
    color: white;
}

.pills .nav-link.active {
    background-color: #333;
    /* border-radius: 25px; */
    transform: scale(1.05);
    box-shadow: 3px 3px lightgray !important;
}

.article-link {
    color: crimson;
}

.article-link:hover {
    color: crimson;
    text-decoration: underline;
    transition: 0.3s;
}


/* ACCORDIONS */
:focus {
    box-shadow: 0 0 0 0 rgba(0,0,0,0) !important;
}

.accordion-button:not(.collapsed) {
    background-color: whitesmoke;
}


/* CARDS */
.announcements .col-lg-3,
.sustainability .col-lg-3 {
    margin-bottom: 2em;
}

.announcements .card,
.sustainability .card {
    height: 100%;
    /* border: none; */
    border-color: crimson;
}

.announcements h5,
.sustainability h5 {
    color: #333;
    text-decoration: none;
}

.announcements .card:hover,
.sustainability .card:hover  {
    transform:scale(1.05);
    transition: 0.3s;
    box-shadow: 5px 5px lightgray;
}


/* FOOTER */
footer {
    background-color: whitesmoke;
    color: crimson;
}

footer a {
    color: #333;
}

footer a:hover {
    color: darkgoldenrod;
    transition: 0.3s;
}

footer span {
    margin-left: 0.3em;
    margin-right: 0.3em;
    color: crimson;
}


/* MEDIA QUERY */
@media all and (min-width: 992px) {
    /* NAVBAR */
    nav .container-fluid {
        margin-left: 1em;
        margin-right: 1em;
    }

	.navbar .nav-item .dropdown-menu { 
        margin-top:0; 
    }
}

@media only screen and (max-width: 1024px) {
    /* NAVBAR */
    .nav-link {
        font-size: 15px;
    }
}