nav {
    z-index: 10;
    width: 100%;
    height: 100px;
    display: flex;
    position: fixed;
    align-content: center;
    align-items: center;
    justify-content: center;
    justify-items: center;
  }

  nav.shadow {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2); /* horizontal-offset vertical-offset blur-radius spread-radius color */
  }

.navigation-container {
    width: 100%;
     display: flex;
    align-content: center;
    align-items: center;
    padding-left: calc((100% - 1440px) / 2 );
    padding-right: calc((100% - 1440px) / 2 );
    justify-content: space-between;
}

nav a.active {
    color: rgb(121, 171, 224) !important;
    }

.logo {
    cursor: pointer;
    width: 60px;
    transition: all 0.8s ease-in-out;
}

.logo:hover {
    filter: brightness(1.6);
    transition: all 0.8s ease-in-out;
}

.menu {
    display: flex;
    justify-content: flex-end;
    font-family: 'PT Sans', sans-serif;
}

.mobile-additional-menu, .no-show {
    display: none;
}

.menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: all 0.8s ease-in-out;
}

.menu li {
    margin-left: 2em;
    margin-right: 2em;
    opacity: 1;
    transition: all 0.8s ease-in-out;
}

.menu li:last-child {
    margin-right: 0;
}

.menu a {
    font-size: 0.7rem;
    text-decoration: none;
    font-family: 'PT Sans', sans-serif;
    color: #dadddf;
    transition: all 0.8s ease-in-out;
}

.menu a:hover {
    font-size: 14px;
    text-decoration: none;
    font-family: 'PT Sans', sans-serif;
    color: #949c9f;
    transition: all 0.8s ease-in-out;
} 

.hamburger {
    display: none;
}

.scroll-div {
    z-index: 10;
    cursor: pointer;
    display: flex;
    position: fixed;
    top: 40%; /* position the div at the vertical center of the screen */
    right: -300px; /* position the div outside of the screen */
    width: 74px;
    background-color: #0c2f4d;
    color: #dadddf;
    padding: 0.8em 2.6em 0.8em 2.6em;
    font-family: 'PT Sans', sans-serif;
    font-size: 0.8rem;
    transition: all 0.8s ease-in-out; /* animate the slide-in/out effect and opacity */
    opacity: 0; /* hide the div initially */
    transform: translateY(-50%); /* adjust the position based on the div's height */
}

.scroll-div:hover {
    background-color: #0a263f;
    transition: all 0.8s ease-in-out;
}

.scroll-div.small {
    padding: 0.8em;
    width: 46px;
    height: 36px;
    -background-color: #225e92;
    color: #dadddf;
    transition: all 0.8s ease-in-out;
    border-radius: 9px 0 0 9px ;
}

.scroll-div.small:hover {
    background-color: #103e67;
    transition: all 0.8s ease-in-out;
}
  
.scroll-div.show {
    transition: all 0.8s ease-in-out;
    right: 0px; /* slide the div in from the right side */
    opacity: 1; /* fade in the div */
}

.scroll-div-text {
    width: 0;
    transition: all 1.2s ease-in-out;
    opacity: 0;
    overflow: hidden;
}

.scroll-div-text.show {
    width: 100%;
    transition: all 1.2s ease-in-out;
    opacity: 1;
    overflow: hidden;
}

.hand {
    width: 0;
    height: 0;
    transition: all 0.8s ease-in-out;
    filter: brightness('5');
    opacity: 0;
}

.hand.enlarge {
    width: 36px;
    height: 36px;
    opacity: 1;
    transition: all 0.8s ease-in-out;
    /* change the width and height properties on hover */
}

#scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    -display: none;
    background-color: #333;
    color: #fff;
    padding: 0.6em 0.85em;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: all 0.8s;
    z-index: 100000!important;
}
  
#scroll-to-top.show {
    opacity: 0.8;
    transition: all 0.8s;
}
  
#scroll-to-top:hover {
    background-color: #444;
}