.contact-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info,
.contact-map {
  flex: 1 1 300px;
  min-width: 250px;
  max-width: 45%;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 0.5rem;
}

/* reduce map height */
.contact-map iframe {
  width: 100%;
  height: 220px !important;
  border: 0;
}

/* _styles/home.scss */
:root {
  --slide-height: 400px;
  --caption-bg: rgba(0,0,0,0.4);
  --caption-color: #fff;
}

.slideshow-container {
  max-width: 1000px;
  margin: 2rem auto;
  position: relative;
  overflow: hidden;
}

.mySlides {
  display: none;
  position: relative;
  height: var(--slide-height);
}

.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.numbertext {
  position: absolute;
  top: 0;
  color: #fff;
  padding: 0.5rem;
  font-size: 0.85rem;
  background: var(--caption-bg);
}

.text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.75rem;
  background: var(--caption-bg);
  color: var(--caption-color);
  font-size: 1rem;
  text-align: center;
  box-sizing: border-box;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 0.5rem;
  margin-top: -1.5rem;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: background 0.3s;
  user-select: none;
}

.prev {
  left: 1rem;
}

.next {
  right: 1rem;
}

.prev:hover, .next:hover {
  background: rgba(0, 0, 0, 0.6);
}

.dots-container {
  text-align: center;
  margin-top: 0.5rem;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.active, .dot:hover {
  background-color: #717171;
}

.fade {
  animation: fade 1s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=home.css.map */