@charset "utf-8";

.header {
    width:50%;
    margin:0 auto;
}

.header h3 {
    text-align:center;
}

.block-title p {
    margin:0 0 0;
    text-align:left;
}

.item {
    max-width: 500px;
/*  margin: 0 auto; */
    position: relative;
    &:hover .item__text {
        opacity: 1;
    }
    .item__img {
        width: 100%;
        height: 100%;
    }
    .item__text {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        text-align: center;
        color: #000;
        background-color: rgba(255,255,255,0.8);
        transition: .3s ease-in-out;
        opacity: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        p {
            line-height: 1.8;
        }
    }
}