.dp-pannel-gallery {
	width: 100%;
}
.dp-pannel-gallery ul {
	width: 100%;
	display: table;
	table-layout: fixed;
	margin: 0;
	padding: 0;
}

.dp-pannel-gallery ul li {
	display: table-cell;
	vertical-align: bottom;
	position: relative;
	width: 16.666%;
	height: 750px;
	transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
	background-color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
}

.dp-pannel-gallery .gallery-hover-content{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 90%;
    max-width: 360px;
    margin: 0 0 0 20px;
    padding: 40px 40px 40px 0;
    background: #fff;
	opacity: 0;
	visibility: hidden;
	transition: all 300ms;
	z-index: 1;
}

.dp-pannel-gallery ul li:hover .gallery-hover-content{
	opacity: 1;
	visibility: visible;
}

.dp-pannel-gallery .gallery-hover-content h3{
	font-size: 20px;
    line-height: 20px;
}
.dp-pannel-gallery .gallery-hover-content .tt-gallery-content{
	font-size: 12px;
    line-height: 18px;
}

.dp-pannel-gallery ul li a {
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	z-index: 11;
}
.dp-pannel-gallery ul li h2.gallery-bottom-title {
	text-overflow: clip;
	font-size: 16px;
	font-weight: 600;
	line-height: 26px;
	color: #fff;
	text-shadow: 1px 2px 2px rgba(4, 4, 4, 0.3);
	text-align: center;
	position: relative;
    z-index: 10;
	margin-bottom: 60px;
}

.dp-pannel-gallery ul li:hover h2.gallery-bottom-title {
	position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    color: transparent !important;
    background-color: #fff;
    margin: 0;
    text-shadow: none;
}

.dp-pannel-gallery ul li {
	background-size: cover; 
}
.dp-pannel-gallery ul:hover li {
	width: 25%; 
}
.dp-pannel-gallery ul:hover li:hover {
	width: 75%; 
}

/*.dp-pannel-gallery ul:hover li:hover a { background: rgba(0, 0, 0, 0.4); }*/
.dp-pannel-gallery ul:hover li:hover a * {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.dp-pannel-gallery ul:hover li:hover .title * {
	opacity: 0;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
  
@media (max-width: 768px) {
	.dp-pannel-gallery ul{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.dp-pannel-gallery ul li{
		flex-basis: 50%;
		width: 50%;
	}
	.dp-pannel-gallery ul li h2.gallery-bottom-title{
		display: none;
	}
	.dp-pannel-gallery .gallery-hover-content{
		opacity: 1;
        visibility: visible;
        padding: 20px;
        bottom: 40px;
        top: auto;
        margin: 0;
        transform: none;
	}
}

/* tabs */
.dp-tabs-container {
	overflow-x: auto;
	white-space: nowrap;
	position: relative;
}
.dp-tabs {
	display: inline-flex;
	gap: 16px;
}
.dp-tab {
	display: flex;
	flex-direction: row;
    justify-content: start;
    align-items: center;
    column-gap: 20px;
    padding: 10px 20px;
    cursor: pointer;
    white-space: nowrap;
    background-color: #F7F7F7;
	border: 1px solid #EAE5ED;
	border-radius: 10px;
    transition: all 0.3s;
	min-width: 180px;
    min-height: 50px;
}
.dp-tab.dp-active {
	background-color: #35A8E0;
	color: white;
}
.dp-icon-wrapper{
	display: flex;
    justify-content: center;
    align-items: center;
}
.dp-tab-content {
	padding: 20px 0;
}
.dp-tab-inner-content {
	display: none;
}
.dp-tab-inner-content.dp-active {
	display: block;
}
.dp-tabs-container .dp-tab.dp-active .dp-tab-title{
    font-weight: 600 !important;
}
.dp-tabs-container {
	overflow-x: auto;
	white-space: nowrap;
	cursor: grab;
}
.dp-tabs-container.dp-dragging {
	cursor: grabbing;
}
.dp-tabs-container {
	overflow-x: scroll; /* Enable horizontal scrolling */
	white-space: nowrap;
	-ms-overflow-style: none; /* For Internet Explorer and Edge */
	scrollbar-width: none; /* For Firefox */
}
.dp-tabs-container::-webkit-scrollbar {
	display: none; /* For Chrome, Safari, and Opera */
}