/* style for the header and top menu */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300&family=Roboto:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@600&display=swap');

header {
    position: sticky;
    top: 0;
    left: 0;
    height: 255;
    width: 100%;
    z-index: 9999;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-images img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    height: auto;
  }
  
  .header-images img:first-child {
    height: 100px;
    margin-right: 10px;
  }
  
  .header-images img:last-child {
    flex-grow: 1;
    height: 225px;
  }
  
.header-images {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin: 2rem 0; 
  width: 100%;
}

  .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    bottom: 0;
    position: absolute;
    min-width: 250px;
  }
  .menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .menu ul li {
    margin: 0 1rem;
  }

  ul.content {
    width: 100%;
  }

  ul.iconlist {
    list-style-type: none;
  }

  #services {
    background-color: rgba(240, 246, 255, 0.945);  
  }

  #contact {
    background-color: rgba(240, 246, 255, 0.945); 
  }

  #contact div.row {
    justify-content: space-evenly;
  }

  div.center  {
    margin:auto;
    max-width: 960px;
  }

  /* style for the content */
  .container {    
    margin: 0 auto;
    padding: 1rem;    
    padding-left: 1em;
    z-index: 1;
    position:relative;
    padding-bottom: 80px;
    color: #00a69c;
  }
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 2rem 0;
  }
  .item {
    width: calc(33.33% - 1rem);
    margin-bottom: 2rem;
    border: 1px solid #ccc;
    padding: 1rem;
  }

  .menu-item {
    color: #00a69c;
  }
  
  .menu-item.active {
    color: #5E3B6B;
    font-weight: 600;
  }
  
  .menu-item::after, .menu-item.active::after {
    border-right-color: #5E3B6B;
  }
  
  .menu-item:hover {
    color: #8B3B84;
  }

  .left-panel, .right-panel {
    display: inline-block;
    width: 25%;
    min-width: 350px;
  }

  img.headshot {
    width: 150px;
    margin-inline-end: 15px;
  }

  img.icon {
    width: 15px;
    margin-right: 5px;
  }

  /* media queries for responsive design */
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
    }
    nav ul li {
      margin: 1rem 0;
    }
    .item {
      width: 100%;
    }
  }

  footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #8B3B84;
    color: white; 
    text-align: center;
    padding: 10px;
    z-index: 9998;
  }

  h1 {
    font-size: 4.0rem;
    font-family: 'Roboto Slab', sans-serif;
    font-weight: 300;
    margin-block-start: 15px;
    margin-block-end: 15px;
  }

  h2 {
    font-size: 2.8rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin-block-start: 5px;
    margin-block-end: 5px;
    width: 100%;
  }

  h3 {
    font-size: 1.6rem;
    font-family: 'Roboto Slab', sans-serif;
    font-weight: 600;
    margin-block-start: 5px;
    margin-block-end: 5px;
    width: 100%;
  }

  h4 {
    width: 100%;
  }

  p {
    font-size: 1rem;
  }
  