#content3 {
    margin-bottom: 50px;
}

#content3 .title {
    color: #263C86;
    text-align: center;
    margin-bottom: 25px;
}

#content3 .banner img {
    width: 100%;
    filter: grayscale(100%);
    transition: all 0.5s;
}

#content3 .item-banner {
    position: relative;
    cursor: pointer;
    padding: 0px !important;
}

#content3 .item-banner:hover img {
    filter: grayscale(0%);
}

#content3 .item-banner.active img {
    filter: grayscale(0%);
}

#content3 .item-banner .overlay {
    position: absolute;
    top: 0px;
    text-align: center;
    padding: 25px;
    padding-top: 50%;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: all 0.5s;
}

#content3 .item-banner .overlay.active {
    opacity: 1;
}

/* FOR LAPTOP SMALL SIZE */

@media screen and (max-width: 1320px) and (min-width: 1024px) {
    #content3 .overlay h1 {
        font-size: 24px;
    }
}

/* FOR TABLET DEVICE */

@media screen and (max-width: 1023px) and (min-width: 600px) {
    #content3 .overlay h1 {
        font-size: 24px;
    }
    #content3 .item-banner .overlay {
        padding: 15px;
        padding-top: 25%;
    }
    #content3 p {
        font-size: 14px;
    }
}

/* FOR MOBILE DEVICE */

@media screen and (max-width: 600px) {}