/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* Bootstrap Over-ride */
/* @media (min-width: 1000px) {
    .container {
        max-width: 1000px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 24px;
    }
} */

hr {
    border: none;
    height: 3px;
    color: #333;
    /* Background color */
    background-color: #333;
    /* Background color */
}

/* .dropdown-toggle::after {
    display: none;
} */

/* .dropdown-menu {
    top: 58px;
    left: 0px;
    padding: 10px;
} */

.alert-primary {
    background-color: #E4F1FF;
}



/* Navigation-Main*/

/* xs */
.logo {
    width: 49px;
    height: auto;
}

/* sm */
@media (min-width: 768px) {
    .logo {
        width: 49px;
    }
}

/* md */
@media (min-width: 992px) {
    .logo {
        width: 60px;
    }
}

/* lg */
@media (min-width: 1200px) {
    .logo {
        width: 70px;
    }
}

.card:hover {
    transform: scale(1.02);
    /* Slightly enlarge the card on hover */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15) !important;
    /* Add shadow on hover */
}

.posting-card {
    transition: transform .2s;
    /* Animation */
}

.posting-card:hover {
    transform: scale(1.02);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

/* view_postings.html */
.large-image {
    border: 1px solid black;
}

/* new_postings.html */
/* .bold {
    font-weight: bold;
    color: red;
} */



/* Footer */


/* .dropdown-item:hover {
    color: green !important;
} */