#particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: transparent; /* opcional: puedes dar un fondo aquí si quieres */
}
.container-img{
display: flex;
position: relative;
overflow: hidden;
width: 100%;
min-height: 800px;
justify-content: space-evenly;
background: linear-gradient(180deg, #f0f4f8 0%, #d9e4f5 100%);






flex-direction: column;
}
.container-img .put-title{
    display: flex;
    width: 100%;
    height: 15%;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 50px;
    color: #006EA1;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 600;
}
.container-img .put-card{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 10px;
}
.put-card .card{
    display: flex;
    width: 270px;
    height: 550px;
    align-items: center;
    justify-content: space-evenly;
   
    flex-direction: column;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 30px;
    font-weight: 600;
        color: #006EA1;
}
.card .sede-img{
    width: 250px;
    height: 240px;
    border: solid #006EA1;;
    background-color: white;
    border-radius: 50%;
    transition: 0.5s;
 box-shadow: 21px 17px 42px 6px rgba(0,0,0,0.75);
}
.sede-img:hover{
transform: scale(1.2);
cursor: pointer;

}
