.selected {
  color: #96c8e6 !important;
}

.headerBar {
  display: grid;
  width: 100%;
  grid-template-rows: min(10vh);
  grid-template-columns: 8vw auto 1fr repeat(4, min(8vw, 100px)) 8vw;
  background-color: #00003c;
  margin: 0px 0px 0px 0px;
}

.headerBar > a {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Open Sans",
    "Helvetica Neue", sans-serif;
  color: white;
  text-decoration: none;
  justify-self: center;
  align-self: center;
}

.footerBar {
  display: grid;
  width: 100%;
  grid-template-rows: 1fr;
  grid-template-columns: 10vw 40vw 40vw 10vw;
  background-color: black;
  color: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Open Sans",
    "Helvetica Neue", sans-serif;
  margin: 0px 0px 0px 0px;
}

.mobileMenuBar {
  height: 90vh;
  width: 100vw;
  position: absolute;
  background-color: white;
  display: none;
  grid-template-columns: 100vw;
  grid-template-rows: repeat(4, 10vh);
}

.mobileMenuBar > a {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Open Sans",
    "Helvetica Neue", sans-serif;
  color: black;
  text-decoration: none;
  justify-self: center;
  align-self: center;
  padding: 2vh 100px 2vh 100px;
}

.companyName {
  color: white;
  font-family: "Titillium Web";
  font-weight: 400;
  font-size: max(2vw, 25px);
  grid-row: 1;
  grid-column: 2 / span 4;
  justify-self: left;
  align-self: center;
}


@media screen and (max-width: 850px) {
  .servicesSummary {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Open Sans",
      "Helvetica Neue", sans-serif;
    display: grid;
    grid-template-columns: 1fr
    grid-gap: 30px 0px;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 60px;
    padding-left: 8%;
    padding-right: 8%;
    background-color: #96c8e6;
  }

  .aboutSummary {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Open Sans",
      "Helvetica Neue", sans-serif;
    display: grid;
    grid-template-columns: 1fr
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 8%;
    padding-right: 8%;
    justify-content: center;
  }
}

@media screen and (min-width: 851px) {
  .servicesSummary {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Open Sans",
      "Helvetica Neue", sans-serif;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px 0px;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 60px;
    padding-left: 8%;
    padding-right: 8%;
    background-color: #96c8e6;
  }

  .aboutSummary {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Open Sans",
      "Helvetica Neue", sans-serif;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 8%;
    padding-right: 8%;
    justify-content: center;
  }
}

.serviceCard {
  padding-top: 30px;
  margin-top: 30px;
  background-color: white;
  border-radius: 5px;
  aspect-ratio: 3 / 5;
  height: max(35vw, 530px);
  justify-self: center;
  align-self: center;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0.9fr 1fr;
}

@media screen and (max-width: 850px) {
  .headerBar > a {
    display: none;
  }
}

.menusvg {
  max-height: 5vh;
}

.map {
  align-self: center;
  justify-self: center;
  padding-top: 20px;
  padding-bottom: 40px;
  width: min(600px, 80vw);
  height: min(450px, 60vh);
}

.locationSection {
  display: grid;
  justify-content: center;
  text-align: center;
  background-color: #96c8e6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Open Sans",
    "Helvetica Neue", sans-serif;
}

.phoneSection {
  display: grid;
  justify-content: center;
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Open Sans",
    "Helvetica Neue", sans-serif;
  padding-bottom: 30px;
  padding-top: 10px;
}

.mapSection {
  display: grid;
  justify-content: center;
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Open Sans",
    "Helvetica Neue", sans-serif;
}

.intro {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Open Sans",
    "Helvetica Neue", sans-serif;
  text-align: center;
  align-self: end;
  justify-self: center;
  margin-left: 20px;
  margin-right: 20px;
  padding: 10px;
  font-size: max(1.3vw, 18px);
  color: white;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(10px);
  grid-row: 2;
}

.bookPrompt {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Open Sans",
    "Helvetica Neue", sans-serif;
  color: black;
  background-color: #96c8e6;
  width: max(18vw, 200px);
  padding: 10px 10px 10px 10px;
  text-align: center;
  align-self: center;
  justify-self: center;
  grid-row: 3;
  border-radius: 5px;
}

@media screen and (min-width: 851px) {
  .menusvg {
    display: none;
  }
}

@supports (height: 90svh) {
  .headerBar {
    display: grid;
    grid-template-rows: min(10vh, 10svh);
    grid-template-columns: 8vw auto 1fr repeat(4, min(8vw, 100px)) 8vw;
    background-color: #00003c;
    margin: 0px 0px 0px 0px;
  }

  .headerSpacer {
    height: min(10vh, 10svh);
    width: 100%;
  }

  .banner {
    height: min(90vh, 90svh);
    background-image: url("/assets/beach.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: grid;
    grid-template-rows: 50% 20% 20% 10%;
    grid-template-columns: 100%;
  }

  @supports (background-image: -webkit-image-set(url('/assets/beach.webp'))) {
    .banner {
      background-image: -webkit-image-set(url('/assets/beach.webp'));
    }
  }
}

@supports not (height: 90svh) {
  .headerBar {
    display: grid;
    grid-template-rows: 10vh;
    grid-template-columns: 8vw auto 1fr repeat(4, min(8vw, 100px)) 8vw;
    background-color: #00003c;
    margin: 0px 0px 0px 0px;
  }

  .headerSpacer {
    height: 10vh;
    width: 100%;
  }

  .banner {
    height: 90vh;
    background-image: url("/assets/beach.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 100%;
  }

  @supports (background-image: -webkit-image-set(url('/assets/beach.webp'))) {
    .banner {
      background-image: -webkit-image-set(url('/assets/beach.webp'));
    }
  }
}
