/* 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, .titulo-seccion {
  font-family: 'Advent Pro', sans-serif;
  font-weight: 900;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: 900;
}
/**TITULO PPAL INTERNAS**/
h1 {
  font-size: 1.625rem;
  text-align: left;
  padding: 0rem 0rem 0rem 0rem;
  margin: 0rem 0rem 0.9375rem 0rem;
  text-transform: uppercase;
  color: #4a4a4a;
}
/**SUBTÍTULO INTERNAS***/
h2 {
  font-size: 1.438rem;
  text-align: left;
  padding: 0rem 0rem 0rem 0rem;
  margin: 0rem 0rem 0.9375rem 0rem;
  text-transform: uppercase;
  color: #4a4a4a;
}
/**TÍTULOS DIRECTORIO**/
h3 {
  font-size: 1.55rem;
  text-align: left;
  margin: 0rem 0rem 1.25rem 0rem;
  padding: 0rem 0rem 1rem 0rem;
  text-transform: uppercase;
  color: #e86b0e;
  border-bottom: 0.0625rem solid #e86b0e;
}
/**SUBTITULO BOTON IR A CONTACTOS HOME**/
h4 {
  font-size: 2rem;
  padding: 0rem 0rem 0rem 0rem;
  margin: 1.75rem 0rem 1rem 0rem;
  text-align: center;
  color: #121212;
  text-transform: none;
}
/**HOME**/
h5 {
  font-size: 0.9375rem;
  text-align: left;
  padding: 0rem 0rem 0rem 0rem;
  margin: 0rem 0rem 0.9375rem 0rem;
  text-transform: none;
  color: #000;
}
/**TITULOS HOME***/
h6 {
  font-size: 1.95rem;
  text-align: center;
  padding: 0rem 0rem 0rem 0rem;
  margin: 0rem 0rem 2rem 0rem;
  text-transform: uppercase;
  color: #262626;
}
body {
  margin: 0;
  padding: 0;
  background-color: transparent;
  font-size: calc(var(--font-size) * 1rem);
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
p {
  margin-bottom: 0rem;
  font-size: calc(var(--font-size) * 1rem);
}
/*****ESTILOS BOTON FORMULARIOS***********/
.button {
  background-color: #e86b0e;
  text-transform: uppercase;
  border: 0;
  border-radius: 1.2rem;
  -webkit-border-radius: 1.2rem;
  -moz-border-radius: 1.2rem;
  -ms-border-radius: 1.2rem;
  -o-border-radius: 1.2rem;
  -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: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  margin: 0.9375rem 0rem 3rem 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: #fff;
  background-color: #4d4d4d;
  -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: #cacaca;
}
::-moz-placeholder {
  color: #cacaca;
}
:-ms-input-placeholder {
  color: #cacaca;
}
::-ms-input-placeholder {
  color: #cacaca;
}
::placeholder {
  color: #cacaca;
}
[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-size: 0.9375rem;
  background-color: #fff;
}
input:checked ~ .switch-paddle {
  background: #e86b0e;
}
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: 0.9375rem;
  font-weight: normal;
  line-height: 1.5;
  color: #090f27;
  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;
}
@media screen and (min-width: 0\0) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}
select:disabled {
  background-color: #e6e6e6;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}
select:not([multiple]) {
  padding-top: 0;
  padding-bottom: 0;
}
[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, [type='checkbox']:focus, textarea:focus, select:focus {
  outline: none;
  color: #090f27;
  border: 1px solid #01d21d;
  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-weight: 700;
  font-size: 0.9375rem;
}
.file-selected {
  color: #01d21d;
  word-break: break-all;
}
.captcha {
  margin-bottom: 0.9375rem;
  transform: scale(0.86);
  transform-origin: 0 0;
}
abbr {
  font-size: 0.825rem;
  color: #e86b0e;
}
.button.disabled, .button[disabled] {
  background-color: #e86b0e;
}
.button.disabled:hover, .button[disabled]:hover {
  background-color: #e86b0e;
}
/**************CONTENIDOS INTERNOS***************/
.contenido {
  width: auto;
  overflow: hidden;
  padding-left: 0px;
  padding-right: 0px;
  text-align: justify;
}
.contenido span {
  text-align: justify !important;
  color: #000 !important;
  font-size: 0.9375rem !important;
}
.contenido p {
  text-align: justify;
  margin: 0 0 0rem 0;
  padding: 0;
}
.contenido hr {
  max-width: 100%;
}
.contenido a {
  text-decoration: none;
  color: #e86b0e;
}
.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;
  list-style: url(img/vineta-contenido.png);
  background-color: transparent;
  color: #000;
}
.contenido ul li {
  text-align: left;
  margin-left: 23px;
  margin-bottom: 0.55rem;
}
.contenido ul li:last-child {
  margin-bottom: 0rem;
}
.contenido ul li a {
  text-decoration: none;
  color: #e86b0e;
}
.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%;
  padding: 10px;
}
.contenido table {
  width: 100%;
}
.contenido table thead tr th, .contenido table tbody tr td {
  color: #000;
  font-size: 0.77778rem;
}
.contenedor_contenido_centro_izqder {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}
.contenedor_contenido_centro {
  padding-top: 2.25rem;
  padding-bottom: 0rem;
}
.contenedor_izqder {
  padding-bottom: 1rem;
}
.contenedor_contenido_regresar {
  padding-top: 2.3rem;
  padding-bottom: 2.25rem;
}
.imagencentro-contenido {
  margin-bottom: 0.9375rem;
}
.contenedor_paginacion {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}
.triangulo-abajo {
  position: relative;
  bottom: 0%;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 0.9375rem solid transparent;
  border-right: 0.9375rem solid transparent;
  border-top: 1.563rem solid #e86b0e;
}
.separador-titulo {
  width: 50%;
  height: 0.15rem;
  background-color: #8aa62f;
  margin: 0 auto 2rem 0;
}
/*****************CONTACTENOS EN PG INTERNAS****************/
.contenedor-contactenos {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.contenedor-contactenos p {
  text-align: left;
  font-size: 0.9375rem;
}
/*****************ANIMACION VITRINA PROTAFOLIO****************/
.animate-opacity {
  animation: opac 1s;
}
@keyframes opac {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate-left {
  position: relative;
  animation: animateleft 0.8s;
}
@keyframes animateleft {
  from {
    left: -300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
/*****************COMPARTIR EN REDES SOCIALES****************/
.color-fondo {
  background-color: #fafafa;
}
.separador-compartir {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.separador-compartir .linea-verticalcomp {
  border-bottom: 0rem;
  border-right: 0.0625rem solid #cacaca;
}
.separador-compartir .linea-horizontalcomp {
  border-bottom: 0.0625rem solid #cacaca;
  padding-bottom: 0.9375rem;
}
.separador-compartir h3 {
  text-align: center;
  color: #2d2d2d;
  font-size: 1.55rem;
  border-bottom: 0rem;
  padding-bottom: 0rem;
  background: none;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.separador-compartir p {
  margin-bottom: 0rem;
}
.separador-compartir .button-all {
  font-size: 0.9375rem;
}
.contenedor-contactenos-centro {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding-top: 0rem;
}
/*******************+BOTON DE FONDO PARA VER TODOS, LLAMADO A LA ACCION Y REGRESAR****************/
.button-all {
  width: 100%;
  background-color: #e86b0e;
  text-transform: uppercase;
  border: 0;
  border-radius: 1.2rem;
  -webkit-border-radius: 1.2rem;
  -moz-border-radius: 1.2rem;
  -ms-border-radius: 1.2rem;
  -o-border-radius: 1.2rem;
  cursor: pointer;
  display: block;
  line-height: 1;
  margin: 0.9375rem 0rem 0.9375rem 0rem;
  padding: 0.9375rem 1rem;
  text-align: center;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  -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: #fafafa;
  background-color: #4d4d4d;
  -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;
}
/*================BOTONES PARA SUBIR Y BAJAR LA PÁGINA=================*/
a#top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  display: none;
  z-index: 1000;
}
a#bottom {
  position: fixed;
  right: 60px;
  bottom: 15px;
  display: none;
  z-index: 1000;
}
.bto-subirbajar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  line-height: 0px;
  border-radius: 100%;
  border: 3px solid rgba(106, 106, 106, 0.98);
  background-image: radial-gradient(circle at 52.16% 25.35%, #fba332 0, #f8942a 16.67%, #f2811e 33.33%, #e86b0e 50%, #de5300 66.67%, #d63b00 83.33%, #d11f04 100%);
  font-weight: 400;
  font-size: 20px;
  text-decoration: none;
  text-align: center;
  color: #333;
  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;
}
.bto-subirbajar .style-arrows {
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.75);
}
.bto-subirbajar:hover {
  color: #121212;
  filter: drop-shadow(0 0 0.25rem #424242);
  -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;
}
/***ESPACIOS ARRIBA Y ABAJO DE TODOS LOS CONTENIDOS DEL SITIO****/
.contenedor_contenido_izqder {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
/*************************TÍTULOS PÁGINAS INTERNAS AMPLIADAS E INDICES CON FOTO***************/
.fondo-horizontal-titulos {
  padding: 9rem 0rem 0rem 0rem;
  /*************************TÍTULO PÁGINA CONTENIDOS VARIOS***************/
}
.fondo-horizontal-titulos .titulo-seccion {
  font-weight: 700;
  font-size: 1.8rem;
  padding: 0rem 0rem 0rem 0rem;
  margin: 0rem 0rem 1.5rem 0rem;
  text-align: left;
  color: #121212;
  text-transform: uppercase;
}
.fondo-horizontal-titulos .titulo-seccion h1 {
  display: none;
}
.fondo-horizontal-titulos h1 .triangulo-abajo-left {
  position: relative;
  bottom: 0%;
  margin: 0 auto 0 0;
  width: 0;
  height: 0;
  border-left: 0.9375rem solid transparent;
  border-right: 0.9375rem solid transparent;
  border-top: 1.563rem solid #e86b0e;
}
.fondo-horizontal-titulos p {
  line-height: 2rem;
  text-align: left;
  margin-bottom: 0.9375rem;
}
.fondo-horizontal-titulos h1.varios {
  font-weight: 700;
  font-size: 1.8rem;
  padding: 0rem 0rem 0rem 0rem;
  margin: 0rem 0rem 1.5rem 0rem;
  text-align: left;
  color: #121212;
  text-transform: uppercase;
}
/*************************TÍTULOS PÁGINAS INTERNAS AMPLIADAS E INDICES SIN FOTO***************/
.fondo-horizontal-titulos-sinfoto {
  padding: 9rem 0rem 2rem 0rem;
}
.fondo-horizontal-titulos-sinfoto .titulo-seccion {
  font-weight: 700;
  font-size: 2.25rem;
  padding: 0rem 0rem 0rem 0rem;
  margin: 0rem 0rem 1.5rem 0rem;
  text-align: center;
  color: #121212;
  text-transform: uppercase;
}
.fondo-horizontal-titulos-sinfoto h1 {
  font-size: 1.8rem;
  text-align: center;
  margin: 0rem 0px 2rem 0px;
}
.fondo-horizontal-titulos-sinfoto h1 .triangulo-abajo-proyamp {
  position: relative;
  bottom: 0%;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 0.9375rem solid transparent;
  border-right: 0.9375rem solid transparent;
  border-top: 1.563rem solid #e86b0e;
}
.fondo-horizontal-titulos-sinfoto p {
  line-height: 2rem;
  text-align: center;
  margin-bottom: 0.9375rem;
}
/*=========================PAGINACIÓN=====================*/
.pagination {
  margin-left: 0;
  margin-bottom: 0rem;
}
.pagination::before, .pagination::after {
  content: ' ';
  display: table;
}
.pagination::after {
  clear: both;
}
.pagination li {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-right: 0.25rem;
  border-radius: 3px;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.5);
}
.pagination li:last-child, .pagination li:first-child {
  display: inline-block;
}
.pagination a, .pagination button {
  color: #fff;
  display: block;
  padding: 0.1875rem 0.625rem;
  border-radius: 3px;
  border: 0.0625rem dashed #fff;
  background-color: #737373;
  -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 {
  background: #262626;
  -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;
  background: #e86b0e;
  color: #fefefe;
  cursor: default;
}
.pagination .disabled {
  padding: 0.1875rem 0.625rem;
  color: #cacaca;
  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;
}
.mostrarvemerg {
  display: block;
  animation-name: mventanaemergente;
  animation-duration: 4s;
}
.ocultarvemerg {
  display: none;
}
/* Codigo de la animación */
@keyframes mventanaemergente {
  0% {
    bottom: -100px;
  }
  100% {
    bottom: 0px;
  }
}
#ventanaemergente {
  width: 100%;
  background-color: #000;
  color: #fff;
  position: fixed;
  bottom: 0px;
  right: 0px;
  padding: 15px;
  font-size: 18px;
  opacity: 0.9;
  z-index: 9999999999 !important;
}
#ventanaemergente .separadorvertical {
  border-right: 0.0625rem solid rgba(255, 255, 255, 0.20);
  border-bottom: 0;
}
#ventanaemergente h2 {
  color: #fff;
  font-size: 1rem;
  text-align: left;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}
#ventanaemergente p {
  text-align: justify;
  font-size: 0.85rem;
}
#ventanaemergente .button {
  background-color: #e86b0e;
  border-radius: 0.1rem;
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  -ms-border-radius: 0.1rem;
  -o-border-radius: 0.1rem;
  line-height: 1;
  margin: 0rem 0rem 0rem 0rem;
  padding: 0.75rem 1rem;
  text-align: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  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;
}
#ventanaemergente a.button:hover, #ventanaemergente a.button:focus {
  color: #fff;
  background-color: #405f6c;
  filter: drop-shadow(0 0 0.15rem #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;
}
/*.dark-mode {
 background: #000 !important;
 color:#FFF !important;
 .part_header {
 background-color:transparent !important;
 .logo {
 img {
 filter: grayscale(100%);
 }
 }
 }
 h6 {
 color:#FFF !important;
 }
 h2 {
 color:#333 !important;
 }
 .sv-dgrafico-izq,
 .sv-ddesarolloweb-izq,
 .sv-tvirtual-izq,
 .sv-ccursos-der,
 .sv-rsociales-der,
 .sv-cdigitales-der,
 .triangulo-abajo,
 .animacion-iconoad {
 filter: grayscale(100%);
 }
 .contenedor-servicios-home-izq, .contenedor-servicios-home-der {
 p{
 color:#333;
 }
 }
 .color1, .color2, .color3 {
 filter: grayscale(100%);
 }
 .regular {
 img {
 filter: grayscale(100%);
 }
 }
 }*/
