.slider-area
{
    z-index: 0;
}
.footer_area
{
    z-index: 0;
}
/*********** main 1 ********/
.main1
{
    margin-top: 80px;
    width: 100%;
    padding-bottom: 80px;
}
.contenedor_main1
{
    width: 90%;
    margin: auto;
    max-width: 1500px;
}
.titulo
{
    color: #289bc9;
    font-weight: bold;
    font-size: 45px;

}
.contenedor_col50
{
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}
.col50:nth-child(1)
{
    display:flex;
    justify-content: center; /*centr de manera vertical**/
    align-items: center; /*centr de manera horizontal**/
   
}

.contenedor_boton
{
    margin-top: 10px;
}
.boton
{
    background-color: #289bc9;
    padding: 7px 12px 7px 12px;
    color: white;
    border-radius: 4px;
    border: 1px solid #289bc9;
    cursor: pointer;
}
.boton:hover
{
    background-color: white;
    color:  #289bc9;
}
@media (min-width: 980px)
{
    .contenedor_col50
    {
        grid-template-columns: 1fr 1fr;
    }
    
}

/*************main 2 **********/
.main2
{
    background-color: #f3f3f3;
    width: 100%;
    padding-top: 70px;
    padding-bottom: 70px;
}
.contenedor_main2
{
    width: 90%;
    margin: auto;
    max-width: 1500px;
}
.contenedor_subtitulo .subtitulo
{
    text-align: center;
    color: #289bc9;
    font-weight: bold;
}
.contenedor_cajas
{
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    margin-top: 30px;
}
.caja_25
{
    text-align: center;
    margin-bottom: 20px;
}
.contenedor_img
{
    display: flex;
    justify-content: center;
}
.img_descripcion
{
    width: 240px;
    height: 120px;
}

.texto
{
    width: 70%;
    margin: auto;
}

.caja_25 .subtitulo
{
    margin-top: 10px;
    margin-bottom: 10px;
    color: #289bc9;
}

@media (min-width: 600px)
{
    .contenedor_cajas
    {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1180px)
{
    .contenedor_cajas
    {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .contenedor_subtitulo .subtitulo
    {
        font-size: 30px;
    }
}

/*********main 3 **********/
.main3
{
    width: 100%;
    padding-top: 70px;
    padding-bottom: 70px;
}
.contenedor_main3
{
    width: 90%;
    max-width: 1400px;
    margin: auto;
    
}
.main3 .subtitulo
{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.contenedor_cajas_info
{
    /*background-color: aqua;*/
    padding-top: 30px;   
}
.check
{
    width: 20px;
    height: 20px;
    margin-right: 5px;

}
.contenedor_img2
{
    display: flex;
    justify-content: center;
    align-items: center;
}
.caja25 h4
{
    color: #289bc9;
    text-align: center;
    margin-bottom: 10px;
}
.descripcion
{
    display: flex;
    flex-direction: row;
        flex-flow: nowrap;
}
@media (min-width:700px)
{
    .contenedor_cajas_info
    {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 1000px;
    }
}
@media (min-width:980px)
{
    .contenedor_main3
    {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

/*********  main 4 *********/
.main4
{
    width: 100%;
    background-color: #f3f3f3;
    padding-top: 70px;
    padding-bottom: 70px;
}
.contenedor_main4
{
    width: 80%;
    margin: auto;
    max-width: 1500px;
    padding-bottom: 30px;
}
.contenedor_main4 .subtitulo
{
    text-align: center;
    color: #289bc9;
    font-weight: bold;
}
.descripcion_subtitulo
{
    text-align: center;
}
.contenedor_cartas
{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    /*min-height: 100vh;*/
    /*background: rgb(9,74,136);*/
}

.card
{
    position: relative;
    width: 300px;
    height: 350px;
    margin: 20px;
}

.card .face
{
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    /*border-radius: 6px;*/
    overflow: hidden;
    transition: .5s;
}

.card .front
{
    transform: perspective(600px) rotateY(0deg);
    box-shadow: 0 5px 10px #000;
}

.card .front img
{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;       
}

.card .front h3
{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 45px;
    line-height: 45px;
    color: #fff;
    background: rgba(0,0,0,.4);
    text-align: center;
}

.card .back
{
    transform: perspective(600px) rotateY(180deg);
    background: #EDEDED;
    padding: 15px;
    color: #f3f3f3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    box-shadow: 0 5px 10px #000;
}

.card .back .link
{
    border-top: solid 1px #f3f3f3;
    height: 50px;
    line-height: 50px;
}

.card .back .link a
{
    color: black;
}

.card .back h3
{
    font-size: 30px;
    margin-top: 20px;
    letter-spacing: 2px;
}

.card .back p
{
    letter-spacing: 1px;
}
/*
.card:hover .front
{
    transform: perspective(600px) rotateY(180deg);
}

.card:hover .back
{
    transform: perspective(600px) rotateY(360deg);
}
*/

/*

https://www.rapifac.com/#beneficios

*/





























