.masthead {
  width: 100%;
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.masthead.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%);
}
.masthead.is-visible {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

footer .locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  footer .locations {
    grid-template-columns: 1fr;
  }
}
footer .locations iframe {
  height: 400px;
  width: 100%;
}
footer .locations__item {
  flex: 0 0 50%;
  background-color: #1C2C41;
}
footer .locations__map {
  position: relative;
}
footer .locations__map--btn {
  padding: 10px 5px;
  position: absolute;
  color: #fff;
  top: 20px;
  right: 20px;
  text-transform: uppercase;
  z-index: 99;
  font-family: oswald, sans-serif;
  font-size: 16px;
  border-radius: 5px;
  background-color: var(--red);
  transition: all 1s ease;
}
footer .locations__map--btn:hover {
  transform: scale(1.1);
}
footer .locations__title {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 500;
  margin: 0;
}
footer .locations__inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  font-size: 20px;
  color: white;
}
footer .locations__inner a {
  color: #fff;
}
footer .locations__inner a:hover {
  text-decoration: underline;
  color: var(--red);
  cursor: pointer;
}
footer .locations__address {
  color: #BBBBBB;
}
