/* Folletos */

.folleto {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: #F26E021b;
    margin: 50px 30px;
    position: relative;
}

.folleto:hover {
    background-color: white;
    box-shadow: 0px 0px 10px 0px #F26E02;
    transition: 0.5s;
}

.folleto a {
    color: #F26E02;
}

.cuerpo-folleto {
    padding: 15px;
    font-size: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.cuerpo-folleto i {
    font-size: 50px;
}

@media (max-width: 719px) {

    .folleto {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background-color: #F26E021b;
        margin: 20px 15px;
        position: relative;
    }

    .cuerpo-folleto {
        padding: 15px;
        font-size: 14px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
    }

    .cuerpo-folleto i {
        font-size: 35px;
    }
}