 varticle,aside,details,figcaption,figure,footer,header,hgroup,nav,section,summary{display:block;}audio,canvas,video{display:inline-block;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:700;}dfn{font-style:italic;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace, serif;font-size:1em;}pre{white-space:pre-wrap;word-wrap:break-word;}q{quotes:\201C \201D \2018 \2019;}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sup{top:-.5em;}sub{bottom:-.25em;}img{border:0;}svg:not(:root){overflow:hidden;}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em;}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}button,html input[type=button],/* 1 */
input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer;}button[disabled],input[ddisabled]{cursor:default;}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0;}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}body,figure{margin:0;}legend,button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}

.clearfix:after {visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }

* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

html {
    font-size: 62.5%;
}

body {
	margin: 0;
	padding: 0;
    font-family: 'Carrois Gothic SC', sans-serif;
    font-size: 1.8rem;
}

.landingWrapper {
	background-image: url('Images/landingBG.jpg');
	background-size: cover;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

ul, li {
	padding: 0;
	margin: 0;
}

h1, h2, h3, p {
	color: rgb(254,247,230);
}


/*=======Nav===========*/
i.fa-facebook-square,
i.fa-twitter-square {
	color: #000a17;
}

.nav {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto 50px;
}

.nav,
.submenu,
.social-media-links {
	background-color: rgba(254,251,247, 0.4);
}

.nav > ul > li > a {
	padding: 26px 20px;
	display: inline-block;
}

.nav a {
	color: #000a17;
	text-transform: uppercase;
	text-decoration: none;
}

.nav .nav-logo {
	padding: 10px 20px;
}

.nav > ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav > ul > li:hover {
	background-color: rgba(254,251,247, 0.6);
}

.nav li,
.social-links-nav li {
	list-style: none;
}

.dropdown {
	position: relative;
}

li:hover > .social-media-links {
	display: flex;
	justify-content: space-around;
}

.submenu,
.social-media-links {
	display: none;
}

.submenu {
	position: absolute;
	min-width: 250px;
}

.social-submenu {
	min-width: 310px;
}

.social-drop-down .submenu {
	right: 0;
}

.submenu > li:hover > a,
.social-media-links > li:hover > a{
	background-color: rgba(254,251,247, 0.4)
}

.social-media-links > li > a {
	display: block;
    padding: 15px 50px;
}

.submenu > li > a {
	display: block;
	padding: 10px;
}

.social-links-nav {
	display: none;
}

.mobile-nav {
	display: none;
}

.submenu > li.social-channel {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.social-links > a {
	padding: 10px;
}

.social-links i:hover {
	color: white;
}

/*=====Nikin Responsive 1024px=====*/
@media (max-width: 1024px) {
	.nav {
		margin-bottom: 25px;
	}

	.nav a {
		font-size: 1.45rem;
	}

	.nav > ul > li:nth-last-child(2),
	.nav > ul > li:last-child {
		display: none;
	}

	.social-links-nav {
		display: block;
	}

	.social-links-nav > ul {
		display: flex;
		width: 125px;
		justify-content: space-between;
		align-items: center;
	}

	#hamburger-menu,
	.fa-3x {
		color: #fff;
	}
}

/*====Nikin Responsive 769px and ABOVE=====*/
@media (min-width: 769px) {
	.nav {
		display: block !important;
	}

	.submenu {
		display: none !important;
	}

	li:hover > .submenu {
		display: block !important;
	}
}

/*============Nikin Responsive 768===========*/
@media (max-width: 768px) {
	.social-links-nav {
		display: none;
	}

	.mobile-nav {
		position: relative;
		display: block;
	}

	#hamburger-menu {
		position: fixed;
		top: 15px;
		right: 15px;
		z-index: 1000;
	}

	.nav a {
		color: white;
	}

	.nav, nav li, .dropdown, .submenu {
		background: rgba(0,0,0,0.85);
	}

	.nav {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		height: 0;
		width: 100%;
		/*position: absolute;*/
		z-index: 100;
		padding: 70px 0;
		text-align: center;
	}

	.nav > ul {
		display: block;
	}

	li:hover > .submenu {
		display: none;
	}

	.submenu {
		position: static;
	}

	.nav > ul > li:nth-last-child(2),
	.nav > ul > li:last-child {
		display: block;
	}

	.nav > ul > li > a {
		width: 100%;
		padding: 25px 15px;
	}

	.nav .nav-logo {
		padding: 25px 0px;
	}


	.submenu > li > a {
		padding: 20px 15px;
	}


	.social-links > a {
		padding: 10px 20px;
	}

	/*.social-links > a:hover {
		background: rgba(255,255,255,0.5);
	}*/

	i.fa-facebook-square, i.fa-twitter-square {
	color: white;
	font-size: 2rem;
}


	i.fa-facebook-square:hover, i.fa-twitter-square:hover {
		color: #B2CFFF
	}

}

/*==============heroContent with Logo================*/

.heroContent {
	margin: 5% auto 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 86%;
}
.heroContent img {
	width: 60%;
}
.heroContent h1 {
	font-size: 3rem;
	border: 2px solid rgb(254,251,247);
	color: rgb(254,247,230);
    font-family: 'Carrois Gothic', sans-serif;
    letter-spacing: 3px;
	padding: 15px;
}

.heroContent .heroButtons ul {
	display: flex;
	justify-content: space-between;
	width: 80%;
	text-align: center;
	margin: 3% auto; 
	list-style: none;
}

.heroContent .heroButtons ul > li {
	position: relative;
    overflow: hidden; 
}


.heroButtons figcaption {
	opacity: 0;
	display: block;
	-webkit-transition: background 0.2s;
	-o-transition: background 0.2s;
	transition: background 0.2s;
	position: absolute;
	top: 0;
	left: 17.2%;
	right: 0;
	bottom: 0; 
	margin: 0;
}

.heroButtons li:hover figcaption {
	background: rgba(255, 255, 255, 0.3);
	text-align: center;
	padding-top: 40%;
	opacity: 100; 
	width: 65.8%;
	height: 100%;
}

.heroButtons img {
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s; 
	margin: 0;
	padding: 0;
	}

  .heroButtons li:hover figure img {
    -webkit-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1); 
}

