.container-listTramites{
    min-height: 50vh;
}
.containerTarjetasTramites{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem
}

.divCategoria{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.divCategoria ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.divCategoria ul li{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 8px;
    margin: 2px;
}

.divCategoria ul li a{
    background-color: #f0f8ff;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    padding: 5px;
    transition: all .3s ease;
}

.divCategoria ul li a:hover{
    background-color: #8fc8fa;
    color: #fff;
}

.btnLimpiarFiltros{
    text-decoration: none;
    color: #fff;
    background-color: #a88c3e;
    padding: 3px 10px;
    margin-left: 2.5rem;
    border-radius: 8px;
}
.btnLimpiarFiltros:hover{
    text-decoration: none;
    color: #fff;
    background-color: #E5B122;
    padding: 3px 10px;
    margin-left: 2.5rem;
    border-radius: 8px;
}

.tarjetaTramiteList{
    width: 90%;
    border-left: 1px solid #034EA2;
    border-top: 1px solid #034EA2;
    border-right: 1px dashed #333;
    border-bottom: 1px dashed #333;
    border-radius: 8px;
    color: #333;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    transition: all .3s ease;
}


.tarjetaTramiteList:hover{
    -webkit-box-shadow: 0px 0px 8px 0px rgba(54,121,235,1);
    -moz-box-shadow: 0px 0px 8px 0px rgba(54,121,235,1);
    box-shadow: 0px 0px 8px 0px rgba(54,121,235,1);
}

.bodyTarjeta{
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: .5rem
}
.separadorTarjeta{
    height: 1px;
    width: 75%;
    align-self: center;
    background-color: #034EA2;
}
.encabezadoTarjeta{
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;

}

.requisitos ul{
    list-style: none;
}

.footerTarjeta{
    background-color: #005ec9;
    height: 50px;
    width: 100%;
    border-radius: 8px;
    opacity: .9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.footerTarjeta a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: #41a6ff;
    color: #ddd;
    border: none;
    cursor: pointer;
    width: 180px;
    height: 35px;
    transition: all .3s ease;
    border-radius: 8px;
}
.footerTarjeta a:hover{
    background-color: #1d6eb6;
    color: #fff;
}

.footerTarjeta span{
    color: #333;
    background-color: #E5B122;
    padding: 10px;
    border-radius: 10px;
}

.folumarioBusqueda{
    width: 75%;
}

@media (max-width: 768px) {

.folumarioBusqueda{
    width: 100%;
}

}