@charset "UTF-8";
input,
textarea {
  border: none;
  border: 1px solid #8f8f8f;
  padding: .5rem 1rem; }

/*
	Media Query mixin
	See https://github.com/sass-mq/sass-mq/ for original full version.
	@example scss
	 .element {
	   @include mq($from: mobile) {
		 color: red;
	   }
	   @include mq($to: tablet) {
		 color: blue;
	   }
	   @include mq(mobile, tablet) {
		 color: green;
	   }
	   @include mq($from: tablet, $and: '(orientation: landscape)') {
		 color: teal;
	   }
	   @include mq(em(950px)) {
		 color: hotpink;
	   }
	   @include mq(em(950px), $media-feature: height) {
		 color: hotpink;
	   }
	   @include mq(tablet, $media-type: screen) {
		 color: hotpink;
	   }
	   // Advanced use:
	   $custom-breakpoints: (L: 900px, XL: 1200px);
	   @include mq(L, $bp: $custom-breakpoints) {
		 color: hotpink;
	   }
	 }
*/
.--desktop {
  display: block; }
  @media (max-width: 48em) {
    .--desktop {
      display: none; } }

.--mobile {
  display: none; }
  @media (max-width: 48em) {
    .--mobile {
      display: block; } }

.--tablet {
  display: none; }
  @media (max-width: 64em) {
    .--tablet {
      display: block; } }

.whatsapp-section {
  position: fixed;
  bottom: 3%;
  right: 3%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.whatsapp-section .whatsapp-message {
  max-width: 200px;
  font-size: 1.35rem;
  background-color: #f1f1f1;
  padding: 0.5rem 1rem;
  line-height: 2rem;
  margin-right: 7.5rem;
  position: relative; }

.whatsapp-section .whatsapp-message .right-arrow {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-left: 14px solid #f1f1f1;
  border-bottom: 7px solid transparent;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -14px; }

.green-whatsapp {
  background-color: #4dc247;
  position: fixed;
  bottom: 6%;
  right: 3%;
  z-index: 1;
  width: 55px;
  height: 55px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  display: none;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2); }
  .green-whatsapp img {
    width: 35px;
    height: 35px; }

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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; }

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

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

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

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

a {
  color: inherit;
  text-decoration: none; }

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
     ========================================================================== */
/**
   * Remove the margin in all browsers.
   */
body {
  margin: 0; }

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
     ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
     ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   */
a {
  background-color: transparent; }

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */ }

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder; }

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%; }

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
     ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none; }

/* Forms
     ========================================================================== */
/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible; }

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
button,
select {
  /* 1 */
  text-transform: none; }

/**
   * Correct the inability to style clickable types in iOS and Safari.
   */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
   * Correct the padding in Firefox.
   */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline; }

/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto; }

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
     ========================================================================== */
/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
details {
  display: block; }

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item; }

/* Misc
     ========================================================================== */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none; }

/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none; }

html {
  font-size: 62.5%;
  font-family: "Helvetica", sans-serif; }

body {
  overflow-x: hidden; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

hr {
  border: 0;
  width: 100%;
  background: #fff;
  height: 1px;
  margin: 1rem 0; }

img {
  max-width: 100%;
  display: block; }

a {
  color: #fff; }
  a:hover {
    color: inherit;
    text-decoration: none; }
  a:focus {
    color: inherit;
    text-decoration: none; }

input:hover {
  outline: none; }

input:focus {
  outline: none; }

textarea {
  resize: none; }

*:focus {
  outline: none !important; }

.hidden {
  display: none; }

.toast-top-right {
  top: 56px !important;
  right: 12px; }

.sweet-alert button {
  text-transform: uppercase;
  font-size: 14px;
  margin: 0 0.5rem;
  border-radius: 0; }

.sweet-alert fieldset {
  display: none; }

.ribbon {
  position: absolute;
  width: 10rem;
  text-align: center;
  background-color: transparent;
  z-index: 3;
  top: 1.5%;
  font-size: 1.1rem;
  line-height: 2rem;
  padding: 0.4rem 1.4rem;
  font-weight: 700;
  text-transform: uppercase; }
  .ribbon span {
    position: relative;
    z-index: 100;
    font-family: PlayFair;
    font-variant-numeric: lining-nums; }
  .ribbon:after {
    content: "";
    display: inline-block;
    border-top-width: 2.8rem;
    border-top-style: solid;
    border-left: 0px;
    height: 0;
    min-width: 6.8rem;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0; }

.dark-grey {
  background-color: #5d5d5d;
  color: #fff; }

.dark-grey.ribbon {
  background-color: transparent; }

.dark-grey.ribbon:after {
  border-top-color: #5d5d5d; }

.height-28 {
  height: 28px !important; }

.display-mobile {
  display: none; }
  @media (max-width: 64em) {
    .display-mobile {
      display: block; } }

.display-desktop {
  display: block; }
  @media (max-width: 64em) {
    .display-desktop {
      display: none; } }

@font-face {
  font-family: 'Helvetica';
  src: url("/content/fonts/Helvetica.eot");
  src: url("/content/fonts/Helvetica.eot") format("embedded-opentype"), url("/content/fonts/Helvetica.woff2") format("woff2"), url("/content/fonts/Helvetica.woff") format("woff"), url("/content/fonts/Helvetica.ttf") format("truetype"), url("/content/fonts/Helvetica.svg#Helvetica") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Helvetica';
  src: url("/content/fonts/HelveticaOblique.eot");
  src: url("/content/fonts/HelveticaOblique.eot") format("embedded-opentype"), url("/content/fonts/HelveticaOblique.woff2") format("woff2"), url("/content/fonts/HelveticaOblique.woff") format("woff"), url("/content/fonts/HelveticaOblique.ttf") format("truetype"), url("/content/fonts/HelveticaOblique.svg#HelveticaOblique") format("svg");
  font-weight: normal;
  font-style: italic; }

@font-face {
  font-family: 'Helvetica';
  src: url("/content/fonts/HelveticaLight.eot");
  src: url("/content/fonts/HelveticaLight.eot") format("embedded-opentype"), url("/content/fonts/HelveticaLight.woff2") format("woff2"), url("/content/fonts/HelveticaLight.woff") format("woff"), url("/content/fonts/HelveticaLight.ttf") format("truetype"), url("/content/fonts/HelveticaLight.svg#HelveticaLight") format("svg");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'Helvetica';
  src: url("/content/fonts/HelveticaLightOblique.eot");
  src: url("/content/fonts/HelveticaLightOblique.eot") format("embedded-opentype"), url("/content/fonts/HelveticaLightOblique.woff2") format("woff2"), url("/content/fonts/HelveticaLightOblique.woff") format("woff"), url("/content/fonts/HelveticaLightOblique.ttf") format("truetype"), url("/content/fonts/HelveticaLightOblique.svg#HelveticaLightOblique") format("svg");
  font-weight: 300;
  font-style: italic; }

@font-face {
  font-family: 'Helvetica';
  src: url("/content/fonts/HelveticaBold.eot");
  src: url("/content/fonts/HelveticaBold.eot") format("embedded-opentype"), url("/content/fonts/HelveticaBold.woff2") format("woff2"), url("/content/fonts/HelveticaBold.woff") format("woff"), url("/content/fonts/HelveticaBold.ttf") format("truetype"), url("/content/fonts/HelveticaBold.svg#HelveticaBold") format("svg");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'Helvetica';
  src: url("/content/fonts/HelveticaBoldOblique.eot");
  src: url("/content/fonts/HelveticaBoldOblique.eot") format("embedded-opentype"), url("/content/fonts/HelveticaBoldOblique.woff2") format("woff2"), url("/content/fonts/HelveticaBoldOblique.woff") format("woff"), url("/content/fonts/HelveticaBoldOblique.ttf") format("truetype"), url("/content/fonts/HelveticaBoldOblique.svg#HelveticaBoldOblique") format("svg");
  font-weight: bold;
  font-style: italic; }

@font-face {
  font-family: 'RalewayBold';
  src: url("/content/fonts/Raleway-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: italic; }

@font-face {
  font-family: 'Raleway';
  src: url("/content/fonts/Raleway-Light.ttf") format("truetype");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'RalewayRegular';
  src: url("/content/fonts/Raleway-Regular.ttf") format("truetype");
  font-style: normal; }

body {
  font-size: 1.6rem; }

h1 {
  font-size: 3.2rem;
  margin: 1.25rem 0; }

h2 {
  font-size: 2.6rem;
  margin: 1rem 0; }

h3 {
  font-size: 2.2rem;
  margin: .75rem 0; }

h4 {
  font-size: 1.8rem;
  margin: .75rem 0; }

h5 {
  font-size: 1.6rem;
  margin: .75rem 0; }

h6 {
  font-size: 1.4rem;
  margin: .75rem 0; }

p {
  line-height: 20px; }

strong {
  font-weight: 700; }

::-moz-selection {
  background: #006db0;
  color: #fff; }

::selection {
  background: #006db0;
  color: #fff; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Slider */
.slick-loading .slick-list {
  background: #fff url("/content/images/ajax-loader.gif") center center no-repeat; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url("/content/fonts/slick.eot");
  src: url("/content/fonts/slick.eot?#iefix") format("embedded-opentype"), url("/content/fonts/slick.woff") format("woff"), url("/content/fonts/slick.ttf") format("truetype"), url("/content/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "←"; }
    [dir="rtl"] .slick-prev:before {
      content: "→"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "→"; }
    [dir="rtl"] .slick-next:before {
      content: "←"; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

body.stop-scrolling {
  height: 100%;
  overflow: hidden; }

.sweet-overlay {
  background-color: black;
  /* IE8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE8 */
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 1000000; }

.sweet-alert {
  background-color: white;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 9999999; }

@media all and (max-width: 540px) {
  .sweet-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px; } }

.sweet-alert h2 {
  color: #575757;
  font-size: 30px;
  text-align: center;
  font-weight: 300;
  text-transform: none;
  position: relative;
  margin: 25px 0;
  padding: 0;
  line-height: 40px;
  display: block; }

.sweet-alert p {
  color: #797979;
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  position: relative;
  text-align: inherit;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal; }

.sweet-alert fieldset {
  border: none;
  position: relative; }

.sweet-alert .sa-error-container {
  background-color: #f1f1f1;
  margin-left: -17px;
  margin-right: -17px;
  overflow: hidden;
  padding: 0 10px;
  max-height: 0;
  webkit-transition: padding 0.15s, max-height 0.15s;
  -webkit-transition: padding 0.15s, max-height 0.15s;
  -o-transition: padding 0.15s, max-height 0.15s;
  transition: padding 0.15s, max-height 0.15s; }

.sweet-alert .sa-error-container.show {
  padding: 10px 0;
  max-height: 100px;
  webkit-transition: padding 0.2s, max-height 0.2s;
  -webkit-transition: padding 0.25s, max-height 0.25s;
  -o-transition: padding 0.25s, max-height 0.25s;
  transition: padding 0.25s, max-height 0.25s; }

.sweet-alert .sa-error-container .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ea7d7d;
  color: white;
  line-height: 24px;
  text-align: center;
  margin-right: 3px; }

.sweet-alert .sa-error-container p {
  display: inline-block; }

.sweet-alert .sa-input-error {
  position: absolute;
  top: 29px;
  right: 26px;
  width: 20px;
  height: 20px;
  opacity: 0;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s; }

.sweet-alert .sa-input-error::before, .sweet-alert .sa-input-error::after {
  content: "";
  width: 20px;
  height: 6px;
  background-color: #f06e57;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 50%;
  margin-left: -9px; }

.sweet-alert .sa-input-error::before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.sweet-alert .sa-input-error::after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.sweet-alert .sa-input-error.show {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.sweet-alert input {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  height: 43px;
  margin-top: 10px;
  margin-bottom: 17px;
  font-size: 18px;
  -webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
  padding: 0 12px;
  display: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

.sweet-alert input:focus {
  outline: none;
  -webkit-box-shadow: 0px 0px 3px #c4e6f5;
  box-shadow: 0px 0px 3px #c4e6f5;
  border: 1px solid #b4dbed; }

.sweet-alert input:focus::-moz-placeholder {
  -webkit-transition: opacity 0.3s 0.03s ease;
  -o-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5; }

.sweet-alert input:focus:-ms-input-placeholder {
  -webkit-transition: opacity 0.3s 0.03s ease;
  -o-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5; }

.sweet-alert input:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s 0.03s ease;
  -o-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5; }

.sweet-alert input::-moz-placeholder {
  color: #bdbdbd; }

.sweet-alert input:-ms-input-placeholder {
  color: #bdbdbd; }

.sweet-alert input::-webkit-input-placeholder {
  color: #bdbdbd; }

.sweet-alert.show-input input {
  display: block; }

.sweet-alert .sa-confirm-button-container {
  display: inline-block;
  position: relative; }

.sweet-alert .la-ball-fall {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -27px;
  margin-top: 4px;
  opacity: 0;
  visibility: hidden; }

.sweet-alert button {
  background-color: #8CD4F5;
  color: white;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  -webkit-border-radius: 4px;
  border-radius: 5px;
  padding: 10px 32px;
  margin: 26px 5px 0 5px;
  cursor: pointer; }

.sweet-alert button:focus {
  outline: none;
  -webkit-box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05); }

.sweet-alert button:hover {
  background-color: #7ecff4; }

.sweet-alert button:active {
  background-color: #5dc2f1; }

.sweet-alert button.cancel {
  background-color: #C1C1C1; }

.sweet-alert button.cancel:hover {
  background-color: #b9b9b9; }

.sweet-alert button.cancel:active {
  background-color: #a8a8a8; }

.sweet-alert button.cancel:focus {
  -webkit-box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important;
  box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important; }

.sweet-alert button[disabled] {
  opacity: .6;
  cursor: default; }

.sweet-alert button.confirm[disabled] {
  color: transparent; }

.sweet-alert button.confirm[disabled] ~ .la-ball-fall {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s; }

.sweet-alert button::-moz-focus-inner {
  border: 0; }

.sweet-alert[data-has-cancel-button=false] button {
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
  padding-bottom: 10px; }

.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

.sweet-alert .sa-icon.sa-error {
  border-color: #F27474; }

.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block; }

.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #F27474;
  display: block;
  top: 37px;
  border-radius: 2px; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 17px; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 16px; }

.sweet-alert .sa-icon.sa-warning {
  border-color: #F8BB86; }

.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #F8BB86; }

.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #F8BB86; }

.sweet-alert .sa-icon.sa-info {
  border-color: #C9DAE1; }

.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #C9DAE1; }

.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #C9DAE1; }

.sweet-alert .sa-icon.sa-success {
  border-color: #A5DC86; }

.sweet-alert .sa-icon.sa-success::before, .sweet-alert .sa-icon.sa-success::after {
  content: '';
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: white;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.sweet-alert .sa-icon.sa-success::before {
  -webkit-border-radius: 120px 0 0 120px;
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 60px 60px;
  -ms-transform-origin: 60px 60px;
  transform-origin: 60px 60px; }

.sweet-alert .sa-icon.sa-success::after {
  -webkit-border-radius: 0 120px 120px 0;
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0px 60px;
  -ms-transform-origin: 0px 60px;
  transform-origin: 0px 60px; }

.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165, 220, 134, 0.2);
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2; }

.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: white;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #A5DC86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat; }

/*
 * Animations
 */
@-webkit-keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7); }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05); }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7); }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05); }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

@-webkit-keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1); }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5); } }

@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1); }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5); } }

@-webkit-keyframes slideFromTop {
  0% {
    top: 0%; }
  100% {
    top: 50%; } }

@keyframes slideFromTop {
  0% {
    top: 0%; }
  100% {
    top: 50%; } }

@-webkit-keyframes slideToTop {
  0% {
    top: 50%; }
  100% {
    top: 0%; } }

@keyframes slideToTop {
  0% {
    top: 50%; }
  100% {
    top: 0%; } }

@-webkit-keyframes slideFromBottom {
  0% {
    top: 70%; }
  100% {
    top: 50%; } }

@keyframes slideFromBottom {
  0% {
    top: 70%; }
  100% {
    top: 50%; } }

@-webkit-keyframes slideToBottom {
  0% {
    top: 50%; }
  100% {
    top: 70%; } }

@keyframes slideToBottom {
  0% {
    top: 50%; }
  100% {
    top: 70%; } }

.showSweetAlert[data-animation=pop] {
  -webkit-animation: showSweetAlert 0.3s;
  animation: showSweetAlert 0.3s; }

.showSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none; }

.showSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideFromTop 0.3s;
  animation: slideFromTop 0.3s; }

.showSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideFromBottom 0.3s;
  animation: slideFromBottom 0.3s; }

.hideSweetAlert[data-animation=pop] {
  -webkit-animation: hideSweetAlert 0.2s;
  animation: hideSweetAlert 0.2s; }

.hideSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none; }

.hideSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideToTop 0.4s;
  animation: slideToTop 0.4s; }

.hideSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideToBottom 0.3s;
  animation: slideToBottom 0.3s; }

@-webkit-keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px; }
  54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;
    top: 45px; } }

@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px; }
  54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;
    top: 45px; } }

@-webkit-keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px; }
  65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0px;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }

@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px; }
  65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0px;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }

@-webkit-keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); } }

@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); } }

.animateSuccessTip {
  -webkit-animation: animateSuccessTip 0.75s;
  animation: animateSuccessTip 0.75s; }

.animateSuccessLong {
  -webkit-animation: animateSuccessLong 0.75s;
  animation: animateSuccessLong 0.75s; }

.sa-icon.sa-success.animate::after {
  -webkit-animation: rotatePlaceholder 4.25s ease-in;
  animation: rotatePlaceholder 4.25s ease-in; }

@-webkit-keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0; }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1; } }

@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0; }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1; } }

.animateErrorIcon {
  -webkit-animation: animateErrorIcon 0.5s;
  animation: animateErrorIcon 0.5s; }

@-webkit-keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px; }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1; } }

@keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px; }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1; } }

.animateXMark {
  -webkit-animation: animateXMark 0.5s;
  animation: animateXMark 0.5s; }

