@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
/* line 6, ../sass/_normalize.scss */
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;
}

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

/* line 33, ../sass/_normalize.scss */
body {
  line-height: 1;
}

/* line 37, ../sass/_normalize.scss */
ol, ul {
  list-style: none;
}

/* line 41, ../sass/_normalize.scss */
blockquote, q {
  quotes: none;
}

/* line 45, ../sass/_normalize.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* line 51, ../sass/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 1, ../sass/_elements.scss */
img {
  max-width: 100%;
}

/* line 3, ../sass/_grid.scss */
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 9, ../sass/_grid.scss */
.container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

/* line 15, ../sass/_grid.scss */
.row {
  width: 100%;
  display: table;
  table-layout: fixed;
  padding: 0;
  margin: 0;
}

/* line 23, ../sass/_grid.scss */
.row.auto {
  table-layout: auto;
}

/* line 27, ../sass/_grid.scss */
.col {
  display: table-cell;
}

/* line 32, ../sass/_grid.scss */
.col-1 {
  width: 8.333333%;
}

/* line 36, ../sass/_grid.scss */
.col-2 {
  width: 16.666667%;
}

/* line 40, ../sass/_grid.scss */
.col-3 {
  width: 25%;
}

/* line 44, ../sass/_grid.scss */
.col-4 {
  width: 33.333333%;
}

/* line 48, ../sass/_grid.scss */
.col-5 {
  width: 41.666667%;
}

/* line 52, ../sass/_grid.scss */
.col-6 {
  width: 50%;
}

/* line 56, ../sass/_grid.scss */
.col-7 {
  width: 58.333333%;
}

/* line 60, ../sass/_grid.scss */
.col-8 {
  width: 66.666667%;
}

/* line 64, ../sass/_grid.scss */
.col-9 {
  width: 75%;
}

/* line 68, ../sass/_grid.scss */
.col-10 {
  width: 83.333333%;
}

/* line 72, ../sass/_grid.scss */
.col-11 {
  width: 91.666667%;
}

/* line 76, ../sass/_grid.scss */
.col-12 {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  /* line 81, ../sass/_grid.scss */
  .row {
    display: block;
    width: 100%;
  }

  /* line 85, ../sass/_grid.scss */
  .col {
    display: block;
    width: 100%;
  }
}
/* line 1, ../sass/_layout.scss */
body {
  font-family: "NexaSansBook", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #1c1c1b;
  position: relative;
  z-index: 0;
}

/* line 2, ../sass/_header.scss */
header.page-header nav {
  height: 50px;
}
/* line 5, ../sass/_header.scss */
header.page-header nav:before {
  content: " ";
  display: table;
}
/* line 9, ../sass/_header.scss */
header.page-header nav ul {
  display: table;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border: 2px solid #1c1c1b;
  margin-top: 15px;
}
/* line 16, ../sass/_header.scss */
header.page-header nav ul li {
  text-align: center;
  display: table-cell;
  width: 20%;
  font-family: "NexaSansBook", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-right: 100px;
  position: relative;
  vertical-align: middle;
        /*
         * 

        &:first-child {
          &:before {
            content: "";
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            height: 35px;
            width: 35px;
            background: $blue url('../images/maccarone.png') 50% 50% no-repeat;
            background-size: contain;
          }
        }
         */
}
/* line 24, ../sass/_header.scss */
header.page-header nav ul li a {
  display: block;
  text-transform: uppercase;
  background: white;
  background: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  color: #1c1c1b;
  line-height: 35px;
  padding: 5px 0;
  font-size: 13px;
  font-weight: normal;
  border-right: 1px solid rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}
/* line 37, ../sass/_header.scss */
header.page-header nav ul li a.active-trail {
  background: #ffffff;
  color: #C13636;
  /*  &:after {
      content: "";
      position: absolute;
      left: 50%;
      margin-left: -3px;
      bottom: -5px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 3px 3.5px 0 3.5px;
      border-color: $black transparent transparent transparent;
  } */
}
/* line 53, ../sass/_header.scss */
header.page-header nav ul li a:hover {
  color: #C13636;
}
/* line 58, ../sass/_header.scss */
header.page-header nav ul li:first-child a {
  background: rgba(75, 140, 149, 0.7);
  letter-spacing: 0;
  color: #FFE;
  -webkit-font-smoothing: subpixel-antialiased;
}
/* line 65, ../sass/_header.scss */
header.page-header nav ul li i {
  display: inline-block;
  height: 25px;
  width: 25px;
  background: url("../images/maccarone.png") 50% 50% no-repeat;
  background-size: contain;
  vertical-align: middle;
}
/* line 90, ../sass/_header.scss */
header.page-header nav ul li:last-child {
  margin-right: 0;
}
/* line 91, ../sass/_header.scss */
header.page-header nav ul li:last-child a {
  border-right: 0;
}
/* line 99, ../sass/_header.scss */
header.page-header h1 {
  margin: 0 auto;
}
/* line 101, ../sass/_header.scss */
header.page-header h1 img {
  width: 100%;
}
/* line 105, ../sass/_header.scss */
header.page-header .hero-text {
  width: 370px;
}
/* line 108, ../sass/_header.scss */
header.page-header small, header.page-header img, header.page-header strong {
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 22px;
  letter-spacing: 3px;
  font-weight: 600;
}
/* line 116, ../sass/_header.scss */
header.page-header small {
  letter-spacing: 5px;
  margin-bottom: 20px;
  font-variant: small-caps;
  font-weight: normal;
  color: #C13636;
  font-size: 30px;
}
/* line 125, ../sass/_header.scss */
header.page-header strong {
  margin-top: 5px;
  letter-spacing: 0;
  font-family: "Everglow-web", script, serif;
  font-size: 37px;
  font-weight: normal;
  text-shadow: 0 0 3px #ffffff;
  color: #C13636;
}

/* cookie consent */
/* line 139, ../sass/_header.scss */
#cookieChoiceInfo {
  -moz-box-shadow: 0 5px 0 0 rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 5px 0 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 5px 0 0 rgba(0, 0, 0, 0.4);
  text-align: center;
  font-size: 12px;
  padding: 10px !important;
  background: #4B8C95 !important;
  color: #ffffff !important;
}
/* line 147, ../sass/_header.scss */
#cookieChoiceInfo span {
  display: block;
  max-width: 700px;
  margin: 0 auto 10px auto;
}
/* line 154, ../sass/_header.scss */
#cookieChoiceInfo a {
  color: #ffffff;
  display: inline-block;
  text-decoration: none;
  padding: 3px;
  border: 1px solid #ffffff;
}

