/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Fira Sans", sans-serif;
  color: #333; 
}

a {
  text-decoration: none;
}

.full {
  background-image: url("img/background.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 100%;
}

.container {
  width: 100%;
}

.wrapper {
  text-align: center;
  color: #fff;
  height: 100vh;
}

.vertical-align {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.cd-title {
  position: relative;
  height: 160px;
  line-height: 230px;
  text-align: center; 
}
.cd-title h1 {
  font-size: 2.4rem;
  font-weight: 700;
}

@media only screen and (min-width: 768px) {
  .cd-title {
    line-height: 250px;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-title {
    height: 200px;
    line-height: 300px;
  }
  .cd-title h1 {
    font-size: 3rem;
  }
}

.cd-intro {
  width: 90%;
  max-width: 768px;
  text-align: center;
}

.cd-intro {
  margin: 2em auto;
}

@media only screen and (min-width: 768px) {
  .cd-intro {
    margin: 2em auto;
  }

  .light-fira {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-intro {
    margin: 2em auto;
  }
}


.logo img {
  max-width: 100%;
}

.info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    text-align: left;
    flex: 1 100%; 
}

a.anchor-mail {
    color: #333;
}  

.left {
    order: 1;
    margin: auto;
    padding: 0 0 50px 0;
} 
 
.center {
    order: 2;
    margin: auto;
    padding: 0 0 50px 0;
}


.right {
    order: 3;
}

@media only screen and (max-width: 320px) {
   .left {
    margin: 0;
  } 
  
  .center {
    margin: 0;
  }
}

.light-fira {
  font-weight: 300;
  color: #212121;
  font-size: 8vw;
}

.dark {
  color: #212121;
}