body {
  padding-top: 6.5rem;
  /* Ajusta este valor según la altura de tu header */
}




/* css header */
 /* Estilos personalizados para la barra de navegación */
 .navbar-nav a {
  position: relative;
  color: #000; /* Color del texto */
  text-decoration: none;
  padding: 10px 15px;
  transition: color 0.3s ease;
}

/* Hover y focus */
.navbar-nav a:hover,
.navbar-nav a:focus {
  color: #007bff; /* Cambia por el color deseado */
}

/* Pseudo-elementos para hover y activo */
.navbar-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: transparent;
  transition: background-color 0.3s ease, width 0.3s ease;
}

/* Cambiar color del pseudo-elemento en hover */
.navbar-nav a:hover::after,
.navbar-nav .current-menu-item a::after {
  background-color: #007bff; /* Color de la línea activa */
  width: 100%;
}

/* Destacar el enlace activo */
.navbar-nav .current-menu-item a {
  font-weight: bold;
  color: #007bff; /* Cambia por el color deseado */
}


.color-navbar {
  background-color: white;
}

.azul {
  background-color: #253782;
}

a {
  text-decoration: none;
}

.barra a,
.barra i {
  color: white;
}

.barra spam {
  color: rgb(255, 251, 2);
}

.barra {
  height: 58px;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}


.navbar-nav {
  gap: 30px;
}

.collapse a {
  float: left;
  display: block;
  color: #253782;
  text-align: center;
  padding-bottom: 3px;
  /* Añade un padding para compensar el borde */
}



/* Ocultar barra en dispositivos móviles */
@media (max-width: 768px) {

  .barra,
  .ocultar {
    display: none;

  }


  .main-navigation ul {
    flex-direction: column;
    gap: 10px;
  }


}

/* Ajustar logo */
.site-branding {
  width: 140px;
  height: 50px;
  flex-shrink: 0;
}

.menu li {
  display: flex;
  height: 20px;

  align-items: center;
  justify-content: center;

}

.main-navigation {
  font-size: 20px;
}

.main-navigation ul li {
  height: 50px;

  margin-top: 5px;
  /* Margen superior */
  margin-bottom: 5px;
  /* Margen inferior */
}

/* Estilo inicial del menú con fondo transparente y texto blanco */


.main-navigation ul li a {
  color: rgb(0, 0, 0);
  /* Color inicial del texto */
  padding: 10px 15px;
  /* Espacio interno estilo botón */
  display: block;

}

/* Estilo al pasar el mouse: fondo azul y texto amarillo */
.main-navigation ul li:hover {
  background-color: blue;
  /* Fondo azul estilo botón al pasar el mouse */

}

.main-navigation ul li:hover a {
  color: yellow;
  /* Texto amarillo al pasar el mouse */
}


/* fin css header */


/* inicio footer */
/* Estilos para el menú en el footer */

aside {
  bottom: 0;
}

.background-footer {
  background-color: #253782;
}

.img-footer {
  width: 100%;
  margin: 10px;
}

.footer-menu .nav {
  list-style-type: none;
  padding-left: 0;
}

.footer-menu .nav-item {
  margin-bottom: 10px;
  /* Espacio entre enlaces */
}

.footer-menu a {
  text-decoration: none;
  color: #333;
  /* Color del texto */
}

.footer-menu a:hover {
  color: #007bff;
  /* Color al hacer hover */
}

.bi {
  color: white;
}

.bi:hover {
  color: #007bff;
}

/* termino footer */



/**********************/

.logo {
  height: 80px;
}

/*===========================
  teams css MATIAS
===========================*/


.btn-primary:hover {
  color: #ffffff;
}

.team-style-one {
  position: relative;
  margin-top: 30px;
  box-shadow: var(--shadow-2);
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.team-style-one:hover {
  box-shadow: var(--shadow-4);
}

.team-style-one .team-image img {
  width: 100%;
}

.team-style-one .team-content {
  padding: 20px 15px;
  width: 100%;
  background-color: var(--white);
}

.team-style-one .team-content .name {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-style-one .team-content .name {
    font-size: 20px;
  }
}

.team-style-one .team-content .sub-title {
  font-size: 15px;
  line-height: 24px;
  color: var(--dark-3);
  margin-top: 2px;
  display: block;
}

.team-style-one .team-content .social {
  margin-top: 12px;
}

.team-style-one .team-content .social li {
  display: inline-block;
  margin: 0 4px;
}

.team-style-one .team-content .social li a {
  font-size: 16px;
  color: var(--gray-1);
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 35px;
  border: 1px solid var(--gray-4);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.team-style-one .team-content .social li a:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: transparent;
}

.text a {
  color: white;
}

.text a:hover {
  color: #FAF717;
}

/*===========================
  teams css FINAL MATIAS
===========================*/




/*===========================
  CSS FABIAN
===========================*/
.img2 {

  height: 10%;
}

.imagen-talleres {
  height: auto;
  border-radius: 40px;

}


.cuadrado {
  background-color: #253782;
  color: white;
  padding: 20px;
  border-radius: 17px;
  font-size: 20px;
}

.cuadrado2 {
  background-color: #345DFF;
  color: white;
  padding: 20px;
  border-radius: 17px;
  font-size: 15px;
}

.banner {
  height: 600px;
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner .overlay-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 0, 0, 0.5);
  z-index: 3;
}

.titulo {
  color: white;
  font-weight: 500;
  padding: 18px;
  text-align: center;
  border-radius: 20px;

}


.parrafo.aos-init.aos-animate {
  padding: 50px;
}

.imagen-colegio {
  height: auto;
  max-width: 90%;
}



/* Estilos para la página 404 */
.container-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  padding: 20px;
}

.error-code {
  font-size: 100px;
  color: #ff6b6b;
  margin: 0;
}

.error-message {
  font-size: 24px;
  color: #333;
}

.error-description {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}

.error-buttons {
  margin-top: 20px;
}

.btn-home,
.btn-contact {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn-home:hover,
.btn-contact:hover {
  background-color: #2980b9;
}

/*  fin Estilos para la página 404 */


a :visited {
  color: white;
}

.parrafo {
  border: 1px solid white;
  padding: 30px;
  border-radius: 30px;
}



.imagen-historia {
  border-radius: 44px;
}

.container-fluid.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.container-fluid.banner .titulo {
  position: relative;
  z-index: 2;
  color: #fff;
}

.container-fluid.banner {
  background-image: url('<?php echo wp_get_attachment_url(get_post_thumbnail_id($post->id));?>');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  
}

.wallpaper {
  width: 100%;
}

.wp-block-video {
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.logo-footer{
  width: 200px;
}