
.navbar {
  padding: 0 0;
  margin-bottom: 0 !important;
}
.navbar .row {
  width: 100%;
  align-items: center;
  margin: 0;
}
.navbar-icon {
  display: flex;
  justify-content: flex-end;
  height: 40px;
  cursor: pointer;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .navbar-icon {
    display: none;
  }
}
.navbar-icon span {
  width: 30px;
  height: 3px;
  background-color: #000;
  display: block;
  position: relative;
  transition: 0.3s;
}
.navbar-icon span:after {
  content: "";
  width: 30px;
  height: 3px;
  position: absolute;
  top: 9px;
  background-color: #000;
  transition: 0.3s;
  z-index: 3;
}
.navbar-icon span:before {
  content: "";
  width: 30px;
  height: 3px;
  position: absolute;
  bottom: 9px;
  background-color: #000;
  transition: 0.3s;
   z-index: 3;
}
.navbar-icon.active span {
  background-color: transparent;
}
.navbar-icon.active span:before {
  transform: rotate(45deg);
  bottom: 25px;
  background-color: #fff;
}
.navbar-icon.active span:after {
  transform: rotate(-45deg);
  background-color: #fff;
  top: -25px;
}
@media screen and (max-width: 991px) {
  .navbar-menu nav {
    visibility: hidden;
    position: fixed;
  }
}
.navbar-menu nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  justify-content: flex-end;
}
.navbar-menu nav ul li {
  margin: 0;
}
@media screen and (max-width: 991px) {
  .navbar-menu nav ul li {
    transform: translateX(-10px);
    opacity: 0;
  }
}
.navbar-menu nav ul li a {
  display: block;
  padding: 15px 20px;
  color: #000;
  transition: 0.3s;
}
.navbar-menu nav ul li:hover a {
  text-decoration: none;
  transform: translateY(-3px);
}
@media screen and (max-width: 991px) {
  .navbar-menu nav.active {
    visibility: visible;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #112369;
    z-index: 2;
  }
}
@media screen and (max-width: 991px) {
  .navbar-menu nav.active ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-top: 80px;
  }
}
@media screen and (max-width: 991px) {
  .navbar-menu nav.active ul li {
    transform: translateX(0);
    opacity: 1;
    transition: 0.9s;
  }
  .navbar-menu nav.active ul li:nth-child(1) {
    transition-delay: 0.15s;
  }
  .navbar-menu nav.active ul li:nth-child(2) {
    transition-delay: 0.3s;
  }
  .navbar-menu nav.active ul li:nth-child(3) {
    transition-delay: 0.45s;
  }
  .navbar-menu nav.active ul li:nth-child(4) {
    transition-delay: 0.6s;
  }
  .navbar-menu nav.active ul li:nth-child(5) {
    transition-delay: 0.75s;
  }
  .navbar-menu nav.active ul li:nth-child(6) {
    transition-delay: 0.9s;
  }
  .navbar-menu nav.active ul li:nth-child(7) {
    transition-delay: 1.05s;
  }
  .navbar-menu nav.active ul li:nth-child(8) {
    transition-delay: 1.2s;
  }
  .navbar-menu nav.active ul li:nth-child(9) {
    transition-delay: 1.35s;
  }
  .navbar-menu nav.active ul li a {
    color: #fff;
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
  }
}