:root {
  --primary: #f3ebea;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Unbounded", sans-serif;
}

body {
  background-color: #f2f2f2;
  overflow: hidden;
  height: 100vh;
}

ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.logo-img {
  width: 200px;
  height: 67px;
}

.branch-section {
  margin: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.branch-section .branch-section_header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.branch-item {
  max-width: 20rem;
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 4px;
  background-color: var(--primary);
  position: relative;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.5) 0px 7px 29px 0px;
}

.branch-image_wrapper img {
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.branch-item_title {
  padding: 0.5rem;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.6px;
}

.branch-info-wrapper {
  margin-top: 0.5rem;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.branch-info-wrapper li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.branch-info-wrapper li p img {
  width: 20px;
  cursor: copy;
}

.branch-details {
  font-size: 1rem;
  max-width: 20rem;
  padding: 1rem;
}

.branch-details li > img {
  width: 24px;
  height: 32px;
  border-radius: 1rem;
}

.branch-details li p {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.1rem;
}

.branch-details .branch-details_address {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.branch-details {
  min-width: 240px;
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
  width: 100%;
}

.branch-details li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.branch-details li p img {
  width: 20px;
  cursor: copy;
}

.branch-details .wp-button {
  border: none;
  outline: none;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  width: 100%;
  border-radius: 8px;
  padding: 1rem;
  background-color: #25d366;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: background-color 0.3s ease;
}

.branch-details .wp-button img {
  width: 24px;
}

.branch-details .wp-button:hover {
  transition: all 0.3s ease-in-out;
  background-color: #1aae49;
  color: #fff;
}

.branch-item:hover .branch-image_wrapper img {
  transition: all 0.3s ease-in-out;
  transform: scale(1.05);
}

.btn-back {
  font-size: 12px;
  letter-spacing: 1px;
  padding: 8px 20px 8px;
  outline: 0;
  cursor: pointer;
  position: relative;
  background-color: #8b3531;
  touch-action: manipulation;
  color: #fff;
  font-weight: 500;
}

.btn-back:hover {
  background-color: #b45955;
}

@media (min-width: 768px) {
  .btn-back {
    padding: 8px 20px 8px;
  }
}
