
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500&display=swap');

html, body, div, span, applet, object, iframe,
 p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	font-family: "Oswald";
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* GENERAL */

h1{
	font-family: "Oswald";
	font-size: 30px;
	font-weight: 500;
}

h2{
	font-family: "Oswald";
	font-size: 15px;
	font-weight: 500;
	text-align: right;
}

body{
	background-color:black;
	min-height:100vh;
	font-family: "Oswald";
}

iframe {
	margin-top: 20px;
	margin-bottom: 0px;
}

.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}


#myVideo {
    position: absolute;
    top: 0;
    left: 0;
	min-width: 100%;
	height: 100%;
}

/* NAV */

nav.navigation{
	position:relative;
	height:50px;
	background-color:black;
	z-index:2;
}
.nav-logo{
	float:left;
	height:160px;
	width: 150px;
	line-height:50px;
	margin-left: 30px;
	margin-top: 30px;
	padding:0 20px;
	background-color:black;
	border-radius: 4px;
}
ul.nav-menu, ul.nav-menu li, ul.nav-menu li a{
	float:right;
}
ul.nav-menu{
	padding-left:20px;
	padding-right: 35px;
}
ul.nav-menu li a{
	font-family: "Oswald";
	font-weight: bold;
	font-size: 23px;
	height:50px;
	line-height:50px;
	padding:0 10px;
	color:white;
	text-decoration:none;
	-webkit-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
ul.nav-menu li a:hover{
	color:#6decb9;
}
.nav-toggle{
	display:none;

	position:absolute;
	top:0;
	right:0;
	width:50px;
	height:50px;
	background-color:black;
	cursor:pointer;
}
span.icon-bar{
	position:absolute;
	right:12px;
	display:block;
	width:26px;
	height:2px;
	background-color:#ffffff;
	-webkit-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.icon-bar:nth-child(1){
  top:17px;
}
.icon-bar:nth-child(2){
  top:24px;
}
.icon-bar:nth-child(3){
  top:31px;
}
.nav-overlay{
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	background-color:rgba(0,0,0,0.5);
	z-index:1;
	opacity:0;
	visibility:hidden;
	-webkit-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.nav-overlay.active{
	opacity:1;
	visibility:visible;
}

/* ICON BARS ANIMATION */

.nav-toggle.active .icon-bar:nth-child(1){
	top:24px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
.nav-toggle.active .icon-bar:nth-child(2){
	width:0;
}
.nav-toggle.active .icon-bar:nth-child(3){
	top:24px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* SITE CONTAINER */

.site-container{
	width:80%;
	margin:7%;
	margin-top: 200px;
	padding:3%;
	background-color: black;
	font-family: "Oswald";
	color: white;
	font-weight: bolder;
	font-size:22px;
	font-weight:400;
	line-height:26px;
	border-radius: 4px;
}
.site-container p{
	margin:10px 0;
}
.site-video{
	width:80%;
	margin:7%;
	margin-top: 200px;
	padding:3%;
	background-color: black;
	font-family:Arial, Helvetica, sans-serif;
	color: white;
	text-align: center;
	font-weight: bolder;
	font-size:16px;
	font-weight:400;
	line-height:20px;
	border-radius: 4px;
}

a:link{
	color: white;
}

a:visited{
	color: white;
}

/* MEDIAQUERIES */

@media screen and (max-width:767px){
	ul.nav-menu{
		position:absolute;
		top:50px;
		width:100%;
		height:0;
		padding:0;
		overflow:hidden;
	}
	ul.nav-menu.active{
		height:auto;
	}
	ul.nav-menu li{
		width:100%;
	}
	ul.nav-menu li a{
		width:100%;
		padding:0;
		text-align:center;
		background-color:black;
	}
	ul.nav-menu li a:hover{
		background-color:black;
	}
	.nav-toggle{
		display:block;
	}
}
@media screen and (min-width:768px){
	.nav-overlay.active{
		visibility:hidden;
		opacity:0;
	}
}





.cursor {
  cursor: pointer;
}



  
  /* The Modal (background) */
  .modal {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: black;
	
  }
  
  /* Modal Content */
  .modal-content {
	position: relative;
	margin: auto;
	padding: 0;
	width: 90%;
	max-width: 1200px;
	background-color: black;
  }
  
  /* The Close Button */
  .close {
	color: white;
	position: absolute;
	top: 110px;
	right: 125px;
	font-size: 35px;
	font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
	color: #999;
	text-decoration: none;
	cursor: pointer;
  }
  
  img.hover-shadow {
	transition: 0.3s;
  }

  .hover-shadow:hover {
	box-shadow: 0 4px 8px 0 rgba(163, 38, 38, 0.2), 0 6px 20px 0 rgba(250, 11, 11, 0.19);
  }

  .demo {
	opacity: 0.6;
  }
  
  .active,
  .demo:hover {
	opacity: 1;
  }

  .cursor {
	cursor: pointer;
  }

  
  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 700px){
	.modal-content {
	  width: 100%;
	}
  }

  

  #gallery {
	line-height:0;
	-webkit-column-count:5; /* split it into 5 columns */
	-webkit-column-gap:5px; /* give it a 5px gap between columns */
	-moz-column-count:5;
	-moz-column-gap:5px;
	column-count:5;
	column-gap:5px;
 }

 #gallery img {
	width: 100% !important;
	height: auto !important;
	margin-bottom:5px; /* to match column gap */
 }

 @media (max-width: 1200px) {
	#gallery {
	 -moz-column-count:    4;
	 -webkit-column-count: 4;
	 column-count:         4;
	}
 }

 @media (max-width: 1000px) {
	#gallery {
	 -moz-column-count:    3;
	 -webkit-column-count: 3;
	 column-count:         3;
	}
 }

 @media (max-width: 800px) {
	#gallery {
	 -moz-column-count:    2;
	 -webkit-column-count: 2;
	 column-count:         2;
	}
 }

 @media (max-width: 400px) {
	#gallery {
	 -moz-column-count:    1;
	 -webkit-column-count: 1;
	 column-count:         1;
	}
 }

  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 700px){
	.modal-content {
	  width: 100%;
	}
  }
