:root {
  --container-width: 1366px;
  --background-color-primary-light: #f3f3f0;
  --text-color-primary-light: #4497d3;
  --text-color-primary-dark: #323230;
  --text-color-primary: #f3f3f0;
  --font-size-body: 1rem;
  --font-body-light: "Vaud", sans-serif;
  --font-body-bold: "VaudSemiBold", sans-serif;
}

@font-face {
  font-family: "Vaud";
  src: url("/fonts/VaudBook.ttf");
}

@font-face {
  font-family: "VaudSemiBold";
  src: url("/fonts/VaudSemiBold.ttf");
}

@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translate3d(0, -200%, 0);
    transform: translate3d(0, -200%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideDown {
  from {
    -webkit-transform: translate3d(0, -200%, 0);
    transform: translate3d(0, -200%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes round {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes round {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.slide-in-from-left {
  -webkit-animation: 1.5s ease-out 0s 1 slideInFromLeft forwards;
          animation: 1.5s ease-out 0s 1 slideInFromLeft forwards;
}

.slide-in-from-right {
  -webkit-animation: 1.5s ease-out 0s 1 slideInFromRight forwards;
          animation: 1.5s ease-out 0s 1 slideInFromRight forwards;
}

@-webkit-keyframes slideInFromLeft {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInFromLeft {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes slideInFromRight {
  0% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  0% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  background-color: var(--background-color-primary-light);
  padding: 0 20px;
}

body #content {
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
}

p, a {
  font-family: var(--font-body-light);
}

span.font-stroke {
  color: var(--text-color-primary-light);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--text-color-primary-dark);
}

a.button {
  color: var(--text-color-primary);
  text-transform: uppercase;
  padding: 10px 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

div.container-round {
  padding: 20px;
  border: 3px solid var(--text-color-primary-light);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  position: fixed;
  top: 50px;
  right: 100px;
}

div.container-round div.round {
  -webkit-animation: round 5s infinite linear;
          animation: round 5s infinite linear;
}

.meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 70px;
}

.meta span {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.meta span:first-child {
  text-transform: uppercase;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--text-color-primary-light);
          text-decoration-color: var(--text-color-primary-light);
  text-decoration-thickness: 2px;
}

div.cube-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

div.cube-container div.cube {
  height: 50px;
  width: 25px;
  background-color: var(--text-color-primary-light);
}

@media screen and (min-width: 640px) {
  div.cube-container div.cube {
    height: 300px;
    width: 50px;
  }
}

header.header {
  padding: 30px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
}

header.header div.header__logo img.header__logo-image {
  width: 250px;
}

header.header nav.nav-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

header.header nav.nav-header li.nav-header__item {
  list-style: none;
  margin: 20px;
}

header.header nav.nav-header li.nav-header__item a.nav-header__item-link {
  color: var(--text-color-primary-dark);
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: var(--text-color-primary);
  z-index: 100;
}

section.hero-banner {
  margin-bottom: 6rem;
}

section.hero-banner div.image-container {
  position: relative;
}

section.hero-banner div.image-container img.hero-banner__image {
  width: 100%;
}

section.hero-banner div.image-container div.clip {
  width: 50px;
  height: 50px;
  border: 2px solid var(--text-color-primary-light);
  position: absolute;
  bottom: 0;
  left: 20%;
}

section.project {
  margin: 100px 0;
}

section.project p.project__description {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (min-width: 600px) {
  section.project p.project__description {
    font-size: 50px;
  }
}

section.project a.button {
  margin-top: 40px;
  position: relative;
}

section.restauration {
  margin: 20px 0px;
}

@media screen and (min-width: 640px) {
  section.restauration div.restauration__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

section.restauration div.restauration__content div.restauration__description {
  padding-right: 20px;
}

@media screen and (min-width: 640px) {
  section.restauration div.restauration__content div.restauration__description {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}

section.restauration div.restauration__content div.restauration__description h2.restauration__title {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: bold;
}

@media screen and (min-width: 640px) {
  section.restauration div.restauration__content div.restauration__description h2.restauration__title {
    font-size: 50px;
  }
}

section.restauration div.restauration__content div.restauration__description h2.restauration__title span.text-decoration {
  display: table;
  padding: 10px 30px;
  background-color: var(--text-color-primary-light);
  color: var(--text-color-primary);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--text-color-primary-dark);
  -webkit-clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 100% 50%, 80% 100%, 20% 100%, 0 49%, 0 50%);
          clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 100% 50%, 80% 100%, 20% 100%, 0 49%, 0 50%);
}

section.restauration div.restauration__content div.restauration__description p.restauration__paragraph {
  margin: 20px 0;
  font-size: 1.4rem;
}

@media screen and (min-width: 600px) {
  section.restauration div.restauration__content div.restauration__image {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}

section.restauration div.restauration__content div.restauration__image img {
  width: 100%;
  max-width: 100%;
}

.polygon .outer {
  position: relative;
  display: inline-block;
  -webkit-clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 100% 50%, 80% 100%, 20% 100%, 0 49%, 0 50%);
          clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 100% 50%, 80% 100%, 20% 100%, 0 49%, 0 50%);
  background: var(--text-color-primary-light);
  text-align: center;
  font-size: 16px;
  padding: 5px 50px;
  border-radius: 20px;
}
/*# sourceMappingURL=styles.css.map */