* {
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    background-color: #000002;
}

.navbar {
    background-color: black;
    border-bottom: 8px solid #CF9455;
}

.navbar a {
    color: white;
}

.logo {
    position: absolute;
    top: 12px;
    left: 42%;
}

.navbar-toggler {
    background-color: #CF9455;
}

.navbar-toggler-icon {
    color: black;
}

.news-section {
    margin-top: -15%;
    background-image: url("../images/about/13244.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-size: 200%;
}

.news-section h2 {
    text-transform: uppercase;
    font-weight: 700;
}

.news-section .left {
    background-color: #686868;
    color: white;
    border-top: 8px solid #CF9455;
    border-bottom: 8px solid #272727;
    height: 100%;
}

.black {
    border-color: rgb(37, 37, 37);
}

.news img {
    object-fit: cover;
    height: 250px;
}

.news {
    border: 1px solid white;
    border-bottom: 8px solid white;
}

.news:hover {
    border-bottom: 8px solid #CF9455;
    transition: all 0.2s linear;
}


/* ------------------------------------------------------------------------------ */


/* news-container grid */

.news-container {
    transition: all .5s ease-in-out;
    column-gap: 30px;
    column-fill: initial;
}

.news-container a {
    text-decoration: none;
    color: white;
}


/* news-container item */

.news-container .news {
    margin-bottom: 30px;
    display: inline-block;
    /* Fix the misalignment of items */
    vertical-align: top;
    /* Keep the item on the very top */
}


/* news-container image effects */

.news-container .news img {
    transition: all .3s ease-in-out;
    backface-visibility: hidden;
    /* Remove Image flickering on hover */
}

.news-container .news:hover img {
    opacity: .75;
}


/* news-container on tablets */

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .news-container {
        column-count: 2;
    }
}


/* news-container on big screens */

@media only screen and (min-width: 1024px) {
    .news-container {
        column-count: 3;
    }
}

.card_image {
    margin: -1px !important;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    /* margin-right: -2px !important; */
}

.black_text {
    color: black !important;
}


/* --------------------- Footer ----------------------- */

footer {
    margin-top: 10%;
    bottom: 0;
    background-color: #686868;
    color: white;
}

footer .number i,
footer .mail i {
    color: #CF9455;
}

footer .socials i {
    background-color: #CF9D4B;
    padding: 5px;
    width: 35px;
    height: 35px;
    text-align: center;
}

footer .popular a {
    color: #bdbdbd;
    text-decoration: none;
}

footer .quick {
    color: #bdbdbd;
}

footer .quick a {
    color: white;
}

footer .quick h5 {
    color: white;
}

footer .popular button {
    border: 1px solid #bdbdbd;
    color: #bdbdbd;
    border-radius: 0;
    margin: 2px;
}

footer .popular button:hover {
    background-color: #CF9455;
}

footer .popular button:hover a {
    color: white;
}

.footer-nav {
    background-color: #272727;
}

.footer-nav a {
    color: white;
}

.footer-bottom {
    background-color: #686868;
    color: white;
}

@media (max-width: 786px) {
    footer img {
        width: 50%;
    }
}