/* CSS Document */
/* COLORS */
/* Color Theme Swatches in Hex */
/* line 11, ../scss/style.scss */
html,
body {
  padding: 0;
  margin: 0; }

/* line 16, ../scss/style.scss */
a {
  text-decoration: none; }

/* Fonts */
@font-face {
  font-family: 'NeueMachina';
  src: url("fonts/NeueMachina-Medium.eot");
  /* IE9 Compat Modes */
  src: url("fonts/NeueMachina-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/NeueMachina-Medium.woff2") format("woff2"), url("fonts/NeueMachina-Medium.woff") format("woff");
  /* Legacy iOS */
  font-weight: 400; }
/* line 31, ../scss/style.scss */
body {
  font-family: 'NeueMachina', Arial, sans-serif;
  font-size: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #ff4200;
  font-feature-settings: "kern"; }
  /* line 38, ../scss/style.scss */
  body .g {
    font-feature-settings: "kern", "salt" 1; }

/* line 42, ../scss/style.scss */
::-moz-selection {
  background-color: #cccccc;
  color: #ffffff; }

/* line 46, ../scss/style.scss */
::selection {
  background-color: #cccccc;
  color: #ffffff; }

/* line 50, ../scss/style.scss */
h1, h2, h3, h4, h5, h6, h7 {
  font-size: 2.5rem; }

/* line 54, ../scss/style.scss */
.small-title {
  font-size: 1.5rem; }

/* line 59, ../scss/style.scss */
.white {
  background: white;
  color: #ff4200; }

/* line 63, ../scss/style.scss */
.black {
  background: black;
  color: white; }

/* line 67, ../scss/style.scss */
.blue {
  background: #ff4200;
  color: white; }

/* MIXINS */
/* Header */
/* line 178, ../scss/style.scss */
header {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  background: white;
  height: 92px;
  position: fixed;
  width: calc(100% - 6rem);
  top: 0;
  left: 0;
  z-index: 999999999999999; }
  /* line 191, ../scss/style.scss */
  header h4 {
    font-weight: 400;
    color: #ff4200;
    font-size: 1.5rem; }
  /* line 197, ../scss/style.scss */
  header #inheader {
    opacity: 0;
    -moz-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    -webkit-transition: opacity 200ms ease;
    transition: opacity 200ms ease; }
    /* line 200, ../scss/style.scss */
    header #inheader.showme {
      opacity: 1; }

/* line 206, ../scss/style.scss */
input[type="checkbox"] {
  width: 1.5rem;
  height: calc(1.5rem - 4px);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-top: 2px solid #ff4200;
  border-bottom: 2px solid #ff4200;
  transition: border-color 200ms;
  position: relative;
  outline: none;
  border-radius: 0px;
  border-left: 0px;
  border-right: 0px;
  background: transparent; }
  /* line 221, ../scss/style.scss */
  input[type="checkbox"]:hover {
    cursor: pointer; }
  /* line 225, ../scss/style.scss */
  input[type="checkbox"]:after {
    height: 2px;
    width: 1.5rem;
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -1px;
    display: block;
    background: #ff4200;
    transition: transform 500ms, width 500ms; }
  /* line 237, ../scss/style.scss */
  input[type="checkbox"]:before {
    height: 2px;
    width: 1.5rem;
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -1px;
    display: block;
    background: #ff4200;
    transition: transform 500ms, width 500ms; }
  /* line 249, ../scss/style.scss */
  input[type="checkbox"]:checked {
    border-color: white; }
    /* line 252, ../scss/style.scss */
    input[type="checkbox"]:checked:after {
      transform: rotate(45deg);
      width: 1.75rem; }
    /* line 256, ../scss/style.scss */
    input[type="checkbox"]:checked:before {
      transform: rotate(-45deg);
      width: 1.75rem; }
    /* line 260, ../scss/style.scss */
    input[type="checkbox"]:checked + .index {
      transform: translateX(0%); }

/* line 268, ../scss/style.scss */
.disclaimer {
  z-index: 40;
  position: fixed;
  width: 100vw;
  background: rgba(0, 0, 0, 0.95);
  height: 1vh;
  top: -1vh;
  overflow: hidden;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center; }
  /* line 279, ../scss/style.scss */
  .disclaimer .disclaimer-text {
    background: #ff4200;
    height: calc(80vh - 12rem);
    width: calc(80vw - 12rem);
    color: white;
    padding: 6rem;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 1.5rem; }
    /* line 290, ../scss/style.scss */
    .disclaimer .disclaimer-text p {
      margin: .5rem 0; }
    /* line 293, ../scss/style.scss */
    .disclaimer .disclaimer-text a.accept,
    .disclaimer .disclaimer-text a.accept:active,
    .disclaimer .disclaimer-text a.accept:visited {
      padding: 1em;
      border: 2px solid white;
      display: inline-table;
      margin-top: 1em;
      color: white; }
      /* line 301, ../scss/style.scss */
      .disclaimer .disclaimer-text a.accept:hover,
      .disclaimer .disclaimer-text a.accept:active:hover,
      .disclaimer .disclaimer-text a.accept:visited:hover {
        background: white;
        color: #ff4200; }
  /* line 308, ../scss/style.scss */
  .disclaimer.visible {
    height: 100vh;
    top: 0;
    overflow: auto; }

/* line 314, ../scss/style.scss */
.no-scroll {
  overflow: hidden; }

/* line 317, ../scss/style.scss */
.index {
  background: white;
  position: fixed;
  width: 700px;
  top: 92px;
  right: 0;
  color: white;
  height: calc(100vh - 92px);
  z-index: 2;
  transform: translateX(100%);
  transition: transform 200ms ease;
  overflow-y: scroll;
  padding: 0; }
  /* line 332, ../scss/style.scss */
  .index ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    /* line 338, ../scss/style.scss */
    .index ul li a,
    .index ul li a:visited {
      font-weight: 500; }
  /* line 344, ../scss/style.scss */
  .index nav {
    padding: 3rem; }
    /* line 345, ../scss/style.scss */
    .index nav > a {
      margin-top: .65em;
      text-transform: uppercase; }
      /* line 348, ../scss/style.scss */
      .index nav > a:first-child {
        margin-top: 0em; }
      /* line 351, ../scss/style.scss */
      .index nav > a:not(:last-child) {
        border-bottom: 1px solid #ff4200;
        margin-bottom: .5em;
        padding-bottom: .25em; }
    /* line 358, ../scss/style.scss */
    .index nav a,
    .index nav a:visited {
      width: 100%;
      display: block;
      clear: both;
      color: #ff4200;
      font-weight: 400; }
      /* line 365, ../scss/style.scss */
      .index nav a::before,
      .index nav a:visited::before {
        content: "\2192";
        margin-right: .5em;
        -moz-transition: all 100ms ease;
        -o-transition: all 100ms ease;
        -webkit-transition: all 100ms ease;
        transition: all 100ms ease;
        font-size: 0px;
        line-height: .8em; }
      /* line 374, ../scss/style.scss */
      .index nav a:hover::before,
      .index nav a:visited:hover::before {
        font-size: 24px; }

/* Sections */
/* line 386, ../scss/style.scss */
main {
  position: relative;
  display: block; }

/* line 390, ../scss/style.scss */
.spacer {
  width: 100%;
  display: block;
  height: 92px; }

/* line 396, ../scss/style.scss */
section {
  position: relative;
  margin-bottom: 0;
  min-height: calc(100vh - 92px); }
  /* line 405, ../scss/style.scss */
  section .container {
    width: calc(100% - 6rem);
    margin: 0 auto; }
  /* line 411, ../scss/style.scss */
  section.full-video {
    min-height: auto;
    margin-bottom: -8px; }
    /* line 415, ../scss/style.scss */
    section.full-video video {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  /* line 422, ../scss/style.scss */
  section.full-image img {
    display: block;
    height: auto;
    width: 100vw;
    margin: 0 auto; }

/* line 435, ../scss/style.scss */
.split {
  height: auto;
  overflow: initial;
  display: inline-block;
  min-height: auto;
  margin-bottom: -9px;
  width: 100%; }
  /* line 443, ../scss/style.scss */
  .split.text-only {
    padding-top: 2rem;
    padding-bottom: 2rem; }
  /* line 448, ../scss/style.scss */
  .split.swap .right {
    float: right; }
  /* line 452, ../scss/style.scss */
  .split .left,
  .split .right {
    width: 50%;
    display: block;
    float: left; }
    /* line 457, ../scss/style.scss */
    .split .left img,
    .split .right img {
      width: 100%;
      height: auto;
      display: block;
      margin: 0;
      padding: 0; }
    /* line 468, ../scss/style.scss */
    .split .left .text,
    .split .right .text {
      padding: 3rem; }
      /* line 476, ../scss/style.scss */
      .split .left .text.line-top,
      .split .right .text.line-top {
        border-top: 2px solid #ff4200;
        margin-top: 3rem;
        padding-top: 0; }
        /* line 480, ../scss/style.scss */
        .split .left .text.line-top img,
        .split .right .text.line-top img {
          width: 150px;
          height: 150px;
          margin-top: 2rem; }
      /* line 486, ../scss/style.scss */
      .split .left .text h2,
      .split .right .text h2 {
        margin-top: 0;
        border-bottom: 2px solid;
        font-size: 1.5rem;
        font-weight: normal;
        margin-bottom: 0;
        padding-bottom: 1rem;
        text-transform: uppercase; }
      /* line 495, ../scss/style.scss */
      .split .left .text h3,
      .split .right .text h3 {
        margin-top: 0rem;
        margin-bottom: 0em;
        line-height: 1em;
        font-weight: normal;
        padding-top: 2rem; }
      /* line 503, ../scss/style.scss */
      .split .left .text p,
      .split .right .text p {
        font-size: 1.5rem; }
        /* line 505, ../scss/style.scss */
        .split .left .text p + h3,
        .split .right .text p + h3 {
          margin-top: 4rem; }
    /* line 510, ../scss/style.scss */
    .split .left video,
    .split .right video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block; }
  /* line 519, ../scss/style.scss */
  .split .right .text.line-top {
    margin-right: 3rem;
    padding-right: 0rem !important;
    padding-top: 1.1rem; }
  /* line 528, ../scss/style.scss */
  .split .left .text.line-top {
    margin-left: 3rem;
    padding-left: 0rem !important; }

/* line 535, ../scss/style.scss */
.center {
  padding: 3rem; }
  /* line 537, ../scss/style.scss */
  .center .text {
    width: 70%;
    margin: 0 auto;
    min-height: calc(100vh - 4rem - 92px);
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
    /* line 545, ../scss/style.scss */
    .center .text h3 {
      text-transform: uppercase; }
    /* line 548, ../scss/style.scss */
    .center .text p,
    .center .text ul,
    .center .text li {
      font-size: 1.5rem; }
    /* line 553, ../scss/style.scss */
    .center .text li {
      margin-bottom: .5rem; }
    /* line 556, ../scss/style.scss */
    .center .text.loud {
      width: 100%;
      text-align: center; }
      /* line 559, ../scss/style.scss */
      .center .text.loud h1 {
        text-transform: uppercase;
        font-size: 4rem;
        margin: 0;
        line-height: 1em; }

/* line 570, ../scss/style.scss */
.sticky {
  position: -webkit-sticky;
  /* for Safari */
  position: sticky;
  top: 92px; }

/* line 581, ../scss/style.scss */
.intro .container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: calc(100vh - 92px - 4rem);
  position: relative;
  border: 2px solid; }
/* line 589, ../scss/style.scss */
.intro .big-illustration {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background-repeat: no-repeat !important; }
  /* line 596, ../scss/style.scss */
  .intro .big-illustration.left {
    left: 0;
    background: url("../css/img/uno.svg"); }
  /* line 600, ../scss/style.scss */
  .intro .big-illustration.right {
    right: 0;
    background: url("../css/img/dos.svg");
    background-position: right center; }
/* line 606, ../scss/style.scss */
.intro h1 {
  margin-top: 0;
  font-size: 6rem;
  margin: 0;
  line-height: 1em;
  padding: .25em 0.45em; }
/* line 616, ../scss/style.scss */
.intro h2 {
  font-size: 7rem;
  font-weight: 400;
  margin: 0;
  line-height: .8em; }

/* line 625, ../scss/style.scss */
.slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: auto;
  margin-bottom: -1px; }
  /* line 631, ../scss/style.scss */
  .slider .single-slide {
    width: 100%;
    min-height: auto;
    display: flex;
    justify-content: center;
    align-items: center; }
    /* line 639, ../scss/style.scss */
    .slider .single-slide video {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    /* line 644, ../scss/style.scss */
    .slider .single-slide img {
      width: 100%;
      height: auto;
      display: block;
      margin-bottom: 0;
      object-fit: cover; }
    /* line 651, ../scss/style.scss */
    .slider .single-slide.phrase {
      display: -webkit-box;
      display: -moz-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      justify-content: center; }

/* line 657, ../scss/style.scss */
button.slick-arrow {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  z-index: 1;
  top: 50%;
  border: none;
  outline: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  background: transparent;
  color: white;
  font-size: 0.000001rem;
  opacity: .15; }
  /* line 671, ../scss/style.scss */
  button.slick-arrow.slick-prev {
    left: 2rem; }
    /* line 673, ../scss/style.scss */
    button.slick-arrow.slick-prev::before {
      content: "\2190";
      display: block;
      font-size: 4rem;
      background: black;
      border-radius: 2em;
      width: 1em;
      padding-left: .25em;
      padding-right: 0.25em;
      padding-top: .15em;
      padding-bottom: .15em;
      margin-top: -1em; }
  /* line 687, ../scss/style.scss */
  button.slick-arrow.slick-next {
    right: 2rem; }
    /* line 689, ../scss/style.scss */
    button.slick-arrow.slick-next::after {
      content: "\2192";
      display: block;
      font-size: 4rem;
      background: black;
      border-radius: 2em;
      width: 1em;
      padding-left: .25em;
      padding-right: 0.25em;
      padding-top: .15em;
      padding-bottom: .15em;
      margin-top: -1em; }
  /* line 703, ../scss/style.scss */
  button.slick-arrow:hover {
    opacity: 1; }
    /* line 706, ../scss/style.scss */
    button.slick-arrow:hover::after {
      background: #ff4200; }
    /* line 709, ../scss/style.scss */
    button.slick-arrow:hover::before {
      background: #ff4200; }

/* line 717, ../scss/style.scss */
a.phone,
a.linkedin,
a.mail {
  color: #ff4200;
  -moz-transition: color 200ms ease;
  -o-transition: color 200ms ease;
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
  line-height: 2rem;
  line-height: 40px; }
  /* line 722, ../scss/style.scss */
  a.phone:active,
  a.linkedin:active,
  a.mail:active {
    color: #ff4200; }
  /* line 725, ../scss/style.scss */
  a.phone:visited,
  a.linkedin:visited,
  a.mail:visited {
    color: #ff4200; }
  /* line 728, ../scss/style.scss */
  a.phone:hover,
  a.linkedin:hover,
  a.mail:hover {
    color: #cccccc;
    cursor: pointer; }
  /* line 733, ../scss/style.scss */
  a.phone:before,
  a.linkedin:before,
  a.mail:before {
    height: 2rem;
    width: 2rem;
    content: '';
    display: block;
    float: left;
    margin-right: 1rem; }

/* line 743, ../scss/style.scss */
a.mail {
  word-wrap: break-word; }
  /* line 745, ../scss/style.scss */
  a.mail:before {
    background: url("../media/mail.svg");
    background-position-y: 2px;
    background-repeat: no-repeat; }

/* line 752, ../scss/style.scss */
a.phone:before {
  background: url("../media/phone.svg");
  background-repeat: no-repeat; }

/* line 759, ../scss/style.scss */
a.linkedin:before {
  background: url("../media/linkedin.svg");
  background-position-y: 1px;
  background-repeat: no-repeat; }

/* line 766, ../scss/style.scss */
#contacto iframe {
  width: 100%;
  height: calc(100vh - 92px); }
/* line 770, ../scss/style.scss */
#contacto #mapid {
  height: 100vh;
  width: 50vw;
  z-index: 1; }

/* line 778, ../scss/style.scss */
section.center .loud .sub-menu {
  display: none; }

/* Expanded Menu in Desktop */
@media only screen and (min-width: 1210px) {
  /* line 787, ../scss/style.scss */
  input[type="checkbox"] {
    display: none; }

  /* line 790, ../scss/style.scss */
  section.index {
    transform: translateX(0%) !important;
    top: 0px;
    padding-right: 3rem;
    height: 90px !important;
    min-height: 90px;
    overflow: hidden;
    width: 65%;
    background: transparent; }
    /* line 799, ../scss/style.scss */
    section.index nav {
      display: -webkit-box;
      display: -moz-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      -webkit-justify-content: end;
      -moz-justify-content: end;
      justify-content: end;
      width: 100%;
      padding: 0; }
      /* line 804, ../scss/style.scss */
      section.index nav > a {
        border-bottom: 0px !important;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
        padding-bottom: 0px !important;
        text-transform: capitalize;
        line-height: 90px;
        margin-right: 1em;
        -moz-transition: color 200ms;
        -o-transition: color 200ms;
        -webkit-transition: color 200ms;
        transition: color 200ms; }
        /* line 812, ../scss/style.scss */
        section.index nav > a:before {
          display: none !important; }
        /* line 816, ../scss/style.scss */
        section.index nav > a:first-child {
          margin-top: 0px !important;
          display: none; }
        /* line 820, ../scss/style.scss */
        section.index nav > a:last-child {
          margin-right: 0em !important; }
      /* line 825, ../scss/style.scss */
      section.index nav:hover > a {
        color: #cccccc; }
        /* line 827, ../scss/style.scss */
        section.index nav:hover > a:hover {
          color: #ff4200; }
    /* line 833, ../scss/style.scss */
    section.index nav a,
    section.index nav a:visited {
      width: auto;
      float: left;
      clear: none; }
    /* line 839, ../scss/style.scss */
    section.index ul {
      display: none; }

  /* line 845, ../scss/style.scss */
  section.center .loud .sub-menu {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    /* line 847, ../scss/style.scss */
    section.center .loud .sub-menu ul {
      list-style: none; }
  /* line 859, ../scss/style.scss */
  section.center.blue .loud .sub-menu {
    padding-top: 2rem; }
    /* line 861, ../scss/style.scss */
    section.center.blue .loud .sub-menu ul {
      padding: 0;
      margin: 0; }
      /* line 865, ../scss/style.scss */
      section.center.blue .loud .sub-menu ul li:last-child {
        margin-bottom: 0px; }
      /* line 868, ../scss/style.scss */
      section.center.blue .loud .sub-menu ul li a,
      section.center.blue .loud .sub-menu ul li a:visited {
        color: white; }
        /* line 871, ../scss/style.scss */
        section.center.blue .loud .sub-menu ul li a::before,
        section.center.blue .loud .sub-menu ul li a:visited::before {
          content: "\2192";
          margin-right: .5em;
          -moz-transition: all 100ms ease;
          -o-transition: all 100ms ease;
          -webkit-transition: all 100ms ease;
          transition: all 100ms ease;
          font-size: 0px;
          line-height: .8em; }
        /* line 880, ../scss/style.scss */
        section.center.blue .loud .sub-menu ul li a:hover::before,
        section.center.blue .loud .sub-menu ul li a:visited:hover::before {
          font-size: 24px; } }
/* MEDIA QUERIES */
@media only screen and (max-width: 767px) {
  /* line 897, ../scss/style.scss */
  body {
    font-size: 20px; }

  /* line 900, ../scss/style.scss */
  h1, h2, h3, h4, h5, h6, h7 {
    font-size: 20px;
    line-height: .9em;
    font-weight: 400; }

  /* line 907, ../scss/style.scss */
  .disclaimer.visible {
    height: 100%; }
  /* line 910, ../scss/style.scss */
  .disclaimer .disclaimer-text {
    padding: 1rem;
    height: auto;
    width: calc(80vw - 2rem);
    font-size: 1.5rem; }
    /* line 915, ../scss/style.scss */
    .disclaimer .disclaimer-text p {
      font-size: 1.5rem; }
    /* line 918, ../scss/style.scss */
    .disclaimer .disclaimer-text a.accept,
    .disclaimer .disclaimer-text a.accept:visited,
    .disclaimer .disclaimer-text a.accept:active {
      padding: .5em; }

  /* line 925, ../scss/style.scss */
  header {
    width: calc(100vw - 4rem);
    padding-left: 2rem;
    padding-right: 2rem; }
    /* line 929, ../scss/style.scss */
    header h4 {
      font-size: 20px; }
      /* line 931, ../scss/style.scss */
      header h4 span.hideme {
        display: none; }

  /* line 936, ../scss/style.scss */
  .index {
    width: 100vw; }

  /* line 940, ../scss/style.scss */
  section:not(.intro) {
    min-height: auto !important; }
  /* line 944, ../scss/style.scss */
  section.intro .container {
    width: calc(100% - 4rem); }
    @supports (-webkit-touch-callout: none) {
      /* line 944, ../scss/style.scss */
      section.intro .container {
        /* CSS specific to iOS devices */
        min-height: calc(100vh - 92px - 7rem); } }
  /* line 951, ../scss/style.scss */
  section.intro h1 {
    font-size: 2.5rem; }
  /* line 954, ../scss/style.scss */
  section.intro h2 {
    font-size: 1.5rem;
    margin-top: 1rem; }
  /* line 959, ../scss/style.scss */
  section.split {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    clear: both; }
    /* line 963, ../scss/style.scss */
    section.split .left,
    section.split .right {
      width: 100% !important; }
      /* line 966, ../scss/style.scss */
      section.split .left.sticky,
      section.split .right.sticky {
        position: relative;
        top: 0; }
      /* line 970, ../scss/style.scss */
      section.split .left .text,
      section.split .right .text {
        padding: 2rem; }
        /* line 972, ../scss/style.scss */
        section.split .left .text h2,
        section.split .right .text h2 {
          font-size: 20px; }
        /* line 975, ../scss/style.scss */
        section.split .left .text ul,
        section.split .right .text ul {
          padding: 0; }
          /* line 977, ../scss/style.scss */
          section.split .left .text ul li,
          section.split .right .text ul li {
            list-style-position: inside;
            padding-bottom: 1em; }
        /* line 982, ../scss/style.scss */
        section.split .left .text.line-top,
        section.split .right .text.line-top {
          padding: 2rem 0 !important;
          margin: 0 2rem !important; }
          /* line 986, ../scss/style.scss */
          section.split .left .text.line-top img,
          section.split .right .text.line-top img {
            width: 100px;
            height: 100px; }
        /* line 991, ../scss/style.scss */
        section.split .left .text p,
        section.split .right .text p {
          font-size: 20px; }
    /* line 999, ../scss/style.scss */
    section.split .right .text.line-top {
      border-top: none !important; }
    /* line 1006, ../scss/style.scss */
    section.split .left .text.line-top {
      padding-top: 0px !important;
      padding-bottom: 0px !important; }
  /* line 1013, ../scss/style.scss */
  section.center {
    padding: 2rem; }
    /* line 1015, ../scss/style.scss */
    section.center .text {
      width: 100%; }
      /* line 1018, ../scss/style.scss */
      section.center .text:not(.loud) {
        min-height: auto; }
      /* line 1021, ../scss/style.scss */
      section.center .text p {
        font-size: 20px; }
      /* line 1030, ../scss/style.scss */
      section.center .text h3 {
        text-transform: capitalize;
        text-align: left;
        width: 100%; }
      /* line 1036, ../scss/style.scss */
      section.center .text.loud h1 {
        text-transform: uppercase;
        font-size: 3rem; }
        /* line 1039, ../scss/style.scss */
        section.center .text.loud h1 span {
          clear: both;
          display: block;
          margin: .5em 0; }
    /* line 1047, ../scss/style.scss */
    section.center + .split .left .text.line-top {
      border-top: 0px !important; }

  /* line 1052, ../scss/style.scss */
  button.slick-arrow.slick-next {
    right: .5rem; }
    /* line 1054, ../scss/style.scss */
    button.slick-arrow.slick-next::after {
      font-size: 1.5rem;
      margin-top: -.75em; }

  /* line 1059, ../scss/style.scss */
  button.slick-arrow.slick-prev {
    left: .5rem; }
    /* line 1061, ../scss/style.scss */
    button.slick-arrow.slick-prev::before {
      font-size: 1.5rem;
      margin-top: -.75em; }

  /* line 1067, ../scss/style.scss */
  #contacto #mapid {
    height: 50vh;
    width: 100vw; }

  /* line 1074, ../scss/style.scss */
  header .index nav {
    padding: 2rem; }
    /* line 1076, ../scss/style.scss */
    header .index nav a::before {
      display: none; } }

/*# sourceMappingURL=style.css.map */
