@font-face {
    font-family: 'HelveticaNeue';
    src: url("fonts/HelveticaNeueBold.woff2") format("woff2"), url("fonts/HelveticaNeueBold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'HelveticaNeue';
    src: url("fonts/HelveticaNeueRegular.woff2") format("woff2"), url("fonts/HelveticaNeueRegular.woff") format("woff");
    font-weight: 100;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'HelveticaNeue';
    src: url("fonts/HelveticaNeueLight.woff2") format("woff2"), url("fonts/HelveticaNeueLight.woff") format("woff");
    font-weight: 300;
    font-style: normal;
  }
  
  /**
  * Branding $COLORS*/
  /*------------------------*\
  |      $MIXINS
  /*------------------------*/
  html {
    font-size: 24px;
  }
  
  body {
    color: #4A4A4A;
    background: #fff;
    font-weight: normal;
    width: 100%;
    max-width: 100%;
    font-family: "Catamaran", sans-serif;
    font-size: 24px;
    -webkit-font-smoothing: antialiased;
  }
  
  body, html {
    max-width: 100%;
  }
  
  body, .smooth-container {
    scroll-behavior: smooth;
  }
  
  p {
    font-size: 24px;
    line-height: 1.6em;
    font-weight: 300;
    margin-top: 0;
  }
  
  p b {
    font-weight: bold;
  }
  
  p a {
    text-decoration: underline;
    font-weight: bold;
  }
  
  figure {
    margin: 0;
  }
  
  .clear {
    clear: both;
  }
  
  .wow {
    visibility: hidden;
  }
  
  .fadein {
    opacity: 0;
  }
  
  .hidden_a {
    opacity: 0;
  }
  
  .visible {
    opacity: 1;
  }
  
  .wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
  }
  
  .wrapper.wrapper-home {
    padding-top: 148px;
  }
  
  .wrap {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1180px;
  }
  
  *, ::after, ::before {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  
  .row.no-gutters {
    margin-right: 0;
    margin-left: 0;
  }
  
  .row.no-gutters > [class^="col-"],
  .row.no-gutters > [class*=" col-"] {
    padding-right: 0;
    padding-left: 0;
  }
  
  .row.row-small {
    margin-right: -10px;
    margin-left: -10px;
  }
  
  .row.row-small > [class^="col-"],
  .row.row-small > [class*=" col-"] {
    padding-right: 10px;
    padding-left: 10px;
  }
  
  .row.row-big {
    margin-right: -2.5rem;
    margin-left: -2.5rem;
  }
  
  .row.row-big > [class^="col-"],
  .row.row-big > [class*=" col-"] {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
  
  .flex-stretch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  
  .flex-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .flex-between-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  
  .flex-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;
  }
  
  .flex-center-column {
    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;
  }
  
  .flex-top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  
  .flex-top2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  
  .flex-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  * {
    outline: none;
  }
  
  a, button {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  
  a {
    text-decoration: none;
  }
  
  a:hover {
    color: #088;
    text-decoration: none;
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-right {
    text-align: right;
  }
  
  .text-left {
    text-align: left;
  }
  
  @media (max-width: 1500px) {
    html, body, p {
      font-size: 17px;
    }
  }
  
  @media (max-width: 991px) {
    .flex-between,
    .flex-between-top {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
  }
  
  @media (max-width: 768px) {
    .animated,
    .animated-delay1,
    .animated-delay2,
    .animated-delay3,
    .animated-delay4,
    .wow {
      /*CSS transitions*/
      -webkit-transition-property: none !important;
      transition-property: none !important;
      /*CSS transforms*/
      -webkit-transform: none !important;
      transform: none !important;
      /*CSS animations*/
      -webkit-animation: none !important;
      animation: none !important;
      visibility: visible !important;
    }
  }
  
  .btn {
    font-size: .9rem;
    font-weight: bold;
    padding: 1.1rem 3rem;
    text-align: center;
    color: #fff;
    white-space: normal;
    word-break: word-break;
    display: inline-block;
    border-radius: 5px;
  }
  
  .btn i {
    font-size: 12px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 4px;
  }
  
  .btn:hover {
    color: #fff;
    text-decoration: none;
  }
  
  .btn.btn-verde {
    background: #00838D;
  }
  
  .btn.btn-verde:hover {
    background: #0edded;
  }
  
  .btn.btn-blanco {
    color: #00838D;
    background: #fff;
  }
  
  .btn.btn-blanco:hover {
    background: #eee;
  }
  
  .btn.btn-borde-verde {
    background: transparent;
    border: 2px solid #00838D;
    color: #00838D;
  }
  
  .btn.btn-borde-verde:hover {
    background: #eee;
  }
  
  table.gsc-search-box {
    width: 100%;
    max-width: 100%;
  }
  
  .navbar-nav {
    margin: 30px 0 0 0 !important;
  }
  
  .dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  
  .navbar-nav li.buscarlupa {
    text-indent: -99999px;
    background: url(../../images/lupa.svg) center center no-repeat;
    z-index: 90;
    font-size: 22px;
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
  }
  
  .navbar-nav li.buscarlupa a:hover {
    background: none;
  }
  
  #top .navbar-nav > li.buscarlupa:hover {
    opacity: 0.5;
  }
  
  #top .navbar-nav > li.buscarlupa:hover a:hover {
    background: none;
  }
  
  #top_barra {
    padding: 5px 0 15px 0;
  }
  
  #top_barra ul.contacto,
  #top_barra ul.redes {
    margin: 0;
    padding: 0 15px;
  }
  
  #top_barra ul li {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  #top_barra ul.contacto {
    font-size: 13px;
    text-align: center;
    margin: 15px 0 0 0;
  }
  
  #top_barra ul.contacto li {
    display: inline-block;
    margin: 0 40px 0 10px;
    vertical-align: middle;
  }
  
  #top_barra ul.contacto li a {
    color: #6D7278;
    padding: 2px 0 2px 25px;
    opacity: 1;
  }
  
  #top_barra ul.contacto li a.cont1 {
    background: url(../images/ico_phone.svg) left 0px no-repeat;
    background-size: auto 18px;
  }
  
  #top_barra ul.contacto li a.cont2 {
    background: url(../images/ico_alerta.svg) left 0px no-repeat;
    background-size: auto 18px;
  }
  
  #top_barra ul.contacto li a.cont3 {
    background: url(../images/ico_map.svg) left 0px no-repeat;
    background-size: auto 18px;
    padding: 2px 0 2px 18px;
  }
  
  #top_barra ul.contacto li a.cont4 {
    background: url(../../images/ico_preg.svg) left 0px no-repeat;
    background-size: auto 18px;
  }
  
  #top_barra ul.contacto li:last-child {
    display: none;
  }
  
  #top_barra ul.contacto li a:hover {
    color: #68696a;
    opacity: 0.7;
  }
  
  #top_barra ul.redes {
    line-height: 19px;
    padding-top: 10px;
  }
  
  #top_barra ul.redes li {
    display: inline-block;
    margin: 0px 4px 0 0;
    vertical-align: middle;
  }
  
  #top_barra ul.redes li a {
    width: 19px;
    height: 19px;
    display: block;
    margin: 10px 0 0 0;
    color: #8A8A8A;
    font-size: 22px;
    margin: 0 0px;
    display: block;
  }
  
  #top_barra ul.redes li a img {
    height: 19px;
  }
  
  #top_barra ul.redes li a span {
    display: none;
  }
  
  #top_barra ul.redes li a.fb {
    background: url(../../images/ico_fb.png) left top no-repeat;
  }
  
  #top_barra ul.redes li a.lk {
    background: url(../../images/ico_lk.png) left top no-repeat;
  }
  
  #top_barra ul.redes li a.tw {
    background: url(../../images/ico_tw.png) left top no-repeat;
  }
  
  #top_barra ul.redes li a.yt {
    background: url(../../images/ico_yt.png) left top no-repeat;
  }
  
  #top_barra ul.redes li a:hover {
    opacity: 0.7;
  }
  
  #top {
    background: #DFF3F2;
  }
  
  #top .container-fluid {
    padding: 0;
  }
  
  #top .navbar-brand {
    height: auto;
    width: 113px;
  }
  
  #top .navbar-default .navbar-collapse,
  #top .navbar-default .navbar-form {
    padding: 0;
  }
  
  #top .navbar-nav > li {
    font-size: 14px;
  }
  
  #top .navbar-nav > li > a.primero:hover,
  #top .navbar-nav > li:hover > a.primero {
    background: none !important;
  }
  
  #top .navbar-nav > li > a {
    margin: 0;
    text-transform: uppercase;
    line-height: 15px;
  }
  
  #top .navbar-nav > li:hover > a {
    background: #f5fbfb;
  }
  
  #top .navbar-nav > li:hover a:hover {
    background: #f5fbfb;
  }
  
  #top .navbar-nav > li:hover > a li a {
    border: none;
  }
  
  #top .navbar-default .navbar-nav > .open > a,
  #top .navbar-default .navbar-nav > .open > a:focus,
  #top .navbar-default .navbar-nav > .open > a:hover {
    background-color: transparent !important;
    border-bottom: solid 2px #007A33;
  }
  
  #top .navbar-default .navbar-collapse ul.contacto {
    display: none;
  }
  
  #top ul.navbar-nav li.dropdown:hover ul.dropdown-menu {
    display: block !important;
  }
  
  #top ul.dropdown-menu {
    background: rgba(245, 251, 251, 0.95);
    padding: 5px 15px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0px;
    border: none;
  }
  
  #top .dropdown-menu > li {
    padding: 5px 0;
  }
  
  #top .dropdown-menu > li > a {
    color: #8A8A8A;
    border-bottom: solid 2px transparent;
    margin: 0 0 -2px;
  }
  
  #top .dropdown-menu > li > a:hover {
    border-bottom: solid 2px #88C3C0;
    margin: 0 0 -2px;
    background-color: transparent !important;
  }
  
  #top .ingresarachs ul.dropdown-menu {
    margin-top: 2px;
    right: -2px;
  }
  
  #top .ingresarachs .dropdown-menu {
    padding: 0;
    margin: 0;
  }
  
  #top .ingresarachs .dropdown-menu li {
    padding: 0;
  }
  
  #top .ingresarachs .dropdown-menu li a {
    text-align: left;
    margin: 0 !important;
    color: #787878;
    border-bottom: none;
    padding: 21px 17px;
    display: block;
  }
  
  #top .ingresarachs .dropdown-menu > li > a:hover {
    background-color: #32945B !important;
    border-bottom: none;
    margin: 0 !important;
    color: #fff;
    font-weight: bold;
  }
  
  #top .ingresarachs .dropdown-menu li a .trabajador {
    font-family: 'achs_fontingresa';
    font-size: 50px;
    line-height: 14px;
    vertical-align: text-top;
    font-weight: 500;
  }
  
  #top .ingresarachs .dropdown-menu li a .empresa {
    font-family: 'achs_fontingresa';
    font-size: 50px;
    line-height: 14px;
    vertical-align: sub;
    font-weight: 500;
  }
  
  #top .ingresarachs .dropdown-menu li.linea {
    line-height: 4px;
    padding: 4px 0;
  }
  
  #top .navbar-nav > li.ingresarachs {
    border: 2px solid #32945B;
    padding: 0;
    border-radius: 0px;
    height: 45px;
    margin: -1px 0 0 20px;
    color: #32945B;
    font-weight: bold;
  }
  
  #top .navbar-nav > li.ingresarachs:hover {
    border-color: rgba(245, 251, 251, 0.95);
  }
  
  #top .navbar-nav > li.ingresarachs:hover > a {
    background: rgba(245, 251, 251, 0.95);
    color: #32945B;
    margin: 0;
  }
  
  #top .navbar-default .navbar-nav > li.ingresarachs > a {
    color: #32945B;
  }
  
  .caret {
    margin-top: -2px;
  }
  
  .buscador {
    width: 100%;
    padding-top: 10px;
  }
  
  .buscador input {
    border: none;
    border-bottom: 1px solid #BCBCBC;
  }
  
  .buscador button {
    color: #BCBCBC;
    border: none;
    background: none;
  }
  
  .head {
    background: #DFF3F2;
    position: relative;
  }
  
  .head .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .head .logo {
    padding: 15px 0;
  }
  
  .head .logo img {
    width: 83px;
    vertical-align: bottom;
  }
  
  .head nav ul {
    list-style: none;
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .head nav ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .head nav ul li.ingresa {
    border: 2px solid #32945B;
    padding: 0;
    border-radius: 0px;
    height: 45px;
    margin: -1px 0 0 20px;
    color: #32945B;
    font-weight: bold;
  }
  
  .head nav ul li.ingresa a {
    color: #32945B;
  }
  
  .head nav ul li a {
    font-size: 14px;
    color: #777;
    margin: 15px;
  }
  
  @media only screen and (max-width: 768px) {
    .head nav {
      position: fixed;
      top: 0;
      left: -100%;
      width: 80%;
      height: 100%;
      background: #fff;
      padding: 100px 20px 20px;
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
      z-index: 99;
    }
    .head nav.visible {
      left: 0;
    }
    .head nav ul {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
    .head nav ul li.ingresa {
      margin-left: 0;
    }
    .head nav ul li {
      margin-bottom: 20px;
    }
    .head nav ul li a {
      font-size: 16px;
    }
  }
  
  .head .btn-menu {
    display: none;
    position: absolute;
    top: 35px;
    right: 0;
    z-index: 999;
  }
  
  .head .btn-menu span {
    width: 35px;
    height: 5px;
    background-color: #777;
    margin: 6px 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    display: block;
  }
  
  .head .btn-menu.open span:nth-child(1) {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
  }
  
  .head .btn-menu.open span:nth-child(2) {
    opacity: 0;
  }
  
  .head .btn-menu.open span:nth-child(3) {
    -webkit-transform: rotate(45deg) translate(-9px, -7px);
    transform: rotate(45deg) translate(-8px, -8px);
  }
  
  @media only screen and (max-width: 768px) {
    .head .btn-menu {
      display: block;
      right: 40px;
    }
  }
  
  @media only screen and (max-width: 640px) {
    .head .btn-menu {
      right: 20px;
    }
  }
  
  @media only screen and (max-width: 768px) {
    #top_barra ul.redes {
      display: none;
    }
    .buscador {
      display: none;
    }
  }
  
  @media only screen and (max-width: 550px) {
    #top_barra {
      padding: 0 0 10px;
    }
    #top_barra ul.contacto {
      text-align: left;
    }
    #top_barra ul.contacto li {
      margin: 0;
      text-align: center;
    }
    #top_barra ul.contacto li a {
      width: 40px;
      height: 20px;
      font-size: 0;
      display: block;
      margin: 0 5px;
    }
  }
  
  .home {
    background: #135930;
    padding: 40px 30px;
    position: relative;
  }
  
  @media only screen and (max-width: 640px) {
    .home {
      padding: 40px 0px;
    }
  }
  
  .home .img-bg {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    height: 100%;
  }
  
  .home .img-bg img {
    height: 100%;
    width: auto;
  }
  
  @media only screen and (max-width: 1100px) {
    .home .img-bg {
      width: 40%;
    }
    .home .img-bg img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: left;
         object-position: left;
    }
  }
  
  @media only screen and (max-width: 640px) {
    .home .img-bg {
      width: 140px;
    }
  }
  
  @media only screen and (max-width: 480px) {
    .home .img-bg {
      width: 40px;
    }
  }
  
  .home .wrap {
    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;
    min-height: calc(100vh - 80px);
    position: relative;
    z-index: 2;
  }
  
  .home .texto {
    padding-top: 40px;
  }
  
  .home .texto h1 {
    margin: 0;
    font-size: 60px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
  }
  
  .home .texto h2 {
    font-size: 28px;
    color: #0CD7C5;
    margin: 0 0 40px;
    font-weight: normal;
  }
  
  .home .texto p {
    font-size: 18px;
    color: #fff;
    max-width: 340px;
  }
  
  @media only screen and (max-width: 640px) {
    .home .texto h1 {
      font-size: 44px;
    }
    .home .texto h2 {
      font-size: 20px;
    }
  }
  
  .home .cajas {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 50px;
  }
  
  .home .cajas .caja:nth-child(1) {
    max-width: 200px;
  }
  
  .home .cajas .caja:nth-child(2) {
    max-width: 270px;
    margin: 0 40px;
  }
  
  .home .cajas .caja:nth-child(3) {
    max-width: 195px;
  }
  
  .home .cajas .caja h4 {
    font-size: 18px;
    color: #fff;
    margin: 10px 0 15px;
  }
  
  .home .cajas .caja p {
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
  }
  
  @media only screen and (max-width: 640px) {
    .home .cajas {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
    }
    .home .cajas .caja {
      width: 100%;
      margin-bottom: 20px;
    }
    .home .cajas .caja:nth-child(1) {
      max-width: 100%;
    }
    .home .cajas .caja:nth-child(2) {
      max-width: 100%;
      margin: 0 0px 40px;
    }
    .home .cajas .caja:nth-child(3) {
      max-width: 100%;
    }
  }
  
  .home .registrate {
    text-align: center;
    width: 240px;
    position: absolute;
    right: 40px;
    bottom: 80px;
  }
  
  .home .registrate h3 {
    font-size: 35px;
    color: #fff;
    margin: 0 0 14px;
  }
  
  .home .registrate p {
    font-size: 18px;
    color: #fff;
    line-height: 1.4;
  }
  
  .home .registrate a.btn {
    background: #00B2A9;
    font-size: 18px;
    border-radius: 50px;
    padding: 14px 40px;
  }
  
  @media only screen and (max-width: 1100px) {
    .home .registrate {
      position: relative;
      right: auto;
      bottom: auto;
      margin-top: 40px;
    }
  }
  
  @media only screen and (max-width: 640px) {
    .home .registrate {
      position: relative;
      right: auto;
      bottom: auto;
      margin: 40px auto 0;
    }
  }
  
  footer {
    text-align: center;
    margin-top: 0px;
  }
  
  footer .footer-top {
    background: #007934;
    padding: 60px 0;
  }
  
  footer .footer-top .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  
  @media only screen and (max-width: 768px) {
    footer .footer-top .wrap {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
    }
  }
  
  footer .footer-top .item-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
  }
  
  footer .footer-top .item-menu h4 {
    font-size: 17px;
    font-weight: bold;
    margin: 0;
    color: #fff;
  }
  
  footer .footer-top .item-menu ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 0 30px;
  }
  
  footer .footer-top .item-menu ul li {
    font-size: 14px;
    margin-bottom: 4px;
  }
  
  footer .footer-top .item-menu ul li a {
    color: #fff;
  }
  
  @media only screen and (max-width: 768px) {
    footer .footer-top .item-menu {
      width: 100%;
      margin-bottom: 20px;
    }
    footer .footer-top .item-menu h4 {
      width: 150px;
    }
  }
  
  @media only screen and (max-width: 480px) {
    footer .footer-top .item-menu {
      width: 100%;
      margin-bottom: 20px;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
    }
    footer .footer-top .item-menu h4 {
      width: 100%;
      margin: 0 0 10px;
    }
    footer .footer-top .item-menu ul {
      margin: 0;
    }
  }
  
  footer .footer-bottom {
    text-align: center;
    padding: 40px 0;
    color: #8A8A8A;
  }
  
  footer .footer-bottom .redes {
    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;
  }
  
  footer .footer-bottom .redes p {
    font-size: 18px;
    font-weight: bold;
    margin: 0 10px 0 0;
  }
  
  footer .footer-bottom .redes a {
    color: #8A8A8A;
    font-size: 32px;
    margin: 0 7px;
    display: block;
  }
  
  @media only screen and (max-width: 480px) {
    footer .footer-bottom .redes {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
    }
    footer .footer-bottom .redes p {
      width: 100%;
    }
  }
  
  footer .footer-bottom .datos {
    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;
  }
  
  footer .footer-bottom .datos .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    text-align: left;
    margin: 30px 20px 0;
  }
  
  footer .footer-bottom .datos .item img {
    margin-right: 10px;
  }
  
  footer .footer-bottom .datos .item p {
    font-size: 15px;
    line-height: 1;
    color: #888B8D;
    margin-bottom: 0;
  }
  
  @media only screen and (max-width: 768px) {
    footer .footer-bottom .datos {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
    }
  }
  
  .carrusel {
    position: relative;
  }
  
  .carrusel.con-nav {
    padding: 0 40px;
  }
  
  .carrusel .tns-nav {
    text-align: center;
    margin-top: 20px;
  }
  
  .carrusel .tns-nav button {
    width: 16px;
    height: 16px;
    display: inline-block;
    border: 1px solid transparent;
    border-radius: 100%;
    margin: 0 6px;
    background: transparent;
    padding: 0;
  }
  
  @media only screen and (max-width: 1500px) {
    .carrusel .tns-nav button {
      width: 14px;
      height: 14px;
    }
  }
  
  .carrusel.blanco button {
    border-color: #fff;
  }
  
  .carrusel.blanco button.tns-nav-active {
    background: #fff;
  }
  
  .carrusel.verde button {
    border-color: #fff;
    background: #fff;
  }
  
  .carrusel.verde button.tns-nav-active {
    background: #00838D;
    border-color: #00838D;
  }
  
  .carrusel .tns-controls button {
    background: transparent;
    border-radius: 0px;
    color: #00838D;
    font-size: 0;
    width: 50px;
    height: 50px;
    line-height: 44px;
    border: 1px solid #00838D;
    text-align: center;
    position: absolute;
    padding: 3px 0 0;
    z-index: 10;
    top: 25%;
  }
  
  .carrusel .tns-controls button:first-child {
    left: -20px;
    padding-right: 0px;
  }
  
  .carrusel .tns-controls button:last-child {
    right: -20px;
    padding-left: 0px;
  }
  
  .carrusel .tns-controls button:after {
    content: "";
    display: inline-block;
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    font-size: 30px;
  }
  
  .carrusel .tns-controls button:first-child:after {
    content: "\f060";
  }
  
  .carrusel .tns-controls button:last-child:after {
    content: "\f061";
  }
  
  .carrusel .tns-controls button:hover {
    opacity: 0.85;
  }
  
  @media only screen and (max-width: 640px) {
    .carrusel .tns-controls button {
      width: 40px;
      height: 40px;
      line-height: 32px;
    }
    .carrusel .tns-controls button:after {
      font-size: 24px;
    }
    .carrusel .tns-controls button:first-child {
      left: -10px;
    }
    .carrusel .tns-controls button:last-child {
      right: -10px;
    }
  }
  
  .carrusel .tns-controls {
    display: none;
  }
  
  .carrusel.con-nav .tns-controls {
    display: block;
  }
  
  .carrusel.flecha-2 .tns-controls button {
    color: #fff;
    background: #00838D;
  }
  
  .slide-home .carrusel .tns-nav {
    position: absolute;
    left: 80px;
    bottom: 1em;
    z-index: 999;
  }
  
  @media only screen and (max-width: 1550px) {
    .slide-home .carrusel .tns-nav {
      left: 40px;
    }
  }
  
  .c-movil {
    overflow: hidden;
  }
  
  @media only screen and (max-width: 550px) {
    .c-movil {
      padding: 0 20px;
    }
    .c-movil .tns-ovh {
      overflow: visible;
    }
  }
  
  .slide-home .c-home .item {
    position: relative;
    height: calc(100vh - 8rem);
  }
  
  .slide-home .c-home .item figure {
    display: block;
    height: 100%;
  }
  
  .slide-home .c-home .item figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  .slide-home .c-home .item .texto-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    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;
    max-width: 60em;
    margin: 0 auto;
  }
  
  .slide-home .c-home .item .texto-slide h1 {
    font-family: "HelveticaNeue";
    font-size: 2rem;
    color: #363C44;
    margin: 0 0 .5rem;
    font-weight: 300;
    font-style: normal;
    background: #fff;
    padding: .2rem .8rem .3rem;
  }
  
  .slide-home .c-home .item .texto-slide h1 b {
    font-weight: bold;
  }
  
  .slide-home .c-home .item .texto-slide h3 {
    font-family: "HelveticaNeue";
    font-size: 1.3rem;
    color: #363C44;
    margin: 0;
    font-weight: 300;
    font-style: normal;
    background: #fff;
    padding: .2rem .8rem .3rem;
  }
  
  @media only screen and (max-width: 480px) {
    .slide-home .c-home .item .texto-slide h1 {
      font-size: 30px;
    }
  }
  
  .slide-home .scroll {
    font-size: .75em;
    color: #fff;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -2em;
    text-transform: uppercase;
    z-index: 999;
    width: 4em;
  }
  
  .slide-home .scroll:after {
    width: 1px;
    height: 8em;
    background: #fff;
    content: "";
    display: block;
    margin: 10px auto 0;
  }
  
  .tns-liveregion.tns-visually-hidden {
    display: none;
  }
  /*Botón cerrar - PVV*/
  .close {
      content: 'x';/* here is your X(cross) sign.*/
      color: #fff;
      font-weight: 300;
      font-family: Arial, sans-serif;
      font-size:50%;
      position:absolute;
      z-index:1000;
      top:5%;
      right:3%;
  }
  /*Fin botón cerrar*/
  /*# sourceMappingURL=estilos.css.map */