   
    /* Remove the navbar's default margin-bottom and rounded borders */ 
    .navbar {
      margin-bottom: 0;
      border-radius: 0;
	   
    }
	
	 
    
    /* Add a gray background color and some padding to the footer */
    footer {
      background-color: #f2f2f2;
      padding: 25px;
    }
    
	
	 h1, h2, h3 {
	margin: 0;
	padding: 0;
		text-transform: none;
	font-family: 'Lily Script One', sans-serif;
	font-weight: normal;
	color: #AAAAAA;
}

@font-face {
  font-family: 'Lily Script One';
  font-style: normal;
  font-weight: 400;
 src: url(LilyScriptOne-Regular.ttf);  
}
/*
 
 
 
.item img {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 325px;
}
 */
 
 
 .carousel .item {
  height: 375px; /**/
   width: 100%;
     
    
}
   .carousel-inner img {
      width: 100%; /* Set width to 100% */
      margin: auto;
      min-height:375px;
  }

  /* Hide the carousel text when the screen is less than 600 pixels wide */
  @media (max-width: 600px) {
    .carousel-caption {
      display: none; 
    }
    
     .carousel .item {
  height: 200px; /**/
   width: 100%;
     
    
}
    
    
       .carousel-inner img {
      width: 100%; /* Set width to 100% */
      margin: auto;
      min-height:200px;
  }
    
  }
  
  
 
.dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 8px;
  font-size: 16px; 
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #3e8e41;}


 



  /* Main menu styling */
    ul.menu {
      list-style: none;
      padding: 0;
      margin: 0;
      background: red;
      display: flex;
    }

    ul.menu > li {
      position: relative;
    }

    ul.menu > li > a {
      display: block;
      padding: 12px 20px;
      color: white;
      text-decoration: none;
    }

    ul.menu > li:hover {
      background: #34495e;
    }

    /* Submenu styling */
    ul.submenu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #34495e;
      list-style: none;
      padding: 0;
      margin: 0;
      min-width: 160px;
    }

    ul.submenu li a {
      padding: 10px 15px;
      display: block;
      color: white;
      text-decoration: none;
    }

    ul.submenu li a:hover {
      background: #3d566e;
    }

    /* Nested submenu styling */
    ul.submenu ul.submenu {
      top: 0;
      left: 100%;
      background: #3d566e;
    }

    /* Show submenu on hover */
    ul.menu > li:hover > ul.submenu {
      display: block;
    }

    /* Show nested submenu on hover */
    ul.submenu > li:hover > ul.submenu {
      display: block;
    }
	
	
	  ul.navbar-nav > li:hover  {
       background-color: purple;
    }
	
	 
 
	
	
.button {
  background-color: #04AA6D;
  border: none;
  color: white;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.button1 {border-radius: 2px;}
.button2 {border-radius: 4px;}
.button3 {border-radius: 8px;}
.button4 {border-radius: 12px;}
.button5 {border-radius: 50%;}	
	
 



* {
  box-sizing: border-box;
}

.zoom_head {
  padding: 1px;
  background-color: green;
  transition: transform .2s;
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.zoom_head:hover {
  -ms-transform: scale(1.5); /* IE 9 */
  -webkit-transform: scale(1.5); /* Safari 3-8 */
  transform: scale(1.5); 
}


 
 .vertical-menu {
  width: 230px; /* Set a width if you like */
}

.vertical-menu a {
  background-color: #eee; /* Grey background color */
  color: black; /* Black text color */
  display: block; /* Make the links appear below each other */
  padding: 12px; /* Add some padding */
  text-decoration: none; /* Remove underline from links */
}

.vertical-menu a:hover {
  background-color: #ccc; /* Dark grey background on mouse-over */
}

.vertical-menu a.active {
  background-color: #04AA6D; /* Add a green color to the "active/current" link */
  color: white;
}
 
  @media screen and (max-width: 600px) {
  #my-hidden-div {
    display: none;
  }
}

 