@charset "utf-8";
body {
	margin: 0;
	color: #ffffff;
	font-family: "Avenir Next", "Avenir", sans-serif;
	font-size: 1em;
}
header {
}
.logo {
}
.logo img {
	width: 100%;
}
main {
	z-index: -2;
	display: block;
	position: absolute;
	margin: 0;
	width: 100%;
}
section {	
}
.image {
	width: 100%;
	margin: 0;
}
section iframe {
	width: auto;
	margin: auto;
	padding-bottom: 10px;
	
}
section ul {
	padding: 0 0 0 1em;
}
section h2 {
	background-color: #000000;
	text-align: center;
	margin: 0;
	padding: 0 0 15px 0;
	font-family: "Avenir Next", "Avenir", sans-serif;
	font-size: 1em;
}
section h2 a {
	color: #ffffff;
	text-decoration: none;
}
section h2 a:hover {
	color: red;
}
section button {
	background-color: red; 
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	box-shadow: 10px 10px 10px grey;
	transition: all .2s ease-in-out; 
}

section button:hover { 
transform: scale(1.1); 
}
/*
-----------------------BEGIN project page only---------------------
*/

/*
-----------------------END project page only---------------------
*/
/*
-----------------------BEGIN image hover---------------------
*/
.container {
  	position: relative;
  	width: 100%;
}

.image {
  	display: block;
  	width: 100%;
  	height: auto;
}

.overlay {
  	position: absolute;
  	top: 0;
  	bottom: 0;
  	left: 0;
  	right: 0;
  	height: 100%;
  	width: 100%;
  	opacity: 0;
  	transition: .5s ease;
  	background-color: black;
}

.container:hover .overlay {
  	opacity: 85%;
}

.text {
  	color: white;
  	font-size: 30px;
	font-family: depot-new-condensed-web,sans-serif;
	font-weight: 700;
	font-style: normal;
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	-webkit-transform: translate(-50%, -50%);
  	-ms-transform: translate(-50%, -50%);
  	transform: translate(-50%, -50%);
  	text-align: center;
}
.text:hover {
	color: red;
}
/*
-----------------------END image hover---------------------
*/
/*
-----------------------BEGIN web page only---------------------
*/
#web {
	width: 200px;
}
/*
-----------------------END web page only---------------------
*/
/*
-----------------------BEGIN footer---------------------
*/
footer {
	text-align: center;
	position: relative;
	margin: auto;
	padding: 2em 0 2em 2em;
	padding-bottom: 2em;
	font-size: .8em;
}
#footerMenu {
	padding-bottom: 0;
	text-align: center;
}

#footerMenu li {
	display: inline;
	margin: 0 20px 0 0;
	padding: 0 .5em 0 0;
	font-size: 10pt;
	font-weight: bold;
	text-align: center;
	}
#footerMenu a {
	text-decoration: none;
	color: #000000;
}
#footerMenu a:hover {
	color: red;
}
#footerMenu2 {
	padding-bottom: 0;
	text-align: center;
}

#footerMenu2 li {
	display: inline;
	margin: 0 20px 0 0;
	padding: 0 .5em 0 0;
	font-size: 10pt;
	font-weight: bold;
	text-align: center;
}
#footerMenu2 a {
	text-decoration: none;
	color: #000000;
}
#footerMenu2 a:hover {
	color: red;
}
#footerMenu3 {
	padding-bottom: 10px;
	text-align: center;
}

#footerMenu3 li {
	display: inline;
	margin: 0 20px 0 0;
	padding: 0 .5em 0 0;
	font-size: 10pt;
	font-weight: bold;
	text-align: center;
}
#footerMenu3 a {
	text-decoration: none;
	color: #000000;
}
#footerMenu3 a:hover {
	color: red;
}
/*
-----------------------END footer---------------------
*/	
/*
 * BEGIN HAMBURGER NAV
 * -----------------------------------------------------------------------------------------------------------------------------------------------------
 * hamburger nav - Before on-click: three Lines - appearance
 */

#menuToggle
{
  position: sticky;
  display: block;
  z-index: 0;
  -webkit-user-select: none;
  user-select: none;
  margin: 1em;

}

#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: red;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}
#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}
#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}
/*
 * hamburger nav - Before on-click: three Lines - functionality
 */
#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}
/* 
 * hamburger nav - on-click: Transform all the slices of hamburger into a crossmark & show block with text.
 */
/*
 * make the lines smaller & rotate the top line
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #000000;
}
/*
 * hide the middle line
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
/*
 * rotate the last line - opposite direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}
/*
 * And let's slide THE BLOCK with text in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}

/* 
 * hamburger nav - background block - appearance
 */
#menu /* unordered list */
{
  position: absolute;
  width: 1000px;
  margin: 5px 0 0 -40px;
  padding: 25px 0 30px 48px;
  background: #000000;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  transform-origin: 0% 0%;
  transform: translate(-100%,0%);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}
/*
 * hamburger nav - text - appearance
 */
#menu li {
	margin: auto;
	padding: 0.25em 1em 0 0;
	text-align: left;
	font-size: 16pt;
}
#menuToggle a
{
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}
#menuToggle a:hover
{
	
  color: red;
}

/* END HAMBURGER NAV
 * -------------------------------------------------------------------------------------------------------------------------------------------
 */



/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
/* MEDIA QUERIES */
/*---------------------------------------------------- tablet */
@media screen and (min-width: 461px) {
	.peacock .container {
		width: 50%;
	}
	.firstmag .container {
		width: 50%;
	}
}
/*----------------------------------------------------- ipad */
@media screen and (min-width: 768px) {
	#menu /* unordered list */ {
		position: fixed;
		width: 100%;
		margin: -340px 0 0 -1em;
		padding: 2em 0 2em 0;
		text-align: right;
		transform: none;
		background-color: #ffffff;
}
	/* to put the new menu behind the logo & hide the hamburger nav */
	#menuToggle {
		margin-top: 15em;
		width: 100%;
		padding: 100px 0 30px 0;
		list-style-type: none;	
	}
	#menuToggle input {
		display: none;
	}
	#menuToggle span {
		display: none;
	}
	
	/* MENU TEXT on tablet & desktop */
	#menu li {
		display: inline;
		margin: 0 10px 0 0;
		padding: 0 5px 0 0;
		font-size: 10pt;
		font-weight: bold;
	}
	#menuToggle a {
		color: #000000;
	}
	
	#menu a.active:hover {
color: red;
	}
	#menuToggle a.active {
		color: white;
		background-color: #3E3E3E;
		padding: 1em;
	}
	/* header */
	header {
		margin: 0 0 0 0;
		text-align: left;

	}
	.logo {
		margin: -15.3em 0 0 1em;
		width: 100px;
		position: fixed;
		z-index: 1;
	}
	/* main */
	main {
		margin: -19em 0 0 0;
	}
	section {
		margin-top: 0;
		padding: 0;
	}
	section img {
		width: 100%;
	}
	section iframe {
		width: 100%;
	}
}



/*-------------------------------------------------- desktop */
@media screen and (min-width: 1024px) {
	
	section {
		text-align: center;
	}

	h2 {
		width: 900px;	
	}
		section img {
		width: 900px;
		text-align: center;
			

	}
	section iframe {
		width: 900px;
		text-align: center;
		

	}
	
}







