/* -------------------------------- Featured Products -------------------------------- */
@media only screen and (min-width: 780px) {
    .product {
        margin-top: 75px;
        margin-bottom: 40px;
    }

    .product > h2 {
        padding: 40px 0;
        font-size: 1.5em;
        font-weight: 500;
    }

    .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .item {
        width: 300px;
        height: 300px;
        border: 2px solid #DCE2F1;
        margin: 10px;
        transition: all 1s;
        position: relative;

    }
    .item img {
        width: 200px;
        height: 200px;
    }
    .mask {
        background-color: #fff;
        position: absolute;
        top: 0;
        left: 0;
        width: 300px;
        height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        opacity: 0;
    }

    .mask a {
        text-decoration: none;
    }
    .mask a:visited{
        color: darkorchid;
        font-weight: 400;
    }

    .item:hover .mask {
        opacity: 1;
    }


}

@media only screen and (max-width: 780px){
    .product {
        margin-top: 75px;
        margin-bottom: 40px;
    }

    .product > h2 {
        padding: 40px 0;
        font-size: 1.5em;
        font-weight: 500;
    }

    .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .item {
        width: 300px;
        height: 400px;
        border: 2px solid #DCE2F1;
        margin: 10px;
        transition: all 1s;
        position: relative;
    }
    .item img {
        width: 200px;
        height: 200px;
    }
    .mask{
        margin: 20px 0;
    }
    .mask a{
        text-decoration: none;
    }
    .mask a:visited{
        color: darkorchid;
        font-weight: 400;
    }
}

footer{
    font-size: 18px;
}

