/**
 * Foundation for Sites
 * Version 6.8.1
 * https://get.foundation
 * Licensed under MIT Open Source
 */
.tabs__menu button[aria-selected=true] {
  opacity: 1;
}
.tabs__panel {
  overflow: hidden;
  visibility: hidden;
  z-index: -1;
  position: absolute;
  pointer-events: none;
  left: -9999px;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.39, 0.03, 0.18, 0.78);
  outline: none;
}
.tabs__panel.is-active {
  position: relative;
  visibility: visible;
  z-index: auto;
  pointer-events: initial;
  left: 0;
  opacity: 1;
}

.services .parallax {
  height: 60vh;
  max-height: 55rem;
}
.services .tabs__menu {
  width: fit-content;
  border-radius: 4px;
  border: 1px solid rgba(5, 31, 40, 0.3);
  padding: 0.3rem;
  margin: 0 auto 5rem;
}
.services .tabs__menu .btn {
  color: #051F28;
  border-radius: 0.4rem;
  padding: 1.5rem 2.5rem;
}
.services .tabs__menu .btn:hover {
  transform: none;
  color: #051F28;
}
.services .tabs__menu .btn[aria-selected=true] {
  background-color: #9AC9E2;
}

.services-tabs .card {
  min-height: 20rem;
}
