body {
	margin:0;
	padding:0; /* Safari/Chrome, other WebKit */ /* Firefox, other Gecko */
	box-sizing: border-box; /* Opera/IE 8+ */
}

img {
	user-drag: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
  -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;          /* Likely future */ 
}

.container {
	width:100%;
	max-width:1450px;
	position: relative;
	margin:auto;
}

.line {
	width:100%;
	height:1px;
	background:#ACACAC;
	display: inline-block;	
	margin:10px 0;
}

.section {
	position: relative;
}

#black-white {
	background-color:#262626;
	color:white;
}

#black-white .container {
	max-width:700px;
}

/*distorted bars*/

.bar:before, .bar:after {
	width:100%;
	height:20px;
	position: absolute;
	content: "";
	background-position: center;
}

.bar:before {	
	top:-20px;
}

.bar:after {
	bottom:-20px;
}

.bar-black:before {
	background-image:url(../img/bar.svg);
}

.bar-black:after {
	background-image:url(../img/bar.svg);
	-webkit-transform:rotate(180deg);
	    -ms-transform:rotate(180deg);
	        transform:rotate(180deg);
}

.bar-grey-1:before {
	background-image:url(../img/bar2.svg);
}

.bar-grey-1:after {
	background-image:url(../img/bar2.svg);
	-webkit-transform:rotate(180deg);
	    -ms-transform:rotate(180deg);
	        transform:rotate(180deg);
}

.bar-grey-2:before {
	background-image:url(../img/bar3.svg);
}

.bar-grey-2:after {
	background-image:url(../img/bar3.svg);
	-webkit-transform:rotate(180deg);
	    -ms-transform:rotate(180deg);
	        transform:rotate(180deg);
}

.bar-grey-3:before {
	background-image:url(../img/bar4.svg);
}

.bar-grey-3:after {
	background-image:url(../img/bar4.svg);
	-webkit-transform:rotate(180deg);
	    -ms-transform:rotate(180deg);
	        transform:rotate(180deg);
}

.bar-grey-4:before {
	background-image:url(../img/bar5.svg);
}

.bar-grey-4:after {
	height:0;
}

.bar-grey-5:before {
	background-image:url(../img/bar6.svg);
}

.bar-grey-5:after {
	background-image:url(../img/bar6.svg);
	-webkit-transform:rotate(180deg);
	    -ms-transform:rotate(180deg);
	        transform:rotate(180deg);
	left:0;
}


.line-white {
	width:100%;
	height:1px;
	background:white;
	display: inline-block;
	margin:10px 0;
}

menu {
	padding:0;
	margin:0;
}

@font-face {
    font-family: gobold;
    src: url(../fonts/Gobold.ttf);
}

h1,h2,h3,h4,h5, button, a.button {
	font-weight:600;
	font-size: 20px;
	font-family: gobold;
	text-align: center;
}

p, li, a, input, textarea {
	font-family: 'Roboto', sans-serif;
	resize:vertical;
}

p {
	text-align: justify;
  text-justify: inter-word;
}

a.button, button {
	padding:10px 50px;
	border:1px solid #373737;
	background: none;
	text-decoration: none;
  color: #373737;;
}

a.button:hover {
	color:#373737 ;
}

a:hover {
	color: white;
}

a:focus {
	color:white;
}

/* header */

header {
	position: relative;
	width:100%;
	height:500px;
	background-image:url(../img/header.svg);
	background-color:#262626;
}

header #logo {
	position: absolute;
	max-width:400px;
	width:100%;
	left:0;
	right:0;
	margin: auto;
}


header #logo img {
	width:100%;
}

header #slogan {	
  max-width: 1000px;
	width: calc(100% - 20px);
	border-top:solid 1px white;
	border-bottom:solid 1px white;
	position: absolute;
	bottom:50px;
	color:white;
	left:0;
	right: 0;
	margin: auto;
	overflow-x:hidden;
}

header #slogan.no-animation h1 {		
	-webkit-animation:none;
	-moz-animation:   none;
	-o-animation: 		none;
	animation: 				none;
}

