/* Universal selector (asterisk *) applies to all elements in the document.*/
* {
	margin: 0;
	padding: 0;
}


html, body {
	
	font-family: 'Raleway', sans-serif;			/* Google font */	
	font-family: 'Hind Madurai', sans-serif;  	/* Google font */

	font-size: 13px;
	line-height: 1.6;
	color: #000;



}

/* Disable tablet/phone context menus (right click). For PC see custom.js  */
img { -webkit-touch-callout: none; }



header {
	display: block;  /* center header */
	margin: auto;    /* center header */
	padding: 5px 15px 5px 15px;
	border: solid 0px red;
}


img.logo {
	display: block;  /* center logo */
	margin: auto;    /* center logo */
	height: 60px;    /* Mobile first */
}






/* Background slider */
/* https://php.quicoto.com/easy-background-image-slideshow/  */
/* ================= */
div.slide {
	
	border:solid orange 0px;
	z-index: 1;
	position: absolute;
	

	width: 100%;
    height: 100%;  /* Geef pixels op om volledig naar beneden te kunnen scrollen. */

	
	left: 0;

	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100%;  /* Resize the background image to cover the entire container */

	transition: opacity 2s ease-in-out;
	opacity: 0;
}

div.slide.show {
	opacity: 1;
}





@media (min-width: 768px) {

	/*  Bij viewport => 768px  */
	
	header {
		padding-bottom: 7px;  /* Distance to content */
	}	
	
	img.logo {
		height: 120px;
	}

	
}


@media (max-width: 1024px) {
	
	/* Bij viewport <= 1024px (iPad 3, 4 en 5)  */
	


}


	
	

/* Form contact */
/* ================= */

.container-form-contact {
  color: #777;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  border:solid red 1px;

}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact textarea,
#contact button[type="submit"] { font: 400 12px/16px; }

#contact {
  background: #F9F9F9;
  padding: 50px;
  margin: 50px 0px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
  border:solid blue 1px;
}

#contact h3 {
  display: block;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #FFF;
  margin: 0 0 5px;
  padding: 10px;
}

#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact input[type="tel"]:hover,
#contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

#contact textarea {
  height: 120px;
  max-width: 100%;
  resize: none;
}

#contact button[type="submit"] {
  cursor: pointer;
  width: 50%;
  border: none;
  background: #45a048;
  color: #FFF;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 15px;
}

#contact button[type="submit"]:hover {
  background: #338437;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}


#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}
















