/* Pagina Welcome Css3 */
/* By Alonso Developer */


.img-banner {
   width: 100%;
   height: auto;
}

/* Media queries para diferentes tamaños de pantalla */
@media (max-width: 768px) {
   .img-banner {
       width: auto;
       height: 200px;
   }
   .fuenteTitular{
      font-size: 2em;
   }
   h2{
      font-size: 2em;
   }
}

@media (max-width: 576px) {
   .img-banner {
       height: 200px;
   }
   .fuenteTitular{
      font-size: 2em;
   }
   h2{
      font-size: 2em;
   }
}


#particles-js {

   /*  background-attachment: fixed;
   background-blend-mode: soft-light; */
   /*  background-position: center;
   background-size: cover; */
   /* width: 100%;
   height: calc(100vh -70px); */
   background-color: #20417f;
   height: 110vh;
}

.color-particle{
   background-color: #20417f!important;
}

.bg-primary {
   background-color: #222
       /* #20417f */
        !important;
}

.repro {
   position: absolute;
   left: 50%;
   top: 50%;

}

.absolute {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   margin: auto;
   border: solid 0px white;
}

.relative {
   position: relative;
}

.contenedor-video2023 {
   position: relative;
   width: 100%;
   overflow: hidden;
   padding-top: 56.25%;
   /* 16:9 Aspect Ratio */
}

.responsive-iframe {

 position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

::-webkit-scrollbar {
   width: 2px;
   height: 2px;
}

::-webkit-scrollbar-button {
   width: 2px;
   height: 2px;
}

/* estilos para el repo */
div.scrollmenu {
   background-color: #F1F1F1;
   overflow: auto;
   white-space: nowrap;
}

div.scrollmenu .caja {
   border-right: solid #c7c7c7 1px;
   border-bottom: solid #c7c7c7 1px;
   display: inline-block;
   color: white;
   text-align: center;
   padding: 14px;
   text-decoration: none;

}

div.scrollmenu .caja:hover {
   background-color: #c2c2c2;
   cursor: pointer;
}
div.scrollmenu .caja:active {
   background-color: #777;
   cursor: pointer;
}

.caja-contenido-select{
   width: 245px ;
   height: 40px;
   position: relative;
   font-size: 12px;
}

.caja img {
   width: 70px;
   height: 40px;
   position: absolute;
   left: 5px;
   border-radius: 5%;
}
.caja-contenido-select span{
   position: absolute;
   right: 1px;
   width: 160px;
}
/* zoom */


/* radio */

.contenedor{
   width: 90%;
   max-width: 1200px;
   margin: auto;
}

.bg_animate{
   width: 100%;
   height: 100vh;
   
   position: relative;
   overflow: hidden;
}

.header_nav{
   width: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

.header_nav .contenedor{
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 15px 0;
}


.banner{
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 100%;
}

.banner_title h2{
   color: #fff;
   text-shadow: 1px 1px 2px #080808;
   font-size: 30px;
   font-weight: 800;
   margin-bottom: 20px;
}

.banner_title .llamanos{
   color: #fff;
   font-size: 20px;
   text-decoration: none;
   display: inline-block;
   background: #1A2849;
   padding: 20px;
}

.banner_img{
   animation: movimiento 2.5s linear infinite;
}

.banner_img img{
   display: none;
   width: 600px;
   display: block;
}

/* burbujas */

.burbuja{
   border-radius: 50%;
   background: #fff;
   opacity: .3;

   position: absolute;
   bottom: -150;
   
   animation: burbujas 3s linear infinite ;
}

.burbuja:nth-child(1){
   width: 80px;
   height: 80px;
   left: 5%;
   animation-duration: 3s;
   animation-delay: 3s;
}

.burbuja:nth-child(2){
   width: 100px;
   height: 100px;
   left: 35%;
   animation-duration: 3s;
   animation-delay: 5s;
}

.burbuja:nth-child(3){
   width: 20px;
   height: 20px;
   left: 15%;
   animation-duration: 1.5s;
   animation-delay: 7s;
}

.burbuja:nth-child(4){
   width: 50px;
   height: 50px;
   left: 90%;
   animation-duration: 6s;
   animation-delay: 3s;
}

.burbuja:nth-child(5){
   width: 70px;
   height: 70px;
   left: 65%;
   animation-duration: 3s;
   animation-delay: 1s;
}

.burbuja:nth-child(6){
   width: 20px;
   height: 20px;
   left: 50%;
   animation-duration: 4s;
   animation-delay: 5s;
}

.burbuja:nth-child(7){
   width: 20px;
   height: 20px;
   left: 50%;
   animation-duration: 4s;
   animation-delay: 5s;
}

.burbuja:nth-child(8){
   width: 100;
   height: 100px;
   left: 52%;
   animation-duration: 5s;
   animation-delay: 5s;
}

.burbuja:nth-child(9){
   width: 65px;
   height: 65px;
   left: 51%;
   animation-duration: 3s;
   animation-delay: 2s;
}

.burbuja:nth-child(10){
   width: 40px;
   height: 40px;
   left: 35%;
   animation-duration: 3s;
   animation-delay: 4s;
}


@keyframes burbujas{
   0%{
       bottom: 0;
       opacity: 0;
   }
   30%{
       transform: translateX(30px);
   }
   50%{
       opacity: .4;
   }
   100%{
       bottom: 100vh;
       opacity: 0;
   }
}

@keyframes movimiento{
   0%{
       transform: translateY(0);
   }
   50%{
       transform: translateY(30px);
   }
   100%{
       transform: translateY(0);
   }
}
/* fin radio */
/* carrusel */
div.jumbotron.carousel-hero {
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-bottom: 0;
  }
  
  /* div.jumbotron.hero-nature {
    background-image: url('74887126_2612584952121688_8115293297942986752_n.webp');
  }
  
  div.jumbotron.hero-photography {
    background-image: url('69845028_2487520521294799_753250230501113856_n.webp');
  }
  
  div.jumbotron.hero-technology {
    background-image: url('57503342_2245370222176498_3197964642089435136_n.webp');
  } */
  
  h1.hero-title, h2.hero-title, h3.hero-title {
    text-shadow: 0 3px 3px rgba(0,0,0,0.4);
    color: #fff;
  }
  
  p.hero-subtitle {
    max-width: 600px;
    margin: 25px auto;
    padding: 10px 15px;
    color: #fff;
  }
/* fin del carrusel  */