.title2 label {
    border-radius: 25px;
    background-color: var(--TGreen);
}
.galleryItem .overlay{
    font-size: 16px;
    display: flex;
    background-color: rgba(49, 49, 49, 0.75);
    position: absolute;
    width: 100%;
    height: 100%;
    align-items: center;
    padding: 8px;
    justify-content: center;
    color: #fff;
    opacity: 0;
    z-index: 1;
}
.cardImgGallery:hover .overlay {
    opacity: 1;
} 

.galleryItem{ cursor: pointer;}
.galleryItem .cardImgGallery {
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
}
.galleryItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.galleryItem iframe{
    width: 100%;
    height: 100%;
    background-color: #000;
}