@charset "UTF-8";
/* CSS Document */

/* ----------> ELEMENTS <---------- */

* {
  margin: 0;
  padding: 0;
}

body{
  font-family: 'Noto Sans';
}

a {
  color: #f47b22;
}
p, label{
  font-weight: 400;
  font-size: 1.025em;
  letter-spacing: .01em;
  line-height: 1.8em;
  text-transform: none;
  color: #707070;
}

h1, h3 {
  font-family: 'Futura';
  text-align: center;
  padding: 0px 15px 0px 15px;
}

h2 {
  font-family: 'Noto Sans';
}

h1 {
  font-weight: 700;
  font-size: 5em;
  letter-spacing: -.01em;
  line-height: 1em;
  color: #707070;
}

h1.white {
  color: white;
}

h2 {
  font-weight: 600;
  font-size: 35px;
  letter-spacing: -.01em;
  line-height: 1em;
  text-transform: none;
  color: #525252;
}

h3 {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .15em;
  line-height: 2em;
  text-transform: uppercase;
  color: #A8A8A8;
}

.orange {
  color: #f47b22;
}

img {
  width: 100%;
  height: auto;
}

.imgsize {
    width: 400px !important;
    height: 400px !important;
  }

.flexdirection
{
  flex-direction: row;
}

.center {
  text-align: center;
}

.width50vw {
  width: 50vw;
}

.wrapper {
  padding-top: 1em;
  padding-bottom: 1em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  grid-column: 1/5; /* Incase used in form grid */
}

.awrapper {
  padding: 1em;
  /*! padding-bottom: 1em; */
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  grid-column: 1/5; /* Incase used in form grid */
}

.atitle {
  font-weight: 500;
  font-size: 62px;
  letter-spacing: .04em;
  line-height: 1.2em;
  text-transform: none;
  color: #000;
}

.vwrapper {
  padding-top: 1em;
  padding-bottom: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  grid-column: 1/5; /* Incase used in form grid */
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
}

/* ----------> MAIN <---------- */

.container {
  position: absolute;
  top:0px;
  left:0px;
  max-width: 100%;
}

.spacer {
  width: 100vw;
  height: 8em;
}

.contentcontainer {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  min-height: calc(100vh - 8em);
  padding: 1em;
  max-width: 100%;
  box-sizing: border-box;
}

.contentrowblock {
  display: flex;
  flex-direction: row;
  width: 70vw;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 10em);
  text-align: center;
  margin-top: 5em;
  margin-bottom:5em;
}

.vcontentrowblock {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  min-height: calc(100vh - 10em);
  width: 70vw;
  text-align: center;
  margin-top: 5em;
  margin-bottom:5em;
}

.subcontentcontainer {
  width: 100%;
  /*! height: auto; */
  display: flex;
  flex-direction: column;
  position: relative;
  /*! overflow-x: hidden; */
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.wsubcontentcontainer {
  width: 100%;
  /*! height: auto; */
  display: flex;
  flex-direction: row;
  position: relative;
  /*! overflow-x: hidden; */
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

/* ----------> HEADER <---------- */

.header {
  position: fixed;
  width: 100vw;
  background-color: white;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 8em;
}

.headerlogo {
  width: 16em;
}

.headernavright {
  width: 16em;
  display: flex;
  justify-content: space-around;
  padding: 0em 3em;
}

.headernavleft {
  width: 16em;
  display: flex;
  justify-content: space-around;
  padding: 0em 3em;
}

/* ----------> PARALLAX <---------- */

.parallax__group{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  position: relative;
  place-items: center;
  place-content: center;
}

.parallax-slide{
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  grid-row: 1/4;
  grid-column: 1/4;
}

.image {
  position: relative;
  top:0px;
  left:0px;
  width: 1000px;
  overflow: hidden;
} 

#parallax1 {
  text-align: center;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 2000px;
}

.content-slide {
  grid-column: 1/4;
  grid-row:2/3;
  position: relative;
}

/* ----------> FORM <---------- */

.inputformcontainer {
    width: 50vw;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    /* ----------> The following stretches to fill parent height <---------- */
    position: relative;
    height: 100%;
    align-items: stretch;
}

.inputform {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  padding: 1em;
  box-sizing: border-box;
  max-width: 100%;
}

.inputcontainer {
  width: 100%;
  padding: 1em;
}

#fname, #lname, #email, #password {
    width: 100%;
    width: -moz-available;          /* WebKit-based browsers will ignore this. */
    width: -webkit-fill-available;  /* Mozilla-based browsers will ignore this. */
    width: fill-available;
}

