@import url("https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,100..900;1,100..900&display=swap");
.branch .container {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px 30px;
  padding: 30px 52px;
}
.branch-item {
  width: 250px;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: 1px solid #627e94;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  transition: 0.3s all linear;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25);
}
.branch-item p {
  color: #5d809b;
  font-weight: bold;
}
.branch-item:hover {
  background-color: #627e94;
}
.branch-item:hover svg path {
  fill: white;
  stroke: white;
}
.branch-item:hover p {
  color: white;
}/*# sourceMappingURL=style.css.map */