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;
}

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:2rem auto 0rem auto;
  color:rgb(64,64,64);
  padding:2rem;
  scroll-margin-top: 80px
}

.section_title{
width:100%;
text-align: center;
font-size:16pt;
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/meeting.jpg");
  height: 50%;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.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;
}

.hero-text button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 10px 25px;
  color: black;
  background-color: #ddd;
  text-align: center;
  cursor: pointer;
}

.hero-text button:hover {
  background-color: #555;
  color: white;
}

.mnu{
  position:fixed;
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 100%;
justify-content: flex-start;
}
.mnu a{
cursor:pointer;
flex-grow: 1;
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;
background-image: linear-gradient(rgba(218,111,148,0.8)), url("../images/web.jpg");
margin:2px;
opacity: 0.9;
border:1px solid white;
}
.mnu a:hover{
opacity:1;
}

@media screen and (max-width: 600px) {
  section{
    width:100%;
    padding: 1rem;
  }
  .mnu{
    display:none;
  }
}
