/*
Author: Danny Schulz
Author URI: http://www.danny-schulz.com
*/

/* Oswald – Regular */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/oswald.woff2') format('woff2'),
       url('../fonts/oswald.ttf') format('truetype');
  font-display: swap;
}

/* Noto Serif – Italic */
@font-face {
  font-family: 'Noto Serif';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/noto-serif-italic.woff2') format('woff2'),
       url('../fonts/noto-serif-italic.ttf') format('truetype');
  font-display: swap;
}

body {
  font-family: helvetica, arial, verdana;
  color:#656565;
  font-size:17px;
  line-height: 30px;
  text-align:center;
  margin:0;
}

::selection {
  background-color:#e08a36;
  color:#fff
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  color: #111;
  text-transform:uppercase;
  margin-bottom: 25px;
  margin-top: 0;
}

h1 {
  font-size: 46px;
  line-height: 46px;
}

h2 {
  margin-top:50px;
  font-size: 36px;
  line-height: 36px;
}

img {
  max-width:100%;
}

.fade {
    visibility: hidden;
}

#impress {
    text-align:left;
}

#impress a {
	color: #fff;
    text-decoration: none;
	font-weight: bold;
}

.button {
  display:block;
  border: solid 1px #656565;
  margin: 10px auto 10px auto;
  padding: 5px;
  color: #656565;
  width:50%;
  font-size: 18px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  text-align:center;
  cursor: pointer;
  text-decoration:none;
  line-height: 30px;
}

.button:hover {
  border: solid 1px #e08a36;
  color: #e08a36;
}

form .button {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: solid 2px #fff;
  padding: 10px;
}

form .button:hover {
  background: rgba(255, 255, 255, 0);
  border: solid 2px #fff;
  color: #fff;
}

.fadeIn {
  animation-name: animat_show;
  animation-duration: 0.8s;
  animation: animat_show 0.8s;
  -webkit-animation: animat_show 0.8s;
  -moz-animation: animat_show 0.8s;
  -o-animation: animat_show 0.8s;

  visibility: visible !important;
}

@keyframes load {
  0% { opacity:0; transform: translate(0, 50px); }
  100% { opacity:1; }
}

@-webkit-keyframes load {
  0% { opacity:0; transform: translate(0, 100px); }
  100% { opacity:1; }
}

@keyframes animat_show {
  0% { opacity:0; transform: translate(0, 100px); }
  100% { opacity:1; }
}

@-webkit-keyframes animat_show {
  0% { opacity:0; transform: translate(0, 100px); }
  100% { opacity:1; }
}

@-moz-keyframes animat_show {
  0% { opacity:0; transform: translate(0, 100px); }
  100% { opacity:1; }
}

@-o-keyframes animat_show {
  0% { opacity:0; transform: translate(0, 100px); }
  100% { opacity:1; }
}

header {
  padding: 5%;
  text-transform:uppercase;
  font-family: 'Oswald', sans-serif;
  text-align: center;
  background-color: #111;
}

.mobile {
	display:none;
}

#logo {
	color:#fff;
	font-size: 28px;
}

#logo span,
h1 span,
a {
  color:#e08a36;
  text-decoration:none;
}

.highlight {
  color:#e08a36;
  font-style:italic;
}

/* Navigation */
header nav {
  display:none;
}

nav ul {
  text-align:right;
  float:right;
  margin:0;
}

nav ul:after {
  content: '';
  display: block;
  clear:both;
}

nav ul li,
nav ul li a {
  display:inline-block;
  font-family: 'Oswald', sans-serif;
  font-size:18px;
  color:#fff;
  text-decoration:none;
}

nav ul li a:hover {
	color:#e08a36;
}

nav ul li {
  padding-left:35px;
}

main {
  overflow:hidden;
}

/* Section areaOne */

.logoImage {
  margin-top:50px;
  border-radius: 75px;
  border: solid 3px #fff;
  display: inline-block;
  overflow: hidden;
  height: 140px;
  width: 140px;
  animation: load 1.2s;
  -webkit-animation: load 1.2s;
}

section#areaOne {
  background: rgba(0, 0, 0, 0.4)) ,url('../img/hero_bg.jpg')  no-repeat center center;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/hero_bg.jpg")  no-repeat center center;
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/hero_bg.jpg")  no-repeat center center;
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/hero_bg.jpg")  no-repeat center center;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4))), url("../img/hero_bg.jpg")  no-repeat center center;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/hero_bg.jpg")  no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  overflow: hidden;
  color: #fff;
  padding-bottom: 50px;
}

.contentWrap {
  padding: 0 15%;
}

.contentArea {
  padding: 20px 0;
}

.quote {
  font-size: 46px;
  font-family: 'Noto Serif', serif;
  font-style: italic;
  line-height: 56px;
}

/* Section areaAbout */

section#areaAbout {
  position:relative;
}

.oneColumn,
.twoColumn {
  margin-top:50px;
  margin-bottom:50px;
}

#areaReference .twoColumn {
  margin-bottom:75px;
}

.separator {
  position:relative;
}

.corner {
  position: absolute;
  bottom: 0;
  border-left: 100vw solid #fff;
  border-top: 3vw solid transparent;
  z-index: 10;
}

.cornerContact {
  border-left: 100vw solid #e08a36;
  border-right:0;
}

.cornerReferenceBg {
  background: url('../img/hero_bg_01.jpg') no-repeat center center;
  height: 55px;
  overflow:hidden;
}

.shoe {
  position: absolute;
  top:80px;
}