/*==============EV section================*/
 .EV {
	background-image: url('Images/twinkle-too-1920x1080.png');
	background-size: cover;
}
/*==============In Production section (Subotnick)================*/


 .production {
	background-image: url('Images/twinkle-twinkle-1920x1080.png');
	background-size: cover;
}

.evContainer, .productionContainer, .idwContainer {
	display: flex;
	flex-direction: column;
	text-align: center;
}

.EV h2, .IDW h2 {
	letter-spacing: 3px;
    margin: 100px auto 0;	
}

.production h3 {
    margin: 8% auto 3%;	
}

.evContainer p, .productionContainer p, .idwContainer p {
	text-align: left;
	margin: 2% 18% 1%;
}

.tempImage {
	width: 75%;
	margin: auto;
}

img.center {
	width: 100%;
}

p:last-of-type {
  margin-bottom: 8%;
}

.link {
	color: #25ffff;
	text-decoration-line: underline;
	text-decoration-style: solid;
}

/*this div contains the p, but video size doesn't flex*/
.videoBox {
	position: relative;
	margin: 15px 12%;
	padding-bottom: 56.25%;
	padding-top: 15px;
	height: 0;
}

.videoBox iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

h3 {
	color: #25ffff;
	text-shadow: 2px 4px 6px rgba(0,0,0,1);
	             /*2px 6px 2px rgba(255,255,255,0.9);*/
}

/*==============I DREAM OF WIRES section================*/

.IDW {
	background-image: url('Images/first-aid-kit-1920x1080.png');
	background-size: cover;
}

.idwContainer h2, .idwContainer p {
	color: #000a17;
}

/*==============IDW Carousel================*/

.EVgallery, .IDWgallery, .Subgallery {
  background: #EEE;
}

.EVgallery img, .IDWgallery img, .Subgallery img {
  display: block;
  max-height: 300px;
}

/*==============Our Friends section================*/

.ourFriends {
	background: -webkit-linear-gradient(top, rgba(149,149,149,1) 0%,rgba(149,149,149,1) 8%,rgba(1,1,1,1) 35%,rgba(10,10,10,1) 45%,rgba(56,56,56,1) 77%,rgba(27,27,27,1) 100%);
	margin: 0 auto;
	text-align: center;
}

