/* Default Theme */
.joimagegallery.bg-1{background: #9bcb6c;}
.joimagegallery.default .gallery-item {
    position: relative;
    padding: 10px;
	
}

.joimagegallery.default .gallery-item:hover {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.joimagegallery.default .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.joimagegallery.default .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.joimagegallery.default .gallery-overlay i {
    color: #fff;
    font-size: 24px;
}

.joimagegallery.default .row {
    margin-right: 0px;
    margin-left: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

/* Minimal Theme */
.joimagegallery.minimal .gallery-item {
    position: relative;
    padding: 5px;
    transition: transform 0.3s ease;
}

.joimagegallery.minimal .gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.joimagegallery.minimal .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.joimagegallery.minimal .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.joimagegallery.minimal .gallery-overlay i {
    color: #fff;
    font-size: 20px;
}

.joimagegallery.minimal .row {
    margin-right: 0px;
    margin-left: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

/* Elegant Theme */
.joimagegallery.elegant .gallery-item {
    position: relative;
    padding: 3px;
	overflow: hidden;
}

.joimagegallery.elegant .gallery-item:hover {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.joimagegallery.elegant .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.joimagegallery.elegant .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.joimagegallery.elegant .gallery-overlay i {
    color: #fff;
    font-size: 28px;
}


.joimagegallery.elegant .row {
    margin-right: 0px;
    margin-left: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}


.joimagegallery .jogallery-title {
  text-transform: capitalize;
}

@media (max-width: 767.98px) {
  .gw-100 .gallery-item{width:100% !important;}
  .gw-50 .gallery-item{width:50% !important;}
  .gw-30 .gallery-item{width:30% !important;}
}
