@charset "UTF-8";
/* INI PARTIALS */
/* 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;
  vertical-align: baseline;
}

/* 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;
}

input[type=text] {
  /* Remove First */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* INI MEDIA QUERIES */
/* USO: @include respond-to(small) { ... }/
/* FIN MEDIA QUERIES */
/* INI CALCULA REM */
/* USO: @include font-size(14px); */
/* FIN CALCULA REM */
/* INI CLEARFIX*/
/* USO: @include clearfix(); */
/* FIN CLEARFIX*/
/* INI BOX SIZING */
/* USO: @include box-sizing(border-box); */
/* FIN BOX SIZING */
/* INI CENTERER */
/* USO: con parent en position relative añadir a elemento child @include centerer; */
/* FIN CENTERER */
/* INI BORDER RADIUS */
/* USO: @include border-radius(5px); */
/* USO: @include border-top-radius(10px); */
/* FIN BORDER RADIUS */
/* INI OPACITY */
/* USO: @include opacity(0.8); */
/* FIN OPACITY */
/* INI CENTER BLOCK */
/* USO: @include center-block; */
/* FIN CENTER BLOCK */
/* INI TEXT OVERFLOW */
/* USO: @include text-truncate; */
/* FIN TEXT OVERFLOW */
/* INI BACKGROUND IMAGE */
/* USO: @include bgimage('../img/generic/flecha_top.png',no-repeat,100%); */
/* FIN BACKGROUND IMAGE */
/* INI TRANSITION */
/* USO: @include transition(color .3s ease); */
/* FIN TRANSITION */
/* INI TRANSFORM */
/*
  USO:
  @include skew(25,10);
  @include transform-origin(top left);
*/
/* FIN TRANSFORM */
/* INI PLACEHOLDER */
/*USO:
@include input-placeholder {
        color: $grey;
    }*/
/* FIN PLACEHOLDER */
/* INI WORD WRAPPING */
/* USO: @include mixin word-wrap; */
/* FIN WORD WRAPPING */
/* INI BACKGROUND COVER */
/* USO: @include bg-cover('../path/to/image.jpg', no-repeat 100%); */
/* FIN BACKGROUND COVER */
/* INI LINKS */
/* USO: @include linx (blue, green, red, orange); */
/* FIN LINKS */
/* INI RGBA */
/* USO: @include alpha-background-color(rgba(black, 0.5), white); */
/* FIN RGBA */
/* USO @include horizontal-gradient(#71c005, #88dd06); */
/* FIN PARTIALS */
/* INI IMG ROUTE */
/* FIN IMG ROUTE */
@font-face {
  font-family: "GreycliffCFRG";
  src: url("../fonts/greycliff-cf-regular.woff") format("woff");
}

@font-face {
  font-family: "GreycliffCFBD";
  src: url("../fonts/greycliff-cf-bold.woff") format("woff");
}

@font-face {
  font-family: "Canela";
  src: url("../fonts/canela.woff") format("woff");
}

/* INI TYPE */
/* FIN TYPE */
/* INI MELIA */
/* FIN MELIA */
/* INI COLORES WEBSITE */
/* FIN COLORES WEBSITE */
.color-white {
  color: #ffffff !important;
}

.bg-gray {
  background-color: #8e8783 !important;
}

.bg-blue-gray {
  background-color: #fbbc40 !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-transparent-white {
  background-color: rgba(255, 255, 255, 0.6) !important;
}

/* INI HIGHLIGHTS */
::selection {
  color: #ffffff;
  background: #fbbc40;
}

::-moz-selection {
  color: #ffffff;
  background: #fbbc40;
}

::-webkit-selection {
  color: #ffffff;
  background: #fbbc40;
}

/* FIN HIGHLIGHTS */
/* INI GENERAL */
html {
  width: 100%;
  height: 100%;
  font-size: 100%;
  font-family: "GreycliffCFRG", sans-serif;
  background-color: #ffffff;
}

