/* =========================
    Service Styles
========================== */

.dt-sc-service-item .dt-sc-content-item {
	display: grid;
	align-items: end;
}

.dt-sc-service-item .dt-sc-content-item .dt-sc-content-media-group .dt-sc-service-list-image {
	position: relative;
	overflow: hidden;
	transform-style: preserve-3d;
}

.dt-sc-service-item .dt-sc-content-item .dt-sc-content-media-group .dt-sc-service-list-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	transform-origin: left center;
	will-change: transform;
	transition: var(--wdt_Booking_Ad-Transition);
	-webkit-transition: var(--wdt_Booking_Ad-Transition);
}

.dt-sc-service-item .dt-sc-content-item:hover .dt-sc-content-media-group .dt-sc-service-list-image img {
	transform: scale(1);
	-webkit-transform: scale(1);
}

.dt-sc-service-item .dt-sc-content-item .dt-sc-content-media-group .dt-sc-service-list-image:before {
	content: "";
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	background-image: linear-gradient(to top, rgb(var(--wdt_Booking_SecondaryColorRgb), 1) 0%, transparent 100%);
	pointer-events: none;
	z-index: 1;
}

.dt-sc-service-item .dt-sc-content-item>div {
	grid-area: 1/-1;
}

.dt-sc-service-item .service-details {
	text-align: left;
	width: 100%;
	padding: 30px clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem); /*30px - 20px*/
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	flex-wrap: wrap;
	flex-direction: column;
	color: var(--wdt_Booking_AccentTxtColor);
	z-index: 1;
}

.dt-sc-service-item .service-details>.dt-sc-content-group>div:not(:last-child) {
	margin: 0 0 16px;
}


.dt-sc-service-item .service-details .dt-sc-content-title .dt-sc-service-title {
	margin: 0;
}

.dt-sc-service-item .dt-sc-content-item .dt-sc-content-detail-group .dt-sc-content-title .dt-sc-service-title a {
	color: var(--wdt_Booking_AccentTxtColor);
}

.dt-sc-service-item .dt-sc-content-item .dt-sc-content-detail-group .dt-sc-content-title .dt-sc-service-title a:hover {
	color: rgb(var(--wdt_Booking_AccentTxtColorRgb), 0.6);
}

.dt-sc-service-item .dt-sc-content-item .dt-sc-content-detail-group .dt-sc-content-button a.dt-sc-button {
	color: var(--wdt_Booking_AccentTxtColor);
	margin: 20px 0 0;
}

.dt-sc-service-item .dt-sc-content-item .dt-sc-content-detail-group .dt-sc-content-button a.dt-sc-button:hover,
.dt-sc-service-item .dt-sc-content-item .dt-sc-content-detail-group .dt-sc-content-button a.dt-sc-button:focus {
	color: rgb(var(--wdt_Booking_AccentTxtColorRgb), 0.6);
}

.dt-sc-service-item .dt-sc-content-item .dt-sc-content-detail-group .dt-sc-content-button {
	display: inline-flex;
}

.dt-sc-service-duration-item:has(+ .dt-sc-service-price-item) {
	padding-bottom: 10px;
	border-bottom: 1px dashed var(--wdt_Booking_BorderColor);
}

.dt-sc-service-item .dt-sc-content-media-group .dt-sc-service-price-item {
	position: absolute;
	top: 10px;
	right: 10px;
}

.dt-sc-service-item .dt-sc-content-media-group { position: relative; }

.dt-sc-service-item .dt-sc-content-media-group .dt-sc-service-price-item .dt-sc-service-price {
	display: inline-block;
	font-weight: var(--wdtFontWeight_Alt, 400);
    letter-spacing: normal;
    font-family: var(--wdtFontTypo_Alt);
    font-size: var(--wdtFontSize_Base);
    background: var(--wdt_Booking_SecondaryColor);
	color: var(--wdt_Booking_AccentTxtColor);
    padding: 10px 20px;
}


.dt-sc-service-meta ul {
	padding: 0px;
	margin: 0px;
	list-style-type: none;
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 20px;
}

.dt-sc-service-meta ul .dt-sc-service-meta-item {
	line-height: var(--wdtLineHeight_Base, 1.5);
	padding: 0;
	display: inline-flex;
    align-items: center;
}