.shoe img {
  width:100px;
  height:100px;
  -moz-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.cornerReference {
  border-right: 100vw solid #fff;
  border-left:0;
}

.cornerReferenceTwo {
  border-left: 100vw solid #fff;
  border-right:0;
  bottom: auto;
  top: 0;
  border-top:0;
  border-bottom: 3vw solid transparent;
}

.cornerFooter {
  border-right: 100vw solid #333;
  border-left:0;
}

section article .right img {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.pillar {
  background-color:#e08a36;
  color: #fff;
  font-size: 16px;
  font-family: 'Oswald', sans-serif;
  padding:10px;
  margin: 10px auto;
  text-transform:uppercase;
  text-align:left;
}

/*
.pillar#a {
  width:90%;
}

.pillar#b {
  width:80%;
}

.pillar#c {
  width:60%;
}

.pillar#d {
  width:20%;
}

.pillar#e {
  width:50%;
}

.pillar#f {
  width:90%;
}

.pillar#g {
  width:65%;
}

.pillar#h {
  width:70%;
}

.pillar#i {
  width:60%;
}
*/

.pillar.listing {
  min-width:40%;
  text-align:center;
}

.skills {
  display: flex;  
  flex-flow: row wrap;
}

/* Section areaThree */
section#areaThree,
section#impress {
  background-color:#e08a36;
  color:#fff;
}

section#areaThree h1,
section#areaThree h2,
section#impress h1,
section#impress h2 {
  color:#fff;
}

.contactButton {
  margin-bottom:20px;
}

.contactButton a {
  margin-left:10px;
}

.contactButton a:first-child {
  margin-left:0;
}

form input,
form textarea {
  font-family: helvetica, arial, verdana;
  color:#656565;
  margin-bottom:10px;
  padding: 16px 18px;
  width: calc(100% - 36px);
  border:0;
}
 
form input[type="checkbox"]{
  width: auto;
  margin:0;
  vertical-align: middle;
}

#math_answer {
  width: calc(25% - 36px);
}

section#areaThree label {
  font-size: 14px;
}

section#areaThree label a{
  color:#fff;
  font-weight:bold;
}

::-webkit-input-placeholder { color: #c9c9c9;}
::-moz-placeholder { color: #c9c9c9;}
:-ms-input-placeholder { color: #c9c9c9;}
:-moz-placeholder { color: #c9c9c9;}

footer {
  background-color:#333;
  font-size: 18px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  color: #fff;
  padding: 50px;
  position: relative;
}

footer .subline {
  font-size: 12px;
  line-height: 14px;
}

footer p {
  margin:0
}

footer nav {
  margin-top: 20px;
  font-size: 14px;
}

/* Slideshowstyle*/

#slideshow {
  width:100%;
  height: 100vh;
  max-height:637px;
  list-style-type:none;
  padding:0;
}

#slideshow img {
  max-width:100%;
}

#fssList  {
  list-style-type:none;
  padding:0;
}

/*#readButton {
  display:none;
}*/

/* DESKTOP */
@media screen and (min-width: 1024px) {

  h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
  }

  #impress h2 {
	 margin-top:50px;
  }

	header {
    width: calc(100% - 30%);
    position: fixed;
    background-color:transparent;
    padding: 12px 15%;
	z-index:100;
  }

	.headerBg {
	background: rgba(51,51,51,0.75);
	  animation-name: headerShow;
	  animation-duration: 0.5s;
	  animation: headerShow 0.5s;
	  -webkit-animation: headerShow 0.5s;
	  -moz-animation: headerShow 0.5s;
	  -o-animation: headerShow 0.5s;
	}


@keyframes headerShow {
  0% { background: rgba(51,51,51,0); }
  100% { background: rgba(51,51,51,0.75); }
}


	.mobile {
		display:block;
	}

	#logo {
		float:left;
		font-size:18px;
	}

  .logoImage {
    margin-top:0;
  }

	header nav {
	   display:block;
	}

  footer nav {
	   display:none;
	}

.contentArea {
    padding: 5% 0 8% 0;
}

	section#areaOne {
	  min-height: 100vh;
    background-attachment:fixed;
	}

	section#areaOne article {
	  position: absolute;
	  left: 50%;
	  top: 50%;
	  -webkit-transform: translate(-50%, -50%);
	  transform: translate(-50%, -50%);
	  max-width: 100%;
	}

  section#areaAbout article {

	}

  section article .left {
	  text-align:right;
    float:left;
    width:50%;
	}

  section article .right {
	  text-align:left;
    float:right;
    width:40%;
    margin-left:10%;
	}

  section article .right img {
    width: 75%;
  }

.oneColumn {
  margin-bottom:10%;
}

.twoColumn {
  display:flex;
  align-items:center;
  margin-bottom:10%;
}

#areaReference .twoColumn {
  margin-bottom:15%;
}

.twoColumn:last-child {
  margin-bottom:0;
}

  .twoColumn:after {
    content: '';
    display: block;
    clear:both;
  }

  .pillar {
    font-size: 22px;
	text-align:normal;
  }

  .corner {
    border-top: 3vw solid transparent;
  }

  .cornerReferenceTwo {
    border-top: 0;
    border-bottom: 3vw solid transparent;
}

  .cornerReferenceBg {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    height: 300px;
  }

  .button {
    margin: 25px 0 10px 0;
  }
  
.zoom {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
}
 
.transition {
    -webkit-transform: scale(1.2); 
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}  

  /*#redButton {
    display:block;
    position: absolute;
    left:20px;
    top:20px;
    cursor: pointer;
  }

  #redButton img {
    width:120px;
  }*/

}

.responseMessage {
  color:#656565;
  padding:10px 20px;
  background-color:#fff;
  border: 1px solid #4CAF50;
}

.responseMessage.error {
  border: 1px solid #f44336;
}
