@charset "UTF-8";
body {
  background-color: white;
  background-image: #fff;
  background-size: 100% 100%;
  background-repeat: repeat;
}

nav {
  float: right;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  float: left;
  position: relative;
}

nav ul li a {
  display: block;
  padding: 0 20px;
  line-height: 68px;
  background: #ffffff;
  color: var(--d-black);
  text-decoration: none;
  position: relative;
}

nav ul li a:hover {
  /* background: #f2f2f2; */
  color: var(--theme2);
}

nav ul li a:not(:only-child):after {
  padding-left: 4px;
  content: " ▾";
}

nav ul li ul li {
  min-width: 190px;
}
nav ul li a::before {
  content: "";
  background: #0c9597;
  width: 0%;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 5px;
  transition: width 0.3s;
}
nav ul li a:hover::before {
  width: 100%;
}
nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}

.nav-dropdown {
  position: absolute;
  z-index: 1;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  height: 70px;
  width: 70px;
}

@media only screen and (max-width: 850px) {
  .nav-mobile {
    display: block;
  }  
  .login-link{
    display: none;
  }
  .nav-container{
    display: block !important;
  }
  li.login-link-list{
    display: list-item !important;
  }
  nav {
    width: 100%;
    padding: 0px 0 0px;
  }

  nav ul {
    display: none;
  }

  nav ul li {
    float: none;
  }

  nav ul li a {
    padding: 15px;
    line-height: 20px;
  }

  nav ul li ul li a {
    padding-left: 30px;
  }
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #463f3f;
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
}

#nav-toggle span:before {
  top: -10px;
}

#nav-toggle span:after {
  bottom: -10px;
}

#nav-toggle.active span {
  background-color: transparent;
}

#nav-toggle.active span:before,
#nav-toggle.active span:after {
  top: 0;
}

#nav-toggle.active span:before {
  transform: rotate(45deg);
}

#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

@media screen and (min-width: 851px) {
  .nav-list {
    display: block !important;
  }
}

.navigation {
  height: 70px;
  background: #ffffff;
  box-shadow: 0px 4px 11.1px 1px #00000026;
}

.nav-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  /* position: absolute; */
  /* padding-left: 20px; */
  /* float: left; */
  line-height: 70px;
  text-transform: uppercase;
  font-size: 1.4em;
  display: inline-block;
}
.brand h1 {
  font-size: 1.2em;
  margin-bottom: auto;
  color: var(--theme2);
}
.brand a,
.brand a:visited {
  color: var(--theme2);
  text-decoration: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 0.67em;
  font-weight: 500;
}
.brand .logo-box {
  background: white;
  width: 168px;
  overflow: hidden;
  margin-left: 8px;
  height: 70px;
  display: flex;
  align-items: center;
}
.brand .logo-box img {
  width: 100%;
}
@media (max-width: 400px) {
  .brand .logo-box {
    width: 180px;
  }
}
