*{
  margin: 0;
  padding: 0;
}

body {
    background-color: #79B29F;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    background-repeat: repeat-y;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;

    margin: 0;
    position: relative;
  }

/*watermark*/
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  /*PNG watermark*/
  background-image: url('./images/20.png'); 
  background-repeat: no-repeat;
  background-position: left center; /* left alingment */
  opacity: 0.9;  /* watermark clearance */
  z-index: -1; /* to be inserted behind the buttons etc */
  pointer-events: none; /* clicks pass to the element behind it */
}
  
#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;
}

h1 {
   color: rgba(189, 85, 85, 0.877);
   text-align: center;
   font-size: 50px;
   padding: 50px;
   margin: 0;
}
    
h2 {
   color: rgba(189, 85, 85, 0.877);
   font-size: 36px;
   text-align: left;
}

p {
   font-family: Arial, Helvetica, sans-serif;
   font-size: 20px;
   padding: 50px;
}

/*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;
  }

.br-image {
   transform: scale(0.7); /*to resize image to 0,7*100% of its size*/
   background-position: center;
   background-repeat: no-repeat;
  }

/*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);
  }

.hero-container {
  padding-top: 200px;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hero-text {
  flex: 1;
  text-align: left;
}

#animatedImage {
  max-width: 450; /* size of the photos displayed on the pc */
  flex: 1;
  background-color: white;
  padding: 12px; /* to be like a Polaroid camera photo */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); /* a soft shadow */
  transform: rotate(-1.5deg); /* a little incline for a more friendly result */
}

.mySlides {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 12px;
}

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: block;
  }
  .topnav {
    justify-content: space-between;
  }
  #logo_image {
    margin-left: auto;
  }
  .hero-container {
    padding-top: 150px;
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    text-align: center;
  }
}


     