:root {
  --hero-color: #252525;
  --second-hero-color: #3e3e3e;
  --button-color: #728C69;
  --light-border: solid 0.5px var(--second-hero-color);
}

/* Navigation bar */
.burger {
  display: none;
  cursor: pointer;
  padding: 8.5px 4px;
  z-index: 10;
  background-color: white;
  border-radius: 10px;
}

.burger div {
  background-color: black;
  width: 30px;
  height: 2px;
  margin: 7px;
  transition: all 0.3s ease;
}

.toggle .l1 {
  transform: rotate(-45deg) translate(-6.5px, 6.5px);
}

.toggle .l2 {
  opacity: 0;
}

.toggle .l3 {
  transform: rotate(45deg) translate(-6.5px, -6.5px);
}

.arrow-relative {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.2fr;
}

.arrow-container {
  display: grid;
}

.nav-arrow {
  height: 25px;
  transform: rotate(0);
  transition: transform 100ms ease;
}

.dropdown:hover .nav-arrow {
  transform: rotate(90deg);
}
@media screen and (max-width: 889px) {
  .banner {
    height: 50vh;
  }
  .two-column-grid {
    grid-template-columns: 1fr;
    grid-gap: 1em;
  }

  .three-column-grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 1em;
  }

  footer .two-column-grid, footer > div, footer .mainnav {
    display: block;
    grid-template-columns: 1fr;
    text-align: center;
    grid-gap: 1em;
    text-align: center !important;
  }

  footer .mainnav {
    height: revert;
  }

  footer .navlink, footer .two-column-grid p:last-child{
    text-align: center !important;
  }

  .text-box {
    padding: 1em 3em !important;
  }
}

@media screen and (max-width: 646px) {
  .three-column-grid {
    grid-template-columns: 1fr !important;
  }
  .active {
    grid-template-columns: 1fr !important;
  }
}
@media screen and (max-width: 1130px) and (max-height: 944px) {
  .active {
    padding-top: 130px;
    padding-bottom: 130px;
    height: 100vh;
  }
}
@media screen and (max-width: 1130px) {
  .active a, .menu div, .active {
    border: none;
  }
  .mainnav {
    height: 90px;
  }
  .hover:active {
    transition: none;
    outline: none;
    outline-offset: none;
  }

  .menu {
    position: relative;
    display: none;
    bottom: revert;
    background-color: var(--hero-color);
    justify-content: center;
  }

  .menu a {
    text-align: center;
  }

  .dropdown-content {
    display: contents;
    position: relative;
    background-color: revert;
    box-shadow: none;
    border: none;
  }

  .arrow-container {
    display: none;
  }

  .arrow-relative {
    grid-template-columns: 1fr;
  }
  .burger {
    display: block;
  }

  .navbar {
    width: 100%;
  }

  .navbar-toggle {
    position: absolute;
    top: 17px;
    right: 20px;
  }

  .active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow-y: auto;
    padding-top: 130px;
  }


  .menu > div > a{
    text-align: left;
    font-weight: 500;
    font-size: large;
    outline: var(--light-border);
  }

  .active > div > .dropdown-content > a {
    text-align: left !important;
    padding-left: 50px !important;
    outline: var(--light-border);
    outline-offset: -1px;
  }

  .mainnav li {
    width: 100%;
    text-align: center;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
  }


  .banner {
    padding-top: 0;
  }
  .nav-logo {
    padding: 20px 20px 30px;
  }
  .nav-logo img {
    width: 300px;
  }

  .add-padding-right {
    padding-right: 0 !important;
  }

}