@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700");
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700");
/* --- COLOR VARIABLES --- */
:root {
  --primary-color: #0066FF;
  --primary-light: #1975FF;
  --primary-lighten: #3385FF;
  --primary-dark: #004FE2;
  --primary-darker: #0039C5;
  --secondary-color: #001c46;
  --secondary-light: #535e91;
  --secondary-lighten: #6c77ab;
  --secondary-dark: #394777;
  --secondary-darker: #1f315e;
  --gray-lighter: #F3F5F7;
  --gray-light: #e3e6e9;
  --gray: #999AA7;
  --gray-dark: #342E37;
  --gray-darker: #221E22;
  --black: #222;
  --gray2: #888;
  --brown: #795548;
  --orange: #e67e22;
  --yellow: #f1c40f;
  --green: #2ecc71;
  --blue: #3498db;
  --purple: #9b59b6;
  --pink: #FF4081;
  --red: #e74c3c;
  --bg-black: #9b9a9a;
  --bg-gray2: #dbdbdb;
  --bg-brown: #d7ccc8;
  --bg-orange: #f7d8bc;
  --bg-yellow: #fbedb7;
  --bg-green: #c0f0d4;
  --bg-blue: #c2e0f4;
  --bg-purple: #e1cde9;
  --bg-pink: #ffc5d9;
  --bg-red: #f8c9c4;
  --primary-font: 'Montserrat', sans-serif;
  --secondary-font: 'Montserrat', sans-serif;
  --col-gutter: 1.6rem;
  --shadow: 0px 3px 15px 0px rgba(197,214,231,0.5); }

::-moz-selection {
  background: var(--primary-color);
  color: white; }

::selection {
  background: var(--primary-color);
  color: white; }

/*.fade, a, input[type="text"],
input[type="url"],
input[type="number"],
input[type="date"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="file"],
textarea,
select, #page-load, .navbar, ul.menu li, .sitedoo-element img, .social-icons li a {
  -webkit-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out; }*/

.bordered {
  border: 1px solid var(--gray-light); }

.shadow-bg, .sitedoo-element:hover img {
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow); }

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

body,
html {
  font-family: var(--primary-font);
  color: var(--gray-dark);
  font-size: 14px;
  font-weight: 400;
  top: 0;
  background: white; }
  @media screen and (max-width: 768px) {
    body,
    html {
      font-size: 14px; } }

body.dev .col {
  background-color: #eee;
  border: 1px solid white; }
  body.dev .col .col {
    background-color: #ddd;
    border: 1px solid white; }

/* --- ETIQUETAS BASICAS DE TEXTO --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: var(--secondary-font);
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.3em; }
  h1.lead,
  h2.lead,
  h3.lead,
  h4.lead,
  h5.lead,
  h6.lead {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .04em;
    font-size: .9em; }

h1 {
  font-size: 2.6em; }

h2 {
  font-size: 2.2em; }

h3 {
  font-size: 2em; }

h4 {
  font-size: 1.8em; }

h5 {
  font-size: 1.4em; }

h6 {
  font-size: 1.2em; }

hr {
  height: 1px;
  background-color: #ddd;
  border: none;
  width: 100%; }

p,
ul,
ol,
dl {
  width: 100%;
  line-height: 1.6em;
  margin-bottom: 10px;
  overflow-wrap: break-word;
  color: inherit;
  color: var(--gray); }

ul,
ol {
  line-height: 1.6em; }
  ul.no-bullets,
  ol.no-bullets {
    padding: 0; }
    ul.no-bullets li,
    ol.no-bullets li {
      list-style-type: none; }

a {
  text-decoration: none;
  color: var(--primary-color); }
  a:hover {
    color: var(--primary-dark); }

pre,
code {
  background: var(--gray);
  padding: 20px;
  margin: 0 0 16px 0;
  color: var(--gray-light); }

img {
  max-width: 100%;
  line-height: 0; }

b {
  font-weight: 600; }

/* --- ELEMENTOS DE FORMULARIO --- */
input[type="text"],
input[type="url"],
input[type="number"],
input[type="date"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="file"],
textarea,
select {
  margin-bottom: 16px;
  width: 100%;
  padding: 10px 12px;
  outline: none;
  font-weight: 300;
  border-radius: 4px;
  height: 38px;
  background-color: var(--gray-lighter);
  color: var(--gray-darker);
  border: none; }
  input[type="text"]:focus, input[type="text"]:hover,
  input[type="url"]:focus,
  input[type="url"]:hover,
  input[type="number"]:focus,
  input[type="number"]:hover,
  input[type="date"]:focus,
  input[type="date"]:hover,
  input[type="tel"]:focus,
  input[type="tel"]:hover,
  input[type="email"]:focus,
  input[type="email"]:hover,
  input[type="password"]:focus,
  input[type="password"]:hover,
  input[type="search"]:focus,
  input[type="search"]:hover,
  input[type="file"]:focus,
  input[type="file"]:hover,
  textarea:focus,
  textarea:hover,
  select:focus,
  select:hover {
    outline: inherit;
    background-color: var(--gray-light); }
  input[type="text"].--sm,
  input[type="url"].--sm,
  input[type="number"].--sm,
  input[type="date"].--sm,
  input[type="tel"].--sm,
  input[type="email"].--sm,
  input[type="password"].--sm,
  input[type="search"].--sm,
  input[type="file"].--sm,
  textarea.--sm,
  select.--sm {
    padding: 5px 12px;
    height: 36px; }

