.md-projects__lists {
    margin-bottom: 60px;
}

.md-projects__listDescription {
    margin-top: -12px; 
    margin-bottom: 12px; 
}

.md-projects__list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 20px;
}

@media only screen and (max-width: 76.1875em) {
    .md-projects__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 620px) {
    .md-projects__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.md-projects__item {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 0 0 15px 15px;
    -webkit-box-shadow: 0 3px 10px hsla(0, 0%, 65.1%, 0.5);
    box-shadow: 0 3px 10px hsla(0, 0%, 65.1%, 0.5);
}

.md-projects__itemTitle {
    text-align: center;
    padding: 10px;
    color: #122e37;
    font-weight: 700;
    font-size: 18px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.125s;
}

.md-projects__item:hover .md-projects__itemTitle {
    color: #c90e11;
}

/* Tables */
.md-typeset .md-typeset__table table {
    border: 2px solid #979898;
    border-radius: 5px;
    box-shadow: none;
}

.md-typeset table:not([class]) {
    font-size: 16px;
}

.md-typeset table:not([class]) th {
    padding: 0.25rem 0.5rem;
    background-color: #979898;
    font-weight: 700;
}

.md-typeset table:not([class]) td {
    padding: 0.25rem 0.5rem;
    border: 1px solid #e3e3e3;
}

.md-header-nav__topic {
    font-weight: 600;
}

html .md-nav--primary .md-nav__title {
    padding-top: 0;
    padding-bottom: 0;
    height: auto;
    font-weight: 700;
}

.md-sidebar__inner .nav-mobile-spacing {
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.desktop-hide {
    display: none;
}

@media only screen and (max-width: 76.1875em) {
    .mobile-hide {
        display: none;
    }

    .desktop-hide {
        display: block;
    }
}

@media only screen and (max-width: 76.1875em) {
    .md-main__inner {
        padding-top: 0;
    }
}

.md-sidebar .md-sidebar-back-overview {
    margin: 0 0.7rem 1rem 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    transition: color .125s;
}

@media only screen and (max-width: 76.1875em) {
    .md-sidebar .md-sidebar-back-overview {
        display: none;
    }
}

.md-sidebar .md-sidebar-back-overview:hover {
    color: #c90e11;
}

.md-sidebar__inner .nav-mobile-spacing .md-header-button__wrapper {
    height: auto;
}

/* First level of sidebar links */
.md-sidebar__inner > .md-nav > .md-nav__list > .md-nav__item > .md-nav__link {
    font-size: 18px;
    margin-top: 0.35rem;
}

.md-sidebar__inner > .md-nav > .md-nav__title {
    font-size: 18px;
}

.md-footer-nav {
    background-color: #3d494b;
}

.md-footer-meta__inner {
    display: flex;
    align-items: center;
    gap: 100px;
}

@media only screen and (max-width: 76.1875em) {
    .md-footer-meta__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

.md-footer-meta__company {
    padding: 25px 0.8rem;
    color: #bbc0c3;
    font-size: 18px;
}

.md-footer-meta__company strong {
    font-size: 22px;
}

.md-footer-company__text a {
    transition: color 0.25s ease-in;
}

.md-footer-company__text a:hover {
    color: white;
}

.md-footer-meta__copyright {
    border-top: 1px solid rgb(151, 151, 151, 0.25);
    padding: 5px 0.8rem;
}

.md-footer-copyright__text {
    color: #bbc0c3;
    font-size: 14px;
}

.md-footer-button {
    transition: background-color 0.25s ease-in;
    border: 1px solid #f6f6f6;
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 3px 15px;
    min-height: 34px;
    cursor: pointer;
    position: relative;
}

.md-footer-meta {
    background-color: #374244;
}

.md-search__input {
    transition: all 0.25s ease-in;
    border: 1px solid transparent;
    background-color: #f6f6f6;
    border-radius: 25px;
}

.md-search__input::placeholder {
    color: rgba(61, 73, 75, 0.65);
}

.md-search__input:hover {
    border-color: #f6f6f6;
    background-color: white;
}

.md-header-button__wrapper {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    height: 48px;
    margin-right: 1.2rem;
}

.md-header-button__button {
    transition: background-color 0.25s ease-in;
    border: 1px solid #f6f6f6;
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 3px 15px;
    min-height: 34px;
    cursor: pointer;
    position: relative;
}

.md-header-button__button:hover {
    background-color: #f6f6f6;
}

.md-header-button__button:hover .md-header-button__dropdown {
    display: block;
    z-index: 15;
}

.md-header-button__icon {
    margin-right: 5px;
}

.md-header-button__caret {
    margin-left: 10px;
    margin-top: 2px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #122e37;
}

.md-header-button__title {
    white-space: nowrap;
}

.md-header-button__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    border: 1px solid #f6f6f6;
    border-radius: 25px;
    background-color: #ffffff;
    box-shadow: 0 6px 40px -5px rgb(0 0 0 / 11%);
    padding: 10px;
}

.md-header-button__dropdown a {
    display: block;
    transition: color 0.25s ease-in;
    padding: 5px;
}

.md-header-button__dropdown a:hover {
    color: #c90e11;
}

.md-header-nav__button {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 12.4px 10.4px 8.4px 10.4px;
}

.md-content section {
    margin-bottom: 30px;
}

.md-typeset h1 {
    font-weight: 600;
    font-size: 46px;
    color: #122e37;
    margin: 0 0 15px 0;
}

.md-typeset h2 {
    font-weight: 600;
    font-size: 36px;
    color: #122e37;
    margin: 0 0 12px 0;
}

.md-typeset h3 {
    font-weight: 600;
    font-size: 26px;
    color: #122e37;
    margin: 0 0 12px 0;
}

.md-typeset h4 {
    font-weight: 600;
    font-size: 20px;
    color: #122e37;
    margin: 0 0 12px 0;
}

/* Below fixes scrolling issue (52.8px is header height + 10px space) */
.md-typeset h1[id]:before,
.md-typeset h2[id]:before,
.md-typeset h3[id]:before,
.md-typeset h4[id]:before {
    margin-top: -62.8px;
    padding-top: 62.8px;
}

.md-content__inner > :last-child {
    margin-bottom: inherit;
}

.md-typeset p {
    margin: 0 0 8px 0;
}

.md-typeset {
    font-size: 16px;
    color: #122e37;
}

.md-typeset ul {
    margin-left: 0;
}

.md-typeset ul li {
    margin-bottom: 0.25em;
}

.md-typeset ul li p {
    margin: 0;
}

.md-typeset ul li::marker {
    color: #c90e11;
}

.md-typeset ul li ul li::marker {
    color: #122e37;
}

[data-md-color-primary="red"] .md-header {
    background-color: #ffffff;
    color: #122e37;
    box-shadow: 0 6px 40px -5px rgb(0 0 0 / 11%);
}

body {
    background-color: #f6f6f6;
}

/* Fonts are loaded in layout */

body,
input,
code,
kbd,
pre {
    font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
