/* homepage */

/* spotlight section starts here */
.spotlight {
	height: calc(100vh - 90px);
	position: relative;
	background-color: #000;
}

.swiper-image-div {
	position: relative;
	height: 100%;
}

.swiper-content {
	position: absolute;
	bottom: 60px;
	display: flex;
	align-items: end;
	justify-content: space-between;
	width: 100%;
	padding: 0 65px;
	z-index: 2;
}

.swiper {
	width: 100%;
	height: 100%;
	display: flex;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 16/9;
}

.swiper-pagination {
	z-index: 5;
}

.swiper-pagination-bullet {
	width: 5px;
	height: 5px;
	background: #fff;
	border: none;
	opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #00C3C9;
	border: none;
}

.content-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: fit-content;
}

.category-tag {
	font-size: 0.75rem;
	color: #fff;
	text-transform: uppercase;
	background-color: #E8B600;
	padding: 4px 8px;
	font-family: "Poppins-Bold";
	width: fit-content;
}

.brand {
	font-family: "Poppins-Light";
	letter-spacing: 0px;
	color: #FFFFFF;
	text-transform: uppercase;
	transition: all 1s cubic-bezier(.215, .61, .355, 1);
	margin-bottom: 20px;
	z-index: 2;
	position: relative;
	text-align: left;
}


.spotlight .brand{
	font-size: 6.25rem;
}

.grid-row .brand {
	font-family: "Poppins-Medium";
	font-size: 3.125rem;
	color: #FFFFFF;
	text-transform: uppercase;
	margin-bottom: 10px;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
}

.production-details p {
	font-size: 1.125rem;
	color: #FFFFFF;
}

.circleCta {
	width: 63px;
	height: 63px;
	border: 1px solid #00C3C9;
	border-radius: 50%;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
}

.circleCta img {
	width: 15px;
	height: 15px;
	filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(5095%) hue-rotate(288deg) brightness(112%) contrast(103%);
	rotate: 270deg;
	transition: all 1s cubic-bezier(.215, .61, .355, 1);
}

.circleCta:hover {
	cursor: pointer;
	background-color: #fff;
	transition: all 1s cubic-bezier(.215, .61, .355, 1);
}

.circleCta:hover img {
	transition: all 1s cubic-bezier(.215, .61, .355, 1);
	filter: brightness(0) saturate(100%) invert(55%) sepia(63%) saturate(2367%) hue-rotate(142deg) brightness(99%) contrast(101%);
}

.spotlight .swiper-wrapper .swiper-slide {
	position: relative;
	background-color: #000;
}

