.toprow-gallery-bg {
	width: 100% !important;
	height: 100% !important;
	box-shadow: 0px 0px 0px 2px white inset;
	background-size: cover !important;
}
.toprow-gallery-col {
	padding: 0px;
}
.toprow-gallery-col {
	height: 500px;
}
.toprow-gallery-col .toprow-gallery-short {
	height: 250px;
}
.toprow-gallery-see-more {
	position: absolute;
	bottom: 0px;
	right: 0px;
	background-color: #FFE41E;
	padding: 7px;
}
.toprow-gallery-see-more:hover {
    cursor: pointer;
}
/*Background Transparency CSS*/
.toprow-gallery-bg {
  position: relative;
}

.toprow-gallery-bg .field {
  opacity: 0; /* Hide the .field elements by default */
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.toprow-gallery-bg:hover .field {
  opacity: 1; /* Show the .field elements on hover */
  visibility: visible;
}

.toprow-gallery-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(80, 45, 14, 0.8); /* Set the desired overlay color and opacity */
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: none;
}

.toprow-gallery-bg:hover::before {
  opacity: 1;
}

.toprow-gallery-bg > * {
  position: relative;
  /* Set other styles for child elements */
}
/*End Transparenct CSS*/
/*Text CSS*/
.toprow-gallery-bg div {
	color: #ffffff;
	padding-left: 10%;
}
.toprow-gallery-bg div:first-child {
	font-size: 1.35rem;
	font-weight: bold;
	margin-bottom: 1rem;
	padding-top: 10%;
}
.toprow-gallery-bg p {
	font-size: 19.5px !important;
}
.toprow-gallery-bg a {
	text-decoration: none !important;
	border-bottom: 1px solid #FFE41E;
	color: #ffffff;
	font-size: 19.5px !important;
}
.toprow-gallery-bg a:hover {
	border-bottom: none;
}
/*End Text CSS*/

/*Mobile Queries*/
/* Initially hide the elements with the specified IDs on mobile */
@media (max-width: 767px) {
    #toprow-gallery-col-3,
    #toprow-gallery-col-4,
    #toprow-gallery-col-5,
    #toprow-gallery-col-6 {
        display: none;
    }
    .toprow-gallery-row {
    	display: block;
    }
    .toprow-gallery-col {
    	width: 100%;
    	max-width:100%;
    }
    .toprow-gallery-short {
    	width: 50%;
    	max-width: 50%;
    	float: left;
    }
    #toprow-gallery-col-2 {
    	height: 250px;
    }
    #toprow-gallery-col-4 {
    	height: 250px;
    }
    .toprow-gallery-see-more {
    	width: 100%;
    	text-align: center;
    }
}
@media (min-width: 768px) {
	.toprow-gallery-see-more {
		display: none;
	}
}
/*End Mobile Queries*/