.firstname {
  grid-column: 1/3;
}

.lastname {
  grid-column: 3/5;
}

.formsuccess{
	display: none;
}

.error {
  font-family: inherit;
  border: 1px solid #f47b22;
  background: #fafafa;
  color: #f47b22;
  font-family: sans-serif;
  font-size: .75em;
  padding: 1em 1em;
  height: 3em;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 1em;
  display: none;
}

.email, .password {
  grid-column: 1/5;
}

.criteria {
  width: 50%;
  height: 4em;
  text-align: center;
  font-size: .75em;
  color: #f47b22;
}

.submit {
  grid-column: 2/4;
  justify-self: center;
}

.button {
  font-family: futura;
  font-style: normal;
  text-transform: uppercase;
  color: white;
  border: thin;
  background-color: #f47b22;
  border-color: #f47b22;
  border-style: solid;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  place-self: center;
}

.buttonlight {
  font-family: futura;
  font-style: normal;
  text-transform: uppercase;
  color: #707070;
  border: thin;
  background-color: white;
  border-color: #707070;
  border-style: solid;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  place-self: center;
}

.buttonlarge {
  font-size: 1em;
  font-weight: 700;
  letter-spacing: .26em;
  padding: 2em 3em;
  margin: 0em 1em;
}

.buttonsmall {
  font-size: .75em;
  font-weight: 700;
  letter-spacing: .26em;
  padding: 1.3em 2em;
  margin: 0em 1em;
}

.button:hover {
  border: thin;
  background-color: #f48f22;
  border-color: #f48f22;
  border-style: solid;
}

input[type=text], input[type=number], input[type=email], input[type=password] {
  font-family: inherit;
  border: 1px solid #ccc;
  background: #fafafa;
  color: #000;
  font-family: sans-serif;
  font-size: 1em;
  padding: 2em 1em;
  height: 3em;
  box-sizing: border-box;
  width: 100%;
}

input:invalid {
  box-shadow: none;
}

/* Checkbox */

.checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.checkbox label {
  position: relative;
  cursor: pointer;
  /*! display: none; */
}

.checkbox label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #ccc;
  padding: .6em;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 1em;
  width: 1em;
  height: 1em;
}

.checkbox input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: -2px;
  left: 14px;
  width: .63em;
  height: 1.5em;
  border: solid #f47b22;
  border-width: 0 2px 2px 0;
  transform: rotate(35deg);
}

/* End Checkbox */

/* ----------> MEDIIA <---------- */

@media only screen and (max-width: 750px)
{
  
  h1 {
    font-size: 4em;
  }
  
.inputformcontainer {
  width: 100vw;
  max-width: 100%;
  }
  
 .headernavleft, .headernavright {
    width: 2em;
  }
  
  .header {
      position: fixed;
      width: 100vw;
      background-color: white;
      z-index: 4;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 8em;
      flex-direction: column;
      padding-bottom: 2em;
  }
  
  .contentcontainer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
    min-height: calc(100vh - 8em);
    padding: 1em;
    max-width: 100%;
    box-sizing: border-box;
    top: 20px;
  }
  
  .contentrowblock {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 70vw;
    text-align: center;
    padding-top: 1em;
  }
  
  .vcontentrowblock {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 70vw;
    text-align: center;
    height: 100%;
  }  
  
  .subcontentcontainer {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }
  
  .wsubcontentcontainer {
    width: 100%;
    /*! height: auto; */
    display: flex;
    flex-direction: column;
    position: relative;
    /*! overflow-x: hidden; */
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
  
  .awrapper {
    padding: 1em;
    padding-bottom: 1em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .atitle {
    font-weight: 500;
    font-size: 32px;
    letter-spacing: .04em;
    line-height: 1.2em;
    text-transform: none;
    color: #000;
  }
  
  .imgsize {
    width: 200px !important;
    height: 200px !important;
  }
  
  .flexdirection
  {
    flex-direction: column;
  }
  
}