#content2 {
    margin-top: 50px;
    padding: 0px 50px;
}

#content2 .item {
    margin: 25px;
    position: relative;
    height: 100%;
}

#content2 .item img {
    border-radius: 25px;
    width: 400px;
    height: 200px;
    max-height: 200px;
    object-fit: cover;
}

#content2 .item .desc {
    border-radius: 25px;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0px;
    color: white;
    width: 400px;
    height: 200px;
    max-height: 200px;
    text-align: center;
}

#content2 .item .desc h5 {
    margin-top: 10%;
    font-size: 32px;
}

#content2 .item .hidden {
    opacity: 0;
    transition: all 1s;
    background-color: #263C86;
    color: white;
    border: none;
    border-radius: 0px;
    position: absolute;
    top: 50%;
    left: 75px;
    width: 300px;
    border-radius: 25px;
}

#content2 .item .hidden:hover {
    background-color: #FF9D0E;
}

#content2 .item:hover .hidden {
    opacity: 1;
}

/* FOR LAPTOP SMALL SIZE */

@media screen and (max-width: 1320px) and (min-width: 1024px) {
    #content2 .item .desc h5 {
        margin-top: 15%;
        font-size: 24px;
    }
    #content2 .item img {
        width: 300px;
        height: 200px;
    }
    #content2 .item .desc {
        width: 300px;
        height: 200px;
    }
    #content2 .item .hidden {
        width: 200px;
        left: 50px;
    }
}

/* FOR TABLET DEVICE */

@media screen and (max-width: 1023px) and (min-width: 600px) {
    #content2 .item .desc h5 {
        margin-top: 10%;
        font-size: 20px;
    }
    #content2 .item img {
        width: 300px;
        height: 200px;
    }
    #content2 .item .desc {
        width: 300px;
        height: 200px;
    }
    #content2 .item .hidden {
        width: 200px;
        left: 50px;
        top: 40%;
    }
}

/* FOR MOBILE DEVICE */

@media screen and (max-width: 600px) {
    #content2 {
        padding: 0px;
    }
    #content2 .item .desc h5 {
        margin-top: 10%;
        font-size: 20px;
    }
    #content2 .item img {
        width: 100%;
        height: 250px;
    }
    #content2 .item .desc {
        width: 100%;
        height: 250px;
    }
    #content2 .item .hidden {
        width: 80%;
        left: 10%;
        top: 40%;
    }
    .col-sm-12 {
        margin-bottom: 25px;
    }
}