*{
    margin: 0;
    padding: 0;
  }
  
  body {
      font-family: Arial, Helvetica, sans-serif;
      min-height: 100vh;
      background-image: url(./images/18.jpg); /*#79B29F background color*/
      background-repeat: repeat-y;
      background-position: center;
      background-attachment: fixed;
      background-size: cover;
      }
  
  #logo_image{
    width: 300px; /*set the width or max-width*/
    height: auto; /*this makes sure to maintain the aspect ratio*/
    cursor: pointer;
    margin-left: auto;
  }

  /*top menu*/
    .topnav {
      background-color: white;
      background-image: none;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1; /*sets the vertical stacking order of a positioned element along the z-axis*/
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
    }
  
    .topnav a {
      color: black;
      text-align: center;
      padding: 41px 43px;
      text-decoration: none;
      font-size: 17px;

      white-space: nowrap;
    }
  
    .topnav a:hover {
      background-color: rgba(62, 180, 137, 0.877); 
      color: black;
    }
  
  div.menu-bar li:hover > ul {
    display: block;
    }
    
  /*side menu*/
  .sidebar {
     height: 100%;
     width: 0;
     position: fixed;
     z-index: 1;
     top: 0;
     left: 0;
     background-color: #111;
     overflow-x: hidden;
     transition: 0.5s;
     padding-top: 60px;
    }

  /*inside sidebar*/
  .sidebar a {
     padding: 8px 8px 8px 32px;
     text-decoration: none;
     font-size: 25px;
     color: #818181;
     display: block;
     transition: 0.3s;
    }
        
  .sidebar a:hover {
     color: rgba(62, 180, 137, 0.877);
    }
        
  .sidebar .closebtn {
     background: transparent;
     border: none;
     color: #fff;
     outline: none;
     position: absolute;
     top: 0;
     right: 25px;
     font-size: 36px;
     margin-left: 50px;
     cursor: pointer;
    }
        
  .closebtn:hover{
     color: #4CAF50;
  }
  .openbtn {
     font-size: 20px;
     cursor: pointer;
     background-color: white;
     color: black;
     padding: 37.5px 35.5px; /*size of sidebar button(height and lenght)*/
     border: none;
     flex-shrink: 0;
    }
  
  .openbtn:hover {
     background-color: rgba(62, 180, 137, 0.877);
    }
  
  /*example with icons*/
  .stickyicon-list {  
    position: fixed;   
    top: 200px;   
    transform: translateY(-50%);           
    }      

    .stickyicon-list a {
    display: block;   
    text-align: center;   
    padding: 8px;   
    transition: all 0.5s ease;   
    color: white;   
    font-size: 20px;   
    }      

    /* Hover affect on sticky social media icons   */
    .stickyicon-list a:hover {   
    color: #000;   
    width:20px;   
    } 

  /* Padding for the top menu */
  .about-container {
    padding-top: 130px; 
    padding-bottom: 60px;
    display: flex;
    justify-content: center;
  }

  /* Card Layout */
  .hero-text {
    background-color: rgba(255, 255, 255, 0.92); /* Semi clear color */
    max-width: 800px;
    width: 90%;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
  }

  /* Main Title */
  .hero-text h2 {
    color: #1a252c;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    padding: 0;
    margin-bottom: 25px;
  }

  /* header 3 */
  .hero-text h3 {
    color: #bd5555;
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
  }

  /* paragraphs */
  .hero-text p {
    color: #333333;
    font-size: 17px;
    line-height: 1.6;
    padding: 0;
    margin-bottom: 15px;
  }
    
  .features-list li {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 5px;
  }

  ul {
    list-style-position: inside;
    padding: 20px;
  }

  /* Highlighted quote at the end */
  .footer-quote {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 2px solid #3eb489;
    text-align: center;
  }

  .footer-quote span {
    color: #3eb489;
    font-style: italic;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
  }

  .location-text {
    font-size: 15px !important;
    color: #666 !important;
  }

  iframe{
    margin-bottom: 60px;
    width: 80%;
    height: 500px;
  }
  
  #footer {
    position: fixed;
    bottom: 0px;
    background: #333;
    color: #ffffff;
    width: 100%;
    height: 23px;
    text-align: center;
  }

  @media(max-width: 1000px){
  .hideOnMobile{
    display: none;
  }
  .hideOnPC {
    display: none;
  }
  .topnav {
    justify-content: space-between;
  }
  #logo_image {
    margin-left: auto;
  }
}