/* import font from local assets */
@font-face {
	font-family: "NotoSerifDisplay";
	src: url("../fonts/NotoSerifDisplay.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: "MontserratVariableFont";
	src: url("../fonts/MontserratVariableFont.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}


* {
	padding: 0;
	margin: 0;
}

/* other css */
@-webkit-keyframes colorchange {
	0% {
		color: blue;
	}

	10% {
		color: #8e44ad;
	}

	20% {
		color: #1abc9c;
	}

	30% {
		color: #d35400;
	}

	40% {
		color: blue;
	}

	50% {
		color: #34495e;
	}

	60% {
		color: blue;
	}

	70% {
		color: #2980b9;
	}

	80% {
		color: #f1c40f;
	}

	90% {
		color: #2980b9;
	}

	100% {
		color: pink;
	}
}

.auto_slider_container {
	max-width: 100%;
	width: 100%;
	display: flex;
	margin: auto;
	overflow: hidden;
	height: 100%;
}
.auto_slider {
	padding: 0px;
	margin: 0px;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	animation: rotation 32s linear infinite;
	width: calc(22% * 16);
	height: 100%;
}
.auto_slider li {
	font: 16px/1.2 "Roboto";
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 150px;
	width: 100%;
	background: #ddd;
	margin: 0px 15px;
	border-radius: 25px;
}
.slide_img {
	flex: 0 0 22%;
	min-width: 22%;
	max-width: 22%;
	padding: 0 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.slide_img img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}
.slide_img img:hover {
	transform: scale(1.05);
}
@keyframes rotation {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-22% * 12));
	}
}

.accordion {
	background-color: var(--bg3);
	color: var(--white);
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
	gap: 10px;
	cursor: pointer;
	font-weight: 400;
	margin-bottom: 0px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}

.panel {
	padding: 0 18px;
	display: none;
	background-color: white;
	overflow: hidden;
	margin-bottom: 3%;
	box-shadow: 1px 5px 13px 2px #666;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.panel p {
	background-color: var(--white);
	padding: 15px 10px !important;
}

.img-replace {
	/* replace text with an image */
	display: inline-block;
	overflow: hidden;
	text-indent: 100%;
	color: transparent;
	white-space: nowrap;
}
.bts-popup {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: var(--mbg2);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
	-moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
	transition: opacity 0.3s 0s, visibility 0s 0.3s;
	z-index: 1;
}
.bts-popup.is-visible {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
	-moz-transition: opacity 0.3s 0s, visibility 0s 0s;
	transition: opacity 0.3s 0s, visibility 0s 0s;
}

.bts-popup-container {
	position: relative;
	width: 90%;
	max-width: 400px;
	margin: 4em auto;
	background: #f36f21;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
	-webkit-transform: translateY(-40px);
	-moz-transform: translateY(-40px);
	-ms-transform: translateY(-40px);
	-o-transform: translateY(-40px);
	transform: translateY(-40px);
	/* Force Hardware Acceleration in WebKit */
	-webkit-backface-visibility: hidden;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	transition-duration: 0.3s;
	height: 100%;
	object-fit: cover;
	width: 100%;
}
.bts-popup-container img {
	padding: 20px 0 0 0;
}
.bts-popup-container p {
	color: white;
	padding: 10px 40px;
}
.bts-popup-container .bts-popup-button {
	padding: 5px 25px;
	border: 2px solid white;
	display: inline-block;
	margin-bottom: 10px;
}

.bts-popup-container a {
	color: white;
	text-decoration: none;
	text-transform: uppercase;
}

.bts-popup-container .bts-popup-close {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 30px;
	height: 30px;
}
.bts-popup-container .bts-popup-close::before,
.bts-popup-container .bts-popup-close::after {
	content: "";
	position: absolute;
	top: 12px;
	width: 16px;
	height: 3px;
	background-color: var(--white);
}
.bts-popup-container .bts-popup-close::before {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	left: 8px;
}
.bts-popup-container .bts-popup-close::after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	right: 6px;
	top: 13px;
}
.is-visible .bts-popup-container {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}
@media only screen and (min-width: 1170px) {
	.bts-popup-container {
		margin: 8em auto;
	}
}

.carousel-hero-banner {
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
	color: var(--text-color);
}

.carousel-images {
	width: 100%;
	height: auto;
}

.carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.carousel-slide.active {
	opacity: 1;
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	z-index: 1;
}

.slide-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 2rem;
	background-color: var(--overlay-bg);
	border-radius: 5px;
}

.slide-content h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
	display: inline-block;
	background-color: var(--primary-color);
	color: var(--text-color);
	padding: 1rem 2rem;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
	transition: background-color 0.3s ease;
}

.nav-button {
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: var(--white);
	color: var(--text-color);
	border: none;
	padding: 1rem 1.5rem;
	font-size: 2rem;
	transition: background-color 0.3s ease;
	z-index: 3;
}

.nav-button:hover {
	background-color: var(--activ-color);
}

.prev {
	left: 20px;
}

.next {
	right: 20px;
}

.carousel-indicators {
	position: absolute;
	bottom: 20px;
	left: 34%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	justify-content: center;
}

.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 5px;
	/*background-color: rgba(255, 255, 255, 0.5);*/
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
	background-color: var(--primary-color);
}

.modal {
	background-color: var(--mbg2);
}
.modal-dialog {
	max-width: 100%;
}
.carousel-slide img {
	height: 300px;
	object-fit: cover;
}
.modal-header {
	padding: 0px 0px 0px 0px;
}
.modal_form_dtl{
	background-color: var(--white);
}
.modal-content {
	border-radius: 15px;
	overflow: hidden;
}
.close {
	position: absolute;
	right: 18px;
	z-index: 1;
	top: 2%;
	color: var(--white);
}
.chips-container.clip_option_holder {
	padding: 0% 0 !important;
	border-radius: 10px;
	background-color: var(--film-color);
}
.chip.chip_menu.active {
	background-color: var(--bg3) !important;
	font-size: 22px !important;
	border-top-left-radius: 10px !important;
	border-bottom-left-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
	color: var(--white) !important;
}
.chip.chip_menu {
	background-color: transparent !important;
	font-size: 22px !important;
	border-top-left-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
	color: var(--black) !important;
}
.chip.chip_menu {
	border-right: 2px solid var(--white) !important;
	border-top: none !important;
	border-left: none !important;
	border-bottom: none !important;
}
/* .grid-item { width: 400px; }
.grid-item--width2 { width: 600px; } */
.checked {
	color: var(--activ-color);
}
.form-wrap {
	background: var(--bg1);
	width: 100%;
	max-width: 850px;
	padding: 50px;
	margin: 0 auto;
	position: relative;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}