/* .dt-sc-service-meta ul .dt-sc-service-meta-item:not(:last-child) {
	margin-right: 20px;
} */

.dt-sc-service-meta ul .dt-sc-service-meta-item .dt-sc-service-meta-title {
	font-weight: 600;
	margin-right: 10px;
}

.dt-sc-service-meta ul .dt-sc-service-meta-item:before {
	content: '';
    display: inline-block;
    position: relative;
    top: 9px;
    width: 6px;
    height: 6px;
    margin-right: 10px;
    background: var(--wdt_Booking_PrimaryColor);
    align-self: flex-start;
}

/* .dt-sc-service-meta ul .dt-sc-service-meta-item:after {
	content: "";
    position: relative;
    display: inline-flex;
    margin: 0 20px;
    width: 1px;
    height: 16px;
    background: var(--wdt_Booking_BorderColor);
} */

.dt-sc-service-item .service-details .dt-sc-content-group {
	transform: translateY(40px);
	transition: var(--wdt_Booking_Ad-Transition);
	-webkit-transition: var(--wdt_Booking_Ad-Transition);
	transition-delay: 50ms;
	-webkit-transition-delay: 50ms;
}

.dt-sc-service-item .service-details .dt-sc-content-button {
	transform: translateY(50px);
	opacity: 0;
	transition: var(--wdt_Booking_Ad-Transition);
	-webkit-transition: var(--wdt_Booking_Ad-Transition);
	transition-delay: 0;
	-webkit-transition-delay: 0;
}


.dt-sc-service-item:hover .service-details .dt-sc-content-group {
	transform: translateY(0);
	-webkit-transform: translateY(0);
	transition-delay: 0;
	-webkit-transition-delay: 0;
}

.dt-sc-service-item:hover .service-details .dt-sc-content-button {
	transform: translateY(0);
	-webkit-transform: translateY(0);
	opacity: 1;
	transition-delay: 100ms;
	-webkit-transition-delay: 100ms;
}



/* =========================
    Service Archives
========================== */

.dt-sc-service-container[class*="dt-column-"] {
	display: grid;
	gap: 40px;
}

.dt-sc-service-container.dt-column-4 {
	grid-template-columns: repeat(4, 1fr);
}

.dt-sc-service-container.dt-column-3 {
	grid-template-columns: repeat(3, 1fr);
}

.dt-sc-service-container.dt-column-2 {
	grid-template-columns: repeat(2, 1fr);
}

.dt-sc-service-container .dt-sc-service-item .dt-sc-content-elements-group {
	display: grid;
}

.dt-sc-service-container .dt-sc-service-item .dt-sc-content-elements-group .dt-sc-service-list-image,
.dt-sc-service-container .dt-sc-service-item .dt-sc-content-elements-group .dt-sc-service-price-item {
	grid-area: 1/-1;
}

.dt-sc-service-container .dt-sc-service-item .dt-sc-content-elements-group .dt-sc-service-price-item {
	place-self: end;
	padding: 8px 14px;
	margin: 10px;
	background: var(--wdt_Booking_PrimaryColor);
	color: var(--wdt_Booking_AccentTxtColor);
	font-weight: var(--wdtFontWeight_Base);
}


/* =========================
    Staff Styles
========================== */

.dt-sc-staff-item {
	width: 100%;
	display: inline-block;
	transition: var(--wdt_Booking_Ad-Transition);
	-moz-transition: var(--wdt_Booking_Ad-Transition);
	-webkit-transition: var(--wdt_Booking_Ad-Transition);
}

.dt-sc-staff-item .social-media .dt-sc-team-social li .wdt-icon-ext-x-icon::before{font-family: "wdt-ext-icon";}

.dt-sc-staff-item .image {
	display: grid;
	place-items: end;
}

.dt-sc-staff-item .image .dt-image-item {
	overflow: hidden;
	transform-style: preserve-3d;
}

.dt-sc-staff-item .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transform-origin: left center;
	will-change: transform;
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	transition: var(--wdt_Booking_Ad-Transition);
	-webkit-transition: var(--wdt_Booking_Ad-Transition);
}

.dt-sc-staff-item:hover .image img {
	transform: scale(1);
	-webkit-transform: scale(1);
}

.dt-sc-staff-item .image>a,
.dt-sc-staff-item .image>.dt-sc-staff-overlay {
	grid-area: 1/-1;
	width: 100%;
	height: 100%;
}

