body {
  font-family: 'Montserrat';
  letter-spacing: 0.5px;
}
/*header, nav style*/
header {
  background-color: #282b39; /*dark blue*/
}
.navbar-default{
  background-color: #282b39; /*dark blue*/
  margin-bottom: 0px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar-default .navbar-nav>li>a {
  text-transform: uppercase;
  color: white;
  font-family: 'Montserrat';
  font-size: 10px;
  font-weight: bold;
  padding: 30px;
}
.active1 { /*active nav elemenet*/
  border-bottom: 1px solid white;
}
.navbar-default .navbar-nav>li>a:hover {
  color: white;
  border-bottom: 1px solid gray;
}
/*main style*/
p {
  font-size: 14px;
  font-weight: 100;
  line-height: 1.5;
}
h1 {
  font-size: 32px;
  font-weight: 300;
}
h3 {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
/*welcome section*/
#welcome {
  background-color: #282b39; /*dark blue*/
  position: relative;
}
#header_picture {
  margin-top: -420px;
  margin-left: 55%;
  position: relative;
  z-index: 1;
}
#waves {
  position: absolute;
    bottom: 15%;
    left: 0;
}
#welcome_text { /*text block in first section*/
  color: white;
  padding: 10vw 10px;
}
#welcome_text>p {
    padding: 25px 0;
    width: 70%; /*in case of small screen it's still visible*/
}
/*About section*/
.about_images{ /*gives those thumbnail pictures a bit more pretty padding in about section*/
    padding: 20px;
}
#about {
  position: relative;
  padding: 30px;
}
#about::before { /*creates a diagonal_blue_top*/
position: absolute;
content: "";
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: white;
transform-origin: top left;
transform: skewY(-7deg)
}
/*news section*/
#news {
  background-color: #ededed;
  position: relative;
}
.simple { /*simple blue Read more button*/
  color: #337ab7;
  background-color: white;
  text-transform: uppercase;
  font-size: 12px;
}
.blue { /*whatever text needs to be dark blue*/
  color: #282b39; /*dark blue*/
}
#news>.container>.row {
  margin-top: 40px;
}
.news_holder { /*small boxes for the news*/
    position: relative;
}
.box-parent {
    background: white;
}
.box-cont { /*text in the news box*/
    padding: 20px;
}
.image_holder {
    display: inline-block;
    width: 100%;
    margin-bottom: -40px;
}
.image_out { /*places img outside the div*/
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    top: -20px;
    left: 20px;
}
#news>.container>h1 {
  text-transform: uppercase;
  padding: 30px 0;
}
#news>.container {
  padding-bottom: 12vw;
}
/*innovation section*/
#text_section {
  position: relative;
  padding: 30px;
  color: white;
}
#text_section>.container {
  padding-bottom: 12vw;
}
#text_section::before { /*creates a diagonal_blue_top*/
position: absolute;
content: "";
width: 100%;
height: 100%;
top: 0;
left: 0;
transform-origin: top left;
transform: skewY(-7deg);
}
.text_block { /*text block in innovation section */
  padding: 0px 12vw;
  position: relative;
  z-index: 1;
}
#text_section::after { /*creates a diagonal_blue_top*/
position: absolute;
content: "";
width: 100%;
height: 100%;
bottom: 0;
left: 0;
background-color: #282b39;  /*dark blue*/
transform-origin: bottom left;
transform: skewY(-7deg);
}
/*contact section*/
#contact {
  background-color: #282b39;  /*dark blue*/
  margin-top: 20vw;
  position: relative;
}
#contact::before { /*creates a diagonal_blue_top*/
position: absolute;
content: "";
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: #282b39;  /*dark blue*/
transform-origin: top left;
transform: skewY(-7deg);
}
#contact>.container>.well {
  position: relative;
  background-color: white;
  z-index: 2;
}
#form_1 {
  margin-top: -13vw;
  -webkit-box-shadow: -8px -6px 8px 0px rgba(23, 23, 28, 0.24);
  -moz-box-shadow:    -8px -6px 8px 0px rgba(23, 23, 28, 0.24);
  box-shadow:         -8px -6px 8px 0px rgba(23, 23, 28, 0.24);
}
#form_2 {
  margin-top: 10vw;
  margin-bottom: 10vw;
}
.gradient_btn {
  background-image: linear-gradient(to left, #6899f8 0%, #8975d9 50%, #6899f8 100%);
  color: white;
  text-transform: uppercase;
  padding: 15px 40px;
  border-radius: 25px;
}
.button_out {
  position: absolute;
  bottom: -50px;
  left: 45%;
}
#contact>.container>.well>.row>h1 {
  text-transform: uppercase;
  text-align: center;
  padding: 25px;
}
.small_icon {
  height: 50px;
  width: 50px;
  margin: 15px;
}
footer {
  background-color: #282b39; /*dark blue*/
  color: white;
  padding: 20px;
}
