@charset "UTF-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;

}
@keyframes move_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1)
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55)
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1)
    }
}
.waveWrapper {
    position: relative;   
    width: 100%;
    height: 150px;       
    overflow: hidden;
}
.waveWrapperInner {
    position: absolute;
    width: 100%;
    height: 150px;  
    bottom: 0;
    overflow: hidden;
    background-image: linear-gradient(to top, #6d8cd4 40%, #3047a8 90%);
}
.bgTop {
    z-index: 15;
    opacity: 0.5;
}
.bgMiddle {
    z-index: 10;
    opacity: 0.75;
}
.bgBottom {
    z-index: 5;
}
.wave {
    position: absolute;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
}
.waveTop {
    background-size: 50% 100px;
}
.waveAnimation .waveTop {
  animation: move-wave 3s;
   -webkit-animation: move-wave 3s;
   -webkit-animation-delay: 1s;
   animation-delay: 1s;
}
.waveMiddle {
    background-size: 50% 120px;
}
.waveAnimation .waveMiddle {
    animation: move_wave 10s linear infinite;
}
.waveBottom {
    background-size: 50% 100px;
}
.waveAnimation .waveBottom {
    animation: move_wave 15s linear infinite;
}
.content-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 20; /* más alto que las olas */
}
.container {
	width: 80%;
	margin: 0 auto;
}
.thumbnail { 
top:-50px; 
left:-35px; 
display:block; 
z-index:999; 
cursor: pointer; 
-webkit-transition-property: all; 
-webkit-transition-duration: 0.3s; 
-webkit-transition-timing-function: ease; 
} 

/*cambia el número de abajo para escalar al tamaño apropiado*/ 
.thumbnail:hover { 
transform: scale(1.1);

}
#modalVideo{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(195,200,204,0.6);
  z-index:9999;
  justify-content:center;
  align-items:center;
}

.contenido{
  position:relative;
  max-width:900px;
  width:80%;
}

#cerrar{
  position:absolute;
  top:-30px;
  right:0;
  font-size:30px;
  cursor:pointer;
  color:#000;
}

#modalPdf{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(195,200,204,0.6);
  z-index:9999;

  justify-content:center;
  align-items:center;
}

.carousel{
display:flex;
align-items:center;
width:900px;
margin:auto;
}

.carousel-window{
overflow:hidden;
width:800px;
}

.carousel-track{
display:flex;
gap:20px;
transition:0.4s;
}

.carousel-track img{
width:150px;
height:150px;
object-fit:contain;
background:white;
flex-shrink:0;
}

.arrow{
border:none;
background:none;
font-size:30px;
cursor:pointer;
}