/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 23 2026 | 11:40:27 */
body.home header div[data-widget_type="theme-site-logo.default"] {
	opacity: 0;
	transition: opacity 0.4s ease-in-out;
	pointer-events: none;
}
body.home header.logo-visible div[data-widget_type="theme-site-logo.default"] {
	opacity: 1;
	pointer-events: auto; /* Re-enables clicking */
}
#headerWrapper {
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;  

	&.show-logo {
		backdrop-filter: blur(10px);
		box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	}
}
ul.clientList {
	display: flex;
	gap: 15px;
	list-style: none;
	padding: 0;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	
	li {
		width: calc(20% - 12px);
	}

	a {
		cursor: pointer;
		border-radius: 10px;
		padding: 0 20px;
		transition: all .3s ease-in-out;
		line-height: 0;

		img {
			object-fit: contain;
			width: 100%;
			max-width: 200px;
			margin: auto;
			height: auto;
			aspect-ratio:1;
		}

		&:hover {
		}
	}
}
.elementor-nav-menu--dropdown a {
	border: 0 !important;
}
ul.clientList li:nth-child(n+26) {
	display: none;
}
#logosLoadMore {
	margin-top: 20px;
}
.milestones-container {

	.milestones-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 20px;
	}

	.milestone-card {
		background: #fff;
		border-radius: 8px;
		overflow: hidden;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		-webkit-transition: all .3s ease-in-out;
		-moz-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
		cursor: pointer;
		text-decoration: none;
		color: inherit;
		display: block;
		position: relative;
	}

	.milestone-image {
		width: 100%;
		object-fit: cover;
		display: block;
		aspect-ratio: 1;
		-webkit-transition: all .3s ease-in-out;
		-moz-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}

	.milestone-card:hover {
		transform: translateY(-8px);
		box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);

		.milestone-image {
			transform: scale(1.05);
		}
	}

	.milestone-content {
		padding: 20px;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		background: #000;
		background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
		padding-top: 40px;
	}

	.milestone-year {
		font-size: 24px;
		font-weight: 700;
		color: var( --e-global-color-primary );
		margin-bottom: 12px;
		display: block;
	}

	.milestone-description {
		font-size: 16px;
		line-height: 1.6;
		color: #ffffff;
		margin-bottom: 0;
	}
}
article[data-elementor-type="single-post"] .elementor-widget-theme-post-content {
	p {
		text-align: justify;
	}
	figure {
		display: flex;
		gap: 10px;
		flex-direction: column;
		text-align: center;
		max-width: 100%;
		margin: 20px auto;
	}
	img {
		border-radius: 8px;
	}
}
body.blog .page-content {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px 30px;
	background-color: #ffffff;

	article.post {
		display: flex;
		flex-direction: column;

		& > a {
			order: -1;

			img {
				border-radius: 8px;
			}
		}
		h2.entry-title {
			padding: 0;
			margin: 5px 0 15px;
			font-size: 24px;
			line-height: 1.25;
			overflow: hidden;
			text-overflow: ellipsis;
			display: -webkit-box;
			-webkit-line-clamp: 2;
			-webkit-box-orient: vertical;
			min-height: 2.5em;
			color: black;

			a {
				color: var( --e-global-color-primary )
			}
		}
	}
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.milestones-container {
		.milestones-grid {
			grid-template-columns: 1fr;
			gap: 20px;
		}

		.milestone-content {
			padding: 20px;
		}

		.milestone-year {
			font-size: 22px;
		}

		.milestone-description {
			font-size: 15px;
		}
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.milestones-container {
		.milestones-grid {
			grid-template-columns: repeat(2, 1fr);
		}
	}
}

body.blog .elementor-posts-container {
	article.elementor-post {
		-webkit-transition: all .3s ease-in-out;
		-moz-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
		transform: translateY(0);
		padding: 20px;
		border-radius: 10px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

		&:hover {
			transform: translateY(-5px);
		}
	}

	a.elementor-post__thumbnail__link {
		.elementor-post__thumbnail {
			aspect-ratio: 3 / 2;
			padding: 0 !important;
			position: relative; 

			img {
				left: 0;
				top: 0;
				transform: translate(0, 0) !important;
				object-fit: cover;
				position: relative;
				width: 100% !important;
				-webkit-transition: all .3s ease-in-out;
				-moz-transition: all .3s ease-in-out;
				-ms-transition: all .3s ease-in-out;
				-o-transition: all .3s ease-in-out;
				transition: all .3s ease-in-out;
				transform: translateY(0);
			}
		}
		article.elementor-post:hover &,
		&:hover {
			img {
				transform: scale(1.05) !important;
			}
		}
	}
}
.contact-social .cineman-social-button {
	padding: 15px;
	min-width: auto;
	margin: 0;

	span.social-name {
		display: none;
	}
}
form.jet-form-builder .wp-block-columns {
	display: grid;
	gap: 15px;
	grid-template-columns: repeat(2, 1fr);
}
#homeBlogs {
	article.elementor-post {
		-webkit-transition: all .3s ease-in-out;
		-moz-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
		transform: translateY(0);

		&:hover {
			transform: translateY(-5px);
		}
	}

	a.elementor-post__thumbnail__link {
		.elementor-post__thumbnail {
			aspect-ratio: 3 / 2;
			padding: 0 !important;
			position: relative; 

			img {
				left: 0;
				top: 0;
				transform: translate(0, 0) !important;
				object-fit: cover;
				position: relative;
				width: 100% !important;
				-webkit-transition: all .3s ease-in-out;
				-moz-transition: all .3s ease-in-out;
				-ms-transition: all .3s ease-in-out;
				-o-transition: all .3s ease-in-out;
				transition: all .3s ease-in-out;
				transform: translateY(0);
			}
		}
		article.elementor-post:hover &,
		&:hover {
			img {
				transform: scale(1.05) !important;
			}
		}
	}
}
body.wp-singular.gallery-template-default.single.single-gallery .elementor-widget-theme-post-featured-image {
	display: none;
}
.ngg-galleryoverview {
	display: flex !important;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 15px;

	.ngg-gallery-thumbnail-box {
		width: calc(303.969px - 10px);
		display: inline-flex;
	}

	.ngg-gallery-thumbnail {
		width: 100%;
		margin: 0;
		border: 0;
		border-radius: 30px;

		a {
			margin: 0;
		}

		img {
			border-radius: 8px;
			width: 100%;
		}
	}
}
p.has-text-align-center {
	text-align: center !important;
}

