body {
  background-color: #fff;
  background-position:center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  font-family: 'Roboto', sans-serif;
  color: #3E3E3E;
}

* {
  box-sizing: border-box;
  margin:0; /* reset for typo */
  padding:0; /* reset for typo */
}


/**LAYOUT**/
.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 0 15px;
}

.header{
  position:relative;
  width:100%;
  top: 0%;
  overflow:hidden;
  background-color: #fff;
}

.content {
  padding-top: 5vw;
}

/* For devices smaller than 768px: */
[class*="col-"] {
  width: 100%;
}

/* For devices 400px and larger: */
@media only screen and (min-width: 768px) {
  .row, .header{
    padding: 0 18%;
  }

  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}

}


/**TYPO, BG, COLORS**/

/* unvisited link */
a.download {
  color:#3639A4;
  text-align: center;
  display:inline-block;
  width:auto;
  padding: .6vw 1.2vw;
  border: solid 1px #3639A4;
  text-decoration: none;
}

a:link {
  color:#3639A4;
}

/* visited link */
a:visited {
  color:#3639A4;
  border-color: #3639A4;
  }

/* mouse over link */
a:hover {
  color:#0a0d6a;
  border-color: #0a0d6a;
}

/* selected link */
a.download:active {
  color:#FFF;
  background-color: #3639A4;
  border-color: #3639A4;
  text-decoration: none;
}

a.download:hover {
  color:#FFF;
  background-color: #3639A4;
  border-color: #3639A4;
  text-decoration: none;
}

/* selected link */
a:active {
  color:#F87457;
  border-color: #F87457;
}


.copy img {
  max-width: 100%;
  height: auto;
}

/* For devices smaller than 768px: */
body {
  background-image: url("../assets/bg-800.png");
  padding:0 2vw;
}

.footer p {
  padding:4vw 2vw;
}

h1 {
  font-size:8vw;
}

p, ul, li, h2 {
  font-size:4vw;
  line-height: 7vw;
}

h2 {
  font-size:6vw;
  line-height: 10vw;
  padding-bottom:6vw;

}

p {
  padding-bottom:3.5vw;
}

/* For devices 400px and larger: */
@media only screen and (min-width: 768px) {
  body {
    background-image: url("../assets/bg.png");
    padding:0;
  }

  .footer p{
    padding:0;
  }

  h1 {
    font-size:2.4vw;
  }

  p, ul, li, h2 {
    font-size:1.2vw;
    line-height: 2vw;
  }

  h2 {
    font-size:1.4vw;
    line-height: 2.2vw;
    padding-bottom:1.6vw;
      font-weight: regular;
  }

  p {
    padding-bottom:1.6vw;
  }

}

/**HEADER**/
.header h1{
  display: inline-block;
  float:left;
  text-align:left;
  font-family: 'Astloch', cursive;
  margin-left: 15px;
  margin-top:15px;
  color: #3639A4;
  letter-spacing: 0.2vw;
}

.header a{
  display: inline-block;
  float:right;
  text-align:right;
  margin-right: 15px;
  margin-top:15px;
}