body {
  height: 100%;
  width: 100%;
  color: #3e4543;
  font-weight: 300;
  background-color: transparent;
}

.wrapper {
  min-height: 100%;
  height: auto !important;
  margin: 0 auto -40px;
}

@media (min-width: 480px) {
  .wrapper {
    margin: 0 auto -40px;
  }
}

#push,
.footer {
  height: 40px;
}

@media (min-width: 480px) {
  #push,
  .footer {
    height: 40px;
  }
}

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

a,
button {
  color: #3e4543;
  text-decoration: none;
}

a:active, a:focus,
button:active,
button:focus {
  outline: none !important;
}

a:active img, a:focus img,
button:active img,
button:focus img {
  outline: none;
}

ul {
  margin: 0;
}

ol {
  list-style-type: decimal;
  list-style-position: inside;
}

ol li {
  list-style-type: decimal;
  list-style-position: inside;
}

ol li h3 {
  display: inline-block;
  /*Para Firefox*/
}

li {
  list-style: none;
}

.no-ov {
  overflow: hidden;
}

.ov {
  overflow: visible;
}

.relative {
  position: relative;
}

.static {
  position: static;
}

.flex-container {
  display: flex;
}

.form-group label {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-group .form-control {
  -webkit-border-radius: 34px;
  border-radius: 34px;
  background-clip: padding-box;
  border: 1px solid #ba4b22;
  color: #3e4543;
  height: 42px;
  padding: 0.275rem 1.2rem;
  font-size: 16px;
  font-size: 1rem;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #3e4543;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #3e4543;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #3e4543;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #3e4543;
}

.btn {
  outline: none;
  box-shadow: none !important;
}

.btn-primary {
  display: inline-block;
  text-align: center;
  width: 100%;
  font-family: "GreycliffCFRG", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  color: #ffffff;
  background: -moz-linear-gradient(left, #5f8784 0%, #6c9ea5 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #5f8784 0%, #6c9ea5 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #5f8784 0%, #6c9ea5 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FF5F8784', endColorstr='#FF6C9EA5',GradientType=1 );
  /* IE6-9 */
  outline: none !important;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background-clip: padding-box;
  background-clip: border-box !important;
  border: 1px solid transparent !important;
  height: 50px;
  max-width: 130px;
  line-height: 1;
  padding: 0.7rem 1rem;
  text-decoration: none;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.2), 0 10px 8px rgba(0, 0, 0, 0.12) !important;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.btn-primary:hover {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  outline: none !important;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.2), 0 10px 8px rgba(0, 0, 0, 0.12) !important;
  color: #ffffff;
  border: 1px solid transparent !important;
  background: -moz-linear-gradient(left, #5f8784 0%, #6c9ea5 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #5f8784 0%, #6c9ea5 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #5f8784 0%, #6c9ea5 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FF5F8784', endColorstr='#FF6C9EA5',GradientType=1 );
  /* IE6-9 */
}

@media (min-width: 767px) {
  .btn-primary {
    max-width: 170px;
    height: 60px;
    font-size: 24px;
    font-size: 1.5rem;
  }
}

h1 {
  font-family: "Canela", sans-serif;
  color: #8e8783;
  font-weight: normal;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
}

@media (min-width: 767px) {
  h1 {
    font-size: 46px;
    font-size: 2.875rem;
  }
}

@media (min-width: 992px) {
  h1 {
    font-size: 50px;
    font-size: 3.125rem;
  }
}

p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 15px;
}

p strong {
  font-family: "GreycliffCFBD", sans-serif;
  font-weight: normal;
}

@media (min-width: 992px) {
  p {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

/* ini portada */
.cover .cover-image {
  position: relative;
  background-image: url(../img/bg-portada.jpg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  padding: 0;
}

.cover .cover-image:after {
  content: '';
  position: absolute;
  top: 0;
  right: -20px;
  width: 10px;
  height: 100%;
  background-color: #8e8783;
}

@media (min-width: 767px) {
  .cover .cover-image {
    background-size: auto 100%;
    background-position: top right;
  }
}

.cover .cover-sidebar {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-width: 70px;
  max-width: fit-content;
  height: 100%;
  background: #8e8783;
  border-left: 15px solid #ffffff;
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 20px;
  padding-top: 80px;
  min-height: 270px;
}

.cover .cover-sidebar img {
  width: 25px;
  min-width: 25px;
}

.cover .cover-sidebar:after {
  content: '';
  position: absolute;
  top: 0;
  right: -30px;
  width: 30px;
  height: 100%;
  background-color: #71c5c3;
}

.cover .cover-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  overflow: hidden;
  padding-left: 45px;
}

.cover .cover-info .cover-info-logo {
  padding: 30px;
}

.cover .cover-info .cover-info-logo img {
  width: 90px;
  min-width: 90px;
}

@media (min-width: 1200px) {
  .cover .cover-info .cover-info-logo img {
    width: 140px;
    min-width: 140px;
  }
}

.cover .cover-info .cover-info-img {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  border-bottom: 2px solid #8e8783;
  margin-right: 30px;
  margin-left: -30px;
  padding-bottom: 30px;
}

.cover .cover-info .cover-info-img img {
  width: 100%;
  max-width: 180px;
}

@media (min-width: 767px) {
  .cover .cover-info .cover-info-img img {
    max-width: 200px;
  }
}

@media (min-width: 1200px) {
  .cover .cover-info .cover-info-img img {
    max-width: 250px;
  }
}

.cover .cover-info h1 {
  font-family: "GreycliffCFRG", sans-serif;
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1;
  text-align: right;
  /*max-width: 300px;*/
  padding: 30px;
}

@media (min-width: 767px) {
  .cover .cover-info h1 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

@media (min-width: 992px) {
  .cover .cover-info h1 {
    font-size: 36px;
    font-size: 2.25rem;
    padding-bottom: 60px;
  }
}

@media (min-width: 1200px) {
  .cover .cover-info h1 {
    font-size: 50px;
    font-size: 3.125rem;
  }
}

/* fin portada */
/* ini sección texto */
.section-text {
  background-color: #ffffff !important;
}

/* fin sección texto */
/* ini sidebar */
.section-sidebar, .section-sidebar-white, .section-sidebar-right {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 30px;
  height: 100%;
  /*background: $gray;*/
  background: #cf0542;
}

@media (min-width: 767px) {
  .section-sidebar, .section-sidebar-white, .section-sidebar-right {
    width: 60px;
  }
}

.section-sidebar .section-sidebar-number, .section-sidebar-white .section-sidebar-number, .section-sidebar-right .section-sidebar-number {
  width: 100%;
  text-align: center;
  background-color: #cf0540;
  border-top: 20px solid #ffffff;
  padding-top: 80px;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 20px;
  font-size: 1.25rem;
  color: #3e4543;
}

@media (min-width: 767px) {
  .section-sidebar .section-sidebar-number, .section-sidebar-white .section-sidebar-number, .section-sidebar-right .section-sidebar-number {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.section-sidebar-white {
  background: rgba(255, 255, 255, 0.4);
}

.section-sidebar-white .section-sidebar-number {
  display: none;
  padding-top: 19px;
}

.section-sidebar-right {
  background-color: rgba(255, 255, 255, 0.4);
  margin-left: auto;
}

.section-sidebar-right .section-sidebar-text {
  display: none;
  transform: rotate(-90deg);
  transform-origin: bottom;
  margin-left: 25px;
  margin-bottom: 60px;
  font-size: 26px;
  font-size: 1.625rem;
}

/* fin sidebar */
/* ini pie sección */
.section-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 15px;
}

.section-footer img {
  width: 60px;
}

@media (min-width: 767px) {
  .section-footer {
    padding: 10px 45px 20px 45px;
  }
  .section-footer.absolute {
    position: absolute;
    bottom: 0;
  }
  .section-footer img {
    width: 70px;
  }
}

/* fin pie sección */
/* ini info sección */
.section-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.section-info .section-info-row {
  display: flex;
  align-items: flex-start;
}

@media screen and (min-width: 0\0) {
  .section-info .section-info-row {
    width: 100%;
  }
}

.section-info h1 {
  font-family: "Canela", sans-serif;
  color: #3e4543;
  font-weight: normal;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.section-info h1.title {
  font-family: "Canela", sans-serif;
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.2;
}

@media (min-width: 767px) {
  .section-info h1.title {
    font-size: 32px;
    font-size: 2rem;
  }
}

@media (min-width: 992px) {
  .section-info h1.title {
    font-size: 42px;
    font-size: 2.625rem;
  }
}

@media (min-width: 767px) {
  .section-info h1 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

@media (min-width: 992px) {
  .section-info h1 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

.section-info ul {
  padding: 0 0 10px 0;
}

.section-info ul li {
  list-style: disc;
  list-style-position: inside;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.section-info ul li strong {
  font-family: "GreycliffCFBD", sans-serif;
  font-weight: normal;
}

@media (min-width: 992px) {
  .section-info ul li {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .section-info ul li {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.section-info ul li span {
  display: inline-block;
  vertical-align: top;
  max-width: 80%;
  margin-left: -5px;
}

/* fin info sección */
/* ini info sección 3 */
.section-bg {
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}

.section-bg.bg-2 {
  background-image: url(../img/bg-seccion-2.jpg);
  background-position: top center;
}

.section-bg.bg-2 .section-sidebar .section-sidebar-number, .section-bg.bg-2 .section-sidebar-white .section-sidebar-number, .section-bg.bg-2 .section-sidebar-right .section-sidebar-number {
  border-color: #fafafa;
}

.section-bg.bg-2 .section-info-image img {
  max-width: 140px;
}

@media (min-width: 767px) {
  .section-bg.bg-2 .section-info-image img {
    max-width: 200px;
  }
}

.section-bg.bg-3 {
  background-image: url(../img/bg-seccion-3.jpg);
  background-position: top right;
}

.section-bg.bg-3 .section-sidebar .section-sidebar-number, .section-bg.bg-3 .section-sidebar-white .section-sidebar-number, .section-bg.bg-3 .section-sidebar-right .section-sidebar-number {
  border-color: #445161;
}

.section-bg.bg-3 .section-info-image img {
  max-width: 140px;
}

@media (min-width: 767px) {
  .section-bg.bg-3 .section-info-image img {
    max-width: 200px;
  }
}

/* fin info sección 3 */
/* ini touch points */
.touch-points {
  max-width: 400px;
}

@media (min-width: 767px) {
  .touch-points {
    max-width: 100%;
  }
}

.touch-points .touch-points-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 10px auto;
  border: none;
  text-decoration: none;
  height: 100px;
  padding: 10px;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (min-width: 767px) {
  .touch-points .touch-points-item {
    margin: 15px auto;
    height: 130px;
  }
}

@media (min-width: 992px) {
  .touch-points .touch-points-item {
    height: 160px;
  }
}

@media (min-width: 1200px) {
  .touch-points .touch-points-item {
    height: 140px;
  }
}

@media (min-width: 1400px) {
  .touch-points .touch-points-item {
    height: 160px;
  }
}

.touch-points .touch-points-item:hover {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.touch-points .touch-points-item.touch-points-item-empty {
  cursor: default;
  background-color: #cf0540;
}

.touch-points .touch-points-item.touch-points-item-empty:hover {
  -moz-transform: none;
  -webkit-transform: none;
  transform: none;
}

.touch-points .touch-points-item.bg-touch-points-1 {
  background-color: #cf0540;
}

.touch-points .touch-points-item.bg-touch-points-2 {
  background-color: #d7e9cf;
}

.touch-points .touch-points-item.bg-touch-points-3 {
  background-color: #b7b4a1;
}

.touch-points .touch-points-item .touch-points-number {
  width: 100%;
  font-family: "Canela", sans-serif;
  color: #ffffff;
  text-align: right;
  font-size: 36px;
  font-size: 2.25rem;
}

@media (min-width: 767px) {
  .touch-points .touch-points-item .touch-points-number {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

@media (min-width: 992px) {
  .touch-points .touch-points-item .touch-points-number {
    font-size: 46px;
    font-size: 2.875rem;
  }
}

.touch-points .touch-points-item h2 {
  font-family: "Canela", sans-serif;
  margin-top: auto;
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.1;
}

@media (min-width: 767px) {
  .touch-points .touch-points-item h2 {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .touch-points .touch-points-item h2 {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .touch-points .touch-points-item h2 {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}

@media (min-width: 1400px) {
  .touch-points .touch-points-item h2 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.touch-points .touch-points-item ul {
  margin: 0;
  padding: 0;
}

.touch-points .touch-points-item ul li {
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 1px;
}

@media (min-width: 992px) {
  .touch-points .touch-points-item ul li {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

@media (min-width: 1200px) {
  .touch-points .touch-points-item ul li {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.touch-points .touch-points-item ul li:last-child {
  margin-bottom: 0;
}

.touch-points .touch-points-item:hover {
  color: #3e4543;
}

/* fin touch points */
/* ini sección slide */
.section-slide {
  background-color: #ffffff !important;
}

.section-slide .bg-image {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.section-slide .bg-image.bg-vertical {
  width: 80px;
  min-width: 90px;
  height: 110px;
}

@media (min-width: 767px) {
  .section-slide .bg-image.bg-vertical {
    height: 110px;
  }
}

@media (min-width: 992px) {
  .section-slide .bg-image.bg-vertical {
    width: 80px;
    min-width: 90px;
    height: 100px;
  }
}

@media (min-width: 1200px) {
  .section-slide .bg-image.bg-vertical {
    width: 100px;
    min-width: 110px;
    height: 130px;
    margin-bottom: 10px;
  }
}

.section-slide .bg-image.bg-horizontal {
  width: 100%;
  margin-bottom: 10px;
  min-height: 90px;
  max-height: 110px;
}

@media (min-width: 992px) {
  .section-slide .bg-image.bg-horizontal {
    width: 100%;
    min-width: 220px;
    margin-bottom: 10px;
    max-height: 100px;
  }
}

@media (min-width: 1200px) {
  .section-slide .bg-image.bg-horizontal {
    width: 100%;
    min-width: 100%;
    margin-bottom: 10px;
    max-height: 120px;
  }
}

.section-slide .box-inside-slide {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.section-slide .section-slide-text .section-slide-header {
  display: flex;
  align-items: center;
  overflow: visible;
  margin-bottom: 6px;
  margin-top: 60px;
}

@media (min-width: 992px) {
  .section-slide .section-slide-text .section-slide-header {
    margin-top: 0px;
  }
}

@media (min-width: 1200px) {
  .section-slide .section-slide-text .section-slide-header {
    margin-top: 0px;
  }
}

.section-slide .section-slide-text .section-slide-header .section-slide-header-number {
  position: relative;
  font-family: "Canela", sans-serif;
  color: #fbbc40;
  font-size: 58px;
  font-size: 3.625rem;
  line-height: 1;
  padding-top: 7px;
  padding-right: 20px;
}

@media (min-width: 1200px) {
  .section-slide .section-slide-text .section-slide-header .section-slide-header-number {
    font-size: 80px;
    font-size: 5rem;
    padding-top: 7px;
  }
}

.section-slide .section-slide-text .section-slide-header .section-slide-header-number:after {
  position: absolute;
  bottom: 10px;
  right: 8px;
  content: ' ';
  width: 1px;
  background-color: #8e8783;
  /*height: 400px;*/
  height: 50px;
}

@media (min-width: 1200px) {
  .section-slide .section-slide-text .section-slide-header .section-slide-header-number:after {
    height: 60px;
    bottom: 15px;
  }
}

.section-slide .section-slide-text .section-slide-header h1 {
  font-family: "Canela", sans-serif;
  color: #3e4543;
  font-weight: normal;
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1;
}

.section-slide .section-slide-text .section-slide-header h1.title {
  font-family: "Canela", sans-serif;
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.2;
}

@media (min-width: 767px) {
  .section-slide .section-slide-text .section-slide-header h1.title {
    font-size: 32px;
    font-size: 2rem;
  }
}

@media (min-width: 1200px) {
  .section-slide .section-slide-text .section-slide-header h1.title {
    font-size: 42px;
    font-size: 2.625rem;
  }
}

@media (min-width: 767px) {
  .section-slide .section-slide-text .section-slide-header h1 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

@media (min-width: 1200px) {
  .section-slide .section-slide-text .section-slide-header h1 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

.section-slide .section-slide-text .section-slide-header h2 {
  font-family: "Canela", sans-serif;
  color: #8e8783;
  font-size: 20px;
  font-size: 1.25rem;
}

@media (min-width: 1200px) {
  .section-slide .section-slide-text .section-slide-header h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.section-slide .section-slide-text .section-slide-qr {
  display: flex;
  flex-direction: column;
  background-color: #d7e9cf;
}

.section-slide .section-slide-text .section-slide-qr p {
  line-height: 1.2;
  font-size: 16px;
  font-size: 1rem;
}

.section-slide .section-slide-text .section-slide-qr p strong {
  font-family: "GreycliffCFBD", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
}

@media (min-width: 1200px) {
  .section-slide .section-slide-text .section-slide-qr p {
    font-size: 16px;
    font-size: 1rem;
  }
  .section-slide .section-slide-text .section-slide-qr p strong {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media (min-width: 767px) {
  .section-slide .section-slide-text .section-slide-qr {
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  .section-slide .section-slide-text .section-slide-qr {
    height: 100%;
    flex-direction: column;
  }
}

.section-slide .section-slide-text .section-slide-qr img {
  width: 100%;
  max-width: 100%;
  max-height: none;
}

@media (min-width: 767px) {
  .section-slide .section-slide-text .section-slide-qr img {
    height: 100%;
    max-width: 200px;
  }
}

@media (min-width: 992px) {
  .section-slide .section-slide-text .section-slide-qr img {
    height: 200px;
    max-width: 100%;
  }
}

@media (min-width: 1400px) {
  .section-slide .section-slide-text .section-slide-qr img {
    height: 200px;
  }
}

.section-slide .section-slide-text .section-slide-qr .section-slide-qr-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 15px 25px 25px 25px;
  border-bottom: 30px solid #8e8783;
  background-image: none;
  background-repeat: no-repeat;
  text-decoration: none;
  height: 100%;
  cursor: pointer;
  /*@include respond-to(extralarge) {
          background-image: url(../img/bg-qr.png);
          background-position: top right;
          background-size: 32%;
        }*/
}

.section-slide .section-slide-text .section-slide-qr .section-slide-qr-info:hover p {
  color: #3e4543;
}

.section-slide .section-slide-text .section-slide-qr .section-slide-qr-info:hover .section-slide-qr-scan .button-video {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.section-slide .section-slide-text .section-slide-qr .section-slide-qr-scan {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: auto;
}

.section-slide .section-slide-text .section-slide-qr .section-slide-qr-scan .button-video {
  min-width: 50px;
  width: 50px;
  height: 50px;
  margin-right: 15px;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.section-slide .section-slide-text .section-slide-qr .section-slide-qr-scan h3 {
  font-family: "GreycliffCFBD", sans-serif;
  color: #3e4543;
  font-size: 17px;
  font-size: 1.0625rem;
  padding-right: 10px;
}

@media (min-width: 767px) {
  .section-slide .section-slide-text .section-slide-qr .section-slide-qr-scan h3 {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}

@media (min-width: 1200px) {
  .section-slide .section-slide-text .section-slide-qr .section-slide-qr-scan h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.section-slide .section-slide-text .item-horizontal {
  flex-direction: column;
}

@media (min-width: 992px) {
  .section-slide .section-slide-text .item-horizontal {
    flex-direction: row;
  }
}

@media (min-width: 1200px) {
  .section-slide .section-slide-text .item-horizontal {
    flex-direction: column;
    min-height: 230px;
  }
}

@media (min-width: 1200px) {
  .section-slide .section-slide-text .item-vertical {
    /*min-height: 230px;*/
  }
}

.section-slide .section-slide-text .item-section-slide-text {
  display: flex;
  padding-top: 15px;
  padding-bottom: 15px;
}

.section-slide .section-slide-text .item-section-slide-text p {
  margin-bottom: 0;
  line-height: 1.2;
  font-size: 17px;
  font-size: 1.0625rem;
}

.section-slide .section-slide-text .item-section-slide-text p strong {
  font-family: "GreycliffCFBD", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
}

@media (min-width: 1200px) {
  .section-slide .section-slide-text .item-section-slide-text p {
    font-size: 17px;
    font-size: 1.0625rem;
  }
  .section-slide .section-slide-text .item-section-slide-text p strong {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/* fin sección slide */
/* ini bordes */
.border-black-top {
  border-top: 1px solid #3e4543;
}

.border-black-bottom {
  border-bottom: 1px solid #3e4543;
}

.border-black-left {
  border-left: 1px solid #3e4543;
}

.border-black-right {
  border-bottom: 1px solid #3e4543;
}

@media (min-width: 1200px) {
  .border-black-right {
    border-right: 1px solid #3e4543;
    border-bottom: none;
  }
}

/* fin bordes*/
/* ini nav */
.fp-slides {
  width: 100%;
}

.fp-prev {
  left: 9px;
}

@media (min-width: 767px) {
  .fp-prev {
    left: 35px;
  }
}

.fp-arrow.fp-prev {
  width: 20px;
  height: 20px;
  border: none;
  border-top: 3px solid #fbbc40 !important;
  border-left: 3px solid #fbbc40 !important;
  transform: rotate(-45deg);
}

@media (min-width: 767px) {
  .fp-arrow.fp-prev {
    width: 35px;
    height: 35px;
  }
}

.fp-next {
  right: 19px;
}

@media (min-width: 767px) {
  .fp-next {
    right: 38px;
  }
}

@media (min-width: 992px) {
  .fp-next {
    right: 45px;
  }
}

.fp-arrow.fp-next {
  width: 20px;
  height: 20px;
  border: none;
  border-top: 3px solid #fbbc40 !important;
  border-left: 3px solid #fbbc40 !important;
  transform: rotate(134deg);
}

@media (min-width: 767px) {
  .fp-arrow.fp-next {
    width: 35px;
    height: 35px;
  }
}

/* fin nav */
/* ini indice */
.popup-index {
  position: fixed;
  z-index: 90;
  width: 500px;
  height: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
  background: #71c5c3;
  top: 0;
  left: -500px;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding: 20px 30px;
  overflow: auto;
}

@media (min-width: 992px) {
  .popup-index {
    padding: 50px;
  }
}

.popup-index ul li {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.popup-index ul li.no-border-bottom {
  border-bottom: 0px;
}

.popup-index ul li strong {
  font-family: "Canela", sans-serif;
  font-weight: normal;
}

@media (min-width: 992px) {
  .popup-index ul li {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.popup-index ul li a {
  display: inline-block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  text-decoration: none;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #ffffff;
}

.popup-index ul li a:hover {
  color: #ffffff;
}

.popup-index ul li ul {
  padding: 0px 20px 15px 40px;
}

.popup-index ul li ul li {
  border-bottom: none;
  font-size: 16px;
  font-size: 1rem;
}

.popup-index ul li ul li a {
  padding-top: 7px;
  padding-bottom: 7px;
}

@media (min-width: 992px) {
  .popup-index ul li ul li a {
    padding-top: 3px;
    padding-bottom: 3px;
  }
}

.popup-index-activo {
  left: 75px;
  opacity: 1;
  filter: alpha(opacity=100);
}

.box-boton-indice {
  position: fixed;
  top: 0px;
  left: 15px;
  z-index: 105;
  width: 60px;
  height: 52px;
  padding-top: 8px;
  background-color: rgba(142, 135, 131, 0.5);
  /*
  &:after{
    content: 'menu';
    position: absolute;
    text-transform: uppercase;
    width: 60px;
    text-align: center;
    color: $white;
    @include font-size(10px);
    letter-spacing: 2px;
    top: 90%;
    left: 0;
  }*/
}

.boton-indice {
  position: absolute;
  left: 13px;
}

.boton-indice .line {
  width: 35px;
  height: 2px;
  background-color: #ffffff;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.boton-indice:hover {
  cursor: pointer;
}

#boton-indice.is-active {
  left: 16px;
  top: 13px;
  transform: rotate(-180deg);
}

#boton-indice.is-active .line {
  width: 28px;
  margin: 5px auto;
}

#boton-indice.is-active .line:nth-child(1),
#boton-indice.is-active .line:nth-child(3) {
  width: 20px;
}

#boton-indice.is-active .line:nth-child(1) {
  -webkit-transform: translateX(6px) rotate(45deg);
  -ms-transform: translateX(6px) rotate(45deg);
  -o-transform: translateX(6px) rotate(45deg);
  transform: translateX(6px) rotate(45deg);
}

#boton-indice.is-active .line:nth-child(3) {
  -webkit-transform: translateX(6px) rotate(-45deg);
  -ms-transform: translateX(6px) rotate(-45deg);
  -o-transform: translateX(6px) rotate(-45deg);
  transform: translateX(6px) rotate(-45deg);
}

.animacion-aparicion {
  animation-name: animacionAparicion;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

@keyframes animacionAparicion {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* fin indice */
.fullpage-wrapper {
  overflow-x: hidden;
}

/* ini selección idioma */
.color-idioma {
  color: #a0a0a0;
}

.popup-index ul.index-dt li {
  border-bottom: none;
}

/* fin selección idioma */
/* ini idiomas */
.cover-languages {
  padding: 30px;
  text-align: right;
  color: #3e4543;
}

.cover-languages p {
  text-align: right;
}

.cover-languages .select-languages {
  padding-bottom: 20px;
}

@media (min-width: 576px) {
  .cover-languages .select-languages {
    margin-left: auto;
    padding-right: 0;
    padding-bottom: 20px;
  }
}

.cover-languages .select-languages .item-select-languages {
  background-color: #f5f5f5;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-clip: padding-box;
  display: inline-block;
  width: 45px;
  padding: 6px;
  margin: 2px;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.cover-languages .select-languages .item-select-languages:hover {
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

@media (min-width: 767px) {
  .cover-languages .select-languages .item-select-languages {
    margin: 8px;
    width: 55px;
  }
}

.cover-languages .select-languages div.item-select-languages:hover {
  -moz-transform: none;
  -webkit-transform: none;
  transform: none;
}

/* fin idiomas */
@media (max-width: 767px) {
  .fp-scrollable .fp-section, .fp-scrollable .fp-slide {
    height: auto !important;
  }
}