.dt-sc-staff-item .image>.dt-sc-staff-overlay {
	align-content: end;
	text-align: center;
	padding: 30px;
	position: relative;
}

.dt-sc-staff-item .dt-sc-staff-details {
	text-align: left;
	width: 100%;
	padding-top: 24px;
}

.dt-sc-staff-item .dt-sc-staff-details>div:not(:last-child) {
	margin: 0 0 10px;
}

.dt-sc-staff-item .dt-sc-staff-details .dt-sc-content-title .dt-sc-staff-title {
	margin: 0px;
}

.dt-sc-staff-item .dt-sc-staff-details .dt-sc-staff-role {
	color: var(--wdt_Booking_BodyTxtColor);
	font-size: calc(var(--wdtFontSize_Base) - 2px);
	letter-spacing: var(--wdt_Booking_LetterSpacing_2X);
	font-weight: var(--wdtFontWeight_Ext);
	text-transform: uppercase;
}

/* Type - I */

.dt-sc-staff-item.type1 .image>.dt-sc-staff-overlay .dt-sc-team-social {
	max-width: 100%;
	padding: 0;
	transition: var(--wdt_Booking_Ad-Transition);
	display: inline-flex;
	gap: 10px;
	flex-direction: column-reverse;
}

.dt-sc-staff-item.type1 .image>.dt-sc-staff-overlay .dt-sc-staff-social-container {
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-end;
	gap: 10px;
	height: 100%;
}

.dt-sc-staff-item.type1 .image>.dt-sc-staff-overlay .dt-sc-staff-social-container .social-media {
	text-align: right;
}

.dt-sc-staff-item.type1 .image>.dt-sc-staff-overlay .dt-sc-staff-social-container .toggle-social-icons {
	width: 40px;
	height: 40px;
	background-color: var(--wdt_Booking_AccentTxtColor);
	color: var(--wdt_Booking_SecondaryColor);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--wdt_Booking_BaseTransition);
	-webkit-transition: var(--wdt_Booking_BaseTransition);
	font-size: calc(var(--wdtFontSize_Base) - 4px);
	box-shadow: 0 0 6px rgb(var(--wdt_Booking_SecondaryColorRgb), .3);
}

.dt-sc-staff-item.type1 .image>.dt-sc-staff-overlay .dt-sc-staff-social-container .toggle-social-icons:hover,
.dt-sc-staff-item.type1 .image>.dt-sc-staff-overlay .dt-sc-staff-social-container:has(.wdt-active) .toggle-social-icons,
.dt-sc-staff-item.type1 .image .social-media.wdt-active .dt-sc-team-social li a:hover{
	background-color: var(--wdt_Booking_PrimaryColor);
	color: var(--wdt_Booking_AccentTxtColor);
}



/* Type - II */

.dt-sc-staff-item.type2 .image {
	aspect-ratio: 1;
	border-radius: 50%;
	padding: 20px;
	background-color: var(--wdt_Booking_TertiaryColor);
	will-change: transform;
}

.dt-sc-staff-item.type2 .image>a,
.dt-sc-staff-item.type2 .image>.dt-sc-staff-overlay {
	border-radius: 50%;
	overflow: hidden;
	will-change: transform;
}

