.images-compare-container {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.images-compare-before {
  will-change: clip;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.images-compare-after {
  pointer-events: none;
}

.images-compare-after img, .images-compare-before img {
  max-width: 100%;
  height: auto;
  display: block;
}

.images-compare-separator {
  position: absolute;
  background: #fff;
  height: 100%;
  width: 1px;
  z-index: 4;
  left: 0;
  top: 0;
}

.images-compare-handle {
  height: 38px;
  width: 38px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  border: 3px solid #fff;
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  border-radius: 1000px;
  -webkit-box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
  z-index: 3;
  background: #000;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.images-compare-left-arrow, .images-compare-right-arrow {
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
  top: 50%;
  margin-top: -6px;
}

.images-compare-left-arrow {
  border-right: 6px solid #fff;
  left: 50%;
  margin-left: -17px;
}

.images-compare-right-arrow {
  border-left: 6px solid #fff;
  right: 50%;
  margin-right: -17px;
}

.images-compare-label {
  font-family: sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  color: #000;
  color: rgba(0, 0, 0, 0.4);
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  padding: 10px;
  border-radius: 5px;
  pointer-events: none;
  display: none;
}

.images-compare-container .images-compare-label {
  display: inherit;
}

.images-compare-before .images-compare-label {
  left: 10px;
}

.images-compare-after .images-compare-label {
  left: auto;
  right: 10px;
}

.images-compare-separator {
  cursor: w-resize;
}

.images-compare-handle {
  margin-left: -31px;
  margin-top: -31px;
  width: 62px;
  height: 62px;
  background: url(../img/slider-images.svg) no-repeat;
  border: 0;
  cursor: w-resize;
  box-shadow: none;
}
.images-compare-handle span {
  display: none;
}

body a {
  color: inherit;
}
body a:hover {
  color: inherit;
}

header {
  display: flex;
  flex-flow: column;
  align-items: center;
  position: fixed;
  top: 0;
  padding: 1rem 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
header > div {
  max-width: 1440px;
}
header h1.logo {
  width: 150px;
  height: 55.5px;
  background: url(../img/logo-principal.svg) no-repeat;
  background-size: contain;
}
header h1.logo a {
  display: block;
  width: 100%;
  height: 100%;
}
header nav {
  position: relative;
  text-align: left;
  margin-top: 0.75rem;
  margin-right: 0.75rem;
}
header nav ul {
  position: absolute;
  right: 0;
  list-style-type: none;
  padding-left: 0;
}
header nav ul .nav-link {
  padding: 0;
}
header nav ul a {
  opacity: 0.5;
  transition: opacity 100ms ease;
}
header nav ul a.active, header nav ul a:hover {
  opacity: 1;
}
header nav ul.contacto {
  padding-top: 1rem;
}
header nav ul.contacto li {
  float: left;
  margin-right: 10px;
}
header nav ul.contacto img {
  height: 26px;
  padding: 2px;
}
header .tooltip-container {
  position: relative;
  display: inline-block;
}
header .tooltip-container .tooltip-text {
  visibility: hidden;
  width: 110px;
  background-color: #212529;
  color: #f8f9fa;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  opacity: 0;
  transition: opacity 400ms ease-out;
  position: absolute;
  z-index: 10;
  top: 130%;
  right: -4px;
}
header .tooltip-container .tooltip-text::after {
  content: " ";
  position: absolute;
  bottom: 100%;
  right: 13px;
  border: 5px solid transparent;
  border-bottom-color: #212529;
}
header .tooltip-container .tooltip-text.bigger {
  width: 180px;
}
header .tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

section {
  margin-top: 100px;
  max-width: 1440px;
}

article {
  margin-top: 1rem;
}
article > * {
  margin: 15px 0;
}
article.imagenes .embed-responsive .poster, article.imagenes .embed-responsive .reproducir-video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
article.imagenes .embed-responsive .poster {
  opacity: 0.5;
}
article.imagenes .embed-responsive .reproducir-video {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  cursor: pointer;
}
article.imagenes .embed-responsive .reproducir-video.hide {
  opacity: 0;
  transition: opacity 500ms ease-out;
}
article.imagenes .embed-responsive .reproducir-video img {
  width: 25%;
  max-width: 135px;
  transition: all 300ms ease-out;
}
article.imagenes .embed-responsive .reproducir-video img:hover {
  width: 32%;
  max-width: 160px;
}
article.imagenes .image-comparer {
  margin-bottom: 0.5rem;
}
article.imagenes .img-in {
  opacity: 0;
}
article.imagenes .img-in.enter-scene {
  opacity: 1;
  transition: opacity 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
article.titulo p {
  margin-bottom: 0;
}
article.titulo .carrusel {
  padding-right: 10px;
  list-style: none;
}
article.titulo .carrusel li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  color: #61CE70;
  border: 1px solid #61CE70;
}
article.titulo .carrusel li.actual {
  color: white;
  background-color: #61CE70;
}
article.titulo .carrusel a:hover {
  text-decoration: none;
}
article.titulo .carrusel a:hover li {
  background-color: rgba(97, 206, 112, 0.1);
}
article.titulo .carrusel img {
  padding: 2px;
  margin: 0.2rem 0.1rem;
  width: 9.19%;
  min-width: 60px;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 300ms ease-in, opacity 200ms ease-in;
}
article.titulo .carrusel img.actual, article.titulo .carrusel img:hover {
  filter: none;
  opacity: 1;
}

footer {
  margin-top: 1.5rem;
  clear: both;
  font-size: 71%;
  color: #6c757d;
}

#index article > a {
  position: relative;
}
#index article > a img {
  transition: opacity ease 1.5s;
}
#index article > a img.secundaria {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#index article > a:hover img.principal {
  opacity: 0;
}
#index article > a:hover img.secundaria {
  opacity: 1;
}
@media (max-width: 767.98px) {
  #index article > a {
    width: 100%;
    display: block;
    margin-left: 0;
  }
  #index article > a img {
    width: 100%;
  }
}
@media (min-width: 768px) {
  #index article > a {
    float: left;
    margin: 0.5rem;
  }
  #index article > a img {
    width: 267px;
  }
}

/*# sourceMappingURL=estilos.css.map */