.friendsContainer {
	padding: 50px 0 70px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.friendsContainer > h2 {
	margin: 25px auto 40px;
}

.buttonsContainer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 80%;
}
.btn {
	width: 30%;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.btn img {
	width: 100%;
}
.thanksButton {
	display: flex;
	align-content: center;
	width: 30%;
}
.thanksButton a {
	text-decoration: none;
	padding: 10%;
	display: block;
	border-radius: 15px;
	width: 100%;
	height: 100%;
	text-align: center;
	background: orange;
}

.buttonsContainer > .btn > img {
	border-radius: 15px;
}


.buttonsContainer a:hover {   
	background: rgba(254,251,247, 0.4);
	cursor: pointer;	
}

.thanksButton:hover {
	background: rgb(255,99,71);
}


/*==============About Us section================*/

.about {
	background-image: url('Images/little-knobs-1920x1080.png');
	background-size: cover;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.about h2 {
	letter-spacing: 3px;
    margin: 60px auto 0;
    text-align: center;
	color: rgb(254,247,230);
}


.about p:first-child {
	font-size: 1.5rem;
	margin: 2% 18% 1%;
    text-align: center;
	color: rgb(254,247,230);
}

.about h4 {
	color: rgba(0,0,0,0.6);
	text-shadow: 2px 8px 6px rgba(0,0,0,0.2),
	             0px -5px 35px rgba(255,255,255,0.3);
	letter-spacing: 3px;
    margin: 0 auto;
}
.about h5 {
	letter-spacing: 3px;
    margin: 4px 0 15px 4px;
    color: #000a17;
}

.JasonContainer, .RobContainer {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 15px 20px 20px;
	margin: 5% 6%;
}

/*img still distorts on screen resizing, image should be smaller*/
/*best way to apply a padded 1px border? do I have to add a div?*/
.JasonContainer img, .RobContainer img {
	max-width: 100%;
	display: block;
	margin: 0 auto;
}

.headshot-wrap {
	width: 45%;
	border: 7px solid rgb(254,247,230);
	border-radius: 2px;
}

.JasonText, .RobText {
	background-color: rgb(254,247,230);
	padding: 20px 30px;
	color: rgb(254,247,230);
	margin: 0 40px 0;
	width: 55%;
	border-radius: 2px;
}

.JasonText p, .RobText p {
	font-size: 1.4rem;
	color: #000a17;
}


/*==============Contact section================*/

.contact {
	background-image: url('Images/diagmonds--light--1920x1080.png');
	background-size: cover;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}	

.logogramWt {
    display: block;
    max-width: 475px;
    width: 100%;
    margin: 4% auto 2%;
	/*border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);*/
}

form {
	background-color: rgb(249, 250, 252);
	display: flex;
	flex-direction: column;
	padding: 35px 50px 40px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#mc_embed_signup_scroll  h2 {
	color: #000a17;
}

.indicates-required {
	margin-left: 65%;
	font-size: 1rem;
	font-style: italic;
}

label {
	padding: 10px;
	padding-left: 0;
}

input[type=submit] {
    padding: 10px; 
    background: #ccc; 
    border: 0 none;
    cursor: pointer;
    border-radius: 5px; 
    margin: 6% 38%;
}

form textarea, form input {
	font-family: sans-serif;
}

input[type=text] {
	flex: 1;
	margin: 2%;
}

.CorpContact {
    padding: 2%;
    font-size: 1.2em;
    margin-top: 2%;
    display: flex;
    align-items: center;
	justify-content: space-between; 
}
.corpSocialicons {
	display: flex;
	justify-content: space-around;
}
.CorpContact > .fa {
    display: block;
}

.corpSocialicons > a > i.fa-facebook-square {
    margin-right: 15px;
}

.corpSocialicons > a > i.fa-facebook-square, .corpSocialicons > a > i.fa-twitter-square {
	color: #000a17;
}

.corpSocialicons > a > .fa-facebook-square:hover, .corpSocialicons > a > .fa-twitter-square:hover {
    color: rgba(0,10,23,0.3);
}


/*==============Footer================*/
footer {
	background-image: url('Images/circutboard.png');
	display: flex;
	background-size: cover;
	justify-content: flex-end;
}

.blackBox {
	background-color: rgba(0, 0, 0, 0.5);
	padding: 1% 1.5%;
	margin: 2%;
	border-radius: 2px;
}

.blackBox p {
	color: rgb(249, 250, 252);
	font-size: 1.6rem;
	display: block; 
	text-align: center;
	padding: 0;
	margin: 0;
}

/*==============Back to Top Button================*/
#back-to-top {
  position: fixed;
  bottom: 80px;
  right: 30px;
  border: 1px solid #333;
  background-color: rgba(255, 255, 255, 0.5);
  width: 48px;
  height: 48px;
  display: block;
  text-decoration: none;
  display: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

#back-to-top:hover {
  background: #333; }

#back-to-top i {
  color: #333;
  position: relative;
  top: -2px;
  left: 5px;
  font-size: 3em;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

#back-to-top:hover i {
  top: -5px;
  color: white; }

#back-to-top {
      position: fixed;
      bottom: 50px;
      right: 12px; 
  } 


