.image-slider-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background: #043f83;
}
.image-slider-container.fixed {
  position: fixed;
}

.photo {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: round 20s infinite;
          animation: round 20s infinite;
  opacity: 0;
  filter: alpha(opacity=0);
  -o-object-position: center;
     object-position: center;
}

@-webkit-keyframes round {
  25% {
    opacity: 0.5;
    filter: alpha(opacity=50);
  }
  40% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
}

@keyframes round {
  25% {
    opacity: 0.5;
    filter: alpha(opacity=50);
  }
  40% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
}
img:nth-child(1) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

img:nth-child(2) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.site-nav-container {
  width: 250px;
  background-color: #0055b8;
  position: fixed;
}

.navbar-logo {
  height: 90px;
}

.sidebar-sublinks-ul {
  padding-left: 50px;
}

.sidebar-list-container > li.active {
  background-color: #ffffff;
  border-right: 1px solid #ccc;
}
.sidebar-list-container > li.active > a {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.sidebar-list-container > li.active > a:hover {
  background-color: #ffffff;
}
.sidebar-list-container > li.active header {
  color: #0055b8;
  font-weight: 500;
}
.sidebar-list-container > li.active .header-arrow {
  transform: rotate(180deg);
}
.sidebar-list-container > li.active .sidebar-sublinks-ul {
  display: block;
}
.sidebar-list-container > li > a:hover {
  background-color: #0055b8;
}
.sidebar-list-container > li .link-image {
  width: 50px;
}
.sidebar-list-container > li .sidebar-sublinks-ul {
  display: none;
  padding-bottom: 20px;
}
.sidebar-list-container > li .sidebar-sublinks-ul li.active {
  color: #333;
}

.table-navigation p {
  padding-right: 10px;
}

.site-main-container {
  margin-left: 250px;
}
