*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand',sans-serif;
}
/*body{
   /* display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(45deg, green, yellow);
    background-attachment: fixed;
}*/

.contenedor1{
 position: relative;
 width: 100%;
 padding: 20px;
 display: flex;
 justify-content: center;
 align-items: center;
 flex-wrap: wrap;
}

.contenedor1 .tarjeta{
position: relative;
width: 300px;
height: 420px;
background: #fff;
margin: 20px;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
transition: 0.5s;
}



.contenedor1:hover .tarjeta{
    fill: blur(20px);
    transform: scale(0.9);
    opacity: 0.5;
}
.contenedor1 .tarjeta:hover{
    fill: blur(0px);
    transform: scale(1.1);
    opacity: 1;
}


.contenedor1 .tarjeta .circulo{
    position: relative;
    width: 100%;
    height: 100%;
   background: linear-gradient(45deg, green, yellow);
    clip-path: circle(180px at center 0);
    text-align: center;
}

.contenedor1 .tarjeta .circulo h2{
    color: #fff;
    font-size: 4.5em;
    padding: 30px 0;
}

.contenedor1 .tarjeta .contenido{
    position: absolute;
    bottom: 10px;
   padding: 20px;
    text-align: center;
}

.contenedor1 .tarjeta .contenido p{
    color: black;
    text-align: justify;
    font-size: 14px;
}

.contenedor1 .tarjeta .contenido a{
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background:  rgb(107, 223, 57);
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    margin-top: 20px;
}


.ti_poli h3{
    color: green;
    font-size: 2.5em;
    padding: 30px 0;
    margin-bottom:35px;
    text-align: center;
    
}




@media only screen and (max-width: 991px)
{
	.contenedor1
	{
        display: block;
        margin-left: 160px;		
	}
}


@media only screen and (max-width: 555px)
{
	.contenedor1
	{
        display: block;
        margin-left: 70px;	
	}
}

.titulo_politica2{
    color: #068e08;
    font-size: 47px;
    text-align: center;

    font-weight: bold; /*color de letra del slider-------------------- */
      text-shadow: 2px 4px 6px grey;
}