/* FONTS */
/* -------------------------------------------------------------
 Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
 By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets
 List of CSS3 Sass Mixins File to be @imported and @included as you need
 The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
 ENDING css files
 note: All CSS3 Properties are being supported by Safari 5
 more info: http://www.findmebyip.com/litmus/#css3-properties
 ------------------------------------------------------------- */
/**
 * Fix for vw, vh, vmin, vmax on iOS 7.
 * http://caniuse.com/#feat=viewport-units
 *
 * This fix works by replacing viewport units with px values on known screen sizes.
 *
 * iPhone 6 and 6 Plus cannot run iOS 7, so are not targeted by this fix.
 * Target devices running iOS 8+ will incidentally execute the media query,
 * but this will still produce the expected result; so this is not a problem.
 *
 * As an example, replace:
 *
 *   height: 50vh;
 *   font-size: 5vmin;
 *
 * with:
 *
 *   @include viewport-unit(height, 50vh);
 *   @include viewport-unit(font-size, 5vmin);
 */
@media only screen and (min-width: 90.063em) {
  .xlarge-1 {
    width: 4.16667%;
  }
  .xlarge-2 {
    width: 8.33333%;
  }
  .xlarge-3 {
    width: 12.5%;
  }
  .xlarge-4 {
    width: 16.66667%;
  }
  .xlarge-5 {
    width: 20.83333%;
  }
  .xlarge-6 {
    width: 25%;
  }
  .xlarge-7 {
    width: 29.16667%;
  }
  .xlarge-8 {
    width: 33.33333%;
  }
  .xlarge-9 {
    width: 37.5%;
  }
  .xlarge-10 {
    width: 41.66667%;
  }
  .xlarge-11 {
    width: 45.83333%;
  }
  .xlarge-12 {
    width: 50%;
  }
  .xlarge-13 {
    width: 54.16667%;
  }
  .xlarge-14 {
    width: 58.33333%;
  }
  .xlarge-15 {
    width: 62.5%;
  }
  .xlarge-16 {
    width: 66.66667%;
  }
  .xlarge-17 {
    width: 70.83333%;
  }
  .xlarge-18 {
    width: 75%;
  }
  .xlarge-19 {
    width: 79.16667%;
  }
  .xlarge-20 {
    width: 83.33333%;
  }
  .xlarge-21 {
    width: 87.5%;
  }
  .xlarge-22 {
    width: 91.66667%;
  }
  .xlarge-23 {
    width: 95.83333%;
  }
  .xlarge-24 {
    width: 100%;
  }
}
.debug-fill {
  background-color: #ccc;
}
.debug-border {
  border: 1px dashed red;
}
/**********ESTILOS ENCABEZADOS********/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  line-height: 1;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: 400;
}
/**TITULO PPAL INTERNAS**/
h1 {
  font-size: 4.5rem;
  text-align: left;
  padding: 0 0 0 0;
  margin: 0 0 1rem 0;
  text-transform: none;
  color: #007688;
}
/**SUBTÍTULO INTERNAS***/
h2 {
  font-size: 4.25rem;
  text-align: left;
  padding: 0 0 0 0;
  margin: 1rem 0 1rem 0;
  text-transform: none;
  color: #007688;
}
/**TÍTULOS CREDITOS HOME**/
h3 {
  font-size: 2.15rem;
  text-align: left;
  margin: 0 0 1.25rem 0;
  padding: 0 0 0 0;
  text-transform: none;
  color: #a5e2eb;
}
/**ETIQUETAS EN LA FICHA AMPLIADA DE LAS PRUEBAS**/
h4 {
  font-size: 1.6rem;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
  text-transform: none;
  color: #1d3b3f;
}
/**OPCIONAL**/
h5 {
  font-size: 1.95rem;
  text-align: left;
  padding: 0 0 0 0;
  margin: 0 0 0.9375rem 0;
  text-transform: none;
  color: #000;
}
/**OPCIONAL***/
h6 {
  font-size: 1.95rem;
  text-align: center;
  padding: 0 0 0 0;
  margin: 0 0 1.25rem 0;
  text-transform: none;
  color: #000;
}
body {
  margin: 0;
  padding: 0;
  background-color: transparent;
  font-size: 1.25rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #1d3b3f;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
p {
  margin-bottom: 0rem;
  font-size: 1.25rem;
  line-height: 1.6;
}
/*****ESTILOS BOTON FORMULARIOS***********/
.button {
  background-color: #007688;
  text-transform: normal;
  border: 0;
  border-radius: 0.45rem;
  -webkit-border-radius: 0.45rem;
  -moz-border-radius: 0.45rem;
  -ms-border-radius: 0.45rem;
  -o-border-radius: 0.45rem;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  filter: drop-shadow(0 0 0rem transparent);
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  margin: 0.9375rem 0rem 0.9375rem 0rem;
  padding: 0.88em 0.7em;
  text-align: center;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.button:hover, .button:focus {
  color: #f1f1f1;
  background-color: #017f93;
  filter: drop-shadow(0 0 0.2rem #818181);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
::-webkit-input-placeholder {
  color: #bababa;
}
::-moz-placeholder {
  color: #bababa;
}
:-ms-input-placeholder {
  color: #bababa;
}
::-ms-input-placeholder {
  color: #bababa;
}
::placeholder {
  color: #bababa;
}
[type='range'] {
  margin-top: 7%;
}
[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='range'], [type='time'], [type='url'], [type='color'], textarea, select {
  font-weight: 300;
  font-size: 1.25rem;
  color: #323232;
  background-color: #fff;
}
input:checked ~ .switch-paddle {
  background: #007688;
}
select {
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #cacaca;
  border-radius: 3px;
  background-color: #fefefe;
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.5;
  color: #323232;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
}
[type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='range']:focus [type='url']:focus, [type='color']:focus, textarea:focus, select:focus {
  outline: none;
  color: #11ab11;
  border: 1px solid #3fcf00;
  background-color: #fefefe;
  -webkit-box-shadow: 0 0 5px #cacaca;
  box-shadow: 0 0 5px #cacaca;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
}
label {
  display: block;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: none;
}
.file-selected {
  color: #5da63d;
  word-break: break-all;
}
.captcha {
  margin-bottom: 0.9375rem;
  transform: scale(0.86);
  transform-origin: 0 0;
}
abbr {
  font-size: 0.875rem;
  color: #007688;
}
/**************CONTENIDOS INTERNOS***************/
.contenido {
  width: auto;
  overflow: hidden;
  padding-left: 0px;
  padding-right: 0px;
  text-align: justify;
}
.contenido span {
  text-align: justify !important;
  color: #1d3b3f !important;
  font-size: 1.25rem !important;
}
.contenido p {
  text-align: justify;
  margin: 0 0 0rem 0;
  padding: 0;
}
.contenido hr {
  max-width: 100%;
}
.contenido a {
  text-decoration: none;
  color: #208797;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.contenido a:hover {
  color: #333;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.contenido ul, ol {
  margin: 0 0 0rem 0;
  padding: 0.9375rem 0rem;
  list-style-image: none;
  background-color: transparent;
  color: #1d3b3f;
}
.contenido ul li {
  text-align: left;
  margin-left: 23px;
  margin-bottom: 0.55rem;
  font-size: 1.25rem;
}
.contenido ul li:last-child {
  margin-bottom: 0rem;
}
.contenido ul li a {
  text-decoration: none;
  color: #208797;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.contenido ul li a:hover {
  color: #333;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.contenido img {
  max-width: 100%;
  max-height: 100%;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  margin-left: 0px !important;
  margin-right: 10px !important;
}
.contenido table {
  width: 100%;
}
.contenido table thead tr th, .contenido table tbody tr td {
  color: #1d3b3f;
  font-size: 1.25rem;
}
.contenedor-adthisregresar {
  margin-top: 3rem;
}
.contenedor_contenido_izqderinf {
  padding-bottom: 3.5rem;
}
.contenedor_contenido_izqdersup {
  padding-top: 3.5rem;
}
.contenedor_contenido_centro_izqder {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.contenedor_contenido_centro {
  padding-top: 3.5rem;
  padding-bottom: 0rem;
}
.contenedor_izqder {
  padding-bottom: 1rem;
}
.imagencentro-contenido {
  margin-bottom: 0.9375rem;
}
.contenedor_paginacion {
  margin-top: 4.5rem;
  margin-bottom: 2rem;
}
/*****************CONTACTENOS EN PG INTERNAS****************/
.contenedor-contactenos {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.contenedor-contactenos p {
  text-align: left;
  font-size: 0.9375rem;
}
/*******************+BOTON DE FONDO PARA VER TODOS, LLAMADO A LA ACCION Y REGRESAR****************/
.button-all {
  width: 100%;
  background-color: #007688;
  text-transform: none;
  border: 0;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  cursor: pointer;
  display: block;
  line-height: 1;
  margin: 2.75rem 0 0 0;
  padding: 0.9375rem 1rem;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 400;
  filter: drop-shadow(0 0 0rem transparent);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
a.button-all {
  text-decoration: none;
  color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
a.button-all:hover, a.button-all:focus {
  color: #f1f1f1;
  filter: drop-shadow(0 0 0.2rem #242021);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
/*================BOTON PARA SUBIR=================*/
a#top {
  width: 38px;
  height: 38px;
  line-height: 0px;
  border-radius: 100%;
  border: 2px solid rgba(179, 179, 179, 0.95);
  background: rgba(96, 107, 113, 1);
  background: -moz-radial-gradient(circle, rgba(96, 107, 113, 1) 0%, rgba(49, 49, 49, 1) 100%);
  background: -webkit-radial-gradient(circle, rgba(96, 107, 113, 1) 0%, rgba(49, 49, 49, 1) 100%);
  background: radial-gradient(circle, rgba(96, 107, 113, 1) 0%, rgba(49, 49, 49, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$color-solido-inicio",endColorstr="$color-solido-fin",GradientType=1);
  display: none;
  font-size: 20px;
  font-weight: 400;
  position: fixed;
  right: 15px;
  bottom: 5px;
  z-index: 1000;
  padding: 5px 7px;
  text-decoration: none;
  text-align: center;
  color: #f9f8f8;
  filter: drop-shadow(0 0 0 transparent);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
a#top:hover {
  color: #424242;
  filter: drop-shadow(0 0 0.25rem #0ca7df);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
/*================BOTON PARA BAJAR=================*/
a#bottom {
  width: 38px;
  height: 38px;
  line-height: 0px;
  border-radius: 100%;
  border: 2px solid rgba(179, 179, 179, 0.95);
  background: rgba(96, 107, 113, 1);
  background: -moz-radial-gradient(circle, rgba(96, 107, 113, 1) 0%, rgba(49, 49, 49, 1) 100%);
  background: -webkit-radial-gradient(circle, rgba(96, 107, 113, 1) 0%, rgba(49, 49, 49, 1) 100%);
  background: radial-gradient(circle, rgba(96, 107, 113, 1) 0%, rgba(49, 49, 49, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$color-solido-inicio",endColorstr="$color-solido-fin",GradientType=1);
  display: none;
  font-size: 20px;
  font-weight: 400;
  position: fixed;
  right: 60px;
  bottom: 5px;
  z-index: 1000;
  padding: 7px;
  text-decoration: none;
  text-align: center;
  color: #f9f8f8;
  filter: drop-shadow(0 0 0 transparent);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
a#bottom:hover {
  color: #424242;
  filter: drop-shadow(0 0 0.25rem #0ca7df);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.style-arrows {
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.75);
}
/*==============PANEL OCULTO HERRAMIENTAS================*/
#panel-masopcs {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 1010;
  color: #fff;
  padding: 10px 30px 25px 30px;
  overflow-y: auto;
  scrollbar-width: none;
  scrollbar-color: #999 #424242;
  background: #000;
  background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(237, 237, 237, 1) 83%);
  background: -webkit-linear-gradient(90deg, #fff 0%, rgba(237, 237, 237, 1) 83%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(237, 237, 237, 1) 83%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFF",endColorstr="#EDEDED",GradientType=1);
  box-shadow: 7px 0px 15px -5px rgba(0, 0, 0, 0.8);
  /* Works on Chrome, Edge, and Safari */
}
#panel-masopcs .fa-window-close {
  font-size: 2rem;
  color: #1d3b3f;
  margin-bottom: 0.75rem;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
#panel-masopcs .fa-window-close:hover {
  color: #53c8da;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
#panel-masopcs [type="text"] {
  font-weight: 500;
  font-size: 1.125rem;
  color: #005aaa;
  background-color: #fff;
}
#panel-masopcs *::-webkit-scrollbar {
  width: 12px;
}
#panel-masopcs *::-webkit-scrollbar-track {
  background: #999;
}
#panel-masopcs *::-webkit-scrollbar-thumb {
  background-color: #424242;
  border-radius: 20px;
  border: 3px solid #333;
}
#panel-masopcs .button {
  filter: drop-shadow(0 0 0rem transparent);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
#panel-masopcs .button:hover {
  filter: drop-shadow(0 0 0.2rem #fff);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
/*************************TÍTULOS PÁGINAS INTERNAS AMPLIADAS, VARIOS E INDICES***************/
.fondo-horizontal-titulos {
  padding-top: 1.85rem;
  padding-right: 0;
  padding-bottom: 1.85rem;
  padding-left: 0;
  background-color: #1d3b3e;
}
.fondo-horizontal-titulos .titulo-seccion {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  padding: 0;
  margin: 0;
  color: #fff;
  text-align: center;
  text-transform: none;
  font-weight: 400;
  line-height: 1;
}
.fondo-horizontal-titulos .titulo-seccion h1 {
  display: none;
}
.fondo-horizontal-titulos h1.varios {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  padding: 0;
  margin: 0;
  color: #fff;
  text-align: center;
  text-transform: none;
  font-weight: 400;
  line-height: 1.2;
}
/*=========================PAGINACIÓN=====================*/
.pagination {
  margin-left: 0;
  margin-bottom: 0rem;
}
.pagination::before, .pagination::after {
  content: '';
  display: table;
}
.pagination::after {
  clear: both;
}
.pagination li {
  font-size: 1.15rem;
  margin-right: 0.0625rem;
  border-radius: 0.3rem;
  font-weight: 400;
}
.pagination li:last-child, .pagination li:first-child {
  display: inline-block;
}
.pagination a, .pagination button {
  color: #262626;
  text-shadow: 0px 0px 0px transparent;
  display: block;
  padding: 0.125rem 0.625rem 0;
  border-radius: 0.3rem;
  background-color: #fff;
  border: 0.0625rem solid #007688;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.pagination a:hover, .pagination button:hover {
  color: #fff;
  background: #007688;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.pagination .current {
  padding: 0.4875rem 0.625rem;
  cursor: default;
  background-color: #a5e2eb;
}
.pagination .disabled {
  padding: 0.1875rem 0.625rem;
  color: #f7f7f7;
  cursor: not-allowed;
}
.pagination .disabled:hover {
  background: transparent;
}
.pagination .ellipsis::after {
  content: '\2026';
  padding: 0.1875rem 0.625rem;
  color: #0a0a0a;
}
.pagination-previous a::before, .pagination-previous.disabled::before {
  content: '\00ab';
  display: inline-block;
  margin-right: 0.5rem;
}
.pagination-next a::after, .pagination-next.disabled::after {
  content: '\00bb';
  display: inline-block;
  margin-left: 0.5rem;
}
/*================INICIO - ESTILOS CONFIGURABLES PARA LA ZONA DE CARRITO COMPRA=================*/
.reveal.small {
  background-color: #fff;
  border: 0.0625rem solid #8d8d8d;
  border-radius: 0.65rem;
  padding: 2rem 1.25rem;
}
.reveal.small img {
  margin-bottom: 0rem;
  max-width: 100%;
  max-height: 100%;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.reveal.small .contacto {
  font-size: 2rem;
  font-weight: 700;
}
.reveal.small .contacto a {
  color: #3fcf00;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.reveal.small .contacto a i {
  font-weight: 700;
}
.reveal.small .contacto a:hover {
  color: #339a00;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.reveal.small span {
  color: #000;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.reveal.small span:hover {
  color: #c4151c;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.reveal.large {
  background-color: #fff;
  border: 0.0625rem solid #8d8d8d;
  border-radius: 0.65rem;
}
.reveal.large img {
  margin-bottom: 0rem;
  max-width: 100%;
  max-height: 100%;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.reveal.large h2 {
  font-size: 1.55rem;
  text-align: center;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}
.reveal.large p {
  text-align: left;
}
.reveal.large h4 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  padding-bottom: 0rem;
}
.reveal.large .contacto {
  font-size: 2rem;
  font-weight: 700;
}
.reveal.large .contacto a {
  color: #3fcf00;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.reveal.large .contacto a i {
  font-weight: 700;
}
.reveal.large .contacto a:hover {
  color: #339a00;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.reveal.large span {
  color: #000;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.reveal.large span:hover {
  color: #339a00;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
/*================FIN - ESTILOS CONFIGURABLES PARA LA ZONA DE CARRITO=================*/
/**************IMPORTAR LAS PARTES QUE ARMAN EL HOME Y ALGUNAS INTERNAS***********/
/* Hover.css (http://ianlunn.github.io/Hover/)
 * Version: 2.0.2
 * Author: Ian Lunn @IanLunn
 * Author URL: http://ianlunn.co.uk/
 * Github: https://github.com/IanLunn/Hover
 * Made available under a MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 * Hover.css Copyright Ian Lunn 2014. Generated with Sass.
 */
/* 2D TRANSITIONS */
/* Grow */
.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
/* Shrink */
.hvr-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
/* Pulse */
@-webkit-keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.hvr-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-pulse:hover, .hvr-pulse:focus, .hvr-pulse:active {
  -webkit-animation-name: hvr-pulse;
  animation-name: hvr-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
/* Pulse Grow */
@-webkit-keyframes hvr-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes hvr-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.hvr-pulse-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-pulse-grow:hover, .hvr-pulse-grow:focus, .hvr-pulse-grow:active {
  -webkit-animation-name: hvr-pulse-grow;
  animation-name: hvr-pulse-grow;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
/* Pulse Shrink */
@-webkit-keyframes hvr-pulse-shrink {
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes hvr-pulse-shrink {
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.hvr-pulse-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-pulse-shrink:hover, .hvr-pulse-shrink:focus, .hvr-pulse-shrink:active {
  -webkit-animation-name: hvr-pulse-shrink;
  animation-name: hvr-pulse-shrink;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
/* Push */
@-webkit-keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.hvr-push {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-push:hover, .hvr-push:focus, .hvr-push:active {
  -webkit-animation-name: hvr-push;
  animation-name: hvr-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Pop */
@-webkit-keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.hvr-pop {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-pop:hover, .hvr-pop:focus, .hvr-pop:active {
  -webkit-animation-name: hvr-pop;
  animation-name: hvr-pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Bounce In */
.hvr-bounce-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-in:hover, .hvr-bounce-in:focus, .hvr-bounce-in:active {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
/* Bounce Out */
.hvr-bounce-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-out:hover, .hvr-bounce-out:focus, .hvr-bounce-out:active {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
/* Rotate */
.hvr-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-rotate:hover, .hvr-rotate:focus, .hvr-rotate:active {
  -webkit-transform: rotate(4deg);
  transform: rotate(4deg);
}
/* Grow Rotate */
.hvr-grow-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow-rotate:hover, .hvr-grow-rotate:focus, .hvr-grow-rotate:active {
  -webkit-transform: scale(1.1) rotate(4deg);
  transform: scale(1.1) rotate(4deg);
}
/* Float */
.hvr-float {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-float:hover, .hvr-float:focus, .hvr-float:active {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}
/* Sink */
.hvr-sink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sink:hover, .hvr-sink:focus, .hvr-sink:active {
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}
/* Bob */
@-webkit-keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@-webkit-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
.hvr-bob {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-bob:hover, .hvr-bob:focus, .hvr-bob:active {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: 0.3s, 1.5s;
  animation-duration: 0.3s, 1.5s;
  -webkit-animation-delay: 0s, 0.3s;
  animation-delay: 0s, 0.3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}
/* Hang */
@-webkit-keyframes hvr-hang {
  0% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  50% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@keyframes hvr-hang {
  0% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  50% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@-webkit-keyframes hvr-hang-sink {
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@keyframes hvr-hang-sink {
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
.hvr-hang {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-hang:hover, .hvr-hang:focus, .hvr-hang:active {
  -webkit-animation-name: hvr-hang-sink, hvr-hang;
  animation-name: hvr-hang-sink, hvr-hang;
  -webkit-animation-duration: 0.3s, 1.5s;
  animation-duration: 0.3s, 1.5s;
  -webkit-animation-delay: 0s, 0.3s;
  animation-delay: 0s, 0.3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}
/* Skew */
.hvr-skew {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-skew:hover, .hvr-skew:focus, .hvr-skew:active {
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
}
/* Skew Forward */
.hvr-skew-forward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.hvr-skew-forward:hover, .hvr-skew-forward:focus, .hvr-skew-forward:active {
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
}
/* Skew Backward */
.hvr-skew-backward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.hvr-skew-backward:hover, .hvr-skew-backward:focus, .hvr-skew-backward:active {
  -webkit-transform: skew(10deg);
  transform: skew(10deg);
}
/* Wobble Vertical */
@-webkit-keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.hvr-wobble-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-wobble-vertical:hover, .hvr-wobble-vertical:focus, .hvr-wobble-vertical:active {
  -webkit-animation-name: hvr-wobble-vertical;
  animation-name: hvr-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Wobble Horizontal */
@-webkit-keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.hvr-wobble-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-wobble-horizontal:hover, .hvr-wobble-horizontal:focus, .hvr-wobble-horizontal:active {
  -webkit-animation-name: hvr-wobble-horizontal;
  animation-name: hvr-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Wobble To Bottom Right */
@-webkit-keyframes hvr-wobble-to-bottom-right {
  16.65% {
    -webkit-transform: translate(8px, 8px);
    transform: translate(8px, 8px);
  }
  33.3% {
    -webkit-transform: translate(-6px, -6px);
    transform: translate(-6px, -6px);
  }
  49.95% {
    -webkit-transform: translate(4px, 4px);
    transform: translate(4px, 4px);
  }
  66.6% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  83.25% {
    -webkit-transform: translate(1px, 1px);
    transform: translate(1px, 1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes hvr-wobble-to-bottom-right {
  16.65% {
    -webkit-transform: translate(8px, 8px);
    transform: translate(8px, 8px);
  }
  33.3% {
    -webkit-transform: translate(-6px, -6px);
    transform: translate(-6px, -6px);
  }
  49.95% {
    -webkit-transform: translate(4px, 4px);
    transform: translate(4px, 4px);
  }
  66.6% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  83.25% {
    -webkit-transform: translate(1px, 1px);
    transform: translate(1px, 1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.hvr-wobble-to-bottom-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-wobble-to-bottom-right:hover, .hvr-wobble-to-bottom-right:focus, .hvr-wobble-to-bottom-right:active {
  -webkit-animation-name: hvr-wobble-to-bottom-right;
  animation-name: hvr-wobble-to-bottom-right;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Wobble To Top Right */
@-webkit-keyframes hvr-wobble-to-top-right {
  16.65% {
    -webkit-transform: translate(8px, -8px);
    transform: translate(8px, -8px);
  }
  33.3% {
    -webkit-transform: translate(-6px, 6px);
    transform: translate(-6px, 6px);
  }
  49.95% {
    -webkit-transform: translate(4px, -4px);
    transform: translate(4px, -4px);
  }
  66.6% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  83.25% {
    -webkit-transform: translate(1px, -1px);
    transform: translate(1px, -1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes hvr-wobble-to-top-right {
  16.65% {
    -webkit-transform: translate(8px, -8px);
    transform: translate(8px, -8px);
  }
  33.3% {
    -webkit-transform: translate(-6px, 6px);
    transform: translate(-6px, 6px);
  }
  49.95% {
    -webkit-transform: translate(4px, -4px);
    transform: translate(4px, -4px);
  }
  66.6% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  83.25% {
    -webkit-transform: translate(1px, -1px);
    transform: translate(1px, -1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.hvr-wobble-to-top-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-wobble-to-top-right:hover, .hvr-wobble-to-top-right:focus, .hvr-wobble-to-top-right:active {
  -webkit-animation-name: hvr-wobble-to-top-right;
  animation-name: hvr-wobble-to-top-right;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Wobble Top */
@-webkit-keyframes hvr-wobble-top {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
@keyframes hvr-wobble-top {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
.hvr-wobble-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.hvr-wobble-top:hover, .hvr-wobble-top:focus, .hvr-wobble-top:active {
  -webkit-animation-name: hvr-wobble-top;
  animation-name: hvr-wobble-top;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Wobble Bottom */
@-webkit-keyframes hvr-wobble-bottom {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
@keyframes hvr-wobble-bottom {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
.hvr-wobble-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.hvr-wobble-bottom:hover, .hvr-wobble-bottom:focus, .hvr-wobble-bottom:active {
  -webkit-animation-name: hvr-wobble-bottom;
  animation-name: hvr-wobble-bottom;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Wobble Skew */
@-webkit-keyframes hvr-wobble-skew {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
@keyframes hvr-wobble-skew {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
.hvr-wobble-skew {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-wobble-skew:hover, .hvr-wobble-skew:focus, .hvr-wobble-skew:active {
  -webkit-animation-name: hvr-wobble-skew;
  animation-name: hvr-wobble-skew;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Buzz */
@-webkit-keyframes hvr-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}
@keyframes hvr-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}
.hvr-buzz {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-buzz:hover, .hvr-buzz:focus, .hvr-buzz:active {
  -webkit-animation-name: hvr-buzz;
  animation-name: hvr-buzz;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
/* Buzz Out */
@-webkit-keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
@keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
.hvr-buzz-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-buzz-out:hover, .hvr-buzz-out:focus, .hvr-buzz-out:active {
  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.hvr-forward {
  box-shadow: 0 0 1px transparent;
  display: inline-block;
  transform: perspective(1px) translateZ(0px);
  transition-duration: 0.3s;
  transition-property: transform;
  vertical-align: middle;
}
.hvr-forward:hover, .hvr-forward:focus, .hvr-forward:active {
  transform: translateX(8px);
}
.hvr-backward {
  box-shadow: 0 0 1px transparent;
  display: inline-block;
  transform: perspective(1px) translateZ(0px);
  transition-duration: 0.3s;
  transition-property: transform;
  vertical-align: middle;
}
.hvr-backward:hover, .hvr-backward:focus, .hvr-backward:active {
  transform: translateX(-30px);
}
/* BACKGROUND TRANSITIONS */
/* Fade */
.hvr-fade {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  border-radius: 0.625rem;
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  -ms-border-radius: 0.625rem;
  -o-border-radius: 0.625rem;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}
.hvr-fade:hover, .hvr-fade:focus, .hvr-fade:active {
  background-color: #ededed;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 0.625rem;
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  -ms-border-radius: 0.625rem;
  -o-border-radius: 0.625rem;
  color: white;
}
/* Back Pulse */
@-webkit-keyframes hvr-back-pulse {
  50% {
    background-color: rgba(32, 152, 209, 0.75);
  }
}
@keyframes hvr-back-pulse {
  50% {
    background-color: rgba(32, 152, 209, 0.75);
  }
}
.hvr-back-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}
.hvr-back-pulse:hover, .hvr-back-pulse:focus, .hvr-back-pulse:active {
  -webkit-animation-name: hvr-back-pulse;
  animation-name: hvr-back-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-color: #2098d1;
  background-color: #2098d1;
  color: white;
}
/* Sweep To Right */
.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f7f7f7;
  border-radius: 0.35rem;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
  color: white;
}
.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
/* Sweep To Left */
.hvr-sweep-to-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-left:hover, .hvr-sweep-to-left:focus, .hvr-sweep-to-left:active {
  color: white;
}
.hvr-sweep-to-left:hover:before, .hvr-sweep-to-left:focus:before, .hvr-sweep-to-left:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
/* Sweep To Bottom */
.hvr-sweep-to-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-bottom:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0d6162;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-bottom:hover, .hvr-sweep-to-bottom:focus, .hvr-sweep-to-bottom:active {
  color: white;
}
.hvr-sweep-to-bottom:hover:before, .hvr-sweep-to-bottom:focus:before, .hvr-sweep-to-bottom:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
/* Sweep To Top */
.hvr-sweep-to-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ff9500;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-top:hover, .hvr-sweep-to-top:focus, .hvr-sweep-to-top:active {
  color: #333;
}
.hvr-sweep-to-top:hover:before, .hvr-sweep-to-top:focus:before, .hvr-sweep-to-top:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
/* Bounce To Right */
.hvr-bounce-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #3d4e5d;
  border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-right:hover, .hvr-bounce-to-right:focus, .hvr-bounce-to-right:active {
  color: white;
}
.hvr-bounce-to-right:hover:before, .hvr-bounce-to-right:focus:before, .hvr-bounce-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
/* Bounce To Left */
.hvr-bounce-to-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f4f4f4;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-left:hover, .hvr-bounce-to-left:focus, .hvr-bounce-to-left:active {
  color: white;
}
.hvr-bounce-to-left:hover:before, .hvr-bounce-to-left:focus:before, .hvr-bounce-to-left:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
/* Bounce To Bottom */
.hvr-bounce-to-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-bottom:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f2f2f2;
  border-radius: 0.35rem;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-bottom:hover, .hvr-bounce-to-bottom:focus, .hvr-bounce-to-bottom:active {
  color: #404040;
}
.hvr-bounce-to-bottom:hover:before, .hvr-bounce-to-bottom:focus:before, .hvr-bounce-to-bottom:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
/* Bounce To Top */
.hvr-bounce-to-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #efefef;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-top:hover, .hvr-bounce-to-top:focus, .hvr-bounce-to-top:active {
  color: white;
}
.hvr-bounce-to-top:hover:before, .hvr-bounce-to-top:focus:before, .hvr-bounce-to-top:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
/* Radial Out */
.hvr-radial-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
  background: #0f90c4;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-radial-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #575857;
  border-radius: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-radial-out:hover, .hvr-radial-out:focus, .hvr-radial-out:active {
  color: white;
}
.hvr-radial-out:hover:before, .hvr-radial-out:focus:before, .hvr-radial-out:active:before {
  -webkit-transform: scale(2);
  transform: scale(2);
}
/* Radial In */
.hvr-radial-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
  background: #50cca6;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-radial-in:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #21ce99;
  border-radius: 100%;
  -webkit-transform: scale(2);
  transform: scale(2);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-radial-in:hover, .hvr-radial-in:focus, .hvr-radial-in:active {
  color: white;
}
.hvr-radial-in:hover:before, .hvr-radial-in:focus:before, .hvr-radial-in:active:before {
  -webkit-transform: scale(0);
  transform: scale(0);
}
/* Rectangle In */
.hvr-rectangle-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #0973b5;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-rectangle-in:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #193554;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-rectangle-in:hover, .hvr-rectangle-in:focus, .hvr-rectangle-in:active {
  color: white;
}
.hvr-rectangle-in:hover:before, .hvr-rectangle-in:focus:before, .hvr-rectangle-in:active:before {
  -webkit-transform: scale(0);
  transform: scale(0);
}
/* Rectangle Out */
.hvr-rectangle-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #ebebeb;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.hvr-rectangle-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #d5d5d5;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-rectangle-out:hover, .hvr-rectangle-out:focus, .hvr-rectangle-out:active {
  color: white;
}
.hvr-rectangle-out:hover:before, .hvr-rectangle-out:focus:before, .hvr-rectangle-out:active:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* Shutter In Horizontal */
.hvr-shutter-in-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #f6f6f7;
  border-radius: 2rem;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-in-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 2rem;
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-in-horizontal:hover, .hvr-shutter-in-horizontal:focus, .hvr-shutter-in-horizontal:active {
  color: white;
}
.hvr-shutter-in-horizontal:hover:before, .hvr-shutter-in-horizontal:focus:before, .hvr-shutter-in-horizontal:active:before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
/* Shutter Out Horizontal */
.hvr-shutter-out-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #e31e25;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-out-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #404040;
  border-radius: 1.15rem;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-out-horizontal:hover, .hvr-shutter-out-horizontal:focus, .hvr-shutter-out-horizontal:active {
  color: #333;
}
.hvr-shutter-out-horizontal:hover:before, .hvr-shutter-out-horizontal:focus:before, .hvr-shutter-out-horizontal:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
/* Shutter In Vertical */
.hvr-shutter-in-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: none;
  position: relative;
  background: #68e3f6;
  border-radius: 0.85rem;
  -webkit-border-radius: 0.85rem;
  -moz-border-radius: 0.85rem;
  -ms-border-radius: 0.85rem;
  -o-border-radius: 0.85rem;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-in-vertical:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #d6f2f6;
  border-radius: 0.85rem;
  -webkit-border-radius: 0.85rem;
  -moz-border-radius: 0.85rem;
  -ms-border-radius: 0.85rem;
  -o-border-radius: 0.85rem;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-in-vertical:hover, .hvr-shutter-in-vertical:focus, .hvr-shutter-in-vertical:active {
  color: #1d3b3e;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.hvr-shutter-in-vertical:hover:before, .hvr-shutter-in-vertical:focus:before, .hvr-shutter-in-vertical:active:before {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}
/* Shutter Out Vertical */
.hvr-shutter-out-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-out-vertical:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #017f93;
  border-radius: 1rem;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-out-vertical:hover, .hvr-shutter-out-vertical:focus, .hvr-shutter-out-vertical:active {
  color: #f1f1f1;
}
.hvr-shutter-out-vertical:hover:before, .hvr-shutter-out-vertical:focus:before, .hvr-shutter-out-vertical:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
/* BORDER TRANSITIONS */
/* Border Fade */
.hvr-border-fade {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
  box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
.hvr-border-fade:hover, .hvr-border-fade:focus, .hvr-border-fade:active {
  box-shadow: inset 0 0 0 4px #2098d1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
/* Hollow */
.hvr-hollow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
  box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
.hvr-hollow:hover, .hvr-hollow:focus, .hvr-hollow:active {
  background: none;
}
/* Trim */
.hvr-trim {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-trim:before {
  content: '';
  position: absolute;
  border: #e7e5e5 solid 2px;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.hvr-trim:hover:before, .hvr-trim:focus:before, .hvr-trim:active:before {
  opacity: 1;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
/* Ripple Out */
@-webkit-keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
.hvr-ripple-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-ripple-out:before {
  content: '';
  position: absolute;
  border: #6c6e70 solid 0.2rem;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.hvr-ripple-out:hover:before, .hvr-ripple-out:focus:before, .hvr-ripple-out:active:before {
  -webkit-animation-name: hvr-ripple-out;
  animation-name: hvr-ripple-out;
}
/* Ripple In */
@-webkit-keyframes hvr-ripple-in {
  100% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
}
@keyframes hvr-ripple-in {
  100% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
}
.hvr-ripple-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-ripple-in:before {
  content: '';
  position: absolute;
  border: #6c6e70 solid 0.125rem;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  top: -32px;
  right: -32px;
  bottom: -32px;
  left: -32px;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.hvr-ripple-in:hover:before, .hvr-ripple-in:focus:before, .hvr-ripple-in:active:before {
  -webkit-animation-name: hvr-ripple-in;
  animation-name: hvr-ripple-in;
}
/* Outline Out */
.hvr-outline-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-outline-out:before {
  content: '';
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: top, right, bottom, left;
  transition-property: top, right, bottom, left;
}
.hvr-outline-out:hover:before, .hvr-outline-out:focus:before, .hvr-outline-out:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}
/* Outline In */
.hvr-outline-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-outline-in:before {
  pointer-events: none;
  content: '';
  position: absolute;
  border: #e7e5e5 solid 2px;
  top: -16px;
  right: -16px;
  bottom: -16px;
  left: -16px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: top, right, bottom, left;
  transition-property: top, right, bottom, left;
}
.hvr-outline-in:hover:before, .hvr-outline-in:focus:before, .hvr-outline-in:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  opacity: 1;
}
/* Round Corners */
.hvr-round-corners {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: border-radius;
  transition-property: border-radius;
}
.hvr-round-corners:hover, .hvr-round-corners:focus, .hvr-round-corners:active {
  border-radius: 1em;
}
/* Underline From Left */
.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
  right: 0;
}
/* Underline From Center */
.hvr-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: 0;
  background: #007688;
  height: 6px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before {
  left: 0;
  right: 0;
}
/* Underline From Right */
.hvr-underline-from-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  bottom: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: left;
  transition-property: left;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-right:hover:before, .hvr-underline-from-right:focus:before, .hvr-underline-from-right:active:before {
  left: 0;
}
/* Overline From Left */
.hvr-overline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-overline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  top: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-from-left:hover:before, .hvr-overline-from-left:focus:before, .hvr-overline-from-left:active:before {
  right: 0;
}
/* Overline From Center */
.hvr-overline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-overline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  top: 0;
  background: #be1622;
  height: 5px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-from-center:hover:before, .hvr-overline-from-center:focus:before, .hvr-overline-from-center:active:before {
  left: 0;
  right: 0;
}
/* Overline From Right */
.hvr-overline-from-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-overline-from-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  top: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: left;
  transition-property: left;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-from-right:hover:before, .hvr-overline-from-right:focus:before, .hvr-overline-from-right:active:before {
  left: 0;
}
/* Reveal */
.hvr-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-color: #e7e5e5;
  border-style: solid;
  border-width: 0;
  -webkit-transition-property: border-width;
  transition-property: border-width;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-reveal:hover:before, .hvr-reveal:focus:before, .hvr-reveal:active:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  border-width: 3px;
}
/* Underline Reveal */
.hvr-underline-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-underline-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  background: #532387;
  height: 4px;
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-reveal:hover:before, .hvr-underline-reveal:focus:before, .hvr-underline-reveal:active:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/* Overline Reveal */
.hvr-overline-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-overline-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-reveal:hover:before, .hvr-overline-reveal:focus:before, .hvr-overline-reveal:active:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/* SHADOW/GLOW TRANSITIONS */
/* Glow */
.hvr-glow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-glow:hover, .hvr-glow:focus, .hvr-glow:active {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.70);
}
/* Shadow */
.hvr-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-shadow:hover, .hvr-shadow:focus, .hvr-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
/* Grow Shadow */
.hvr-grow-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
}
.hvr-grow-shadow:hover, .hvr-grow-shadow:focus, .hvr-grow-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
/* Box Shadow Outset */
.hvr-box-shadow-outset {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-box-shadow-outset:hover, .hvr-box-shadow-outset:focus, .hvr-box-shadow-outset:active {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}
/* Box Shadow Inset */
.hvr-box-shadow-inset {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
.hvr-box-shadow-inset:hover, .hvr-box-shadow-inset:focus, .hvr-box-shadow-inset:active {
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
/* Float Shadow */
.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 20px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(199, 200, 219, 0.35) 0%, rgba(199, 200, 219, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(199, 200, 219, 0.35) 0%, rgba(199, 200, 219, 0) 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
.hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
  /* move the element up by 5px */
}
.hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
  opacity: 1;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}
/* Shadow Radial */
.hvr-shadow-radial {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-shadow-radial:before, .hvr-shadow-radial:after {
  pointer-events: none;
  position: absolute;
  content: '';
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-repeat: no-repeat;
  height: 7px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.hvr-shadow-radial:before {
  bottom: 100%;
  background: -webkit-radial-gradient(50% 150%, ellipse, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at 50% 150%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}
.hvr-shadow-radial:after {
  top: 100%;
  background: -webkit-radial-gradient(50% -50%, ellipse, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at 50% -50%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}
.hvr-shadow-radial:hover:before, .hvr-shadow-radial:focus:before, .hvr-shadow-radial:active:before, .hvr-shadow-radial:hover:after, .hvr-shadow-radial:focus:after, .hvr-shadow-radial:active:after {
  opacity: 1;
}
/* SPEECH BUBBLES */
/* Bubble Top */
.hvr-bubble-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-bubble-top:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  left: calc(50% - 10px);
  top: 0;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #e1e1e1 transparent;
}
.hvr-bubble-top:hover:before, .hvr-bubble-top:focus:before, .hvr-bubble-top:active:before {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
/* Bubble Right */
.hvr-bubble-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-bubble-right:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  top: calc(50% - 10px);
  right: 0;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #e1e1e1;
}
.hvr-bubble-right:hover:before, .hvr-bubble-right:focus:before, .hvr-bubble-right:active:before {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
/* Bubble Bottom */
.hvr-bubble-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-bubble-bottom:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  left: calc(50% - 10px);
  bottom: 0;
  border-width: 10px 10px 0 10px;
  border-color: #e1e1e1 transparent transparent transparent;
}
.hvr-bubble-bottom:hover:before, .hvr-bubble-bottom:focus:before, .hvr-bubble-bottom:active:before {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}
/* Bubble Left */
.hvr-bubble-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-bubble-left:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  top: calc(50% - 10px);
  left: 0;
  border-width: 10px 10px 10px 0;
  border-color: transparent #e1e1e1 transparent transparent;
}
.hvr-bubble-left:hover:before, .hvr-bubble-left:focus:before, .hvr-bubble-left:active:before {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}
/* Bubble Float Top */
.hvr-bubble-float-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-top:before {
  position: absolute;
  z-index: -1;
  content: '';
  left: calc(50% - 10px);
  top: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #e1e1e1 transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-top:hover, .hvr-bubble-float-top:focus, .hvr-bubble-float-top:active {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}
.hvr-bubble-float-top:hover:before, .hvr-bubble-float-top:focus:before, .hvr-bubble-float-top:active:before {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
/* Bubble Float Right */
.hvr-bubble-float-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-right:before {
  position: absolute;
  z-index: -1;
  top: calc(50% - 10px);
  right: 0;
  content: '';
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #e1e1e1;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-right:hover, .hvr-bubble-float-right:focus, .hvr-bubble-float-right:active {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}
.hvr-bubble-float-right:hover:before, .hvr-bubble-float-right:focus:before, .hvr-bubble-float-right:active:before {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
/* Bubble Float Bottom */
.hvr-bubble-float-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-bottom:before {
  position: absolute;
  z-index: -1;
  content: '';
  left: calc(50% - 10px);
  bottom: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #e1e1e1 transparent transparent transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-bottom:hover, .hvr-bubble-float-bottom:focus, .hvr-bubble-float-bottom:active {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
.hvr-bubble-float-bottom:hover:before, .hvr-bubble-float-bottom:focus:before, .hvr-bubble-float-bottom:active:before {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}
/* Bubble Float Left */
.hvr-bubble-float-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-left:before {
  position: absolute;
  z-index: -1;
  content: '';
  top: calc(50% - 10px);
  left: 0;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #e1e1e1 transparent transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-left:hover, .hvr-bubble-float-left:focus, .hvr-bubble-float-left:active {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
.hvr-bubble-float-left:hover:before, .hvr-bubble-float-left:focus:before, .hvr-bubble-float-left:active:before {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}
.part_preheader {
  background-color: transparent;
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.part_header {
  background-color: transparent;
  /****************ESTILOS MULTINIVEL************************/
  /****************ESTILOS MULTINIVEL************************/
}
.part_header .separador-logo-botones {
  padding: 1rem 0;
}
.part_header .separador-logo-botones .logo {
  opacity: 1;
  filter: drop-shadow(0 0 0.05rem transparent);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_header .separador-logo-botones .logo:hover {
  opacity: 0.95;
  filter: drop-shadow(0 0 0.05rem #676767);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_header .separador-logo-botones p {
  color: #007688;
  font-size: 1.15rem;
}
.part_header .separador-logo-botones p .size-icon-header {
  margin-left: 0.45rem;
}
.part_header .separador-logo-botones p a {
  text-decoration: none;
  color: #007688;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_header .separador-logo-botones p a:hover {
  color: #022f35;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_header .fondo-horizontal-menu {
  background-color: #007688;
  padding: 0;
}
.part_header .boton-menu-movil {
  display: none;
}
.part_header .nav-bar {
  background: transparent;
  height: auto;
  margin-bottom: 0px;
}
.part_header .nav-bar .nav-bar-logo {
  padding: 1.8rem;
}
.part_header .nav-bar ul {
  padding-bottom: 0rem;
  float: right;
}
.part_header .nav-bar li {
  background: transparent;
}
.part_header .nav-bar a {
  color: #fefefe;
  transition: color 0.2s ease-in;
}
.part_header .nav-bar a:hover {
  color: #a8b8c3;
}
@media screen and (max-width: 39.9375em) {
  .part_header {
    /*height: 53.57143px;*/
  }
  .part_header .nav-bar {
    height: auto;
  }
}
.part_header .nav-bar .offcanvas-trigger {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  color: #fff;
  text-transform: capitalize;
  background-color: #1d3b3f;
  transition: background-color 0.2s ease-in;
  cursor: pointer;
}
.part_header .nav-bar .offcanvas-trigger:hover {
  background-color: #275359;
}
.part_header .nav-bar .offcanvas-trigger .offcanvas-trigger-text {
  margin-right: 0.25rem;
  margin-top: 0.25rem;
}
@media screen and (max-width: 39.9375em) {
  .part_header .nav-bar .offcanvas-trigger {
    padding: 0.9rem;
  }
}
.part_header .multilevel-offcanvas {
  background: #007688;
  padding: 20px;
  color: #232868;
}
.part_header .multilevel-offcanvas > .menu {
  margin-bottom: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1875rem;
  font-weight: 400;
  text-transform: capitalize;
}
.part_header .multilevel-offcanvas .menu a {
  color: #fff;
  padding: 12px 10px;
  transition: color 0.2s ease-in;
}
.part_header .multilevel-offcanvas .menu a:hover {
  color: #67ccdb;
  transition: color 0.2s ease-in;
}
.part_header .multilevel-offcanvas .fa {
  color: #333;
}
.part_header .multilevel-offcanvas .is-accordion-submenu-parent > a::after {
  border-color: #fff transparent transparent;
}
.part_header .multilevel-offcanvas .social-links {
  margin-left: 20px;
}
.part_header .multilevel-offcanvas .social-links li {
  margin-right: 5px;
}
.part_header .multilevel-offcanvas .social-links a:hover .fa {
  color: #cacaca;
  transition: color 0.2s ease-in;
}
.part_header .multilevel-offcanvas .social-links .fa {
  font-size: 2.2rem;
}
.part_header .body-info {
  text-align: center;
  color: #2c3840;
}
.part_header .body-info .button {
  margin: 1rem 0;
  padding: 0.85em 2em;
}
.part_header .off-canvas {
  position: fixed;
  z-index: 1000;
  transition: transform 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.part_header .is-open + .off-canvas-content .hamburger .line:nth-child(1), .part_header .is-open + .off-canvas-content .hamburger .line:nth-child(3) {
  width: 12px;
}
.part_header .is-open + .off-canvas-content .hamburger .line:nth-child(1) {
  -webkit-transform: translateX(-5px) rotate(-45deg);
  -ms-transform: translateX(-5px) rotate(-45deg);
  transform: translateX(-5px) rotate(-45deg);
}
.part_header .is-open + .off-canvas-content .hamburger .line:nth-child(3) {
  -webkit-transform: translateX(-5px) rotate(45deg);
  -ms-transform: translateX(-5px) rotate(45deg);
  transform: translateX(-5px) rotate(45deg);
}
.part_header .hamburger .line {
  width: 30px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 4px auto;
  transition: all 0.3s ease-in-out;
}
.part_header .hamburger .line:last-child {
  margin-bottom: 0;
}
/*****************MEDIA QUERIES*****************/
/* Small only */
@media screen and (max-width: 39.9375em) {
  .part_header .separador-logo-botones {
    padding: 1rem 0rem;
  }
  .part_header .separador-logo-botones p {
    font-size: 0.85rem;
  }
  .part_header .fondo-horizontal-menu {
    padding: 1rem 0;
  }
  .part_header .boton-menu-movil {
    display: block;
  }
  .part_header .off-canvas-content.is-open-right.has-transition-push {
    -webkit-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    transform: translateX(-260px);
  }
  .part_header .is-accordion-submenu-parent ul {
    list-style-type: none;
    margin-left: 0rem;
  }
  .part_header .is-accordion-submenu-parent ul li {
    background-color: #017a8c;
    padding: 0px 10px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_header .is-accordion-submenu-parent ul li:hover {
    background-color: #1d3b3f;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_header .is-accordion-submenu-parent ul li a {
    padding: 0px;
    display: block;
    color: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_header .is-accordion-submenu-parent ul li a:hover {
    color: #f1f1f1;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_header .is-accordion-submenu-parent ul li ul li a {
    color: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_header .is-accordion-submenu-parent ul li ul li a:hover {
    color: #f1f1f1 !important;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
}
/* Medium and up */
/*@media screen and (min-width: 40em) {
 }*/
/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .part_header .separador-logo-botones {
    padding: 1rem 0rem 1rem 0rem;
  }
  .part_header .fondo-horizontal-menu {
    padding: 1rem 0;
  }
  .part_header .boton-menu-movil {
    display: block;
  }
  .part_header .off-canvas-content.is-open-right.has-transition-push {
    -webkit-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    transform: translateX(-260px);
  }
  .part_header .is-accordion-submenu-parent ul {
    list-style-type: none;
    margin-left: 0rem;
  }
  .part_header .is-accordion-submenu-parent ul li {
    background-color: #017a8c;
    padding: 0px 10px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_header .is-accordion-submenu-parent ul li:hover {
    background-color: #1d3b3f;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_header .is-accordion-submenu-parent ul li a {
    padding: 0px;
    display: block;
    color: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_header .is-accordion-submenu-parent ul li a:hover {
    color: #f1f1f1;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_header .is-accordion-submenu-parent ul li ul li a {
    color: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_header .is-accordion-submenu-parent ul li ul li a:hover {
    color: #f1f1f1 !important;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
}
/* Large and up */
/*@media screen and (min-width: 64em) {
 }*/
/* Large only */
/*@media screen and (min-width: 64em) and (max-width: 74.9375em) {
 }*/
/***************MEDIA QUERIES*****************/
.part_header_int {
  background-color: transparent;
  /****************ESTILOS MULTINIVEL************************/
  /****************ESTILOS MULTINIVEL************************/
}
.part_header_int .separador-logo-botones {
  padding: 1rem 0;
}
.part_header_int .separador-logo-botones .logo {
  opacity: 1;
  filter: drop-shadow(0 0 0.05rem transparent);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_header_int .separador-logo-botones .logo:hover {
  opacity: 0.95;
  filter: drop-shadow(0 0 0.05rem #676767);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_header_int .separador-logo-botones p {
  color: #007688;
  font-size: 1.15rem;
}
.part_header_int .separador-logo-botones p .size-icon-header {
  margin-left: 0.45rem;
}
.part_header_int .separador-logo-botones p a {
  text-decoration: none;
  color: #007688;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_header_int .separador-logo-botones p a:hover {
  color: #022f35;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_header_int .fondo-horizontal-menu {
  background-color: #007688;
  padding: 0;
}
.part_header_int .boton-menu-movil {
  display: none;
}
.part_header_int .nav-bar {
  background: transparent;
  height: auto;
  margin-bottom: 0px;
}
.part_header_int .nav-bar .nav-bar-logo {
  padding: 1.8rem;
}
.part_header_int .nav-bar ul {
  padding-bottom: 0rem;
  float: right;
}
.part_header_int .nav-bar li {
  background: transparent;
}
.part_header_int .nav-bar a {
  color: #fefefe;
  transition: color 0.2s ease-in;
}
.part_header_int .nav-bar a:hover {
  color: #a8b8c3;
}
@media screen and (max-width: 39.9375em) {
  .part_header_int {
    /*height: 53.57143px;*/
  }
  .part_header_int .nav-bar {
    height: auto;
  }
}
.part_header_int .nav-bar .offcanvas-trigger {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  color: #fff;
  text-transform: capitalize;
  background-color: #1d3b3f;
  transition: background-color 0.2s ease-in;
  cursor: pointer;
}
.part_header_int .nav-bar .offcanvas-trigger:hover {
  background-color: #275359;
}
.part_header_int .nav-bar .offcanvas-trigger .offcanvas-trigger-text {
  margin-right: 0.25rem;
  margin-top: 0.25rem;
}
@media screen and (max-width: 39.9375em) {
  .part_header_int .nav-bar .offcanvas-trigger {
    padding: 0.9rem;
  }
}
.part_header_int .multilevel-offcanvas {
  background: #007688;
  padding: 20px;
  color: #232868;
}
.part_header_int .multilevel-offcanvas > .menu {
  margin-bottom: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1875rem;
  font-weight: 400;
  text-transform: capitalize;
}
.part_header_int .multilevel-offcanvas .menu a {
  color: #fff;
  padding: 12px 10px;
  transition: color 0.2s ease-in;
}
.part_header_int .multilevel-offcanvas .menu a:hover {
  color: #67ccdb;
  transition: color 0.2s ease-in;
}
.part_header_int .multilevel-offcanvas .fa {
  color: #333;
}
.part_header_int .multilevel-offcanvas .is-accordion-submenu-parent > a::after {
  border-color: #fff transparent transparent;
}
.part_header_int .multilevel-offcanvas .social-links {
  margin-left: 20px;
}
.part_header_int .multilevel-offcanvas .social-links li {
  margin-right: 5px;
}
.part_header_int .multilevel-offcanvas .social-links a:hover .fa {
  color: #cacaca;
  transition: color 0.2s ease-in;
}
.part_header_int .multilevel-offcanvas .social-links .fa {
  font-size: 2.2rem;
}
.part_header_int .body-info {
  text-align: center;
  color: #2c3840;
}
.part_header_int .body-info .button {
  margin: 1rem 0;
  padding: 0.85em 2em;
}
.part_header_int .off-canvas {
  position: fixed;
  z-index: 1000;
  transition: transform 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.part_header_int .is-open + .off-canvas-content .hamburger .line:nth-child(1), .part_header_int .is-open + .off-canvas-content .hamburger .line:nth-child(3) {
  width: 12px;
}
.part_header_int .is-open + .off-canvas-content .hamburger .line:nth-child(1) {
  -webkit-transform: translateX(-5px) rotate(-45deg);
  -ms-transform: translateX(-5px) rotate(-45deg);
  transform: translateX(-5px) rotate(-45deg);
}
.part_header_int .is-open + .off-canvas-content .hamburger .line:nth-child(3) {
  -webkit-transform: translateX(-5px) rotate(45deg);
  -ms-transform: translateX(-5px) rotate(45deg);
  transform: translateX(-5px) rotate(45deg);
}
.part_header_int .hamburger .line {
  width: 30px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 4px auto;
  transition: all 0.3s ease-in-out;
}
.part_header_int .hamburger .line:last-child {
  margin-bottom: 0;
}
/*****************MEDIA QUERIES*****************/
/* Small only */
@media screen and (max-width: 39.9375em) {
  .part_header_int .separador-logo-botones {
    padding: 1rem 0rem;
  }
  .part_header_int .separador-logo-botones p {
    font-size: 0.85rem;
  }
  .part_header_int .fondo-horizontal-menu {
    padding: 1rem 0;
  }
  .part_header_int .boton-menu-movil {
    display: block;
  }
  .part_header_int .off-canvas-content.is-open-right.has-transition-push {
    -webkit-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    transform: translateX(-260px);
  }
  .part_header_int .is-accordion-submenu-parent ul {
    list-style-type: none;
    margin-left: 0rem;
  }
  .part_header_int .is-accordion-submenu-parent ul li {
    background-color: #017a8c;
    padding: 0px 10px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_header_int .is-accordion-submenu-parent ul li:hover {
    background-color: #1d3b3f;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_header_int .is-accordion-submenu-parent ul li a {
    padding: 0px;
    display: block;
    color: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_header_int .is-accordion-submenu-parent ul li a:hover {
    color: #f1f1f1;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_header_int .is-accordion-submenu-parent ul li ul li a {
    color: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_header_int .is-accordion-submenu-parent ul li ul li a:hover {
    color: #f1f1f1 !important;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
}
/* Medium and up */
/*@media screen and (min-width: 40em) {
 }*/
/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .part_header_int .separador-logo-botones {
    padding: 1rem 0rem 1rem 0rem;
  }
  .part_header_int .fondo-horizontal-menu {
    padding: 1rem 0;
  }
  .part_header_int .boton-menu-movil {
    display: block;
  }
  .part_header_int .off-canvas-content.is-open-right.has-transition-push {
    -webkit-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    transform: translateX(-260px);
  }
  .part_header_int .is-accordion-submenu-parent ul {
    list-style-type: none;
    margin-left: 0rem;
  }
  .part_header_int .is-accordion-submenu-parent ul li {
    background-color: #017a8c;
    padding: 0px 10px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_header_int .is-accordion-submenu-parent ul li:hover {
    background-color: #1d3b3f;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_header_int .is-accordion-submenu-parent ul li a {
    padding: 0px;
    display: block;
    color: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_header_int .is-accordion-submenu-parent ul li a:hover {
    color: #f1f1f1;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_header_int .is-accordion-submenu-parent ul li ul li a {
    color: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_header_int .is-accordion-submenu-parent ul li ul li a:hover {
    color: #f1f1f1 !important;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
}
/* Large and up */
/*@media screen and (min-width: 64em) {
 }*/
/* Large only */
/*@media screen and (min-width: 64em) and (max-width: 74.9375em) {
 }*/
/***************MEDIA QUERIES*****************/
.part_menu {
  background-color: transparent;
  /***********+MENU HORIZONTAL*******************/
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding-top: 0rem;
  /******ESTILOS SUBMENU 2 NIVEL**********/
  /****MENU VERTICAL*****/
  /*configuracion del ul del submenu 2*/
  /****ESTE BLOQUE DE LINEAS SIRVE PARA PONER EL COLOR DE LA FLECHITA EN EL SUBMENU*/
  /****MEDIA QUERIES*****/
  /* Small only */
  /**********AQUI SE CONFIGURA EL COLOR DE LAS LINEAS DEL MENU HAMBURGUESA***/
  /*********Medium only**************/
  /****MEDIA QUERIES*****/
}
.part_menu .menu-esc {
  display: block;
}
.part_menu .title-bar {
  padding: 0rem 0rem;
}
.part_menu .title-bar .title-bar-title {
  font-size: 1.1875rem;
  color: #fff;
}
.part_menu .top-bar, .part_menu .top-bar ul {
  background-color: transparent;
  padding: 0rem;
  justify-content: center;
}
.part_menu .top-bar {
  padding: 0px;
  height: auto;
}
.part_menu .top-bar .menu {
  height: auto;
}
.part_menu .top-bar .menu li {
  height: auto;
}
.part_menu .top-bar .menu li a {
  text-transform: none;
  color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-size: 1.1875rem;
  font-weight: 400;
}
.part_menu .top-bar .menu li a:hover {
  color: #f1f1f1;
  background-color: #85bdc6;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_menu .menu > li > a {
  display: block;
  padding: 1.5rem 1.35rem;
  line-height: 1;
  background-color: transparent;
}
.part_menu .menu > li > a:hover {
  color: inherit;
}
.part_menu .submenu > li > a {
  display: block;
  padding: 1.5rem 0.65rem;
  line-height: 1;
  background-color: transparent;
}
.part_menu .submenu > li > a:hover {
  color: inherit;
}
.part_menu .top-bar .menu li ul li a {
  text-transform: none;
  font-size: 1.1875rem;
  line-height: 1.4;
  padding: 1.1rem 0.9375rem;
  background-color: transparent;
  color: #fff;
  /*Aqui se coloca el color de la letra en reposo del submenu a 2 niveles*/
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_menu .top-bar .menu li ul li a:hover {
  background-color: rgba(29, 59, 63, 0.9);
  color: #f1f1f1;
  /*Aqui se coloca el color de la letra en hover del submenu a 2 niveles*/
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_menu .is-dropdown-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 279px;
  z-index: 500;
}
.part_menu .is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
  right: 14px;
  margin-top: -3px;
}
.part_menu .is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent #fff transparent transparent;
  border-right-style: solid;
  border-left-width: 0;
}
.part_menu .is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent transparent transparent #fff;
  border-left-style: solid;
  border-right-width: 0;
}
.part_menu .is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.part_menu .is-dropdown-submenu > li {
  width: 100%;
  padding: 0rem 0rem;
  height: auto;
  text-align: left;
  border-bottom: 0.0625rem solid #fff;
  /*orientacion del texto en el li del submenu 2 y borde del li*/
}
.part_menu .is-dropdown-submenu > li:hover {
  background-color: transparent;
  /*color fondo en el hover del li del submenu 2*/
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_menu .is-dropdown-submenu.js-dropdown-active {
  display: block;
}
.part_menu .dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: #fff transparent transparent;
  border-image: none;
  border-style: solid inset inset;
  border-width: 5px 5px 0;
  content: "";
  display: block;
  height: 0;
  margin-top: -2px;
  right: 5px;
  width: 0;
}
.part_menu .dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 40px;
  list-style: inside;
  list-style-type: none;
  padding: 0rem;
  background-color: rgba(255, 255, 255, 0.76);
  border: 0rem solid #6fb343;
  left: -0.5rem;
}
.part_menu .dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  left: auto;
  right: 100%;
  background-color: transparent;
  border: 0rem solid #6fb343;
}
.part_menu .dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
  background-color: transparent;
  border: 0rem solid #6fb343;
}
.part_menu .dropdown.menu.vertical > li > a::after {
  right: 15px;
  margin-top: -3px;
}
.part_menu .dropdown.menu.vertical > li.opens-left > a::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent #fff transparent transparent;
  border-right-style: solid;
  border-left-width: 0;
}
.part_menu .dropdown.menu.vertical > li.opens-right > a::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent transparent transparent transparent;
  border-left-style: solid;
  border-right-width: 0;
}
@media screen and (max-width: 39.9375em) {
  .part_menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
  .part_menu .title-bar {
    background-color: transparent;
    padding-bottom: 0.55rem;
  }
  .part_menu .title-bar .title-bar-title {
    font-size: 1.1875rem;
    color: #1a375d;
  }
  .part_menu .menu-centered {
    text-align: left;
  }
  .part_menu .top-bar {
    height: auto;
  }
  .part_menu .top-bar .menu {
    width: 100%;
    height: auto;
  }
  .part_menu .top-bar .menu li {
    height: auto;
  }
  .part_menu .top-bar .menu li a {
    color: #fff;
    padding: 1.2rem 0.875rem;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_menu .top-bar .menu li a:hover {
    color: #c2080e;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
}
.part_menu .top-bar ul {
  background-color: transparent;
  margin-left: 0rem;
}
.part_menu .is-accordion-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #fff transparent transparent;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1rem;
}
.part_menu .menu.vertical > li > ul {
  list-style: none;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_menu .menu.vertical > li > ul > li {
  display: block;
  border-bottom: 0.0625rem solid transparent;
  background-color: rgba(8, 34, 68, 0);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_menu .menu.vertical > li > ul > li:hover {
  background-color: rgba(83, 185, 216, 0);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_menu .menu.vertical > li > ul > li:last-child {
  border-bottom: 0rem solid #fff;
}
.part_menu .submenu.vertical > li > ul {
  list-style: none;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_menu .submenu.vertical > li > ul > li {
  border-bottom: 0.0625rem solid #006185;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_menu .submenu.vertical > li > ul > li:last-child {
  border-bottom: 0rem solid #fff;
}
.part_menu .menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  width: 20px;
  height: 16px;
}
.part_menu .menu-icon.dark::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: #1a375d;
  top: 0;
  left: 0;
  box-shadow: 0 7px 0 #1a375d, 0 14px 0 #1a375d;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_menu .menu-icon.dark:hover::after {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: #7393bd;
  box-shadow: 0 7px 0 #7393bd, 0 14px 0 #7393bd;
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .part_menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
  .part_menu .title-bar {
    background-color: transparent;
    padding-left: 0rem;
    margin-bottom: 0.625rem;
  }
  .part_menu .title-bar .title-bar-title {
    font-size: 1.1875rem;
    color: #1a375d;
  }
  .part_menu .menu-centered {
    text-align: left;
  }
  .part_menu .top-bar {
    height: auto;
  }
  .part_menu .top-bar .menu {
    width: 100%;
    height: auto;
  }
  .part_menu .top-bar .menu li {
    height: auto;
  }
  .part_menu .top-bar .menu li a {
    color: #fff;
    padding: 1rem 0.875rem;
    background-color: transparent;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_menu .top-bar .menu li a:hover {
    color: #fff;
    background-color: #315e8f;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_menu .top-bar ul {
    background-color: rgba(19, 36, 53, 0.95);
  }
  .part_menu .dropdown.menu.vertical > li .is-dropdown-submenu {
    top: 3rem;
    left: 0rem;
    list-style: inside;
    list-style-type: none;
    padding: 0rem;
    background-color: rgba(19, 36, 53, 0.95);
  }
}
@media screen and (min-width: 40em) {
  .part_menu .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%;
    background-color: rgba(0, 34, 49, 0.76);
    border: 0rem solid #6fb343;
  }
  .part_menu .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%;
    background-color: rgba(0, 34, 49, 0.76);
    border: 0rem solid #6fb343;
  }
  .part_menu .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    padding: 0.7rem;
    position: relative;
  }
  .part_menu .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #fff transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px;
  }
  .part_menu .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .part_menu .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 100%;
    background-color: rgba(255, 255, 255, 0.10);
    border: 0rem solid #6fb343;
  }
  .part_menu .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
    background-color: rgba(255, 255, 255, 0.10);
    border: 0rem solid #6fb343;
  }
  .part_menu .dropdown.menu.medium-vertical > li > a::after {
    right: 0px;
    margin-top: -3px;
  }
  .part_menu .dropdown.menu.medium-vertical > li.opens-left > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #fff transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
  }
  .part_menu .dropdown.menu.medium-vertical > li.opens-right > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #fff;
    border-left-style: solid;
    border-right-width: 0;
  }
}
@media screen and (min-width: 64em) {
  .part_menu .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 1;
    top: 100%;
    /*****AQUI SE CAMBIA EL COLOR DE FONDO, BORDER RADIUS DE MENU 2 NIVEL - ESCRITORIO****/
    background-color: rgba(0, 118, 136, 0.9);
    border-bottom-left-radius: 0.15rem;
    border-bottom-right-radius: 0.15rem;
  }
  .part_menu .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%;
    /*****AQUI SE CAMBIA EL COLOR DE FONDO, BORDER RADIUS DE MENU 2 NIVEL - ESCRITORIO****/
    background-color: rgba(0, 118, 136, 0.9);
    margin-left: 0rem;
    padding: 0rem 0rem;
    border-bottom-left-radius: 0.15rem;
    border-bottom-right-radius: 0.15rem;
  }
  .part_menu .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    padding-right: 1.5rem;
    position: relative;
  }
  .part_menu .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    content: '+';
    display: block;
    width: 0;
    height: 0;
    /*border: inset 5px;
     border-color: #FFF transparent transparent;
     border-top-style: solid;
     border-bottom-width: 0;*/
    right: 17px;
    margin-top: -14px;
  }
  .part_menu .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .part_menu .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 100%;
    background-color: rgba(120, 34, 49, 1);
    border: 0rem solid #6fb343;
  }
  .part_menu .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
    background-color: rgba(120, 34, 49, 1);
    border: 0rem solid #6fb343;
  }
  .part_menu .dropdown.menu.large-vertical > li > a::after {
    right: 14px;
    margin-top: -3px;
  }
  .part_menu .dropdown.menu.large-vertical > li.opens-left > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #fff transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
  }
  .part_menu .dropdown.menu.large-vertical > li.opens-right > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #fff;
    border-left-style: solid;
    border-right-width: 0;
  }
}
/****MEDIA QUERIES*****/
/* Small only */
@media screen and (max-width: 39.9375em) {
  .part_menu .menu-esc {
    display: none;
  }
  .part_menu .top-bar, .part_menu .top-bar ul {
    background-color: rgba(19, 36, 53, 0.90);
  }
  .part_menu .top-bar .menu li, .part_menu .top-bar ul .menu li {
    background-color: transparent;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_menu .top-bar .menu li a, .part_menu .top-bar ul .menu li a {
    text-decoration: none;
    color: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_menu .top-bar .menu li a:hover, .part_menu .top-bar ul .menu li a:hover {
    color: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .part_menu .top-bar .menu li:hover, .part_menu .top-bar ul .menu li:hover {
    background-color: rgba(49, 94, 143, 0.89);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
}
/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .part_menu .menu-esc {
    display: none;
  }
}
/* Large only */
@media screen and (min-width: 64em) {
  .part_menu .top-bar, .part_menu .top-bar ul {
    background-color: transparent;
  }
}
/****MEDIA QUERIES*****/
.part_slider {
  padding: 0;
  background-color: #a4e2eb;
  background-position: right center;
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.part_slider .tp-bannertimer {
  visibility: hidden;
  width: 100%;
  height: 8px;
  background: rgba(146, 196, 204, 0.65);
  position: absolute;
  z-index: 200;
  top: 0px;
}
.part_slider .contenedor-resultados {
  background-color: #fff;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  filter: drop-shadow(0 0 0.25rem #8d8d8d);
}
.part_slider .contenedor-resultados h2 {
  margin: 0 0 1rem 0;
}
.part_slider .contenedor-resultados .button-all {
  margin-top: 1rem;
  padding: 1.15rem 0.9375rem;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_slider .contenedor-resultados .button-all:hover i, .part_slider .contenedor-resultados .button-all:hover p {
  color: #caf1f7;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_slider .contenedor-resultados .bto-medlegal i, .part_slider .contenedor-resultados .bto-labclinico i {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1.25rem;
}
.part_slider .contenedor-resultados .bto-medlegal {
  background-color: #1d3b3f;
}
.part_slider .contenedor-resultados .bto-labclinico {
  background-color: #53c8da;
}
@media screen and (max-width: 39.9375em) {
  .part_slider {
    background-position: right bottom;
    background-size: auto;
  }
  .part_slider .fondo-resultados {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .part_slider .contenedor-resultados h2 {
    font-size: 3.55rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .part_slider {
    background-position: right bottom;
    background-size: auto;
  }
  .part_slider .fondo-resultados {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.bot-whatsapp {
  position: fixed;
  top: 28%;
  right: 0.15rem;
  padding: 0rem 0rem 0rem 0rem;
  z-index: 999;
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.bot-whatsapp a {
  display: flex;
}
.bot-whatsapp a img {
  opacity: 1;
  filter: drop-shadow(0 0 0rem transparent);
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.bot-whatsapp a img:hover {
  opacity: 0.95;
  filter: drop-shadow(0 0 0.2rem #1c2e4c);
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
@media screen and (max-width: 39.9375em) {
  .bot-whatsapp {
    top: 25%;
  }
  .bot-whatsapp a img {
    max-width: 50px;
  }
}
.part_botresultados {
  background-color: transparent;
}
.part_botresultados .bot-resultados {
  position: fixed;
  top: 43%;
  right: 0rem;
  padding: 0rem 0rem 0rem 0rem;
  z-index: 999;
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.part_botresultados .bot-resultados a {
  display: flex;
}
.part_botresultados .bot-resultados a img {
  opacity: 1;
  filter: drop-shadow(0 0 0rem transparent);
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.part_botresultados .bot-resultados a img:hover {
  opacity: 0.95;
  filter: drop-shadow(0 0 0.2rem #1c2e4c);
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
@media screen and (max-width: 39.9375em) {
  .part_botresultados .bot-resultados {
    top: 36%;
  }
  .part_botresultados .bot-resultados a img {
    max-width: 60px;
  }
}
.part_panel_resultados .contenedor-resultados {
  background-color: transparent;
  color: #1d3b3f;
}
.part_panel_resultados .contenedor-resultados p, .part_panel_resultados .contenedor-resultados h2 {
  text-align: center;
}
.part_panel_resultados .contenedor-resultados p {
  font-size: 1.5rem;
}
.part_panel_resultados .contenedor-resultados h2 {
  margin: 0 0 1rem 0;
  font-size: 4rem;
}
.part_panel_resultados .contenedor-resultados .button-all {
  margin-top: 1rem;
  padding: 0.9375rem;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_panel_resultados .contenedor-resultados .button-all p {
  font-size: 1.15rem;
}
.part_panel_resultados .contenedor-resultados .button-all:hover i, .part_panel_resultados .contenedor-resultados .button-all:hover p {
  color: #caf1f7;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_panel_resultados .contenedor-resultados .bto-medlegal i, .part_panel_resultados .contenedor-resultados .bto-labclinico i {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.45rem;
}
.part_panel_resultados .contenedor-resultados .bto-medlegal {
  background-color: #1d3b3f;
}
.part_panel_resultados .contenedor-resultados .bto-labclinico {
  background-color: #53c8da;
}
.part_contactoslab_home {
  padding: 0;
}
.part_contactoslab_home .contenedor-contactoslab-home {
  margin-bottom: 0;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  border-radius: 1.15rem;
  background-color: #fff;
  box-shadow: 0 7.5px 10px 0 #a9e3ec;
  -moz-box-shadow: 0 7.5px 10px 0 #a9e3ec;
  -ms-box-shadow: 0 7.5px 10px 0 #a9e3ec;
  -o-box-shadow: 0 7.5px 10px 0 #a9e3ec;
  -webkit-box-shadow: 0 7.5px 10px 0 #a9e3ec;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.part_contactoslab_home .contenedor-contactoslab-home a {
  text-decoration: none;
  color: #007688;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_contactoslab_home .contenedor-contactoslab-home .callout-contactoslab-home {
  position: relative;
}
.part_contactoslab_home .contenedor-contactoslab-home .callout-contactoslab-home i {
  margin-bottom: 0;
  font-size: 3rem;
  color: #007688;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_contactoslab_home .contenedor-contactoslab-home .callout-contactoslab-home .contenido p {
  word-break: break-word;
  font-size: 1.15rem;
  text-align: left;
  color: #007688;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_contactoslab_home .contenedor-contactoslab-home .callout-contactoslab-home .callout-contactoslab-home > :first-child {
  margin-top: 0;
}
.part_contactoslab_home .contenedor-contactoslab-home .callout-contactoslab-home .callout-contactoslab-home > :last-child {
  margin-bottom: 0;
}
.part_contactoslab_home .contenedor-contactoslab-home:hover {
  background-color: #f7f7f7;
  box-shadow: 0 7.5px 10px 0 #84ddeb;
  -moz-box-shadow: 0 7.5px 10px 0 #84ddeb;
  -ms-box-shadow: 0 7.5px 10px 0 #84ddeb;
  -o-box-shadow: 0 7.5px 10px 0 #84ddeb;
  -webkit-box-shadow: 0 7.5px 10px 0 #84ddeb;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_contactoslab_home .contenedor-contactoslab-home:hover a {
  color: #1d3b3f;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_contactoslab_home .contenedor-contactoslab-home:hover i, .part_contactoslab_home .contenedor-contactoslab-home:hover .contenido p {
  color: #1d3b3f;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 39.9375em) {
  .part_contactoslab_home .contenedor-contactoslab-home {
    margin-bottom: 2rem;
  }
  .part_contactoslab_home .contenedor-contactoslab-home .callout-contactoslab-home i {
    margin-bottom: 1.25rem;
  }
  .part_contactoslab_home .contenedor-contactoslab-home .callout-contactoslab-home .contenido p {
    text-align: center;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .part_contactoslab_home .contenedor-contactoslab-home {
    margin-bottom: 1.75rem;
  }
  .part_contactoslab_home .contenedor-contactoslab-home .callout-contactoslab-home i {
    margin-bottom: 1.25rem;
  }
}
.part_labvida_home {
  /*.about {
   //background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/769286/beach-2089959_1280.jpg);
   background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)) !important;
   background-size: cover;
   background-position: center center;
   background-attachment: fixed;	
   }*/
  /*.contact-form {
   width: 100%;
   }
   input {
   width: 100%;
   }
   textarea {
   width: 100%;	
   }*/
  /*.contact {
   //background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/769286/lake-696098_1920.jpg);
   background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
   background-size: cover;
   background-position: center center;
   background-attachment: fixed;
   }*/
  /*.work {
   //background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/769286/forest-208517_1280.jpg);
   background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
   background-size: cover;
   background-position: center center;
   background-attachment: fixed;
   }*/
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.part_labvida_home h2 {
  text-align: center;
  margin: 0 0 3rem 0;
}
.part_labvida_home .flex-container {
  height: 70vh;
  width: 100%;
  display: -webkit-flex;
  /* Safari */
  display: flex;
  overflow: hidden;
  -webkit-box-shadow: 0 9.5px 8px -5px rgba(0, 0, 0, .30);
  -moz-box-shadow: 0 9.5px 8px -5px rgba(0, 0, 0, .30);
  box-shadow: 0 9.5px 8px -5px rgba(0, 0, 0, .30);
}
@media screen and (max-width: 768px) {
  .part_labvida_home .flex-container {
    flex-direction: column;
  }
}
.part_labvida_home .flex-title {
  color: #f1f1f1;
  position: relative;
  font-size: 1.85vw;
  font-weight: bold;
  margin: auto;
  text-align: center;
  transform: rotate(90deg);
  top: 46%;
  line-height: 1;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media screen and (max-width: 768px) {
  .part_labvida_home .flex-title {
    font-size: 3.15vw;
    transform: rotate(0deg) !important;
  }
}
.part_labvida_home .flex-title a {
  color: #fff;
  text-shadow: 0 0 5px transparent;
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.part_labvida_home .flex-title a:hover {
  color: #a5e2eb;
  text-shadow: 2px 2px 5px #0a0a0a;
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.part_labvida_home .flex-about {
  opacity: 0;
  color: #f1f1f1;
  position: relative;
  width: 70%;
  padding: 0 5% 5% 5%;
  top: 35%;
  border: 0;
  border-radius: 0;
  line-height: 1.3;
  margin: auto;
  text-align: left;
  transform: rotate(0deg);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.part_labvida_home .flex-about p {
  font-size: 1.15vw;
}
@media screen and (max-width: 768px) {
  .part_labvida_home .flex-about {
    padding: 3%;
    border: 0;
  }
}
.part_labvida_home .flex-slide {
  -webkit-flex: 1;
  /* Safari 6.1+ */
  -ms-flex: 1;
  /* IE 10 */
  flex: 1;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media screen and (max-width: 768px) {
  .part_labvida_home .flex-slide {
    overflow: auto;
    overflow-x: hidden;
    overflow-y: hidden;
  }
}
@media screen and (max-width: 768px) {
  .part_labvida_home .flex-slide p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .part_labvida_home .flex-slide ul li {
    font-size: 2rem;
  }
}
.part_labvida_home .flex-slide:hover {
  -webkit-flex-grow: 3;
  flex-grow: 3;
}
.part_labvida_home .home {
  height: auto;
  /*background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
   background-size: cover;
   background-position: center center;
   background-attachment: fixed;*/
}
@media screen and (min-width: 768px) {
  .part_labvida_home .home {
    animation: aboutFlexSlide 3s 1;
    animation-delay: 0s;
  }
}
@keyframes aboutFlexSlide {
  0% {
    -webkit-flex-grow: 6;
    flex-grow: 6;
  }
  50% {
    -webkit-flex-grow: 3;
    flex-grow: 3;
  }
  100% {
    -webkit-flex-grow: 1;
    flex-grow: 1;
  }
}
@media screen and (min-width: 768px) {
  .part_labvida_home .flex-title-home {
    transform: rotate(90deg);
    top: 20%;
    animation: aboutFlexSlide 3s 1;
    animation-delay: 0s;
  }
}
@keyframes homeFlextitle {
  0% {
    transform: rotate(90deg);
    top: 15%;
  }
  50% {
    transform: rotate(0deg);
    top: 15%;
  }
  100% {
    transform: rotate(90deg);
    top: 15%;
  }
}
.part_labvida_home .flex-about-home {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .part_labvida_home .flex-about-home {
    animation: aboutFlexSlide 3s 1;
    animation-delay: 0s;
  }
}
@keyframes flexAboutHome {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.part_labvida_home .spinner {
  position: relative;
  background: #222;
  height: 100%;
  width: 100%;
  z-index: 11;
  margin: 0 auto 0 auto;
  color: #fff;
  font-size: 1em;
}
.part_labvida_home .cube1, .part_labvida_home .cube2 {
  background-color: #fff;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
  animation: sk-cubemove 1.8s infinite ease-in-out;
}
.part_labvida_home .cube2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
@-webkit-keyframes sk-cubemove {
  25% {
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes sk-cubemove {
  25% {
    transform: translateX(42px) rotate(-90deg) scale(0.5);
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    transform: translateX(42px) translateY(42px) rotate(-179deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
  }
  50.1% {
    transform: translateX(42px) translateY(42px) rotate(-180deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  }
  100% {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
  }
}
@media screen and (max-width: 39.9375em) {
  .part_labvida_home h2 {
    font-size: 4rem;
  }
  .part_labvida_home .flex-slide:hover {
    -webkit-flex: 4;
    /* Safari 6.1+ */
    -ms-flex: 4;
    /* IE 10 */
    flex: 4;
  }
  .part_labvida_home .flex-title a, .part_labvida_home .flex-title {
    font-size: 4vw;
  }
  .part_labvida_home .flex-about {
    width: 90%;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .part_labvida_home .flex-title a, .part_labvida_home .flex-title {
    font-size: 3vw;
  }
  .part_labvida_home .flex-about {
    width: 90%;
  }
  .part_labvida_home .flex-about p {
    font-size: 1.75vw;
  }
}
.part_medlaboral_home {
  padding: 0;
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.part_medlaboral_home img {
  opacity: 1;
  filter: drop-shadow(0 0 0rem transparent);
  border-top-left-radius: 1.15rem;
  border-bottom-left-radius: 1.15rem;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_medlaboral_home img:hover {
  opacity: 0.9;
  filter: drop-shadow(0 0 0.3rem #9b9a9a);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 39.9375em) {
  .part_medlaboral_home h2 {
    font-size: 4rem;
  }
  .part_medlaboral_home img {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-left-radius: 1.15rem;
    border-bottom-right-radius: 1.15rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .part_medlaboral_home img {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-left-radius: 1.15rem;
    border-bottom-right-radius: 1.15rem;
  }
}
.part_examenes_home {
  padding: 0;
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.part_examenes_home p {
  margin-bottom: 0rem;
  font-size: 1.25rem;
  line-height: 1.3;
}
.part_examenes_home h2 {
  margin: 0.55rem 0 1rem 0;
}
.part_examenes_home .button-all i {
  font-size: 2.15rem;
  margin-bottom: 0;
}
.part_examenes_home .button-all p {
  font-size: 1.12rem;
  text-align: left;
  margin: 0;
}
.part_examenes_home img {
  opacity: 1;
  filter: drop-shadow(0 0 0rem transparent);
  border-radius: 1.15rem;
  -webkit-border-radius: 1.15rem;
  -moz-border-radius: 1.15rem;
  -ms-border-radius: 1.15rem;
  -o-border-radius: 1.15rem;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_examenes_home img:hover {
  opacity: 0.9;
  filter: drop-shadow(0 0 0.3rem #9b9a9a);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 39.9375em) {
  .part_examenes_home img {
    margin-bottom: 2rem;
  }
  .part_examenes_home h2 {
    font-size: 4rem;
  }
  .part_examenes_home .button-all i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }
  .part_examenes_home .button-all p {
    text-align: center;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .part_examenes_home img {
    margin-bottom: 2rem;
  }
}
.part_indicadores_home {
  padding: 0rem 0rem 0rem 0rem;
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.part_indicadores_home p {
  font-size: 1.15rem;
  text-align: center;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 5rem;
}
.part_indicadores_home img {
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_indicadores_home img:hover {
  opacity: 0.9;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_indicadores_home .info-indicadores {
  padding-top: 3rem;
}
.part_indicadores_home .contenedor-estadisticas-home {
  margin: 0 0 0 0;
}
.part_indicadores_home .contenedor-estadisticas-home .callout-estadisticas-home {
  margin: 0 0 0rem 0;
  padding: 0.75rem 0.5rem;
  position: relative;
  text-align: center;
  border-right: 1px solid #fff;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_indicadores_home .contenedor-estadisticas-home .callout-estadisticas-home h2 {
  margin: 0.9375rem 0 0 0;
  color: #fff;
  font-size: 1rem;
  text-align: center;
}
.part_indicadores_home .contenedor-estadisticas-home .callout-estadisticas-home p {
  text-align: center;
  color: #fff;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 0rem;
  word-break: break-all;
}
.part_indicadores_home .contenedor-estadisticas-home .callout-estadisticas-home .callout-estadisticas-home > :first-child {
  margin-top: 0;
}
.part_indicadores_home .contenedor-estadisticas-home .callout-estadisticas-home .callout-estadisticas-home > :last-child {
  margin-bottom: 0;
}
.part_indicadores_home .contenedor-estadisticas-home .callout-estadisticas-home:hover {
  background-color: rgba(255, 255, 255, 0.20);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_indicadores_home .contenedor-estadisticas-home .callout-estadisticas-home:hover h2, .part_indicadores_home .contenedor-estadisticas-home .callout-estadisticas-home:hover p {
  color: #f1f1f1;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 39.9375em) {
  .part_indicadores_home .info-indicadores {
    padding-top: 0;
  }
  .part_indicadores_home p {
    margin-bottom: 3rem;
  }
  .part_indicadores_home .contenedor-estadisticas-home {
    margin: 0 0 1.25rem 0;
  }
  .part_indicadores_home .contenedor-estadisticas-home .callout-estadisticas-home {
    margin: 0 0 0rem 0;
    padding: 1.95rem 1rem;
    border-right: 0;
    border-bottom: 1px solid #fff;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .part_indicadores_home .info-indicadores {
    padding-top: 0;
  }
  .part_indicadores_home p {
    margin-bottom: 4rem;
  }
  .part_indicadores_home .contenedor-estadisticas-home {
    margin: 0 0 2rem 0;
  }
}
.part_diagnosticosdv_home {
  padding: 0;
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.part_diagnosticosdv_home .info-diagvida {
  background-color: rgba(255, 255, 255, .95);
  box-shadow: 0 7.5px 10px 0 #a9e3ec;
  -moz-box-shadow: 0 7.5px 10px 0 #a9e3ec;
  -ms-box-shadow: 0 7.5px 10px 0 #a9e3ec;
  -o-box-shadow: 0 7.5px 10px 0 #a9e3ec;
  -webkit-box-shadow: 0 7.5px 10px 0 #a9e3ec;
  border-radius: 1.15rem;
  -webkit-border-radius: 1.15rem;
  -moz-border-radius: 1.15rem;
  -ms-border-radius: 1.15rem;
  -o-border-radius: 1.15rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.part_diagnosticosdv_home .info-diagvida h2 {
  margin: 0 0 1rem 0;
}
.part_diagnosticosdv_home .info-diagvida p {
  margin: 0;
  font-size: 1.25rem;
}
.part_diagnosticosdv_home .info-diagvida h2, .part_diagnosticosdv_home .info-diagvida .contenido {
  padding: 0 4rem;
}
@media screen and (max-width: 39.9375em) {
  .part_diagnosticosdv_home h2 {
    font-size: 4rem;
  }
}
.part_pespecializadas_home {
  padding: 0rem 0rem 0rem 0rem;
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.part_pespecializadas_home h2 {
  text-align: center;
  margin-bottom: 4rem;
}
.part_pespecializadas_home .contenido p {
  font-size: 1.15rem;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 7rem;
}
.part_pespecializadas_home .contenedor-pespecializadas {
  padding-top: 0;
  margin-bottom: 0rem;
  background-color: #fff;
  box-shadow: 0px 15px 8px -8px rgba(115, 115, 115, 0.5);
  -moz-box-shadow: 0px 15px 8px -8px rgba(115, 115, 115, 0.5);
  -ms-box-shadow: 0px 15px 8px -8px rgba(115, 115, 115, 0.5);
  -o-box-shadow: 0px 15px 8px -8px rgba(115, 115, 115, 0.5);
  -webkit-box-shadow: 0px 15px 8px -8px rgba(115, 115, 115, 0.5);
  border-radius: 1.15rem;
  -webkit-border-radius: 1.15rem;
  -moz-border-radius: 1.15rem;
  -ms-border-radius: 1.15rem;
  -o-border-radius: 1.15rem;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_pespecializadas_home .contenedor-pespecializadas a {
  display: block;
  text-decoration: none;
  color: #1d3b3f;
}
.part_pespecializadas_home .contenedor-pespecializadas img {
  opacity: 1;
  max-width: 100%;
  max-height: auto;
  margin-top: -2.25rem;
  margin-bottom: 1rem;
  border: 0.5rem solid #e6e6e6;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  filter: drop-shadow(0 0 0rem transparent);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_pespecializadas_home .contenedor-pespecializadas h2 {
  font-size: 1.5rem;
  color: #1d3b3f;
  margin-bottom: 0.85rem;
  padding: 0rem 0.9375rem;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_pespecializadas_home .contenedor-pespecializadas p {
  margin-bottom: 0rem;
  font-size: 1rem;
  text-align: center;
  padding-bottom: 2.5rem;
}
.part_pespecializadas_home .contenedor-pespecializadas:hover {
  background-color: #f8f8f8;
  filter: drop-shadow(0 0 0.25rem #848484);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_pespecializadas_home .contenedor-pespecializadas:hover img {
  filter: drop-shadow(0 0 0.15rem #abb1b7);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_pespecializadas_home .contenedor-pespecializadas:hover h2, .part_pespecializadas_home .contenedor-pespecializadas:hover p {
  color: #323232;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 39.9375em) {
  .part_pespecializadas_home h2 {
    font-size: 4rem;
  }
  .part_pespecializadas_home .contenedor-pespecializadas {
    margin-bottom: 4.5rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .part_pespecializadas_home .contenedor-pespecializadas {
    margin-bottom: 4.5rem;
  }
}
.part_nclientes {
  padding: 4rem 0;
  background-color: transparent;
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.part_nclientes h2 {
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 4rem 0;
}
.part_nclientes .slick-slider {
  padding: 0rem 1.45rem;
}
.part_nclientes .slick-prev {
  left: 23px;
}
.part_nclientes .slick-next {
  right: 23px;
}
.part_nclientes .slick-prev, .part_nclientes .slick-next {
  top: 55%;
}
.part_nclientes .slick-slide a img {
  filter: drop-shadow(0 0 0 transparent);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_nclientes .slick-slide a:hover img {
  filter: drop-shadow(0 0 0.01rem #a3a3a3);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_cotizar_servicio {
  padding: 4rem 0rem;
  background-color: #f2f2f2;
  /*****************CONTENEDOR INFO COTIZAR****************/
  /*****************CONTENEDOR INFO COTIZAR****************/
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.part_cotizar_servicio .separador-compartir {
  padding-top: 0;
  padding-bottom: 0;
}
.part_cotizar_servicio .separador-compartir .button-all {
  margin-top: 0;
}
.part_cotizar_servicio .separador-compartir .button-all i {
  margin-right: 0.75rem;
}
.part_cotizar_servicio .separador-compartir .contenido p {
  margin-bottom: 0rem;
  text-align: left;
}
@media screen and (max-width: 39.9375em) {
  .part_cotizar_servicio {
    /*****************CONTENEDOR INFO COTIZAR****************/
    /*****************CONTENEDOR INFO COTIZAR****************/
  }
  .part_cotizar_servicio .separador-compartir .button-all {
    margin-top: 3rem;
  }
  .part_cotizar_servicio .separador-compartir .contenido p {
    text-align: center;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .part_cotizar_servicio {
    /*****************CONTENEDOR INFO COTIZAR****************/
    /*****************CONTENEDOR INFO COTIZAR****************/
  }
  .part_cotizar_servicio .separador-compartir .button-all {
    margin-top: 3rem;
  }
  .part_cotizar_servicio .separador-compartir .contenido p {
    text-align: center;
  }
}
.part_directorio {
  background-color: transparent;
  padding: 0rem 0rem 0rem 0rem;
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.part_directorio .contenedor-directorio {
  margin: 0 0 0rem 0;
  padding-bottom: 0.9375rem;
  position: relative;
  background-color: transparent;
}
.part_directorio .contenedor-directorio ul {
  list-style: disc;
  margin-bottom: 0;
  padding: 0rem;
  margin-left: 1.02rem;
}
.part_directorio .contenedor-directorio ul li {
  vertical-align: middle;
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}
.part_directorio .contenedor-directorio ul li a {
  display: flex;
  color: #fff;
  text-decoration: none;
  padding-left: 0rem;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_directorio .contenedor-directorio ul li a:hover {
  color: #a5e2eb;
  padding-left: 0.15rem;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_directorio .contenedor-directorio ul li:last-child {
  margin-bottom: 0rem;
}
@media screen and (max-width: 39.9375em) {
  .part_directorio {
    padding: 4rem 0rem 0rem 0rem;
  }
  .part_directorio .contenedor-directorio {
    padding-bottom: 1.75rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .part_directorio {
    padding: 4rem 0rem 0rem 0rem;
  }
}
.part_footer {
  background-color: #1d3b3e;
  padding: 6rem 0 6rem 0;
  /*=======CREDITOS=======*/
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.part_footer .contenedor-logo-info {
  text-align: left;
  color: #fff;
}
.part_footer img.logo-sitio-creditos {
  max-width: 100%;
  margin-bottom: 4rem;
  filter: drop-shadow(0 0 0rem #fff);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_footer img.logo-sitio-creditos:hover {
  filter: drop-shadow(0 0 0.1rem #a5e2eb);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_footer .animar {
  animation: aparecer 1s;
}
@keyframes aparecer {
  0% {
    opacity: 0;
    transform: translateY(100px);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
}
.part_footer .ocultar {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  animation: ocultar 1s;
}
@keyframes ocultar {
  0% {
    opacity: 1;
    transform: translateY(0);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  100% {
    opacity: 0;
    transform: translateY(100px);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
}
.part_footer .creditos {
  line-height: 1.5;
  margin-top: 3rem;
  text-transform: none;
}
.part_footer .creditos a {
  color: #6d6e70;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_footer .creditos a:hover {
  color: #f1f1f1;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_footer .creditos p {
  font-size: 1.12rem;
  color: #fff;
  text-align: center;
  margin: 0;
}
.part_footer .logo-vigilado {
  text-align: center;
  margin-top: 1.15rem;
}
.part_footer .logo-vigilado img {
  filter: drop-shadow(0 0 0.05rem transparent);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_footer .logo-vigilado img:hover {
  filter: drop-shadow(0 0 0.05rem #a5e2eb);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 39.9375em) {
  .part_footer {
    /*=======CREDITOS=======*/
  }
  .part_footer .contenedor-logo {
    text-align: center;
  }
  .part_footer .creditos p {
    text-align: center;
  }
  .part_footer .terminos-politicas {
    padding-top: 1.5rem;
  }
  .part_footer .separadorvert {
    border-right: 0;
    border-bottom: 0.0625rem solid #6d6e70;
    margin-bottom: 1.5rem;
  }
  .part_footer .separadorvert p {
    text-align: center;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .part_footer {
    /*=======CREDITOS=======*/
  }
  .part_footer .contenedor-logo {
    text-align: center;
  }
  .part_footer .creditos p {
    text-align: center;
  }
}
.part_postfooter {
  background-color: transparent;
}
.part_footer_int {
  background-color: #1d3b3e;
  padding: 6rem 0 6rem 0;
  /*=======CREDITOS=======*/
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.part_footer_int .contenedor-logo-info {
  text-align: left;
  color: #fff;
}
.part_footer_int img.logo-sitio-creditos {
  max-width: 100%;
  margin-bottom: 4rem;
  filter: drop-shadow(0 0 0rem #fff);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_footer_int img.logo-sitio-creditos:hover {
  filter: drop-shadow(0 0 0.1rem #a5e2eb);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_footer_int .creditos {
  line-height: 1.5;
  margin-top: 3rem;
  text-transform: none;
}
.part_footer_int .creditos a {
  color: #6d6e70;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_footer_int .creditos a:hover {
  color: #f1f1f1;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_footer_int .creditos p {
  font-size: 1.12rem;
  color: #fff;
  text-align: center;
  margin: 0;
}
.part_footer_int .logo-vigilado {
  text-align: center;
  margin-top: 1.15rem;
}
.part_footer_int .logo-vigilado img {
  filter: drop-shadow(0 0 0.05rem transparent);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.part_footer_int .logo-vigilado img:hover {
  filter: drop-shadow(0 0 0.05rem #a5e2eb);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 39.9375em) {
  .part_footer_int {
    /*=======CREDITOS=======*/
  }
  .part_footer_int .contenedor-logo {
    text-align: center;
  }
  .part_footer_int .creditos p {
    text-align: center;
  }
  .part_footer_int .terminos-politicas {
    padding-top: 1.5rem;
  }
  .part_footer_int .separadorvert {
    border-right: 0;
    border-bottom: 0.0625rem solid #6d6e70;
    margin-bottom: 1.5rem;
  }
  .part_footer_int .separadorvert p {
    text-align: center;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .part_footer_int {
    /*=======CREDITOS=======*/
  }
  .part_footer_int .contenedor-logo {
    text-align: center;
  }
  .part_footer_int .creditos p {
    text-align: center;
  }
}
.part_postfooter_int {
  background-color: transparent;
}
/******ESTA LINEA ES PARA LAS VENTANAS MODALES******/
.reveal {
  background-color: #fff;
  border: 0.0625rem solid #8d8d8d;
  border-radius: 0.65rem;
}
.reveal .button {
  background-color: #007688;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #fff;
  font-weight: 400;
}
.reveal .button:hover {
  color: #f1f1f1;
  background-color: #017f93;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.reveal .title {
  color: #007688;
  text-align: center;
  font-size: 2.5rem;
  padding: 1rem 0rem 0rem 0rem;
  margin: 0rem 0rem 1.25rem 0rem;
}
/****MEDIA QUERIES*****/
/* Small only */
@media screen and (max-width: 39.9375em) {
  .fondo-horizontal-titulos .titulo-seccion {
    font-size: 3.85rem;
  }
  .fondo-horizontal-titulos h1.varios {
    font-size: 3.85rem;
  }
}
/* Medium only */
/****MEDIA QUERIES*****/
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado {
  padding: 0rem 0rem 0rem 0rem;
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium and up */
  /*@media screen and (min-width: 40em) {
   }*/
  /* Medium only */
  /* Large and up */
  /*@media screen and (min-width: 64em) {
   }*/
  /* Large only */
  /*@media screen and (min-width: 64em) and (max-width: 74.9375em) {
   }*/
  /****MEDIA QUERIES*****/
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .listsedes {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .listsedes .contenedor-vertical {
  margin-bottom: 1.875rem;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .listsedes .contenedor-vertical a {
  text-decoration: none;
  color: #1d3b3f;
  font-weight: 400;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .listsedes .contenedor-vertical .callout-vertical {
  width: 100%;
  position: relative;
  margin: 0;
  text-align: center;
  padding: 0.9375rem;
  background-color: #d6f2f6;
  border-radius: 0.85rem;
  -webkit-border-radius: 0.85rem;
  -moz-border-radius: 0.85rem;
  -ms-border-radius: 0.85rem;
  -o-border-radius: 0.85rem;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .listsedes .contenedor-vertical .callout-vertical p {
  font-size: 1rem;
  text-align: center;
  margin: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .listsedes .contenedor-vertical .callout-vertical:hover {
  background-color: #e9e9e9;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .listsedes .contenedor-vertical .callout-vertical:hover p {
  color: #4b585f;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa {
  background: url(img/fondo-horizontal-contenidos.png) right bottom no-repeat #fff;
  background-size: auto;
  margin: 3rem 0;
  /* [START maps_advanced_markers_html] */
  /** Property styles in unhighlighted state.*/
  /*
   * Property styles in highlighted state.
   */
  /*Building icon colors.*/
  /* [END maps_advanced_markers_html] */
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa .button-all {
  margin-top: 6rem;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa #map {
  height: 100%;
  position: static !important;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa #map html, .page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa #map body {
  height: 100%;
  padding: 0;
  margin: 0;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa .property {
  background-color: #007688;
  border-radius: 50%;
  color: #263238;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  gap: 15px;
  height: 32px;
  width: 32px;
  padding: 4px;
  position: relative;
  transition: all 0.3s ease-out;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa .property::after {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #007688;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: 92%;
  transform: translate(-50%, 0);
  transition: all 0.3s ease-out;
  width: 0;
  z-index: 1;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa .property .icon {
  align-items: center;
  display: flex;
  justify-content: center;
  color: #fff;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa .property .icon i {
  font-size: 1rem;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa .property .details {
  display: none;
  flex-direction: column;
  flex: 1;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa .property .nomsede {
  font-size: 1.65rem;
  text-align: center;
  font-weight: bold;
  color: #007688;
  margin-bottom: 10px;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa .property .odatos {
  color: #333;
  font-size: 1.015rem;
  text-align: left;
  margin-bottom: 10px;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa .property .odatos:last-child {
  margin-bottom: 0;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa .property .odatos i {
  font-size: 1.25rem;
  vertical-align: middle;
  margin-right: 0.65rem;
  color: #007688;
  font-weight: bold;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa .property .features {
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa .property .features > div {
  align-items: center;
  background: #f5f5f5;
  border-radius: 5px;
  border: 1px solid #ccc;
  display: flex;
  font-size: 10px;
  gap: 5px;
  padding: 5px;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa .property.highlight {
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #007688;
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
  height: 170px;
  padding: 10px 30px 10px 30px;
  width: auto;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa .property.highlight::after {
  border-top: 13px solid #fff;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa .property.highlight .details {
  display: flex;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa .property.highlight .icon {
  width: 40px;
  height: 40px;
  color: #007688;
  display: none;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa .property.highlight.details:has(.fa-building) .icon {
  color: #fff;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa .property:not(.highlight):has(.fa-building) {
  background-color: #007688;
}
.page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .fondo-horizontal-mapa .property:not(.highlight):has(.fa-building)::after {
  border-top: 9px solid #007688;
}
@media screen and (max-width: 39.9375em) {
  .page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado h1 {
    font-size: 4.25rem;
  }
  .page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .listsedes {
    margin-bottom: 2rem;
  }
  .page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .flex-video {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .listsedes {
    margin-bottom: 2rem;
  }
  .page_contenido_ampliado_sede .fondo-horizontal-contenido-ampliado .flex-video {
    margin-bottom: 2rem;
  }
}