#galleryLoop {
	.type-gallery[data-elementor-type="loop-item"] {
		background: #fff;
		border-radius: 8px;
		overflow: hidden;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		-webkit-transition: all .3s ease-in-out;
		-moz-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
		cursor: pointer;
		text-decoration: none;
		color: inherit;
		display: block;
		position: relative;
	}

	.elementor-widget-theme-post-featured-image {
		width: 100%;
		object-fit: cover;
		display: block;
		aspect-ratio: 1;
		overflow: hidden;
		border-radius: 10px;

		img {
			aspect-ratio: 1;
			display: block;
			object-fit: cover;
			-webkit-transition: all .3s ease-in-out;
			-moz-transition: all .3s ease-in-out;
			-ms-transition: all .3s ease-in-out;
			-o-transition: all .3s ease-in-out;
			transition: all .3s ease-in-out;
		}
	}

	.type-gallery[data-elementor-type="loop-item"]:hover {
		transform: translateY(-8px);
		box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);

		.elementor-widget-theme-post-featured-image img {
			transform: scale(1.05);
		}
	}

	.elementor-widget-theme-post-title {


		h1 {
			font-size: 24px;
			font-weight: 700;
			color: var(--e-global-color-text);
			margin-bottom: 0;
			display: block;
			line-height: 1;
		}
	}
}
/* Hide the logo initially but keep its space reserved to prevent shifting */
body.home {
	/* 	#headerWrapper .e-con-inner {
	justify-content: center;
}
	.hide-logo-initially .site-logo-img {
	opacity: 0;
	visibility: hidden;
}
	.show-logo {
	opacity: 1 !important;
	visibility: visible !important;
}

	&:has(.show-logo) {
	#headerWrapper .e-con-inner {
	justify-content: space-between;
}
}

	#headerWrapper .e-con-inner {
	justify-content: center;
}
	.site-logo-img {
	display: none;
} */
}

.tnp-subscription label, .tnp-profile label {
	color: #fff;
}

body.wp-singular.gallery-template-default.single.single-gallery .elementor-widget-author-box {
	display: none;
}
#fancybox-left, #fancybox-right {
	display: inline;
	visibility: visible;
}
#fancybox-left span {
	left: 20px;
}
#fancybox-right span {
	left: auto;
	right: 20px;
}
select#purpose {
	height: 42px;
}

.tnp.tnp-subscription form {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;

	.tnp-field.tnp-field-email {
		width: calc(100% - 110px);
	}
	.tnp-field.tnp-privacy-field {
		flex: 1;
		order: 2;
		width: 100%;
	}
	div.tnp-field, .tnp-profile div.tnp-field {
		margin-bottom: 0;
	}
	.tnp-field.tnp-field-button {
		margin-top: 1.25em;
	}
}
.e-n-tabs-content {
	min-height: 400px;

	.cineman-media-coverage .mc-track {
		padding: 0;
	}
}
body.single.single-gallery p {
	text-align: center;
}
ul.elementor-nav-menu > li > a.elementor-item-active {
	background-color: hsl(51deg 99% 50% / 10%);
	border-radius:4px;
}

form.jet-form-builder {

	input[type="text"],
	input[type="email"],
	input[type="tel"],
	textarea {
		font-size: 16px;
		line-height: 1.5;
		padding: 8px 16px;
	}

	.jet-form-builder__action-button {
		cursor: pointer;
	}
} 

.marquee-wrap {
	overflow: hidden;
	position: absolute;
	left: 0;
	right: 0;
	width: auto;
	top: 0;
	bottom: 0;
	pointer-events: none;
}

.marquee-overlay {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(180deg, #0000000D 0%, #0A0A0A 100%);
	z-index: 0;
	pointer-events: none; /* so hover-to-pause still works */
}

.marquee-track {
	display: flex;
	width: max-content;
	animation: scroll-left 40s linear infinite;
	height: 100%;
}

.marquee-track img {
	height: 100%; /* adjust to taste */
	width: auto;
	flex-shrink: 0;
	display: block;
}

@keyframes scroll-left {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}