
/* All defaults for the main skeleton of the site AND some basic elements used through-out */
/* ----- Style individual pages that differ from these defaults in the page_style.css ---- */

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	}

body{
	background-color: #e6e6e6;
	}

.fixed{
	position: fixed;
	z-index:2;	
	}

div.top_container{
	top: 0px;
	width: 100%;
	height: 5.5rem;
  background-color: #b3b3b3;
  box-shadow: 0px 1px 10px #b1b1b1;  
	}

nav{
	width: 70%;
	height: 100%;	
	margin: auto;
	display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
	}

div#brand{
	width: 15%;
	min-width: 100px;
	text-align: left;
	}

div#brand_btn{
    width: 100px;
  }	

div#nav_links{
	width: 70%;
	min-width: 125px;
	margin-left: auto;
	flex-direction: row;
	flex-wrap: nowrap;	
  display: flex;
  justify-content: flex-end;  
  align-items: center;  
  }

div.semi_btn {
	height: 5rem;
	min-width: 50px;
	margin: 0.01rem;
	background-color:  #ffffcc; /* #b3b3b3; */
	cursor: pointer;
  border: 2px solid #b3b3b3;
  border-radius: 25px 25px;
  display: flex;
	opacity: 0.5;
  transition: opacity 1.5s, background-color 1.5s;
	}
	
div.semi_btn:hover{
	opacity: 1;  
	border: 2px solid;
	background-color: #33cc33;
	border-top-color: #f2f2f2;
	border-left-color: #e6e6e6;
	border-right-color: #808080;
  border-bottom-color: #666666;
  border-radius: 25px 25px;  
	display: flex;
  transition: opacity 1.5s, background-color 1.5s;	
  }

/* div.icon_btn{
  width: 22px;
} */

img.icon{
  margin: 0px auto;
}

img#home_icon{
  width: 22px;
}

img#about_icon{
  width: 24px;
}

img#contact_icon{
  width: 25px;
  margin-top: 0px;
}

div#ham_menu{
  width: 70%;
  height: 100%;	
	margin: auto;
  display: none;  /* Hides the Hamburger Menu, showing happens in media_style.css */
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  }

div#ham{
	width: 3rem;
	padding-top: 1rem;
  display: flex;
  flex-direction: column;
  }

div.ham_burger{
	width: 3rem;
  height: 0.25rem;
	margin: 0.125rem auto;
	padding: 0.15rem;
  border: 2px solid #000000;
	border-radius: 4px;
	}
/* end of the top section of the website */


/* Floating 'to top' button */
div#to_top{
	width: 50px;
	top: 55px;
  position: sticky;
  margin-top: 7px;
	margin-left: 7px;
  margin-right: auto;
	border-radius: 50%;
	z-index: 2;
	background-color: #ffffcc;
	opacity: 0.5;
	transition: opacity 1.5s, background-color 1.5s;		
	}

div#to_top:hover{
	opacity: 1;
  background-color: #33cc33;
	transition: opacity 1.5s, background-color 1.5s;		
  }

div#top{
  position: absolute;
  top: 150px;
  }

/* DEV :!: ** MAIN ** center part of the website with actual content */

div.base_container{
	z-index: 1;
	position: relative;
	top: 5.75rem;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	}

section.jumbotron{
	background-color: #99cccc;/* #aaffff; #b7f9ff; #b2dde5; */
	width: 100%;
	text-align: center;
  padding: 6rem;
  box-shadow: inset 0px 2px 25px rgb(153,250,250,0.6);
  }

div#content_container{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
  }

div#leftSlider{
	width: 15%;
	margin-left: auto;
  }	
	
main{
	width: 70%;
  }
	
div#rightSlider{
	width: 15%;
	margin-right: auto;
  }

footer#footer_main {
  position: relative;
	margin: 2rem auto;
  }
  
img#footer_img{
  width: 100%;
  }
	
div#footer_text{
  border: 1px solid white;
  color: white;
  top: 30%;
  left: 50%;
  width: 90%;
  position: absolute;
  padding: 3px;
  font-size: 18px; 
  transform: translate(-50%, -50%);
  text-align: center;
  }	

/* THE HIDDEN OVERLAY FOR IMAGES */
div#overlay{
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.8);
  z-index: 3;
  cursor: pointer;
  }

div#overlay_image_container{
  margin: auto;
  }

img#overlay_image{
  width: 100%;
  }

div#close_overlay{
  width: 30px;
  padding: 3px;
  font-family: Verdana, Tahoma, sans-serif;
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-left: auto;
  margin-right: 5%;
  margin-bottom: 14px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  }

div#close_overlay:hover{
  color: #33cc33;
  border: 1px solid white;
  }

/* end of the MAIN content section of the website */

/* FIXED footer at the bottom of the site */
div.bottom_container {
	bottom: 0px;
	width: 100%;
	background-color: #b3b3b3;	
	height: 2.5rem;
	padding: 0.35rem;
  text-align: center;
  box-shadow: 0px -1px 10px #b1b1b1;
  }