header #slogan h1 {	
	-webkit-animation:8s fade forwards;
	-moz-animation:   8s fade forwards;
	-o-animation: 		8s fade forwards;	
	animation: 				8s fade forwards;
	font-family: 'Roboto', sans-serif;
	font-weight: 200;
}


/* chrome, safari */
@-webkit-keyframes fade {
	0% 		{opacity: 0;filter:alpha(opacity=0); -webkit-transform:translateX(-200px)}
	20% 	{opacity: 1;filter:alpha(opacity=100); -webkit-transform:translateX(0px)}
	80% 	{opacity: 1;filter:alpha(opacity=100); -webkit-transform:translateX(0px)}
	100% 	{opacity: 0;filter:alpha(opacity=0); -webkit-transform:translateX(200px)}
}


/* Firefox */
@-moz-keyframes fade {
	0% 		{opacity: 0;filter:alpha(opacity=0); -moz-transform:translateX(-200px)}
	20% 	{opacity: 1;filter:alpha(opacity=100); -moz-transform:translateX(0px)}
	80% 	{opacity: 1;filter:alpha(opacity=100); -moz-transform:translateX(0px)}
	100% 	{opacity: 0;filter:alpha(opacity=0); -moz-transform:translateX(200px)}
}

/* Edge, Internet Explorer */
@keyframes fade {
	0% 		{opacity: 0;filter:alpha(opacity=0); transform:translateX(-200px)}
	20% 	{opacity: 1;filter:alpha(opacity=100); transform:translateX(0px)}
	80% 	{opacity: 1;filter:alpha(opacity=100); transform:translateX(0px)}
	100% 	{opacity: 0;filter:alpha(opacity=0); transform:translateX(200px)}
}

/* opera */
@-o-keyframes fade {
	0% 		{opacity: 0;filter:alpha(opacity=0); -o-transform:translateX(-200px)}
	20% 	{opacity: 1;filter:alpha(opacity=100); -o-transform:translateX(0px)}
	80% 	{opacity: 1;filter:alpha(opacity=100); -o-transform:translateX(0px)}
	100% 	{opacity: 0;filter:alpha(opacity=0); -o-transform:translateX(200px)}
}

/* menu */

menu {
	height:70px;
	width:100%;
	z-index: 100000000;
	position: relative;
}

menu ul {
	margin:0;
	padding:0;
}

menu ul a:before {
	content: "|";
	position:absolute;
	left:-30px;
}

menu ul a:nth-last-child(1):after {
	content: "|";
	position:absolute;
	top:0;
	right:-30px;
}

menu #menu-wrapper {
	width:100%;
	height:70px;
	background:#131313;
	color:white;
	top:0;
}

menu #menu-wrapper.fixed {
	position: fixed;
}

menu #menu-contact {
	display: inline-block;
	height: 100%;
}

menu .container {
	height: 100%;
	vertical-align: top;
	line-height: 70px;
	max-width: 1100px;
	overflow: hidden;
}

menu .container a {
	display: inline-block;
	height: 100%;
	vertical-align: top;
	font-family: 'Roboto', sans-serif;
	margin:0 30px;
	list-style-type: none;
}

menu .container a {
	display: inline-block;
	position: relative;
}

menu #menu-social {
	height:70px;
	position: absolute;
	right:10px;
	top:0;
	height: 70px;
}

menu #menu-social a {
	height:70px;
	margin:0;
	line-height: 70px;
	font-size:30px;
	margin:0 5px;
}

menu #menu-social .language {
	margin:0;
	line-height: 70px;
	font-size:14px;
	margin:0 5px;
}

menu #menu-social .language img {
	width:24px;
}


menu #toggle-menu {	
  font-size: 30px;
  line-height: 70px;
  cursor: pointer;
  display: none;
}

menu.open #menu-wrapper {
	height:100vh;
}

/* over mij */

#over-ons {
	padding-top:50px;
	text-align: center;
}

#over-ons p {
	padding-bottom:20px;
}

#over-ons img {
	width:100%;
	margin-top:80px;
}

#over-ons .line {
	margin:75px 0;
}

#over-ons a.button {
	margin:auto;
}

