body {
  font-size: 16px;
}
.swiffy-slider {
  --swiffy-slider-item-ratio: 16/9;
}
.hero {
  color: whitesmoke;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  position: relative;
}
.slide-container {
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: left;
}
.hero .info {
  width: 100%;
  height: 100%;
  margin: 20% auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.hero .info h2 {
  font-size: clamp(1.25rem, 0.2691rem + 1.8581vw, 2.5rem);
  font-weight: 700;
  color: whitesmoke;
  text-transform: uppercase;
}
.hero .info p {
  font-size: clamp(1.15rem, 0.8444rem + 0.3378vw, 1.25rem);
  font-weight: 400;
  text-align: left;
  color: whitesmoke;
}
@media only screen and (max-width: 801px) {
  .swiffy-slider {
    --swiffy-slider-item-ratio: 16/9;
    height: 60vh;
    align-items: flex-end;
  }
  .hero .info {
    margin: calc(60vh * 0.27) auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: left;
  }
  .hero .info p {}
}
.hero-heading {
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 1px 1px 12px #3cc3f0;
}