textarea {
  height: auto; }

select {
  border-radius: 4px;
  padding: 0 12px;
  height: 44px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background: var(--gray-light) url("../img/icons/arrow.svg");
  background-position: 95% center;
  background-repeat: no-repeat;
  background-size: 12px;
  padding-right: 24px !important; }

.standar label {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px; }
  .standar label input {
    margin-top: 5px;
    margin-bottom: 20px !important;
    font-size: 16px; }

input[type="submit"] {
  margin-bottom: 20px;
  background: var(--primary-color);
  color: white;
  border: none; }

iframe {
  border: 2px solid var(--gray-light);
  border-radius: 4px;
  margin-bottom: 20px !important; }

input[type="button"],
button {
  border-color: transparent; }

.label {
  border-radius: 100px;
  padding: 1px 7px 3px;
  margin-right: 8px;
  color: white;
  background: var(--primary-color); }
  .label[class*="--light"] {
    background-color: rgba(255, 255, 255, 0.15);
    color: white; }

select {
  width: 100%; }

table {
  width: 100%; }
  table thead,
  table tfoot {
    font-size: 14px; }
  table tbody {
    font-weight: 300; }
  table tr td,
  table tr th {
    padding: 8px 5px; }
  table tr th {
    text-transform: uppercase;
    text-align: left; }
  table.default-table {
    border-collapse: collapse; }
    table.default-table tr td,
    table.default-table tr th {
      padding: 10px; }
    table.default-table tr:nth-child(even) {
      background: rgba(0, 0, 0, 0.2); }
    table.default-table thead {
      background: rgba(0, 0, 0, 0.4); }
      table.default-table thead tr,
      table.default-table thead th {
        padding: 12px 10px; }

/* --- COLORES DE FONDO --- */
.bg--primary {
  background: var(--primary-color); }

