
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

header {
    background: linear-gradient(
        90deg,
        rgb(255, 255, 255) 25%,
        rgb(13, 37, 172) 73%);
    color: white;
    padding: 5px 20px;
    text-align: right;
}
.logo-container{
    float: left;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.logo{
    max-width: 90px;
    height: auto;
    padding: 10px;
}
@media (max-width: 768px) {
    .logo {
        max-width: 70px;
    }
}
@media (max-width: 480px) {
    .logo {
        max-width: 60px;
    }
}

/*BARRA DE MENÚ*/
nav ul {
    list-style-type: none;
    padding: 9px;
    margin: 0;
    background-color: #0610a1;
    text-align: center;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px;
    font-size: 13px;
}

nav ul li a:hover {
    color: rgb(57, 188, 240);
    
}
/*BARRA DE MENÚ*/


/*VIDEO PRINCIPAL*/
video {
    max-width: 100%;
    height: auto;
    /* border: 2px solid #ffffff; */
}
/*VIDEO PRINCIPAL*/


/*IMAGENES INFO*/
.imagen-video .img {
    width: 1330px;
    height: 650px;
    /* border: 2px solid black; */
}
@media (max-width: 768px) {
    .imagen-video {
        width: 100%;
    }
}
/*IMAGENES INFO*/


h2 {
    text-align: center;
}
@media (max_width: 768px) {
    h2 {
        font-size: 18px;
    }
}
@media (max-width: 480px) {
    h2 {
        font-size: 16px;
    }
}

/*CARRUSEL IMAGENES*/
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

.logos {
    overflow: hidden;
    padding: 60px 0;
    background: rgba(255, 255, 255, 0);
    white-space: nowrap;
    position: relative;
}

.logos:before,
.logos::after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}

.logos:before {
    left: 0;
    background: linear-gradient(to left rgba(255, 255, 255, 0), white);
}

.logos:after {
    right: 0;
    background: linear-gradient(to right rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide {
    display: inline-block;
    animation: 50s slide infinite linear;
}

.logos-slide img {
    width: auto;
    height: 60px;
    margin: 0 40px; 
}
/*CARRUSEL IMAGENES*/


/*REDES SOCIALES CIRCULOS FLOTANTES*/
  .floating-social {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1;
  }
  
  .social-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .social-circle img {
    width: 30px;
    height: 30px; 
    /* filter: invert(1); Invert image colors for white icons */
}
  
  .social-circle:hover {
    transform: scale(1.1);
  } 
  
  /* Individual circle colors */
  
  .instagram {
    background: linear-gradient(#6228d7, #ee2a7b, #f9ce34);
  } 
/*REDES SOCIALES CIRCULOS FLOTANTES*/



/*FOOTER */
.pie-pagina{
	width: 100%;
    background: linear-gradient(
        90deg,
        rgb(13, 37, 172) 25%,
        rgb(255, 255, 255) 73%);
}
.pie-pagina .Grupo-1{
	width: 100%;
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 50px;
	padding: 40px 0px;

}
.pie-pagina .Grupo-1 .box figure{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.pie-pagina .Grupo-1 .box figure img{
	width: 100px;

}
.pie-pagina .Grupo-1 .box h2{
	color: rgb(0, 0, 0);
	margin-bottom: 25px;
	font-size: 20px;
}
.pie-pagina .Grupo-1 .box p{
	color: #000000;
	margin-bottom: 10px;

}
.pie-pagina .Grupo-1 .red-social a{
	display: inline-block;
	text-decoration: none;
	width: 45px;
	height: 45px;
	line-height: 45px;
	color: white;
	margin-right: 10px;
	background-color:rgb(0, 0, 209);
	text-align: center;
	transition: all 300ms ease;
}
.pie-pagina .Grupo-1 .red-social a:hover{
	color: rgb(0, 0, 0);
}
.pie-pagina .Grupo-2{
	background-color: rgb(0, 0, 126);
	padding: 15px 10px;
	text-align: center;
	color:#ffffff;
}
.pie-pagina .Grupo-2 small{
	font-size: 15px;
}
@media screen and (max-width:800px){
	.pie-pagina .Grupo-1{
	width: 90%;
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 30px;
	padding: 35px 0px;
	}

}
/*FOOTER*/
