*{
  margin: 0;    
  padding: 0;
}

.contenedor_carga{
  background-color: rgb(255, 255, 255);
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  transition: all 1.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carga,
.carga:before,
.carga:after{
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  animation: carga 1.5s infinite ease-in-out;
}

.carga{
  color: rgb(0, 0, 0);
  font-size: 13px;
  position: relative;
  animation-delay: -0.16s;
}

.carga:before,
.carga:after{
  content: '';
  position: absolute;
  top: 0;
}

.carga:before{
  left: -3.5em;
  animation-delay: -0.32s;
}

.carga:after{
  left: 3.5em;
}

@keyframes carga{
  0%,
  80%,
  100%{
      box-shadow: 0 2.5em 0 -1.3em;
  }
  40%{
      box-shadow: 0 2.5em 0 0em;
  }
}


* {
    margin: 0px;
    padding: 0px;
  }
  
  
  
  body {
    background-image: url('imagenes/bei.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
  }
  
  .contenedor {
    background: rgb(255, 255, 255, 0.50);
    text-align: center;
    color: rgb(3, 2, 0);
    padding: 10px;
    border-radius: 25px;
    border: 4px double rgb(214, 214, 214);
    opacity: 0,9;
  }

  .contene {
    background: rgb(0,0,0, 0.50);
    text-align: center;
    color: rgb(3, 2, 0);
    padding: 10px;
    border-radius: 25px;
    border: 4px double rgb(214, 214, 214);
    opacity: 0,9;

  }


  .sup1{
    background-color:  #ffffff;
    text-align: center;
    color: rgb(3, 2, 0);
    padding: 2px;
    border-start-start-radius: 25px;
    border-start-end-radius: 25px;
    border: 3px double rgb(214, 214, 214);
  }
  .sup2{
    background-color:  #ffffff;
    text-align: center;
    color: rgb(3, 2, 0);
    padding: 2px;
    border-end-start-radius: 25px;
    border-end-end-radius: 25px;
    border: 3px double rgb(214, 214, 214);
  }
  
  #carrusel{
    width: 900px;
    height: 510px;
    margin: 10px auto 0;
    overflow: hidden;
    background: rgb(255, 255, 255, 0.50);
    text-align: center;
    color: rgb(3, 2, 0);
    padding: 0px;
    border-radius: 25px;
    border: 7px double rgb(214, 214, 214);
    opacity: 0,9;
  }

  #carrusel ul{
    display: flex;
    padding: 0;
    width: 400%;
    animation: slide 30s infinite alternate ease-in-out;
  }
  
  #carrusel li {
    width: 100%;
    list-style: none;
    position: relative;
  }

  #texto{
    position: absolute;
    text-align: center;
    padding: 0 50px;
    top: 150px;
    color: #ffffff;
  }

  #texto1{
    position: absolute;
    text-align: center;
    padding: 0 250px;
    top: 150px;
    color: #ffffff;
  }

  #texto h2{
    font-size: 45px;
    margin-bottom: 35px;
  }

  #carrusel img{
    width: 100%;
  }

  .titulo{
    text-align: center;
    font-size: 40xp;
    padding-top: 50px;
  }

  @keyframes slide {
    0%{ margin-left: 0;}
    20%{ margin-left: 0;}

    25%{ margin-left: -100%;}
    45%{ margin-left: -100%;}
    
    55%{ margin-left: -200%;}
    70%{ margin-left: -200%;}

    75%{ margin-left: -300%;}
    100%{ margin-left: -300%;}
  }
