.navbar .nav-link {
  padding-left: 20px;
  padding-right: 20px;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.navbar-bottom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #010b33;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-bottom .nav-link:hover::after {
  width: 80%;
}

.navbar .nav-link:hover {
  color: #f35444;
}

.navbar-bottom .nav-item.active .nav-link {
  color: #f35444;
}

.navbar-bottom .nav-item.active .nav-link::after {
  width: 80%;
}

.navbar-top {
  background-color: #010b33;
}

.navbar-top .navbar-nav{
    flex-direction: row;
}

.navbar-top .nav-link {
  font-size: 16px;
}

.navbar-top .nav-link:hover {
  color: #f35444;
  transform: translateY(-2px);
}

.navbar-top .sag .nav-link:hover {
  transform: scale(1.2);
}

.navbar-top .sol .icon {
  margin-right: 10px;
}

.navbar-bottom {
  font-weight: 500;
  background-color: #020f40;
  height: 100px;
  border-bottom: 1px solid #44464f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

.navbar-bottom .container{
    flex-wrap: nowrap;
}

.navbar-collapse {
  display: flex !important;
  justify-content: flex-end;
}

.navbar-collapse .navbar-nav {
  flex-direction: row;
}

.navbar-toggler {
  display: none;
}

.navbar-bottom .nav-link {
  font-size: 18px;
}

.navbar-bottom .iris-btn {
  font-weight: 500;
  margin-left: 50px;
}

.navbar-brand {
  margin-right: auto;
}

.navbar-bottom .logo {
  height: 50px;
}

@media screen and (max-width: 991px) {
  .navbar-collapse {
    display: none !important;
  }

  .navbar-collapse.show {
    display: flex !important;
    flex-direction: column;
  }

  .navbar-collapse.show .navbar-nav {
    flex-direction: column;
  }
  .navbar-bottom .iris-btn {
    display: none;
  }

    .navbar-bottom .container{
    flex-wrap: wrap;
    }
    
    .navbar-bottom .navbar-nav{
        width: 100%;
    }

  .navbar-top {
    padding-top: 76px;
    padding-bottom: 8px;
  }

  .navbar-top .sol {
    flex-direction: row;
    margin-right: 0;
    width: 100%;
    justify-content: center;
    gap: 20px;
  }

  .navbar-top .sol .icon {
    margin-right: 4px;
  }

  .navbar-top .sag {
    display: none;
  }

  .navbar-top .sol .navbar-tel,
  .navbar-top .sol .navbar-mail {
    padding: 0;
    font-size: 13px;
  }

  #navbar-scrolled {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .navbar-bottom {
    transition: 0.2s ease-out;
    height: unset;
    position: fixed;
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    display: block;
  }

  .navbar-bottom .navbar-nav {
    flex-direction: column;
    padding-top: 15px;
    margin-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
  }

  .navbar-bottom .navbar-collapse {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .navbar-bottom .logo {
    height: 28px;
  }

  .navbar-bottom .nav-link {
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar-bottom .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  .navbar-bottom .nav-link::after {
    display: none;
  }

  .navbar-bottom .nav-item.active .nav-link {
    background: transparent;
    color: #f35444 !important;
  }

  .navbar-toggler {
    display: block;
    border: none;
    padding: 8px;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }
}
