
.custom-gallery-slide {
	 position: relative;
  display: flex;
  flex-wrap: wrap;
    justify-content: space-between;padding: 33px 0;
}
.gal-left {
width: 23%;
  padding: 20px;
}

.gallery-content p {
    font-size: 16px;
    margin-bottom: 5px;
}

.gallery-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.gallery-content a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
}

.gal-mid {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;margin-left: auto;
}

.gal-mid img {
    max-width: 100%;
    height: auto;
  width: 100%;
}

.gal-right {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}
.gal-right {
  align-items: flex-end;
  position: absolute;
  right: 20px;
  bottom: 5%;
}
.gallery-navigation {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.gallery-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.gallery-nav-arrow.left {
    left: 20px; 
	background: #000;
}

.gallery-nav-arrow.right {
    right: 20px; /* Adjust as needed for spacing */
	background: #000;
}

.gallery-nav-arrow:hover {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.gallery-nav-button {
    padding: 5px 10px;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
	color: #000;
}

.gallery-nav-button[disabled] {
    background-color: #0073aa;
    color: #fff;
    cursor: not-allowed;
}
#active-slide {
  font-size: 40px;
  padding-right: 10px;color: rgb(204, 204, 204);
}
#total-slides {
  font-size: 40px;
	padding-left: 10px;
	color: rgb(204, 204, 204);
}
.gallery-pagination {
  position: absolute;
  bottom: 0px;color: rgb(204, 204, 204);
}