.dark #branches {
  background-color: #0057b3c5;
}

#header-banner {
  margin-top: -1px;
}

#marketing {
  margin-bottom: 80px;
  margin-top: 150px;
}

#marketing img {
  cursor: pointer;
  transition: 0.5s ease-in-out;
}

#marketing img:hover {
  transform: scale(1.1);
}

#branches {
  background-color: #0056b3;
  padding: 10px;
  color: white;
  margin-bottom: 50px;
}

#branches .title {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  text-align: center;
  font-size: 40px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

#branches img {
  width: 600px;
}

#branches .location {
  display: flex;
  justify-content: space-evenly;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 15px;
}

#branches .location > * {
  width: 25%;
}

#form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 50px;
}

#form #submit {
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  justify-content: center;
}

#form label {
  display: flex;
}

#form textarea {
  width: 50%;
  height: 150px;
}

#form #submit:hover {
  background-color: #0056b3;
  color: white;
}

@media (max-width: 850px) {
  #branches .title {
    flex-direction: column;
    margin-top: 10px;
  }

  #branches .location {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 735px) {
  #marketing {
    margin-top: 0px;
  }
}

@media (max-width: 700px) {
  #branches img {
    width: 500px;
  }

  #branches .location > * {
    width: 30%;
  }
}

@media (max-width: 550px) {
  #branches img {
    width: 400px;
  }

  #branches .location > * {
    width: 35%;
  }
}

@media (max-width: 450px) {
  #branches img {
    width: 350px;
  }

  #branches .location > * {
    width: 40%;
  }
}