
    body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: calc(100vh - 80px);
    font-family: Lato, Sans-Serif !important;
    }
    
    .navigation {
    display: flex;
    flex-direction: row;
    position: fixed;
    top: 0;
    left: 0;
    width: -webkit-fill-available;
    width: -moz-available;
    margin: 0;
    padding: 0 240px;
    background-color: white;
    border-bottom: 1px solid #dddddd;
    height: 80px;
    align-items: center;
    z-index: 10;
    }
    
    .navImageDiv {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: fit-content;
    align-items: center;
    }
    
    .profilePicture {
    height: 60px;
    margin-right: 10px;
    transition: all 0.7s ease;
    }
    
    .profilePicture:hover {
    transform: translateY(-5px);
    }
    
    .navimage {
    display: flex;
    height: 80px;
    align-items: center;
    }
    
    .navimage img {
    height: 50px;
    transform: translateY(5px);
    transition: transform 0.7s ease;
    }
    
    .navimage img:hover {
    animation: flip 3s forwards;
    transform: translateY(-5px);
    }
    
    .navlist {
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 0 0 0 20px;
    list-style: none;
    width: -webkit-fill-available;
    width: -moz-available;
    align-items: center;
    justify-content: flex-end;
    height: 80px;
    }
    
    .navlist li a {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: black;
    font-weight: bold;
    padding: 0 5px;
    margin: 0 20px;
    text-decoration: none;
    height: 45px;
    position: relative;
    }
    
    .navlist li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 5px;
    background-color: #4780B6;
    transition: width 0.4s ease;
    }

    .navlist li a:hover::after {
    width: 80%;
    }
    
    .currentPage::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0 !important;
    width: 100% !important;
    height: 5px;
    background-color: #4780B6;
    }
    
    .mobileNav {
    display: none;
    flex-direction: column;
    position: relative;
    }

    .mobileNavToggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
    }

    .bar {
    width: 100%;
    height: 4px;
    background-color: black;
    border-radius: 5px;
    transition: all 0.3s ease;
    }

    .mobileNavToggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(3px, 13px);
    width: 150%;
    }

    .mobileNavToggle.active .bar:nth-child(2) {
    opacity: 0;
    }

    .mobileNavToggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -13px);
    width: 150%;
    }

    .mobileNavList {
    display: none;
    position: fixed;
    margin: 0;
    top: 81px;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: white;
    flex-direction: column;
    width: -webkit-fill-available;
    width: -moz-available;
    padding: 30px 0;
    align-items: flex-end;
    }

    .mobileNavList.open {
    display: flex;
    }

    .mobileNavList li {
    list-style: none;
    padding: 0;
    text-align: left;
    display: flex;
    width: -webkit-fill-available;
    width: -moz-available;
    }

    .mobileNavList li a {
    text-decoration: none;
    color: black;
    font-size: 26px;
    margin-top: 20px;
    padding: 8px 40px;
    width: -webkit-fill-available;
    width: -moz-available;
    text-align: right;
    transition: color 0.3s ease;
    font-weight: bold;
    position: relative;
    }
    
    .mobileNavList li:first-child a {
    margin-top: 0;
    }

    .mobileNavList li a:hover {
    color: #4780B6;
    }
    
    .currentPage-mobile::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0 !important;
    width: 8px !important;
    height: 100%;
    background-color: #4780B6;
    }
    
    @media screen and (max-width: 1400px) {
    
    .navigation {
    padding: 0 8%;
    }
    
    }
    
    @media screen and (max-width: 920px) {
    
    .navigation {
    padding: 0 20px;
    }
    
    }
    
    @media screen and (max-width: 820px) {
    
    .navigation {
    justify-content: space-between;
    padding: 0 30px 0 10px;
    }
    
    .navlist {
    display: none;
    }
    
    .mobileNav {
    display: flex;
    }
    
    
    }
    
    @keyframes navFlip {
    0% {
    transform: rotate(0deg);
    }
    100% {
    transform: rotate(-180deg);
    }
    }
    
    @keyframes navUnFlip {
    0% {
    transform: rotate(-180deg);
    }
    100% {
    transform: rotate(0deg);
    }
    }
    