.navbar .logo-desktop {
  display: none;
}

.navbar ul li a {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

nav.navbar {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -o-sticky;
  position: -ms-sticky;
  position: sticky;
  left: 0;
  right: 0;
  top: 0;

  z-index: 10;
}

.navbar svg path {
  transition: ease-in 0.15s;
}

a.navbar-brand svg path {
  fill: #d10013 !important;
}

nav.navbar {
  transition: background-color 0.15s ease-in;
}

@media (max-width: 767px) {
  nav .container {
    max-width: none;
  }

  nav.navbar {
    align-items: initial;
    display: block;
    padding: 0;
    height: 84px;

    max-width: none;
    position: fixed;
  }

  nav.navbar:not(.collapse) {
    height: 100vh;
    background-color: #182181;
    overflow: hidden;
  }

  .navbar svg path {
    fill: #fff !important;
  }

  .navbar.collapse svg path {
    fill: #d10013 !important;
  }

  .navbar div.navbar-collapse {
    margin-top: 54px;
  }

  .navbar .buttons {
    height: 84px;
    padding: 0 24px;
    background-color: #fff;
    transition: ease-in 0.15s;

    margin: 0;
    max-width: none;

    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  nav.navbar:not(.collapse) .buttons {
    background-color: #182181;
    transition: background-color 0.15s ease-in;
  }

  .navbar ul li a {
    color: #fff;
    font-size: 36px;
    line-height: 80px;
  }

  .navbar ul li a:hover,
  .navbar ul li a:visited,
  .navbar ul li a:active {
    color: #fff;
  }

  .navbar button {
    color: #fff;
  }

  .navbar button i {
    font-size: 48px;
  }

  nav.navbar:not(.collapse) button i.fa-bars {
    display: none;
  }

  nav.navbar:not(.collapse) button i.fa-times {
    display: inline-block;
  }

  nav.navbar.collapse button i.fa-bars {
    display: inline-block;
    color: #070818;
  }

  nav.navbar.collapse button i.fa-times {
    display: none;
  }

  .navbar ul.navbar-nav {
    align-items: center;
  }

  .navbar .navbar-toggler {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .navbar .logo-desktop {
    display: block;
    width: 85px;
  }

  .navbar .logo-mobile {
    display: none;
  }

  .navbar .navbar-collapse {
    justify-content: flex-end;
  }

  body nav.navbar.collapse {
    background-color: #fff;
  }

  .navbar ul li a {
    color: #070818;
    font-size: 18px;
    line-height: 27px;
  }

  .navbar ul li a:hover,
  .navbar ul li a:visited {
    color: #070818;
  }

  .navbar ul li a.active {
    color: #d10013;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding: 10px 18px;
  }

  .navbar-expand-md .navbar-nav {
    margin-right: -18px;
  }
}

@media (min-width: 1200px) {
  .navbar .container {
    padding-right: 2px;
    padding-left: 2px;
  }
}