.dt-sc-staff-item.type2 .image>.dt-sc-staff-overlay .dt-sc-staff-social-container {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

.dt-sc-staff-item.type2 .image>.dt-sc-staff-overlay .dt-sc-team-social {
	transition: var(--wdt_Booking_Ad-Transition);
	-webkit-transform: translateX(-10px);
	transform: translateX(-10px);
	opacity: 0;
	visibility: hidden;
}

.dt-sc-staff-item.type2:hover .image>.dt-sc-staff-overlay .dt-sc-team-social {
	-webkit-transform: translateX(0px);
	transform: translateX(0px);
	opacity: 1;
	visibility: visible;
}

.dt-sc-staff-item.type2 .image>.dt-sc-staff-overlay:before {
	content: "";
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	display: inline-block;
	top: 0;
	left: 0;
	position: absolute;
	background: linear-gradient(0deg, var(--wdt_Booking_PrimaryColor), transparent);
	pointer-events: none;
	transition: var(--wdt_Booking_Ad-Transition);
}

.dt-sc-staff-item.type2:hover .image>.dt-sc-staff-overlay:before {
	opacity: 1;
	visibility: visible;
}

.dt-sc-staff-item.type2:hover .image .dt-sc-team-social li a {
	color: var(--wdt_Booking_LinkColor);
}

.dt-sc-staff-item.type2:hover .image .dt-sc-team-social li a:hover {
	color: var(--wdt_Booking_AccentTxtColor);
}




/* =========================
    Staff Archives
========================== */

.dt-sc-staff-container[class*="dt-column-"] {
	display: grid;
	gap: 30px;
}

.dt-sc-staff-container.dt-column-4 {
	grid-template-columns: repeat(4, 1fr);
}

.dt-sc-staff-container.dt-column-3 {
	grid-template-columns: repeat(3, 1fr);
}

.dt-sc-staff-container.dt-column-2 {
	grid-template-columns: repeat(2, 1fr);
}



/* =========================  
	Social Icon - Common  
========================= */

.dt-sc-team-social {
	margin: 0px;
	padding: 0px;
}

.dt-sc-team-social li {
	display: inline-flex;
	margin: 0;
	padding: 0;
	line-height: normal;
	height: 40px;
	width: 40px;
	align-items: center;
	justify-content: center;
	transform: scale(0) translateY(20px);
	opacity: 0;
	transition-duration: 200ms;
	transition-delay: 200ms;
}



.dt-sc-staff-item.type1 .social-media.wdt-active .dt-sc-team-social li:nth-child(1) {
	transition-duration: 100ms;
	transition-delay: 100ms;
}

.dt-sc-staff-item.type1 .social-media.wdt-active .dt-sc-team-social li:nth-child(2) {
	transition-duration: 150ms;
	transition-delay: 150ms;
}

.dt-sc-staff-item.type1 .social-media.wdt-active .dt-sc-team-social li:nth-child(3) {
	transition-duration: 200ms;
	transition-delay: 200ms;
}

.dt-sc-staff-item.type1 .social-media.wdt-active .dt-sc-team-social li:nth-child(4) {
	transition-duration: 250ms;
	transition-delay: 250ms;
}

.dt-sc-staff-item.type1 .image .social-media.wdt-active .dt-sc-team-social  li {
	transform: scale(1) translateY(0px);
	opacity: 1;
}

.dt-sc-team-social li a {
	width: inherit;
	height: inherit;
	font-size: 20px;
	line-height: 1em;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--wdt_Booking_AccentTxtColor);
	transition: var(--wdt_Booking_BaseTransition);
	color: currentColor;
}

.dt-sc-team.hide-social-show-on-hover.rounded .dt-sc-team-social li {
	margin: 5px;
}


/*=========================   
	AT Media Rules - Responsive
========================= */

@media (max-width: 1540px) {
	.dt-sc-service-container[class*="dt-column-"] {
		gap: 30px;
	}
}


@media only screen and (max-width: 1280px) {

	.dt-sc-service-container.dt-column-4,
	.dt-sc-staff-container.dt-column-4 {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media only screen and (min-width: 1025px) {

	.dt-sc-staff-item.type1 .image>.dt-sc-staff-overlay .dt-sc-team-social {
		/* -webkit-transform: translateY(10px); */
		/* transform: translateY(10px); */
		/* opacity: 0; */
		/* visibility: hidden; */
	}

	.dt-sc-staff-item.type1:hover .image>.dt-sc-staff-overlay .dt-sc-team-social {
		/* -webkit-transform: translateY(0px); */
		/* transform: translateY(0px); */
		/* opacity: 1; */
		/* visibility: visible; */
	}

}

@media only screen and (max-width: 1024px) {

	.dt-sc-service-container[class*="dt-column-"],
	.dt-sc-staff-container[class*="dt-column-"] {
		grid-template-columns: repeat(2, 1fr);
	}

}

@media only screen and (min-width:768px) {}

@media only screen and (max-width: 767px) {}

@media only screen and (max-width: 600px) {

	.dt-sc-service-container[class*="dt-column-"],
	.dt-sc-staff-container[class*="dt-column-"] {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media only screen and (min-width: 480px) {}

@media only screen and (max-width: 479px) {

	.dt-sc-service-container[class*="dt-column-"],
	.dt-sc-staff-container[class*="dt-column-"] {
		grid-template-columns: repeat(1, 1fr);
	}
}