/*estilos para div del video de pre-nav*/
.video-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Ajusta la altura según tus necesidades */
    overflow: hidden;
    
  }
  
  .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .video-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* Opacidad del 89% */
    z-index: 2;  
  }
  .videoText-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 3;
    
  }



  h2, .beta {
    font-size: 2em;
    line-height: 1.214;
}

.text-with-texture {
    font-size: 40px;
    background-image: url(/img/texture/8150248.jpg);
    background-repeat: no-repeat;
  background-size: 100%;
  background-position-x: center;
  background-position-y: center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  }
  


  
  .card {
    position: relative;
    min-height: 300px;
    overflow:hidden;

    
  }

  .card-img {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    z-index: 1;

    

  }

  .card:hover .card-img {
    transform: scale(1.1);
    
  }

  .card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: rgba(255, 255, 255);
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 3;
    background-color: rgba(14, 72, 119, 0.95);
  }

  .card:hover .card-content,
  .card:focus .card-content {
    opacity: 1;
  }

  .card-content h5,
  .card-content p {
    margin: 0;
    text-align: center;
  }
  
.prt:hover{
  border: 1px solid #ffffff44;
  box-shadow: 0 7px 50px 10px #000000aa;
  transform: scale(1.015);
  filter:brightness(1.3);
  ::before{
    filter: brightness(.5)  ;
    top: -100%;
    left: 200%;
}
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #25d366;
  background-color:#fff;
}

.my-float{
	margin-top:16px;
}