/** SMISTAMENTO IMPRESE **/
#container_box_imprese {
    box-sizing: border-box;
    width: 960px;
    margin: 20px auto 80px;
}
#container_box_imprese .box {
    position: relative;
    display: block;
    float: left;
    box-sizing: border-box;
    width: 300px;
    margin: 0 30px 30px 0;
    padding: 0 0 80px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: #FFF;
    box-shadow: 0px 0px 10px rgba(91, 112, 86, 0.25);
}
#container_box_imprese .box:nth-child(3n+3) {
    margin: 0 0 30px;
}
#container_box_imprese .box:hover, #container_box_imprese .box:active, #container_box_imprese .box:focus {
    text-decoration: none;
}
#container_box_imprese .box .immagine {
    position: relative;
    width: 100%;
    height: 150px;
    margin: 0 0 15px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
#container_box_imprese .box .hover {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    transition: all 0.3s ease;
    opacity: 0;
    background: #985BA1;
}
#container_box_imprese .box:hover .hover, #container_box_imprese .box:active .hover,
#container_box_imprese .box:focus .hover {
    opacity: 0.4;
}
#container_box_imprese .box h2 {
    font-family: "Bree Serif", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
    display: block;
    box-sizing: border-box;
    margin: 0 15px;
    padding: 0;
    color: #333;
}
#container_box_imprese .box p {
    font-size: 16px;
    font-weight: 300;
    line-height: 19px;
    display: block;
    box-sizing: border-box;
    margin: 10px 15px 0;
    color: #333;
}
#container_box_imprese .box .fondo {
    position: absolute;
    z-index: 1;
    right: 12px;
    bottom: 0;
    left: 12px;
    width: auto;
    height: 60px;
}
#container_box_imprese .box .fondo .pulsante {
    font-family: "Bree Serif", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    display: inline-block;
    box-sizing: border-box;
    padding: 6px 20px 10px 15px;
    text-align: center;
    color: #FFF;
    background: #985BA1;
}
#container_box_imprese .box:hover .fondo .pulsante, #container_box_imprese .box:active .fondo .pulsante,
#container_box_imprese .box:focus .fondo .pulsante {
    background: #45294A;
}
#container_box_imprese .box .fondo .pulsante svg {
    margin: 0 0 0 15px;
}
@media screen and (max-width: 1020px) {
    #container_box_imprese {
        width: 630px;
    }
    #container_box_imprese .box:nth-child(3n+3) {
        margin: 0 30px 30px 0;
    }
    #container_box_imprese .box:nth-child(2n+2) {
        margin: 0 0 30px;
    }
}
@media screen and (max-width: 670px) {
    #container_box_imprese {
        width: auto;
        margin: 20px 20px 50px;
    }
    #container_box_imprese .box {
        float: none;
        width: auto;
        margin: 0 0 30px;
    }
    #container_box_imprese .box:nth-child(3n+3),
    #container_box_imprese .box:nth-child(2n+2) {
        margin: 0 0 30px;
    }
}