header {
  padding-top: 60px;
  padding-bottom: 60px;
  z-index: 15;
  background-color: #3A3738;
  position: relative;
}
@media (max-width: 991px) {
  header {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
header.header-transparent {
  background-color: transparent;
}

.top-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-navigation .find-branch-nav {
  min-width: 200px;
}
@media (max-width: 991px) {
  .top-navigation .find-branch-nav {
    width: 40px;
    height: 40px;
    min-width: 0;
    font-size: 0;
    padding: 5px;
    background: #3A3738 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='-1.18 -0.67 18.37 21.35' width='15' height='18'%3E%3Cpath fill='%237E797E' stroke='%237E797E' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 1.75A6.75 6.75 0 0 0 1.25 8.5c0 5.25 6.75 9.75 6.75 9.75s6.75-4.5 6.75-9.75A6.75 6.75 0 0 0 8 1.75Zm0 9.9a3.15 3.15 0 1 1 0-6.3 3.15 3.15 0 0 1 0 6.3Z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
  }
}
.top-navigation .top-navigation-left {
  margin-bottom: 0;
}

.top-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(10px, 4vw, 80px);
}
@media (max-width: 991px) {
  .top-info {
    display: none;
  }
}
.top-info a {
  text-transform: uppercase;
  font-size: 0.75em;
  font-weight: 600;
  color: #fff;
}
.top-info a:hover {
  color: #D61822;
}

.logo-wrapper a {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .logo-wrapper img {
    max-width: 85px;
  }
}

.mobile-nav {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: #D61822;
  border: 0;
}
@media (min-width: 992px) {
  .mobile-nav {
    display: none;
  }
}