@-webkit-keyframes pulseWarning {
  0% {
    border-color: #F8D486; }
  100% {
    border-color: #F8BB86; } }

@keyframes pulseWarning {
  0% {
    border-color: #F8D486; }
  100% {
    border-color: #F8BB86; } }

.pulseWarning {
  -webkit-animation: pulseWarning 0.75s infinite alternate;
  animation: pulseWarning 0.75s infinite alternate; }

@-webkit-keyframes pulseWarningIns {
  0% {
    background-color: #F8D486; }
  100% {
    background-color: #F8BB86; } }

@keyframes pulseWarningIns {
  0% {
    background-color: #F8D486; }
  100% {
    background-color: #F8BB86; } }

.pulseWarningIns {
  -webkit-animation: pulseWarningIns 0.75s infinite alternate;
  animation: pulseWarningIns 0.75s infinite alternate; }

@-webkit-keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/* Internet Explorer 9 has some special quirks that are fixed here */
/* The icons are not animated. */
/* This file is automatically merged into sweet-alert.min.js through Gulp */
/* Error icon */
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -ms-transform: rotate(45deg) \9; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -ms-transform: rotate(-45deg) \9; }

/* Success icon */
.sweet-alert .sa-icon.sa-success {
  border-color: transparent\9; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  -ms-transform: rotate(45deg) \9; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  -ms-transform: rotate(-45deg) \9; }

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-fall,
.la-ball-fall > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.la-ball-fall {
  display: block;
  font-size: 0;
  color: #fff; }

.la-ball-fall.la-dark {
  color: #333; }

.la-ball-fall > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor; }

.la-ball-fall {
  width: 54px;
  height: 18px; }

.la-ball-fall > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: ball-fall 1s ease-in-out infinite;
  -moz-animation: ball-fall 1s ease-in-out infinite;
  -o-animation: ball-fall 1s ease-in-out infinite;
  animation: ball-fall 1s ease-in-out infinite; }

.la-ball-fall > div:nth-child(1) {
  -webkit-animation-delay: -200ms;
  -moz-animation-delay: -200ms;
  -o-animation-delay: -200ms;
  animation-delay: -200ms; }

.la-ball-fall > div:nth-child(2) {
  -webkit-animation-delay: -100ms;
  -moz-animation-delay: -100ms;
  -o-animation-delay: -100ms;
  animation-delay: -100ms; }

.la-ball-fall > div:nth-child(3) {
  -webkit-animation-delay: 0ms;
  -moz-animation-delay: 0ms;
  -o-animation-delay: 0ms;
  animation-delay: 0ms; }

.la-ball-fall.la-sm {
  width: 26px;
  height: 8px; }

.la-ball-fall.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px; }

.la-ball-fall.la-2x {
  width: 108px;
  height: 36px; }

.la-ball-fall.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px; }

.la-ball-fall.la-3x {
  width: 162px;
  height: 54px; }

.la-ball-fall.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px; }

/*
 * Animation
 */
@-webkit-keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    transform: translateY(145%); } }

@-moz-keyframes ball-fall {
  0% {
    opacity: 0;
    -moz-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -moz-transform: translateY(145%);
    transform: translateY(145%); } }

@-o-keyframes ball-fall {
  0% {
    opacity: 0;
    -o-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -o-transform: translateY(145%);
    transform: translateY(145%); } }

@keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    -moz-transform: translateY(-145%);
    -o-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    -moz-transform: translateY(145%);
    -o-transform: translateY(145%);
    transform: translateY(145%); } }

.button {
  -webkit-transition: all 200ms ease-out;
  -moz-transition: all 200ms ease-out;
  -ms-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  display: block;
  background: #000;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  width: 80%;
  padding: 1rem 2rem;
  border: 1px solid transparent; }
  .button:hover {
    background: #000;
    color: #fff; }
  .button:focus {
    background: #000;
    color: #fff; }
  .button--large {
    padding: 2rem 2rem; }

.form_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .form_contact textarea {
    margin: 15px auto; }
  .form_contact .button {
    margin: 15px auto; }

.hamburger {
  display: block;
  position: relative;
  width: 50px;
  height: 100%;
  margin-left: 2rem; }
  .hamburger__bread, .hamburger__patty {
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -ms-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 1px;
    background-color: white; }
  .hamburger__bread {
    margin-top: -8px; }
    .hamburger__bread ~ .hamburger__bread {
      margin-top: 8px; }

#header-menu-switch:checked ~ .header .hamburger__patty {
  display: none; }

#header-menu-switch:checked ~ .header .hamburger__bread {
  -webkit-transform: translate(0, 10px) rotate(45deg);
  -ms-transform: translate(0, 10px) rotate(45deg);
  transform: translate(0, 10px) rotate(45deg); }
  #header-menu-switch:checked ~ .header .hamburger__bread ~ .hamburger__bread {
    -webkit-transform: translate(0, -6px) rotate(-45deg);
    -ms-transform: translate(0, -6px) rotate(-45deg);
    transform: translate(0, -6px) rotate(-45deg); }

.scroll-balloon {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 1rem 1rem;
  padding: 1rem;
  background: #006db0;
  z-index: 9;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2); }
  @media (max-width: 64em) {
    .scroll-balloon {
      display: block; } }

.topBar {
  height: 30px;
  width: 100%;
  line-height: 35px;
  text-align: right;
  color: #ffffff;
  background-color: #2d2d2d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }

.header {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  @media (max-width: 64em) {
    .header {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
      margin-right: 0; } }
  .header .logo-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: .75rem 0; }
    .header .logo-wrapper .logo {
      height: 35px; }
  .header .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .header .urban {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .header .nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end; }
  .header__hamburger {
    display: none; }
  @media (max-width: 64em) {
    .header {
      padding: 0; }
      .header .header__hamburger {
        display: block; }
      .header .nav-menu {
        display: none; } }

.contact-social {
  font-size: 19px;
  background-color: #2d2d2d;
  height: 35px;
  line-height: 35px;
  text-align: right;
  color: #ffffff; }
  .contact-social .contenedor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    @media (max-width: 64em) {
      .contact-social .contenedor {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; } }
  .contact-social__item {
    color: white;
    background-color: #ec1b24;
    padding: 5px 1rem; }
  .contact-social .social-links {
    font-size: 0;
    webkit-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .contact-social .social-links a {
      background-color: rgba(255, 255, 255, 0);
      font-size: 16px;
      padding: 0.3em;
      -webkit-border-radius: 10%;
      border-radius: 10%;
      margin-right: 1rem; }
      .contact-social .social-links a:last-child {
        margin-right: 10px; }
    .contact-social .social-links i {
      color: white;
      width: 1em;
      height: 1em;
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }

.container-header {
  background: rgba(255, 255, 255, 0.7); }
  @media (max-width: 64em) {
    .container-header {
      background-color: #2d2d2d; } }

.menu {
  width: 100%;
  z-index: 3;
  position: fixed; }
  @media (max-width: 64em) {
    .menu {
      position: -webkit-sticky;
      position: sticky; } }

.bg-modal {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50px;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px; }

.modal-contents {
  height: 550px;
  width: 450px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.55);
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 100;
  border-radius: 4px; }
  .modal-contents input {
    width: 80%;
    height: 40px; }
    .modal-contents input:focus {
      background-color: rgba(255, 255, 255, 0.64); }
  @media (max-width: 64em) {
    .modal-contents {
      width: 90%; } }

input {
  margin: 10px auto;
  display: block;
  width: 50%;
  padding: 8px;
  border: 1px solid gray;
  border-radius: 5px; }

textarea {
  border-radius: 5px; }

.close {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 42px;
  color: #ffffff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  cursor: pointer; }
  .close:hover {
    color: #ccc; }

.containerPrimary {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .containerPrimary .containerSecondary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 75%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .containerPrimary .containerSecondary div:first-child {
      width: 15%;
      height: 100%; }
    .containerPrimary .containerSecondary div img {
      width: 100%; }
    .containerPrimary .containerSecondary .frase {
      width: 45%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
      .containerPrimary .containerSecondary .frase img {
        width: 70%; }
    .containerPrimary .containerSecondary .categories {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      font-family: 'arial',arial,sans-serif;
      font-size: 12px; }
      .containerPrimary .containerSecondary .categories a {
        color: black;
        border-right: 1px solid black;
        padding-right: 2rem;
        margin-left: 10px; }
        .containerPrimary .containerSecondary .categories a:last-child {
          border: none; }

.nav-menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 64em) {
    .nav-menu > ul {
      display: none; } }

.nav-menu__item {
  display: block;
  color: #333;
  white-space: nowrap;
  padding: 1rem .5rem;
  margin: 0 2.5rem;
  border-bottom: 2px solid transparent; }
  .nav-menu__item:hover {
    border-bottom-color: #006db0; }
  .nav-menu__item:focus {
    border-bottom-color: #006db0; }

.pdf-btn {
  padding: 1rem 2rem 1rem 8rem;
  width: 35%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }
  .container--small {
    max-width: 1000px; }

.section {
  padding: 4rem 0; }
  @media (max-width: 64em) {
    .section {
      padding: 2rem 1rem; } }
  .section__title {
    color: #5b5b5f;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem; }
  .section__description {
    color: #5b5b5f;
    font-weight: 300;
    text-align: center; }

#header-menu-switch {
  display: none; }

.toggle-menu {
  display: none;
  background-color: #2d2d2d; }
  @media (max-width: 64em) {
    #header-menu-switch:checked ~ .toggle-menu {
      display: block;
      position: relative; }
      #header-menu-switch:checked ~ .toggle-menu::before, #header-menu-switch:checked ~ .toggle-menu::after {
        right: calc(3rem + 2px);
        z-index: 10; }
      #header-menu-switch:checked ~ .toggle-menu::before {
        content: "";
        display: block;
        position: absolute;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid white;
        margin-bottom: -3px;
        top: -9px; } }
  .toggle-menu__section {
    padding: 1.5rem 0; }
  .toggle-menu__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding: 1rem 2rem 1rem 8rem; }
    .toggle-menu__item .icon {
      position: absolute;
      left: 4rem;
      font-size: 2.2rem;
      margin-right: 1rem;
      min-width: 30px; }
    .toggle-menu__item--outstand {
      color: #000; }
  .toggle-menu__item-input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #333; }

.banner {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Raleway',Arial, sans-serif; }
  .banner .background_color_mobile {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 25%;
    position: absolute; }
    .banner .background_color_mobile .move img {
      z-index: 4; }
  .banner .background_color_video {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    width: 100%;
    height: calc(100vh + 91px);
    top: 0px;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .banner .background_color_video .move {
      width: 50%;
      margin-bottom: 15%;
      -webkit-animation: fade 7s infinite;
      animation: fade 7s infinite;
      -webkit-animation-timing-function: ease-in-out;
      animation-timing-function: ease-in-out; }
      @media (max-width: 64em) {
        .banner .background_color_video .move {
          -webkit-animation: unset;
          animation: unset; } }

@-webkit-keyframes fade {
  0% {
    width: 50%;
    opacity: 1; }
  25% {
    width: 45%;
    opacity: 0.75; }
  50% {
    width: 40%;
    opacity: 0.50; }
  75% {
    width: 45%;
    opacity: 0.75; }
  100% {
    width: 50%;
    opacity: 1; } }

@keyframes fade {
  0% {
    width: 50%;
    opacity: 1; }
  25% {
    width: 45%;
    opacity: 0.75; }
  50% {
    width: 40%;
    opacity: 0.50; }
  75% {
    width: 45%;
    opacity: 0.75; }
  100% {
    width: 50%;
    opacity: 1; } }
  .banner video {
    width: 100%; }
  .banner #video {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 70%; }
  .banner #video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .banner .move {
    -webkit-animation-name: fade , shrink;
    animation-name: fade , shrink;
    -webkit-animation-duration: 1.5s , 1.5s;
    animation-duration: 1.5s , 1.5s;
    -webkit-animation-iteration-count: infinite , infinite;
    animation-iteration-count: infinite , infinite;
    -webkit-animation-direction: alternate , alternate;
    animation-direction: alternate , alternate; }
    @media (max-width: 64em) {
      .banner .move {
        height: 25vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 5%;
        -webkit-animation: unset;
        animation: unset; } }
  .banner-secondary {
    background-image: url("/content/images/home/car-banner.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh; }
    .banner-secondary .text-effect {
      height: 100vh;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      text-align: center; }
      .banner-secondary .text-effect span {
        line-height: 1.7em;
        font-size: 18px;
        text-align: center; }
        .banner-secondary .text-effect span:first-child {
          margin-top: 5rem; }
        @media (max-width: 64em) {
          .banner-secondary .text-effect span {
            padding: 3%; } }
    .banner-secondary h4 {
      font-family: "Arial", Sans-serif;
      font-size: 50px;
      font-weight: 400;
      letter-spacing: 0px;
      color: white;
      -webkit-animation: myMove 10s infinite;
      animation: myMove 10s infinite;
      -webkit-animation-timing-function: ease-in-out;
      animation-timing-function: ease-in-out; }
      @media (max-width: 64em) {
        .banner-secondary h4 {
          font-size: 30px; } }

@-webkit-keyframes myMove {
  0% {
    font-size: 50px;
    opacity: 1; }
  25% {
    font-size: 45px;
    opacity: 0.4; } }

@keyframes myMove {
  0% {
    font-size: 50px;
    opacity: 1; }
  25% {
    font-size: 45px;
    opacity: 0.4; } }
    @media (max-width: 64em) {
      @-webkit-keyframes myMove {
        0% {
          font-size: 30px;
          opacity: 1; }
        25% {
          font-size: 25px;
          opacity: 0.4; } }
      @keyframes myMove {
        0% {
          font-size: 30px;
          opacity: 1; }
        25% {
          font-size: 25px;
          opacity: 0.4; } } }
    .banner-secondary span {
      color: white;
      text-align: justify; }
  @media (max-width: 64em) {
    .banner .main-banner {
      background-image: url("/content/images/home/bannerprincipal.png");
      background-repeat: no-repeat;
      background-size: cover; } }
  .banner .scooter {
    background-color: #bfbfbf;
    padding: 3rem 0; }
    .banner .scooter div {
      text-align: center;
      position: relative;
      color: #575757;
      font-family: "Raleway", Sans-serif;
      font-size: 60px;
      font-weight: 100;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin: 3rem 0; }
    .banner .scooter .text_reason {
      font-size: 60px; }
      @media (max-width: 64em) {
        .banner .scooter .text_reason {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column; } }
      .banner .scooter .text_reason h3 {
        font-size: 60px;
        font-family: 'RalewayBold', Arial, sans-serif; }
    .banner .scooter .text_reason .text {
      margin: 0;
      font-family: 'Raleway', arial, sans-serif; }
      @media (max-width: 64em) {
        .banner .scooter .text_reason .text {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column; } }
    .banner .scooter .section_reasons {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      @media (max-width: 64em) {
        .banner .scooter .section_reasons {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column; } }
      .banner .scooter .section_reasons .tres_razones {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        @media (max-width: 64em) {
          .banner .scooter .section_reasons .tres_razones {
            margin: 0; } }
        .banner .scooter .section_reasons .tres_razones .tres {
          font-size: 180px;
          font-family: 'RalewayBold',arial,sans-serif;
          color: #9b9b9b; }
          @media (max-width: 64em) {
            .banner .scooter .section_reasons .tres_razones .tres {
              font-size: 130px; } }
        .banner .scooter .section_reasons .tres_razones .razones {
          font-size: 70px;
          color: #656565;
          font-family: 'RalewayRegular',arial,sans-serif;
          margin-top: 110px; }
          @media (max-width: 64em) {
            .banner .scooter .section_reasons .tres_razones .razones {
              font-size: 60px; } }
      .banner .scooter .section_reasons .large_text {
        font-size: 34px;
        color: #656565;
        margin-top: 110px; }
        @media (max-width: 64em) {
          .banner .scooter .section_reasons .large_text {
            margin: 0; } }
      .banner .scooter .section_reasons .inokim {
        margin-top: 110px; }
        @media (max-width: 64em) {
          .banner .scooter .section_reasons .inokim {
            margin-top: 10px; } }
    .banner .scooter .electric-scooter {
      margin-top: 0px;
      margin-bottom: 0px;
      padding: 0px 100px 0px 100px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      position: relative; }
      @media (max-width: 64em) {
        .banner .scooter .electric-scooter {
          width: 100%;
          padding: 0;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
      .banner .scooter .electric-scooter__item {
        width: 85%;
        margin-right: 3rem;
        margin-left: 3rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; }
        .banner .scooter .electric-scooter__item img {
          cursor: pointer; }
          .banner .scooter .electric-scooter__item img:first-child {
            border-radius: 500px;
            overflow: hidden;
            margin-bottom: 3rem; }
          .banner .scooter .electric-scooter__item img:hover {
            -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
            transform: scale(1.1);
            -webkit-transition: all 0.5s ease;
            -o-transition: all 0.5s ease;
            transition: all 0.5s ease; }
        @media (max-width: 64em) {
          .banner .scooter .electric-scooter__item {
            width: 30%; } }
  .banner .text {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    margin-top: 5rem; }
    @media (max-width: 64em) {
      .banner .text {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }
    .banner .text .grey-number {
      color: #9b9b9b;
      font-size: 180px;
      margin-right: -50px; }
      @media (max-width: 64em) {
        .banner .text .grey-number {
          font-size: 85px;
          margin: 0; } }
    .banner .text .reasons {
      color: #656565;
      padding: 0;
      margin: 0;
      line-height: 1;
      font-size: 70px;
      font-weight: 500;
      text-transform: none; }
      @media (max-width: 64em) {
        .banner .text .reasons {
          font-size: 35px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: end;
          -ms-flex-align: end;
          align-items: flex-end; } }
    .banner .text_reason {
      font-size: 34px !important;
      font-weight: 400 !important;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      @media (max-width: 64em) {
        .banner .text_reason {
          font-size: 22px !important;
          line-height: 40px !important;
          margin-top: 2rem !important; }
          .banner .text_reason img {
            height: 40px !important; }
          .banner .text_reason p {
            margin-right: 1rem;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center; } }

.qualities {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  .qualities h3 {
    font-family: 'RalewayBold', Arial, sans-serif; }
  .qualities .first {
    background-image: url(https://inokim.com/wp-content/uploads/2018/05/scooter.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 718px;
    width: 100%; }
  .qualities .background_qualities_first {
    background-color: rgba(255, 255, 255, 0.65);
    height: 100%; }
  .qualities .second {
    height: 405px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    @media (max-width: 64em) {
      .qualities .second {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%; } }
    .qualities .second div {
      width: 100%;
      text-align: center; }
      .qualities .second div p {
        text-align: justify;
        margin-left: 10rem;
        -webkit-box-sizing: border-box;
        box-sizing: border-box; }
        @media (max-width: 64em) {
          .qualities .second div p {
            margin: 0;
            font-size: 15px; } }
      .qualities .second div:first-child {
        margin-bottom: 10%; }
      .qualities .second div:last-child {
        width: 50%; }
    .qualities .second .grey-number {
      margin-right: -50px; }
  .qualities .third {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    @media (max-width: 64em) {
      .qualities .third .background {
        display: none; } }
    .qualities .third .background img {
      width: auto; }
    .qualities .third .grey-number {
      margin-right: -40px; }
    .qualities .third .qualities div p {
      margin-left: 7rem; }
    .qualities .third h3 {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
  .qualities h3 {
    color: #656565;
    font-size: 70px;
    font-weight: 600;
    text-transform: none;
    line-height: 1; }
    .qualities h3 .grey-number {
      color: #9b9b9b;
      font-size: 180px;
      margin-right: -80px; }
  .qualities_item div p {
    color: #656565;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6em;
    padding: 3%; }
  .qualities_item .background {
    margin: -25px 0px 0px 0px !important; }

.presentation .title {
  font-size: 2.8rem;
  font-weight: 300;
  color: #006db0;
  text-align: center;
  margin-bottom: 2rem; }

.presentation p {
  color: #5b5b5f;
  font-weight: 300;
  text-align: center; }

.qualities {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .qualities .quality {
    width: calc(100% / 4);
    padding: 0 3rem;
    text-align: center; }
    .qualities .quality__image {
      margin: 0 auto 2.5rem; }
    .qualities .quality__name {
      color: #006db0;
      font-size: 2.2rem; }
    .qualities .quality__description {
      color: #5b5b5f;
      font-size: 1.4rem; }
    @media (max-width: 64em) {
      .qualities .quality {
        width: calc(100% / 2);
        margin-bottom: 1.5rem; } }
    @media (max-width: 26em) {
      .qualities .quality {
        width: 100%; } }

.identity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch; }
  .identity img {
    width: calc(100% / 5 * 2);
    -ms-flex-item-align: start;
    align-self: flex-start; }
  .identity__list {
    list-style-type: disc;
    padding-left: 2rem; }
  .identity__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #006db0;
    padding: 0 4vw;
    color: #fff; }
    .identity__text .title {
      margin: 0 0 1vw;
      font-size: 2vw;
      font-weight: 300; }
    .identity__text p {
      font-size: 1vw;
      font-weight: 300;
      margin-bottom: 1vw; }
  @media (max-width: 48em) {
    .identity {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      .identity img {
        width: 100%; }
      .identity__text {
        padding: 2rem 2rem; }
        .identity__text .title {
          font-size: 2.2rem;
          margin-bottom: 2rem; }
        .identity__text p {
          font-size: 1.6rem;
          margin-bottom: 2rem; } }

.social-previews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .social-previews img {
    width: calc(100% / 2); }
    @media (max-width: 48em) {
      .social-previews img {
        width: 100%; } }

.steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.step__card {
  width: calc(100% / 4 - 4rem);
  margin: 0 2rem;
  background: #e5e5e5;
  -webkit-box-shadow: 2px 2px 5px 0 #8f8f8f;
  box-shadow: 2px 2px 5px 0 #8f8f8f; }
  @media (max-width: 64em) {
    .step__card {
      width: calc(100% / 2 - 2rem);
      margin: 0 1rem 2rem; } }
  @media (max-width: 48em) {
    .step__card {
      width: 100%; } }

.step__image {
  margin: 0 auto;
  padding: 1rem 0; }

.step__name {
  background: #006db0;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  padding: .5rem 0;
  margin: 0; }

.step__list {
  padding: 1.5rem 1rem;
  font-size: 1.3rem;
  font-weight: 300;
  color: #5b5b5f; }
  .step__list > li {
    padding: .5rem 0; }
    .step__list > li:before {
      content: '✓';
      color: #006db0;
      margin-right: .5rem; }

.clients .slick-slide > div {
  margin: 0 1rem; }

.clients .client__slider {
  display: none !important; }
  @media (max-width: 48em) {
    .clients .client__slider {
      display: block !important; } }

.clients .client__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .clients .client__grid .client__item {
    width: calc(100% / 5); }
    @media (max-width: 64em) {
      .clients .client__grid .client__item {
        width: 33.33%; } }
    @media (max-width: 48em) {
      .clients .client__grid .client__item {
        width: 50%; } }
  @supports ((display: -ms-grid) or (display: grid)) {
    .clients .client__grid {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr); }
      @media (max-width: 64em) {
        .clients .client__grid {
          -ms-grid-columns: (1fr)[3];
          grid-template-columns: repeat(3, 1fr);
          grid-gap: .2rem; } }
      @media (max-width: 48em) {
        .clients .client__grid {
          -ms-grid-columns: (1fr)[2];
          grid-template-columns: repeat(2, 1fr); } }
      .clients .client__grid .client__item {
        width: 100% !important; } }

.clients .client__item {
  position: relative; }
  .clients .client__item .client-item__hover-area {
    display: none;
    position: absolute;
    padding: 1rem;
    top: 1rem;
    left: 1rem;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    background: rgba(0, 109, 176, 0.8); }
    .clients .client__item .client-item__hover-area img {
      width: 100%; }
  .clients .client__item:hover .client-item__hover-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .clients .client__item:focus .client-item__hover-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  @media (max-width: 64em) {
    .clients .client__item .client-item__hover-area {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 109, 176, 0.7); } }

.team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 2rem;
  padding-bottom: 4rem; }
  @supports ((display: -ms-grid) or (display: grid)) {
    .team {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[9];
      grid-template-columns: repeat(9, 1fr); } }
  @media (max-width: 64em) {
    .team {
      margin: 0;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .team__member {
        width: calc(100% / 5); }
      @supports ((display: -ms-grid) or (display: grid)) {
        .team {
          -ms-grid-columns: (1fr)[5];
          grid-template-columns: repeat(5, 1fr); }
          .team__member {
            width: 100%; } } }
  @media (max-width: 48em) {
    .team__member {
      width: 33.3%; }
    @supports ((display: -ms-grid) or (display: grid)) {
      .team {
        -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr); }
        .team__member {
          width: 100%; } } }
  .team__member {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative; }
    .team__member img {
      width: 100%; }
    .team__member .member__description {
      display: none;
      background: rgba(0, 109, 176, 0.8);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      color: #fff;
      font-size: 1.6rem; }
    .team__member .member__name {
      font-weight: 300; }
    .team__member .member__role {
      font-weight: bold;
      text-align: center;
      margin-top: .25rem; }
    @media (max-width: 48em) {
      .team__member--🐶 {
        display: none; } }
    .team__member:hover .member__description {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
    .team__member:focus .member__description {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
    @media (max-width: 64em) {
      .team__member .member__description {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: auto;
        top: 100%;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        padding: .5rem 0;
        background: rgba(0, 109, 176, 0.8);
        font-size: 1.6rem; }
      .team__member .member__name::after {
        content: '-';
        margin: 0 .75rem; }
      .team__member .member__role {
        margin: 0;
        font-size: 1.3rem;
        white-space: nowrap; } }
    @media (max-width: 48em) {
      .team__member .member__description {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        font-size: 1.1rem;
        padding: .25rem 0; }
      .team__member .member__name::after {
        content: '';
        margin: 0; }
      .team__member .member__role {
        font-size: inherit; } }

.contact {
  background: #e5e5e5; }
  .contact__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 2rem -0.5rem; }
    .contact__form .form__input {
      width: calc(100% / 2 - 1rem);
      margin: 0 0.5rem 1rem;
      background: #D9DADE;
      border: none;
      padding: 1.5rem;
      font-weight: 300; }
      .contact__form .form__input--large {
        width: 100%; }
      @media (max-width: 48em) {
        .contact__form .form__input {
          width: 100%; } }
    .contact__form .form__button {
      background: #D9DADE;
      border: none;
      min-width: 150px;
      padding: 1rem;
      margin-top: 1rem;
      color: #5b5b5f;
      cursor: pointer; }

.contactBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.whatsapp-section {
  position: fixed;
  bottom: 6%;
  right: 3%;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.whatsapp-section .green-whatsapp {
  background-color: #4dc247;
  width: 55px;
  height: 55px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2); }

.footer {
  background-color: #2d2d2d;
  color: rgba(255, 255, 255, 0.73);
  padding-top: 5rem; }
  .footer .logo {
    width: 100%;
    text-align: left;
    margin-bottom: 2rem; }
  .footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 64em) {
      .footer-content {
        display: block;
        margin-left: 5rem; } }
    .footer-content_item {
      width: 50%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      .footer-content_item:first-child {
        border-right: 1px solid rgba(255, 255, 255, 0.73); }
        @media (max-width: 64em) {
          .footer-content_item:first-child {
            border: none; } }
      @media (max-width: 64em) {
        .footer-content_item:last-child {
          margin: 1rem -.4rem; } }
      .footer-content_item a {
        color: rgba(255, 255, 255, 0.73); }
      .footer-content_item .orderCategories {
        margin: 0 1rem 1rem 1rem; }
  .footer p {
    color: rgba(255, 255, 255, 0.73);
    font-family: "Helvetica", Sans-serif;
    font-size: 15px;
    font-weight: 100;
    line-height: 1.5em;
    margin-bottom: 1.8rem; }
  .footer i {
    background-color: rgba(255, 255, 255, 0);
    font-size: 20px;
    padding: 0.4em; }
  .footer .copyright {
    padding: 10px 10px 10px 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: normal;
    flex-direction: normal;
    background-color: #3e3e3e;
    width: 100%;
    text-transform: uppercase;
    font-size: 1rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: white; }
    @media (max-width: 64em) {
      .footer .copyright {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; } }

.containerOne {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url("/content/images/ox/ox-banner1.jpg");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh; }
  @media (max-width: 64em) {
    .containerOne {
      background-size: 100%;
      height: 100%;
      background-position: unset; } }

.containerOne .empty {
  width: 55%; }
  @media (max-width: 64em) {
    .containerOne .empty {
      display: none; } }

.containerOne .content {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  @media (max-width: 64em) {
    .containerOne .content {
      width: 100%;
      background-color: rgba(255, 255, 255, 0.65); } }

.containerOne div .content div {
  text-align: center;
  width: 65%; }
  @media (max-width: 64em) {
    .containerOne div .content div {
      width: 100%; } }

@media (max-width: 64em) {
  .logoOx {
    margin-top: 5%;
    width: 55%;
    height: 90%; } }

.containerOne .content div p {
  font-family: 'Raleway',Arial, sans-serif;
  font-size: 30px;
  font-weight: 100;
  color: #7c7c7c;
  text-transform: none;
  line-height: 1.3em;
  text-align: center; }
  @media (max-width: 64em) {
    .containerOne .content div p {
      font-size: 20px; } }

.containerTwo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.containerTwo .content {
  background-image: url("/content/images/ox/ox-banner2.jpg");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh; }
  @media (max-width: 64em) {
    .containerTwo .content {
      background-size: 100%;
      background-position: unset;
      height: 26vh; } }

.containerTwo .text h4 {
  font-size: 40px;
  text-align: center;
  color: #7c7c7c;
  font-weight: 100;
  padding: 1%;
  margin-top: -100px; }
  @media (max-width: 64em) {
    .containerTwo .text h4 {
      font-size: 30px;
      margin: 0; } }

.containerThree {
  background-image: url("/content/images/ox/ox-banner3.jpg");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 0px 0px 150px; }
  @media (max-width: 64em) {
    .containerThree {
      background-size: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      background-position: 0;
      padding: 0;
      height: 26vh; } }

.containerThree .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%; }
  .containerThree .content img {
    width: 40%; }
  @media (max-width: 64em) {
    .containerThree .content {
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      width: 100%;
      height: 50%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse; } }

.containerFour {
  background-image: url("/content/images/ox/ox-banner4.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  @media (max-width: 64em) {
    .containerFour {
      background-size: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      background-position: 0;
      padding: 0;
      height: 26vh;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end; } }

.containerFour div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse; }
  @media (max-width: 64em) {
    .containerFour div {
      padding: 10px; } }

.containerFour .text-big {
  font-family: 'RalewayRegular',Arial, sans-serif;
  font-size: 45px;
  font-weight: normal;
  font-style: normal;
  color: #fff;
  line-height: 1;
  margin: 3%; }
  @media (max-width: 64em) {
    .containerFour .text-big {
      font-size: 30px;
      margin: 0; } }

.text-little p {
  margin: 10px 25px;
  font-family: 'Raleway',Arial, sans-serif;
  font-weight: lighter;
  font-size: 30px;
  color: #fff;
  line-height: 1; }
  @media (max-width: 64em) {
    .text-little p {
      margin: 0px 0px;
      font-size: 20px; } }

.containerFive {
  background-image: url("/content/images/ox/ox-banner5.jpg");
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  @media (max-width: 64em) {
    .containerFive {
      background-size: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      background-position: 0;
      padding: 0;
      height: 26vh;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end; } }

.containerFive div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  margin: 0px 80px 150px 100px;
  text-align: center; }
  @media (max-width: 64em) {
    .containerFive div {
      margin: 1%;
      text-align: left; } }

.containerFive div p {
  color: #fff;
  margin-bottom: 30px; }
  @media (max-width: 64em) {
    .containerFive div p {
      margin-bottom: 10px;
      margin: 5%;
      text-align: left; } }

.containerFive div .text-down {
  font-family: "Raleway", Sans-serif;
  font-size: 30px;
  font-weight: 300;
  text-transform: none;
  font-style: normal;
  letter-spacing: 0px; }
  @media (max-width: 64em) {
    .containerFive div .text-down {
      font-size: 20px; } }

.containerFive div .text-up {
  font-family: "RalewayRegular", Sans-serif;
  font-size: 65px;
  font-weight: 500;
  text-transform: none;
  font-style: normal; }
  @media (max-width: 64em) {
    .containerFive div .text-up {
      font-size: 30px; } }

.containerSix {
  background-image: url("/content/images/ox/ox-banner6.jpg");
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 64em) {
    .containerSix {
      background-size: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
      background-position: 0;
      padding: 0;
      height: 26vh; } }

@media (max-width: 64em) {
  .containerSix .empty {
    display: none; } }

.containerSix div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  margin: 0px 80px 150px 100px; }
  @media (max-width: 64em) {
    .containerSix div {
      margin: 0;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end; } }

.containerSix div p {
  color: #fff;
  margin-bottom: 30px; }
  @media (max-width: 64em) {
    .containerSix div p {
      margin-bottom: 10px;
      margin: 5%;
      text-align: left; } }

.containerSix div .text-down {
  font-family: "Raleway", Sans-serif;
  font-size: 30px;
  font-weight: 300;
  text-transform: none;
  font-style: normal;
  letter-spacing: 0px; }
  @media (max-width: 64em) {
    .containerSix div .text-down {
      font-size: 20px; } }

.containerSix div .text-up {
  font-family: "RalewayRegular", Sans-serif;
  font-size: 65px;
  font-weight: 500;
  text-transform: none;
  font-style: normal; }
  @media (max-width: 64em) {
    .containerSix div .text-up {
      font-size: 30px; } }

@media (max-width: 64em) {
  .containerSeven {
    width: 100%; } }

.containerEight {
  background-image: url("/content/images/ox/ox-banner7.jpg");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media (max-width: 64em) {
    .containerEight {
      background-size: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; } }

.containerEight .up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  background-color: rgba(0, 0, 0, 0.65);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2%;
  width: 100%;
  height: 300px; }
  @media (max-width: 64em) {
    .containerEight .up {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; } }

.sizes_table tr {
  margin-top: 15px;
  display: block; }

table.sizes_table th {
  color: #fff; }

table.sizes_table td {
  border-left: 1px solid #b3b3b3; }

table.sizes_table th, table.sizes_table td {
  text-align: center;
  width: 130px;
  height: 45px;
  color: #b3b3b3; }

tr.open td:first-child, tr.folded td:first-child {
  border: none;
  text-align: left;
  color: #ffffff;
  font-family: 'RalewayRegular',arial,sans-serif;
  font-size: 16px; }

.containerEight .down {
  width: 50%;
  margin: 20px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  @media (max-width: 64em) {
    .containerEight .down {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      width: 100%;
      margin-left: 1%;
      background-color: rgba(255, 255, 255, 0.65); } }

iframe {
  width: 100%;
  height: 100vh; }
  @media (max-width: 64em) {
    iframe {
      width: 100%;
      height: auto; } }

@media (max-width: 64em) {
  .containerEight img {
    width: 200px;
    height: auto; } }

.specs_table {
  font-size: 14px;
  color: #7c7c7c;
  font-family: "Raleway", Sans-serif; }
  @media (max-width: 64em) {
    .specs_table {
      color: #000;
      z-index: 1000; } }

.specs_table tr td:first-child {
  font-weight: bold;
  font-family: 'RalewayRegular', Arial, sans-serif;
  width: 125px;
  color: #000;
  height: 30px; }

.specs_table tr td:last-child {
  width: 500px;
  height: 30px;
  font-weight: lighter; }

.section_header_light {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url("/Content/images/light/light-banner.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  background-color: #e7e7e3;
  margin-top: 0px;
  padding: 100px 0px 0px 100px;
  text-align: center; }
  @media (max-width: 64em) {
    .section_header_light {
      background-size: 100%;
      height: 100%;
      background-position: unset;
      padding: 0; } }

@media (max-width: 64em) {
  .section_header_light .info .logo {
    width: 50%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; } }

.phrase_light {
  margin: 2.75em 0;
  font-size: 35px;
  font-weight: lighter;
  text-transform: none;
  line-height: 1.3em;
  color: #585757;
  font-family: 'Raleway',Arial, sans-serif; }
  @media (max-width: 64em) {
    .phrase_light {
      margin: 0.3em 0;
      font-size: 25px; } }
  .phrase_light p {
    margin-top: 3%; }

.who_light {
  font-family: 'Raleway',Arial, sans-serif;
  color: #585757; }

.who .name_light {
  font-size: 20px; }

.section_header_light .info {
  width: 40%;
  height: 100%; }
  @media (max-width: 64em) {
    .section_header_light .info {
      width: 100%;
      background-color: rgba(255, 255, 255, 0.5); } }

.section_header_light .empty {
  width: 45%; }
  @media (max-width: 64em) {
    .section_header_light .empty {
      display: none; } }

.section_product_light {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
  width: 100%; }
  @media (max-width: 64em) {
    .section_product_light {
      background-size: 100%;
      background-position: unset;
      height: 30vh; } }

.section_product_light .product {
  background-image: url("/Content/images/light/product.jpg");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 80vh;
  width: 100%; }

.section_product_light .product-phrase {
  height: 20vh;
  width: 100%;
  text-align: center;
  font-family: "Raleway", Sans-serif;
  font-size: 40px;
  font-weight: lighter;
  text-transform: uppercase;
  letter-spacing: 0px;
  color: #585757;
  padding: 3%; }
  @media (max-width: 64em) {
    .section_product_light .product-phrase {
      font-size: 20px;
      padding: 1%; } }

.section_weight_light {
  background-image: url("/Content/images/light/pareja.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 64em) {
    .section_weight_light {
      background-size: 100%;
      height: 25vh;
      background-position: unset;
      padding: 0;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; } }

.section_weight_light .empty {
  width: 55%; }
  @media (max-width: 64em) {
    .section_weight_light .empty {
      display: none; } }

.section_weight_light .empty-content {
  width: 55%;
  height: 50vh; }
  @media (max-width: 64em) {
    .section_weight_light .empty-content {
      display: none; } }

.section_weight_light .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 45%;
  text-align: center; }
  @media (max-width: 64em) {
    .section_weight_light .content {
      background-color: rgba(0, 0, 0, 0.65);
      width: 100%;
      margin: 5%; } }

.section_weight_light .content div {
  margin-bottom: 10px;
  color: #ffffff;
  font-family: "Raleway", Sans-serif; }

.section_weight_light .content div:first-child {
  font-size: 60px;
  font-weight: bold;
  font-family: 'RalewayRegular',Arial, sans-serif; }
  @media (max-width: 64em) {
    .section_weight_light .content div:first-child {
      font-size: 30px; } }

.section_weight_light .content div:last-child {
  font-size: 30px; }
  @media (max-width: 64em) {
    .section_weight_light .content div:last-child {
      font-size: 20px; } }

.section_performance_light {
  background-image: url("/Content/images/light/light-speed.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 64em) {
    .section_performance_light {
      background-size: 100%;
      height: 100%;
      background-position: unset;
      padding: 0; } }

.section_performance_light .empty {
  width: 55%; }
  @media (max-width: 64em) {
    .section_performance_light .empty {
      display: none; } }

.section_performance_light .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 45%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media (max-width: 64em) {
    .section_performance_light .info {
      width: 100%;
      padding: 5%; } }

.section_performance_light .info .empty {
  height: 40%; }
  @media (max-width: 64em) {
    .section_performance_light .info .empty {
      display: none; } }

.section_performance_light .info .text {
  background-color: rgba(0, 0, 0, 0.65);
  padding: 5%;
  color: #ffffff;
  font-family: "RalewayRegular", Sans-serif; }

.text div p {
  margin-bottom: 1%; }

.text div:first-child {
  font-size: 50px;
  margin-bottom: 10px;
  font-weight: bold;
  font-family: 'RalewayRegular',Arial,sans-serif; }
  @media (max-width: 64em) {
    .text div:first-child {
      font-size: 30px; } }

.text div:last-child {
  font-size: 20px; }

iframe {
  width: 100%;
  height: 100vh; }
  @media (max-width: 64em) {
    iframe {
      width: 100%;
      height: 25vh; } }

.section_folding_light {
  background-image: url("/Content/images/light/scafolding.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 64em) {
    .section_folding_light {
      background-size: 100%;
      height: 25vh;
      background-position: unset;
      padding: 0; } }

.section_folding_light .content {
  background-color: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  font-family: "Raleway", Sans-serif;
  text-transform: none;
  font-style: normal;
  font-weight: 500;
  padding: 1%;
  margin: 1%;
  height: 20%; }
  @media (max-width: 64em) {
    .section_folding_light .content {
      height: 100%;
      margin: unset; } }

.section_folding_light .content div div:first-child {
  font-size: 50px;
  font-family: 'RalewayRegular',Arial,sans-serif; }
  @media (max-width: 64em) {
    .section_folding_light .content div div:first-child {
      font-size: 40px; } }

.section_folding_light .content div div:last-child {
  float: right;
  font-size: 20px;
  margin-top: 1%; }

.section_batery_light {
  background-image: url("/Content/images/light/light-batery.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 64em) {
    .section_batery_light {
      background-size: 100%;
      height: 25vh;
      background-position: unset;
      padding: 0; } }

.section_batery_light .empty {
  width: 55%; }
  @media (max-width: 64em) {
    .section_batery_light .empty {
      display: none; } }

.section_batery_light .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 45%; }
  @media (max-width: 64em) {
    .section_batery_light .content {
      width: 100%;
      text-align: right;
      padding: 5%; } }

.section_batery_light .content div {
  width: 100%;
  height: 33%; }
  @media (max-width: 64em) {
    .section_batery_light .content div {
      height: 50%; } }

.section_batery_light .content .text {
  width: 100%;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.5);
  height: 20%;
  padding: 5%; }
  @media (max-width: 64em) {
    .section_batery_light .content .text {
      height: 100%; } }

.section_batery_light .content .text div:last-child {
  text-align: right;
  margin-top: 5%;
  padding-right: 5%; }
  @media (max-width: 64em) {
    .section_batery_light .content .text div:last-child {
      padding: 0; } }

.section_specs_light {
  background-image: url("/Content/images/light/specs.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.section_specs_light .section_specs_up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(0, 0, 0, 0.55);
  padding-left: 5%; }
  @media (max-width: 64em) {
    .section_specs_light .section_specs_up {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; } }

.section_specs_light .section_specs_up .img_spec img {
  width: 100%; }

.dimensions th {
  color: #ffffff; }

.section_specs_light .section_specs_down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 100px; }
  @media (max-width: 64em) {
    .section_specs_light .section_specs_down {
      padding: 5%;
      margin: 0;
      background-color: rgba(255, 255, 255, 0.65); } }

@media (max-width: 64em) {
  .empty {
    display: none; }
  .emptyContent {
    display: none; }
  .background_header_mini {
    background-color: rgba(255, 255, 255, 0.65); } }

.section_header_mini {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url("/Content/images/mini/mini-banner1.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  background-color: #e7e7e3;
  margin-top: 0px;
  padding: 100px 0px 0px 100px;
  text-align: center; }
  @media (max-width: 64em) {
    .section_header_mini {
      background-size: 100%;
      height: 100%;
      background-position: unset;
      padding: 0; } }

@media (max-width: 64em) {
  .section_header_mini .info .logo {
    width: 50%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; } }

.section_header_mini .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.phrase_mini {
  margin: 2.75em 0;
  font-size: 35px;
  font-weight: lighter;
  text-transform: none;
  line-height: 1.3em;
  color: #828282;
  font-family: 'Raleway',Arial, sans-serif; }
  @media (max-width: 64em) {
    .phrase_mini {
      margin: 1em 0;
      font-size: 25px; } }

.phrase_mini p {
  margin-bottom: 5%; }
  @media (max-width: 64em) {
    .phrase_mini p {
      margin-bottom: 0px; } }

.who_mini {
  font-family: 'Raleway',Arial, sans-serif;
  color: #828282;
  font-size: 20px; }

.section_product_mini {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
  width: 100%; }
  @media (max-width: 64em) {
    .section_product_mini {
      background-size: 100%;
      background-position: unset;
      height: 30vh; } }

.section_product_mini .product {
  background-image: url("/Content/images/mini/mini-banner2.jpg");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 60vh;
  width: 100%; }

.section_product_mini .product-phrase {
  height: 20vh;
  width: 100%;
  text-align: center;
  font-family: "Raleway", Sans-serif;
  font-size: 40px;
  font-weight: lighter;
  text-transform: uppercase;
  letter-spacing: 0px;
  color: #828282;
  padding: 3%; }
  @media (max-width: 64em) {
    .section_product_mini .product-phrase {
      font-size: 20px; } }

.section_weight_mini {
  background-image: url("/Content/images/mini/mini-banner3.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 64em) {
    .section_weight_mini {
      height: 100%;
      background-position: unset;
      padding: 0;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; } }

.section_weight_mini .empty {
  width: 60%;
  height: 100%; }
  @media (max-width: 64em) {
    .section_weight_mini .empty {
      display: none; } }

.section_weight_mini .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%; }
  @media (max-width: 64em) {
    .section_weight_mini .content {
      width: 100%;
      background-color: rgba(0, 0, 0, 0.35); } }

.section_weight_mini .content .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  font-family: "Raleway", Sans-serif;
  height: 50%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 10%;
  text-align: left; }

.section_weight_mini .content .info div:first-child {
  font-size: 50px;
  margin-bottom: 10px;
  font-family: 'RalewayRegular',Arial,sans-serif;
  font-weight: bold; }

.section_weight_mini .content .info div:last-child {
  font-size: 20px; }

.section_carry_mini {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url("/Content/images/mini/mini-banner4.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  background-color: #e7e7e3;
  text-align: center; }
  @media (max-width: 64em) {
    .section_carry_mini {
      background-size: 100%;
      height: 100%;
      background-position: unset;
      padding: 0; } }

.section_carry_mini .empty {
  width: 55%;
  height: 100%; }

.section_carry_mini .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 45%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media (max-width: 64em) {
    .section_carry_mini .content {
      width: 100%; } }

.section_carry_mini .content div {
  width: 100%;
  height: 33%;
  color: #ffffff;
  text-align: left;
  font-family: "Raleway", Sans-serif;
  padding: 3%; }

.section_carry_mini .content div p:first-child {
  font-size: 50px;
  font-family: 'RalewayRegular',Arial,sans-serif;
  font-weight: bold; }
  @media (max-width: 64em) {
    .section_carry_mini .content div p:first-child {
      font-size: 30px; } }

.section_carry_mini .content div p:last-child {
  font-size: 20px;
  margin-top: 5%; }

.section_folding_mini {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url("/Content/images/mini/mini-banner5.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  background-color: #e7e7e3;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media (max-width: 64em) {
    .section_folding_mini {
      background-size: 100%;
      height: 100%;
      background-position: unset;
      padding: 0; } }

.section_folding_mini .empty {
  height: 70%;
  width: 100%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

.section_folding_mini .texto {
  color: #524e41;
  font-family: "Raleway", Sans-serif;
  font-weight: 500;
  text-transform: none;
  font-style: normal; }
  @media (max-width: 64em) {
    .section_folding_mini .texto {
      background-color: rgba(255, 255, 255, 0.45); } }

.section_folding_mini .texto div:first-child {
  font-size: 55px;
  font-family: 'RalewayRegular',Arial,sans-serif;
  font-weight: bold;
  margin-bottom: 10px; }

.section_folding_mini .texto div:last-child {
  font-size: 20px; }

.section_batery_mini {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url("/Content/images/mini/mini-banner6.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  background-color: #e7e7e3;
  text-align: center; }
  @media (max-width: 64em) {
    .section_batery_mini {
      background-size: 100%;
      height: 100%;
      background-position: unset;
      padding: 0; } }

.section_batery_mini .empty {
  width: 50%;
  height: 100%; }

.section_batery_mini .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media (max-width: 64em) {
    .section_batery_mini .content {
      width: 100%; } }

.section_batery_mini .content div {
  height: 50%;
  width: 100%;
  color: #ffffff;
  text-align: left;
  padding: 5%; }

.section_batery_mini .texto p:first-child {
  font-family: "Raleway", Sans-serif;
  font-size: 50px;
  font-weight: 500;
  text-transform: none;
  font-style: normal; }
  @media (max-width: 64em) {
    .section_batery_mini .texto p:first-child {
      font-size: 30px; } }

.section_batery_mini .texto p:last-child {
  font-family: "Raleway", Sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: none;
  font-style: normal;
  margin-top: 5%; }

.section_specs_mini {
  background-image: url("/Content/images/mini/mini-table.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.section_specs_mini .section_specs_up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(0, 0, 0, 0.65); }
  @media (max-width: 64em) {
    .section_specs_mini .section_specs_up {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; } }

.section_specs_mini .section_specs_up .img_spec {
  width: 50%;
  padding-left: 5%; }
  @media (max-width: 64em) {
    .section_specs_mini .section_specs_up .img_spec {
      width: 100%; } }

.section_specs_mini .section_specs_up .img_spec img {
  width: 50%;
  margin: 5%; }

.section_specs_mini .section_specs_down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 100px; }
  @media (max-width: 64em) {
    .section_specs_mini .section_specs_down {
      padding: 5%;
      margin: 0;
      background-color: rgba(255, 255, 255, 0.65); } }

.section_header_quick {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url("/Content/images/quick/quick-banner1.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  background-color: #e7e7e3;
  margin-top: 0px;
  padding: 100px 0px 0px 100px;
  text-align: center; }
  @media (max-width: 64em) {
    .section_header_quick {
      background-size: 100%;
      height: 100%;
      background-position: unset;
      padding: 0; } }

@media (max-width: 64em) {
  .background_header_quick {
    width: 100%; } }

@media (max-width: 64em) {
  .section_header_quick .info .logo {
    width: 50%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; } }

@media (max-width: 64em) {
  .section_header_quick .info {
    background-color: rgba(255, 255, 255, 0.5);
    height: 100%;
    padding: 1%; } }

.phrase_quick {
  margin: 2.75em 0;
  font-size: 35px;
  font-weight: lighter;
  text-transform: none;
  line-height: 1.3em;
  color: #585757;
  font-family: 'Raleway',Arial, sans-serif; }
  @media (max-width: 64em) {
    .phrase_quick {
      margin: 1em 0;
      font-size: 30px; } }

.phrase_quick p {
  margin-bottom: 3%; }

.who_quick {
  font-family: 'Raleway',Arial, sans-serif;
  color: #585757; }

.who .name_light {
  font-size: 20px; }

.section_header_light .info {
  width: 40%; }
  @media (max-width: 64em) {
    .section_header_light .info {
      width: 100%;
      height: 25vh;
      background-color: rgba(255, 255, 255, 0.5); } }

.section_header_light .empty {
  width: 45%; }
  @media (max-width: 64em) {
    .section_header_light .empty {
      display: none; } }

.section_product_light {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
  width: 100%; }
  @media (max-width: 64em) {
    .section_product_light {
      background-size: 100%;
      background-position: unset;
      height: 30vh; } }

.section_product_quick .product {
  background-image: url("/Content/images/quick/quick-banner2.png");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 80vh;
  width: 100%; }
  @media (max-width: 64em) {
    .section_product_quick .product {
      background-size: 100%;
      height: 25vh; } }

.section_product_quick .product-phrase {
  height: 20vh;
  width: 100%;
  text-align: center;
  font-family: "Raleway", Sans-serif;
  font-size: 40px;
  font-weight: lighter;
  text-transform: uppercase;
  letter-spacing: 0px;
  color: #585757;
  padding: 3%; }
  @media (max-width: 64em) {
    .section_product_quick .product-phrase {
      font-size: 20px;
      height: 50%; } }

.section_speed_quick {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url("/Content/images/quick/quick-banner3.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  background-color: #e7e7e3;
  margin-top: 0px;
  padding: 100px 0px 0px 100px;
  text-align: center; }
  @media (max-width: 64em) {
    .section_speed_quick {
      background-size: 100%;
      height: 100%;
      background-position: unset;
      padding: 0;
      height: 25vh; } }

.section_speed_quick .empty {
  width: 100%; }

.section_speed_quick .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%; }
  @media (max-width: 64em) {
    .section_speed_quick .content {
      background-color: rgba(0, 0, 0, 0.35);
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; } }

.section_speed_quick .content div {
  text-align: left;
  height: 33%;
  color: #fff; }
  @media (max-width: 64em) {
    .section_speed_quick .content div {
      height: unset;
      margin: 1%; } }

.section_design_quick {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url("/Content/images/quick/quick-banner4-1.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  margin-top: 0px;
  padding: 0px 0px 0px 50px;
  text-align: center; }
  @media (max-width: 64em) {
    .section_design_quick {
      background-size: 100%;
      height: 25vh;
      background-position: unset;
      padding: 0; } }

.section_design_quick .content {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse; }
  @media (max-width: 64em) {
    .section_design_quick .content {
      width: 100%;
      background-color: rgba(255, 255, 255, 0.65); } }

.section_design_quick .content .text {
  height: 50%;
  width: 100%;
  text-align: left;
  color: #000000; }
  @media (max-width: 64em) {
    .section_design_quick .content .text {
      margin: 1%; } }

.section_design_quick .content .text p:first-child {
  font-size: 50px;
  margin-bottom: 3%;
  font-weight: bold;
  font-family: 'RalewayRegular',Arial,sans-serif; }
  @media (max-width: 64em) {
    .section_design_quick .content .text p:first-child {
      font-size: 40px; } }

.section_design_quick .content .text p:last-child {
  font-size: 20px; }

iframe {
  width: 100%;
  height: 100vh; }
  @media (max-width: 64em) {
    iframe {
      width: 100%;
      height: 25vh; } }

.section_batery_quick {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url("/Content/images/quick/quick-banner5.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  background-color: #e7e7e3; }
  @media (max-width: 64em) {
    .section_batery_quick {
      background-size: 100%;
      height: 100%;
      background-position: unset;
      padding: 0; } }

.section_batery_quick .empty {
  width: 65%; }

.section_batery_quick .content {
  width: 35%;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media (max-width: 64em) {
    .section_batery_quick .content {
      width: 100%; } }

.section_batery_quick .content .emptyContent {
  width: 100%;
  height: 33%; }

.section_batery_quick .content .text {
  background-color: rgba(0, 0, 0, 0.35);
  padding: 5%; }

.section_batery_quick .content .text p {
  color: #ffffff;
  margin-bottom: 5%;
  font-size: 30px; }
  @media (max-width: 64em) {
    .section_batery_quick .content .text p {
      font-size: 25px; } }

.section_batery_quick .content .text p:first-child {
  font-size: 50px; }
  @media (max-width: 64em) {
    .section_batery_quick .content .text p:first-child {
      font-size: 35px; } }

.section_batery_quick .content .text p:last-child {
  font-size: 20px; }

.section_comfort_quick {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url("/Content/images/quick/quick-banner6.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  background-color: #e7e7e3;
  margin-top: 0px;
  padding: 0px 0px 0px 50px;
  text-align: center; }
  @media (max-width: 64em) {
    .section_comfort_quick {
      background-size: 100%;
      height: 100%;
      background-position: unset;
      padding: 0; } }

.section_comfort_quick .empty {
  width: 65%; }

.section_comfort_quick .content {
  width: 35%;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media (max-width: 64em) {
    .section_comfort_quick .content {
      width: 100%; } }

.section_comfort_quick .content .emptyContent {
  width: 100%;
  height: 50%; }

.section_comfort_quick .content .text {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  padding: 5%;
  height: 20%; }
  @media (max-width: 64em) {
    .section_comfort_quick .content .text {
      height: 100%; } }

.section_comfort_quick .content .text p {
  color: #ffffff;
  margin-bottom: 5%;
  font-size: 30px; }
  @media (max-width: 64em) {
    .section_comfort_quick .content .text p {
      font-size: 25px; } }

.section_comfort_quick .content .text p:first-child {
  font-size: 50px; }
  @media (max-width: 64em) {
    .section_comfort_quick .content .text p:first-child {
      font-size: 40px; } }

.section_comfort_quick .content .text p:last-child {
  font-size: 25px; }

.section_specs_quick {
  background-image: url("/Content/images/quick/quick-banner7.png");
  background-position: right;
  background-repeat: no-repeat;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-size: 50%; }

.section_specs_quick .section_specs_up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(0, 0, 0, 0.65);
  padding-left: 5%; }
  @media (max-width: 64em) {
    .section_specs_quick .section_specs_up {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; } }

.section_specs_quick .section_specs_up .img_spec img {
  width: 100%; }

.dimensions th {
  color: #ffffff; }

.section_specs_quick .section_specs_down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 100px; }
  @media (max-width: 64em) {
    .section_specs_quick .section_specs_down {
      padding: 5%;
      margin: 0;
      background-color: rgba(255, 255, 255, 0.65); } }

.section_header_lightDos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url("/Content/images/lightDos/light2-1.jpg");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  background-color: #e7e7e3;
  margin-top: 0px;
  padding: 100px 0px 0px 100px;
  text-align: center; }
  @media (max-width: 64em) {
    .section_header_lightDos {
      background-size: 100%;
      height: 100%;
      background-position: unset;
      padding: 0; } }

@media (max-width: 64em) {
  .section_header_lightDos .info .logo {
    width: 50%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; } }

.phrase_light {
  margin: 2.75em 0;
  font-size: 35px;
  font-weight: lighter;
  text-transform: none;
  line-height: 1.3em;
  color: rgba(0, 0, 0, 0.6);
  font-family: 'Raleway',Arial, sans-serif; }
  @media (max-width: 64em) {
    .phrase_light {
      margin: 0.3em 0;
      font-size: 25px; } }

.section_header_lightDos .info {
  width: 35%;
  height: 100%; }
  @media (max-width: 64em) {
    .section_header_lightDos .info {
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.5); } }

.section_header_lightDos .empty {
  width: 55%; }
  @media (max-width: 64em) {
    .section_header_lightDos .empty {
      display: none; } }

.section_product_lightDos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
  width: 100%; }
  @media (max-width: 64em) {
    .section_product_lightDos {
      background-size: 100%;
      background-position: unset;
      height: 30vh; } }

.section_product_lightDos .product {
  background-image: url("/Content/images/lightDos/light2-2.jpg");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 80vh;
  width: 100%; }
  @media (max-width: 64em) {
    .section_product_lightDos .product {
      background-position: center; } }

.section_product_lightDos .product-phrase {
  height: 20vh;
  width: 100%;
  text-align: center;
  font-family: "Raleway", Sans-serif;
  font-size: 40px;
  font-weight: lighter;
  text-transform: uppercase;
  letter-spacing: 0px;
  color: #585757;
  padding: 3%; }
  @media (max-width: 64em) {
    .section_product_lightDos .product-phrase {
      font-size: 20px; } }

.section_weight_lightDos {
  background-image: url("/Content/images/lightDos/light2-5.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 64em) {
    .section_weight_lightDos {
      background-size: 100%;
      height: 25vh;
      background-position: unset;
      padding: 0;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; } }

.section_weight_lightDos .empty {
  width: 55%; }
  @media (max-width: 64em) {
    .section_weight_lightDos .empty {
      display: none; } }

.section_weight_lightDos .empty-content {
  width: 55%;
  height: 50vh; }
  @media (max-width: 64em) {
    .section_weight_lightDos .empty-content {
      display: none; } }

.section_weight_lightDos .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 45%;
  text-align: center; }
  @media (max-width: 64em) {
    .section_weight_lightDos .content {
      background-color: rgba(0, 0, 0, 0.65);
      width: 100%;
      margin: 5%; } }

.section_weight_lightDos .content div {
  margin-bottom: 10px;
  color: #ffffff;
  font-family: "Raleway", Sans-serif; }

.section_weight_lightDos .content div:first-child {
  font-size: 60px;
  font-family: 'RalewayRegular',Arial,sans-serif; }
  @media (max-width: 64em) {
    .section_weight_lightDos .content div:first-child {
      font-size: 30px; } }

.section_weight_lightDos .content div:last-child {
  font-size: 30px; }
  @media (max-width: 64em) {
    .section_weight_lightDos .content div:last-child {
      font-size: 20px; } }

.section_performance_lightDos {
  background-image: url("/Content/images/lightDos/light2-4.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 64em) {
    .section_performance_lightDos {
      background-size: 100%;
      height: 100%;
      background-position: unset;
      padding: 0; } }

.section_performance_lightDos .empty {
  width: 55%; }
  @media (max-width: 64em) {
    .section_performance_lightDos .empty {
      display: none; } }

.section_performance_lightDos .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 45%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media (max-width: 64em) {
    .section_performance_lightDos .info {
      width: 100%;
      padding: 5%; } }

.section_performance_lightDos .info .empty {
  height: 40%; }
  @media (max-width: 64em) {
    .section_performance_lightDos .info .empty {
      display: none; } }

.section_performance_lightDos .info .text {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 5%;
  color: #000;
  font-family: "Raleway", Sans-serif; }

.text div p {
  margin-bottom: 1%; }

.text div:first-child {
  font-size: 50px;
  margin-bottom: 10px;
  font-family: 'RalewayRegular',Arial,sans-serif; }
  @media (max-width: 64em) {
    .text div:first-child {
      font-size: 30px; } }

.text div:last-child {
  font-size: 20px; }

iframe {
  width: 100%;
  height: 100vh; }
  @media (max-width: 64em) {
    iframe {
      width: 100%;
      height: 25vh; } }

.section_folding_lightDos {
  background-image: url("/Content/images/lightDos/light2-3.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  @media (max-width: 64em) {
    .section_folding_lightDos {
      background-size: 100%;
      height: 25vh;
      background-position: unset;
      padding: 0; } }

.section_folding_lightDos .content {
  background-color: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  font-family: "Raleway", Sans-serif;
  text-transform: none;
  font-style: normal;
  font-weight: 500;
  padding: 1%; }

.section_folding_lightDos .content div div:first-child {
  font-size: 50px; }
  @media (max-width: 64em) {
    .section_folding_lightDos .content div div:first-child {
      font-size: 40px; } }

.section_folding_lightDos .content div div:last-child {
  float: right;
  font-size: 20px;
  margin-top: 1%; }

.section_batery_lightDos {
  background-image: url("/Content/images/lightDos/light2-5.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 64em) {
    .section_batery_lightDos {
      background-size: 100%;
      height: 25vh;
      background-position: unset;
      padding: 0; } }

.section_batery_lightDos .empty {
  width: 55%; }
  @media (max-width: 64em) {
    .section_batery_lightDos .empty {
      display: none; } }

.section_batery_lightDos .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 45%; }
  @media (max-width: 64em) {
    .section_batery_lightDos .content {
      width: 100%;
      text-align: left; } }

.section_batery_lightDos .content div {
  width: 100%;
  height: 33%; }
  @media (max-width: 64em) {
    .section_batery_lightDos .content div {
      height: 50%; } }

.section_batery_lightDos .content .text {
  width: 100%;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.5);
  height: 30%;
  padding: 5%; }
  @media (max-width: 64em) {
    .section_batery_lightDos .content .text {
      height: 100%; } }

.section_batery_lightDos .content .text div:last-child {
  text-align: right;
  margin-top: 5%;
  padding-right: 5%; }
  @media (max-width: 64em) {
    .section_batery_lightDos .content .text div:last-child {
      padding: 0;
      text-align: left; } }

.section_specs_lightDos {
  background-image: url("/Content/images/light/specs.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.section_specs_lightDos .section_specs_up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(0, 0, 0, 0.65);
  padding-left: 5%; }
  @media (max-width: 64em) {
    .section_specs_lightDos .section_specs_up {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; } }

.section_specs_lightDos .section_specs_up .img_spec img {
  width: 75%; }
  @media (max-width: 64em) {
    .section_specs_lightDos .section_specs_up .img_spec img {
      width: 100%; } }

.img_spec {
  width: 50%; }
  @media (max-width: 64em) {
    .img_spec {
      width: 100%; } }

.dimensions {
  color: #ffffff; }

.section_specs_lightDos .section_specs_down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 100px; }
  @media (max-width: 64em) {
    .section_specs_lightDos .section_specs_down {
      padding: 5%;
      margin: 0;
      background-color: rgba(255, 255, 255, 0.65); } }

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