/* General Website Styling */

body {
    background: #F0F0F0;
    margin: 0;
}
* {
    font-family: 'Milford', sans-serif;
    color: #252525;
}
.desktop-header {
    border-bottom: 1px solid #000;
    padding: 0 10%;
}
.desktop-header h2 {
    margin-top: 12px;
}
.desktop-header .menu ul {
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}
.desktop-header .menu li {
    margin: 0px 10px;
}
.desktop-header .menu li:hover, .email a:hover {
    cursor: pointer;
    border-bottom: 1px solid grey;
}
.desktop-header .menu li.active {
    cursor: pointer;
    border-bottom: 1px solid grey;
}
@media (min-width: 768px) {
    .page-width {
        width: 750px;
    }
}
@media (min-width: 992px) {
    .page-width {
        width: 970px;
    }
}
@media (min-width: 1200px){
    .page-width {
        width: 1000px;
    }
}
.page-width {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.me_img {
    width: 225px;
}
.section {
    padding-top: 35px;
}
p {
    line-height: 20px;
}
.small {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 16px;
}
table {
    margin-left: -4px;
}
a.fonts-icons {
    padding-right: 20px;
    margin-bottom: 5px;
    min-width: 16px;
    text-align: center;
}

.fonts-icons {
    font-size: 16px;
    line-height: 1.4;
}
table span {
    padding-left: 40px;
}
a.fonts-icons:hover {
    color: #3333ff;
}
.email a {
    text-decoration: none;
}
.divider hr {
    width: 40%;
    border: 2px solid black;
    margin: 25px auto;
}
.section .page-width {
    margin-bottom: 50px;
}
.section:not(.show) {
    display: none;
}
.progress {
    border: 1px solid #000000;
}
.project_image {
    height: 130px;
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
}
h5 {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}
.project_information {
    padding: 8px 0;
}
.project_information h5 {
    font-size: 14px;
    margin-bottom: 0;
}
.project_image .badge {
    margin-left: 5px;
}
.date_divider {
    border-bottom: 1px solid #000000;
    margin: 15px 0;
}

/* Mobile Responsiveness */
@media (min-width: 768px) {
    .mobile-header {
        display: none;
    }
}

@media (max-width: 768px) {
    .desktop-header {
        display: none;
    }
    .menu {
        border-bottom: 0.5px solid #000000;
    }
    .about-section .mb-3 {
        margin: 0 !important;
    }
    .progress {
        margin-bottom: 10px;
    }
    .me_img {
        margin-top: 10px;
    }
}

.menu li {
    list-style-type: none;
    margin: 8px 0;
}
.menu ul {
    margin: 0;
    padding-left: 20px;
}

.mobile-header h2 {
    font-size: 25px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    width: fit-content;
}