html {
  position: relative;
  min-height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  margin-bottom: 200px;
}
nav{
  z-index: 100;
}

.navbar-brand, h1{
	font-family: 'Segoe UI', sans-serif;
	font-size: 30px;
	text-transform: uppercase;
}
.navbar-brand::first-letter, h1::first-letter { 
  font-size: 35px;
}

.masthead {
  height: 450px;
  background-image: url('../img/cover_photo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.parallax {

  /* Create the parallax scrolling effect */
  
}

.schovat{
  display:none;
  visibility:hidden;
}

.bg-dark {
  background-color: rgba(0, 0, 0, 0.8)!important;
   -webkit-transition: background-color 0.3s ease-out;
  -moz-transition: background-color 0.3s ease-out;
  -o-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}

.changeColor {
   background-color: rgba(0, 0, 0, 1)!important;
   -webkit-transition: background-color 0.3s ease-out;
  -moz-transition: background-color 0.3s ease-out;
  -o-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}

.main-content{
	padding-top: 30px;
}

.introduction{
	font-size: 25px;
	padding:0px 15px 0px 15px;
	text-align: justify;
	font-weight: 100;
}

.padding_of_content{
	padding:0px 15px 0px 15px;
}

form{
	margin-bottom: 30px;
}

/* Style inputs with type="text", select elements and textareas */
input[type=text], input[type=email], textarea {
  width: 100%; /* Full width */
  padding: 12px 12px 12px 0px; /* Some padding */  
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
  -webkit-transition: border-bottom 0.3s ease-out;
  -moz-transition: border-bottom 0.3s ease-out;
  -o-transition: border-bottom 0.3s ease-out;
  transition: border-bottom 0.3s ease-out;
}

input[type=text]:focus, input[type=email]:focus, textarea:focus{
  outline: none;
  border-bottom:1px solid rgba(10, 189, 227,1.0)!important;
      -webkit-transition: border-bottom 0.3s ease-out;
  -moz-transition: border-bottom 0.3s ease-out;
  -o-transition: border-bottom 0.3s ease-out;
  transition: border-bottom 0.3s ease-out;
}

input[type=text]:valid, input[type=email]:valid, textarea:valid{
  outline: none;
  border-bottom:1px solid rgba(16, 172, 132,1.0)!important;
    -webkit-transition: border-bottom 0.3s ease-out;
  -moz-transition: border-bottom 0.3s ease-out;
  -o-transition: border-bottom 0.3s ease-out;
  transition: border-bottom 0.3s ease-out;
}

form.submitted input[type=text]:invalid,form.submitted input[type=email]:invalid,form.submitted textarea:invalid{
  outline: none;
  border-bottom:1px solid rgba(238, 82, 83,1.0)!important;
      -webkit-transition: border-bottom 0.3s ease-out;
  -moz-transition: border-bottom 0.3s ease-out;
  -o-transition: border-bottom 0.3s ease-out;
  transition: border-bottom 0.3s ease-out;
}



/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: white;
  color: black;
  border:3px solid black!important;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 20px;
    -webkit-transition: background-color 0.3s ease-out;
  -moz-transition: background-color 0.3s ease-out;
  -o-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: black;
  color:white;
}


.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height:150px;
  line-height: 150px; /* Vertically center the text there */
  background-color: black;
}

h2{
	font-size:25px;
}