html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  margin: 0;
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14pt;
  background-color: rgb(231, 186, 232);
  background-image: linear-gradient(rgba(218, 111, 148, 0.8)), url("../images/web.jpg");
  background-size: cover;
  padding-bottom: 6rem;
}

b {
  color: black;
}

.bold{
  font-weight: bold;
}

a[href^="tel"] {
  color: black;
  text-decoration: underline;
}

tr:nth-of-type(odd) {
  background: #efefef;
}

td:last-child {
  white-space: nowrap;
}

section {
  font-family: "Elms Sans", sans-serif;
  width: 90%;
  background-color: white;
  margin: 10px auto 0rem auto;
  color: rgb(64, 64, 64);
  padding: 3rem;
  scroll-margin-top: 80px;
  position: relative;
  border-radius: 1rem;
}

.section-top {
  position: absolute;
  top: 4px;
  right: 4px;
  width:30px;
  height:30px;
  cursor: pointer;
  background-image: url("/images/section_top.svg");
  background-size: contain;
}

#menuOpen {
  display: block;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 40px;
  height: auto;
  z-index: 10;
  cursor: pointer;
}

#menuClose {
  display: block;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 24px;
  height: auto;
  cursor: pointer;
}

#menu {
  width: fit-200px;
  height: fit-content;
  padding: 2rem;
  background-image: linear-gradient(rgba(218, 111, 148, 0.8)), url("../images/web.jpg");
  background-size: cover;
  position: fixed;
  right: 0px;
  top: 0px;
  transition: max-height 0.25s ease-out, opacity 0.25s ease, transform 0.25s ease, padding 0.25s ease;
  z-index: 10;
  overflow: hidden;
  border: 1px solid white;
  opacity: 0;
  max-height: 0;
  transform: translateY(10px);
  padding: 0;
}

/* Active state */
.menuvisible {
  opacity: 1 !important;
  max-height: 600px !important;
  transform: translateY(0) !important;
  padding: 2rem !important;
}


#menu a {
  cursor: pointer;
  padding: 0.5rem;
  color: black;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  box-sizing: border-box;
  font-size: 12px;
  border-radius: 0.5rem;
  margin: 2px;
  opacity: 0.9;
  border: 1px solid white;
  display: block;
  width: 200px;
  margin-top: 0.5rem;
}

#menu a:hover {
  background-color: crimson;
  color: white;
}

#menu a:first-of-type {
  margin-top: 1rem;
}

.section_title {
  width: 100%;
  text-align: center;
  font-size: 18pt;
  padding: 0 0 1rem 0;
  font-weight: bold;
}
.section_subtitle {
  width: 100%;
  text-align: center;
  font-size: 14pt;
  padding: 0 0 1rem 0;
  font-weight: bold;
}

.subsection {
  padding: 0.5rem;
}

.subsection:nth-of-type(odd) {
  background: #efefef;
}

.line {
  text-align: center;
  margin-bottom: 1rem;
}

.hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)), url("../images/peak.jpg");
  height: 500px;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.two-women {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)), url("../images/two_women.jpg");
}

.safety {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)), url("../images/safety.jpg");
}
.blog {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)), url("../images/blog.jpg");
}
.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.hero-text a[href^="tel"] {
  color: white;
  text-decoration: underline;
}

#leaveBtn {
  position: absolute;
  bottom: 0px;
  right: 0px;
  padding: 4px;
  padding: 4px;
  background-image: linear-gradient(rgba(218, 111, 148, 0.8)), url("../images/web.jpg");
  cursor: pointer;
  border: 2px solid black;
}

#leaveBtn:hover {
  background-image: linear-gradient(rgba(218, 111, 148, 1)), url("../images/web.jpg");
  color: white;
}

.pagelabel {
  position: absolute;
  top: 4px;
  left: 4px;

}

@media screen and (max-width: 600px) {
  section {
    width: 100%;
    padding: 1.5rem;
  }

  #menu {
    width: 100%;
  }

  #menu a {
    width: 100%;
  }

}