#over-ons a.button:hover {
	color:#373737;
}

/* bandleden */

#bandleden h1.title {
	margin-bottom: 60px;
}

#bandleden .col-lg-4 {
	position: relative;
	height:500px;
}


#bandleden .picture {
	width:300px;
	height:300px;
	position: relative;
	margin:auto;
	background:#545454;
	border-radius: 50%;
	overflow: hidden;
}

#bandleden .picture .img {
	width:100%;
}

#bandleden .picture .icon-container {
	position: absolute;
	width: 100%;
	height:30%;
	bottom:0;	
}

#bandleden .picture .icon-container .icon {
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 70px;
	height: 70px;
	padding: 10px;
	border-radius: 50%;
	background-color: rgba(104,104,104,0.7);
}

#bandleden .picture .icon-container .icon img {
	height:100%;
	width:100%;
}

#bandleden .description {
	width: calc(100% - 30px);
	position: absolute;
	bottom:50px;
	height:150px;
}

#bandleden .description p  {
	padding:0 20px;
	text-align: center;
}

/* setlist */

#setlist {
	background:#686868;
	color:white;
	padding:50px 0 100px 0;
}

#setlist .row, #setlist-items {
  border-bottom: 1px solid #5D5D5D;
	font-size:0;
}

#setlist-items {
	background: #DEDEDE;
	color: #686868;
	position: relative;
  margin-bottom: 20px;
}



#setlist .row p, #setlist-items p {
	display: inline-block;
  padding: 8px 5px;
	font-size: 14px;
  margin: 0;
}

#setlist-items p {
	font-size: 18px;
	font-weight: 900;
}

#setlist .row .artist, #setlist-items .artist  {
	width:35%;
}

#setlist .row .song, #setlist-items .song  {
	width:45%;
}

#setlist .row .genre, #setlist-items .genre  {
	width:20%;
}

/* foto's */

#photos {
	padding:50px 0;
	background:#404041;
	color:white;
}

#photos #photo-wrapper {
	max-width: 1370px;
	width:100%;
	position: relative;
	overflow: hidden;
	margin:auto;
}

#photos #long-container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;	
	position: relative;
	-webkit-transition:0.2s;
	        transition:0.2s;
}

#photos .photo {
	width:254px;
	margin:0 10px;
}

#photos .photo .img {
	background: #D8D8D8;
	position: relative;
}

#photos .displayed-photo {	
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 3;
}

#photos .photo .img img {
	width:254px;
}

#photos .photo .img a {
	width:100%;
	height:100%;
}

#photos .photo .img .overlay {
	pointer-events:none;
	opacity: 0;
	filter:alpha(opacity=0);
	cursor: pointer;
	z-index: 100;
	position: relative;
}

#photos .photo .img:hover .overlay {
	pointer-events:all;
	opacity: 1;
	filter:alpha(opacity=100);
}

.photos-element nav {
	height:350px;
	position: absolute;
	pointer-events:none;
}

.photos-element nav {
	width:calc(100% - 30px);
  margin-top: -205px;
}

.photos-element nav div.disabled {
	pointer-events:none;
	background-image:url(../img/arrow-disabled.svg);
}

.photos-element nav .left {
	float:left;
	background-image:url(../img/arrow.svg);
	background-size:contain;
	height:20px;
	width:20px;
	cursor: pointer;
	pointer-events:all;	
}

.photos-element nav .right {
	-webkit-transform:rotate(180deg);
	    -ms-transform:rotate(180deg);
	        transform:rotate(180deg);
	float:right;
	background-image:url(../img/arrow.svg);
	background-size:contain;
	height:20px;
	width:20px;
	cursor: pointer;
	pointer-events:all;
	
}





/* contact */

#contact {
	padding:50px 0;
	background:#2D2D2D;
	color:white;
}

#contact #manager {
	width:150px;
	height:150px;
	border-radius: 50%;
	display: inline-block;
}

#contact #gegevens-wrapper {
	display: inline-block;
	vertical-align: middle;
}


#contact .errors {
	border:0;
	height:120px;
	margin-top:20px;
}