/*==============RESPONSIVE SECTION================*/

@media (max-width: 1192px) {
	.thanksButton {
		padding: 50px 20px 40px;
		text-align: center;
	}
}

@media (max-width: 1040px) {
	.thanksButton {
		padding: 40px 20px 40px;
	}
}
/*================================================*/
/* Portrait tablet and small desktops */
@media (max-width: 940px) {
	/*===About section 940=======*/
	.JasonContainer, .RobContainer {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 20px;
		margin: 10px auto;
	}

	.headshot-wrap {
		width: 50%;
	}

	.JasonText, .RobText {
		margin-top: 20px;
		width: 50%
	}
}

/* Landscape phone to portrait tablet */
@media (max-width: 768px) {

	/*==============Flex Nav================*/
	/*.nav {
		flex-direction: column;
		align-items: center;
		flex-wrap: nowrap;
		padding: 30px auto;  
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		background: rgba(0,0,0,0.8);
		z-index: 2;
	}*/	

	/*.social-links i:hover {
		color: rgba(0,10,23,0.3);
	}*/

	/*.nav > li {
		width: 100%;
	    text-align: center;
	}

	.nav > li > a,
	.fa-3x {
		color: #fff;
	}*/

	li.dropdown > a::after{
	    left: 50%;
	    transform: translateX(-50%);
	}

	#progressMenu::after {
		right: 50%;
	}
	

	.subMenu {
		border: 1px solid rgba(000,010,023, 0.4);
		position: relative;
		font-size: 1.5rem;
	}

	.icons,
	.icons:last-of-type {
		position: relative;
		top: 0;
		left: 0;
	}
	.social-channel {
		display: flex;
		flex-direction: column;
		align-items: center;
	}


	#hamburger {
		display: block;
		font-size: 3.2rem;
	    color: #fff;
	    position: fixed;
	    top: 20px;
	    right: 20px;
	    z-index: 3;
	}

	#hamburger:hover {
		cursor: pointer;
	}

	nav {
		padding: 0;
	}
	
	.heroContent {
		margin: 20% 0 auto;
	}

	
	/*========768 Friends Section============*/
	.buttonsContainer {
		flex-direction: column;
		align-content: space-between;
		align-items: center;
	}

	.friendsContainer {
		padding: 30px 0;
	}
	.buttonsContainer > a {
		margin-bottom: 20px;
	}

	.btn {
		width: 50%;
		box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	}
	.thanksButton {
		width: 50%;
		padding: 30px;
	}


	/*===About section 768=======*/

	.JasonContainer, .RobContainer {
		width: 80%;
		margin: 20px auto;
		padding: 0;
	}

	.headshot-wrap, .JasonText, .RobText {
		width: 100%;
	}

   #back-to-top {
		visibility: hidden;
	}
	/*===Footer 768=======*/

	footer {
		justify-content: center;
		align-items: center;
	}
	footer p {
		font-size: 1.4rem;
	}
}

/* Landscape phones and down */
@media (max-width: 480px) {

	h2 {
		font-size: 2.2rem;
	}
	h3  {
		font-size: 1.7rem;
		word-wrap: normal;
		text-align: center;
	}

	/*========480 Landing Page Section============*/

	.heroContent {
		margin-top: 45%;
	}
	.heroContent img {
		width: 80%;
	}
	.heroContent h1 {
		font-size: 1.9rem;
		padding: 15px 10px;
		margin: 3% 10%;
		}

}