/*******************SECCION NAVIDAD 2023************************/
/**************************************************************/
/*================INICIO - ESTILOS CONFIGURABLES PARA LA ZONA DE CARRITO COMPRA=================*/
.reveal.large {
  background-color: #fff;
  border: 0.0625rem solid #f4f4f4;
  border-radius: 0.85rem;
}
.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: #ec661d;
  -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: #424242;
  -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;
}
#emergenteRGPD {
  width: 100%;
  background-color: #000;
  color: #fff;
  position: fixed;
  bottom: 0px;
  right: 0px;
  padding: 15px;
  font-size: 18px;
  opacity: 0.9;
  z-index: 9999999999 !important;
}
#emergenteRGPD .separadorvertical {
  border-right: 0.0625rem solid rgba(255, 255, 255, 0.20);
  border-bottom: 0;
}
#emergenteRGPD h2 {
  color: #fff;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}
#emergenteRGPD p {
  text-align: justify;
  font-size: 0.85rem;
}
#emergenteRGPD .button-all {
  background-color: #121212;
  border-radius: 0.1rem;
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  -ms-border-radius: 0.1rem;
  -o-border-radius: 0.1rem;
  line-height: 1;
  margin: 0rem;
  padding: 0.75rem 1rem;
  text-align: center;
  color: #3fcf00;
  font-size: 0.8rem;
  font-weight: 700;
  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;
}
#emergenteRGPD a.button-all:hover, #emergenteRGPD a.button-all:focus {
  color: #fff;
  filter: drop-shadow(0 0 0.15rem #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;
}
/*================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: #eee;
  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: #eee;
  -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: #f7f7f7;
  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;
  -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: transparent;
  -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: #fcf5ed;
  border-bottom-left-radius: 0.35rem;
  border-bottom-right-radius: 0.35rem;
  -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: #1c1712;
  -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: #fbc812;
  -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: #fafafa;
}
.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;
  background: #000;
  -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: #393939;
  border-radius: 0.35rem;
  -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: #fff;
}
.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: #e1e1e1 solid 6px;
  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: #e1e1e1 solid 4px;
  top: -12px;
  right: -12px;
  bottom: -12px;
  left: -12px;
  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: #fff;
  height: 3px;
  -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: #472e29;
  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-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: #121311;
  height: 4px;
  -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: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 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(-5px);
  transform: translateY(-5px);
  /* 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(5px);
  transform: translateY(5px);
  /* 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: 20px 20px 0 20px;
  border-color: #e86b0e 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(20px);
  transform: translateY(20px);
}
/* 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;
}
/* 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 {
  background-color: transparent;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  /****************+BOTONES DE ACCESIBILIDAD**************/
  /****************+BOTONES DE ACCESIBILIDAD**************/
  /****************ESTILOS MULTINIVEL************************/
  /****************ESTILOS MULTINIVEL************************/
}
.part_header .btoaccesibilidad {
  padding: 0.25rem;
  text-align: center;
}
.part_header .btoaccesibilidad .font-control {
  filter: drop-shadow(0 0 0rem #424242);
  -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 .btoaccesibilidad .font-control:hover {
  cursor: pointer;
  filter: drop-shadow(0 0 0.01rem #424242);
  -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 .btoaccesibilidad i {
  filter: drop-shadow(0 0 0rem #424242);
  -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 .btoaccesibilidad i:hover {
  cursor: pointer;
  filter: drop-shadow(0 0 0.075rem #424242);
  -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 .logo {
  opacity: 1;
  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_header .logo:hover {
  filter: drop-shadow(0 0 0.1rem #cacaca);
  -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 .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.4s ease-in-out;
}
.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: #424242;
  text-transform: uppercase;
  background-color: #ff5a00;
  transition: background-color 0.4s ease-in-out;
  cursor: pointer;
}
.part_header .nav-bar .offcanvas-trigger:hover {
  background-color: #dc4d00;
}
.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: #262626;
  padding: 1.25rem 1.5rem 1.25rem 1.15rem;
  box-shadow: inset 13px 0 20px -13px rgba(232, 232, 232, 0.5);
}
.part_header .multilevel-offcanvas > .menu {
  margin-bottom: 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.9375rem;
  text-transform: uppercase;
}
.part_header .multilevel-offcanvas .menu a {
  color: #fff;
  padding: 0.75rem 0;
  transition: color 0.4s ease-in-out;
}
.part_header .multilevel-offcanvas .menu a:hover {
  color: #f98e42;
  transition: color 0.4s ease-in-out;
}
.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.4s ease-in-out;
}
.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 {
    position: static;
    z-index: 0;
  }
  .part_header .boton-menu-movil {
    display: block;
  }
  .part_header .off-canvas-content.is-open-right.has-transition-push {
    -webkit-transform: translateX(-245px);
    -ms-transform: translateX(-245px);
    transform: translateX(-245px);
  }
  .part_header .off-canvas-content.is-open-right.has-transition-push .nav-bar .offcanvas-trigger {
    width: 50px;
    height: 40px;
    background-color: #fa5800;
    -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 .off-canvas-content.is-open-right.has-transition-push .hamburger .line {
    background-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 .off-canvas-content.is-open-right.has-transition-push .hamburger .line:nth-child(1) {
    -webkit-transform: translateY(5px) rotate(-45deg);
    -ms-transform: translateY(5px) rotate(-45deg);
    transform: translateY(5px) rotate(-45deg);
  }
  .part_header .off-canvas-content.is-open-right.has-transition-push .hamburger .line:nth-child(2) {
    background-color: transparent;
  }
  .part_header .off-canvas-content.is-open-right.has-transition-push .hamburger .line:nth-child(3) {
    -webkit-transform: translateY(-6px) rotate(45deg);
    -ms-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
  }
  .part_header .is-accordion-submenu-parent ul {
    list-style-type: none;
    margin-left: 0rem;
  }
  .part_header .is-accordion-submenu-parent ul li {
    background-color: transparent;
    padding: 0 0.35rem 0 0.3rem;
  }
  .part_header .is-accordion-submenu-parent ul li a {
    padding: 0px;
    display: block;
    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;
  }
  .part_header .is-accordion-submenu-parent ul 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_header .multilevel-offcanvas .is-accordion-submenu-parent > a::after {
    position: relative;
    display: block;
    right: -101%;
    top: -13px;
    width: 0;
    height: 0;
    border: inset 6px;
    border-top-style: inset;
    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-bottom-width: 6px;
    border-bottom-color: currentcolor;
    border-left-color: currentcolor;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #e08516 transparent transparent;
  }
  .part_header .is-accordion-submenu-parent[aria-expanded="true"] > a::after {
    position: relative;
    display: block;
    right: -101%;
    top: -13px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  .part_header .is-accordion-submenu-parent[aria-expanded="true"] > a {
    color: #e08516;
  }
}
/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .part_header {
    position: static;
    z-index: 0;
  }
  .part_header .boton-menu-movil {
    display: block;
  }
  .part_header .off-canvas-content.is-open-right.has-transition-push {
    -webkit-transform: translateX(-250px);
    -ms-transform: translateX(-250px);
    transform: translateX(-250px);
  }
  .part_header .off-canvas-content.is-open-right.has-transition-push .nav-bar .offcanvas-trigger {
    width: 50px;
    height: 40px;
    background-color: #fa5800;
    -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 .off-canvas-content.is-open-right.has-transition-push .hamburger .line {
    background-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 .off-canvas-content.is-open-right.has-transition-push .hamburger .line:nth-child(1) {
    -webkit-transform: translateY(5px) rotate(-45deg);
    -ms-transform: translateY(5px) rotate(-45deg);
    transform: translateY(5px) rotate(-45deg);
  }
  .part_header .off-canvas-content.is-open-right.has-transition-push .hamburger .line:nth-child(2) {
    background-color: transparent;
  }
  .part_header .off-canvas-content.is-open-right.has-transition-push .hamburger .line:nth-child(3) {
    -webkit-transform: translateY(-6px) rotate(45deg);
    -ms-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
  }
  .part_header .is-accordion-submenu-parent ul {
    list-style-type: none;
    margin-left: 0rem;
  }
  .part_header .is-accordion-submenu-parent ul li {
    background-color: transparent;
    padding: 0 0.35rem 0 0.3rem;
  }
  .part_header .is-accordion-submenu-parent ul li a {
    padding: 0px;
    display: block;
    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;
  }
  .part_header .is-accordion-submenu-parent ul 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_header .multilevel-offcanvas .is-accordion-submenu-parent > a::after {
    position: relative;
    display: block;
    right: -101%;
    top: -13px;
    width: 0;
    height: 0;
    border: inset 6px;
    border-top-style: inset;
    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-bottom-width: 6px;
    border-bottom-color: currentcolor;
    border-left-color: currentcolor;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #e08516 transparent transparent;
  }
  .part_header .is-accordion-submenu-parent[aria-expanded="true"] > a::after {
    position: relative;
    display: block;
    right: -101%;
    top: -13px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  .part_header .is-accordion-submenu-parent[aria-expanded="true"] > a {
    color: #e08516;
  }
}
/***************MEDIA QUERIES*****************/
.part_slider {
  background-color: #fff;
  position: relative;
  /**********BULLETS URANUS***********/
  /****BARRA DE PROGRESO*********/
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.part_slider .uranus .tp-bullet {
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  background: transparent;
}
.part_slider .uranus .tp-bullet.selected, .part_slider .uranus .tp-bullet:hover {
  box-shadow: 0 0 0 2px #ff5a00;
  border: none;
  border-radius: 50%;
  background: transparent;
}
.part_slider .uranus .tp-bullet-inner {
  background-color: rgba(255, 90, 0, 0.7);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
  border-radius: 50%;
  background-color: #fff;
  background-color: rgba(255, 90, 0, 0.3);
  text-indent: -999em;
  cursor: pointer;
  position: absolute;
}
.part_slider .uranus .tp-bullet.selected .tp-bullet-inner, .part_slider .uranus .tp-bullet:hover .tp-bullet-inner {
  transform: scale(0.4);
  -webkit-transform: scale(0.4);
  background-color: #8d8789;
}
.part_slider .tp-bannertimer {
  background: rgba(159, 159, 159, 0.80);
}
.part_slider_ccursos {
  background-color: #fff;
  position: relative;
  /**********BULLETS URANUS***********/
  /****BARRA DE PROGRESO*********/
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.part_slider_ccursos .uranus .tp-bullet {
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  background: transparent;
}
.part_slider_ccursos .uranus .tp-bullet.selected, .part_slider_ccursos .uranus .tp-bullet:hover {
  box-shadow: 0 0 0 2px #ff5a00;
  border: none;
  border-radius: 50%;
  background: transparent;
}
.part_slider_ccursos .uranus .tp-bullet-inner {
  background-color: rgba(255, 90, 0, 0.7);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
  border-radius: 50%;
  background-color: #fff;
  background-color: rgba(255, 90, 0, 0.3);
  text-indent: -999em;
  cursor: pointer;
  position: absolute;
}
.part_slider_ccursos .uranus .tp-bullet.selected .tp-bullet-inner, .part_slider_ccursos .uranus .tp-bullet:hover .tp-bullet-inner {
  transform: scale(0.4);
  -webkit-transform: scale(0.4);
  background-color: #8d8789;
}
.part_slider_ccursos .tp-bannertimer {
  background: rgba(159, 159, 159, 0.80);
}
.rsocial {
  position: fixed;
  /* Hacemos que la posición en pantalla sea fija para que siempre se muestre en pantalla*/
  right: 0.75rem;
  top: 31.7%;
  /* Establecemos la barra en la derecha */
  /* Bajamos la barra 200px de arriba a abajo */
  z-index: 999;
  /* Utilizamos la propiedad z-index para que no se superponga algún otro elemento como sliders, galerías, etc */
  display: block;
  width: auto;
  /****MEDIA QUERIES*****/
  /* Small only */
  /****MEDIA QUERIES*****/
}
.rsocial .tooltip-elemento {
  position: relative;
}
.rsocial .tooltipc {
  display: none;
  position: fixed;
  z-index: 100;
  top: 30.8%;
  right: 90px;
}
.rsocial .estilo-tooltip {
  width: 200px;
  padding: 10px;
  margin: 0 0 0px 0;
  background: #262626;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  border-radius: 5px;
}
.rsocial .cuadrado {
  position: absolute;
  top: 42%;
  right: -6px;
  z-index: 100;
  border-top: 0px solid #262626;
  border-right: 0px solid #262626;
  border-bottom: 0;
  border-left: 0;
  background: #262626;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 12px;
  height: 12px;
}
.rsocial .boton-rsociales {
  position: relative;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  background-color: #6a6a6a;
  font-size: 30px;
  text-align: center;
  z-index: 1000;
  padding: 0;
  margin: 0 0 0.625rem 0;
  line-height: 0;
  color: #fff;
  -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;
}
.rsocial .boton-rsociales:hover {
  background-color: #515151;
  cursor: pointer;
  -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;
}
.rsocial ul {
  width: auto;
  padding: 0rem !important;
  margin: 0rem !important;
  list-style: none;
}
.rsocial ul li {
  text-align: center;
  margin-bottom: 0.3rem;
}
.rsocial ul li a img {
  opacity: 1;
  -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;
}
.rsocial ul li a img:hover {
  opacity: 0.85;
  -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;
}
.rsocial ul li img {
  opacity: 1;
  -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;
}
.rsocial ul li img:hover {
  opacity: 0.85;
  -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) {
  .rsocial {
    display: none;
  }
}
.ws-flotante {
  position: fixed;
  /* Hacemos que la posición en pantalla sea fija para que siempre se muestre en pantalla*/
  right: 0.75rem;
  /* Establecemos la barra en la derecha */
  top: 20%;
  /* Bajamos la barra 200px de arriba a abajo */
  z-index: 1000;
  /* Utilizamos la propiedad z-index para que no se superponga algún otro elemento como sliders, galerías, etc */
  display: block;
  width: auto;
  /**************************UBICACIÓN TOOLTIPS***************/
  /****CAJON LABEL FLOTANTE********/
  /****CAJON LABEL********/
  /********+FLECHITA CAJÓN LABEL*********/
}
.ws-flotante .tooltipwesc-elemento {
  position: relative;
}
.ws-flotante .tooltipwesc {
  display: none;
  position: fixed;
  z-index: 100;
  top: 19%;
  right: 90px;
}
.ws-flotante .estilo-tooltipwesc {
  width: 200px;
  padding: 10px;
  margin: 0 0 0px 0;
  background: #262626;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  border-radius: 5px;
}
.ws-flotante .cuadrado {
  position: absolute;
  top: 42%;
  right: -6px;
  z-index: 100;
  border-top: 0px solid #262626;
  border-right: 0px solid #262626;
  border-bottom: 0;
  border-left: 0;
  background: #262626;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 12px;
  height: 12px;
}
.ws-flotante .boton-whatsapp {
  position: relative;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  background-color: #128c7e;
  font-size: 30px;
  text-align: center;
  z-index: 1000;
  padding: 0;
  margin: 0 0 0.625rem 0;
  line-height: 0;
  color: #fff;
  -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;
}
.ws-flotante .boton-whatsapp:hover {
  background-color: #075e54;
  cursor: pointer;
  -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;
}
.ws-flotante #contenedor-ws-escritorio {
  width: auto;
  padding: 0.9375rem;
  background-color: #dcf8c6;
  border-radius: 0.35rem;
  -webkit-border-radius: 0.35rem;
  -moz-border-radius: 0.35rem;
  -ms-border-radius: 0.35rem;
  -o-border-radius: 0.35rem;
  box-shadow: 0px 0px 7px 2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 7px 2px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 0px 0px 7px 2px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0px 0px 7px 2px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 7px 2px rgba(0, 0, 0, 0.5);
}
.ws-flotante #contenedor-ws-escritorio a {
  display: block;
  padding: 0.55rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 600;
  text-align: left;
  background-color: #25d366;
  border: 0.125rem solid #fafafa;
  filter: drop-shadow(0 0 0 #424242);
  border-radius: 0.55rem;
  -webkit-border-radius: 0.55rem;
  -moz-border-radius: 0.55rem;
  -ms-border-radius: 0.55rem;
  -o-border-radius: 0.55rem;
  -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;
}
.ws-flotante #contenedor-ws-escritorio a .size-i {
  font-size: 2rem;
  vertical-align: middle;
  margin-right: 0.25rem;
}
.ws-flotante #contenedor-ws-escritorio a:hover {
  color: #f1f1f1;
  filter: drop-shadow(0 0 0.15rem #424242);
  -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;
}
.ws-flotante #contenedor-ws-escritorio a:last-child {
  margin-bottom: 0rem;
}
.ws-flotante a {
  color: #000;
  text-decoration: none;
}
.ws-flotante a img {
  max-width: 30px;
  max-height: 30px;
  opacity: 1;
  margin-bottom: 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;
}
.ws-flotante a img:hover {
  opacity: 0.85;
  -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 HORIZONTAL*******************/
  font-family: 'Lato', 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: 1rem;
  color: #000;
}
.part_menu .top-bar, .part_menu .top-bar ul {
  background-color: transparent;
  padding: 0rem;
  justify-content: flex-end;
}
.part_menu .top-bar {
  padding: 0px;
  height: auto;
}
.part_menu .top-bar .menu {
  height: auto;
  text-align: right;
}
.part_menu .top-bar .menu li {
  height: auto;
}
.part_menu .top-bar .menu li a {
  text-transform: uppercase;
  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;
  font-size: 1rem;
  font-weight: 700;
}
.part_menu .top-bar .menu li a:hover {
  color: #ff5a00;
  -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: 1rem 0.5rem;
  line-height: 1;
  background-color: transparent;
}
.part_menu .menu > li > a:hover {
  color: inherit;
}
.part_menu .submenu > li > a {
  display: block;
  padding: 1rem 0.5rem;
  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: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  text-transform: uppercase;
  padding: 0.75rem 0.9375rem;
  background-color: transparent;
  color: #000;
  /*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(228, 227, 227, 0.91);
  color: #ff5a00;
  /*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: 290px;
  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: 1rem;
    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 #9d9f9e;
  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: 1rem;
    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(255, 255, 255, 0.91);
    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(255, 255, 255, 0.91);
    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 6px;
    border-color: #000 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 9px;
    margin-top: -3px;
  }
  .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_servicios_home {
  padding: 0rem 0rem 0rem 0rem;
  /***********COLUMNA IZQUIERDA SERVICIOS HOME***********/
  /***********COLUMNA DERECHA SERVICIOS HOME***********/
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.part_servicios_home h6 .triangulo-abajo {
  position: relative;
  bottom: 0%;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 0.9375rem solid transparent;
  border-right: 0.9375rem solid transparent;
  border-top: 1.563rem solid #e86b0e;
}
.part_servicios_home .icono-adnet {
  text-align: center;
  padding-bottom: 0rem;
}
.part_servicios_home .icono-adnet img {
  max-width: 100%;
  max-height: 100%;
}
.part_servicios_home .animacion-iconoad {
  animation-name: girariconoad;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 12s;
  animation-delay: 5s;
  -o-animation-name: girariconoad;
  -o-animation-iteration-count: infinite;
  -o-animation-direction: alternate;
  -o-animation-duration: 12s;
  animation-delay: 5s;
  -webkit-animation-name: girariconoad;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  -webkit-animation-duration: 12s;
  animation-delay: 5s;
  -moz-animation-name: girariconoad;
  -moz-animation-iteration-count: infinite;
  -moz-animation-direction: alternate;
  -moz-animation-duration: 12s;
  animation-delay: 5s;
  -ms-animation-name: girariconoad;
  -ms-animation-iteration-count: infinite;
  -ms-animation-direction: alternate;
  -ms-animation-duration: 12s;
  animation-delay: 5s;
}
@keyframes girariconoad {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@-o-keyframes girariconoad {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@-moz-keyframes girariconoad {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes girariconoad {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@-ms-keyframes girariconoad {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.part_servicios_home .contenedor-servicios-home-izq {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
  border-top-left-radius: 2.65rem;
  border-top-right-radius: 1.25rem;
  border-bottom-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  box-shadow: 5px 5px 1px -3px #9ca9b8;
  -moz-box-shadow: 5px 5px 1px -3px #9ca9b8;
  -ms-box-shadow: 5px 5px 1px -3px #9ca9b8;
  -o-box-shadow: 5px 5px 1px -3px #9ca9b8;
  -webkit-box-shadow: 5px 5px 1px -3px #9ca9b8;
  position: relative;
  /*******CONTENEDOR BOTON AMPALIR SERVICIOS*********/
  /*******************BOTON AMPALIR SERVICIO****************/
}
.part_servicios_home .contenedor-servicios-home-izq h2 {
  padding-left: 5.4rem;
  font-size: 1.5rem;
  text-transform: none;
  line-height: 1.8;
  margin-bottom: 0rem;
}
.part_servicios_home .contenedor-servicios-home-izq p {
  margin-top: 2rem;
  padding: 0 1.25rem;
  text-align: left;
}
.part_servicios_home .contenedor-servicios-home-izq .bot-regresar {
  font-weight: 500;
  margin: 0rem;
  padding: 0.25rem 0.65rem;
  font-size: 1rem;
  font-style: normal;
  text-align: center;
  width: 100%;
  text-transform: none;
  border-radius: 2rem;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
  -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-color: #6a6a6a;
  border: 0.125rem solid #9f9f9f;
}
.part_servicios_home .contenedor-servicios-home-izq .bot-regresar:hover {
  -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-color: #9f9f9f;
  border: 0.125rem solid #6a6a6a;
}
.part_servicios_home .contenedor-servicios-home-izq .boton-ver-all {
  margin: 0.75rem 0.9375rem 0 0.9375rem;
  padding: 0rem;
  border-radius: 2rem;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
  background: transparent;
}
.part_servicios_home .contenedor-servicios-home-izq .boton-ver-all 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_servicios_home .contenedor-servicios-home-izq .boton-ver-all 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_servicios_home .sv-dgrafico-izq {
  background: none #fff;
  height: auto;
}
.part_servicios_home .sv-dgrafico-izq h2 {
  color: #e86b0e;
}
.part_servicios_home .sv-dgrafico-izq .flecha-izq-dgrafico {
  width: auto;
  position: absolute;
  right: -30px;
  top: 32%;
  width: 30px;
  height: 74px;
  text-align: center;
}
.part_servicios_home .sv-ddesarolloweb-izq {
  background: none #fff;
  height: auto;
}
.part_servicios_home .sv-ddesarolloweb-izq h2 {
  color: #2b94ae;
}
.part_servicios_home .sv-ddesarolloweb-izq .flecha-izq-ddesarolloweb {
  width: auto;
  position: absolute;
  right: -30px;
  top: 32%;
  width: 30px;
  height: 74px;
  text-align: center;
}
.part_servicios_home .sv-tvirtual-izq {
  background: none #fff;
  height: auto;
}
.part_servicios_home .sv-tvirtual-izq h2 {
  color: #2bae43;
}
.part_servicios_home .sv-tvirtual-izq .flecha-izq-tvirtual {
  width: auto;
  position: absolute;
  right: -30px;
  top: 32%;
  width: 30px;
  height: 74px;
  text-align: center;
}
.part_servicios_home .contenedor-servicios-home-der {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 2.65rem;
  border-bottom-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  box-shadow: -5px 5px 1px -3px #9ca9b8;
  -moz-box-shadow: -5px 5px 1px -3px #9ca9b8;
  -ms-box-shadow: -5px 5px 1px -3px #9ca9b8;
  -o-box-shadow: -5px 5px 1px -3px #9ca9b8;
  -webkit-box-shadow: -5px 5px 1px -3px #9ca9b8;
  position: relative;
  /*******CONTENEDOR BOTON SERVICIOS*********/
  /*******************BOTON AMPALIR SERVICIOS****************/
}
.part_servicios_home .contenedor-servicios-home-der h2 {
  text-align: right;
  padding-right: 5.4rem;
  font-size: 1.5rem;
  text-transform: none;
  line-height: 1.8;
  margin-bottom: 0rem;
}
.part_servicios_home .contenedor-servicios-home-der p {
  margin-top: 2rem;
  padding: 0 1.25rem;
  text-align: right;
}
.part_servicios_home .contenedor-servicios-home-der .bot-regresar {
  font-weight: 500;
  margin: 0rem 0 0 0;
  padding: 0.25rem 0.65rem;
  font-size: 1rem;
  font-style: normal;
  text-align: center;
  width: 100%;
  text-transform: none;
  border-radius: 2rem;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
  -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-color: #6a6a6a;
  border: 0.125rem solid #9f9f9f;
}
.part_servicios_home .contenedor-servicios-home-der .bot-regresar:hover {
  -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-color: #9f9f9f;
  border: 0.125rem solid #6a6a6a;
}
.part_servicios_home .contenedor-servicios-home-der .boton-ver-all {
  margin: 0.75rem 0.9375rem 0 0.9375rem;
  padding: 0rem;
  border-radius: 2rem;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
  background: transparent;
}
.part_servicios_home .contenedor-servicios-home-der .boton-ver-all 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_servicios_home .contenedor-servicios-home-der .boton-ver-all 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_servicios_home .sv-ccursos-der {
  background: none #fff;
  height: auto;
}
.part_servicios_home .sv-ccursos-der h2 {
  color: #ff002f;
}
.part_servicios_home .sv-ccursos-der .flecha-der-ccursos {
  width: auto;
  position: absolute;
  left: -30px;
  top: 32%;
  width: 1.875rem;
  height: 4.625rem;
  text-align: center;
}
.part_servicios_home .sv-rsociales-der {
  background: none #fff;
  height: auto;
}
.part_servicios_home .sv-rsociales-der h2 {
  color: #2ed3fb;
}
.part_servicios_home .sv-rsociales-der .flecha-der-rsociales {
  width: auto;
  position: absolute;
  left: -30px;
  top: 32%;
  width: 1.875rem;
  height: 4.625rem;
  text-align: center;
}
.part_servicios_home .sv-cdigitales-der {
  background: none #fff;
  height: auto;
}
.part_servicios_home .sv-cdigitales-der h2 {
  color: #11c39b;
}
.part_servicios_home .sv-cdigitales-der .flecha-der-cdigitales {
  width: auto;
  position: absolute;
  left: -30px;
  top: 32%;
  width: 1.875rem;
  height: 4.625rem;
  text-align: center;
}
@media screen and (max-width: 39.9375em) {
  .part_servicios_home {
    /***********COLUMNA IZQUIERDA SERVICIOS HOME***********/
    /***********COLUMNA IZQUIERDA SERVICIOS HOME***********/
    /***********COLUMNA DERECHA SERVICIOS HOME***********/
    /***********COLUMNA DERECHA SERVICIOS HOME***********/
  }
  .part_servicios_home .icono-adnet {
    text-align: center;
    vertical-align: middle;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 0rem;
  }
  .part_servicios_home .icono-adnet img {
    max-width: 65%;
    max-height: 65%;
  }
  .part_servicios_home .contenedor-servicios-home-izq {
    margin-bottom: 3rem;
    position: relative;
  }
  .part_servicios_home .contenedor-servicios-home-izq h2 {
    padding-left: 5rem;
    font-size: 1.375rem;
    text-transform: none;
  }
  .part_servicios_home .contenedor-servicios-home-izq p {
    margin-top: 2rem;
    padding: 0 1.25rem;
    text-align: left;
  }
  .part_servicios_home .sv-dgrafico-izq {
    height: 280px;
  }
  .part_servicios_home .sv-dgrafico-izq .flecha-izq-dgrafico {
    width: auto;
    position: absolute !important;
    left: 50%;
    top: 16.14rem;
    width: 1.875rem;
    height: 4.625rem;
    text-align: center;
    transform: rotate(90deg);
  }
  .part_servicios_home .sv-ddesarolloweb-izq {
    height: 310px;
  }
  .part_servicios_home .sv-ddesarolloweb-izq .flecha-izq-ddesarolloweb {
    width: auto;
    position: absolute;
    left: 50%;
    top: 18rem;
    width: 1.875rem;
    height: 4.625rem;
    text-align: center;
    transform: rotate(90deg);
  }
  .part_servicios_home .sv-tvirtual-izq {
    height: 280px;
  }
  .part_servicios_home .sv-tvirtual-izq .flecha-izq-tvirtual {
    width: auto;
    position: absolute;
    left: 50%;
    top: 16.14rem;
    width: 1.875rem;
    height: 4.625rem;
    text-align: center;
    transform: rotate(90deg);
  }
  .part_servicios_home .contenedor-servicios-home-der {
    margin-top: 3rem;
    margin-bottom: 0rem;
    box-shadow: -5px -5px 1px -3px #9ca9b8;
    -moz-box-shadow: -5px -5px 1px -3px #9ca9b8;
    -ms-box-shadow: -5px -5px 1px -3px #9ca9b8;
    -o-box-shadow: -5px -5px 1px -3px #9ca9b8;
    -webkit-box-shadow: -5px -5px 1px -3px #9ca9b8;
    position: relative;
  }
  .part_servicios_home .contenedor-servicios-home-der h2 {
    text-align: right;
    padding-right: 5rem;
    font-size: 1.375rem;
    text-transform: none;
  }
  .part_servicios_home .contenedor-servicios-home-der p {
    margin-top: 2rem;
    padding: 0 1.25rem;
    text-align: right;
  }
  .part_servicios_home .sv-ccursos-der {
    height: auto;
  }
  .part_servicios_home .sv-ccursos-der .flecha-der-ccursos {
    width: auto;
    position: absolute;
    left: 50%;
    top: -3.25rem;
    width: 1.875rem;
    height: 4.625rem;
    text-align: center;
    transform: rotate(90deg);
  }
  .part_servicios_home .sv-rsociales-der {
    height: auto;
  }
  .part_servicios_home .sv-rsociales-der .flecha-der-rsociales {
    width: auto;
    position: absolute;
    left: 50%;
    top: -3.25rem;
    width: 1.875rem;
    height: 4.625rem;
    text-align: center;
    transform: rotate(90deg);
  }
  .part_servicios_home .sv-cdigitales-der {
    height: auto;
  }
  .part_servicios_home .sv-cdigitales-der .flecha-der-cdigitales {
    width: auto;
    position: absolute;
    left: 50%;
    top: -3.25rem;
    width: 1.875rem;
    height: 4.625rem;
    text-align: center;
    transform: rotate(90deg);
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .part_servicios_home {
    /***********COLUMNA IZQUIERDA SERVICIOS HOME***********/
    /***********COLUMNA IZQUIERDA SERVICIOS HOME***********/
    /***********COLUMNA DERECHA SERVICIOS HOME***********/
    /***********COLUMNA DERECHA SERVICIOS HOME***********/
  }
  .part_servicios_home .icono-adnet {
    text-align: center;
    vertical-align: middle;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 0rem;
  }
  .part_servicios_home .icono-adnet img {
    max-width: 100%;
    max-height: 100%;
  }
  .part_servicios_home .contenedor-servicios-home-izq {
    margin-bottom: 3rem;
    position: relative;
  }
  .part_servicios_home .contenedor-servicios-home-izq h2 {
    padding-left: 5rem;
    font-size: 1.375rem;
    text-transform: none;
  }
  .part_servicios_home .contenedor-servicios-home-izq p {
    margin-top: 2rem;
    padding: 0 1.25rem;
    text-align: left;
  }
  .part_servicios_home .sv-dgrafico-izq {
    height: 205px;
  }
  .part_servicios_home .sv-dgrafico-izq .flecha-izq-dgrafico {
    width: auto;
    position: absolute !important;
    left: 50%;
    top: 11.45rem;
    width: 1.875rem;
    height: 4.625rem;
    text-align: center;
    transform: rotate(90deg);
  }
  .part_servicios_home .sv-ddesarolloweb-izq {
    height: 205px;
  }
  .part_servicios_home .sv-ddesarolloweb-izq .flecha-izq-ddesarolloweb {
    width: auto;
    position: absolute;
    left: 50%;
    top: 11.45rem;
    width: 1.875rem;
    height: 4.625rem;
    text-align: center;
    transform: rotate(90deg);
  }
  .part_servicios_home .sv-tvirtual-izq {
    height: 205px;
  }
  .part_servicios_home .sv-tvirtual-izq .flecha-izq-tvirtual {
    width: auto;
    position: absolute;
    left: 50%;
    top: 11.45rem;
    width: 1.875rem;
    height: 4.625rem;
    text-align: center;
    transform: rotate(90deg);
  }
  .part_servicios_home .contenedor-servicios-home-der {
    margin-top: 3rem;
    margin-bottom: 0rem;
    box-shadow: -5px -5px 1px -3px #9ca9b8;
    -moz-box-shadow: -5px -5px 1px -3px #9ca9b8;
    -ms-box-shadow: -5px -5px 1px -3px #9ca9b8;
    -o-box-shadow: -5px -5px 1px -3px #9ca9b8;
    -webkit-box-shadow: -5px -5px 1px -3px #9ca9b8;
    position: relative;
  }
  .part_servicios_home .contenedor-servicios-home-der h2 {
    text-align: right;
    padding-right: 5rem;
    font-size: 1.375rem;
    text-transform: none;
  }
  .part_servicios_home .contenedor-servicios-home-der p {
    margin-top: 2rem;
    padding: 0 1.25rem;
    text-align: right;
  }
  .part_servicios_home .sv-ccursos-der {
    height: 205px;
  }
  .part_servicios_home .sv-ccursos-der .flecha-der-ccursos {
    width: auto;
    position: absolute;
    left: 50%;
    top: -3.25rem;
    width: 1.875rem;
    height: 4.625rem;
    text-align: center;
    transform: rotate(90deg);
  }
  .part_servicios_home .sv-rsociales-der {
    height: 205px;
  }
  .part_servicios_home .sv-rsociales-der .flecha-der-rsociales {
    width: auto;
    position: absolute;
    left: 50%;
    top: -3.25rem;
    width: 1.875rem;
    height: 4.625rem;
    text-align: center;
    transform: rotate(90deg);
  }
  .part_servicios_home .sv-cdigitales-der {
    height: 205px;
  }
  .part_servicios_home .sv-cdigitales-der .flecha-der-cdigitales {
    width: auto;
    position: absolute;
    left: 50%;
    top: -3.25rem;
    width: 1.875rem;
    height: 4.625rem;
    text-align: center;
    transform: rotate(90deg);
  }
}
.part_proydestacados_home {
  padding: 0rem;
  /******ZONA DE FILTROS******/
  /****MEDIA QUERIES*****/
  /* Small only */
  /*@media screen and (max-width: 39.9375em) {
   }*/
  /* Medium and up */
  /*@media screen and (min-width: 40em) {
   }*/
  /* Medium only */
  /*@media screen and (min-width: 40em) and (max-width: 63.9375em) {
   }*/
  /* 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_proydestacados_home h6 .triangulo-abajo {
  position: relative;
  bottom: 0%;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 0.9375rem solid transparent;
  border-right: 0.9375rem solid transparent;
  border-top: 1.563rem solid #e86b0e;
}
.part_proydestacados_home .contenedor-proydestacados {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.part_proydestacados_home .contenedor-proydestacados .callout-proydestacados {
  position: relative;
  width: 100%;
  margin: 0 0 0 0;
  padding: 0.35rem;
}
.part_proydestacados_home .contenedor-proydestacados .callout-proydestacados a {
  color: #333;
  text-decoration: none;
}
.part_proydestacados_home .contenedor-proydestacados .callout-proydestacados > :first-child {
  margin-top: 0;
}
.part_proydestacados_home .contenedor-proydestacados .callout-proydestacados > :last-child {
  margin-bottom: 0;
}
.part_proydestacados_home .ih-item.square {
  border-radius: 5px;
}
.part_proydestacados_home .ih-item.square.effect6 .info {
  background: #333;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.part_proydestacados_home .ih-item.square.effect6 .info h2 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  padding: 10px;
  background: #111;
  margin: 6.25rem 0 0 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_proydestacados_home .ih-item.square.effect6 .info p {
  font-style: italic;
  font-size: 1.25rem;
  color: #bbb;
  padding: 20px 20px 20px;
  text-align: center;
  -webkit-transition: all 0.35s 0.1s linear;
  -moz-transition: all 0.35s 0.1s linear;
  transition: all 0.35s 0.1s linear;
}
.part_proydestacados_home .ih-item.square.effect6.bottom_to_top .info h2 {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
.part_proydestacados_home .ih-item.square.effect6.bottom_to_top a:hover .info h2, .part_proydestacados_home .ih-item.square.effect6.bottom_to_top a:hover .info p {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.part_proydestacados_home .cbp-l-filters-button {
  margin: 2rem 0 3rem 0;
}
.part_proydestacados_home .cbp-l-filters-button .cbp-filter-item {
  background-color: #e86b0e;
  border: 0px solid #ececec;
  color: #fff;
  cursor: pointer;
  font: 400 0.9375rem/32px "Source Sans Pro", sans-serif;
  margin: 0 5px 10px 5px;
  overflow: visible;
  padding: 0;
  position: relative;
  display: inline-block;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  border-radius: 0.45rem;
  -webkit-border-radius: 0.45rem;
  -moz-border-radius: 0.45rem;
  -ms-border-radius: 0.45rem;
  -o-border-radius: 0.45rem;
}
.part_proydestacados_home .cbp-l-filters-button .cbp-filter-item a {
  color: #fff;
  text-decoration: none;
  padding: 5px 17px;
}
.part_proydestacados_home .cbp-l-filters-button .cbp-filter-item:hover {
  color: #fff;
  background-color: #2a2a2a;
  border-color: #dadada;
}
.part_proydestacados_home .cbp-l-dropdown-wrap {
  width: 100%;
  position: absolute;
  background: #4d4c4d;
  border-top-left-radius: 0.25rem;
}
.part_proydestacados_home .cbp-l-direction {
  border-top-right-radius: 0.25rem;
}
.part_proydestacados_home .cbp-l-dropdown-header {
  margin: 0 17px;
  color: #fff;
  cursor: default;
  position: relative;
}
.part_resumen_proyecto {
  padding: 0;
  margin: 0;
}
.part_resumen_proyecto .fondo-horizontal-contenido {
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  background-color: #f3f3f3;
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}
.part_resumen_proyecto .fondo-horizontal-contenido h2 {
  font-size: 1.25rem;
  margin-top: 0.9375rem;
}
.part_resumen_proyecto .fondo-horizontal-contenido hr {
  margin: 1.25rem 0rem;
  border-bottom: 1px solid #fff;
}
/****MEDIA QUERIES*****/
/* Small only */
@media screen and (max-width: 39.9375em) {
  .page_contenido_ampliado_servicio .fondo-horizontal-contenido .contenedor_contenido_centro_izqder {
    padding-bottom: 0.625rem;
  }
  .page_contenido_ampliado_servicio .fondo-horizontal-contenido .contenedor_contenido_izqder {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
  .page_contenido_ampliado_servicio .fondo-horizontal-contenido h2 {
    background: none;
  }
}
/* Medium and up */
/*@media screen and (min-width: 40em) {
 }*/
/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .page_contenido_ampliado_servicio .fondo-horizontal-contenido .contenedor_contenido_centro_izqder {
    padding-bottom: 0.625rem;
  }
  .page_contenido_ampliado_servicio .fondo-horizontal-contenido .contenedor_contenido_izqder {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
  .page_contenido_ampliado_servicio .fondo-horizontal-contenido h2 {
    background: none;
  }
}
/* 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_cursos_capacitaciones_home {
  padding: 0rem;
  margin: 0rem;
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.part_cursos_capacitaciones_home h6 {
  color: #fff;
}
.part_cursos_capacitaciones_home h6 .triangulo-abajo {
  position: relative;
  bottom: 0%;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 0.9375rem solid transparent;
  border-right: 0.9375rem solid transparent;
  border-top: 1.563rem solid #e86b0e;
}
.part_cursos_capacitaciones_home .color-fondo-img {
  background-color: rgba(255, 255, 255, 0.60);
  border-radius: 0.65rem;
  -webkit-border-radius: 0.65rem;
  -moz-border-radius: 0.65rem;
  -ms-border-radius: 0.65rem;
  -o-border-radius: 0.65rem;
}
.part_cursos_capacitaciones_home .color-fondo-img img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  filter: drop-shadow(0 0 0 #cacaca);
  -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_cursos_capacitaciones_home .color-fondo-img:hover img {
  filter: drop-shadow(0 0 0.35rem #cacaca);
  -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_cursos_capacitaciones_home p {
  font-size: 1.2rem;
  color: #fff;
  text-align: left;
  line-height: 1.3;
}
.part_cursos_capacitaciones_home .button-all {
  margin-top: 4rem;
}
@media screen and (max-width: 39.9375em) {
  .part_cursos_capacitaciones_home .color-fondo-img {
    margin-bottom: 2rem;
  }
  .part_cursos_capacitaciones_home p {
    text-align: center;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .part_cursos_capacitaciones_home .color-fondo-img {
    margin-bottom: 2rem;
  }
  .part_cursos_capacitaciones_home p {
    text-align: center;
  }
}
.part_actualidades_home {
  /****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*****/
}
.part_actualidades_home h6 .triangulo-abajo {
  position: relative;
  bottom: 0%;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 0.9375rem solid transparent;
  border-right: 0.9375rem solid transparent;
  border-top: 1.563rem solid #e86b0e;
}
.part_actualidades_home .infonovedades {
  margin-bottom: 3rem;
}
.part_actualidades_home .contenedor-novedades-home {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  margin-bottom: 1.875rem;
  background-color: #fff;
  filter: drop-shadow(0 0 0 #ccc);
  border-radius: 0.2rem;
  -webkit-border-radius: 0.2rem;
  -moz-border-radius: 0.2rem;
  -ms-border-radius: 0.2rem;
  -o-border-radius: 0.2rem;
  -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_actualidades_home .contenedor-novedades-home a {
  color: #000;
  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_actualidades_home .contenedor-novedades-home .callout-noticias {
  width: 100%;
  position: relative;
}
.part_actualidades_home .contenedor-novedades-home .callout-noticias img {
  border: 0.2rem solid #cdcdcd;
  border-radius: 0.22rem;
  -webkit-border-radius: 0.22rem;
  -moz-border-radius: 0.22rem;
  -ms-border-radius: 0.22rem;
  -o-border-radius: 0.22rem;
  margin-bottom: 0rem;
  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_actualidades_home .contenedor-novedades-home .callout-noticias h2 {
  font-size: 1.05rem;
  text-align: left;
  padding: 0rem 0rem 0rem 0rem;
  margin: 0rem 0rem 0rem 0rem;
  text-transform: none;
  color: #000;
}
.part_actualidades_home .contenedor-novedades-home .callout-noticias p {
  text-align: left;
  font-size: 0.875rem;
  margin-top: 1rem;
}
.part_actualidades_home .contenedor-novedades-home .callout-noticias:hover a, .part_actualidades_home .contenedor-novedades-home .callout-noticias:hover p {
  color: #424242;
  -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_actualidades_home .contenedor-novedades-home .callout-noticias:hover img {
  opacity: 0.85;
  -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_actualidades_home .contenedor-novedades-home:hover {
  filter: drop-shadow(0 0 0.25rem #ccc);
  -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_actualidades_home .contenedor-novedades-home > :first-child {
  margin-top: 0;
}
.part_actualidades_home .contenedor-novedades-home > :last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 39.9375em) {
  .part_actualidades_home .contenedor-novedades-home {
    margin-bottom: 2rem;
  }
  .part_actualidades_home .contenedor-novedades-home .callout-noticias img {
    margin-bottom: 0.9375rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .part_actualidades_home .contenedor-novedades-home {
    margin-bottom: 2rem;
  }
  .part_actualidades_home .contenedor-novedades-home .callout-noticias img {
    margin-bottom: 0.9375rem;
  }
}
.part_contacaddthis {
  padding: 0rem 0rem 0rem 0rem;
  background-color: #f6f6f6;
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.botnavidad {
  position: fixed;
  top: 0;
  right: 0.85rem;
  z-index: 9999;
  display: flex;
  border-bottom: 2px dashed #fff;
  border-right: 2px dashed #fff;
  border-left: 2px dashed #fff;
  background-color: #cd0111;
  border-bottom-right-radius: 1.15rem;
  border-bottom-left-radius: 1.15rem;
  -webkit-animation-name: movimientohoriz;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-name: movimientohoriz;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  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;
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.botnavidad a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 1.15rem;
  font-weight: bold;
  padding: 0.55rem 1rem 0.65rem 1rem;
}
.botnavidad a i {
  margin-right: 0.75rem;
  font-size: 1.5rem;
}
.botnavidad:hover {
  filter: drop-shadow(0 0 0.3rem #308e65);
  -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;
}
@keyframes movimientohoriz {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
    background-color: #419e00;
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
    background-color: #cd0111;
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
    background-color: #419e00;
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
    background-color: #cd0111;
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
    background-color: #419e00;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    background-color: #cd0111;
  }
}
@-webkit-keyframes movimientohoriz {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
    background-color: #cd0111;
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
    background-color: #419e00;
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
    background-color: #cd0111;
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
    background-color: #419e00;
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
    background-color: #cd0111;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    background-color: #419e00;
  }
}
.part_panel_navidad {
  width: 100%;
  background-color: #005b38;
  color: #fff;
  position: fixed;
  top: 0;
  right: 0px;
  padding: 0 0 0 0;
  z-index: 9999999999 !important;
  -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;
  /*.button {
   background-color: #F5F5F5;
   @include border-radius(0.15rem);
   line-height: 1;
   margin: 0 0 0 0;
   padding: .5rem 1rem;
   text-align: center;
   color: #000;
   font-size: 1.35rem;
   filter: drop-shadow(0 0 0rem transparent);
   @include transition(all 0.4s ease-in-out);
   .size-i {
   font-size: 2.5rem;
   margin-right: 0.75rem;
   vertical-align: text-bottom;
   }
   }
   a.button:hover, a.button:focus {
   color: #F1F1F1;
   background-color: #4ba052;
   filter: drop-shadow(0 0 0.35rem #FFF);
   @include transition(all 0.4s ease-in-out);
   }*/
  /************************+POSTAL****************************/
  /*body {
   overflow-x: hidden;
   color: #fff;
   margin: 0 auto;
   background-color: #005b38;
   * {
   font-family: "Mountains of Christmas", cursive;
   }
   p,
   h1,
   h2,
   h3,
   h4,
   h5,
   h6 {
   margin: 0;
   }
   a {
   color: #fff;
   text-decoration: none;
   }
   ul,
   li {
   padding: 0;
   margin: 0;
   list-style-type: none;
   }
   }*/
  /***********************************/
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.part_panel_navidad i.close {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  z-index: 2;
  font-size: 3rem;
  color: #fff;
  padding: 0;
  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_panel_navidad i.close:hover {
  cursor: pointer;
  color: #d02222;
  filter: drop-shadow(0 0 0.1rem #cfc2c3);
  -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;
}
@keyframes santa__mov {
  0%, 100% {
    bottom: 0;
    left: 0;
    transform: translateX(-100%) rotate(-10deg);
  }
  30% {
    bottom: 100%;
    left: 100%;
    transform: translateX(100%) rotate(-10deg);
  }
  40% {
    bottom: 0;
    left: 100%;
    transform: translateX(100%) rotateY(180deg);
  }
  70% {
    bottom: 0;
    left: 0;
    transform: translateX(-100%) rotateY(180deg);
  }
}
@keyframes santa__hand-left {
  0% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(-30deg);
  }
}
@keyframes santa__hand-right {
  0% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(-6deg);
  }
}
@keyframes rope__left {
  0% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(5deg);
  }
}
@keyframes rope__right {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@keyframes rope__inner {
  0% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(-15deg) translateY(3px);
  }
}
@keyframes reindeer__leg-front {
  0% {
    transform: rotate(-24deg);
  }
  100% {
    transform: rotate(-13deg);
  }
}
@keyframes reindeer__leg-front-extension {
  0% {
    transform: rotate(131deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes reindeer__leg-back {
  0% {
    transform: rotate(-73deg);
  }
  100% {
    transform: rotate(-95deg);
  }
}
@keyframes reindeer__leg-back-extension {
  0% {
    top: 4px;
    left: -4px;
    transform: rotate(50deg);
  }
  100% {
    top: 0;
    left: 0;
    transform: rotate(0);
  }
}
@keyframes snow {
  0% {
    fill-opacity: 1;
  }
  100% {
    fill-opacity: 0;
    transform: translateY(50%);
  }
}
.part_panel_navidad .countdownSection {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  font-family: "Mountains of Christmas", cursive;
}
.part_panel_navidad .countdownSection:before, .part_panel_navidad .countdownSection:after {
  content: "";
  position: absolute;
}
.part_panel_navidad .countdownSection:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(255, 255, 255, 0.3), transparent);
  pointer-events: none;
}
.part_panel_navidad .countdownSection:after {
  width: 90%;
  height: 90%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.part_panel_navidad .countdownSection .decorations {
  pointer-events: none;
}
.part_panel_navidad .countdownSection .decorations .decoration {
  background-image: url("https://firebasestorage.googleapis.com/v0/b/fotos-3cba1.appspot.com/o/navidad%2Fdecoration.png?alt=media&token=201ed160-2a86-4b14-869f-85981e9ff5fb");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  width: 500px;
  height: 500px;
  filter: blur(3px);
  z-index: 1;
}
.part_panel_navidad .countdownSection .decorations .decoration[data-pos="top left"] {
  top: 0;
  left: 0;
  transform: rotate(90deg);
}
.part_panel_navidad .countdownSection .decorations .decoration[data-pos="top right"] {
  top: 0;
  right: 0;
  transform: rotate(180deg);
}
.part_panel_navidad .countdownSection .decorations .decoration[data-pos="bottom left"] {
  bottom: 0;
  left: 0;
}
.part_panel_navidad .countdownSection .decorations .decoration[data-pos="bottom right"] {
  bottom: 0;
  right: 0;
  transform: rotate(-90deg);
}
.part_panel_navidad .countdownSection .decorations .snow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.part_panel_navidad .countdownSection .decorations .snow .particle {
  fill: #fff;
  animation: snow 5s ease-out infinite;
}
.part_panel_navidad .countdownSection .decorations .snow .particle:nth-child(2n) {
  animation-delay: 1.5s;
}
.part_panel_navidad .countdownSection .decorations .snow .particle:nth-child(3n) {
  animation-delay: 2.5s;
  animation-duration: 5.3s;
}
.part_panel_navidad .countdownSection .decorations .snow .particle:nth-child(4n) {
  animation-delay: 1s;
  animation-duration: 5.2s;
}
.part_panel_navidad .countdownSection .decorations .snow .particle:nth-child(5n) {
  animation-delay: 3s;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 430px;
  height: 155px;
  transform: translateX(-100%);
  animation: santa__mov 15s linear infinite;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 125px;
  height: 107px;
  z-index: 10;
  transform: rotateY(180deg);
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa:before, .part_panel_navidad .countdownSection .decorations .santaWrapper .santa:after {
  content: "";
  position: absolute;
  bottom: 0;
  background-color: #520d0d;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa:before {
  left: -10px;
  width: 126px;
  height: 30px;
  border-radius: 10px 50% 10px 50%;
  transform: rotate(0);
  z-index: 10;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa:after {
  left: 70px;
  width: 50px;
  height: 53px;
  border-radius: 50% 10px 22px 10px;
  transform: rotate(8deg);
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .hat > * {
  position: absolute;
  top: 7px;
  left: 31px;
  width: 43px;
  height: 58px;
  border-radius: 50%;
  transform: rotate(28deg);
  background-color: #d63527;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .hat > *:nth-child(1):before, .part_panel_navidad .countdownSection .decorations .santaWrapper .santa .hat > *:nth-child(1):after {
  content: "";
  position: absolute;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .hat > *:nth-child(1):before {
  top: 9px;
  left: 45px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #fff;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .hat > *:nth-child(1):after {
  top: 3px;
  left: 19px;
  width: 30px;
  height: 7px;
  border-radius: 50%;
  transform: rotate(22deg);
  background-color: #d63527;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .hat > *:nth-child(2) {
  position: absolute;
  top: 18px;
  left: 31px;
  width: 44px;
  height: 34px;
  border-radius: 50%;
  transform: rotate(12deg);
  background-color: #fff;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .face {
  position: absolute;
  top: 25px;
  left: 37px;
  width: 31px;
  height: 17px;
  border-radius: 20px 20px 50% 50%;
  transform: rotate(10deg);
  background-color: #fde2b7;
  z-index: 10;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .face .eyeBrows {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 7px;
  border-radius: 50%;
  background-color: #fff;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .face .eyeBrows.left {
  top: 2px;
  left: 22px;
  transform: rotate(-65deg);
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .face .eyeBrows.right {
  top: 1px;
  left: 4px;
  transform: rotate(65deg);
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .face .eye {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 3px;
  height: 4px;
  border-radius: 50%;
  background-color: #000;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .face .eye.left {
  top: 8px;
  left: 2px;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .face .eye.right {
  top: 8px;
  left: 20px;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .face .nose {
  position: absolute;
  top: 10px;
  left: 6px;
  width: 12px;
  height: 9px;
  border-radius: 50%;
  z-index: 10;
  background-color: #f7d194;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .face .cheek {
  position: absolute;
  top: 10px;
  left: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  z-index: 10;
  background-color: #f4cfe3;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .face .cheek.left {
  top: 12px;
  left: -3px;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .face .cheek.right {
  top: 13px;
  left: 22px;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .face .beard > * {
  position: absolute;
  top: 8px;
  left: -14px;
  width: 15px;
  height: 17px;
  border-radius: 50%;
  background-color: #fff;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .face .beard > *:before, .part_panel_navidad .countdownSection .decorations .santaWrapper .santa .face .beard > *:after {
  content: "";
  position: absolute;
  background-color: #fff;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .face .beard > *:before {
  top: 12px;
  left: 1px;
  width: 15px;
  height: 17px;
  border-radius: 50%;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .face .beard > *:nth-child(2) {
  top: 16px;
  left: -8px;
  width: 26px;
  height: 30px;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .face .beard > *:nth-child(2):before {
  top: 16px;
  left: 13px;
  width: 19px;
  height: 17px;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .face .beard > *:nth-child(2):after {
  top: 1px;
  left: 13px;
  width: 19px;
  height: 17px;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .face .beard > *:nth-child(3) {
  top: 16px;
  left: 14px;
  width: 27px;
  height: 28px;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .face .beard > *:nth-child(3):before {
  top: -4px;
  left: 13px;
  width: 17px;
  height: 17px;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .body {
  position: absolute;
  top: 54px;
  left: 16px;
  width: 88px;
  height: 53px;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .body:before {
  content: "";
  position: absolute;
  top: -23px;
  right: -10px;
  width: 53px;
  height: 51px;
  border-radius: 42% 50%;
  background-color: #f3f0f0;
  z-index: -1;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .body .sweater {
  top: -3px;
  left: 10px;
  position: absolute;
  width: 45px;
  height: 39px;
  border-radius: 50% 50% 10% 10%;
  background-color: #d63527;
  z-index: 5;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .body .sweater:before {
  content: "";
  top: 28px;
  left: 0px;
  position: absolute;
  width: 45px;
  height: 5px;
  background-color: #000;
  transform: rotate(1deg);
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .body .sweater:after {
  content: "";
  top: 27px;
  left: 10px;
  position: absolute;
  width: 7px;
  height: 5px;
  background-color: #000;
  border: 1px solid #fff;
  border-radius: 3px;
  transform: rotate(1deg);
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .body .hand {
  position: absolute;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .body .hand.left {
  top: 5px;
  left: 19px;
  width: 33px;
  height: 30px;
  overflow: hidden;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .body .hand.left .inner {
  position: absolute;
  top: 10px;
  left: 8px;
  width: 49px;
  z-index: 100;
  height: 7px;
  border-radius: 10px;
  transform: rotate(12deg);
  background-color: #d63527;
  animation: santa__hand-right 0.3s linear alternate infinite;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .body .hand.left .inner:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 7px;
  top: -2px;
  left: -6px;
  background-color: #000;
  border-radius: 50%;
  transform: rotate(25deg);
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .body .hand.right {
  top: 4px;
  left: 3px;
  width: 11px;
  height: 7px;
  border-radius: 10px;
  background-color: #d63527;
  transform: rotate(25deg);
  animation: santa__hand-left 0.3s linear alternate infinite;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .santa .body .hand.right:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 7px;
  top: -2px;
  left: -6px;
  background-color: #000;
  border-radius: 50%;
  transform: rotate(10deg);
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .rope {
  position: absolute;
  top: 92px;
  left: 84px;
  width: 182px;
  height: 33px;
  overflow: hidden;
  z-index: 10;
  transform: rotate(0deg);
  transform-origin: bottom right;
  animation: rope__right 0.3s linear alternate infinite;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .rope.back {
  top: 85px;
  left: 105px;
  width: 149px;
  transform: rotate(4deg);
  z-index: 0;
  transform-origin: top left;
  animation: rope__left 0.3s linear alternate infinite;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .rope:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -12px;
  width: 100%;
  height: 48px;
  border-bottom: 1px solid #fff;
  border-radius: 50%;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .sled {
  position: absolute;
  bottom: -12px;
  left: 0px;
  width: 145px;
  height: 11px;
  transform: rotate(-3deg);
  border-bottom: 5px solid #690e00;
  border-right: 5px solid #690e00;
  border-radius: 10px;
  z-index: 10;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .sled:before, .part_panel_navidad .countdownSection .decorations .santaWrapper .sled:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #690e00;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .sled:before {
  top: 2px;
  left: 34px;
  height: 9px;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .sled:after {
  top: 3px;
  left: 108px;
  width: 5px;
  height: 8px;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer {
  position: absolute;
  width: 115px;
  height: 155px;
  top: 50px;
  right: 0;
  transform: rotate(14deg) translateX(calc(-100% - 30px));
  z-index: 0;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer.second {
  top: 0;
  transform: rotate(14deg);
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer.second .rope {
  top: 70px;
  left: -55px;
  width: 155px;
  transform: rotate(-15deg);
  animation: rope__inner 0.3s linear alternate infinite;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer:before {
  content: "";
  position: absolute;
  top: 65px;
  left: 76px;
  width: 8px;
  height: 31px;
  background-color: #520d0d;
  z-index: 10;
  transform: rotate(-55deg);
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer:after {
  content: "";
  position: absolute;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .face {
  position: absolute;
  width: 30px;
  height: 22px;
  top: 44px;
  left: 72px;
  border-radius: 10px 10px 50% 50%;
  transform: rotate(-3deg);
  background-color: #cca58b;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .face:before {
  content: "";
  position: absolute;
  background-color: #cca58b;
  width: 29px;
  height: 16px;
  border-radius: 50%;
  top: 0px;
  left: 11px;
  transform: rotate(-49deg);
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .face:after {
  content: "";
  position: absolute;
  background-color: #000;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  top: -8px;
  left: 31px;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .face .ear {
  position: absolute;
  width: 21px;
  height: 11px;
  top: 4px;
  left: -18px;
  border-radius: 4px 0 50% 50%;
  transform: rotate(4deg);
  background-color: #cca58b;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .face .ear:before {
  content: "";
  position: absolute;
  top: -2px;
  left: 34px;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  transform: rotate(-35deg);
  background-color: #000;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .face .horn {
  position: absolute;
  width: 29px;
  height: 4px;
  top: -7px;
  left: -21px;
  border-radius: 2px;
  transform: rotate(38deg);
  background-color: #f0dbc2;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .face .horn:before, .part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .face .horn:after {
  content: "";
  position: absolute;
  background-color: #f0dbc2;
  border-radius: 2px;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .face .horn.left {
  top: -7px;
  left: -21px;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .face .horn.left:before {
  top: -4px;
  left: 6px;
  width: 14px;
  height: 4px;
  transform: rotate(43deg);
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .face .horn.left:after {
  top: -4px;
  left: 13px;
  width: 14px;
  height: 4px;
  -webkit-transform: rotate(43deg);
  transform: rotate(53deg);
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .face .horn.right {
  top: -12px;
  left: -6px;
  width: 24px;
  transform: rotate(62deg);
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .face .horn.right:before {
  top: -3px;
  left: 5px;
  width: 10px;
  height: 4px;
  transform: rotate(43deg);
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .face .horn.right:after {
  top: -3px;
  left: 11px;
  width: 10px;
  height: 4px;
  transform: rotate(53deg);
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .body {
  position: absolute;
  width: 58px;
  height: 31px;
  top: 84px;
  left: 28px;
  border-radius: 50% 0;
  transform: rotate(-3deg);
  background-color: #cca58b;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .body:before {
  content: "";
  position: absolute;
  width: 46px;
  height: 26px;
  top: -15px;
  left: 32px;
  border-radius: 0 0 50% 50%;
  -webkit-transform: rotate(-3deg);
  transform: rotate(-55deg);
  background-color: #cca58b;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .body:after {
  content: "";
  position: absolute;
  width: 43px;
  height: 26px;
  top: -11px;
  left: 29px;
  border-radius: 0 0 50% 50%;
  -webkit-transform: rotate(-3deg);
  transform: rotate(-30deg);
  background-color: #cca58b;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .body .foot.front .inner {
  position: absolute;
  width: 40px;
  height: 8px;
  top: 13px;
  left: 35px;
  border-radius: 0 50%;
  transform: rotate(-17deg);
  background-color: #cca58b;
  animation: reindeer__leg-front 0.3s linear alternate infinite;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .body .foot.front .inner .extension {
  position: absolute;
  width: 28px;
  height: 8px;
  top: 3px;
  left: 100%;
  border-radius: 2px 50%;
  transform: rotate(131deg);
  background-color: #cca58b;
  transform-origin: top left;
  animation: reindeer__leg-front-extension 0.2s linear alternate infinite;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .body .foot.front .inner .extension:after {
  content: "";
  position: absolute;
  top: 0;
  right: -2px;
  width: 7px;
  height: 8px;
  border-radius: 2px;
  background-color: #000;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .body .foot.back .inner {
  position: absolute;
  width: 56px;
  height: 9px;
  top: 37px;
  left: -29px;
  border-radius: 0 50%;
  transform: rotate(-73deg);
  animation: reindeer__leg-back 0.3s linear alternate infinite;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .body .foot.back .inner:before {
  content: "";
  position: absolute;
  width: 25px;
  height: 16px;
  top: 4px;
  left: 25px;
  border-radius: 0 50%;
  transform: rotate(15deg);
  background-color: #cca58b;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .body .foot.back .inner:after {
  content: "";
  position: absolute;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #cca58b;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .body .foot.back .inner .extension {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 8px;
  background: #cca58b;
  border-radius: 2px 50%;
  transform-origin: top right;
  animation: reindeer__leg-back-extension 0.2s linear alternate infinite;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .body .foot.back .inner .extension:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 9px;
  top: -2px;
  left: -2px;
  border-radius: 2px 0 2px 2px;
  transform: rotate(14deg);
  background-color: #000;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .body .tail {
  position: absolute;
  width: 27px;
  height: 26px;
  top: 6px;
  left: -8px;
  border-radius: 50% 2px;
  transform: rotate(-17deg);
  background-color: #cca58b;
}
.part_panel_navidad .countdownSection .decorations .santaWrapper .reindeer .body .tail:before {
  content: "";
  position: absolute;
  background-color: #cca58b;
  border-radius: 50%;
  top: -2px;
  left: -3px;
  width: 15px;
  height: 5px;
  transform: rotate(25deg);
}
.part_panel_navidad .countdownSection .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  width: 90%;
  padding: 50px 0;
}
.part_panel_navidad .countdownSection .container .counterWrapper {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}
.part_panel_navidad .countdownSection .container .counterWrapper p.titsup {
  font-family: "Mountains of Christmas", cursive;
  background-image: url(https://firebasestorage.googleapis.com/v0/b/fotos-3cba1.appspot.com/o/navidad%2Fpattern-2.jpg?alt=media&token=c3ebea10-d285-4b2a-846b-12154d670bf2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 5.5rem;
}
.part_panel_navidad .countdownSection .container .counterWrapper p {
  font-family: "Mountains of Christmas", cursive;
  background-image: url(https://firebasestorage.googleapis.com/v0/b/fotos-3cba1.appspot.com/o/navidad%2Fpattern-2.jpg?alt=media&token=c3ebea10-d285-4b2a-846b-12154d670bf2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4.5rem;
}
.part_panel_navidad .countdownSection .container .counterWrapper .countdown {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.part_panel_navidad .countdownSection .container .counterWrapper .countdown .countdownProp {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  width: 240px;
  margin: 10px;
  font-size: 200px;
  line-height: 150px;
  background-image: url(https://firebasestorage.googleapis.com/v0/b/fotos-3cba1.appspot.com/o/navidad%2Fpattern-1.png?alt=media&token=e62eb3c2-bea0-49ae-a398-ab426f5605c1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 100px #fff;
}
.part_panel_navidad .countdownSection .container .counterWrapper .countdown .countdownProp:not(:first-child):before {
  content: ":";
}
.part_panel_navidad .countdownSection .container .counterWrapper .countdown .countdownProp:after {
  content: attr(date-count);
  width: 100%;
  font-size: 20px;
  -webkit-text-fill-color: #fff;
  line-height: normal;
}
@media only screen and (max-width: 700px) {
  .part_panel_navidad .countdownSection .decorations .decoration {
    width: 300px;
    height: 300px;
  }
  .part_panel_navidad .countdownSection .container .counterWrapper p {
    font-size: 70px;
  }
  .part_panel_navidad .countdownSection .container .counterWrapper .countdown {
    margin: 20px 0;
  }
  .part_panel_navidad .countdownSection .container .counterWrapper .countdown .countdownProp {
    width: 120px;
    font-size: 100px;
    line-height: 80px;
  }
}
@media only screen and (max-width: 500px) {
  .part_panel_navidad .countdownSection .decorations .santaWrapper {
    display: none;
  }
  .part_panel_navidad .countdownSection .container .counterWrapper p {
    font-size: 50px;
  }
  .part_panel_navidad .countdownSection .container .counterWrapper .countdown .countdownProp {
    display: block;
  }
  .part_panel_navidad .countdownSection .container .counterWrapper .countdown .countdownProp:not(:first-child):before {
    display: none;
  }
  .part_panel_navidad .countdownSection .container .counterWrapper .countdown .countdownProp:after {
    display: block;
  }
}
@media screen and (max-width: 39.9375em) {
  .part_panel_navidad .button {
    margin: 2rem 0 0 0;
  }
}
.part_nclientes {
  padding: 5rem 0rem;
  background-color: transparent;
  /***************FLECHAS CARRUSEL****************/
  /****************MEDIA QUERIES******************/
  /* Small only */
  /* Medium only */
  /****************MEDIA QUERIES******************/
}
.part_nclientes h6 {
  font-size: 1.95rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.part_nclientes h6 .triangulo-abajo {
  position: relative;
  bottom: 0%;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 0.9375rem solid transparent;
  border-right: 0.9375rem solid transparent;
  border-top: 1.563rem solid #e86b0e;
}
.part_nclientes p {
  margin-bottom: 3rem;
}
.part_nclientes .slick-slider {
  padding: 0rem 0rem;
}
.part_nclientes .slick-prev {
  left: -1px;
}
.part_nclientes .slick-next {
  right: -4px;
}
.rsocial-directorio {
  background-color: transparent;
}
.rsocial-directorio ul {
  text-align: center;
  width: auto;
  padding: 0rem;
  margin: 0rem 0rem 0rem 0rem;
  list-style: none;
}
.rsocial-directorio ul li {
  display: inline-flex;
  text-align: center;
  margin-right: 0.3rem;
}
.rsocial-directorio ul li 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;
}
.rsocial-directorio ul li a img:hover {
  opacity: 0.95;
  filter: drop-shadow(0 0 0.25rem #fff);
  -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;
}
.rsocial-directorio ul li 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;
}
.rsocial-directorio ul li img:hover {
  opacity: 0.95;
  filter: drop-shadow(0 0 0.25rem #fff);
  -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;
}
.rsocial-directorio ul li:last-child {
  margin-bottom: 0rem;
}
.part_directorio {
  padding-top: 5rem;
  padding-bottom: 5rem;
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.part_directorio .contenedor-directorio {
  margin: 0 0 0rem 0;
  position: relative;
  background-color: transparent;
}
.part_directorio .contenedor-directorio hr {
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #7b7b7b;
  border-left: 0;
}
.part_directorio .contenedor-directorio a {
  color: #fff;
  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_directorio .contenedor-directorio a:hover {
  color: #689fff;
  -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 {
  list-style: none;
  list-style-image: url(img/vineta.png);
  margin-bottom: 0.9375rem;
  padding: 0rem;
  margin-left: 1.02rem;
}
.part_directorio .contenedor-directorio ul li {
  vertical-align: middle;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.55rem;
  word-break: keep-all;
}
.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: #e86b0e;
  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;
}
.part_directorio .contenedor-directorio p {
  text-align: left;
  color: #fff;
  font-size: 1rem;
}
@media screen and (max-width: 39.9375em) {
  .part_directorio {
    padding-bottom: 0rem;
  }
  .part_directorio .contenedor-directorio {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .part_directorio {
    padding-bottom: 0rem;
  }
  .part_directorio .contenedor-directorio {
    margin-bottom: 2rem;
  }
}
.part_footer {
  background-color: #262626;
  padding: 0rem 0rem 3.5rem 0rem;
  /*=======CREDITOS=======*/
  /****MEDIA QUERIES*****/
  /* Small only */
  /* Medium only */
  /****MEDIA QUERIES*****/
}
.part_footer .sdirsedecredito {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.part_footer .contenedor-creditos {
  background-color: #181818;
}
.part_footer .creditos {
  padding: 5rem 0rem 1rem 0rem;
  font-size: 0.875rem;
  line-height: 1.5;
  text-transform: none;
}
.part_footer .creditos a {
  color: #e86b0e;
  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: #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 .creditos p {
  color: #fff;
  text-align: left;
  margin: 0rem;
}
.part_footer .contenedor-rsinf {
  padding-top: 2rem;
  border-top: 0.0625rem solid #7b7b7b;
}
@media screen and (max-width: 39.9375em) {
  .part_footer {
    /*=======CREDITOS=======*/
  }
  .part_footer .contenedor-creditos {
    background-color: transparent;
  }
  .part_footer .creditos {
    padding: 0rem 0rem 0rem 0rem;
    margin-bottom: 2rem;
  }
  .part_footer .creditos p {
    text-align: center;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .part_footer {
    /*=======CREDITOS=======*/
  }
  .part_footer .contenedor-creditos {
    background-color: transparent;
  }
  .part_footer .creditos {
    padding: 0rem 0rem 0rem 0rem;
    margin-bottom: 2rem;
  }
  .part_footer .creditos p {
    text-align: center;
  }
}
.part_postfooter {
  background-color: transparent;
}
/******ESTA LINEA ES PARA LAS VENTANAS MODALES******/
.reveal {
  background-color: #fff;
  border: 0.0625rem solid #f4f4f4;
  border-radius: 0.85rem;
}
.reveal .button {
  background-color: #e86b0e;
  -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: bold;
}
.reveal .button:hover {
  color: #f1f1f1;
  background-color: #4d4d4d;
  -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: #333;
  text-align: center;
  font-size: 1.75rem;
  padding: 1rem 0rem 0rem 0rem;
  margin: 0rem 0rem 1.25rem 0rem;
}
/****MEDIA QUERIES*****/
/* Small only */
@media screen and (max-width: 39.9375em) {
  /*************************TÍTULOS PÁGINAS INTERNAS AMPLIADAS E INDICES SIN FOTO***************/
  /*****************COMPARTIR EN REDES SOCIALES****************/
  .fondo-horizontal-titulos-sinfoto {
    padding: 2rem 0rem 2rem 0rem;
  }
  .fondo-horizontal-titulos-sinfoto .titulo-seccion {
    margin-top: 1.25rem;
  }
  .fondo-horizontal-titulos-sinfoto h1 {
    font-size: 1.15rem;
  }
  .fondo-horizontal-titulos {
    padding: 0rem 0rem 4rem 0rem;
  }
  .fondo-horizontal-titulos .titulo-seccion {
    margin-top: 1.25rem;
  }
  .fondo-horizontal-titulos h1 {
    font-size: 1.15rem;
  }
  .separador-compartir .linea-verticalcomp {
    border-bottom: 0.0625rem solid #cacaca;
    border-right: 0rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .separador-compartir p {
    text-align: center;
    margin-bottom: 0rem;
  }
  #emergenteRGPD .separadorvertical {
    border-right: 0;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.20);
    padding-bottom: 0.9375rem;
  }
}
/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  /*************************TÍTULOS PÁGINAS INTERNAS AMPLIADAS E INDICES SIN FOTO***************/
  /*****************COMPARTIR EN REDES SOCIALES****************/
  .fondo-horizontal-titulos-sinfoto {
    padding: 2rem 0rem 2rem 0rem;
  }
  .fondo-horizontal-titulos-sinfoto .titulo-seccion {
    margin-top: 1.25rem;
  }
  .fondo-horizontal-titulos-sinfoto h1 {
    font-size: 1.15rem;
  }
  .fondo-horizontal-titulos {
    padding: 0rem 0rem 4rem 0rem;
  }
  .fondo-horizontal-titulos .titulo-seccion {
    margin-top: 1.25rem;
  }
  .fondo-horizontal-titulos h1 {
    font-size: 1.15rem;
  }
  .separador-compartir p {
    text-align: center;
    margin-bottom: 0rem;
  }
  #emergenteRGPD .separadorvertical {
    border-right: 0;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.20);
    padding-bottom: 0.9375rem;
  }
}
/****MEDIA QUERIES*****/
.fondo-horizontal-servicios-home {
  padding: 3.5rem 0 0rem 0;
  margin-top: 0rem;
  background: none #fff;
  background-attachment: fixed;
}
.fondo-horizontal-servicios-home .altura {
  height: 0.45rem;
  margin-top: 3.5rem;
}
.fondo-horizontal-servicios-home .color1 {
  background-color: #e86b0e;
}
.fondo-horizontal-servicios-home .color2 {
  background-color: #606060;
}
.fondo-horizontal-servicios-home .color3 {
  background-color: #9f9f9f;
}
.fondo-horizontal-pdestacados-home {
  padding: 3.5rem 0rem 0rem 0rem;
}
.fondo-horizontal-ccursos-home {
  padding: 3.5rem 0rem;
  background: none #080808;
  background-size: cover;
  background-attachment: fixed;
}
.fondo-horizontal-novedades-home {
  padding: 3.5rem 0rem;
  background-color: #f7f7f7;
}
/****MEDIA QUERIES*****/
/* Small only */
/* Medium only */
/****MEDIA QUERIES*****/