#contact input, #contact textarea {
	width:100%;
	border:none;
	padding:10px 20px;
	padding-left:30px;
	margin-bottom:10px;
	outline:none;
	color:#3A3A3A;
}

#contact button {
	width:100%;
	border-color:white;
	color:white;
}

#contact #contact-formulier p {
	text-align: center;
}

#contact-formulier form {
	margin-top:30px;
}

#contact-formulier form span {
  color: red;
  left: 15px;
  display: block;
  position: absolute;
  transform: translateX(12px);
  font-size: 20px;
  margin-top: 10px;
}

#contact #gegevens {
	padding-top:40px;
}

#contact #gegevens p:nth-child(1) {
	text-align: center;
	display: block;
	margin:40px 0;
}

#contact #gegevens p {
	display: inline-block;
	margin:10px 20px;
}

#contact #gegevens i {
	display: inline-block;
	margin:10px 20px;
}

#contact #gegevens .line-white {
}



/* footer */

footer {
	padding-top:50px;
	background: #191919;
	color:white;
  padding-bottom: 10px;
}

footer #menu-footer {
	color:white;
}

footer #menu-footer i {
	margin-left:40px;
  margin-right: 20px;
}

footer #menu-footer a:hover i {
	text-decoration: none !important;
}

footer #menu-footer a {
    color: white;
    margin: 10px auto;
    list-style-type: none;
    width: 300px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

footer #over-ons-footer {
	border-left:1px solid white;
	border-right:1px solid white;
	padding-bottom: 70px;
}

footer #over-ons-footer p {
	width:80%;
	margin:auto;
}

footer #over-ons-footer .button {
  margin: auto;
  position: absolute;
  margin-top: 20px;
  left: 0;
  right: 0;
  width: 250px;
  border: 1px solid white;
  color: white;
}

footer #social-footer p {
	display: inline-block;
	color:white;
	margin:0px 20px;
	line-height: 40px;
	list-style-type: none;
	width:calc(100% - 120px);
	vertical-align: top;
}

footer #social-footer i {
	font-size: 40px;
	color: white;
	margin-bottom:20px;
}

footer #social-footer a {
  color: white;
  margin: 10px 20px;
  list-style-type: none;
  width: 200px;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
	text-decoration: none;
}

footer #social-footer a:hover p {
	text-decoration: underline;
}

footer .line-white {
	margin-top:60px;
}

footer p#copyright {
	text-align: left !important;
	display: inline-block;
}

footer #copyright span {
	margin:0 30px;
}

footer #toggle-animations {
	display: inline-block;
  margin-top: 10px;
	float: right;
	padding:5px;
	background:#FFFFFF;
	color:#313131;
	border-radius: 3px;
	cursor: pointer;
	margin-left:20px;
}

footer #toggle-animations:hover {	
	background:#E8E8E8;
	text-decoration: underline;
}

@media (max-width: 1440px) {

	#photos #photo-wrapper {
		width:1096px;
	}
}

@media (max-width: 1166px) {

	#photos #photo-wrapper {
		width:822px;
	}
}

@media (max-width: 892px) {

	#photos #photo-wrapper {
		width:548px;
	}
}

@media (max-width: 618px) {
	footer #over-ons-footer p {
		width:100%;
	}

	#photos #photo-wrapper {
		width:274px;
	}
}

@media(max-width: 767px) {

	#contact #gegevens {
		padding-top:0px;
	}
}

@media(max-width: 992px) {
	#contact #gegevens {
		padding-top:0;
	}

	#contact #gegevens p:nth-child(1) {
		margin-top:10px;
	}

	footer #menu-footer {
		margin-bottom:40px;
	}

	footer #over-ons-footer {
		border:none;
		height:auto;
		padding-bottom:130px;
		padding-top:20px;
		border-top:1px solid white;
		border-bottom:1px solid white;
	}

	footer #social-footer {
		margin-top:50px;
	} /* menu */

	menu #toggle-menu {
		display:block;
	}

	menu ul a {
		width:100%;
		font-size:14px;
	}

	menu ul {
		font-size:0;
	}
}



