.p-activity {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.p-activity__image {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.p-activity__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: .6;
    background: #000;
    transition: opacity linear .4s;
}

.p-activity:hover .p-activity__overlay {
    opacity: 0;
}

.p-activity.no-hover:hover .p-activity__overlay {
    opacity: 1 !important;
}

.p-activity__link {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 300;
    outline: none;
    text-decoration: none;
    line-height: 1;
}

.p-activity__content {
    color: #FFFFFF;
    z-index: 200;
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    align-self: center;
}

.p-activity:hover .p-activity__content {
    color: #fff;
}

.p-activity:hover .p-activity__content a {
    color: #fff;
}

.p-activity__content p {
    align-self: center;
    max-width: 80%;
    line-height: 1.3;
}

.p-activity__content p.links {
    text-align: left;
    margin-top: 20px;
    display: block;
    width: 80%;
}

.p-activity__content p>a {
    font-size: 14px;
    color: white;
}