.spotlight .swiper-wrapper .swiper-slide::before {
	content: '';
	width: 100%;
	height: 140px;
	background: transparent linear-gradient(180deg, #000000 0%, #00000000 100%) 0% 0% no-repeat padding-box;
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
}

.spotlight .swiper-wrapper .swiper-slide::after {
	content: '';
	width: 100%;
	height: 330px;
	background: transparent linear-gradient(180deg, #00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
	z-index: 1;
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0.5;
}

/* spotlight ends here */

.placeholder .swiper {
	width: 100%;
	height: 100%;
	aspect-ratio: 16/9;
}

.placeholder .swiper-img {
	width: 100%;
	height: 100%;
	position: relative;
}

.placeholder .youtube-holder,
.youtube-holder {
	width: 100%;
	height: 100%;
	position: relative;
}

.placeholder .swiper-img img {
	object-fit: cover;
}


.placeholder .youtube-holder iframe,
iframe {
	object-fit: cover;
	width: 100%;
	height: 100%;
	aspect-ratio: 16/9;
}

.grid-item:not(.spotlight-0) {
	position: relative;
}

.swiper-slide {
	overflow: hidden;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
	transform-origin: left;
}

.grid-row .grid-item {
	display: block;
	width: 100%;
	overflow: hidden;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.grid-row {
	display: grid;
	gap: 2px 2px;
}

.grid-item {
	display: grid;
}

.grid-parent {
	display: grid;
	gap: 2px;
	padding: 2px;
}

.grid-row:nth-child(odd) .grid-item:nth-child(1) {
	grid-column: 1/3;
	grid-row: 1/3;
	height: 605px;
}

.grid-row:nth-child(odd) .grid-item:nth-child(2) {
	grid-column: 3/4;
	grid-row: 1/2;
	height: 300px;
}

.grid-row:nth-child(odd) .grid-item:nth-child(3) {
	grid-column: 3/4;
	grid-row: 2/3;
	height: 300px;
}

.grid-row:nth-child(even) .grid-item:nth-child(1) {
	grid-column: 1/2;
	grid-row: 1/2;
	height: 300px;
}

.grid-row:nth-child(even) .grid-item:nth-child(2) {
	grid-column: 1/2;
	grid-row: 2/3;
	height: 300px;
}

.grid-row:nth-child(even) .grid-item:nth-child(3) {
	grid-column: 2/4;
	grid-row: 1/3;
	height: 605px;
}

.grid-row .grid-item:only-child {
	grid-column: 1/2 !important;
	grid-row: 1/2 !important;
	height: auto !important;
	width: 50%;
	margin: 0 auto;
}


.grid-row>.grid-item:nth-child(1):nth-last-child(2) {
	grid-column: 1/2 !important;
	grid-row: 1/2 !important;
	height: auto !important;
}

.grid-row>.grid-item:nth-child(2):nth-last-child(1) {
	grid-column: 2/3 !important;
	grid-row: 1/2 !important;
	height: auto !important;
}

.grid-item:not(.spotlight-0) .placeholder {
	display: flex;
	width: 100%;
	height: 100%;
}

.grid-item:not(.spotlight-0) .placeholder img {
	display: block;
	width: 100%;
	height: 100%;
	-moz-object-fit: cover;
	-webkit-object-fit: cover;
	-o-object-fit: cover;
	object-fit: cover;
}

.grid-row:nth-child(odd) .grid-item:nth-child(2) .brand,
.grid-row:nth-child(odd) .grid-item:nth-child(3) .brand,
.grid-row:nth-child(even) .grid-item:nth-child(1) .brand,
.grid-row:nth-child(even) .grid-item:nth-child(2) .brand {
	font-size: 40px;
}

.swiperSlideshow .swiper-slide:hover .placeholder img {
	transform: scale(1.1);
	transform-origin: center;
	transition: transform .3s ease
}

.grid-link {
	display: block;
	overflow: hidden;
	position: relative;
	text-align: center;
	width: 100%;
	height: 100%;
}

.video-container {
	width: 100%;
	height: 100%;
	aspect-ratio: 16/9;
}

.placeholder {
	display: block;
	width: 100%;
	overflow: hidden;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #fff;
	position: relative;
}

.video-container iframe {
	width: 900%;
	height: 100%;
	margin-left: -400%;
}

.video-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	cursor: pointer;
}

.picture,
.swiperSlideshow .swiper-wrap {
	width: 100%;
	height: 100%;
}

.swiper-wrap {
	background-color: #000;
}

.swiper-wrap::after {
	content: '';
	width: 100%;
	height: 200px;
	background: transparent linear-gradient(180deg, #00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
	z-index: 1;
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0.7;

}

.spotlight img {
	object-fit: cover;
}

.swiperSlideshow .swiper-slide {
	position: relative;
}

.customanchor {
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 5;
}

.swiperSlideshow .category-tag {
	font-size: 0.625rem;
	opacity: 0;
	visibility: hidden;
}

.swiperSlideshow .swiper-slide:hover .category-tag {
	opacity: 1;
	visibility: visible;
	transition: all 0.5s ease-in;
}


.swiper-grid-content {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.swiper-grid-content .content-wrap {
	flex-direction: row;
	justify-content: space-between;
	align-items: end;
}

ul.categories {
	display: flex;
	gap: 5px;
	height: 0;
	overflow: hidden;
	transition: all 0.5s ease;
}

.swiperSlideshow .swiper-slide:hover ul.categories {
	height: 20px;
	transition: all 0.5s ease;
}

ul.categories li {
	border: 1px solid rgb(255, 255, 255, 0.3);
	padding: 4px 6px;
	z-index: 6;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	width: auto;
	height: 20px;

}

ul.categories li:hover {
	background: rgb(0, 0, 0, 0.6);
	transition: 0.3s all ease-in-out;
}


ul.categories li a {
	font-size: 0.563rem;
	font-family: "Poppins-Medium";
	color: #fff;
	z-index: 6;
}

.swiper-grid-content .circleCta {
	width: 40px;
	height: 40px;
	z-index: 6;
	position: relative;
	border: none;
	background-color: transparent;
	margin: 0 10px;

}

.swiper-grid-content .circleCta .circle {
	stroke: #00C3C9;
	stroke-width: 1;
	stroke-dasharray: 800;
	stroke-dashoffset: 800;
	fill: transparent;
	width: 100%;
	height: 100%;
	visibility: hidden;
}

.swiperSlideshow .swiper-slide:hover .circle {
	animation: drawcirclestroke 4s forwards;
	visibility: visible;
}

.swiper-grid-content .circleCta:hover .circle {
	fill: #fff;
	transition: 0.3s all ease-in-out;
}


@keyframes drawcirclestroke {
	from {
		stroke-dashoffset: 800;
		visibility: hidden;
	}

	to {
		stroke-dashoffset: 0;
		visibility: visible;
	}
}

.circleCta img.arrow {
	width: 15px !important;
	height: 15px !important;
	position: absolute;
	visibility: hidden;
	opacity: 0;
}

.swiperSlideshow .swiper-slide:hover .circleCta img.arrow {
	visibility: visible;
	opacity: 1;
	transition: 0.5s ease-in all;
}


/* contact us */
.contact-us-body {
	height: 100vh;
}

.page-template-template-contact-us .contact-us-body {
	height: auto;
}

.contact-us-wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	gap: 30px;
	width: 35%;
	margin: 30px 0;
}

.leftsection,
.rightsection {
	width: 70%;
}

.contact-details-div h3,
.rightsection h3,
.page-template-template-thank-you h3 {
	color: #000;
	font-size: 30px;
	font-family: "Poppins-Bold";
	text-transform: uppercase;
	margin-bottom: 40px;
}


.contact-details-item {
	margin-bottom: 40px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.contact-details-item div {
	display: flex;
	gap: 10px;
	align-items: center;
}

.contact-details-item h4 {
	line-height: 20px;
	margin-bottom: 12px;
}

.contact-number {
	display: block;
	line-height: 20px;
}

.contact-email,
.contact-number {
	font-size: 14px;
}

.contact-email:hover,
.contact-number:hover {
	color: rgba(0, 0, 0, 0.58);
	transition: 0.5s all ease;
}

.contact-details-div {
	margin-bottom: 40px;
}

.contact-name {
	font-family: "Poppins-Medium";
}

.wpcf7-submit {
	background-color: #00C3C9;
	letter-spacing: 0;
	font-family: "Poppins-Bold";
	text-align: center;
	text-transform: uppercase;
	font-size: 0.875rem;
	color: #fff;
	padding: 14px 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	cursor: pointer;
	margin: 40px 0 0;
	width: fit-content;
}

.asterik {
	color: red;
}

form input {
	display: block;
	width: 100%;
	padding: 10px 5px;
	font-size: 14px;
	background-image: none;
	border: none;
	border-bottom: 1px solid rgb(0 0 0 / 11%);
	box-shadow: none;
	outline: none;
	color: #000;
	background-color: #fff;
	margin-top: 0px;
}

.form-group {
	margin-bottom: 1rem;
}

label {
	margin-bottom: 5px;
	display: inline-block;
	font-size: 12px;
	font-family: "Poppins-Regular";
	margin: 0 0 10px 0;
}

.wpcf7-not-valid-tip {
	font-size: 10px;
	font-family: "Poppins-Regular";
}

.wpcf7-response-output {
	display: none;
}

.page-template-template-thank-you .contact-us-body {
	height: calc(100vh - 60px);
}

.placeholder picture {
	width: 100%;
	height: 100%;
	background-color: #000;
}

.overlay {
	opacity: 0;
	width: auto;
	text-align: center;
	top: calc(1px * 0);
	right: calc(1px * 0);
	bottom: calc(1px * 0);
	left: calc(1px * 0);
	padding: 1.6rem;
	position: absolute;
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out;
	-o-transition: opacity .25s ease-in-out;
	transition: opacity .25s ease-in-out;
	font-size: 0;
}

.overlay:hover {
	opacity: 1;
}


.overlay:before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	opacity: 0.8;
}

.overlay>div {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.overlay h2 {
	z-index: 2;
	position: relative;
	z-index: 2;
	position: relative;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	vertical-align: middle;
	height: 100%;
}

.cardCaption {
	position: absolute;
	top: auto;
	bottom: 0;
	left: 5px;
	right: 0;
	padding: 4px 10px;
}

.cardCaption::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: auto;
	bottom: 0;
	left: 0px;
	right: 0;
	background-color: #00a4a7;
	opacity: 0.75;
}

.cardCaptionDiv {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 2;
}

.cardCaption-title {
	margin-top: 0px;
	color: #fff;
	text-transform: uppercase;
	font-size: 16px;

}

.cardCaption-category {
	margin: 0;
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 16px;
	display: none;
}

.cardcaption-link {
	color: #fff;
	text-transform: uppercase;
	font-size: 12px;
	text-decoration: underline;

}

.content-project {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* detail page */
.detailpage-slides li img {
	width: 100%;
	height: 100%;
}

.youtube-wrapper,
.img-wrapper {
	width: 60%;
	aspect-ratio: 16/9;
	background-color: #000;
}

.youtube-wrapper iframe,
.img-wrapper img {
	width: 100%;
	height: 100%;
}

.detail-content .brand,
.detail-content .production-details p {
	color: #000;
}

.detail-content {
	display: flex;
	height: fit-content;
	flex-direction: column;
	width: 35%;
}

.detail-spotlight .detail-content .brand {
	font-size: 2.5rem;
}

.flex-wrap {
	display: flex;
}

.detail-spotlight {
	padding-left: 20px;
	padding-right: 20px;
	margin: 65px 0;
}

.detail-spotlight .flex-wrap {
	gap: 50px;
	align-items: center;
}

.socialDiv {
	display: flex;
	gap: 10px;
	align-items: center;
}

.socialDiv h5 {
	color: #000;
	font-family: "Poppins-Light";
}

.sharing-icons {
	margin: 20px 0;
	gap: 10px;
	display: flex;

}

.sharing-icons img {
	filter: brightness(0) saturate(100%) invert(0%) sepia(91%) saturate(7465%) hue-rotate(21deg) brightness(96%) contrast(103%);
}

.sharing-icons img:hover {
	filter: brightness(0) saturate(100%) invert(65%) sepia(46%) saturate(6774%) hue-rotate(146deg) brightness(104%) contrast(103%);
}



.detail-grid .img-holder,
.detail-grid .youtube-holder {
	aspect-ratio: 16/9;
	width: 100%;
	height: 100%;
	background-color: #000;
	pointer-events: none;
}

.detail-grid .grid-item img {
	transition: all 4s ease;
}

.detail-grid .grid-item:hover img {
	transform: scale(1.1);
	transition: all 4s ease;
}

/* listing page */
.listing-banner .category-tag {
	color: #000;
	font-family: "Poppins-Light";
	letter-spacing: 0px;
	text-transform: uppercase;
	margin-bottom: 20px;
	position: relative;
	font-size: 5rem;
	background-color: #f2f2f2;
	padding: 60px 20px 40px;
}

/* lightbox */

.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	z-index: -99999;

}

.lightboxOpen .lightbox {
	opacity: 1;
	visibility: visible;
	z-index: 99999;
}

.popupOverlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
}

.lightbox .closePopUp {
	position: absolute;
	top: 40px;
	right: 40px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 1s cubic-bezier(.215, .61, .355, 1);
	transform: rotate(45deg);
	opacity: 0.6;
}

.lightbox .closePopUp:before,
.lightbox .closePopUp:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 3px;
	background: #fff;
	transition: all 1s cubic-bezier(.215, .61, .355, 1);
}

.lightbox .closePopUp:after {
	height: 100%;
	width: 3px;
}


.lightboxArea {
	width: 65%;
	height: auto;
	display: flex;
	position: relative;
	flex-direction: row;
	transition: all 1s cubic-bezier(.215, .61, .355, 1);
	transform: scale(0);
}

.lightboxOpen .lightbox .lightboxArea {
	transition: all 1s cubic-bezier(.215, .61, .355, 1);
	transform: scale(1);
}

.lightbox .swiper-button-prev {
	left: -100px;
	background-color: #fff;
	color: #000;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox .swiper-button-next {
	right: -100px;
	background-color: #fff;
	color: #000;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox .swiper-button-next:after,
.lightbox .swiper-rtl .swiper-button-prev:after,
.lightbox .swiper-button-prev:after,
.lightbox .swiper-rtl .swiper-button-next:after {
	font-size: 14px;
}

.categoryTagWrap {
	display: flex;
	align-items: center;
	gap: 5px;
}

.lightboxArea img {
	object-fit: contain;
}

.detail-grid .grid-row:only-child .grid-item:only-child {
	display: none;
}

/* about us */
.about-us-spotlight {
	position: relative;
	overflow: hidden;
}

.about-us-spotlight::before {
	content: '';
	width: 100%;
	height: 140px;
	background: transparent linear-gradient(180deg, #000000 0%, #00000000 100%) 0% 0% no-repeat padding-box;
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
}

.about-us-spotlight::after {
	content: '';
	width: 100%;
	height: 330px;
	background: transparent linear-gradient(180deg, #00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
	z-index: 1;
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0.5;
}

.spotlight-img-wrapper {
	width: 100%;
	height: 100%;
}

.about-us-spotlight img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 16/9;
}

.about-us-spotlight h2 {
	font-family: "Poppins-Light";
	font-size: 4.375rem;
	color: #fff;
	line-height: 65px;
	width: 600px;
}

.about-us-spotlight p {
	font-family: "Poppins-Light";
	font-size: 1.125rem;
	color: #fff;
	line-height: 24px;
	width: 470px;
}

.spotlight-content {
	width: 100%;
	height: 100%;
	position: relative;
}

.spotlight-content::before {
	content: '';
	width: 680px;
	height: 100%;
	background: transparent linear-gradient(270deg, #00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
	z-index: 1;
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0.9;
}

.spotlight-content .content {
	position: absolute;
	top: 50%;
	left: 5%;
	transform: translate(-5%, -50%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.about-us-contentsection {
	margin: 30px 0;
}

.about-us-contentsection .flex-wrapper {
	display: flex;
	align-items: center;

}

.about-us-contentsection .flex-wrapper>div {
	width: 50%;
}


.about-us-contentsection .flex-wrapper img {
	width: 100%;
	height: 100%;
}

.about-us-contentsection .content-wrap h6 {
	font-size: 1rem;
	color: #000;
	font-family: "Poppins-Light";
	line-height: 24px;
}

.colored-div {
	background-color: #00C3C9;
	padding: 64px 75px;
	margin: 30px 0;
}

.colored-div p {
	font-size: 1.5rem;
	font-family: "Poppins-ExtraLight";
	color: #fff;
	line-height: 34px;
}

.team-section h3 {
	font-size: 3.125rem;
	color: #000;
	text-align: center;
	font-family: "Poppins-Light";
	margin: 40px 0 30px;
}

.team-member-div {
	display: flex;
	gap: 30px;
}

.team-member-wrap {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	width: 50%;
	cursor: pointer;
}

.team-member-wrap .img {
	height: auto;
	margin-bottom: 10px;
}

.team-member-wrap img {
	width: 100%;
	height: 100%;
}

.designation h5 {
	font-size: 1.5rem;
	color: #000;
	font-family: "Poppins-Light";
	line-height: 24px;
}

.designation h6 {
	font-size: 1rem;
	color: #000;
	font-family: "Poppins-Light";
	line-height: 24px;
}

.numbersSection {
	background-color: #F5D900;
	padding: 47px 0;
	margin: 93px 0 0;
}


.numbersDiv .img-div {
	border: 1px solid rgb(0 0 0 / 20%);
	border-radius: 50%;
	min-width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	transition: all 0.3s ease;
}

.numbersDiv .img-div:hover {
	background: rgb(0 0 0 / 20%);
	transition: all 0.5s ease;
	border: none;
}

.numbersDiv {
	display: flex;
	align-items: center;
	gap: 60px;
	width: 100%;
}

.numbersDiv li {
	width: auto;
	display: flex;
	gap: 10px;
}

.numbersDiv h6 {
	font-size: 1rem;
	color: #000;
	font-family: "Poppins-Medium";
	line-height: 20px;
}

.numbers-content {
	display: flex;
	flex-direction: column;
}

.counter {
	letter-spacing: 0;
	line-height: 1;
	position: relative;
	display: flex;
	overflow: hidden;
	align-items: center;
	height: 46px;
	font-size: 2.5rem;
	font-family: "Poppins-Light";
}

.counter>span {
	z-index: 1;
	height: 100%;
	transition: transform 2s ease;
	transform: translateY(0);
}

.counter>span>span {
	flex: 0 0 100%;
	height: 100%;
	display: flex;
	justify-content: center;
}

/* Transition delays for each counter */
.counter:nth-child(1)>span {
	transition-delay: 0s;
}

.counter:nth-child(2)>span {
	transition-delay: 0.375s;
}

.counter:nth-child(3)>span {
	transition-delay: 0.75s;
}

.counter:nth-child(4)>span {
	transition-delay: 1.125s;
}

.counter:nth-child(5)>span {
	transition-delay: 1.5s;
}

.counter:nth-child(6)>span {
	transition-delay: 1.875s;
}

.teampopup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	z-index: -99999;
}

.portfolioOpen .teampopup {
	opacity: 1;
	visibility: visible;
	z-index: 99999;
}

.teampopup .closePopUp {
	position: absolute;
	top: 40px;
	right: 40px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 1s cubic-bezier(.215, .61, .355, 1);
	transform: rotate(45deg);
	opacity: 0.6;
}

.teampopup .closePopUp:before,
.teampopup .closePopUp:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 3px;
	background: #fff;
	transition: all 1s cubic-bezier(.215, .61, .355, 1);
}

.teampopup .closePopUp:after {
	height: 100%;
	width: 3px;
}

.popupArea {
	width: auto;
	height: 601px;
	display: flex;
	position: relative;
	flex-direction: row;
	transition: all 1s ease;
	opacity: 0;
	padding: 69px 105px 69px 105px;
	background: #fff;
}

.portfolioOpen .teampopup .popupArea {
	transition: all 1s ease;
	opacity: 1;
}

.popupArea .img {
	width: 180px;
	height: 180px;
	border-radius: 50%;
}

.popupArea img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.popupArea .flex-wrapper {
	display: flex;
	gap: 30px;
}

.popup-content {
	width: 400px;
}

.popup-content h2 {
	font-size: 3.75rem;
	line-height: 4.5rem;
	color: #000000;
	font-family: "Poppins-Light";
	margin-bottom: 30px;
}

.popupSwiper {
	max-height: 300px;
	height: unset;
}

.popupSwiper .swiper-slide {
	display: flex;
	flex-direction: column;
}

.popupSwiper h4 {
	color: #00C3C9;
	font-size: 1.5rem;
	font-family: "Poppins-Medium";
	line-height: 20px;
}

.popupSwiper p {
	font-size: 1rem;
	color: #000;
	font-family: "Poppins-Light";
}

.swiper-vertical>.swiper-wrapper {
	gap: 20px;
}

.only-single-child .detail-spotlight {
	height: calc(100vh - 203px);
}

.desktop {
	display: block;
}

.mobile {
	display: none;
}


.contact-us-body .flex-wrapper {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}

.contact-us-img {
	width: 63%;
	height: auto;
}

.contact-us-img img {
	width: 100%;
	height: 100%;
}

.grecaptcha-badge {
	opacity: 0 !important;
	visibility: hidden !important;
	z-index: -1;
}

.read-more-content {
	display: none;
	transition: all 0.5s ease;
}

.on-site-content{
	padding: 50px 25px;
	background: #fff;
}
.on-site-content h3 {
	font-size: 1.5rem;
    font-family: "Poppins-Medium";
    color: #000;
    line-height: 34px;
	margin-bottom: 12px;
}
.on-site-content p{
	font-size: 1rem;
	color: #000;
	font-family: "Poppins-Light";
	line-height: 24px;
	margin-bottom: 10px;
}
.on-site-content b{
	font-weight: 300;
}
.read-more-btn{
	cursor: pointer;
	width: fit-content;
	font-family: "Poppins-Medium";
	padding: 10px 16px;
	margin-top: 30px;
}

.h1tag{
	display: none;
}
.error-404 {
	min-height: calc(100vh - 133px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.error-404 h3{
	color: #000;
    font-size: 30px;
    font-family: "Poppins-Bold";
    text-transform: uppercase;
    margin-bottom:10px;
	text-align: center;
}
.error-404 h2{
	font-size: 1.5rem;
    font-family: "Poppins-Medium";
    line-height: 1.6rem;
	text-align: center;
	margin-bottom: 20px;
}
.error-404 .desc{
	width: 50%;
	text-align: center;
	margin: 0 auto 10px;
	font-size: 1rem;
}

.error-404 a{
	width: 20%;
	margin: 0 auto;

}
@media(max-width:767px) {
	.swiper-content {
		padding: 0 20px;
		bottom: 30px;
	}

	.spotlight {
		height: auto;
	}

	.category-tag {
		font-size: 0.625rem;
		padding: 4px;
	}

	.brand,
	.spotlight .brand {
		margin: 5px 0;
		font-size: 1.25rem;
	}

	.production-details p {
		font-size: 0.75rem;
		margin-bottom: 0;
		line-height: 16px;
	}

	.circleCta {
		width: 40px;
		height: 40px;
	}

	.spotlight .swiper-wrapper .swiper-slide::after {
		height: 170px;
	}

	.swiperSlideshow .swiper-slide:hover ul.categories,
	.swiperSlideshow .swiper-slide ul.categories,
	.swiperSlideshow .swiper-slide .circle,
	.swiperSlideshow .swiper-slide:hover .circle,
	.swiperSlideshow .swiper-slide .circleCta img.arrow .swiperSlideshow .swiper-slide:hover .circleCta img.arrow,
	.swiperSlideshow .swiper-slide .category-tag,
	.swiperSlideshow .swiper-slide:hover .category-tag {
		opacity: 0;
		visibility: hidden;
		display: none;
	}

	.swiper-grid-content {
		padding: 5px;
		top: auto;
	}

	.detail-spotlight {
		margin: 15px 0;
	}

	.youtube-wrapper,
	.img-wrapper {
		width: 100%;
	}

	.detail-spotlight .flex-wrap {
		gap: 10px;
	}

	.detail-content {
		width: 100%;
	}

	.sharing-icons {
		margin: 10px 0;
	}

	.sharing-icons a {
		display: inline-block;
	}

	.socialDiv h5 {
		font-size: 12px;
	}

	.listing-banner .category-tag {
		padding: 30px 20px 0;
		font-size: 40px;
	}

	.contact-us-wrapper {
		gap: 30px;
		flex-direction: column;
		width: 100%;
		margin: 0 0 50px 0;
		padding: 0 20px;
	}

	.leftsection,
	.rightsection {
		width: 100%;
	}

	.contact-us-body {
		height: auto;
	}

	.contact-details-div h3,
	.rightsection h3 {
		margin-bottom: 20px;
	}

	.contact-us-wrapper .btn {
		font-size: 12px;
		padding: 14px 25px;

	}

	.grid-row:nth-child(odd) .grid-item:nth-child(1) {
		grid-row: 1 / 2;
		height: auto;
	}

	.grid-row:nth-child(odd) .grid-item:nth-child(2) {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
		height: auto;
	}

	.grid-row:nth-child(odd) .grid-item:nth-child(3) {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
		height: auto;
	}

	.grid-row:nth-child(even) .grid-item:nth-child(1) {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
		height: auto;
	}

	.grid-row:nth-child(even) .grid-item:nth-child(2) {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
		height: auto;
	}

	.grid-row:nth-child(even) .grid-item:nth-child(3) {
		grid-column: 1 / 3;
		grid-row: 2 / 3;
		height: auto;
	}

	.grid-row .grid-item:only-child {
		width: 100%;
	}

	.grid-row .brand {
		font-size: 0.9rem;
	}

	.grid-row:nth-child(odd) .grid-item:nth-child(2) .brand,
	.grid-row:nth-child(odd) .grid-item:nth-child(3) .brand,
	.grid-row:nth-child(even) .grid-item:nth-child(1) .brand,
	.grid-row:nth-child(even) .grid-item:nth-child(2) .brand {
		font-size: 0.9rem;
	}

	.lightbox .closePopUp:after {
		height: 70%;
	}

	.lightbox .closePopUp:before {
		width: 70%;
	}

	.lightbox .swiper-button-prev {
		left: -50px;
	}

	.lightbox .swiper-button-next {
		right: -50px;
	}

	.lightbox .closePopUp {
		top: 0px;
		right: 11px;
	}

	.dropdown-content:hover .dropdown-menu-item a,
	.dropdown-content:hover a.view-all:hover {
		color: #000;
	}

	.about-us-spotlight h2 {
		font-size: 30px;
		width: 100%;
		line-height: 34px;
		width: 100%;
		margin-bottom: 10px;
		text-align: center;
	}

	.about-us-spotlight p {
		font-size: 1rem;
		width: 100%;
		line-height: 24px;
		width: 100%;
		text-align: center;
	}

	.about-us-contentsection .content-wrap h6 {
		font-size: 1rem;
		width: 100%;
		line-height: 24px;
		margin-top: 20px;
	}

	.about-us-contentsection .flex-wrapper {
		flex-direction: column;
		align-items: flex-start;
	}

	.about-us-contentsection .flex-wrapper>div {
		width: 100%;
	}

	.colored-div {
		padding: 20px;
	}

	.colored-div p {
		font-size: 1.25rem;
		line-height: 28px;
	}

	.team-section h3 {
		font-size: 30px;
		line-height: 16px;
	}

	.designation h5 {
		font-size: 18px;

	}

	.numbersDiv {
		flex-wrap: wrap;
		gap: 20px;
	}

	.counter {
		font-size: 30px;
		height: 35px;
	}

	.numbersDiv .img-div {
		min-width: 100px;
	}

	.numbersDiv li {
		align-items: center;
	}

	.popup-content h2 {
		font-size: 30px;
		margin-bottom: 20px;
	}

	.popupSwiper h4 {
		font-size: 18px;
	}

	.popupSwiper p {
		font-family: 14px;
	}

	.popupArea .img {
		width: 100px;
		height: 100px;
	}

	.popup-content {
		width: 100%;
	}

	.popupArea .flex-wrapper {
		flex-direction: column;
	}

	.popupArea {
		padding: 20px;
	}

	.teampopup .closePopUp {
		top: 0;
		right: 20px;
		width: 40px;
		height: 40px;
	}

	.swiper-vertical>.swiper-wrapper {
		gap: 10px;
	}

	.popupArea .flex-wrapper {
		gap: 20px;
	}

	.spotlight-content .content {
		position: relative;
		top: unset;
		left: unset;
		transform: unset;
		gap: 0;
		padding: 20px;
		align-items: center;
	}

	.spotlight-content::before {
		display: none;
	}

	.about-us-spotlight::after {
		height: 0;
	}

	.about-us-contentsection {
		margin: 0 0 30px;
	}

	.desktop {
		display: none;
	}

	.mobile {
		display: block;
	}

	.contact-us-img {
		width: 100%;
	}

	.contact-us-body .flex-wrapper {
		flex-direction: column;
		gap: 30px;
	}
	.spotlight-content{
		height: auto;;
	}
	.spotlight-img-wrapper{
		height: auto;
	}
	.about-us-spotlight img{
		height: auto;
	}
	.error-404 .desc{
		width: 100%;
	}
	.error-404 a{
		padding: 10px;
		width: fit-content;
	}

}

@media all and (min-width: 768px) and (max-width: 1025px) and (orientation:portrait) {
	.spotlight {
		height: auto;
	}

	.numbersDiv {
		flex-wrap: wrap;
		gap: 20px;
	}

	.about-us-spotlight h2 {
		font-size: 26px;
		line-height: 24px;
		width: 80%;
		margin-bottom: 10px;
		text-align: left;
	}


	.about-us-spotlight p {
		font-size: 1rem;
		line-height: 24px;
		width: 50%;
		text-align: left;
	}

	.about-us-contentsection .content-wrap h6 {
		font-size: 1rem;
		width: 100%;
		line-height: 24px;
		margin-top: 20px;
	}

	.about-us-contentsection .flex-wrapper {
		flex-direction: column;
		align-items: flex-start;
	}

	.about-us-contentsection .flex-wrapper>div {
		width: 100%;
	}

	.colored-div {
		padding: 20px;
	}

	.colored-div p {
		font-size: 1.25rem;
		line-height: 28px;
	}

	.team-section h3 {
		font-size: 30px;
		line-height: 16px;
	}

	.designation h5 {
		font-size: 18px;

	}

	.spotlight-content .content {
		position: absolute;
		top: 56%;
		left: 9%;
		transform: translate(-5%, -50%);
	}

	.spotlight-content .content {
		gap: 10px;
	}

	.numbersDiv li {
		width: 46%;
	}

	.desktop {
		display: block;
	}

	.mobile {
		display: none;
	}

	.contact-us-body .flex-wrapper {
		flex-direction: column;
	}

	.contact-us-img,
	.contact-us-wrapper {
		width: 100%;
	}

	.brand,.spotlight .brand {
		font-size: 3.75rem;
	}

	.grid-row:nth-child(odd) .grid-item:nth-child(2) .brand,
	.grid-row:nth-child(odd) .grid-item:nth-child(3) .brand,
	.grid-row:nth-child(even) .grid-item:nth-child(1) .brand,
	.grid-row:nth-child(even) .grid-item:nth-child(2) .brand {
		font-size: 30px;
	}

	.grid-row .brand {
		font-size: 30px;
	}

	.detail-spotlight .flex-wrap {
		gap: 30px;
	}

	.detail-content {
		width: 32%;
	}

	.production-details p {
		font-size: 1rem;
	}

	.detail-spotlight .detail-content .brand {
		font-family: 2.2rem;
	}

	.linksUl {
		gap: 25px;
	}

	.grid-row:nth-child(odd) .grid-item:nth-child(1) {
		grid-column: 1/3;
		grid-row: 1/3;
		height: 400px;
	}

	.grid-row:nth-child(odd) .grid-item:nth-child(2) {
		grid-column: 3/4;
		grid-row: 1/2;
		height: 200px;
	}

	.grid-row:nth-child(odd) .grid-item:nth-child(3) {
		grid-column: 3/4;
		grid-row: 2/3;
		height: 200px;
	}

	.grid-row:nth-child(even) .grid-item:nth-child(1) {
		grid-column: 1/2;
		grid-row: 1/2;
		height: 200px;
	}

	.grid-row:nth-child(even) .grid-item:nth-child(2) {
		grid-column: 1/2;
		grid-row: 2/3;
		height: 200px;
	}

	.grid-row:nth-child(even) .grid-item:nth-child(3) {
		grid-column: 2/4;
		grid-row: 1/3;
		height: 400px;
	}
	.spotlight-content{
		height: auto;;
	}
	.spotlight-img-wrapper{
		height: auto;
	}
	.about-us-spotlight img{
		height: auto;
	}

}

@media(min-width:1920px) {
	.grid-row:nth-child(odd) .grid-item:nth-child(1) {
		height: 905px;
	}

	.grid-row:nth-child(odd) .grid-item:nth-child(2) {
		height: 450px;
	}

	.grid-row:nth-child(odd) .grid-item:nth-child(3) {
		height: 450px;
	}

	.grid-row:nth-child(even) .grid-item:nth-child(1) {
		height: 450px;
	}

	.grid-row:nth-child(even) .grid-item:nth-child(2) {
		height: 450px;
	}

	.grid-row:nth-child(even) .grid-item:nth-child(3) {
		height: 905px;
	}

	.contact-us-body {
		height: auto;
	}

}

@media all and (min-width : 1024px) and (max-width : 1279px) and (orientation:landscape) {
	.about-us-spotlight h2 {
		font-size: 60px;
		line-height: 60px;
	}

	.about-us-contentsection .flex-wrapper .container-fluid {
		padding: 0 60px 0 30px;
	}

	.colored-div {
		padding: 30px;
	}

	.colored-div p {
		font-size: 18px;
		line-height: 24px;
	}

	.numbersDiv .img-div {
		min-width: 80px;
		height: 80px;
	}

	.counter {
		font-size: 2.2rem;
		height: 38px;
	}

	.numbersDiv {
		gap: 10px;
	}

	/* .spotlight {
		height: calc(100vh - 140px);
	} */
	.grid-row:nth-child(odd) .grid-item:nth-child(1) {
		height: 400px;
	}

	.grid-row:nth-child(odd) .grid-item:nth-child(2) {
		height: 200px;
	}

	.grid-row:nth-child(odd) .grid-item:nth-child(3) {
		height: 200px;
	}

	.grid-row:nth-child(even) .grid-item:nth-child(1) {
		height: 200px;
	}

	.grid-row:nth-child(even) .grid-item:nth-child(2) {

		height: 200px;
	}

	.grid-row:nth-child(even) .grid-item:nth-child(3) {
		height: 400px;
	}

}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
	.brand,.spotlight .brand {
		font-size: 3.75rem;
	}


	.grid-row:nth-child(odd) .grid-item:nth-child(2) .brand,
	.grid-row:nth-child(odd) .grid-item:nth-child(3) .brand,
	.grid-row:nth-child(even) .grid-item:nth-child(1) .brand,
	.grid-row:nth-child(even) .grid-item:nth-child(2) .brand {
		font-size: 30px;
	}

	.grid-row .brand {
		font-size: 30px;
	}

	.spotlight .brand {
		margin-bottom: 0;
	}

}