@charset "UTF-8";
/* =====  1 Global Rules & Definitions  ===================================== */
/* -----  1.1 Font Definitions  --------------------------------------------- */
@font-face {
  font-family: "Avenir";
  src: url(../fonts/Avenir-Light.woff2) format("woff2"), url(../fonts/Avenir-Light.woff) format("woff");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Avenir";
  src: url(../fonts/Avenir-Book.woff2) format("woff2");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Avenir";
  src: url(../fonts/Avenir-Regular.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Avenir";
  src: url(../fonts/Avenir-Medium.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Avenir";
  src: url(../fonts/Avenir-Heavy.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Avenir";
  src: url(../fonts/Avenir-Bold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Merriweather";
  src: url(../fonts/merriweather-regular.woff2) format("woff2"), url(../fonts/merriweather-regular.woff) format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Merriweather";
  src: url(../fonts/merriweather-bold.woff2) format("woff2"), url(../fonts/merriweather-bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}
/* -----  1.2 Reset & Normalization  ---------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
  list-style: none;
  font-size: 62.5%;
}

article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section, summary {
  /* Add correct display for IE 9- and some newer browsers */
  display: block;
}

::-webkit-scrollbar {
  display: none;
}

/* -----  1.3 General Typography  ------------------------------------------- */
h1, h2, h3, h4, h5, h6,
p, ul, ol, figure, pre {
  /* Reset font-sizes and normalize margins */
  font-size: 1.6rem;
  line-height: inherit;
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-font-smoothing: antialiased;
}

/* Headings */
h1, h2, h3 {
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  color: #2F2F2F;
}

h1 {
  font-size: 4.8rem;
  font-weight: 500;
}

h2 {
  font-size: 3.7rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.8rem;
}

p {
  font-size: 1.6rem;
  line-height: 2.5rem;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  font-weight: 400;
}

li {
  font-size: 1.6rem;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
}

/* Links */
a {
  color: inherit;
  font-size: 1.6rem;
  text-decoration: none;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  font-weight: 500;
}

a:hover, a:focus, a:active {
  color: #023E55;
}

i, em {
  /* Vesper Libre does not have Italics,
     so we use a the *medium* weight instead */
  font-weight: 500;
  font-style: normal;
}

b, strong {
  font-weight: 700;
  font-size: 1.6rem;
}

/* -----  1.4 Images & Figures  --------------------------------------------- */
img {
  border-style: none;
  height: auto;
  width: 100%;
  vertical-align: top;
}

figcaption {
  font-size: 0.75rem;
  line-height: 1.5rem;
}

/* =====  2 Layout Helpers & Reusable Components  =========================== */
/* The Clearfix™: A classic … */
/* -----  2.1 Kirbytext  ---------------------------------------------------- */
.text p:not(:last-child) {
  margin-bottom: 2rem;
}

/* -----  2.2 Button  ------------------------------------------------------- */
/* -----  2.3 Grid & Layout  ------------------------------------------------ */
/* -----  2.4 Pagination  --------------------------------------------------- */
.pagination {
  margin-top: 3.2rem;
}

.pagination-item {
  position: relative;
  width: 3rem;
  height: 3rem;
  border-radius: 0.4rem;
  background: #023E55;
  border-bottom: 0;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-item:hover,
.pagination-item:focus {
  background: #FFF;
}

.pagination-item:hover:not(.is-inactive) path,
.pagination-item:focus:not(.is-inactive) path {
  color: #023E55;
  fill: #023E55;
}

.pagination-item:active {
  background: #FFF;
}

.pagination-item.left {
  float: left;
}

.pagination-item.right {
  float: right;
}

.pagination-item svg {
  position: relative;
  display: block;
  width: 2rem;
}

.pagination-item path {
  fill: #FFF;
}

.pagination-item.is-inactive {
  color: #023E55;
  border: 2px solid #FFF;
  background: transparent;
  opacity: 0.5;
}

@media all and (min-width: 75em) {
  .pagination-item {
    position: fixed;
    top: 50%;
  }

  .pagination-item.left {
    float: none;
    left: 2.25rem;
  }

  .pagination-item.right {
    float: none;
    right: 2.25rem;
  }
}
@media all and (pointer: coarse) {
  .pagination-item {
    /* On touch-devices we increase prev/next buttons */
    width: 2.25rem;
    height: 2.25rem;
  }
}
/* ----- 2.5 Projects Showcase ---------------------------------------------- */
/* =====  3 Site Layout  ==================================================== */
body {
  counter-reset: counter;
}

/* ----- 3.1  Header  ------------------------------------------------------- */
/*text-align: center;*/
/*font-family: Montserrat, Helvetica, Arial, sans-serif;*/
/*font-weight: 700;*/
/*font-size: 1.5rem;*/
/*line-height: 1.95rem;*/
/*margin-bottom: .45rem;*/
/*border-bottom: 0;*/
@media all and (min-width: 56em) {
  .header {
    /*padding-top: 3rem;*/
    /*padding-bottom: 1.5rem;*/
  }

  .branding {
    /*line-height: 3rem;*/
    /*margin-bottom: 0;*/
    /*white-space: nowrap;*/
    /*text-align: left;*/
  }

  .branding,
.navigation {
    /*vertical-align: baseline;*/
    /*width: 50%;*/
  }
}
/* -----  3.2 Menu  --------------------------------------------------------- */
.menu {
  /*text-align: center;*/
  /*font-weight: 500;*/
}

.menu-item:not(:last-child)::after {
  /*content: "⁄";*/
  /*display: inline-block;*/
  /*font-size: .75em;*/
  /*padding: 0 .2em;*/
  /*color: #a8a5be;*/
}

.menu-item a {
  /*border-bottom: 0;*/
}

.menu-item.is-active a {
  /*border-bottom: 2px solid #71efac;*/
}

@media all and (min-width: 56em) {
  .menu {
    /*text-align: right;*/
  }
}
/* -----  3.3 Sticky Footer  ------------------------------------------------ */
.footer .heart {
  /* The heart character of Arial Unicode MS looks just
     surprisingly nice … */
}

/* -----  3.4 Main Content  ------------------------------------------------- */
.main {
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 9rem;
  padding-top: 9rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media only screen and (min-width: 768px) {
  .main {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
/* =====  4 Template-specific Components ==================================== */
/* -----  4.1 Homepage  ----------------------------------------------------- */
/* ----- 4.2 Blog Article  -------------------------------------------------- */
.article-title {
  font-weight: 700;
  margin-bottom: 0;
}

.article-title a {
  border-bottom: 0;
}

.article-date {
  text-align: center;
}

.article:last-of-type + hr {
  /* Hide last <hr> on blog page */
  display: none;
}

.article-more {
  font-size: 75%;
  text-transform: uppercase;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  letter-spacing: 0.025em;
  white-space: nowrap;
  border-bottom: 2px solid #71efac;
}

/* -----  4.3 Team  --------------------------------------------------------- */
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 1.6rem/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.2857142857em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.8571428571em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-feed:before,
.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-sticky-note-o:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-hourglass-o:before {
  content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "";
}

.fa-hand-scissors-o:before {
  content: "";
}

.fa-hand-lizard-o:before {
  content: "";
}

.fa-hand-spock-o:before {
  content: "";
}

.fa-hand-pointer-o:before {
  content: "";
}

.fa-hand-peace-o:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-tv:before,
.fa-television:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-500px:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-calendar-plus-o:before {
  content: "";
}

.fa-calendar-minus-o:before {
  content: "";
}

.fa-calendar-times-o:before {
  content: "";
}

.fa-calendar-check-o:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-map-o:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-commenting:before {
  content: "";
}

.fa-commenting-o:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-credit-card-alt:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-pause-circle-o:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stop-circle-o:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-wheelchair-alt:before {
  content: "";
}

.fa-question-circle-o:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-volume-control-phone:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "";
}

.fa-handshake-o:before {
  content: "";
}

.fa-envelope-open:before {
  content: "";
}

.fa-envelope-open-o:before {
  content: "";
}

.fa-linode:before {
  content: "";
}

.fa-address-book:before {
  content: "";
}

.fa-address-book-o:before {
  content: "";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-circle-o:before {
  content: "";
}

.fa-user-o:before {
  content: "";
}

.fa-id-badge:before {
  content: "";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

.fa-free-code-camp:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-eercast:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-snowflake-o:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.mystory-section {
  background-color: #EEE;
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%;
}

.mystory-section .mystory-container {
  padding: 6rem 2rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  max-width: 110rem;
}

@media only screen and (min-width: 768px) {
  .mystory-section .mystory-container {
    padding: 6rem 12rem;
  }
}
.mystory-section .mystory-container > *:not(:last-child) {
  margin-bottom: 3.2rem;
}

.mystory-section h3 {
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
}

.mystory-section h3:before {
  content: "";
  height: 0.1rem;
  width: 6rem;
  background-color: #2F2F2F;
  position: absolute;
  display: block;
  left: -7rem;
  top: 0.8rem;
}

.mystory-section h2 {
  font-family: "Merriweather", serif;
}

.mystory-section .btn {
  margin-right: 2rem;
}

.projects-section {
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  padding: 9rem 0;
  overflow: hidden;
}

.projects-section .projects-title {
  max-width: 110rem;
  margin: 0 auto;
  margin-bottom: 3.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

@media only screen and (min-width: 768px) {
  .projects-section .projects-title {
    padding: 0 6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .projects-section .projects-title {
    padding: 0;
  }
}
.projects-section .projects-title h2 {
  max-width: 200px;
  font-family: "Merriweather", serif;
}

.projects-section .wrap.wide {
  max-width: 110rem;
  margin: 0 auto;
  padding: 0 2rem;
}

@media only screen and (min-width: 768px) {
  .projects-section .wrap.wide {
    padding: 0 6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .projects-section .wrap.wide {
    padding: 0;
  }
}
.projects-section .swiper-slide .image {
  width: 75%;
}

@media only screen and (min-width: 768px) {
  .projects-section .swiper-slide .image {
    width: 45%;
  }
}
.projects-section .swiper-slide .description {
  text-align: left;
  position: absolute;
  padding-right: 2rem;
  bottom: 20%;
  left: 0;
}

@media only screen and (min-width: 768px) {
  .projects-section .swiper-slide .description {
    top: 50%;
  }
}
.projects-section .swiper-slide .description p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-width: 350px;
}

.projects-section .swiper-slide .link {
  margin-top: 2rem;
}

.projects-section-more {
  max-width: 110rem;
  margin: 0 auto;
  margin-top: 3.2rem;
  padding: 0 2rem;
}

@media only screen and (min-width: 992px) {
  .projects-section-more {
    padding: 0;
  }
}
.swiper-container-pointer-events {
  touch-action: pan-y;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100%;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-button-next, .swiper-button-prev {
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next .fa, .swiper-button-prev .fa {
  font-size: 3rem;
  display: flex;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.5;
}

.skills-section {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .skills-section {
    flex-direction: row;
    padding: 9rem 0;
  }
}
.skills-section .skill-container {
  padding: 9rem 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  max-width: 110rem;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .skills-section .skill-container {
    width: 50%;
    padding: 0 12rem;
  }
}
@media only screen and (min-width: 768px) {
  .skills-section .skill-container:nth-child(even) {
    margin-top: 25vh;
  }
}
.skills-section .skill-container:nth-child(even):after {
  top: auto;
  bottom: 10rem;
  left: 5rem;
  transform: rotate(90deg);
}

.skills-section .skill-container:after {
  content: "";
  display: block;
  width: 15rem;
  height: 20rem;
  background: #023E55;
  opacity: 0.5;
  position: absolute;
  top: 10rem;
  right: 2rem;
}

.skills-section .skill-container > *:not(:last-child) {
  margin-bottom: 3.2rem;
}

.skills-section h2 {
  font-family: "Merriweather", serif;
  width: 50%;
  position: relative;
}

.skills-section h2:before {
  content: "";
  height: 0.1rem;
  width: 6rem;
  background-color: #2F2F2F;
  position: absolute;
  display: block;
  left: -7rem;
  top: 2rem;
}

.skills-section h2:after {
  font-family: "Merriweather", serif;
  font-size: 1.4rem;
  counter-increment: counter;
  content: "0" counter(counter);
  position: absolute;
  display: block;
  left: -9rem;
  top: 1.2rem;
}

.skills-section .btn {
  margin-right: 2rem;
  align-self: flex-start;
}

.animate-entry {
  opacity: 0;
  transform: translate(0, 10vh);
  transition: all 1s;
}

.animate-entry.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.btn {
  color: #2F2F2F;
  text-decoration: underline;
  display: inline-block;
}

.btn:hover {
  opacity: 0.5;
}

.btn input {
  color: inherit;
  font-size: 1.6rem;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  font-weight: 500;
  background: none;
  text-decoration: underline;
}

.btn input:hover, .btn input:focus, .btn input:active {
  color: #023E55;
  opacity: 0.5;
  cursor: pointer;
}

form {
  margin-top: 45px;
  background-color: #FFF;
}

.wrap-input {
  font-family: "Merriweather", serif;
  width: 100%;
  position: relative;
  border-bottom: 0.1rem solid #191a1e26;
  margin-bottom: 40px;
}

.label-input {
  font-size: 1.8rem;
  color: #999999;
  line-height: 1.5;
  padding-left: 5px;
  pointer-events: none;
}

input.input {
  height: 40px;
}

textarea.input {
  height: 80px;
  padding-top: 9px;
  padding-bottom: 13px;
  max-width: 100%;
  min-width: 100%;
  min-height: 80px;
}

.input {
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  display: block;
  width: 100%;
  background: transparent;
  font-size: 1.6rem;
  color: #555555;
  line-height: 1.2;
  padding: 0 5px;
}

textarea, input {
  outline: none;
  border: none;
  overflow: visible;
}

.focus-input {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  background: #023E55;
}

.input:focus + .focus-input::before {
  width: 100%;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

/* Chrome <=56, Safari < 10 */
:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

/* FF 4-18 */
::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

/* FF 19-51 */
:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

/* IE 10+ */
::placeholder {
  opacity: 1;
  transition: opacity 0.2s;
}

/* Modern Browsers */
*:focus::-webkit-input-placeholder {
  opacity: 0;
}

/* Chrome <=56, Safari < 10 */
*:focus:-moz-placeholder {
  opacity: 0;
}

/* FF 4-18 */
*:focus::-moz-placeholder {
  opacity: 0;
}

/* FF 19-50 */
*:focus:-ms-input-placeholder {
  opacity: 0;
}

/* IE 10+ */
*:focus::placeholder {
  opacity: 0;
}

.footer {
  background: #EEE;
  display: flex;
  justify-content: space-between;
  padding: 3rem;
}

.footer .navigation {
  align-items: center;
  display: flex;
  justify-content: center;
}

.footer .navigation .menu {
  display: flex;
}

.footer .navigation .menu-item {
  margin-right: 3rem;
}

.footer .navigation .menu-item:last-child {
  margin-right: 0;
}

.footer-copyright {
  color: #2F2F2F;
  font-size: 1.1rem;
  letter-spacing: 0.2rem;
  padding: 1.6rem;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.5;
}

.footer-copyright a {
  font-size: 1.1rem;
}

.projects .showcase.grid, .portfolios .showcase.grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media only screen and (min-width: 768px) {
  .projects .showcase.grid, .portfolios .showcase.grid {
    margin: 0 auto;
    max-width: 110rem;
    padding-bottom: 12rem;
  }
}
.projects .showcase-item.column, .portfolios .showcase-item.column {
  margin-bottom: 2rem;
  position: relative;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .projects .showcase-item.column, .portfolios .showcase-item.column {
    width: calc(33.33% - 15px);
    margin-bottom: 3rem;
  }
}
.projects .showcase-item.column:not(.projects), .portfolios .showcase-item.column:not(.projects) {
  overflow: hidden;
}

.projects .showcase-item.column:not(.projects) .showcase-image, .portfolios .showcase-item.column:not(.projects) .showcase-image {
  transform: scale(1.1);
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

@media only screen and (min-width: 768px) {
  .projects .showcase-item.column:hover .showcase-image, .portfolios .showcase-item.column:hover .showcase-image {
    transform: scale(1);
  }

  .projects .showcase-item.column:hover .showcase-caption, .portfolios .showcase-item.column:hover .showcase-caption {
    opacity: 1;
    left: 3rem;
  }
}
.projects .showcase-caption, .portfolios .showcase-caption {
  bottom: 2rem;
  position: absolute;
  left: 2rem;
}

@media only screen and (min-width: 768px) {
  .projects .showcase-caption, .portfolios .showcase-caption {
    bottom: 3rem;
    opacity: 0;
    left: 0;
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    -ms-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
  }
}
.projects .showcase-caption h3, .portfolios .showcase-caption h3 {
  color: #FFF;
  text-transform: uppercase;
}

.branding {
  height: 3rem;
  z-index: 10;
}

@media only screen and (min-width: 768px) {
  .branding {
    left: 50%;
    margin: 0 auto;
    position: absolute;
    transform: translateX(-50%);
  }
}
.branding .logo {
  display: inline-block;
}

.branding img {
  width: auto;
  height: 3rem;
}

.stop-scrolling {
  height: 100vh;
  position: fixed;
  overflow: hidden;
  width: 100vw;
}

.header-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: hidden;
  padding: 2rem;
  position: relative;
  width: 100%;
  z-index: 15;
}

@media only screen and (min-width: 768px) {
  .header-container {
    padding: 3rem;
  }
}
.photos {
  line-height: 0;
  -webkit-column-count: 1;
  -webkit-column-gap: 1rem;
  -moz-column-count: 1;
  -moz-column-gap: 1rem;
  column-count: 1;
  column-gap: 6rem;
}

.photos img {
  height: auto !important;
  margin-bottom: 2rem;
  width: 100% !important;
}

@media only screen and (min-width: 768px) {
  .photos img {
    margin-bottom: 6rem;
  }
}
@media only screen and (min-width: 768px) {
  .photos {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
  }
}
.photos .image {
  cursor: pointer;
}

#lightbox {
  background: rgba(0, 0, 30, 0.7);
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  user-select: none;
  width: 100vw;
  z-index: 100;
}

#lightbox img {
  left: 50%;
  height: calc(100% - 10.2rem);
  width: calc(100% - 10.2rem);
  max-width: 110rem;
  object-fit: contain;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

#lightbox span {
  cursor: pointer;
  font-size: 2.4rem;
  padding: 2rem;
  position: absolute;
  text-align: center;
  z-index: 110;
  color: #FFF;
}

#lightbox .prev {
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

#lightbox .prev:after {
  content: "";
  font-family: "FontAwesome";
}

#lightbox .next {
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}

#lightbox .next:after {
  content: "";
  font-family: "FontAwesome";
}

#lightbox .close {
  top: 0;
  right: 0;
}

.menu-toggle {
  cursor: pointer;
  height: 16px;
  opacity: 0.5;
  overflow: hidden;
  position: relative;
  transition: opacity 0.25s ease;
  width: 20px;
  z-index: 9;
}

@media only screen and (min-width: 768px) {
  .menu-toggle:hover {
    opacity: 1;
  }

  .menu-toggle:hover:not(.open) span:nth-of-type(3) {
    width: 30%;
  }

  .menu-toggle:hover span:nth-of-type(2) {
    left: -10px;
    width: 50%;
  }
}
.menu-toggle.open .top {
  background: #023E55;
  transform: translateY(7px) translateX(0) rotate(45deg);
}

.menu-toggle.open .middle {
  opacity: 0;
}

.menu-toggle.open .bottom {
  background: #023E55;
  transform: translateY(-5px) translateX(0) rotate(-45deg);
}

.menu-toggle span {
  cursor: pointer;
  background: #023E55;
  border: none;
  height: 2px;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.35s ease;
  width: 20px;
}

.menu-toggle span:nth-of-type(2) {
  top: 6px;
}

.menu-toggle span:nth-of-type(3) {
  top: 12px;
}

.header-navigation, .footer-navigation {
  display: none;
}

@media only screen and (min-width: 768px) {
  .header-navigation, .footer-navigation {
    display: flex;
  }
}
.header-navigation ul.menu, .footer-navigation ul.menu {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: normal;
}

.header-navigation .menu-item, .footer-navigation .menu-item {
  opacity: 0.5;
}

.header-navigation .menu-item.is-active, .footer-navigation .menu-item.is-active {
  opacity: 1;
}

.header-navigation .menu-item a, .footer-navigation .menu-item a {
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.header-navigation .menu-item:not(:last-child), .footer-navigation .menu-item:not(:last-child) {
  margin-right: 4rem;
}

.fullscreen-navigation {
  visibility: hidden;
}

.fullscreen-navigation .menu-wrap {
  align-items: center;
  background-color: #EEE;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  transition: all 0.4s ease;
  width: 100%;
  z-index: 9;
}

@media only screen and (min-width: 768px) {
  .fullscreen-navigation .menu-wrap {
    height: 100%;
    width: 50%;
  }
}
.fullscreen-navigation .menu-wrap.mw1 {
  height: 80%;
  transform: translateY(-100%);
}

@media only screen and (min-width: 768px) {
  .fullscreen-navigation .menu-wrap.mw1 {
    height: 100%;
    transform: translateX(-100%);
  }
}
.fullscreen-navigation .menu-wrap.mw2 {
  height: 20%;
  transform: translateY(500%);
}

@media only screen and (min-width: 768px) {
  .fullscreen-navigation .menu-wrap.mw2 {
    height: 100%;
    transform: translateX(200%);
  }
}
.fullscreen-navigation.site-nav--open {
  overflow: hidden;
  visibility: visible;
}

.fullscreen-navigation.site-nav--open .mw1 {
  transform: translateY(0);
}

@media only screen and (min-width: 768px) {
  .fullscreen-navigation.site-nav--open .mw1 {
    transform: translateX(0);
  }
}
.fullscreen-navigation.site-nav--open .mw2 {
  transform: translateY(400%);
}

@media only screen and (min-width: 768px) {
  .fullscreen-navigation.site-nav--open .mw2 {
    transform: translateX(100%);
  }
}
.fullscreen-navigation .menu-item:not(:last-child) {
  margin-bottom: 2rem;
}

@media only screen and (min-width: 768px) {
  .fullscreen-navigation .menu-item:not(:last-child) {
    margin-bottom: 5rem;
  }
}
.fullscreen-navigation .menu-item.is-active a {
  font-weight: 700;
}

.fullscreen-navigation .menu-item a {
  font-family: "Merriweather", serif;
  font-size: 3rem;
}

@media only screen and (min-width: 768px) {
  .fullscreen-navigation .menu-item a {
    font-size: 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .fullscreen-navigation .menu-item a {
    font-size: 7rem;
  }
}
@media only screen and (min-width: 1500px) {
  .fullscreen-navigation .menu-item a {
    font-size: 10rem;
  }
}
.fullscreen-navigation .contact-menu {
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .fullscreen-navigation .contact-menu {
    text-align: left;
  }
}
.fullscreen-navigation .contact-menu-item {
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .fullscreen-navigation .contact-menu-item:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .fullscreen-navigation .contact-menu-item:not(:last-child) {
    margin-bottom: 10rem;
  }
}
.fullscreen-navigation .contact-menu-item-title {
  display: none;
}

@media only screen and (min-width: 768px) {
  .fullscreen-navigation .contact-menu-item-title {
    display: block;
    font-family: "Merriweather", serif;
    font-size: 3rem;
    line-height: 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .fullscreen-navigation .contact-menu-item-title {
    font-size: 5rem;
    line-height: 9rem;
  }
}
.fullscreen-navigation .contact-menu-item a {
  font-size: 1.6rem;
  line-height: 4rem;
  font-weight: 500;
}

@media only screen and (min-width: 1200px) {
  .fullscreen-navigation .contact-menu-item a {
    font-size: 2rem;
    line-height: 6rem;
  }
}
.fullscreen-navigation li {
  opacity: 0;
  transition: opacity 350ms linear;
}

.site-nav--open li {
  animation: fadeIn cubic-bezier(0.34, 0.05, 0.52, 1) 750ms forwards;
}

.site-nav--open li:nth-child(1) {
  animation-delay: 50ms;
}

.site-nav--open li:nth-child(2) {
  animation-delay: 100ms;
}

.site-nav--open li:nth-child(3) {
  animation-delay: 150ms;
}

.site-nav--open li:nth-child(4) {
  animation-delay: 200ms;
}

.site-nav--open li:nth-child(5) {
  animation-delay: 250ms;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateX(-200px);
  }
  75% {
    opacity: 0.2;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  70% {
    opactiy: 0;
  }
  100% {
    opacity: 0;
    transform: translateX(-200px);
  }
}
.site-nav--closed li {
  animation: fadeOut cubic-bezier(0.34, 0.05, 0.52, 1) 250ms forwards;
  opacity: 1;
}

.site-nav--closed li:nth-child(1) {
  animation-delay: 50ms;
}

.site-nav--closed li:nth-child(2) {
  animation-delay: 100ms;
}

.site-nav--closed li:nth-child(3) {
  animation-delay: 150ms;
}

.site-nav--closed li:nth-child(4) {
  animation-delay: 200ms;
}

.site-nav--closed li:nth-child(5) {
  animation-delay: 250ms;
}

header.pagetitle {
  padding-bottom: 6rem;
}

@media only screen and (min-width: 768px) {
  header.pagetitle {
    margin: 0 auto;
    max-width: 110rem;
    padding-bottom: 12rem;
  }
}
header.pagetitle h1 {
  font-family: "Merriweather", serif;
  font-size: 6rem;
  font-weight: 700;
  max-width: 45rem;
}

header.pagetitle .intro.text {
  margin-top: 3rem;
  margin-left: auto;
}

@media only screen and (min-width: 768px) {
  header.pagetitle .intro.text {
    max-width: 50%;
  }
}
.home > .socials-container {
  margin: 0 auto;
  max-width: 1400px;
  padding-left: 3rem;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .home > .socials-container {
    padding-left: 2rem;
  }
}
.socials {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 75%;
  transform: translateX(-50%) translateY(0%) rotate(-90deg);
  width: 190px;
  z-index: 1;
}

@media only screen and (min-width: 768px) {
  .socials {
    position: fixed;
    top: 50%;
    transform: translateX(calc(-50% + .55rem)) translateY(-50%) rotate(-90deg);
    width: 200px;
  }
}
.socials a {
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  opacity: 0.5;
  text-transform: uppercase;
}

footer .socials {
  position: revert;
  transform: none;
}

.about .intro-image-section {
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .about .intro-image-section {
    flex-direction: row;
    margin: 0 auto;
    max-width: 110rem;
    padding-bottom: 12rem;
  }
}
.about .intro-image-container {
  display: flex;
  align-items: center;
  padding-bottom: 9rem;
}

.about .intro-image-container img {
  width: 75%;
}

.about .intro-image-container.left {
  position: relative;
  margin-bottom: 2rem;
}

@media only screen and (min-width: 768px) {
  .about .intro-image-container.left {
    margin-bottom: 0;
  }
}
.about .intro-image-container.left:after {
  background: #023E55;
  bottom: 0;
  content: "";
  display: block;
  height: 15rem;
  right: 0;
  opacity: 0.5;
  position: absolute;
  width: 15.5rem;
}

@media only screen and (min-width: 768px) {
  .about .intro-image-container.left:after {
    height: 20rem;
    width: 20.5rem;
  }
}
.about .intro-image-container.right {
  justify-content: flex-end;
}

.about-section {
  padding: 9rem 0;
}

.about-section .about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .about-section .about-container {
    flex-direction: row;
  }
}
.about-section .about-image {
  padding: 0;
  max-width: 100%;
  margin-bottom: 9rem;
}

@media only screen and (min-width: 768px) {
  .about-section .about-image {
    padding: 2rem;
    max-width: 25%;
    margin-bottom: 0;
  }
}
.about-section .about-description {
  padding: 0;
  max-width: 100%;
}

@media only screen and (min-width: 768px) {
  .about-section .about-description {
    padding: 2rem;
    max-width: calc(50% - 2rem);
  }
}
.contact section.get-in-touch-section {
  padding-bottom: 12rem;
}

.contact section.get-in-touch-section h2 {
  margin-bottom: 1.6rem;
}

.contact section.get-in-touch-section .contact-options {
  display: flex;
  flex-wrap: wrap;
}

.contact section.get-in-touch-section .contact-items {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .contact section.get-in-touch-section .contact-items {
    flex-direction: row;
  }
}
.contact .contact-item {
  background-clip: content-box;
  text-align: center;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .contact .contact-item {
    flex: 1;
  }
}
.contact .contact-item-content {
  border-radius: 0.4rem;
  padding: 3rem 3rem 1.6rem 3rem;
  flex-grow: 1;
}

.contact .contact-item-icon {
  max-width: 25px;
  margin-bottom: 1.6rem;
}

.contact .contact-item-title {
  margin-bottom: 1.6rem;
}

.contact .contact-item-action {
  margin-bottom: 3rem;
}

.contact .contact-instagram {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  font-weight: 500;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .contact .contact-instagram p:not(:first-of-type) {
    width: 50%;
    float: left;
  }

  .contact .contact-instagram p:not(:first-of-type) {
    width: 33.33%;
  }
}
.contact .contact-instagram h2 {
  margin-bottom: 1.6rem;
}

.home main {
  padding-top: 0;
}

header.container {
  min-height: calc(100vh - 70px);
  position: relative;
  top: 0;
}

@media only screen and (min-width: 768px) {
  header.container {
    margin: 0 auto;
    max-width: 110rem;
    min-height: 100vh;
    padding: 3rem;
    top: -8.2rem;
  }
}
header.container h1 {
  color: #808080;
  letter-spacing: 3rem;
  max-width: 900px;
  mix-blend-mode: difference;
  position: absolute;
  text-transform: uppercase;
  top: 25%;
  transform: translateY(-50%);
  width: 100%;
  word-break: break-word;
  z-index: 1;
}

@media only screen and (min-width: 768px) {
  header.container h1 {
    font-size: 6rem;
    top: 50%;
  }
}
header.container img {
  bottom: 20%;
  max-width: 80%;
  position: absolute;
  right: 0;
  transform: translateY(0);
  width: auto;
}

@media only screen and (min-width: 768px) {
  header.container img {
    left: 50%;
    max-height: 55rem;
    max-width: 50%;
    top: 50%;
    transform: translateY(-50%);
  }
}
header.container:after {
  background: #023E55;
  bottom: 10%;
  content: "";
  display: block;
  height: 15rem;
  left: 50%;
  opacity: 0.5;
  position: absolute;
  transform: translateX(-50%);
  width: 15.5rem;
}

@media only screen and (min-width: 768px) {
  header.container:after {
    bottom: calc(50% - 35rem);
    height: 20rem;
    width: 20.5rem;
  }
}
span.scroll {
  bottom: 5%;
  display: block;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  opacity: 0.5;
  padding: 2.5rem 2.5rem;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  transform: translateX(0%) translateY(0%) rotate(-90deg);
}

@media only screen and (min-width: 768px) {
  span.scroll {
    bottom: 0;
    left: 50%;
    padding: 4.5rem 3rem;
    right: auto;
    transform: rotate(-90deg) translateY(-50%);
  }
}
/*# sourceMappingURL=styles.css.map */
