/* Navbar */

#sidebar {
    overflow-y: hidden;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    z-index: 500;
    height: 100%;
    transition: all 0.5s;
    background: #040b14;
    padding: 15px;
}

#sidebar ul {
    text-align: left;
}

#sidebar.active {
    margin-left: -250px;
}

.icon-sidebar {
    top: 8px;
    left: 8px;
    position: absolute;
    visibility: visible;
}

.icon-sidebar.active {
    visibility: hidden;
}

#header-logo {
    border: 4px solid lightgray;
}

#sidebar-header h1 {
    font-size: 24px;
    color: #f58f00;
    margin: 0;
    padding: 0;
    font-weight: 600;
    -moz-text-align-last: center;
    text-align-last: center;
    font-family: "Poppins", sans-serif;
}

#navbar-toggler {
    position: fixed;
    z-index: 500;
    right: 15px;
    top: 15px;
    border: 0;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    background-color: #149ddd;
    color: #fff;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    border-radius: 50px;
    cursor: pointer;
}

.nav-link span {
    color: white;
}

/* Content Part */

body {
    color: #173b6c;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

html {
    scroll-behavior: smooth;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 30%;
    z-index: -1;
    background-image: url("/static/images/2020_09_Logo_Final.webp");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position-y: 50px;
    background-position-x: center;
    background-repeat: no-repeat;
    background-size: contain;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
}

.lebenslauf-eintrag {
    padding: 0 0 20px 20px;
    margin-top: -2px;
    border-left: 2px solid #1f5297;
    position: relative;
}

.lebenslauf-eintrag::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50px;
    left: -9px;
    top: 0;
    background: #fff;
    border: 2px solid #1f5297;
}

.lebenslauf-eintrag h5 {
    font-size: 16px;
    background: #e4edf9;
    padding: 5px 15px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 10px;
}

section {
    margin-top: 20px;
}

.section-title{
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    color: #173b6c;
    display: block;
    text-align: left;
}
.section-title h2 {
    font-size: 32px;
}
.section-title h3 {
    margin-left: 16px;
    font-size: 25px;
    margin-bottom: 5px;
}

.section-title h3::after {
    content: '';
    position: absolute;
    display: block;
    width: 70px;
    height: 3px;
    background: #149ddd;
    bottom: 0;
    left: 0;
    margin-left: 30px;
}

.section-title ::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #149ddd;
    bottom: 0;
    left: 0;
}

#about h3 {
    font-weight: 700;
    font-size: 26px;
    color: #173b6c;
}

#about ul {
    list-style: none;
    padding: 0;
}
