@import url('bootstrap.min.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');


body{
  font-family: "Poppins", sans-serif;
}
ul.navbar-nav.menu a {
  color: #fff;
  font-size: 1.1rem;
}
header{
  background: url('../images/bg_26.webp');
  position: relative;
  color: #fff;
  animation: moveBackground 400s infinite  linear;
}
header:before{
  background: linear-gradient(159deg, rgba(0, 51, 102, 1) 0%, rgba(15, 82, 186, 1) 100%);
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  opacity: 0.96;

}
.bloque_detalles {
    text-align: center;
    background-color: #0a3772;
    color: #ffffff;
    padding: 1rem 0;
}
.bloque_detalle {
    border-right: solid 3px;
}
.banner h1 {
    font-size: clamp(2.5rem, 4vw, 4.3rem);
    text-shadow:3px 1px 4px black;
}

.banner h2 {
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    text-shadow:3px 1px 4px black;
    color:#8FBAF2;
    font-weight:bold;
}

@keyframes moveBackground {
  0% {
    background-position: 0 0; 
  }
  100% {
    background-position: -3000px 0; 
  }
}
.ejes{
	list-style:none;
}

.ejes > li{
	position:relative;
	margin-bottom: 1rem;
	
}
.d-content {
    background-color: #0071db;
    color: #fff;
    border-radius: 10px;
    padding: 2rem 0;
    box-shadow: rgb(0 0 0 / 69%) 0px 1px 4px;
}

.ejes > li:before{
	background-image:url('../images/logo_vineta.webp');
	background-repeat:no-repeat;
	position:absolute;
	content:'';
	width: 35px;
	height: 33px;
	left: -42px;
	top: 0;
	background-size: contain;
}
footer {
    background-color: #333333;
    color: #fff;
    padding: 2rem 0;
}

.page-header h2 {
    text-align: center;
    font-weight: bold;
}