* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

nav button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  display: none;
}

nav {
  width: 100%;
  display: flex;
  justify-content: start;
  height: 12vh;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
  min-height: 50px;
}
.arrow {
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
  margin-left: 2px;
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.logo2 {
  padding-left: 5%;
  justify-self: flex-start;
}
.logo2 img {
  width: 80%;
  min-width: 150px;
}

ul {
  padding-left: 5%;
}

ul li {
  line-height: 200%;
  list-style: none;
  display: inline-block;
  position: relative;
}

.dropdown1,
.dropdown2,
.dropdown3,
.dropdown4,
.dropdown5 {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  display: none;
  flex-direction: column;
  width: max-content;
  min-width: 100%;
  align-items: flex-start;
  z-index: 12;
}

.theopener {
  display: flex;
}

ul a {
  margin: 0px 10px;
  padding: 5px 10px;
  text-decoration: none;
  font-size: 14px;
  color: black;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  opacity: 0.9;
  background-color: white;
}

ul a img {
}
ul a:hover:not(#expand1):not(#expand2):not(#expand3):not(#expand4):not(#expand5) {
  background-color: #ffe72d;
}

ul li a span {
  opacity: 0;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  margin: 5px;
  background-color: purple;
  transition: all 0.3s ease;
}

.logo2 {
  width: 200px;
  position: relative;

  margin-top: 2px;
  margin-left: 0%;
  left: 0px;
  top: 0px;
}
ul.breadcrumb {
  list-style: none;
  display: flex;
  align-items: flex-start;
}
ul.breadcrumb li {
  display: inline;
  font-size: 12px;
}
ul.breadcrumb li + li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
}
ul.breadcrumb li a {
  color: #0275d8;
  text-decoration: none;
  margin: unset;
  padding: unset;
  font-size: unset;
  color: black;
  opacity: 0.9;
  background-color: unset;
}
ul.breadcrrgbmb li a:hover {
  color: #01447e;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
    position: relative;
  }
  nav ul {
    position: absolute;
    left: 100%;
    height: 88vh;
    top: 12vh;
    padding-left: 0;
    width: 100%;
    z-index: 9;
    justify-content: stretch;
    background-color: whitesmoke;
    opacity: 1;
  }

  nav ul li {
    width: 100%;
    position: unset;
    line-height: 200%;
  }
  nav ul a {
    margin: 0px 2px;
    display: block;
    text-decoration: none;
    font-size: 14px;
    color: black;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    background-color: unset;
    opacity: unset;
  }

  .dropdown1,
  .dropdown2,
  .dropdown3,
  .dropdown4,
  .dropdown5 {
    display: none;
    position: unset;
    height: auto;
    background-color: unset;
  }

  .dropdown1 li,
  .dropdown2 li,
  .dropdown3 li,
  .dropdown4 li,
  .dropdown5 li {
    line-height: 100%;
  }

  nav button {
    background-color: lightgrey;
    opacity: 0.8;
    padding: 20px;
    width: 100%;
    display: flex;
    height: 30px;
    align-items: center;
  }

  .burger {
    display: block;
    z-index: 10;
    padding-right: 4%;
  }
  nav ul li a span {
    opacity: 1;
  }

  nav {
    flex-direction: row;
    justify-content: space-between;
  }
  .logo2 {
    padding-left: 4%;
  }
  .themobileopener {
    display: flex;
  }
  .theopener {
    display: none;
  }
}

.nav-active {
  transform: translateX(-100%);
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

.gowhite {
  background-color: white;
}
