@import url('https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

h1 {
    font-family: 'Montserrat', sans-serif;
    color: white;
  font-weight: 600;
  font-style: normal;
    text-transform: uppercase;
    text-align: center;
    font-size: 17px;
    padding: 10px 0px 10px 0px;
    background: #021d34;
}

.acordeon {
    position: relative; /* Agrega posición relativa al contenedor */
    width: 100%;
    margin: auto;
    background: #222;
    height: 300px;
    display: flex;
    overflow: hidden;
}

.content_acordeon {
    width: 0px;
    height: 100%;
    transition: width 0.9s ease;
    flex: 1;
    background: red;
    
    position: relative;
}


.content_acordeon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0%;
    filter: contrast(120%);
}

.activo {
    min-width: 150px;
    width: 480px;
    flex: none;
    transition: all 0.7s ease-out;
}

.content_titulo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    z-index: 1;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    width: 100%;
    height: 100%;
   
}

.content_titulo h3 {
    font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-style: normal;
    text-transform: uppercase;
    color: white;
    padding: 5px 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 100;
    text-shadow: 1px 2px 3px #222;
}

.activo .content_titulo {
    transition: background-color 0.9s ease-in;
    background: transparent;
    cursor: pointer;
}
.flecha{
    display: flex;
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: white;
    z-index: 2;
    background-color: red;
   height: 20px;
   width: 20px;
    padding: 7px;
    border-radius: 100%;
    border:1px solid red;
    display: none;
    transform: scale(0);
    opacity: 0;
    transition: all 0.5s ease-in-out;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.activo .flecha {
transform: scale(1);
opacity: 1;
display: flex;
align-items: center;
}

.baner_1{
    display: flex;
    margin: auto;
    padding: 10px;
    width: 90%;
    justify-content: center;
}