#seguros{
    margin-bottom: 50px;
}

.title_tipo{
    background: url(../images/banner_tipos.webp);
    width: 100%;
    background-size: cover;
    background-position: left center;
    position: relative;
    z-index: 1;
}

.tipo_titulo{
    text-align: center;
    margin: 50px 0px;
    font-size: 42px;
}

.tipos_flex{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.cards_tipos{
    padding: 31px 31px 31px;
    position: relative;
    margin: 15px 5px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0 10px 0 rgb(0 43 92 / 8%);
    width: 170px;
    height: 200px;
}

.cards_tipos:hover{
    box-shadow: 0px 1px 10px #5685d0;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.cards_tipos h6{
    text-align: center;
    margin-top: 5px;
}

.cards_tipos i{
    font-size: 22px;
}

@media screen and (max-width:502px){
    .title_tipo{
        background-position: 60%;
    }
}