.form-group {
	margin-bottom: 25px;
}
.form-group > label {
	display: block;
	font-size: 18px;
	color: var(--black);
}
.custom-control-label {
	color: var(--black);
	font-size: 16px;
}
.form-control {
	height: 50px;
	background: var(--bg1);
	border-color: 1px solid var(--bg3);
	padding: 0 15px;
	font-size: 16px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.form-control:focus {
	border-color: var(--blue);
}
textarea.form-control {
	height: 160px;
	padding-top: 15px;
	resize: none;
}

.btn {
	padding: 0.657rem 0.75rem;
	font-size: 18px;
	letter-spacing: 0.05em;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.btn-primary {
	color: var(--white);
	background-color: var(--blue);
	border-color: var(--bg3);
}

.icons-container {
	position: fixed;
	top: 88%;
	left: 15px;
	width: 60px;
	height: 60px;
	background-color: var(--social1);
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
	font-size: 28px;
	z-index: 99999;
	animation: animated-border 1.5s infinite;
}
.icons-container a {
	text-decoration: none;
	color: var(--white);
}
.container {
	display: flex;
	flex-direction: column;
}

.container .icon {
	font-size: 25px;
	color: var(--white);
	padding: 10px;
	width: 35px;
	height: 35px;
	border-radius: 0 10px 10px 0;
	transition: width, background, 400ms ease;
}

.icon:nth-child(1) {
	background-color: var(--bg3);
	color: var(--white);
}

.icon:nth-child(2) {
	background-color: var(--blue);
}

.icon:nth-child(3) {
	background-color: var(--activ-color);
}
@keyframes animated-border {
	0% {
		box-shadow: 0 0 0 0 var(--bgc-gra);
	}
	100% {
		box-shadow: 0 0 0 30px var(--text2);
	}
}

button.back-to-top {
	margin: 0 !important;
	padding: 0 !important;
	background: var(--white);
	height: 0px;
	width: 0px;
	overflow: hidden;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	color: transparent;
	clear: both;
	visibility: hidden;
	position: fixed;
	cursor: pointer;
	display: block;
	border: none;
	right: 50px;
	bottom: 75px;
	font-size: 0px;
	outline: 0 !important;
	z-index: 99;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
button.back-to-top:hover,
button.back-to-top:active,
button.back-to-top:focus {
	outline: 0 !important;
}
button.back-to-top::before,
button.back-to-top::after {
	content: "";
	display: block;
	vertical-align: middle;
	border-bottom: solid 10px var(--indigo);
	border-left: solid 10px transparent;
	line-height: 0;
	border-right: solid 10px transparent;
	height: 0;
	margin: 18px auto 0;
	width: 0;
	border-radius: 20px;
	visibility: hidden;
}
button.back-to-top.show::after,
button.back-to-top.show::before {
	visibility: visible;
}
button.back-to-top::after {
	border-bottom-color: var(--white);
	position: relative;
	top: -24px;
}
button.back-to-top.show {
	display: block;
	background: var(--film-color);
	color: var(--activ-color);
	font-size: 25px;
	right: 25px;
	bottom: 50px;
	height: 50px;
	width: 50px;
	visibility: visible;
}
.column {
	float: left;
	width: 25%;
}

/* The Modal (background) */
.modal {
	display: none;
	position: fixed;
	z-index: 99999;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: var(--bg7);
}

/* Modal Content */
.modal-content {
	position: relative;
	background-color: transparent;
	margin: auto;
	padding: 0;
	width: 90%;
	max-width: 1200px;
}

/* The Close Button */
.close {
	color: var(--white);
	position: absolute;
	top: 6%;
	right: 32px;
	font-size: 35px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: var(--gray);
	text-decoration: none;
	cursor: pointer;
}

.mySlides {
	display: none;
}

.cursor {
	cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -50px;
	color: var(--white);
	font-weight: bold;
	font-size: 20px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
	-webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
	background-color: var(--bg5);
}

/* Number text (1/3 etc) */
.numbertext {
	color: var(--bg1);
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 3%;
	left: 0;
}

/* img {
  margin-bottom: -4px;
} */

.caption-container {
	text-align: center;
	background-color: var(--black);
	padding: 2px 16px;
	color: var(--white);
}

.demo {
	opacity: 0.6;
}

.active,
.demo:hover {
	opacity: 1;
}

/* img.hover-shadow {
  transition: 0.3s;
} */

.hover-shadow:hover {
	box-shadow: 0 4px 8px 0 var(--bg5);
}
.main .card {
  background: var(--white);
  box-shadow: 0 1px 3px var(--bg5);
  color: var(--bg3);
  border-radius: 2px;
}
.main .card-image {
  background: var(--white);
  display: block;
  padding-top: 70%;
  position: relative;
  width: 100%;
}
.main .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg7);
  overflow: hidden;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: .3s ease;
  transition: .5s ease;
}

.film_img_dtl:hover .overlay {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.text {
  color: var(--white);
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}



/*--------- main css start -------------*/

:root {
	--blue: #1e90ff;
	--white: #ffffff;
	--black: #000000;
	--purple: #5a0465;
	--film-color: #ebf6fc;
	--gray: #404040;
	--off-white: #eeeeee;
	--activ-color: #f0c;
	--txt-color: #909090;
	--text1: #343434;
	--text2: #606060;
	--text3: #fbdbff;
	--txt4: #c3a4ff;
	--txt5: #1f0f43;
	--bg1: #f6f1ff78;
	--black: #000000;
	--bg3: #281451;
	--mbg2: rgb(0 0 0 / 80%);
	--bg4: rgb(255, 255, 255);
	--bg5: rgba(8, 6, 6, 0.5);
	--bg7: rgba(3 3 3 / 85%);
	--bg8: rgba(0, 0, 0, 0.5);
	--bgc-gra: radial-gradient(circle, rgba(57, 30, 107, 1) 0%, rgba(30, 14, 66, 1) 100%);
	--bg6: #f0f8ff;
	--social1: #25d366;
	--red: #cf4e17;
}

	img {
		max-width: 100%;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		font-family: NotoSerifDisplay !important;
		margin-top: 0;
		color: var(--gray);
		font-weight: 500;
		letter-spacing: normal;
		padding: 0;
		margin: 0;
	}

	ul.li,
	p {
		padding: 0;
		margin: 0;
		font-size: 12px;
		text-transform: uppercase;
		font-weight: 700;
		color: var(--black);
		letter-spacing: 1px;
		font-family: MontserratVariableFont;
		margin-bottom: 1%;
	}

	h2.awesome {
		font-style: italic;
		width: 100%;
		margin: 0 auto;
		text-align: center;
		/* color:#313131; */
		font-size: 65px;
		font-weight: bold;
		-webkit-animation: colorchange 20s infinite alternate;
		font-weight: 900;
		margin-top: 4%;
		margin-bottom: 4%;
	}
	/* header */
	.head_holder {
		padding: 0px 0;
		background: var(--bgc-gra);
		position: relative;
		z-index: 99;
		position: fixed;
		width: 100%;
		border-bottom: 3px solid;
		border-color: var(--activ-color);
		/* box-shadow: 0px 4px 10px 0px var(--bg3); */
		top: 0;
	}
	.logo_holder{
		height: 70px;
	}
	.logo_holder img {
		height: 100%;
		width: 100%;
	}
	.social_link {
		padding: 20px 0;
	}

	.nav-link.menu_item_holder.active_holder {
		color: var(--activ-color) !important;
	}

	/* banner */

	.banner_holder {
		padding: 67px 0 10px;
		/* background-color: #418596; */
		position: relative;
		z-index: 1;
	}

	.banner_dtl h2 {
		color: var(--white);
		font-size: 34px;
		letter-spacing: 2px;
		text-transform: capitalize;
		margin-bottom: 2%;
	}

	.menu_holder {
		display: flex;
		justify-content: center;
		background-color: var(--bg5);
	}

	.banner_img_effect {
		padding: 20px 0;
		position: relative;
		z-index: 1;
		margin-top: 10%;
	}

	.banner_dtl p {
		color: var(--white);
		font-size: 19px;
		text-transform: capitalize;
		letter-spacing: 2px;
	}

	.banner_img_effect img {
		width: 360px;
		height: 330px;
		border-radius: 50%;
		margin-top: 5%;
	}

	.social_icon {
		display: block;
		margin-right: 0px;
		margin-bottom: 0;
	}

	.social_icon li {
		display: inline-block;
		margin-left: 7px;
	}

	.social_icon li a {
		text-decoration: none;
		color: var(--white);
		font-size: 19px;
		transition: all 0.5s;
		margin-right: 8px;
	}
	.social_icon li a i {
		transition: all 0.5s;
	}
	.social_icon li a i:hover {
		color: var(--activ-color);
	}

	/* ------------------- footer_holder -------------------*/
	.footer_holder {
		padding: 3% 0 1%;
		background: var(--bgc-gra);
		position: relative;
		z-index: 1;
		margin-top: 0%;
	}
	.footer_cont h2 {
		color: var(--white);
		font-size: 14px;
		text-transform: capitalize;
		text-align: left;
		letter-spacing: 2px;
	}
	.footer_cont_txt h2 {
		color: var(--bg1);
		font-size: 18px;
		text-transform: capitalize;
		letter-spacing: 2px;
	}
	.footer_icon {
		padding: 20px 0;
		display: flex;
		/* align-items: center; */
		justify-content: flex-start;
		padding-top: 5%;
		flex-direction: column;
	}
	.footer_icon.foot_contct h2{
		color: var(--white);
		margin-bottom: 6%;
		font-size: 22px;
		text-transform: capitalize;
		letter-spacing: 2px;
	}
	.footer_icon ul {
		display: block;
		margin: 0;
	}

	.footer_icon ul li {
		display: inline-block;
		margin-right: 1px;
		background-color: var(--bg3);
		padding: 2px 4px;
		border: 1px solid var(--gray);
		border-radius: 0%;
	}
	.footer_icon ul li a {
		text-decoration: none;
		color: var(--white);
		font-size: 18px;
		text-transform: capitalize;
		border: 2px;
		/* border-color: #fff; */
		/* border-style: solid; */
		padding: 12px 6px;
	}
	.footer_icon ul li a:hover {
		color: var(--activ-color);
	}
	.footer_icon.foot_contct ul li {
		display: block;
		margin-bottom: 12px;
		background-color: transparent;
		border: none;
		padding: 0;
	}
	.footer_icon.foot_contct ul li a {
		font-size: 15px;
		text-align: left;
	}
	.footer_icon.foot_contct ul li a i {
		padding-right: 8px;
	}
	.footer_menu_holder {
		/* background-color: #142536; */
	}
	.foot_menu_dtl h2{
		color: var(--white);
		margin-bottom: 6%;
		font-size: 22px;
		text-transform: capitalize;
		letter-spacing: 2px;
	}
	.foot_menu_dtl ul {
		display: block;
		list-style: none;
		text-align: center;
		margin: 0;
	}
	.foot_menu_dtl ul li {
		display: block;
		margin-bottom: 8px;
		text-align: left;
	}
	.foot_menu_dtl ul li a {
		text-decoration: none;
		color: var(--white);
		font-size: 14px;
		text-transform: capitalize;
		transition: all 0.5s;
	}
	.foot_menu_dtl ul li a:hover {
		color: var(--activ-color);
	}
	/* about_holder */

	.about_holder {
		padding: 20px 0;
		background-color: var(--bg4);
	}

	.about_cont h3 {
		font-size: 24px;
		letter-spacing: 0px;
		color: var(--gray);
		font-weight: 600;
		margin-bottom: 1%;
	}

	.navbar .navbar-brand {
		font-size: 30px;
	}

	.navbar .nav-item {
		padding: 10px 6px;
		margin-right: 4px;
	}

	.nav-link.menu_item_holder {
		font-size: 15px;
		margin-left: 0px;
		padding: 0;
		color: var(--white) !important;
		font-weight: 500;
		letter-spacing: 1px;
		font-family: MontserratVariableFont;
	}

	.nav-link:hover.menu_item_holder {
		color: var(--activ-color) !important;
	}

	.about_dtl {
		padding: 20px 0;
		overflow: hidden;
	}

	.about_dtl img {
		width: 100%;
		height: 100%;
		transition: all 0.5s;
		border-radius: 15px;
	}

	.about_cont {
		padding: 1% 0;
	}

	.about_txt_cont h1 {
		text-align: center;
		text-transform: capitalize;
		font-size: 23px;
		line-height: 34px;
		margin-bottom: 0;
		margin-top: 10px;
	}

	.about_txt_cont p {
		font-size: 12px;
		text-align: center;
		text-transform: capitalize;
	}

	.btn.btn-primary.abt_btn {
		background-color: var(--purple);
		border-radius: 30px;
		box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04) !important;
		padding: 17px 25px;
		border: none;
		transition: all 0.5s;
		margin-top: 9%;
	}

	.btn.btn-primary.abt_btn:hover {
		background-color: var(--activ-color);
	}

	/* film_holder */

	.film_holder {
		padding: 0% 0 0 0;
		overflow: hidden;
		z-index: 1;
		position: relative;
	}

	.dvo_txt_holder {
		position: absolute;
		top: 0%;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 2;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		colovar(--white);
		background: rgba(0, 0, 0, 0.3);
	}

	.dvo_txt_holder h2 {
		margin-bottom: 20px;
		margin-top: 10em;
		color: var(--white) !important;
		font-weight: 400;
		font-size: 58px;
		line-height: 60px;
	}

	.film_vdo_cont {
		position: relative;
		width: 100%;
		height: 100%;
		padding: 60% 0 1% 0;
	}

	.vdo_holder {
		object-fit: cover;
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 1;
	}

	.btn.btn-primary.vdo_btn {
		background: var(--white);
		color: var(--black);
		font-size: 1.4rem;
		padding: 0.6rem 1rem;
		border-radius: 50px;
		display: inline-block;
		cursor: pointer;
		border: none;
	}

	.film_holder:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(0deg, var(--bg4) 30%, var(--bg5) 70%
		);
		z-index: 1;
	}

	.film_cont h1 {
		text-align: left;
		font-size: 43px;
		color: var(--black);
		letter-spacing: 2px;
		margin-bottom: 1%;
	}

	.film_txt p {
		font-size: 16px;
		color: var(--black);
		letter-spacing: 2px;
		line-height: 28px;
	}

	.btn-2 {
		width: 200px;
		height: 50px;
		background-color: transparent;
		color: var(--black);
		border: 4px solid var(--bg3);
		text-align: center;
		text-transform: uppercase;
		font-size: 20px;
		font-weight: 500;
		border-radius: 0;
		position: relative;
		margin: 0 0px;
		transition: 0.5s;
	}

	.btn-2::before {
		content: "";
		position: absolute;
		background: var(--activ-color);
		width: 0px;
		height: 42px;
		left: 0;
		top: 0;
		transition: 0.5s;
		z-index: -1;
	}

	.btn-2::after {
		content: "";
		position: absolute;
		background: var(--red);
		width: 0px;
		height: 42px;
		right: 0;
		top: 0;
		z-index: -1;
		transition: 0.5s;
	}

	.btn-2:hover {
		color: var(--bg6);
		border-radius: 0 20px 0 20px;
		border: 4px solid var(--activ-color);
	}

	.btn-2:hover.btn-2::before {
		width: 100px;
		border-radius: 0 0 0 10px;
	}

	.btn-2:hover.btn-2::after {
		width: 100px;
		border-radius: 0 10px 0 0;
	}

	.film_txt1 h1 {
		text-align: left;
		font-size: 23px;
		text-transform: capitalize;
		color: var(--black);
		margin-bottom: 11px;
	}

	.film_txt1 p {
		font-size: 14px;
		color: var(--black);
		letter-spacing: 2px;
		line-height: 23px;
	}

	.btn-2.bst_btn {
		border: 4px solid var(--white);
		color: var(--white);
	}

	/* ------- our_team_holder --------- */ 

	.our_team_holder {
		padding: 4% 0 2%;
		/* background-color: var(--off-white); */
	}

	.our_team_holder h1 {
		color: var(--black);
		font-size: 19px;
		text-align: left;
		letter-spacing: 2px;
		line-height: 1.5;
		font-weight: 500;
		margin-bottom: 4%;
	}

	.carousel-indicators li {
		border-radius: 50%;
		width: 10px !important;
		height: 10px !important;
	}

	.carousel-indicators .active {
		background-color: var(--txt5);
	}

	/* best_wedding_holder */

	.best_wedding_holder {
		background-image: url(../image/bg1.avif);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		background-attachment: fixed;
		width: 100%;
		height: auto;
		padding: 4% 0;
	}

	.best_txt_holder h1 {
		color: var(--text1) !important;
		font-size: 30px;
		font-weight: 900;
		text-transform: capitalize;
	}

	.best_txt_holder p {
		font-size: 16px;
		line-height: 32px;
		font-weight: 900;
		margin-bottom: 40px;
		color: var(--text2);
		margin-top: 2%;
	}

	.best_btn {
		color: var(--blue);
		font-size: 28px;
		line-height: 38px;
		font-weight: 300;
		border: none;
		background-color: transparent;
	}

	/* wd-film-holder */

	.wd-film-holder {
		padding: 4% 0;
		background-image: url(../image/bg2.avif);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		width: 100%;
		height: auto;
	}

	.wd_film_img img {
		width: 100%;
		height: 100%;
		border-radius: 15px;
	}

	.wd_ftxt_dtl h1 {
		color: var(--text3) !important;
		font-size: 36px;
		font-weight: 900;
		text-transform: capitalize;
		margin-bottom: 20px;
		letter-spacing: 7px;
	}

	.wd_ftxt_dtl p {
		font-size: 20px;
		line-height: 27px;
		font-weight: 100;
		color: var(--txt4);
		margin-bottom: 40px;
		text-transform: capitalize;
	}

	.wd_ftxt_dtl a {
		color: var(--activ-color);
	}

	.wd-fbtn-2 {
		background: var(--white);	
		color: var(--black);
		font-size: 1.4rem;
		padding: 0.6rem 1rem;
		border-radius: 50px;
		display: inline-block;
		cursor: pointer;
		border: none;
	}

	.wd-fbtn-2 i {
		/* background-color: red; */
		color: var(--activ-color);
	}

	/*------ service_holder ---------*/

	.service_holder h1 {
		color: var(--text1) !important;
		font-size: 34px;
		line-height: 38px;
		font-weight: 500;
		margin-bottom: 1%;
	}
	.service_holder .slider {
		width: 100%;
		overflow: hidden;
		padding: 30px 0;
		margin-top: 30px;
	}
	.service_holder .slider .auto_slider_container {
		height: 300px;
	}
	@media (max-width: 1200px) {
		.slide_img {
			flex: 0 0 25%;
			min-width: 25%;
			max-width: 25%;
		}
	}
	@media (max-width: 768px) {
		.slide_img {
			flex: 0 0 33.333%;
			min-width: 33.333%;
			max-width: 33.333%;
		}
		.service_holder .slider .auto_slider_container {
			height: 250px;
		}
	}
	@media (max-width: 576px) {
		.slide_img {
			flex: 0 0 50%;
			min-width: 50%;
			max-width: 50%;
		}
		.service_holder .slider .auto_slider_container {
			height: 200px;
		}
	}

	.service_holder p {
		font-size: 60px;
		line-height: 66px;
		font-weight: 600;
		background: linear-gradient(
			90deg,
			rgba(99, 41, 125, 1) 0%,
			rgba(32, 46, 181, 1) 100%
		);
		margin-bottom: 1%;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}

	.slide_img img {
		width: 100%;
		height: auto;
		object-fit: cover;
	}

	.our_team_cont h1 {
		font-size: 22px;
		line-height: 34px;
		color: var(--txt5) !important;
		letter-spacing: 0px !important;
		font-weight: 400;
	}

	.our_team_dtl img {
		width: 100%;
		height: auto;
		border-radius: 15px;
	}

	.abt_rigp_dtl h2 {
		font-size: 24px;
		line-height: 38px;
		color: var(--text1) !important;
		margin-bottom: 20px;
		font-weight: 600;
		text-transform: uppercase;
	}

	.abt_rigp_dtl p {
		font-size: 16px;
		line-height: 23px;
		color: var(--text2) !important;
		font-weight: 300;
		text-transform: capitalize;
	}

	.abt_rtem_txt_dtl h1 {
		font-size: 26px;
		line-height: 38px;
		color: var(--text1) !important;
		margin-bottom: 20px;
		font-weight: 600;
		text-transform: uppercase;
	}

	.abt_rtem_txt_dtl ul {
		display: block;
		margin-right: 15px;
		border-radius: 50%;
		width: 66px;
		height: 66px;
		padding: 7%;
		background-color: var(--bg6);
	}

	.abt_rtem_txt_dtl ul li {
		display: inline-block;
	}

	.abt_rtem_txt_dtl ul li i {
		/* background-color: #ece8f9; */
		color: #8763f5;
		/* width: 66px; */
		/* height: 66px; */
		border-radius: 50%;
		display: table-cell;
		text-align: center;
		margin: 0 auto;
		vertical-align: middle;
		font-size: 20px;
	}

	.rtem_txt_dtl span {
		font-size: 20px;
		font-weight: 500;
		color: var(--gray);
	}

	.rtem_txt_dtl p {
		font-size: 14px;
		line-height: 24px;
		color: var(--text2) !important;
		text-transform: capitalize;
		font-weight: 100;
		padding-top: 7px;
	}

	

	/*--------- award_win_holder ----------*/

	.award_win_holder {
		background-color: var(--bg1);
	}

	.award_win_holder h2 {
		font-size: 22px;
		line-height: 34px;
		color: var(--gray);
		margin-bottom: 20px;
	}

	.award_win_holder p {
		font-size: 16px;
		line-height: 32px;
		font-weight: 400;
		color: var(--text6);
		text-transform: capitalize;
	}

	/* ------------ plan_holder -------------*/

	.plan_holder {
		padding: 4% 0;
		background-image: url(../image/bg-1.avif);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		background-attachment: fixed;
		width: 100%;
		height: 100%;
		position: relative;
		z-index: 1;
	}

	.plan_holder:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: var(--bg5);
		z-index: -1;
	}

	.plan_txt_dtl h1 {
		color: var(--white) !important;
		font-size: 22px;
		line-height: 34px;
		letter-spacing: 1px;
		text-transform: uppercase;
		margin-bottom: 20px;
	}

	.plan_txt_dtl p {
		color: var(--white) !important;
		font-size: 17px;
		line-height: 32px;
		font-weight: 100;
		text-transform: capitalize;
	}

	.form_option_dtl {
		height: 48px;
		background: var(--bg5);
		border: 1px solid var(--white);
		border-radius: 25px;
		padding: 0 20px;
		color: var(--white) !important;
	}

	.custom-control.custom-checkbox {
		padding-right: 2px;
		padding-left: 0;
	}

	.plan_btn {
		background-color: var(--film-color);
		border-radius: 50px;
		padding: 10px 30px;
		color: var(--black);
		text-transform: uppercase;
		border: none;
	}

	/*----------- service_other_holder ------------------*/

	.service_other_holder {
		background-color: var(--bg1);
	}

	.service_other_holder h2 {
		font-size: 22px;
		line-height: 34px;
		letter-spacing: 1px;
		text-transform: uppercase;
		margin-bottom: 20px;
		color: var(--black) !important;
	}

	.service_other_holder p {
		font-size: 20px;
		line-height: 18px;
		color: var(--black) !important;
		font-weight: 400;
		text-transform: capitalize;
		margin-bottom: 5%;
		text-align: center;
	}

	.service_other_txt_cont {
		border-radius: 20px !important;
		overflow: hidden;
	}
	.oserv_txt_dtl a {
		text-decoration: none;
	}

	.oserv_txt_dtl h4 {
		font-weight: 400;
		font-size: 24px;
		line-height: 36px;
		color: var(--text1) !important;
		margin-bottom: 10px;
		text-decoration: none !important;
	}

	.oserv_txt_dtl p {
		font-weight: 100;
		font-size: 15px;
		line-height: 21px;
		color: var(--text2) !important;
		margin-bottom: 10px;
		text-align: left;
	}

	.other_btn {
		background-color: transparent;
		border: none;
		color: var(--txt-color);
		text-transform: uppercase;
		font-size: 15px;
		padding: 0;
	}

	.osrv_btn {
		font-size: 16px;
		font-weight: 200;
		color: var(--white);
		background: var(--purple);
		border: 0;
		margin-bottom: 10px;
		margin-right: 5px;
		padding: 17px 25px;
		letter-spacing: 1px;
		text-transform: uppercase;
		line-height: 1;
		border-radius: 30px;
		text-shadow: none;
		transition: all 0.15s ease-in-out;
		box-shadow: none;
		display: inline-block;
	}

	.osrv_btn:hover {
		background-color: var(--activ-color);
	}

	.flex {
		display: flex;
		justify-content: space-between;
		margin: 100px auto;
		width: 100%;
	}

	.count-num {
		text-align: center;
		font-size: 35px;
		font-weight: 700;
	}

	.scount_holder {
		border-radius: 30px;
		background-color: var(--white);
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.count_txt_dtl {
		font-size: 15px !important;
		letter-spacing: 1px;
		font-weight: 700;
		line-height: 1;
		text-transform: uppercase;
		margin-bottom: 20px;
		color: var(--black);
		text-align: left !important;
	}

	.count-num {
		font-size: 45px !important;
		margin: 0 0 17px !important;
		line-height: 1;
		font-weight: 400 !important;
		color: var(--black);
		text-align: left !important;
	}

	.count_img_dtl {
		margin-right: 2%;
	}

	/* ------------ contact_section -----------------*/

	.contact_cont {
		border-radius: 20px !important;
		overflow: hidden;
		box-shadow: 0 5px 20px var(--bg5) !important;
		background-color: var(--white);
	}
	.contact_txt_dtl {
		padding: 50px 45px;
	}
	.contact_txt_dtl h3 {
		font-size: 24px;
		margin-bottom: 5px;
		margin-top: 0;
		color: var(--black);
		font-weight: 500;
		letter-spacing: normal;
	}
	.contact_txt_dtl p {
		margin-bottom: 14px;
		line-height: 1.3;
		color: var(--black);
		font-size: 16px;
		text-transform: capitalize;
		font-weight: 100;
	}
	.contact_txt_dtl ul {
		display: block;
		list-style: none;
	}
	.contact_txt_dtl ul li {
		display: block;
		margin-bottom: 5px;
	}
	.contact_txt_dtl ul li i {
		color: var(--black);
		font-size: 15px;
	}
	.contact_txt_dtl ul li span {
		text-align: left;
		color: var(--black);
		font-size: 15px;
	}
	.responsive-map {
		position: relative;
		overflow: hidden;
	}

	/* ---------------- testimon_holder --------------------*/ 

	.testimon_holder {
		background-color: var(--bg1);
	}
	.testimon_cont h3 {
		font-size: 22px;
		line-height: 34px;
		color: var(--black);
		letter-spacing: 1px;
		text-transform: uppercase;
		font-weight: 500;
		margin-bottom: 2%;
	}
	.testimon_cont p {
		font-size: 22px;
		line-height: 34px;
		font-weight: 400;
		color: var(--gray);
		margin-bottom: 3%;
	}
	.testimo_dtl {
		background-color: var(--white);
		box-shadow: 0 5px 20px var(--bg5);
		border-radius: 17px;
		position: relative;
		z-index: 1;
		height: 250px;
		margin-bottom: 26px;
	}
	.testimo_dtl:before {
		content: "\201D";
		color: var(--bg7);
		font-size: 182px;
		line-height: 1;
		z-index: 1;
		position: absolute;
		top: -6px;
		left: 8px;
		z-index: -1;
		visibility: hidden;
	}
	.testimo_dtl h4 {
		font-size: 16px;
		line-height: 1.4;
		font-style: normal;
		color: var(--black);
		margin-bottom: 12px;
	}
	.testimo_dtl p {
		font-weight: 700;
		letter-spacing: 1px;
		margin-bottom: 10px;
		display: block;
		font-size: 11px;
		line-height: 21px;
		text-transform: uppercase;
		color: var(--black);
		position: relative;
		z-index: 2;
	}

	/*--------------------remember_section --------------------*/

	.remember_section {
		background-color: var(--bg1);
	}
	.remember_holder h3 {
		color: var(--black);
		font-size: 25px;
		font-weight: 400;
		margin-bottom: 6%;
		margin-top: 2%;
	}
	.remember_holder p {
		color: var(--black);
		text-transform: capitalize;
		font-size: 15px;
	}
	.remb_txt_dtl {
		background-color: var(--white);
		border-radius: 16px;
		height: 296px;
		margin-bottom: 38px;
	}
	.remb_txt_dtl img {
		width: auto;
		height: 60px;
		margin-bottom: 8px;
	}
	.remb_txt_dtl h5 {
		color: var(--black);
		font-size: 19px;
		font-weight: 500;
		margin-bottom: 10px;
		margin-top: 5px;
	}
	.remb_txt_dtl p {
		color: var(--black);
		font-size: 14px;
		text-transform: capitalize;
		margin-bottom: 8px;
	}

	/*------------------pre_wedding_section ------------------*/

	.pre_wedding_section {
		background-color: var(--bg1);
	}
	.pre-wedding_dont {
		padding: 20px 0;
	}
	.pre-wedding_dont h4 {
		font-size: 22px;
		line-height: 34px;
		letter-spacing: 1px;
		text-transform: uppercase;
		color: var(--black);
		margin-bottom: 2%;
	}
	.pre-wedding_dont p {
		font-size: 18px;
		line-height: 34px;
		font-weight: 400;
		color: var(--black);
		text-transform: capitalize;
		margin-bottom: 2%;
	}
	.pre_wedding_holder {
		padding: 20px 0;
		background-color: var(--white);
		border-radius: 20px;
		height: 570px;
	}
	.pre_wedding_holder img {
		width: 100%;
		height: auto;
		border-radius: 15px;
		margin-bottom: 6%;
	}
	.pre_wedding_holder h2 {
		font-size: 1.25rem;
		margin-bottom: 14px;
		color: var(--black);
		font-weight: 500;
		letter-spacing: normal;
		text-align: left;
	}
	.pre_wedding_holder p {
		text-align: left;
		font-size: 14px;
		color: var(--black);
		line-height: 24px;
		font-weight: 200;
	}

	/*------------------- question_holder -------------------*/

	.section_title {
		font-size: 22px;
		line-height: 34px;
		letter-spacing: 1px;
		text-transform: uppercase;
		color: var(--black);
		margin-bottom: 5%;
	}

	/*---------------------- block_holder -----------------*/

	.block_dtl {
		margin-bottom: 11%;
	}
	.block_holder {
		background-color: var(--bg1);
	}
	.block_inner h2 {
		font-size: 22px;
		line-height: 34px;
		letter-spacing: 1px;
		text-transform: uppercase;
		margin-bottom: 20px;
		color: var(--black);
	}
	.block_inner p {
		font-size: 21px;
		line-height: 34px;
		margin-bottom: 6%;
		color: var(--black);
		text-transform: capitalize;
	}
	.block_img img {
		width: 100%;
		height: 100%;
		border-radius: 15px;
	}
	.block_dtl a {
		text-decoration: none;
	}
	.block_txt h3 {
		font-size: 20px;
		line-height: 34px;
		color: var(--gray);
		margin-top: 4%;
	}
	.block_txt p {
		font-size: 12px;
		color: var(--txt-color);
	}
	.footer_bottom {
		position: relative;
		z-index: 1;
	}
	.footer_bottom i {
		color: var(--activ-color);
		font-size: 15px;
	}
	.footer_bottom a {
		text-decoration: none;
	}
	.footer_bottom p {
		font-size: 15px;
		color: var(--activ-color);
		text-transform: capitalize;
		font-weight: 500;
		margin-top: 10px;
	}
	.footer_bottom:before {
		content: "";
		position: absolute;
		top: 38%;
		left: 0;
		width: 49%;
		height: 1px;
		background: var(--gray);
		z-index: -1;
	}
	.footer_bottom:after {
		content: "";
		position: absolute;
		top: 38%;
		right: 0;
		width: 49%;
		height: 1px;
		background: var(--gray);
		z-index: -1;
	}
	.carousel-hero-banner.popup_img {
		height: 300px;
	}
	.form-control.frm_dtl {
		border-radius: 20px;
	}

	/*----------------- moments_banner -------------------*/

	.moments_banner {
		background-image: url(../images/banners/moments_hero.webp);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		width: 100%;
		height: 100%;
		position: relative;
		z-index: 1;
	}
	.moments_banner:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: var(--bg5);
		z-index: -1;
	}
	.moments_dtl {
		padding: 1% 0 10%;
		position: relative;
		z-index: 1;
		overflow: hidden;
		text-align: center;
	}
	.moments_dtl h2 {
		font-size: 33px;
		color: var(--white);
		line-height: 52px;
		margin-bottom: 20px;
	}
	.moments_dtl p {
		font-size: 21px;
		color: var(--white);
		line-height: 37px;
		margin-bottom: 20px;
		text-transform: capitalize;
	}

	/*--------------------- moments_images ------------------------*/

	.moments_images {
		background-color: var(--black);
	}
	.moments_img_cont img {
		width: 100%;
		padding: 1px;
		cursor: zoom-in;
		height: 100%;
	}
	.numbertext.moment_img_effect{
		left: -26%;
		top: -11%;
	}
	.modal-content.moment_modal_content{
		overflow: unset;
	}
	.moment_close{
		top: 2%;
	}

	/*---------------- wedding-portfolio ---------------------*/ 
	.wedding-portfolio {
		background-image: url(../images/banners/wedding_hero.webp);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		width: 100%;
		height: 100%;
		position: relative;
		z-index: 1;
	}
	.wedding-portfolio:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: var(--bg5);
		z-index: -1;
	}
	/*--------------- kids-portfolio --------------*/

	.kids-portfolio {
		padding: 4% 0 0;
	}
	.kids-portfolio img {
		width: 100%;
		height: 100%;
	}

	/*---------- chips-container --------------*/

	.chips-container {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		padding: 20px;
		justify-content: center;
	}

	.chip {
		padding: 6px 16px;
		border: 1.5px solid var(--activ-color);
		border-radius: 20px;
		color: var(--text-color);
		font-size: 14px;
		cursor: pointer;
		background-color: transparent;
		transition: all 0.2s ease;
	}
	.custom-card.wedding_img_dtl{
		border-radius: 0;
		box-shadow: none;
	}
	.custom-card.wedding_img_dtl img{
		border-radius: 20px;
	}
	.custom-card:hover.wedding_img_dtl{
		transform: translateY(0px);
    	box-shadow: none;
	}
	.chip:hover {
		background-color: var(--activ-color);
		color: var(--white);
	}

	.chip.active {
		background-color: var(--text-color);
		color: var(--white);
		border-color: var(--text-color);
	}

	.custom-card {
		background: var(--white);
		border: none;
		border-radius: 20px;
		box-shadow: 0 2px 10px var(--bg7);
		overflow: hidden;
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}

	.custom-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 6px 20px var(--bg5);
	}

	.custom-card img {
		width: 100%;
		height: auto;
		border-top-left-radius: 20px;
		border-top-right-radius: 20px;
		object-fit: cover;
	}

	.card-body {
		padding: 15px 10px 20px;
	}

	.card-title {
		font-weight: 600;
		color: var(--black);
		margin-bottom: 5px;
	}

	.card-text {
		font-size: 13px;
		letter-spacing: 0.5px;
	}

	/*--------------- kid_txt_holder --------------*/

	.kid_txt_holder {
		background-color: var(--bg6);
	}
	.custom-card.kidzone-img:hover {
		transform: translateY(0px);
		box-shadow: 0 6px 20px var(--bg4);
	}
	.kid_txt_dtl h2 {
		font-size: 30px;
		margin-bottom: 12px;
		color: var(--bg3);
	}
	.kid_txt_dtl p {
		color: var(--black);
		font-size: 18px;
		text-transform: capitalize;
		margin-bottom: 2%;
	}
	.kid_sub_dtl ul {
		display: block;
		list-style: none;
	}
	.kid_sub_dtl ul li {
		font-size: 17px;
		font-weight: 600;
		color: var(--bg3);
	}

	/*------------------- films_dtl_banner ------------------*/

	.films_dtl_banner {
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		width: 100%;
		height: 500px;
		position: relative;
		z-index: 1;
		overflow: hidden;
	}
	.films_dtl_banner:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: var(--bg3);
		z-index: 1;
		opacity: 1;
	}
	.moments_cont {
		padding: 19% 0 2%;
		z-index: 1;
		position: relative;
		text-align: center;
	}
	.film_img_dtl{
		position: relative;
		z-index: 1;
		overflow: hidden;
		border-radius: 20px;
	}
	.film_effiect_dtl h5{
		color: var(--white);
		font-size: 20px;
	}
	.film_img_effect i{
		color: var(--white);
		font-size: 15px;
	}
	.films_bnrt_dtl h2 {
		color: var(--white);
		font-size: 34px;
		text-transform: capitalize;
		margin-bottom: 2%;
	}
	.films_bnrt_dtl p {
		color: var(--white);
		font-size: 18px;
		text-transform: capitalize;
		margin-bottom: 3%;
	}
	.custom-card.film_crd_holder {
		border: none !important;
		border-radius: 0 !important;
		background-color: transparent;
		box-shadow: none;
	}
	.film_crd_holder img {
		border-radius: 20px;
	}
	.custom-card.film_crd_holder:hover{
		transform: translateY(0px);
	}
	.film_crd_holder a {
		text-decoration: none;
	}
	.film_crd_holder:hover img {
		box-shadow: none !important;
	}

	/*------------------ albums_banner ------------------*/ 

	.albums_banner {
		background-image: url(../images/banners/Album_hero.webp);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		width: 100%;
		height: 500px;
		position: relative;
		z-index: 1;
	}
	.albums_banner:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: var(--bg5);
		z-index: -1;
	}
	.albums_dtl {
		margin-top: 11%;
	}
	.albums_dtl h2 {
		font-size: 34px;
		color: var(--white);
		line-height: 52px;
		margin-bottom: 20px;
	}
	.albums_dtl p {
		font-size: 24px;
		color: var(--white);
		line-height: 44px;
		margin-bottom: 20px;
		text-transform: capitalize;
	}
	.mySlides.album_slider {
		width: 100%;
		height: 100%;
		text-align: center;
	}
	.albslider_img{
		width: 80%;
		height: 100%;
		margin-top: 1%;
	}
	.albums_images_dtl {
		padding: 2% 0 0;
	}
	.albums_images_dtl h3 {
		color: var(--black);
		font-size: 30px;
		text-transform: capitalize;
		margin-bottom: 2px;
	}
	.albums_images_dtl p {
		color: var(--activ-color);
		font-size: 58px;
		text-transform: capitalize;
		margin-bottom: 3px;
		font-weight: 800;
	}
	.alb_btn {
		color: var(--blue);
		font-size: 20px;
		border: none;
		background-color: transparent;
		margin-bottom: 3%;
	}

	/*---------------- service_banner ---------------*/

	.service_banner {
		background-image: url(../image/ser1.avif);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		width: 100%;
		height: 500px;
		position: relative;
		z-index: 1;
	}
	.service_banner:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: var(--bg5);
		z-index: -1;
	}
	.service_dtl h2 {
		font-size: 34px;
		color: var(--white);
		line-height: 52px;
		margin-bottom: 20px;
		margin-top: 13%;
	}
	.service_dtl p {
		font-size: 23px;
		color: var(--white);
		line-height: 40px;
		margin-bottom: 20px;
		text-transform: capitalize;
	}

	/*----------------- book-us / about_us_holder -------------*/
	
	.about_us_holder img {
		margin-top: 4%;
	}
	.abt_us_icon {
		background-color: var(--text3);
	}
	.kid_txt_dtl.blog_txt_dtl {
		padding-top: 10%;
	}

	/*-------------------- reviev_banner --------------------*/

	.reviev_banner {
		background-image: url(../image/rew1.jpg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		width: 100%;
		height: 500px;
		position: relative;
		z-index: 1;
	}
	.reviev_banner:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: var(--bg5);
		z-index: -1;
	}
	.review_dtl {
		margin-top: 16%;
	}
	.review_dtl h2 {
		font-size: 34px;
		color: var(--white);
		line-height: 52px;
		margin-bottom: 20px;
	}
	.review_dtl p {
		font-size: 22px;
		color: var(--white);
		line-height: 40px;
		margin-bottom: 12px;
		text-transform: capitalize;
	}
	.custom-card.film_crd_holder.review_txt {
		padding: 40px 40px 20px;
		border-radius: 15px !important;
		box-shadow: 0 5px 20px var(--bg5) !important;
		background-color: var(--white);
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		cursor: auto;
		flex-direction: column;
	}
	.custom-card.film_crd_holder.review_txt:hover {
		transform: translateY(0px);
	}
	.bookus_holder {
		background-color: var(--bg6);
	}
	.form-wrap.form_holder {
		background-color: transparent;
		box-shadow: none;
		border-radius: 0;
		padding: 2px;
	}
	.form-wrap.form_holder h2 {
		font-size: 24px;
		line-height: 34px;
		letter-spacing: 1px;
		text-transform: uppercase;
		color: var(--black);
		margin-bottom: 4%;
	}

	/* ------------------- join-us -------------------*/
	.bookus_dtl {
		background-color: var(--bg1);
	}
	.bookus_cont {
		padding: 4% 0;
	}
	.form-control.book_control {
		border-radius: 50px;
		background-color: var(--white);
		border: 0px solid var(--bg5);
		box-shadow: 0px 1px 6px 0px var(--bg5);
	}
	.label_name {
		font-size: 15px;
		color: var(--text1);
		text-transform: capitalize;
	}
	.label_name span i {
		color: var(--activ-color);
		font-size: 12px;
	}
	.bookus_btn {
		width: 100px;
		height: 50px;
		color: var(--white);
		font-size: 15px;
		background-color: var(--bg3);
		border: none;
		border-radius: 50px;
	}
	.book_rght_txt {
		padding: 30px 30px 20px;
		box-shadow: 0 5px 20px var(--black);
		border-radius: 10px;
		background-color: var(--white);
	}
	.book_rght_txt h3 {
		text-align: left;
		font-size: 22px;
		font-weight: 500;
		color: var(--black);
		margin-bottom: 6%;
	}
	.book_rght_txt p {
		color: var(--gray);
		font-size: 15px;
		line-height: 1.5;
		text-transform: capitalize;
		margin-bottom: 24px;
		font-weight: 400;
	}
	.book_rght_txt ul {
		display: block;
		margin-bottom: 10px;
	}
	.book_rght_txt ul li {
		display: block;
		font-size: 15px;
		color: var(--black);
		margin-bottom: 10px;
	}
	.book_rght_txt ul li i {
		font-size: 8px;
		color: var(--black);
		margin-right: 7px;
	}
	.form-control.book_control.join_mess_dtl {
		border-radius: 20px;
		height: 100px;
	}
	.join_holder {
		padding: 12% 0 6%;
	}
	.text i{
		font-size: 15px;
		font-weight: 200;
	}