@-moz-keyframes dente {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: 18px;
  }
}
@-webkit-keyframes dente {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: 18px;
  }
}
@keyframes dente {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: 18px;
  }
}
@-moz-keyframes baffo {
  0%, 100% {
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  25% {
    -moz-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  75% {
    -moz-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
}
@-webkit-keyframes baffo {
  0%, 100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  25% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  75% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
}
@keyframes baffo {
  0%, 100% {
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  25% {
    -moz-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  75% {
    -moz-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
}
@-moz-keyframes portfolio {
  0%,100% {
    padding-left: 20px;
  }
  50% {
    padding-left: 30px;
  }
}
@-webkit-keyframes portfolio {
  0%,100% {
    padding-left: 20px;
  }
  50% {
    padding-left: 30px;
  }
}
@keyframes portfolio {
  0%,100% {
    padding-left: 20px;
  }
  50% {
    padding-left: 30px;
  }
}
/* line 35, ../sass/_sections.scss */
section.we {
  padding: 50px 0 0 0;
  position: relative;
  -moz-perspective: 800px;
  -webkit-perspective: 800px;
  perspective: 800px;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.8);
  font-size: 24px;
  color: #4A5253;
}
/* line 39, ../sass/_sections.scss */
section.we:before {
  content: "";
  background: url("../images/dente.png") repeat-x;
  height: 9px;
  position: absolute;
  opacity: 0.8;
  top: -9px;
  width: 100%;
  -moz-animation: dente 1s 10 linear;
  -webkit-animation: dente 1s 10 linear;
  animation: dente 1s 10 linear;
}
/* line 49, ../sass/_sections.scss */
section.we .freccia {
  position: absolute;
  opacity: 0;
  left: 50%;
  text-align: center;
  margin-left: -145px;
  z-index: 0;
  color: #BED1D0;
  top: 80px;
  color: #bed1d0;
}
/* line 59, ../sass/_sections.scss */
section.we .freccia:before {
  font-size: 293px;
}
/* line 63, ../sass/_sections.scss */
section.we .container {
  max-width: 700px;
  width: 100%;
}
/* line 71, ../sass/_sections.scss */
section.we .mustas {
  position: absolute;
  top: 77px;
  display: table;
  margin: 0 auto;
  width: 100%;
  height: 150px;
}
/* line 78, ../sass/_sections.scss */
section.we .mustas li {
  display: table-cell;
  padding: 0 15px;
  width: 33%;
}
/* line 82, ../sass/_sections.scss */
section.we .mustas li:before {
  color: #C13636;
  font-size: 1px;
  line-height: 125px;
  background: #FFF;
  border-radius: 100%;
  border: 1px solid #EAEAEA;
  width: 50px;
  height: 50px;
}
/* line 92, ../sass/_sections.scss */
section.we .mustas li:hover:before {
  -moz-animation: baffo 0.2s 4 linear;
  -webkit-animation: baffo 0.2s 4 linear;
  animation: baffo 0.2s 4 linear;
}
/* line 95, ../sass/_sections.scss */
section.we .mustas li.icon-baffo1 {
  -moz-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
/* line 98, ../sass/_sections.scss */
section.we .mustas li.icon-baffo3 {
  -moz-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  -webkit-transform: rotate(3deg);
  transform: rotate(3deg);
}
/* line 103, ../sass/_sections.scss */
section.we .tasty {
  -moz-transform: rotateX(-90deg);
  -ms-transform: rotateX(-90deg);
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  opacity: 0;
}
/* line 107, ../sass/_sections.scss */
section.we .folks {
  text-align: center;
  padding: 40px 0;
  position: relative;
  z-index: 2;
}
/* line 113, ../sass/_sections.scss */
section.we .musta:before {
  content: " ";
  display: table;
  clear: both;
}
/* line 118, ../sass/_sections.scss */
section.we p {
  text-align: center;
  margin: 0;
  line-height: 1.8;
}
/* line 123, ../sass/_sections.scss */
section.we .block {
  margin: 0;
  width: 60%;
  margin: 0 auto;
}
/* line 125, ../sass/_sections.scss */
section.we .block small {
  line-height: 2;
  display: block;
  font-family: "Everglow-web", script, serif;
  font-size: 30px;
  color: #739C9A;
}
/* line 134, ../sass/_sections.scss */
section.we .block strong {
  font-weight: normal;
  display: block;
  font-size: 20px;
}
/* line 139, ../sass/_sections.scss */
section.we .block img {
  display: block;
  margin: 0 auto;
}
/* line 144, ../sass/_sections.scss */
section.we .musta {
  overflow: hidden;
  padding-bottom: 125px;
}
/* line 148, ../sass/_sections.scss */
section.we .musta small {
  text-align: center;
  display: block;
  line-height: 90px;
  font-size: 84px;
  color: #bed1d0;
  margin-bottom: 20px;
  -moz-transform: rotate(-4deg);
  -ms-transform: rotate(-4deg);
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
}
/* line 157, ../sass/_sections.scss */
section.we .musta strong {
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: #C13636;
  text-shadow: 1px 1px 0 #ffffff, 2px 2px 0 #bed1d0;
}
/* line 163, ../sass/_sections.scss */
section.we .musta img {
  width: 400px;
}
/* line 168, ../sass/_sections.scss */
section.we .recip small {
  line-height: 2;
}
/* line 172, ../sass/_sections.scss */
section.we .tasty {
  display: table;
  position: relative;
  margin: 0 auto;
  padding: 10px 14px 7px 15px;
  background: white;
  background: rgba(255, 255, 255, 0.7);
  -moz-transform: rotateX(90deg);
  -ms-transform: rotateX(90deg);
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  opacity: 0;
  letter-spacing: 4px;
  border: 2px solid #1c1c1b;
}
/* line 183, ../sass/_sections.scss */
section.we .tasty em, section.we .tasty small, section.we .tasty strong {
  display: table-row;
  line-height: 1.5;
  text-align: center;
}
/* line 188, ../sass/_sections.scss */
section.we .tasty i {
  display: block;
  font-family: "Everglow-web", script, serif;
  letter-spacing: 0;
  position: relative;
  font-size: 23px;
}
/* line 194, ../sass/_sections.scss */
section.we .tasty i:after, section.we .tasty i:before {
  position: absolute;
  top: 16px;
  content: "";
  height: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
/* line 202, ../sass/_sections.scss */
section.we .tasty i:after {
  left: 0;
  right: 60%;
}
/* line 206, ../sass/_sections.scss */
section.we .tasty i:before {
  right: 0;
  left: 60%;
}
/* line 212, ../sass/_sections.scss */
section.we .tasty strong span {
  color: #C13636;
}
/* line 217, ../sass/_sections.scss */
section.we .posater {
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0 20px 0;
}
/* line 222, ../sass/_sections.scss */
section.we .posater:before {
  font-size: 113px;
  margin-left: 17px;
}
/* line 227, ../sass/_sections.scss */
section.we small {
  line-height: 72px;
  margin-bottom: 6px;
}
/* line 233, ../sass/_sections.scss */
section.we.an .freccia {
  opacity: 1;
  top: 120px;
}
/* line 237, ../sass/_sections.scss */
section.we.an .mustas li:before {
  font-size: 106px;
}
/* line 240, ../sass/_sections.scss */
section.we.an .tasty {
  -moz-transform: rotateX(0);
  -ms-transform: rotateX(0);
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
  opacity: 1;
}
/* line 247, ../sass/_sections.scss */
section.we.tr .freccia {
  -moz-transition: opacity 0.5s ease-out 1s, top 0.5s ease-out 1s;
  -o-transition: opacity 0.5s ease-out 1s, top 0.5s ease-out 1s;
  -webkit-transition: opacity 0.5s ease-out, top 0.5s ease-out;
  -webkit-transition-delay: 1s, 1s;
  transition: opacity 0.5s ease-out 1s, top 0.5s ease-out 1s;
}
/* line 250, ../sass/_sections.scss */
section.we.tr .mustas li:before {
  -moz-transition: font-size 0.5s ease-out;
  -o-transition: font-size 0.5s ease-out;
  -webkit-transition: font-size 0.5s ease-out;
  transition: font-size 0.5s ease-out;
}
/* line 253, ../sass/_sections.scss */
section.we.tr .mustas li:nth-child(2):before {
  -moz-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
/* line 256, ../sass/_sections.scss */
section.we.tr .mustas li:nth-child(3):before {
  -moz-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
/* line 259, ../sass/_sections.scss */
section.we.tr .tasty {
  -moz-transition: -moz-transform 0.3s ease-out 1.5s, opacity 0.3s ease-out 1.5s;
  -o-transition: -o-transform 0.3s ease-out 1.5s, opacity 0.3s ease-out 1.5s;
  -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-out;
  -webkit-transition-delay: 1.5s, 1.5s;
  transition: transform 0.3s ease-out 1.5s, opacity 0.3s ease-out 1.5s;
}

/* line 267, ../sass/_sections.scss */
section.clients {
  background: #ffffff;
  background: rgba(255, 255, 255, 0.8);
  padding: 0;
}
/* line 271, ../sass/_sections.scss */
section.clients .container {
  max-width: 1200px;
}
/* line 274, ../sass/_sections.scss */
section.clients h2 {
  text-align: center;
  font-family: "Everglow-web", script, serif;
  text-transform: none;
  line-height: 1.2;
  font-size: 30px;
  font-weight: normal;
  color: #739C9A;
  padding: 0 0 8px 0;
}
/* line 284, ../sass/_sections.scss */
section.clients .logos {
  background: #ffffff;
  overflow: hidden;
}
/* line 288, ../sass/_sections.scss */
section.clients small {
  display: block;
  text-align: center;
  margin: 0 auto;
  font-family: "NexaSansBook", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 3;
  letter-spacing: 10px;
  color: #999;
  padding-left: 14px;
}
/* line 300, ../sass/_sections.scss */
section.clients ul {
  padding: 40px 0;
}
/* line 303, ../sass/_sections.scss */
section.clients li {
  text-align: center;
  padding: 5px;
  border-right: 1px dotted #ddd;
  position: relative;
}
/* line 308, ../sass/_sections.scss */
section.clients li:last-child {
  border-right: none;
}
/* line 311, ../sass/_sections.scss */
section.clients li img {
  height: auto !important;
  max-width: 100%;
  max-height: 50px;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
/* line 319, ../sass/_sections.scss */
section.clients li:hover:after {
  position: absolute;
  left: -37px;
  right: -40px;
  bottom: -25px;
  -webkit-font-smoothing: subpixel-antialiased;
  text-align: center;
  font-size: 12px;
  color: #C13636;
  content: attr(data-client);
  display: block;
}
/* line 333, ../sass/_sections.scss */
section.clients.active li img, section.clients:hover li img {
  -webkit-filter: none;
  filter: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

/* line 340, ../sass/_sections.scss */
.startups {
  padding: 20px;
  background: #FFE;
}
/* line 343, ../sass/_sections.scss */
.startups .row {
  border-collapse: collapse;
}
/* line 346, ../sass/_sections.scss */
.startups .col {
  vertical-align: middle;
  border: 2px solid #B2B2A6;
  padding: 10px;
  background: white;
  background: rgba(255, 255, 255, 0.3);
}
/* line 354, ../sass/_sections.scss */
.startups h2 {
  font-family: "Everglow-web", script, serif;
  position: relative;
  margin: 4px 0 0 34px;
  font-size: 57px;
  color: #C13636;
  color: rgba(193, 54, 54, 0.8);
  -moz-transform: rotate(-4deg);
  -ms-transform: rotate(-4deg);
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
}
/* line 363, ../sass/_sections.scss */
.startups p {
  letter-spacing: 1px;
  line-height: 1.6;
  font-family: "Josefin Sans", "Roboto Slab", "Garamond", "Georgia";
  font-size: 15px;
  color: #1c1c1b;
  color: rgba(28, 28, 27, 0.8);
}

/* line 373, ../sass/_sections.scss */
.portfolio {
  padding: 120px 0 80px 0;
}
/* line 375, ../sass/_sections.scss */
.portfolio h2 {
  font-size: 60px;
  color: #FFE;
  text-align: center;
  text-shadow: 1px 1px 0 #C13636, 2px 2px 0 #C13636;
}
/* line 381, ../sass/_sections.scss */
.portfolio .wlafrance {
  max-width: 500px;
  width: 100%;
  margin: 60px auto 60px auto;
  padding: 10px;
  background: #ffffff;
}
/* line 387, ../sass/_sections.scss */
.portfolio .wlafrance a {
  color: #1c1c1b;
  text-decoration: none;
}
/* line 391, ../sass/_sections.scss */
.portfolio .wlafrance a:hover .r {
  -moz-animation: portfolio 0.5s infinite;
  -webkit-animation: portfolio 0.5s infinite;
  animation: portfolio 0.5s infinite;
}
/* line 396, ../sass/_sections.scss */
.portfolio .wlafrance .row {
  border-collapse: collapse;
}
/* line 399, ../sass/_sections.scss */
.portfolio .wlafrance .col {
  border: 1px solid #1c1c1b;
  text-align: center;
  padding: 20px;
  vertical-align: middle;
}
/* line 405, ../sass/_sections.scss */
.portfolio .wlafrance span {
  font-size: 16px;
  letter-spacing: 6px;
  line-height: 40px;
}
/* line 410, ../sass/_sections.scss */
.portfolio .wlafrance strong {
  font-size: 45px;
}
/* line 413, ../sass/_sections.scss */
.portfolio .wlafrance .r {
  font-size: 100px;
  background: #FFE;
  -moz-transition: padding-left 0.5s linear;
  -o-transition: padding-left 0.5s linear;
  -webkit-transition: padding-left 0.5s linear;
  transition: padding-left 0.5s linear;
}

/* line 421, ../sass/_sections.scss */
.contacts {
  padding: 80px 0 20px 0;
  background: #4B8C95;
  background: rgba(75, 140, 149, 0.8);
  border-top: 5px solid #4B8C95;
  overflow: hidden;
}
/* line 427, ../sass/_sections.scss */
.contacts h2 {
  font-family: "Everglow-web", script, serif;
  color: #FFE;
  font-size: 80px;
  -moz-transform: rotate(-4deg);
  -ms-transform: rotate(-4deg);
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
  text-align: center;
  text-shadow: 1px 1px 0 #C13636;
}
/* line 435, ../sass/_sections.scss */
.contacts .addresses {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 40px 0;
}
/* line 440, ../sass/_sections.scss */
.contacts .addresses .row {
  border-collapse: collapse;
}
/* line 443, ../sass/_sections.scss */
.contacts .addresses .col {
  text-align: center;
  vertical-align: middle;
  padding: 20px 0;
  border: 2px solid #ffffff;
}
/* line 449, ../sass/_sections.scss */
.contacts .addresses a {
  text-decoration: none;
  color: #ffffff;
  letter-spacing: 1px;
  font-size: 16px;
}

/* line 458, ../sass/_sections.scss */
.made {
  text-align: center;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 4px;
  margin-top: 40px;
  position: relative;
   /*
   *  
  &:after {
    content: "";
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 100px;
    background: $white;
    margin-left: -50px;
    
  }

   

  &:before {
    content: "";
    display: block;
    margin: 0 auto 30px auto;
    width: 30px;
    height: 30px;
    background: url('../images/maccarone.png') 50% 50% no-repeat;
    background-size: contain;
  }
     */
}
/* line 465, ../sass/_sections.scss */
.made span {
  font-family: "Everglow-web", script, serif;
}

/* line 496, ../sass/_sections.scss */
.iva {
  text-align: center;
  color: #ffffff;
  margin-top: 20px;
  font-size: 8px;
  letter-spacing: 1px;
}

/* line 504, ../sass/_sections.scss */
.by {
  text-align: center;
  height: 25px;
  width: 25px;
  margin: 10px auto 0 auto;
  background: url("../images/maccarone.png") 50% 50% no-repeat;
  background-size: cover;
  position: relative;
}
/* line 513, ../sass/_sections.scss */
.by:before, .by:after {
  content: "";
  position: absolute;
  height: 1px;
  background: #ffffff;
  width: 30px;
  top: 12px;
}
/* line 522, ../sass/_sections.scss */
.by:before {
  right: -35px;
}
/* line 526, ../sass/_sections.scss */
.by:after {
  left: -35px;
}
/* line 530, ../sass/_sections.scss */
.by span {
  display: none;
}

/* .we */
/* line 4, ../sass/_arcs.scss */
.we strong {
  display: block;
}
/* line 7, ../sass/_arcs.scss */
.we span.char1 {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(14px) rotate(-9deg);
  transform: translateX(0px) translateY(14px) rotate(-9deg);
}
/* line 14, ../sass/_arcs.scss */
.we span.char2.empty {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(12px) rotate(-9deg);
  transform: translateX(0px) translateY(12px) rotate(-9deg);
}
/* line 21, ../sass/_arcs.scss */
.we span.char3 {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(10px) rotate(-8deg);
  transform: translateX(0px) translateY(10px) rotate(-8deg);
}
/* line 28, ../sass/_arcs.scss */
.we span.char4 {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(8px) rotate(-7deg);
  transform: translateX(0px) translateY(8px) rotate(-7deg);
}
/* line 35, ../sass/_arcs.scss */
.we span.char5 {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(6px) rotate(-6deg);
  transform: translateX(0px) translateY(6px) rotate(-6deg);
}
/* line 42, ../sass/_arcs.scss */
.we span.char6 {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(4px) rotate(-5deg);
  transform: translateX(0px) translateY(4px) rotate(-5deg);
}
/* line 49, ../sass/_arcs.scss */
.we span.char7.empty {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(3px) rotate(-4deg);
  transform: translateX(0px) translateY(3px) rotate(-4deg);
}
/* line 56, ../sass/_arcs.scss */
.we span.char8 {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(2px) rotate(-3deg);
  transform: translateX(0px) translateY(2px) rotate(-3deg);
}
/* line 63, ../sass/_arcs.scss */
.we span.char9 {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(1px) rotate(-2deg);
  transform: translateX(0px) translateY(1px) rotate(-2deg);
}
/* line 70, ../sass/_arcs.scss */
.we span.char10.empty {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(0px) rotate(-2deg);
  transform: translateX(0px) translateY(0px) rotate(-2deg);
}
/* line 77, ../sass/_arcs.scss */
.we span.char11 {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(0px) rotate(-1deg);
  transform: translateX(0px) translateY(0px) rotate(-1deg);
}
/* line 84, ../sass/_arcs.scss */
.we span.char12 {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(0px) rotate(0deg);
  transform: translateX(0px) translateY(0px) rotate(0deg);
}
/* line 91, ../sass/_arcs.scss */
.we span.char13 {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(0px) rotate(0deg);
  transform: translateX(0px) translateY(0px) rotate(0deg);
}
/* line 98, ../sass/_arcs.scss */
.we span.char14 {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(0px) rotate(1deg);
  transform: translateX(0px) translateY(0px) rotate(1deg);
}
/* line 105, ../sass/_arcs.scss */
.we span.char15 {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(0px) rotate(2deg);
  transform: translateX(0px) translateY(0px) rotate(2deg);
}
/* line 112, ../sass/_arcs.scss */
.we span.char16 {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(1px) rotate(3deg);
  transform: translateX(0px) translateY(1px) rotate(3deg);
}
/* line 119, ../sass/_arcs.scss */
.we span.char17 {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(2px) rotate(3deg);
  transform: translateX(0px) translateY(2px) rotate(3deg);
}
/* line 126, ../sass/_arcs.scss */
.we span.char18 {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(3px) rotate(4deg);
  transform: translateX(0px) translateY(3px) rotate(4deg);
}
/* line 133, ../sass/_arcs.scss */
.we span.char19 {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(4px) rotate(5deg);
  transform: translateX(0px) translateY(4px) rotate(5deg);
}
/* line 140, ../sass/_arcs.scss */
.we span.char20 {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(5px) rotate(6deg);
  transform: translateX(0px) translateY(5px) rotate(6deg);
}
/* line 147, ../sass/_arcs.scss */
.we span.char21 {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(7px) rotate(7deg);
  transform: translateX(0px) translateY(7px) rotate(7deg);
}
/* line 154, ../sass/_arcs.scss */
.we span.char22 {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(10px) rotate(8deg);
  transform: translateX(0px) translateY(10px) rotate(8deg);
}
/* line 161, ../sass/_arcs.scss */
.we span.char23 {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(12px) rotate(8deg);
  transform: translateX(0px) translateY(12px) rotate(8deg);
}
/* line 168, ../sass/_arcs.scss */
.we span.char24 {
  display: inline-block;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0px) translateY(14px) rotate(9deg);
  transform: translateX(0px) translateY(14px) rotate(9deg);
}

/* line 2, ../sass/_home.scss */
.page-home h1 {
  padding: 100px 0;
  padding: 15vh 0 15vh 0;
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
}
/* line 9, ../sass/_home.scss */
.page-home .bg {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff url("../images/tagliere2.jpg") 50% 40% no-repeat;
  background-size: cover;
  z-index: -1;
}

/* line 2, ../sass/_portfolio.scss */
.page-portfolio header {
  background: url("../images/portfolio2.jpg") 50% 50% no-repeat;
  background-size: cover;
  overflow: hidden;
}
/* line 6, ../sass/_portfolio.scss */
.page-portfolio header h1 {
  font-family: "Everglow-web", script, serif;
  font-size: 120px;
  text-align: center;
  padding: 150px 0 200px 0;
  padding: 20vh 0 25vh 0;
  color: #381C1C;
  text-shadow: 1px 1px 0 #ffffff;
  -moz-transform: rotate(-2deg);
  -ms-transform: rotate(-2deg);
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
}
/* line 17, ../sass/_portfolio.scss */
.page-portfolio .bg, .page-portfolio .bg1 {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-color: #294c51;
  z-index: -2;
}
/* line 30, ../sass/_portfolio.scss */
.page-portfolio .bg2 {
  position: fixed;
  display: block;
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: url("../images/grid-bg.gif");
}
/* line 43, ../sass/_portfolio.scss */
.page-portfolio .h {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
/* line 46, ../sass/_portfolio.scss */
.page-portfolio .v {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

/* line 53, ../sass/_portfolio.scss */
.works {
  background: #E8F0F0;
  background: url("../images/test.gif");
  border-top: 2px solid #294c51;
  background: #4B8C95;
  padding: 150px 0 50px 0;
  background: transparent;
}
/* line 61, ../sass/_portfolio.scss */
.works:before, .works:after {
  content: "";
  display: table;
  clear: both;
}

/* line 68, ../sass/_portfolio.scss */
.works-w {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-top: 40px;
}
/* line 74, ../sass/_portfolio.scss */
.works-w a {
  display: block;
  text-decoration: none;
}
/* line 77, ../sass/_portfolio.scss */
.works-w a:last-child .work {
  border-bottom: none;
}

/* line 84, ../sass/_portfolio.scss */
.work {
  cursor: hand;
  cursor: pointer;
  border-bottom: 1px dotted #ffffff;
  padding: 25px 0;
  color: #ffffff;
  display: block;
  vertical-align: top;
  background-size: cover;
  position: relative;
}
/* line 90, ../sass/_portfolio.scss */
.work.m {
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}
/* line 102, ../sass/_portfolio.scss */
.work .desc {
  font-family: "Lora", serif;
  font-weight: 700;
  font-style: italic;
  max-width: 500px;
  width: 100%;
  margin: 4px auto 0 auto;
  line-height: 1.3;
  padding: 10px 0;
}
/* line 111, ../sass/_portfolio.scss */
.work .desc p {
  margin-bottom: 10px;
}
/* line 113, ../sass/_portfolio.scss */
.work .desc p:last-child {
  margin-bottom: 0;
}
/* line 118, ../sass/_portfolio.scss */
.work img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
/* line 126, ../sass/_portfolio.scss */
.work .col {
  vertical-align: top;
  display: block;
}
/* line 130, ../sass/_portfolio.scss */
.work .pic {
  display: none;
}
/* line 133, ../sass/_portfolio.scss */
.work .data {
  padding: 15px;
  position: relative;
  width: 100%;
}
/* line 139, ../sass/_portfolio.scss */
.work .more {
  display: none;
  position: absolute;
  right: 15px;
  bottom: 15px;
  padding: 6px 4px 6px 6px;
  text-decoration: none;
  border: 1px solid #85bac1;
  font-size: 12px;
  letter-spacing: 2px;
}
/* line 150, ../sass/_portfolio.scss */
.work .more a {
  color: #85bac1;
  text-decoration: none;
}
/* line 155, ../sass/_portfolio.scss */
.work h2 {
  font-size: 42px;
  line-height: 1;
  padding: 0;
  margin-bottom: 15px;
  letter-spacing: 1px;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -moz-transition: -moz-transform 0.1s ease-out;
  -o-transition: -o-transform 0.1s ease-out;
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
}
/* line 164, ../sass/_portfolio.scss */
.work em {
  display: block;
  font-size: 15px;
  letter-spacing: 2px;
}
/* line 169, ../sass/_portfolio.scss */
.work ul {
  list-style: none;
  text-align: center;
}
/* line 173, ../sass/_portfolio.scss */
.work li {
  display: inline-block;
  line-height: 2;
  letter-spacing: 2px;
  font-size: 10px;
  border: 1px solid #ffffff;
  margin: 0 5px 5px 5px;
  padding: 1px 5px 0 7px;
}
/* line 182, ../sass/_portfolio.scss */
.work.hl {
  background-color: #1c1c1b;
  background-color: rgba(28, 28, 27, 0.8);
}

/* line 4, ../sass/_project.scss */
.page-project header {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
/* line 9, ../sass/_project.scss */
.page-project header h1 {
  margin: 150px 0;
  margin: 25vh 0;
  display: inline-block;
  font-size: 40px;
  text-align: center;
  color: #ffffff;
  padding: 15px;
  border: 2px solid #ffffff;
}
/* line 20, ../sass/_project.scss */
.page-project .intro {
  margin: 0 auto;
  text-align: center;
  padding: 60px 0;
  line-height: 1.3;
  font-size: 29px;
  font-family: "Lora", serif;
  font-weight: 700;
  font-style: italic;
}
/* line 29, ../sass/_project.scss */
.page-project .intro hr {
  max-width: 700px;
  height: 1px;
  background: none;
  border-bottom: 1px dotted #739C9A;
  border-width: 0 0 1px 0;
}
/* line 37, ../sass/_project.scss */
.page-project .intro a.ext {
  font-family: "NexaSansBook", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 5px 10px;
  border: 1px solid #1c1c1b;
  text-decoration: none;
  color: #1c1c1b;
  font-style: normal;
}
/* line 46, ../sass/_project.scss */
.page-project .intro p {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 1em;
}
/* line 51, ../sass/_project.scss */
.page-project .intro p:last-child {
  padding-bottom: 0;
}
/* line 55, ../sass/_project.scss */
.page-project .intro p.s {
  font-size: 18px;
  color: #1c1c1b;
  text-align: left;
}
/* line 62, ../sass/_project.scss */
.page-project .what-we-did {
  text-align: center;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  font-size: 18px;
  color: #C2C2C2;
  border-top: 1px solid #C2C2C2;
}
/* line 72, ../sass/_project.scss */
.page-project .what-we-did strong {
  display: inline-block;
  margin-bottom: 5px;
}
/* line 76, ../sass/_project.scss */
.page-project .what-we-did ul {
  display: inline-block;
  margin-left: 20px;
}
/* line 80, ../sass/_project.scss */
.page-project .what-we-did li {
  display: inline-block;
  padding: 5px 7px;
  border: 1px solid #C2C2C2;
  margin-bottom: 5px;
  margin-right: 5px;
}
/* line 88, ../sass/_project.scss */
.page-project .asset-w {
  padding: 60px 0 55px 0;
  text-align: center;
  background: #E8F0F0;
}
/* line 92, ../sass/_project.scss */
.page-project .asset-w:nth-child(2n+1) {
  background: #f1f6f6;
}
/* line 95, ../sass/_project.scss */
.page-project .asset-w h2 {
  text-align: center;
  color: #E8F0F0;
  font-size: 26px;
  letter-spacing: 3px;
  margin: 40px 0 20px 0;
  color: #C13636;
  color: rgba(193, 54, 54, 0.4);
  position: relative;
}
/* line 104, ../sass/_project.scss */
.page-project .asset-w h2:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 50px;
  height: 0;
  margin-left: -25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
/* line 116, ../sass/_project.scss */
.page-project .asset-w .description {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.5;
  font-family: "Lora", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  color: #1c1c1b;
}
/* line 127, ../sass/_project.scss */
.page-project .asset-w .description p {
  margin-bottom: 10px;
}
/* line 131, ../sass/_project.scss */
.page-project .asset-w .description p:last-child {
  margin-bottom: 0;
}
/* line 135, ../sass/_project.scss */
.page-project .asset-w .description em {
  font-weight: 700;
}
/* line 143, ../sass/_project.scss */
.page-project .asset-w .description li {
  padding-left: 1em;
  position: relative;
}
/* line 147, ../sass/_project.scss */
.page-project .asset-w .description li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "–";
}
/* line 155, ../sass/_project.scss */
.page-project .asset-w .ext {
  display: inline-block;
  letter-spacing: 3px;
  font-size: 18px;
  padding: 7px 4px 6px 7px;
  text-decoration: none;
  margin-top: 20px;
  color: #1c1c1b;
  border: 1px solid #1c1c1b;
  -webkit-font-smoothing: subpixel-antialiased;
}
/* line 166, ../sass/_project.scss */
.page-project .asset-w img {
  max-height: 70vh;
  display: block;
  margin: 0 auto;
  height: auto !important;
  background: url("../images/loading.gif") 50% 50% no-repeat;
}
/* line 173, ../sass/_project.scss */
.page-project .asset-w .pad {
  padding: 20px;
  background-color: #ffffff;
}
/* line 177, ../sass/_project.scss */
.page-project .asset-w .border {
  border: 2px solid rgba(0, 0, 0, 0.05);
}
/* line 180, ../sass/_project.scss */
.page-project .asset-w .dark img {
  background-color: #444444;
  padding: 5px;
}
/* line 185, ../sass/_project.scss */
.page-project .asset-w .long-text {
  text-align: left;
}

/* line 192, ../sass/_project.scss */
.nextprev {
  display: table;
  width: 100%;
  table-layout: fixed;
  margin: 0;
  border-collapse: collapse;
  position: relative;
  border-top: 4px solid #294c51;
  border-bottom: 4px solid #294c51;
}
/* line 202, ../sass/_project.scss */
.nextprev:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  left: 0;
  right: 0;
  height: 1px;
  background: #294c51;
  bottom: 1px;
}
/* line 213, ../sass/_project.scss */
.nextprev .prev, .nextprev .next {
  display: table-cell;
  width: 50%;
}
/* line 217, ../sass/_project.scss */
.nextprev figure {
  position: relative;
  background-size: cover;
  margin-bottom: -1px;
  overflow: hidden;
  display: block;
}
/* line 224, ../sass/_project.scss */
.nextprev img {
  display: block;
  -moz-transition: -moz-transform 0.2s linear;
  -o-transition: -o-transform 0.2s linear;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
}
/* line 228, ../sass/_project.scss */
.nextprev i {
  display: none;
}
/* line 231, ../sass/_project.scss */
.nextprev figcaption {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  color: #fff;
  text-align: center;
  width: 100%;
  font-size: 2.5vw;
}
/* line 243, ../sass/_project.scss */
.nextprev figcaption em {
  display: block;
  position: absolute;
  width: 100%;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}
/* line 251, ../sass/_project.scss */
.nextprev figcaption span {
  display: inline-block;
  border: 1px solid #ffffff;
  padding: 0 1vw;
  line-height: 2;
}
/* line 258, ../sass/_project.scss */
.nextprev .prev figcaption:before,
.nextprev .next figcaption:before {
  content: "<";
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #FFF;
  font-size: 8vw;
  left: 10px;
}
/* line 268, ../sass/_project.scss */
.nextprev .next figcaption:before {
  content: ">";
  left: auto;
  right: 10px;
}
/* line 273, ../sass/_project.scss */
.nextprev figure:hover img {
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/* line 280, ../sass/_project.scss */
.page-project header.full-shadow h1,
.full-shadow figcaption span {
  text-shadow: 0 0 14px #000, 0 0 18px #000, 0 0 38px rgba(0, 0, 0, 0.77);
}

/* line 285, ../sass/_project.scss */
.page-project header.black-header h1,
.black-header figcaption span {
  color: #1c1c1b;
  border: 1px solid #1c1c1b;
}

/* line 291, ../sass/_project.scss */
.page-project header.bg-top {
  background-position: 50% 0;
}

/* line 1, ../sass/_menu.scss */
.services {
  background: url("../images/matriciana.jpg") 50% 50% no-repeat fixed;
  background-size: cover;
  position: relative;
  color: #ffffff;
  text-align: center;
}
/* line 10, ../sass/_menu.scss */
.services header {
  border-top: 10px solid #C13636;
  padding: 140px 0 50px 0;
  background: rgba(122, 39, 39, 0.7);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
/* line 19, ../sass/_menu.scss */
.services header h2 {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
}
/* line 24, ../sass/_menu.scss */
.services header small {
  display: block;
  font-family: "Everglow-web", script, serif;
  font-size: 95px;
  -moz-transform: rotate(-4deg);
  -ms-transform: rotate(-4deg);
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
  margin: 35px 0 0 -10px;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4);
}
/* line 33, ../sass/_menu.scss */
.services .recipes {
  position: relative;
  z-index: 1;
}
/* line 37, ../sass/_menu.scss */
.services .menu-w {
  padding: 40px 0;
  background: #7a2727;
  background: rgba(122, 39, 39, 0.7);
}
/* line 43, ../sass/_menu.scss */
.services .menu-o {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
/* line 48, ../sass/_menu.scss */
.services .intro {
  margin-top: 30px;
}
/* line 50, ../sass/_menu.scss */
.services .intro p {
  line-height: 1.5;
  text-shadow: 1px 1px 0 #1c1c1b;
}
/* line 54, ../sass/_menu.scss */
.services .intro .p1 {
  margin-bottom: 5px;
  padding-bottom: 5px;
  font-size: 16px;
  letter-spacing: 2px;
  position: relative;
      /*
       * 
       
      &:before {
        content: "";
        display: block;
        width: 220px; 
        margin: 0 auto;
        position: relative;
        top: -40px;
        height: 1px;
        border-top: 1px dotted $white;

      }
      
       */
}
/* line 60, ../sass/_menu.scss */
.services .intro .p1:after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 80px;
  position: relative;
  top: 8px;
  height: 1px;
  background: #ffffff;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #1c1c1b;
}
/* line 89, ../sass/_menu.scss */
.services .intro .p2 {
  font-size: 13px;
  letter-spacing: 2px;
  margin-top: 8px;
  padding-top: 5px;
}
/* line 98, ../sass/_menu.scss */
.services .menu {
  background: #ffffff;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  padding: 15px;
  text-align: left;
}
/* line 103, ../sass/_menu.scss */
.services .menu, .services .menu li {
  list-style: none;
}
/* line 106, ../sass/_menu.scss */
.services .menu li {
  display: block;
  line-height: 1.4;
  border-bottom: 1px dotted #1c1c1b;
  border-collapse: collapse;
  padding: 10px;
}
/* line 112, ../sass/_menu.scss */
.services .menu li:first-child {
  padding-top: 0;
}
/* line 115, ../sass/_menu.scss */
.services .menu li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
/* line 119, ../sass/_menu.scss */
.services .menu li h3 {
  font-weight: normal;
  letter-spacing: 2px;
  font-size: 30px;
  display: block;
  color: #1c1c1b;
}
/* line 128, ../sass/_menu.scss */
.services .menu li small {
  display: block;
  letter-spacing: 0;
  font-size: 14px;
  color: #1c1c1b;
  font-family: "Josefin Sans", "Roboto Slab", "Garamond", "Georgia";
  font-weight: normal;
}

/* line 1, ../sass/_kitchen-banner.scss */
.kitchen-banner {
  background: #300;
  padding: 20px 10px;
  color: #FFE;
  text-align: center;
}
/* line 9, ../sass/_kitchen-banner.scss */
.kitchen-banner .col {
  vertical-align: middle;
}
/* line 13, ../sass/_kitchen-banner.scss */
.kitchen-banner strong, .kitchen-banner em {
  font-family: "Everglow-web", script, serif;
  font-size: 27px;
  padding: 40px 20px 20px 20px;
  display: block;
  -moz-transform: rotate(-1deg);
  -ms-transform: rotate(-1deg);
  -webkit-transform: rotate(-1deg);
  transform: rotate(-1deg);
  line-height: 30px;
}
/* line 22, ../sass/_kitchen-banner.scss */
.kitchen-banner a {
  text-decoration: none;
  color: #ffffff;
}
/* line 27, ../sass/_kitchen-banner.scss */
.kitchen-banner span {
  display: block;
  margin-bottom: 20px;
  letter-spacing: 14px;
  font-size: 20px;
  padding-left: 0.5em;
  line-height: 20px;
}

/* line 1, ../sass/_responsive.scss */
header.page-header nav ul.m-header {
  display: none;
}

@media only screen and (max-width: 1024px) {
  /* line 6, ../sass/_responsive.scss */
  header.page-header nav {
    padding: 0 10px;
  }

  /* line 9, ../sass/_responsive.scss */
  .page-project .asset-w img {
    max-height: 100vh;
  }

  /* line 12, ../sass/_responsive.scss */
  .embed {
    position: relative;
    padding: 0;
    border: 20px solid #ffffff;
    padding-top: 1.38889rem !important;
    padding-bottom: 67.5% !important;
    height: 0;
    margin-bottom: 0.88889rem;
    overflow: hidden;
  }
  /* line 21, ../sass/_responsive.scss */
  .embed iframe, .embed object, .embed embed, .embed video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  /* line 32, ../sass/_responsive.scss */
  header.page-header nav {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0;
  }
  /* line 40, ../sass/_responsive.scss */
  header.page-header nav ul.m-header {
    border-width: 0 0 2px 0;
    display: table;
    margin-top: 0;
    background: #ffffff;
    -moz-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.3);
  }
  /* line 46, ../sass/_responsive.scss */
  header.page-header nav ul.m-header li {
    width: 50%;
  }
  /* line 49, ../sass/_responsive.scss */
  header.page-header nav ul.m-header a.trigger:after {
    content: ">";
    display: inline-block;
    font-size: 30px;
    position: absolute;
    top: 50%;
    right: 10px;
    color: #C13636;
    -moz-transition: -moz-transform 0.2s linear;
    -o-transition: -o-transform 0.2s linear;
    -webkit-transition: -webkit-transform 0.2s linear;
    transition: transform 0.2s linear;
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    line-height: 10px;
    margin-top: -5px;
  }
  /* line 62, ../sass/_responsive.scss */
  header.page-header nav ul.m-header a.trigger.open:after {
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  /* line 65, ../sass/_responsive.scss */
  header.page-header nav ul.m-header a {
    cursor: hand;
    cursor: pointer;
    position: relative;
    display: block;
  }
  /* line 72, ../sass/_responsive.scss */
  header.page-header nav ul.links {
    border: none;
    display: block;
    margin: 0;
    padding: 0;
    width: 50%;
    right: 0;
    position: absolute;
    height: 0;
    overflow: hidden;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -moz-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    -moz-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.3);
  }
  /* line 85, ../sass/_responsive.scss */
  header.page-header nav ul.links li.first {
    display: none;
  }
  /* line 88, ../sass/_responsive.scss */
  header.page-header nav ul.links li {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    position: relative;
  }
  /* line 93, ../sass/_responsive.scss */
  header.page-header nav ul.links li:after {
    content: "";
    position: absolute;
    display: block;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
  }
  /* line 105, ../sass/_responsive.scss */
  header.page-header nav ul.links li:last-child:after {
    display: none;
  }
  /* line 108, ../sass/_responsive.scss */
  header.page-header nav ul.links li a {
    display: block;
    line-height: 4;
  }
  /* line 113, ../sass/_responsive.scss */
  header.page-header nav ul.links.v {
    height: auto;
    display: block;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }

  /* home */
  /* line 122, ../sass/_responsive.scss */
  .startups h2 {
    font-size: 42px;
    padding-top: 10px;
    text-align: center;
    margin-left: -12px;
  }
  /* line 128, ../sass/_responsive.scss */
  .startups .l {
    border-bottom: none;
    padding-top: 15px;
  }
  /* line 132, ../sass/_responsive.scss */
  .startups .r {
    border-top: none;
  }

  /* line 136, ../sass/_responsive.scss */
  .portfolio {
    padding: 30px 10px 10px 10px;
  }
  /* line 138, ../sass/_responsive.scss */
  .portfolio h2 {
    font-size: 40px;
  }
  /* line 141, ../sass/_responsive.scss */
  .portfolio .wlafrance {
    margin: 30px auto 0 auto;
  }
  /* line 143, ../sass/_responsive.scss */
  .portfolio .wlafrance strong {
    font-size: 40px;
  }
  /* line 146, ../sass/_responsive.scss */
  .portfolio .wlafrance .r {
    display: none;
  }

  /* line 152, ../sass/_responsive.scss */
  section.we .block {
    width: 100%;
    padding: 0 10px;
  }
  /* line 155, ../sass/_responsive.scss */
  section.we .block .mustas {
    position: relative;
    height: auto;
    top: auto;
  }
  /* line 159, ../sass/_responsive.scss */
  section.we .block .mustas li {
    padding: 0;
  }
  /* line 161, ../sass/_responsive.scss */
  section.we .block .mustas li:before {
    font-size: 78px;
  }
  /* line 167, ../sass/_responsive.scss */
  section.we .tasty {
    font-size: 17px;
  }
  /* line 170, ../sass/_responsive.scss */
  section.we .folks strong {
    font-size: 19px;
    letter-spacing: 1px;
  }
  /* line 173, ../sass/_responsive.scss */
  section.we .folks strong span {
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }

  /* line 178, ../sass/_responsive.scss */
  .services {
    background: none;
  }
  /* line 180, ../sass/_responsive.scss */
  .services header {
    background: url("../images/carbonara.jpg") 50% 50% no-repeat scroll;
    background-size: cover;
  }
  /* line 184, ../sass/_responsive.scss */
  .services .menu li h3 {
    font-size: 20px;
  }
  /* line 187, ../sass/_responsive.scss */
  .services .menu-w {
    padding: 0;
  }

  /* line 191, ../sass/_responsive.scss */
  .contacts .addresses {
    padding-right: 30px;
    padding-left: 30px;
  }
  /* line 194, ../sass/_responsive.scss */
  .contacts .addresses li:nth-child(1),
  .contacts .addresses li:nth-child(2) {
    border-bottom: none;
  }

  /* line 200, ../sass/_responsive.scss */
  section.clients .logos ul {
    padding: 0;
  }
  /* line 202, ../sass/_responsive.scss */
  section.clients .logos ul li {
    padding: 8px 15px;
    text-align: left;
    position: relative;
    border-bottom: 1px dotted #999;
  }
  /* line 207, ../sass/_responsive.scss */
  section.clients .logos ul li:last-child {
    border-bottom: 0;
  }
  /* line 210, ../sass/_responsive.scss */
  section.clients .logos ul li img {
    height: 40px;
    -webkit-filter: none;
    filter: none;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
  /* line 215, ../sass/_responsive.scss */
  section.clients .logos ul li:before {
    position: absolute;
    content: attr(data-client);
    top: 50%;
    right: 15px;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: right;
    font-size: 12px;
  }
  /* line 224, ../sass/_responsive.scss */
  section.clients .logos ul li:hover:after {
    content: "";
    display: none;
  }

  /* portfolio */
  /* line 232, ../sass/_responsive.scss */
  .page-portfolio header h1 {
    font-size: 70px;
  }

  /* line 235, ../sass/_responsive.scss */
  .works, .works-w {
    padding: 0;
  }

  /* line 238, ../sass/_responsive.scss */
  .work {
    border: none;
  }

  /* project */
  /* line 243, ../sass/_responsive.scss */
  .page-project header h1 {
    font-size: 24px;
  }
  /* line 246, ../sass/_responsive.scss */
  .page-project .container {
    padding: 10px;
  }
  /* line 249, ../sass/_responsive.scss */
  .page-project .intro {
    padding: 20px;
  }
  /* line 251, ../sass/_responsive.scss */
  .page-project .intro p {
    font-size: 16px;
  }
  /* line 255, ../sass/_responsive.scss */
  .page-project .what-we-did {
    font-size: 12px;
  }
  /* line 258, ../sass/_responsive.scss */
  .page-project .asset-w .pad {
    padding: 10px;
  }

  /* contacts */
  /* line 264, ../sass/_responsive.scss */
  .contacts .addresses a {
    font-size: 14px;
  }
}
/* line 270, ../sass/_responsive.scss */
.touch .works {
  padding: 0;
}
/* line 273, ../sass/_responsive.scss */
.touch .works-w {
  margin: 0 auto;
  padding: 0;
}
/* line 277, ../sass/_responsive.scss */
.touch .work {
  border: none;
  padding: 60px 0;
}

/* iphone4 */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /* line 287, ../sass/_responsive.scss */
  .page-home h1 {
    padding: 180px 0 110px 0;
  }

  /* line 291, ../sass/_responsive.scss */
  .page-portfolio header h1 {
    padding: 200px 0 180px 0;
  }

  /* line 295, ../sass/_responsive.scss */
  .page-project header h1 {
    margin: 160px 0 120px 0px;
  }
}
/* line 3, ../sass/_404.scss */
.page-node-24 .bg {
  background: url("../images/404.jpg") 50% 50% no-repeat;
  background-size: cover;
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
/* line 16, ../sass/_404.scss */
.page-node-24 header h1 {
  color: #C13636;
  border-color: #C13636;
  margin: 10vh 0;
}
/* line 23, ../sass/_404.scss */
.page-node-24 article {
  text-align: center;
}
/* line 26, ../sass/_404.scss */
.page-node-24 article p.caught {
  font-family: "Everglow-web", script, serif;
  color: #C13636;
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 40px;
}
/* line 34, ../sass/_404.scss */
.page-node-24 article ul {
  display: table;
  max-width: 600px;
  width: 100%;
  margin: 10px auto;
  border-spacing: 10px;
}
/* line 41, ../sass/_404.scss */
.page-node-24 article ul li {
  width: 50%;
  margin: 10px;
  border: 2px solid #1c1c1b;
  display: table-cell;
  padding: 10px;
  vertical-align: middle;
  background: rgba(255, 255, 255, 0.5);
}
/* line 50, ../sass/_404.scss */
.page-node-24 article ul li a {
  display: block;
  color: #C13636;
  text-decoration: none;
}
/* line 56, ../sass/_404.scss */
.page-node-24 article ul li span {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
}
/* line 62, ../sass/_404.scss */
.page-node-24 article ul li em {
  display: block;
  margin-top: 10px;
  color: #1c1c1b;
}
/* line 68, ../sass/_404.scss */
.page-node-24 article ul li.l em {
  font-size: 24px;
}
/* line 72, ../sass/_404.scss */
.page-node-24 article ul li.r em {
  font-size: 16px;
}
