.navbar {
  width: 100%;
  color: #011220;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  height: 78px;
  padding: 0 32px;
  margin: 0 auto;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 100;
}
.navbar.scrolled {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.3490196078);
}
@media (min-width: 1024px) {
  .navbar {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1536px) {
  .navbar {
    padding: 0 80px;
  }
}
.navbar .links {
  display: none;
  min-width: 230px;
  width: 230px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .navbar .links {
    display: flex;
  }
}
.navbar .links ul {
  display: flex;
}
.navbar .links ul li {
  font-size: 0.8rem;
}
.navbar .links ul li a {
  padding: 10px 5px;
  color: #011220;
  font-size: 18px;
  transition: color 0.15s;
}
.navbar .links ul li a:hover {
  color: #5143e1;
}
.navbar .links ul li + li {
  padding: 0 0 0 30px;
}
@media (min-width: 1140px) {
  .navbar .links ul li + li {
    padding: 0 0 0 81px;
  }
}
.navbar .logo {
  display: flex;
  height: 100%;
}
.navbar .logo img {
  width: 160px;
}
.navbar .buttons {
  display: none;
}
@media (min-width: 1024px) {
  .navbar .buttons {
    display: flex;
  }
}
.navbar .buttons a {
  height: 46px;
}
.navbar .buttons a.btn.primary {
  width: 200px;
}
.navbar .buttons a.btn.secondary {
  width: 160px;
}
.navbar .right-side {
  display: flex;
  align-items: center;
}
.navbar .bars {
  display: flex;
  height: 100%;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .navbar .bars {
    display: none;
  }
}
.navbar .bars .bars-wrapper {
  display: flex;
  align-self: center;
  flex-direction: column;
  justify-content: space-between;
  width: 45px;
  height: 38px;
  padding: 10px;
}
@media (min-width: 1024px) {
  .navbar .bars .bars-wrapper {
    display: none;
  }
}
.navbar .bars .bars-wrapper .line {
  height: 2px;
  align-self: flex-end;
  background-color: #000;
  width: 100%;
}
.navbar .mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  overflow: auto;
  display: none;
}
.navbar .mobile-menu.active {
  display: flex;
}
.navbar .mobile-menu ul li {
  width: 100%;
}
.navbar .mobile-menu ul li a {
  width: 100%;
  display: block;
  color: #011220;
}
.navbar .mobile-menu .cross {
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.navbar .mobile-menu .cross:after, .navbar .mobile-menu .cross:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 2px;
  background-color: #011220;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .mobile-menu .cross:before {
  transform: rotate(-45deg) translate(15px, 15px);
}
.navbar .mobile-menu .cross:after {
  transform: rotate(45deg) translate(15px, -15px);
}