.bg--primary-light {
  background: #E6F0FF; }

.bg--secondary {
  background: var(--secondary-color); }

.bg--gray-lighter {
  background: var(--gray-lighter); }

.bg-primary-dark {
  background: var(--primary-dark); }

.bg--gradient {
  background: -webkit-linear-gradient(45deg, #ffffff 0%, #ffffff 40%, #effafb 100%);
  background: -o-linear-gradient(45deg, #ffffff 0%, #ffffff 40%, #effafb 100%);
  background: linear-gradient(45deg, #ffffff 0%, #ffffff 40%, #effafb 100%); }

.font--primary {
  font-family: var(--primary-font); }

.text--white {
  color: white;
  font-weight: 300; }
  .text--white a {
    color: white; }

.text--transparent {
  color: rgba(255, 255, 255, 0.4); }

/* --- LOGOTIPO --- */
.logo {
  width: 150px;
  display: inline-block;
  color: var(--gray-darker); }
  .logo a {
    color: inherit;
    text-decoration: none;
    display: inherit; }
  .logo.text-white {
    color: white; }
  .logo .only-icon {
    display: none;
    width: 24px; }
  @media only screen and (max-width: 480px) {
    .logo .only-icon {
      display: block; }
    .logo .only-logo {
      display: none; } }

/* --- ALIGNEMENT ELEMENTS --- */
.v--align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.v--start {
  -ms-flex-line-pack: start;
  align-content: start;
  display: -ms-grid;
  display: grid; }

.v--center {
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -ms-grid;
  display: grid; }

.flex--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.v--end {
  -ms-flex-line-pack: end;
  align-content: end;
  display: -ms-grid;
  display: grid; }

.v--stretch {
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  display: -ms-grid;
  display: grid; }

.v--around {
  -ms-flex-line-pack: distribute;
  align-content: space-around;
  display: -ms-grid;
  display: grid; }

.v--between {
  -ms-flex-line-pack: justify;
  align-content: space-between;
  display: -ms-grid;
  display: grid; }

.v--evenly {
  -ms-flex-line-pack: space-evenly;
  align-content: space-evenly;
  display: -ms-grid;
  display: grid; }

.content--right {
  display: -ms-grid;
  display: grid;
  justify-items: end; }

.content--left {
  display: -ms-grid;
  display: grid;
  justify-items: start; }

.content--center {
  display: -ms-grid;
  display: grid;
  justify-items: center; }

.content--expand {
  display: -ms-grid;
  display: grid;
  justify-items: stretch; }

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

@media screen and (max-width: 768px) {
  .text--center-md {
    text-align: center; }
    .text--center-md h1, .text--center-md h2, .text--center-md h3, .text--center-md h4, .text--center-md h5, .text--center-md h6 {
      width: 100%; } }

@media screen and (max-width: 480px) {
  .text--center-xs {
    text-align: center !important; } }

.text--right {
  text-align: right; }

.text--left {
  text-align: left; }

.text--justify {
  text-align: justify; }

@media screen and (max-width: 769px) {
  .content-between {
    display: block !important; } }

@media screen and (max-width: 768px) {
  .content--center-sm {
    display: -ms-grid;
    display: grid;
    justify-items: center; } }

/* --- SISTEMA DE REJILLAS --- */
.container {
  max-width: 1170px;
  display: -ms-grid;
  display: grid;
  grid-row-gap: 0;
  grid-column-gap: var(--col-gutter);
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  margin: 0 auto;
  width: 100%; }
  .container .container {
    padding: 0; }
  .container [class*="col-"] > .container:last-child {
    margin: 0; }
  .container .col-1 {
    -ms-grid-column-span: 1;
    grid-column: span 1; }
    .container .col-1.col--end {
      -ms-grid-column-span: 1;
      grid-column: span 1 / -1; }
  .container .col-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2; }
    .container .col-2.col--end {
      -ms-grid-column-span: 2;
      grid-column: span 2 / -1; }
  .container .col-3 {
    -ms-grid-column-span: 3;
    grid-column: span 3; }
    .container .col-3.col--end {
      -ms-grid-column-span: 3;
      grid-column: span 3 / -1; }
  .container .col-4 {
    -ms-grid-column-span: 4;
    grid-column: span 4; }
    .container .col-4.col--end {
      -ms-grid-column-span: 4;
      grid-column: span 4 / -1; }
  .container .col-5 {
    -ms-grid-column-span: 5;
    grid-column: span 5; }
    .container .col-5.col--end {
      -ms-grid-column-span: 5;
      grid-column: span 5 / -1; }
  .container .col-6 {
    -ms-grid-column-span: 6;
    grid-column: span 6; }
    .container .col-6.col--end {
      -ms-grid-column-span: 6;
      grid-column: span 6 / -1; }
  .container .col-7 {
    -ms-grid-column-span: 7;
    grid-column: span 7; }
    .container .col-7.col--end {
      -ms-grid-column-span: 7;
      grid-column: span 7 / -1; }
  .container .col-8 {
    -ms-grid-column-span: 8;
    grid-column: span 8; }
    .container .col-8.col--end {
      -ms-grid-column-span: 8;
      grid-column: span 8 / -1; }
  .container .col-9 {
    -ms-grid-column-span: 9;
    grid-column: span 9; }
    .container .col-9.col--end {
      -ms-grid-column-span: 9;
      grid-column: span 9 / -1; }
  .container .col-10 {
    -ms-grid-column-span: 10;
    grid-column: span 10; }
    .container .col-10.col--end {
      -ms-grid-column-span: 10;
      grid-column: span 10 / -1; }
  .container .col-11 {
    -ms-grid-column-span: 11;
    grid-column: span 11; }
    .container .col-11.col--end {
      -ms-grid-column-span: 11;
      grid-column: span 11 / -1; }
  .container .col-12 {
    -ms-grid-column-span: 12;
    grid-column: span 12;
    width: 100%; }
  .container .row-1 {
    -ms-grid-row-span: 1;
    grid-row: span 1; }
  .container .row-2 {
    -ms-grid-row-span: 2;
    grid-row: span 2; }
  .container .row-3 {
    -ms-grid-row-span: 3;
    grid-row: span 3; }
  .container .row-4 {
    -ms-grid-row-span: 4;
    grid-row: span 4; }
  .container .row-5 {
    -ms-grid-row-span: 5;
    grid-row: span 5; }
  .container .row-6 {
    -ms-grid-row-span: 6;
    grid-row: span 6; }
  .container .row-7 {
    -ms-grid-row-span: 7;
    grid-row: span 7; }
  .container .row-8 {
    -ms-grid-row-span: 8;
    grid-row: span 8; }
  .container .row-9 {
    -ms-grid-row-span: 9;
    grid-row: span 9; }
  .container .row-10 {
    -ms-grid-row-span: 10;
    grid-row: span 10; }
  .container .row-11 {
    -ms-grid-row-span: 11;
    grid-row: span 11; }
  .container .row-12 {
    -ms-grid-row-span: 12;
    grid-row: span 12; }
  @media only screen and (max-width: 1024px) {
    .container {
      padding: 0 1.4em; }
      .container [class*="col-"].md-1 {
        -ms-grid-column-span: 1;
        grid-column: span 1; }
      .container [class*="col-"].md-2 {
        -ms-grid-column-span: 2;
        grid-column: span 2; }
      .container [class*="col-"].md-3 {
        -ms-grid-column-span: 3;
        grid-column: span 3; }
      .container [class*="col-"].md-4 {
        -ms-grid-column-span: 4;
        grid-column: span 4; }
      .container [class*="col-"].md-5 {
        -ms-grid-column-span: 5;
        grid-column: span 5; }
      .container [class*="col-"].md-6 {
        -ms-grid-column-span: 6;
        grid-column: span 6; }
      .container [class*="col-"].md-7 {
        -ms-grid-column-span: 7;
        grid-column: span 7; }
      .container [class*="col-"].md-8 {
        -ms-grid-column-span: 8;
        grid-column: span 8; }
      .container [class*="col-"].md-9 {
        -ms-grid-column-span: 9;
        grid-column: span 9; }
      .container [class*="col-"].md-10 {
        -ms-grid-column-span: 10;
        grid-column: span 10; }
      .container [class*="col-"].md-11 {
        -ms-grid-column-span: 11;
        grid-column: span 11; }
      .container [class*="col-"].md-12 {
        -ms-grid-column-span: 12;
        grid-column: span 12; } }
  @media only screen and (max-width: 768px) {
    .container [class*="col-"].sm-1 {
      -ms-grid-column-span: 1;
      grid-column: span 1; }
    .container [class*="col-"].sm-2 {
      -ms-grid-column-span: 2;
      grid-column: span 2; }
    .container [class*="col-"].sm-3 {
      -ms-grid-column-span: 3;
      grid-column: span 3; }
    .container [class*="col-"].sm-4 {
      -ms-grid-column-span: 4;
      grid-column: span 4; }
    .container [class*="col-"].sm-5 {
      -ms-grid-column-span: 5;
      grid-column: span 5; }
    .container [class*="col-"].sm-6 {
      -ms-grid-column-span: 6;
      grid-column: span 6; }
    .container [class*="col-"].sm-7 {
      -ms-grid-column-span: 7;
      grid-column: span 7; }
    .container [class*="col-"].sm-8 {
      -ms-grid-column-span: 8;
      grid-column: span 8; }
    .container [class*="col-"].sm-9 {
      -ms-grid-column-span: 9;
      grid-column: span 9; }
    .container [class*="col-"].sm-10 {
      -ms-grid-column-span: 10;
      grid-column: span 10; }
    .container [class*="col-"].sm-11 {
      -ms-grid-column-span: 11;
      grid-column: span 11; }
    .container [class*="col-"].sm-12 {
      -ms-grid-column-span: 12;
      grid-column: span 12; } }
  @media only screen and (max-width: 480px) {
    .container [class*="col-"].xs-1 {
      -ms-grid-column-span: 1;
      grid-column: span 1; }
    .container [class*="col-"].xs-2 {
      -ms-grid-column-span: 2;
      grid-column: span 2; }
    .container [class*="col-"].xs-3 {
      -ms-grid-column-span: 3;
      grid-column: span 3; }
    .container [class*="col-"].xs-4 {
      -ms-grid-column-span: 4;
      grid-column: span 4; }
    .container [class*="col-"].xs-5 {
      -ms-grid-column-span: 5;
      grid-column: span 5; }
    .container [class*="col-"].xs-6 {
      -ms-grid-column-span: 6;
      grid-column: span 6; }
    .container [class*="col-"].xs-7 {
      -ms-grid-column-span: 7;
      grid-column: span 7; }
    .container [class*="col-"].xs-8 {
      -ms-grid-column-span: 8;
      grid-column: span 8; }
    .container [class*="col-"].xs-9 {
      -ms-grid-column-span: 9;
      grid-column: span 9; }
    .container [class*="col-"].xs-10 {
      -ms-grid-column-span: 10;
      grid-column: span 10; }
    .container [class*="col-"].xs-11 {
      -ms-grid-column-span: 11;
      grid-column: span 11; }
    .container [class*="col-"].xs-12 {
      -ms-grid-column-span: 12;
      grid-column: span 12; } }

.full--width {
  max-width: 100%; }

.full--height {
  height: 100vh; }

.full--spaced {
  grid-gap: 0;
  margin: 0;
  padding: 0; }

/* --- ALINEACION DE TEXTOS --- */
.text--right {
  text-align: right; }

.text--left {
  text-align: left; }

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

.right {
  float: right; }

.justify--right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.inline--block {
  display: inline-block; }

.inline {
  display: inline;
  width: auto; }

@media screen and (max-width: 1023px) {
  .text-center-md {
    text-align: center; } }

@media screen and (max-width: 768px) {
  .text-center--sm {
    text-align: center; } }

@media screen and (max-width: 480px) {
  .text-center--xs {
    text-align: center; } }

@media screen and (max-width: 768px) {
  .column-reverse-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; } }

/* --- COLORES PARA TEXTOS --- */
.text--primary {
  color: var(--primary-color); }

.text--primary-light {
  color: var(--primary-light); }

.text--gray-light {
  color: var(--gray-light); }

.text--gray-lighter {
  color: var(--gray-lighter); }

/* --- BOTONES --- */
.btn {
  color: white;
  padding: 15px 25px;
  border-radius: 100px;
  font-family: var(--secondary-font);
  font-size: 15px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
  display: inline-block;
  text-transform: uppercase;
  background-color: var(--primary-color);
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  padding: .6em 1.5em; }
  .btn:hover {
    background-color: var(--secondary-dark);
    color: white; }
  .btn[class*="--primary"] {
    background: var(--primary-color); }
    .btn[class*="--primary"]:hover {
      background: var(--primary-darker) !important; }
  .btn[class*="--secondary"] {
    background: var(--secondary-color); }
    .btn[class*="--secondary"]:hover {
      background: var(--secondary-darker) !important; }
  .btn[class*="--white"] {
    background-color: white;
    color: var(--primary-color); }
    .btn[class*="--white"]:hover {
      background: #f7f7f7; }
  .btn[class*="--default"] {
    background-color: #ccc;
    color: white; }
    .btn[class*="--default"]:hover {
      background: #aaa; }
  .btn[class*="--dark"] {
    background-color: var(--gray-dark);
    color: white; }
    .btn[class*="--dark"]:hover {
      background: var(--gray-darker); }
  .btn[class*="--transparent"] {
    background: transparent;
    color: var(--gray-darker); }
    .btn[class*="--transparent"]:hover {
      background: transparent; }
  .btn[class*="--sm"] {
    padding: 10px 25px;
    height: auto;
    font-size: 12px; }
  .btn[class*="--md"] {
    font-size: 14px;
    padding: 14px 30px; }
  .btn[class*="--lg"] {
    padding: 18px 50px;
    font-size: 16px; }
  .btn[class*="--xl"] {
    font-size: 2em; }
  .btn[class*="--block"] {
    display: block;
    width: 100%; }
  .btn[class*="--inline"] {
    display: inline-block; }

input[type=button].btn {
  outline: none;
  cursor: pointer; }

/* --- ESPACIOS PARA ELEMENTOS --- */
.space-xs {
  margin-top: 15px !important;
  margin-bottom: 15px !important; }

.space-sm {
  margin-top: 30px;
  margin-bottom: 30px; }

.space-md {
  margin-top: 60px;
  margin-bottom: 60px; }

.space-lg {
  margin-top: 90px;
  margin-bottom: 90px; }

.space-xl {
  margin-top: 120px;
  margin-bottom: 120px; }

.space-sm-top {
  margin-top: 30px; }

.space-md-top {
  margin-top: 60px; }

.space-lg-top {
  margin-top: 90px; }

.space-xl-top {
  margin-top: 120px; }

.space-sm-bottom {
  margin-bottom: 30px; }

.space-md-bottom {
  margin-bottom: 60px; }

.space-lg-bottom {
  margin-bottom: 90px; }

.space-xl-bottom {
  margin-bottom: 120px; }

.space-xs-top {
  margin-top: 15px !important; }

.space-xs-inner {
  padding-top: 15px !important;
  padding-bottom: 15px !important; }

.space-sm-inner {
  padding-top: 30px;
  padding-bottom: 30px; }

.space-md-inner {
  padding-top: 60px;
  padding-bottom: 60px; }

.space-lg-inner {
  padding-top: 90px;
  padding-bottom: 90px; }

.space-xl-inner {
  padding-top: 120px;
  padding-bottom: 120px; }

.space-sm-top-inner {
  padding-top: 30px; }

.space-md-top-inner {
  padding-top: 60px; }

.space-lg-top-inner {
  padding-top: 90px; }

.space-xl-top-inner {
  padding-top: 120px; }

.space-sm-bottom-inner {
  padding-bottom: 30px; }

.space-md-bottom-inner {
  padding-bottom: 60px; }

.space-lg-bottom-inner {
  padding-bottom: 90px; }

.space-xl-bottom-inner {
  padding-bottom: 120px; }

.space-xs-bottom-inner {
  padding-bottom: 15px; }

/* --- TITULOS --- */
.text-light {
  color: white; }
  .text-light h1,
  .text-light h2,
  .text-light h3,
  .text-light h4,
  .text-light h5,
  .text-light h6,
  .text-light p,
  .text-light ul,
  .text-light li,
  .text-light a,
  .text-light span {
    color: white; }

.centered {
  margin: 0 auto; }

.small {
  font-size: 12px; }

.bold {
  font-weight: 600; }

.uppercase {
  text-transform: uppercase; }

/* --- ICONOS --- */
[class*="icon"].--md {
  font-size: 21px; }

[class*="icon"].--lg {
  font-size: 36px; }

.icon--right {
  margin-left: .8em; }

.icon--left {
  margin-right: .8em; }

/* --- FORMAS GEOMETRICAS --- */
.circle {
  border-radius: 50%; }

.rounded {
  border-radius: 0.4em; }

/* --- VIDEO RESPONSIVE --- */
video {
  width: 100%;
  height: auto; }

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden; }
  .video-container iframe,
  .video-container object,
  .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.map-container,
.video-container {
  margin-bottom: 20px; }

button {
  outline: 0;
  padding: 0;
  cursor: pointer; }
  button img {
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    background-color: var(--primary-color); }
  button:hover {
    color: var(--primary-darker); }
    button:hover img {
      opacity: .8; }

label.file input {
  position: absolute;
  width: 0;
  overflow: hidden;
  opacity: 0; }

label.file {
  margin-bottom: 20px;
  width: 0%;
  /* Use for fluid design */
  min-width: 200px;
  width: 100%;
  height: 42px;
  line-height: 42px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  white-space: nowrap;
  font-family: sans-serif;
  text-align: right; }

label.file:before {
  content: "Upload picture";
  display: block;
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: inherit;
  padding: 0 84px 0 10px;
  border-width: 2px 0px 2px 2px;
  border-radius: 3px;
  background-color: var(--gray-lighter);
  font-family: var(--primary-font);
  font-size: 12px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  text-align: center;
  vertical-align: middle; }

label.file[title]:not([title=""]):before {
  content: attr(title);
  color: white; }

.upload {
  background-color: var(--gray-light); }

label.file:after {
  content: "Upload";
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: var(--primary-font);
  font-size: 14px;
  width: 150px;
  height: inherit;
  padding: 0 4px;
  border-radius: 0 3px 3px 0;
  background-color: var(--primary-color);
  color: #fff;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  text-align: center; }

.primary-label {
  border-color: var(--primary-color); }

.no-margin-bottom {
  margin-bottom: 0 !important; }

.sidebar {
  padding: 15px; }

select.sm {
  height: 38px;
  padding: 0 10px; }

.no-margin-bottom {
  margin-bottom: 0 !important; }

.no-padding-bottom {
  padding-bottom: 0 !important; }

.text--alert {
  text-align: center;
  color: #f45; }

.wrapper-slider {
  max-width: 100%;
  margin: 0 auto; }
  .wrapper-slider * {
    outline: none; }

img {
  max-width: 100%;
  height: auto; }

.responsible-table {
  overflow: auto; }

.display--inline {
  display: inline; }

.content--centered {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.icon-round {
  border-radius: 50%; }

@media only screen and (max-width: 1366px) {
  .hide--md {
    display: none; } }

@media only screen and (max-width: 1024px) {
  .hide--sm {
    display: none; }
  .show--sm {
    display: inherit; } }

@media only screen and (max-width: 768px) {
  #fullpage .container {
    margin: 0 15px; } }

@media only screen and (max-width: 480px) {
  .hide--xs {
    display: none !important; } }

#page-load {
  background: var(--primary-color);
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 9999;
  text-align: center;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  #page-load .spinner {
    background: transparent url("../img/icon.svg");
    width: 100px;
    height: 100px;
    -webkit-animation: pulse 1s infinite ease-in-out;
    animation: pulse 1s infinite ease-in-out; }

@-webkit-keyframes pulse {
  0% {
    opacity: .1; }
  50% {
    opacity: .5; }
  100% {
    opacity: .1; } }

@keyframes pulse {
  0% {
    opacity: .1; }
  50% {
    opacity: .5; }
  100% {
    opacity: .1; } }

.color--black {
  color: var(--black);
  fill: var(--black); }

.color--gray {
  color: var(--gray2);
  fill: var(--gray2); }

.color--brown {
  color: var(--brown);
  fill: var(--brown); }

.color--orange {
  color: var(--orange);
  fill: var(--orange); }

.color--yellow {
  color: var(--yellow);
  fill: var(--yellow); }

.color--green {
  color: var(--green);
  fill: var(--green); }

.color--blue {
  color: var(--blue);
  fill: var(--blue); }

.color--purple {
  color: var(--purple);
  fill: var(--purple); }

.color--pink {
  color: var(--pink);
  fill: var(--pink); }

.color--red {
  color: var(--red);
  fill: var(--red); }

.bg--black {
  background-color: var(--bg-black); }

.bg--gray {
  background-color: var(--bg-gray2); }

.bg--brown {
  background-color: var(--bg-brown); }

.bg--orange {
  background-color: var(--bg-orange); }

.bg--yellow {
  background-color: var(--bg-yellow); }

.bg--green {
  background-color: var(--bg-green); }

.bg--blue {
  background-color: var(--bg-blue); }

.bg--purple {
  background-color: var(--bg-purple); }

.bg--pink {
  background-color: var(--bg-pink); }

.bg--red {
  background-color: var(--bg-red); }

/* --- HEADER Y MENU --- */
.navbar {
  background: transparent;
  height: 6em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 8888;
  width: 100%; }
  .navbar[class*="--fixed"] {
    position: fixed;
    top: 0; }

#main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch; }

ul.menu {
  padding: 0;
  margin: 0;
  list-style-type: none;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  width: auto;
  font-family: var(--secondary-font);
  text-transform: uppercase; }
  ul.menu li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 10px; }
    ul.menu li:first-child {
      margin-left: 0; }
    ul.menu li:last-child {
      margin-right: 0; }
  ul.menu a {
    text-decoration: none;
    font-size: 12px;
    margin: 0;
    color: var(--gray-dark); }
    ul.menu a:hover, ul.menu a.active {
      border-color: var(--primary-color); }
    ul.menu a.avatar {
      display: block;
      line-height: 0;
      margin-left: 0; }
    ul.menu a.link-primary {
      color: var(--primary-color); }
      ul.menu a.link-primary:hover {
        color: var(--primary-dark); }
    ul.menu a.btn {
      color: white;
      padding: 3px 25px;
      height: auto; }
  ul.menu.text--white li a {
    color: white; }

.img-featured {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background: var(--gray-lighter); }

@media screen and (max-width: 768px) {
  .section-features .container {
    grid-row-gap: 2em; } }

@media screen and (max-width: 768px) {
  .section-feature img {
    margin-top: 2em; } }

.vertical--center {
  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: start;
  -ms-flex-align: start;
  align-items: start; }

.featured-images {
  position: relative; }
  @media screen and (max-width: 1024px) {
    .featured-images .feature-1 {
      max-width: 250px; }
    .featured-images .feature-2 {
      max-width: 200px;
      bottom: 40px; }
    .featured-images .feature-3 {
      max-width: 80%; } }
  @media screen and (max-width: 768px) {
    .featured-images .feature-1 {
      max-width: 200px; }
    .featured-images .feature-2 {
      max-width: 170px;
      bottom: 40px; } }
  @media screen and (max-width: 480px) {
    .featured-images .feature-1 {
      max-width: 120px;
      bottom: 20px; }
    .featured-images .feature-2 {
      max-width: 100px;
      bottom: 20px; } }

.feature-1, .feature-2 {
  position: absolute;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(197, 214, 231, 0.7);
  box-shadow: 0px 5px 15px 0px rgba(197, 214, 231, 0.7); }

.feature-1 {
  left: 0px;
  bottom: 40px; }

.feature-2 {
  right: 0px;
  bottom: 100px; }

.feature-3 {
  -webkit-box-shadow: 0px 3px 15px 0px rgba(197, 214, 231, 0.7);
  box-shadow: 0px 3px 15px 0px rgba(197, 214, 231, 0.7);
  border-radius: 4px; }

.sitedoo-elements {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[7];
  grid-template-columns: repeat(7, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 40px; }
  @media only screen and (max-width: 480px) {
    .sitedoo-elements {
      -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr); } }

.sitedoo-element {
  text-align: center;
  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;
  position: relative; }
  .sitedoo-element img:first-child {
    margin-right: 10px; }
  .sitedoo-element h6 {
    font-weight: 500;
    margin: 0;
    font-size: 13px; }
  .sitedoo-element img {
    border-radius: 6px;
    padding: 5px;
    background: var(--gray-lighter);
    width: 48px;
    height: 48px; }
  .sitedoo-element:hover img {
    background: white; }
  @media only screen and (max-width: 480px) {
    .sitedoo-element:nth-child(4n) .elem-container {
      left: -180px; }
    .sitedoo-element:nth-child(1) .elem-container, .sitedoo-element:nth-child(5) .elem-container, .sitedoo-element:nth-child(9) .elem-container, .sitedoo-element:nth-child(13) .elem-container, .sitedoo-element:nth-child(17) .elem-container, .sitedoo-element:nth-child(21) .elem-container, .sitedoo-element:nth-child(25) .elem-container {
      left: 10px; } }

.elem-container {
  position: absolute;
  top: 60px;
  text-align: left;
  background: white;
  width: 250px;
  -webkit-box-shadow: 0px 3px 15px 0px rgba(197, 214, 231, 0.5);
  box-shadow: 0px 3px 15px 0px rgba(197, 214, 231, 0.5);
  padding: 1em;
  border-radius: 6px;
  display: none;
  z-index: 9932; }
  .elem-container .elem-title h6 {
    font-size: 15px;
    margin-bottom: .8em; }
  .elem-container.show {
    display: block; }

.plan {
  border-radius: 4px;
  -webkit-box-shadow: 0px 3px 15px 0px rgba(197, 214, 231, 0.5);
  box-shadow: 0px 3px 15px 0px rgba(197, 214, 231, 0.5);
  padding: 20px 10px;
  background: white; }
  .plan .plan--title {
    text-transform: uppercase;
    font-weight: 600; }
  .plan .plan--price {
    padding: 10px 0; }
    .plan .plan--price h2 {
      font-weight: 500;
      margin: 0; }
    .plan .plan--price p {
      text-transform: uppercase;
      font-size: .8em;
      font-weight: 600;
      color: #aaa; }
  .plan .plan--details li::before {
    content: "\2022";
    color: var(--gray-light);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em; }
  .plan .plan--details {
    list-style-type: none;
    padding: 0;
    line-height: 2em; }
  .plan.active .plan--title, .plan.active .plan--details li::before {
    color: var(--primary-color); }
  .plan .btn {
    margin-bottom: 0; }
  @media only screen and (max-width: 768px) {
    .plan {
      margin-bottom: 1.6em; } }

.main-footer {
  background: var(--secondary-color);
  padding: 60px 0;
  color: white; }
  .main-footer p {
    color: white; }
  .main-footer .logo {
    margin-bottom: 20px; }
  .main-footer a {
    color: white; }

.no-line-height {
  line-height: 0; }

.video-sitedoo {
  width: 100%;
  height: auto; }

.social-icons {
  list-style-type: none;
  padding: 0; }
  .social-icons li {
    display: inline-block; }
    .social-icons li a {
      background: var(--secondary-color);
      display: block;
      border-radius: 32px;
      font-size: 18px;
      width: 48px;
      height: 48px;
      text-align: center;
      line-height: 48px;
      color: white; }
      .social-icons li a:hover {
        background: white;
        color: var(--secondary-color); }
  @media only screen and (max-width: 480px) {
    .social-icons {
      margin-top: 2em; } }

.slogan {
  font-size: 12px;
  text-transform: uppercase;
  font-family: var(--secondary-font);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0; }

.after-footer {
  padding-bottom: 20px;
  background-color: var(--secondary-color); }
  .after-footer p, .after-footer a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 300; }
  .after-footer a:hover {
    text-decoration: underline; }
  @media screen and (max-width: 480px) {
    .after-footer .contact-us {
      margin-bottom: 1em;
      display: inline-block; } }

.copyright, .contact-us {
  margin-bottom: 0; }

.bg-color {
  background: white;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(197, 214, 231, 0.7);
  box-shadow: 0px 1px 4px 0px rgba(197, 214, 231, 0.7);
  height: 3.4em; }
  .bg-color .logo {
    width: 140px; }

.frames {
  height: 450px; }
  @media only screen and (max-width: 1024px) {
    .frames .frame {
      margin-left: 0; }
    .frames .frame--phone {
      right: 0px !important; } }
  @media only screen and (max-width: 768px) {
    .frames {
      height: 300px; }
      .frames .frame {
        width: 100%;
        border-top: 10px solid;
        border-bottom: 10px solid;
        border-right: 20px solid;
        border-left: 20px solid;
        border-color: white; }
      .frames .frame--phone {
        display: none; } }

.frame {
  width: 900px;
  height: auto;
  margin: 0 auto;
  display: block;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(195, 218, 241, 0.7);
  box-shadow: 0px 0px 15px 0px rgba(195, 218, 241, 0.7);
  border-top: 20px solid;
  border-bottom: 20px solid;
  border-right: 40px solid;
  border-left: 40px solid;
  border-color: white;
  background: var(--gray-lighter);
  border-radius: 20px;
  bottom: -100px; }
  .frame img {
    width: 100%;
    border: 1px solid #f7f7f7;
    background: white;
    border-radius: 5px; }
  .frame.frame--phone {
    width: 250px;
    height: 450px;
    border-top: 40px solid;
    border-bottom: 40px solid;
    border-right: 10px solid;
    border-left: 10px solid;
    border-color: white;
    right: 50px; }

.featured-icon {
  display: inline-block;
  border-radius: 6px;
  margin-bottom: 1.6em; }
  .featured-icon svg {
    background: white;
    border-radius: 16px;
    padding: 16px;
    width: 64px;
    height: 64px;
    fill: var(--primary-color); }

.faqs--container {
  background: white;
  border-radius: 8px;
  padding: 1.6em 3em;
  font-weight: 300; }
  @media only screen and (max-width: 1024px) {
    .faqs--container {
      margin: 0 1em;
      width: auto; } }

.question {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 36px 1fr;
  grid-template-columns: 36px 1fr;
  margin-bottom: 15px; }
  .question .question--icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-color); }
  .question .question--title {
    font-family: var(--primary-font);
    margin-bottom: 5px; }
    .question .question--title:hover {
      color: var(--primary-color); }

.question--answer {
  width: 100%;
  display: block; }

.feature {
  margin: 2em 0; }
  .feature .feature--icon {
    margin-bottom: 8px;
    fill: var(--primary-color); }
  .feature .feature--title {
    font-family: var(--primary-font); }

.section-start-now {
  background: var(--primary-color);
  color: white; }
  .section-start-now .btn {
    margin: 0; }

.clients {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[7];
  grid-template-columns: repeat(7, 1fr);
  grid-row-gap: 3em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  justify-items: center; }
  @media only screen and (max-width: 1024px) {
    .clients {
      -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr); } }
  @media only screen and (max-width: 480px) {
    .clients {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }

.user-logo {
  padding: 5px;
  opacity: .8; }
