/*----------------------------------------------*/
/*BASIC SETUP*/
/*----------------------------------------------*/

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  background-color: #ffffff;
  color:#262626;
  font-family: 'Lato','Arial',sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/*
.navbar {
  font-weight:normal;
}*/

.clearfix {zoom:1}
.clearfix::after {
  content: '.';
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}

/*----------------------------------------------*/
/*REUSABLE COMPONENTS*/
/*----------------------------------------------*/

.row {
  max-width: 1140px;
  margin: 0 auto;
}

section {
  padding: 80px 0px;
}

.box {
  padding: 1%;
}

/*
.hero-text-box {
  position: absolute;
  width: 1140px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
}*/

/*----------------------------------------------*/
/*HEADER*/
/*----------------------------------------------*/
/* ORANGE - #e67e22;*/


header {
  background-image: -webkit-gradient(linear,left top, left bottom,from(rgba(0, 0, 0, 0.7)),to(rgba(0, 0, 0, 0.7))),url(img/hero.jpg);
  background-image: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7)),url(../img/hero2.svg);
  height:100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-position: left 0 top 80px;
}

#hero-title {
  text-align: center;
}
.sitebanner {
  font-family: 'Lato', sans-serif;
  font-size: 150px;
  font-weight:  400;
  padding-top: 10%;
  color: #ebebeb;
  -webkit-text-stroke: 3px black;
}

#intro {
  background-color: #ffffff;
  border-radius: 15px;
  padding:10px;
  opacity:0.75;
}
