@import 'common.css';


/* ****************************header section start*********************************************  */

.MainHeader {
	position: absolute;
	background: rgba(var(--main-color), 0);
	top: 0;
	z-index: 999;
	width: 100%;
	backdrop-filter: blur(10px);
}

.MainHeader.header-fixed {
	position: fixed;
	background: rgba(var(--white-color), 1);
	animation: slideDown 0.35s ease-out;
	backdrop-filter: blur(5px);
	box-shadow: 0px 5px 20px -8px rgba(14, 13, 14, 0.08);
	border-bottom-color: rgba(var(--main-color), 0);
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

.header {
	color: var(--default-color);
	background-color: rgba(var(--black-color), 0);
	padding: 15px 0;
	transition: all 0.5s;
	z-index: 997;
}



.header .logo img {
	max-height: 85px;
	margin-right: 8px;
	object-fit: cover;
	width: auto;
}


.header .btn-getstarted,
.header .btn-getstarted:focus {
	color: var(--contrast-color);
	background: var(--accent-color);
	font-size: 14px;
	padding: 8px 25px;
	margin: 0 0 0 30px;
	border-radius: 50px;
	transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
	color: var(--contrast-color);
	background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
	.header .logo {
		order: 1;
	}

	.header .btn-getstarted {
		order: 2;
		margin: 0 15px 0 0;
		padding: 6px 15px;
	}

	.header .navmenu {
		order: 3;
	}
}

.scrolled .header {
	box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

ul.sociallist {
	display: flex;
	align-items: center;
	gap: 13px;
}

.sociallistbox {
	padding: 5px;
	background-color: rgba(var(--second-color), 1);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;

}

.sociallistbox:hover {
	border: 1px solid rgba(var(--main-color), 1);
	background-color: transparent;
	transition: var(--transition-05s);

}

.sociallistbox:hover i {
	color: rgba(var(--white-color), 1);
	transition: var(--transition-05s);
}

.sociallistbox i {
	color: rgba(var(--white-color), 1);
	font-size: 20px;
	padding: 5px;
}

.MainHeader.header-fixed .sociallistbox:hover {
	border: 1px solid rgba(var(--second-color), 1);
	background-color: transparent;
	transition: var(--transition-05s);

}

.MainHeader.header-fixed .sociallistbox:hover i {
	color: rgba(var(--second-color), 1);
}

.navmenu li a {
	position: relative;
}

.navmenu li:hover>a::before {
	width: 100%;
	left: 0;
}

.navmenu li a::before {
	content: "";
	width: 0;
	height: 2px;
	bottom: -2px;
	position: absolute;
	left: 0;
	background-color: rgba(var(--second-color), 1);
	-webkit-transition: all 0.3sease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.mobmenu li a {
	color: rgba(var(--black-color), 1);
	font-weight: 600;
	font-size: 16px;

}

.mobmenu li a:hover {
	color: rgba(var(--second-color), 1);
}

/* .navmenu .active::after {
	content: '';
	width: 100%;
	height: 2px;
	background-color: rgba(var(--main-color), 1);
	position: absolute;
	bottom: 2px;
	left: 0;
} */

.MainHeader.header-fixed .navmenu a,
.MainHeader.header-fixed .navmenu a:focus {
	color: rgba(var(--black-color), 1);
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
	.navmenu {
		padding: 0;
	}

	.navmenu ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navmenu li {
		position: relative;
	}

	.navmenu a,
	.navmenu a:focus {
		color: rgba(var(--white-color), 1);
		padding: 0px 10px;
		font-size: 17px;
		font-family: var(--nav-font);
		font-weight: 600;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
		text-transform: capitalize;
		margin-left: 20px;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		transition: 0.3s;
	}



	.navmenu li:hover>a,
	.navmenu .active,
	.navmenu .active:focus {
		color: rgba(var(--white-color), 1);
	}

	.navmenu .dropdown ul {
		margin: 0;
		padding: 10px 0;
		background: var(--nav-dropdown-background-color);
		display: block;
		position: absolute;
		visibility: hidden;
		left: 14px;
		top: 130%;
		opacity: 0;
		transition: 0.3s;
		border-radius: 4px;
		z-index: 99;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu .dropdown ul li {
		min-width: 200px;
	}

	.navmenu .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		text-transform: none;
		color: var(--nav-dropdown-color);
	}

	.navmenu .dropdown ul a i {
		font-size: 12px;
	}

	.navmenu .dropdown ul a:hover,
	.navmenu .dropdown ul .active:hover,
	.navmenu .dropdown ul li:hover>a {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .dropdown:hover>ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}

	.navmenu .dropdown .dropdown ul {
		top: 0;
		left: -90%;
		visibility: hidden;
	}

	.navmenu .dropdown .dropdown:hover>ul {
		opacity: 1;
		top: 0;
		left: -100%;
		visibility: visible;
	}
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
	a.navbar-brand.mob-logo {
		height: 60px;
	}

	button.nebtclose {
		display: flex;
		align-items: center;
		padding: 10px;
		border: 1px solid rgba(var(--second-color), 1);
		background: rgba(var(--second-color), 1);
		border-radius: 66%;
		width: 30px;
		height: 30px;
		justify-content: center;
		transition: var(--transition-05s);
	}

	button.nebtclose:hover {
		background: rgba(var(--second-color), 0);
		border: 1px solid rgba(var(--second-color), 1);
		background-color: transparent;
		transition: var(--transition-05s);
	}

	button.nebtclose:hover i {
		color: rgba(var(--second-color), 1);
	}

	button.nebtclose i {
		color: rgba(var(--white-color), 1);
		font-size: 15px;
	}

	.mycanvas .offcanvas-header {
		background-color: #4f4f4f30;
	}

	ul.mobmenu {
		display: flex;
		flex-direction: column;
		gap: 10px;
		text-transform: capitalize;
		font-weight: 500;
		color: rgba(var(--black-color), 0.8);
		font-size: 15px;
	}

	.mobmenu a.active {
		color: rgba(var(--second-color), 1);
	}

	.mobile-nav-toggle {
		color: var(--nav-color);
		font-size: 28px;
		line-height: 0;
		margin-right: 10px;
		cursor: pointer;
		transition: color 0.3s;
	}

	.navmenu {
		padding: 0;
		z-index: 9997;
	}

	.navmenu ul {
		display: none;
		list-style: none;
		position: absolute;
		inset: 60px 20px 20px 20px;
		padding: 10px 0;
		margin: 0;
		border-radius: 6px;
		background-color: var(--nav-mobile-background-color);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu a,
	.navmenu a:focus {
		color: rgba(var(--white-color), 1);
		padding: 0;
		font-family: var(--nav-font);
		font-size: 17px;
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 15px;
		line-height: 0;
		margin-left: 5px;
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		transition: 0.3s;
		background-color: rgba(var(--second-color), 1);
		color: rgba(var(--white-color), 1);
		border: 1px solid rgba(var(--second-color), 1);
	}

	.navmenu a i:hover,
	.navmenu a:focus i:hover {
		background-color: rgba(var(--second-color), 0);
		color: rgba(var(--second-color), 1);
		border: 1px solid rgba(var(--second-color), 1);
	}

	.navmenu a:hover,
	.navmenu .active,
	.navmenu .active:focus {
		color: rgba(var(--second-color), 1);
	}

	.navmenu .active i,
	.navmenu .active:focus i {
		background-color: rgba(var(--second-color), 1);
		color: rgba(var(--white-color), 1);
		transform: rotate(180deg);
	}

	.navmenu .dropdown ul {
		position: static;
		display: none;
		z-index: 99;
		padding: 10px 0;
		margin: 10px 20px;
		background-color: var(--nav-dropdown-background-color);
		border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
		box-shadow: none;
		transition: all 0.5s ease-in-out;
	}

	.navmenu .dropdown ul ul {
		background-color: rgba(33, 37, 41, 0.1);
	}

	.navmenu .dropdown>.dropdown-active {
		display: block;
		background-color: rgba(33, 37, 41, 0.03);
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .mobile-nav-toggle {
		color: #fff;
		position: absolute;
		font-size: 32px;
		top: 15px;
		right: 15px;
		margin-right: 0;
		z-index: 9999;
	}

	.mobile-nav-active .navmenu {
		position: fixed;
		overflow: hidden;
		inset: 0;
		background: rgba(33, 37, 41, 0.8);
		transition: 0.3s;
	}

	.mobile-nav-active .navmenu>ul {
		display: block;
	}
}

.carticon .sociallistbox {
	border: 1px solid rgba(var(--main-color), 1);
	background-color: transparent;
}

.carticon .sociallistbox i {
	color: rgba(var(--second-color), 1);
}

/* /*-------------------------Banner start------------------------------------- */

.banner-section {
	--banner-hvh: 80vh;
	--banner-hhp: 100%;
	min-height: var(--banner-hvh);
	height: var(--banner-hhp);
}

.banner-section.banner-inner-section {
	--banner-hvh: 70vh;
}

.banner-inner-section {
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner-section>*:first-child,
.banner-slider>*:first-child>*,
.banner-slider>*:first-child>*>*,
.banner-slider>*:first-child>*>*>*,
.banner-slider>*:first-child>*>*>*>* {
	min-height: var(--banner-hvh);
	height: var(--banner-hhp);
}

.banner-inner-slider {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: rgba(var(--black-color), 0.6) no-repeat center center / cover;
	width: 100%;
	overflow: hidden;
	padding-bottom: 75px;
}

.banner-inner-slider::before {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	inset: 0px;
	background: linear-gradient(to right, rgb(0 0 0 / 42%), rgb(0 0 0 / 0%));
	z-index: 2;
}

.banner-inner-slider>.container {
	position: relative;
	z-index: 2;
}

.banner-slider.owl-carousel .owl-dots {

	counter-reset: dots;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: max-content;
	position: absolute;
	bottom: 30px;
	gap: 10px;
}

.banner-slider.owl-carousel .owl-dots .owl-dot {
	--ehw-bdot: 8px;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--ehw-bdot);
	height: var(--ehw-bdot);
	background: rgba(var(--main-color), 0.4);
	border-radius: 50%;
	transition: var(--transition-05s);
	color: rgba(var(--white-color), 0.6);
}

.banner-slider.owl-carousel .owl-dots .owl-dot.active {
	background: rgba(var(--white-color), 1);
}

.banner-slider.owl-carousel .owl-nav button.owl-prev,
.banner-slider.owl-carousel .owl-nav button.owl-next {
	position: absolute;
	--erl: 49%;
	top: 86%;
}

.banner-slider.owl-carousel .owl-nav button.owl-prev::after,
.banner-slider.owl-carousel .owl-nav button.owl-next::after {
	top: 2%;
}

.banner-slider.owl-carousel .owl-nav button.owl-prev:hover::after,
.banner-slider.owl-carousel .owl-nav button.owl-next:hover::after {
	top: -1px;
}

.banner-bg {
	position: absolute;
	inset: 0px;
	display: inline-block;
	width: 100%;
	height: 100%;
	z-index: 1;
	--banner-hvh: 80vh;
	--banner-hhp: 80vh;
	min-height: var(--banner-hvh);
	height: var(--banner-hhp);
}

.banner-inner-page .banner-sub-title,
.banner-inner-page .banner-box span {
	margin: 0;
	text-align: center;
}

.banner-box {
	text-align: center;
	padding-top: 100px;
}

.banner-title,
.banner-box h1 {
	color: rgba(var(--white-color), 1);
	line-height: normal;
	margin-bottom: 15px;
	font-size: 65px;
	text-transform: capitalize;
}

.banner-title>span,
.banner-box h1>span {
	color: rgba(var(--main-color), 1);
	font-size: 60px;
	display: block;
	text-transform: uppercase;
}

.banner-section.inner-pages .banner-title,
.banner-section.inner-pages .banner-box h1 {
	margin-bottom: 0px;
}

.banner-bg::after {
	content: '';
	display: block;
	position: absolute;
	inset: 0px;
	height: 100%;
	opacity: 0.6;
	background: linear-gradient(rgba(0, 0, 0, 0.4) 0%, black 100%);
	width: 100%;
}

/* banner end */
/* /*-------------------------music_area start------------------------------------- */
.music_area {
	position: relative;
	margin-top: -148px;
	z-index: 3;
}

.music_area .music_field .thumb {
	float: left;
	margin-right: 50px;
	overflow: hidden;
}

.music_area .music_field .thumb img {
	vertical-align: middle;
	border-style: none;
	height: 148px;
	width: 148px;
}

.music_area .music_field .audio_name {
	position: relative;
	top: 15px;
	overflow: hidden;
}

.music_area .music_field .audio_name .name {
	margin-bottom: 12px;
}

.music_area .music_field .audio_name .name h4 {
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 0px;
	color: rgb(255, 255, 255);
}

.music_area .music_field .audio_name .name p {
	margin-bottom: 0px;
	font-size: 14px;
	font-weight: 400;
	color: rgb(128, 128, 128);
	line-height: normal;
}

.music_area .music_btn {
	text-align: right;
}

.music_btn .btn {
	width: 100%;
}

.boxed-btn {
	display: inline-block;
	font-family: "Josefin Sans", sans-serif;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0px;
	text-align: center;
	text-transform: capitalize;
	cursor: pointer;
	color: rgba(var(--white-color), 1);
	background: rgb(237, 27, 27);
	padding: 12px 42px;
	border-width: 1px;
	border-style: solid;
	border-color: rgb(237, 27, 27);
	border-image: initial;
	width: 100%;
}

.boxed-btn:hover {
	color: rgb(255, 255, 255) !important;
	background: transparent;
	border-width: 1px;
	border-style: solid;
	border-color: rgb(237, 27, 27);
	border-image: initial;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section {
	/* background-color: #f9f9f9; */
	background-color: #fcf7f8;
}

.about-bg {
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 69%;
	z-index: 1;
	right: 1px;
	bottom: -6px;
	opacity: 0.4;
	transform: rotate(0deg);
}

.sig img {
	height: 50px;
	object-fit: contain;
	object-position: left;
}

.about .content h3 {
	font-size: 1.75rem;
	font-weight: 700;
}

.about .content ul {
	list-style: none;
	padding: 0;
}

.about .content ul li {
	padding: 10px 0 0 0;
	display: flex;
}

.about .content ul i {
	color: var(--accent-color);
	margin-right: 0.5rem;
	line-height: 1.2;
	font-size: 1.25rem;
}

.about-section .common-para p:last-child {
	margin-bottom: 0;
	color: rgba(var(--black-color), 1);
	line-height: 23px;
	font-size: 16px;
}

.about .pulsating-play-btn {
	position: absolute;
	left: calc(50% - 47px);
	top: calc(50% - 47px);
}


.aboutimg img {
	margin-top: 0;
	border-radius: 0;
	overflow: visible;
	object-fit: cover;
	object-position: top;
	height: auto;

}

.aboutlist {
	margin-bottom: 1rem;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-left: 1rem;
}

.aboutlist li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.aboutlist li i {
	color: rgba(var(--second-color), 1);
}

.aboutlist li span {
	font-weight: 700;
	font-size: 15px;
	color: rgba(var(--black-color), 1);
}

.content h3.subultitle {
	color: rgba(var(--second-color), 1);
	margin-bottom: 1rem;
	font-weight: bold;
	font-size: 20px;
}

.content h3 {
	font-size: 30px;
	color: rgba(var(--second-color), 1);
	font-weight: 700;
	line-height: normal;
	margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# About Section end
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# youtube_video_area start
--------------------------------------------------------------*/
.youtube_video_area .single_video {
	position: relative;
	margin-right: 5px;
}

.youtube_video_area .single_video .thumb img {
	width: 100%;
}

.youtube_video_area .single_video .hover_elements {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: transparent;
	transition: 0.4s;
}

.youtube_video_area .single_video .hover_elements .video {
	top: 50%;
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
}

.youtube_video_area .single_video .hover_elements .video a {
	width: 58px;
	height: 58px;
	font-size: 14px;
	display: inline-block;
	color: rgb(255, 255, 255);
	text-align: center;
	line-height: 58px;
	margin-bottom: 40px;
	opacity: 0;
	background: rgb(237, 27, 27);
	border-radius: 50%;
	transition: 0.4s;
}

.youtube_video_area .single_video .hover_elements .hover_inner {
	position: absolute;
	bottom: 30px;
	left: 30px;
}

.youtube_video_area .single_video .hover_elements .hover_inner span {
	font-size: 14px;
	font-weight: 400;
	color: rgb(237, 27, 27);
	font-family: Muli, sans-serif;
	position: relative;
	left: 30px;
	opacity: 0;
	transition: 0.4s;
}

.youtube_video_area .single_video .hover_elements .hover_inner h3 {
	margin-bottom: 0px;
	position: relative;
	top: 30px;
	opacity: 0;
	transition: 0.4s;
}

.youtube_video_area .single_video .hover_elements .hover_inner h3 a {
	font-size: 22px;
	font-weight: 600;
	color: rgb(255, 255, 255);
}

.youtube_video_area .col-xl-3:nth-child(3) .single_video {
	margin-left: 0px;
}

.youtube_video_area .col-xl-3:nth-child(1) .single_video {
	margin-left: 0px;
}

.youtube_video_area .col-xl-3:nth-child(2) .single_video {
	margin-left: 0px;
}

.youtube_video_area .col-xl-3:nth-child(4) .single_video {
	margin-left: 0px;
}

.youtube_video_area .single_video:hover .hover_elements .video a {
	opacity: 1;
	margin-bottom: 0px;
	transition: 0.4s;
}

.youtube_video_area .single_video:hover .hover_elements {
	background: rgb(0 0 0 / 67%);
}

.youtube_video_area .single_video:hover .hover_elements .video a {
	opacity: 1;
	margin-bottom: 0px;
	transition: 0.4s;
}

.youtube_video_area .single_video:hover .hover_elements .hover_inner {
	position: absolute;
	bottom: 30px;
	left: 30px;
}

.youtube_video_area .single_video:hover .hover_elements .hover_inner span {
	left: 0px;
	opacity: 1;
}

.youtube_video_area .single_video:hover .hover_elements .hover_inner h3 {
	top: 0px;
	opacity: 1;
}

.name.latest h4 {
	color: rgba(var(--second-color), 1) !important;
}

.name.latest p {
	color: rgba(var(--black-color), 1) !important;
}

section.latest {
	background-color: rgba(var(--white-color), 1);
	background-repeat: no-repeat;
	background-position: top;
	background-size: cover;
}

section.latest::after {
	content: '';
	display: block;
	position: absolute;
	inset: 0px;
	height: 100%;
	opacity: 0.5;
	background: linear-gradient(rgba(0, 0, 0, 0.4) 0%, black 100%);
	width: 100%;
	display: none;
}

.latest .common-title {
	color: rgba(var(--second-color), 1) !important;
}

/*--------------------------------------------------------------
# youtube_video_area end
--------------------------------------------------------------*/
.cdnew {
	position: relative;
}

.mainimgsec {
	margin: 0 30% 0px 0;
	position: relative;
	z-index: 1;
	border-radius: 6px;
	position: relative;
	overflow: hidden;
	backface-visibility: hidden;
}

.sideimg {
	position: absolute;
	top: 50%;
	right: 26px;
	transform: translate(0%, -50%);
	width: 250px;
	height: 250px;
	box-shadow: inset 0px 0px 4px 1px rgba(0, 0, 0, .66), 0px 0px 0px 5px rgba(0, 0, 0, .22), 0px 0px 0px 3px rgba(0, 0, 0, .88);
	;
	border-radius: 50%;
}

.cdnew:hover .sideimg {
	animation: rotate-animation 15s infinite linear;
}

@keyframes rotate-animation {
	0% {
		transform: translate(0%, -50%) rotate(0deg);
	}

	50% {
		transform: translate(0%, -50%) rotate(180deg);
	}

	100% {
		transform: translate(0%, -50%) rotate(360deg);
	}
}

.ebook {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding-top: 250px;
}

.videosec {
	margin-bottom: -260px;
}

.ecard {
	text-align: center;
}

.ecard img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.ecrddetails {
	padding: 20px 0px;
}

.ecrddetails h4 {
	color: rgba(var(--second-color), 1);
}

/* Testimonial start */

.testi-box {
	background: rgba(var(--white-color), 1);
	padding: 30px;
	height: 100%;
}

.testi-quotes {
	width: 26px;
	margin-bottom: 20px;
}

.testi-title {
	font-family: var(--Manrope-font);
	text-transform: capitalize;
}

.testi-title h5 {
	color: rgba(var(--black-color), 1);
	font-weight: 700;
	line-height: 1;
	margin-bottom: 8px;
	font-size: 20px;
}

.testi-title span {
	color: #989898;
	display: block;
	line-height: 1;
	font-size: 16px;
}

.testi-box .common-para {
	color: rgba(var(--second-color), 1);
	line-clamp: 4;
	-webkit-line-clamp: 4;
	margin: 0px 0px 20px;
	font-size: 17px;
}

/* Testimonial end */
/*--------------------------------------------------------------
# Cta Section START
--------------------------------------------------------------*/

.common-section.cta-section {
	padding: 80px 0px;
	background: rgba(var(--second-color), 1);
}

.CTAInner-section {
	width: 100%;
	margin: auto;
}

.common-box.cta-box .common-title {
	padding: 0px;
	margin-bottom: 6px;
	color: rgba(var(--white-color), 1);
	font-size: 24px;
	text-align: left;
}

.common-box.cta-box .common-para {
	color: rgba(var(--white-color), 1);
}

.cta-ImgTxt {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.cta-form {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	overflow: hidden;
	height: 45px;
	border: 1px solid rgba(var(--white-color), 0);
	background: rgba(var(--white-color), 0.15);
}

.cta-form .form-control,
.cta-form .form-control:hover,
.cta-form .form-control:focus {
	height: 100%;
	padding: 9px 15px;
	border: none;
	border-radius: 0px;
	font-size: 14px;
	background: rgba(var(--black-color), 0);
	color: rgba(var(--white-color), 1);
}

.cta-form .form-control::placeholder {
	color: rgba(var(--white-color), 1);
}

.cta-form .cta-btn,
.cta-form .btn,
.cta-form button {
	font-family: var(--inter-font);
	white-space: nowrap;
	border: none;
	height: 100%;
	border-radius: 0px;
	background: rgba(var(--black-color), 0);
	color: rgba(var(--white-color), 1);
	padding: 10px;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	transition: var(--transition-05s);
}

.cta-form .cta-btn i,
.cta-form .btn i,
.cta-form button i {
	color: rgba(var(--white-color), 1);
}

/*--------------------------------------------------------------
# CTA Section end
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# footer Section start
--------------------------------------------------------------*/
.footer-section {
	background: rgba(var(--black-color), 1);
	margin-top: 0px;
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: cover;
	position: relative;
}

.footer-section::after {
	content: '';
	display: block;
	position: absolute;
	inset: 0px;
	height: 100%;
	opacity: 0.8;
	background: linear-gradient(rgba(0, 0, 0, 0.4) 0%, black 100%);
	width: 100%;
}

.foot-logo {
	display: inline-block;
	margin-bottom: 20px;
}

.inner-footer {
	margin: 0px var(--elrp);
	padding: 80px 0px 60px;
}

.foot-title {
	color: rgba(var(--white-color), 5);
	margin-bottom: 25px;
	font-size: 20px;
}

.foot-list li {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 10px;
}

.foot-list li a,
.foot-list li a:visited,
.foot-list li a:focus {
	transition: var(--transition-05s);
	color: rgba(var(--white-color), 1);
	font-size: 16px;
}

.foot-list li a:hover,
.foot-list li a[aria-current="page"] {
	color: rgba(var(--main-color), 1);
}

.foot-list.contact-list li:nth-child(1) a {
	text-decoration: underline;
	color: rgba(var(--white-color), 1);
	font-size: 18px;
}

.foot-list.contact-list li:last-child a,
.foot-list.contact-list li:nth-child(2) a {
	color: rgba(var(--main-color), 1);
}

.footer-box .common-para {
	color: rgba(var(--white-color), 1);
	font-size: 16px;
	line-height: 1.4;
}

.copy-box {
	border-top: 1px solid rgba(var(--white-color), 1);
	padding: 20px 0px;
}

.copyInner-box {
	margin: 0px var(--elrp);
}

.copy-text {
	color: rgba(var(--white-color), 1);
	font-size: 15px;
}

.social-list {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: flex-end;
}

.social-list li a {
	color: rgba(var(--white-color), 1);
	font-size: 17px;
	transition: var(--transition-05s);
}

.social-list li a:hover,
.social-list li a:focus {
	color: rgba(var(--main-color), 1);
}

/*--------------------------------------------------------------
# footer Section end
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Washington location page start
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# inner banner Section start
--------------------------------------------------------------*/

.hibu-asst-banner {
	background-position: 50% 50%;
	background-repeat: repeat;
	background-size: auto;
	background-color: rgba(var(--second-color), 1);
	position: relative;
	width: 100%;
	text-align: center;
	padding: 30px 0px;
}

.topbread ol.breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
}

nav.detailsbreadcrumb .breadcrumb {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 10px;
}

nav.detailsbreadcrumb .breadcrumb i {
	color: rgba(var(--white-color), 1);
	font-size: 12px;
}

.breadcrumb-item::before {
	float: left;
	padding-left: 10px;
	color: rgb(0 0 0);
	content: "›" !important;
	font-size: 20px;
	font-weight: 300;
	display: none;
}

.breadcrumb-item+.breadcrumb-item {
	padding-left: 0px;
}

.breadcrumb-item {
	display: flex;
	align-items: center;
	gap: 10px;
	text-transform: capitalize;
}

.breadcrumb-item a:hover {
	text-decoration: underline !important;
	transition: var(--transition-05s);
}

.innerbreadcrumb {
	margin-top: 2rem !important;
}

.innerbreadcrumb ol.breadcrumb li {
	color: rgba(var(--black-color), 1);
	text-transform: capitalize;
}

.innerbreadcrumb .breadcrumb-item+.breadcrumb-item::before {
	color: rgba(var(--black-color), 1);
}

.breadcrumb-item+.breadcrumb-item::before {
	float: left;
	padding-right: 0;
}

li.breadcrumb-item:first-child::before {
	display: none;
}

.detailsbreadcrumb .breadcrumb-item+.breadcrumb-item::before {
	color: #ffffff;
}

.innertitlemainheading {
	font-size: 40px;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 0;
	color: #fff;
	text-align: left;
	font-style: italic;
}

/*--------------------------------------------------------------
# service Section start
--------------------------------------------------------------*/


.service-card {
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	max-width: 100%;
	width: 100%;
	position: relative;
	z-index: 1;
	height: 100%;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(var(--second-color), 1);
	clip-path: polygon(0 0, 100% 0, 100% 25%, 0 45%);
	z-index: -1;
}

.card-header {
	color: #ffffff;
	padding: 15px;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 2px;
	position: relative;
	z-index: 2;
}

.card-content {
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 20px 20px 0 0;
	position: relative;
	z-index: 2;
}

.service-list {
	list-style-type: none;
}

.service-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	padding: 8px;
	background-color: #ffffff;
	border-radius: 10px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-item i {
	font-size: 16px;
	margin-right: 15px;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f0f0f0;
	border-radius: 50%;
	color: rgba(var(--second-color), 1);
	transition: all 0.3s ease;
}

.service-item:hover i {
	background-color: rgba(var(--main-color), 1);
	color: #ffffff;
	transform: rotate(180deg);
}

.service-item span {
	font-size: 16px;
	color: #333;
	font-weight: 500;
}

@media (max-width: 480px) {
	.card-header {
		font-size: 24px;
		padding: 20px;
	}

	.card-content {
		padding: 20px;
	}

	.service-item {
		padding: 10px;
	}

	.service-item i {
		font-size: 20px;
		width: 35px;
		height: 35px;
	}

	.service-item span {
		font-size: 14px;
	}
}

/*--------------------------------------------------------------
# service Section end
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Gallery Section start
--------------------------------------------------------------*/

.common-section.gallery-section {
	background-color: #f9f9f9;
}

.gallery-carousel .item {
	padding: 10px;
}

.gallery-carousel .item img {
	cursor: pointer;
	transition: transform 0.3s ease;
	border-radius: 10px;
	height: 300px;
}

.gallery-carousel .item img:hover {
	transform: scale(1.05);
}

.image-gallery {
	display: flex;
	flex-wrap: wrap;
	padding: 20px;

}

.image-gallery div {
	flex-grow: 1;
	margin: 5px;
	overflow: hidden;
	cursor: pointer;
}

.image-gallery div img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .6s ease-in;
}

.image-gallery div:hover img {
	transform: scale(1.1);
}


/*--------------------------------------------------------------
# Gallery Section close
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# contact Section start
--------------------------------------------------------------*/
.info-wrap {
	background-color: rgba(var(--white-color), 1);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
	padding: 30px;
	height: 100%;
	border-radius: 15px;

}

.info-item {
	margin-bottom: 20px;
}

.info-item i {
	font-size: 20px;
	color: var(--accent-color);
	width: 44px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
	background:
		color-mix(in srgb, var(--accent-color), transparent 92%);
	border-radius: 50px;
	transition: 0.3s ease-in-out;
}

.flex-shrink-0 {
	flex-shrink: 0 !important;
}

.info-item h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
	padding: 0px;
}

.info-item p {
	margin-bottom: 0px;
	font-size: 14px;
	padding: 0px;
}

.contactform {
	background-color: rgba(var(--white-color), 0.6);
	height: 100%;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
	padding: 30px;
	border-radius: 15px;
}

.info-wrap iframe {
	border: 0;
	width: 100%;
	height: 300px;
	border-radius: 10px;
}

.info-item:hover i {
	color: rgba(var(--white-color), 1);
	background: rgba(var(--second-color), 1);
}

.hourslist {
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr 1fr;
	align-content: center;
	justify-content: start;
}

.contactdetails {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.innercallsec {
	display: flex;
	justify-content: space-between;
	width: 100%;
	gap: 10px;
}

.hourslist li {
	display: flex;
	flex-direction: row;
	align-items: self-start;
}

.hourslist li .innerday {
	display: flex;
	flex-direction: column;
	align-items: self-start;
}

.hourtitle {
	color: rgba(var(--second-color), 1);
	margin-bottom: 0.5rem;
	font-weight: bold;
	font-size: 20px;
}

.hilightedtext {
	margin-bottom: 0;
	color: rgba(var(--black-color), 1);
	font-size: 13px;
	line-height: normal;
	font-weight: 600;
	margin-bottom: 01rem;
}

.hilightedtext span {
	display: inline;
	color: rgba(var(--second-color), 1);
	font-size: 14px;
	font-weight: 900;
}

.innerhead-boxsec {
	margin-bottom: 1.5rem;
}

.contactform .common-borderBtn,
.contactform .common-borderBtn:visited {
	color: rgba(var(--second-color), 1);
}

.contactform .common-borderBtn:hover,
.contactform .common-borderBtn:first-child:active,
.contactform .common-borderBtn:active,
.contactform .common-borderBtn:focus,
:not(.btn-check)+.contactform .common-borderBtn:active,
.contactform .common-borderBtn:focus-visible,
.contactform button.common-borderBtn:focus:not(:focus-visible),
.contactform .common-borderBtn:first-child:hover {
	--border-btn: rgba(var(--second-color), 1);
	border-color: var(--border-btn);
}

.innercallsec a:hover,
.info-item a:hover {
	text-decoration: underline;
	transition: var(--transition-05s);
}

/*--------------------------------------------------------------
# contact Section close
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# About page start
--------------------------------------------------------------*/
.parent {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 14px;
	height: 515px;
	overflow: hidden;
}

.parent .div1 {
	grid-column: span 2 / span 2;
	height: max-content;
	overflow: hidden;
}

.parent .div2 {
	grid-column-start: 2;
	grid-row-start: 2;
	height: max-content;
}

.parent .div3 {
	grid-column-start: 1;
	grid-row-start: 2;
	height: max-content;
}



.tank {
	position: relative;
}

.parent .div1 img {
	height: 300px;
}

.parent img {
	height: 200px;
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
	object-fit: cover;
}


/*--------------------------------------------------------------
# About page close
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# inner page start
--------------------------------------------------------------*/

/* Breadcrumb Section */
/* Breadcrumb Section */
.breadcrumb {
	background: linear-gradient(135deg, #1e3c72, #2a5298);
	padding: 20px;
	color: white;
	text-align: center;
	position: relative;
}

.breadcrumb h2 {
	margin: 0;
	font-size: 32px;
}

.breadcrumb-section {
	background: #a31621 !important;
	height: 42vh;
	/* Fixed height to avoid conflict with the menu */
	color: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.breadcrumb-section h2 {
	padding-top: 40px;
	font-size: 36px;
	/* margin: 0; */
}

/* Author Section */
.author-section {
	display: flex;
	padding: 40px;
	align-items: center;
	gap: 20px;
}

.author-image {
	flex: 1;
	max-width: 300px;
}

.author-image img {
	width: 100%;
	border-radius: 10px;
}

.author-text {
	flex: 2;
}

/* Gallery Section */
.gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 20px;
	justify-content: center;
}

.gallery img {
	width: 200px;
	height: 150px;
	object-fit: cover;
	cursor: pointer;
	border-radius: 5px;
}

.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.lightbox img {
	max-width: 80%;
	max-height: 80%;
	border-radius: 5px;
}

.breadcrumb-bg {
	position: absolute;
	width: 300px;
	height: 100%;
	top: 0;
	left: 0;
	background-size: contain;
	background-repeat: no-repeat;
	transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 7, 0, 0, 60, 5, 1);
	background-position: right;
}

.MainHeader.innerheader {
	backdrop-filter: blur(0px);
}

.mytabsec .nav {
	justify-content: start;
	border: none;
	gap: 10px;
}

.mytabsec .nav .nav-link {
	border: 1px solid #a31621;
	background: #a3162200;
	color: #a31621;
	font-weight: 600;
	border-radius: 0px;
	width: 20%;
}

.mytabsec .nav .nav-link.active {
	border: 1px solid rgba(255, 0, 0, 0);
	background: #a31621;
	color: #fff;
	font-weight: 600;
	font-size: 17px;
	border-radius: 0px;

}

/* Contact Page Styling */

.contact-page-modern {
	padding-left: 25px;
	padding-right: 25px;
}

.contact-form-modern {
	background: #ffffff;
	border-radius: 12px;
	transition: transform 0.3s ease;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


.contact-form-modern h3 {
	font-weight: 600;
	color: #333;
}

.contact-form-modern .form-control {
	background: transparent;
}

.contact-form-modern .form-control:focus {
	background: transparent;
	outline: none;
}

.btn-gradient {
	background: linear-gradient(135deg, #6a11cb, #2575fc);
	color: #fff;
	border: none;
	padding: 12px;
	border-radius: 8px;
	transition: background 0.3s ease;
}

.btn-gradient:hover {
	background: linear-gradient(135deg, #2575fc, #6a11cb);
}

.card-modern {
	background: #f3f3f3;
	border-radius: 10px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-modern:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-modern h5 {
	font-weight: 600;
	margin-bottom: 8px;
}

.card-modern i {
	margin-top: 8px;
	color: #a31621 !important;
}

.card-modern p {
	font-size: 1.1rem;
	margin: 5px 0;
}

.innercontactsec {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, -100%);
	padding: 1rem 2rem;
	background: #ffffff3f;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	border-radius: 10px 10px 0px 0px;
	backdrop-filter: blur(4px);
}

.call a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.call i {
	font-size: 18px;
	color: rgba(var(--main-color), 1);
}

.authorsec {
	margin-bottom: 1.3rem;
}

.atag {
	font-size: 17px !important;
	margin-bottom: 1.7rem;
}

.pricesec {
	display: inline-flex;
	align-items: center;
	justify-content: center;

}

.pricesec small {
	font-size: 20px;
}

.pricesec strong {
	font-size: 20px;
	color: rgba(var(--black-color), 0.6);
}

.mainecard {
	display: flex;
	align-items: self-start;
	justify-content: flex-start;
	margin-top: 1rem;
	gap: 10px;
}

.mainecard .ecard img {
	height: auto;
	border-radius: 20px;
}

.gridsec {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.notationlist li {
	color: rgba(var(--black-color), 1);
	font-weight: 800 !important;
	font-size: 14px !important;
	text-transform: uppercase;
}

.notationlist li small {
	color: rgba(var(--black-color), 0.6);
	text-transform: capitalize;
	font-weight: normal;
}

.notationlist strong {
	color: rgba(var(--second-color), 0.8);
	font-size: 18px;
	font-weight: 800 !important;
	margin-bottom: 0.5rem;
	display: block;
}

.innernavpagi .pagination {
	justify-content: center;
}

.innernavpagi .pagination .page-link:focus {
	z-index: 3;
	color: rgba(var(--black-color), 1);
	background-color: transparent;
	outline: 0;
	box-shadow: none;
}

.innernavpagi .pagination .page-link {
	font-size: 18px;
	font-weight: 600;
	color: rgba(var(--second-color), 1);
}

.cartprice {
	color: rgba(var(--second-color), 1);
}

.btnsecnew {
	border: 1px solid rgba(var(--second-color), 1);
}


.cart-item {
	border-bottom: 1px solid rgba(var(--second-color), 0.4);
	padding: 20px 0;
}

.product-img {
	width: 100px;
	height: 100px;
	object-fit: cover;
}

.quantity-selector {
	max-width: 120px;
}

.btn-remove {
	color: rgba(var(--second-color), 1);
	background: none;
	border: none;
	cursor: pointer;
}

.cart-summary {
	background-color: #f8f9fa;
	border-radius: 8px;
	padding: 20px;
}

.newbtsec {
	--border-btn: rgba(var(--second-color), 1);
	background: rgba(var(--main-color), 0);
	border-color: var(--border-btn);
	color: rgba(var(--second-color), 1) !important;
	transform: var(--transition-05s);
}

.newbtsec:hover {
	--border-btn: rgba(var(--second-color), 1);
	background: rgba(var(--second-color), 1);
	border: 1px solid var(--border-btn);
	color: rgba(var(--white-color), 1) !important;
	transform: var(--transition-05s);
}

.form-select,
.form-select:hover,
.form-select:focus {
	border: 1px solid rgba(var(--second-color), 0.5);
	height: 47px;
	background-color: transparent;
	border-radius: 0;
}

.account-section {
	background: white;
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	padding: 25px;
	margin-bottom: 30px;
}

.account-section-title {
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(var(--second-color), 0.5);
	color: rgba(var(--second-color), 1);
}

/* Downloads */
.downloads-list {
	width: 100%;
}

.download-item {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
}

.download-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.download-name {
	font-weight: 600;
	margin-bottom: 5px;
}

.download-info {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: #606060;
}

.downbtn i {
	color: rgba(var(--white-color), 1);
	font-size: 18px;
	width: 40px;
	height: 40px;
	background-color: rgba(var(--second-color), 1);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(var(--white-color), 0);
	border-radius: 50%;
	transition: var(--transition-05s);
}

.downbtn:hover i {
	border: 1px solid rgba(var(--second-color), 1);
	color: rgba(var(--second-color), 1);
	background-color: rgba(var(--white-color), 0);
	transition: var(--transition-05s);
}

.logsec {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logoutbtn {
	display: flex;
	align-items: center;
	gap: 5px;
	color: rgba(var(--second-color), 1);
	font-size: 15px;
}


.modal-header {
	background-color: rgba(var(--second-color), 1);
	color: white;
}

.form-container {
	padding: 20px;
}

.btn-submit {
	width: 100%;
	margin-top: 15px;
}

.form-check {
	margin-top: 15px;
}

.form-floating {
	margin-bottom: 15px;
}

.textbt {
	color: rgba(var(--second-color), 1);
}

.icontext i {
	color: rgba(var(--second-color), 1);
	margin-left: 5px;
	font-size: 18px;
}

.common-title {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.common-title img {
	height: 40px;
	width: 40px;
	object-fit: contain;
	filter: drop-shadow(5px 2px 5px rgba(0, 0, 0, 0.5));

}

@-webkit-keyframes blinker {
	from {
		opacity: 1.0;
	}

	to {
		opacity: 0.0;
	}
}

.common-title img {
	/* text-decoration: blink;
	  -webkit-animation-name: blinker;
	  -webkit-animation-duration: 0.6s;
	  -webkit-animation-iteration-count:infinite;
	  -webkit-animation-timing-function:ease-in-out;
	  -webkit-animation-direction: alternate; */
}

.sig p {
	font-family: var(--signature-font);
	font-size: 25px;
	color: #000;
}



.book-banner {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	position: relative;
}

@media (min-width: 768px) {
	.book-banner {
		flex-direction: row;
		height: 350px;
	}
}

.book-banner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
	opacity: 0.5;
}

.book-image {
	flex: 0 0 100%;
	padding: 0rem 0rem;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.book-image {
		flex: 0 0 40%;
	}
}

.book-cover {
	width: 350px;
	height: 350px;
	background-color: #fff;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease;
}



.book-cover::before {
	content: "COMING SOON";
	position: absolute;
	top: 33px;
	right: -45px;
	background-color: rgba(var(--second-color), 1);
	color: white;
	padding: 5px 40px;
	font-size: 10px;
	letter-spacing: 1px;
	transform: rotate(45deg);
	font-weight: bold;
}

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

.book-info {
	flex: 1;
	padding: 2rem 0;
	color: white;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.book-label {
	display: inline-block;
	background-color: rgba(var(--main-color), 1);
	padding: 10px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 1rem;
	backdrop-filter: blur(5px);
	color: #000;
	width: max-content;
}

.book-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
	color: rgba(var(--second-color), 1);
}

.book-description {
	margin-bottom: 1.5rem;
	line-height: 1.6;
	opacity: 0.9;
	color: rgba(var(--black-color), 0.8);
}

.book-author {
	font-style: italic;
	margin-bottom: 1.5rem;
	opacity: 1;
	color: rgba(var(--second-color), 0.9);
}


.release-date {
	position: absolute;
	bottom: 20px;
	right: 20px;
	font-size: 14px;
	opacity: 0.7;
	color: #000;
}

.book-info .btn.common-borderBtn {
	width: max-content;
}

@media (max-width: 767px) {
	.book-title {
		font-size: 1.8rem;
	}

	.release-date {
		position: relative;
		bottom: auto;
		right: auto;
		margin-top: 1rem;
	}
}

.comingsec {
	background-position: top;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	opacity: 0.4;
}

.video-section {
	position: relative;
	width: 100%;
	height: 550px;
	overflow: hidden;
	background-color: #f0f0f0;
	border-radius: 20px;
}

.video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url('https://via.placeholder.com/1600x900/333333/666666');
	background-size: cover;
	background-position: center;
}

.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: opacity 0.3s ease;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.play-button {
	width: 80px;
	height: 80px;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.3s ease;
}

.play-button:hover {
	transform: scale(1.1);
}

.play-button::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 25px solid #333;
	margin-left: 8px;
}

.video-iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
}

.video-active .video-overlay {
	opacity: 0;
	pointer-events: none;
}

.video-active .video-iframe {
	opacity: 1;
	visibility: visible;
}

/* Meeting context around the video */
.meeting-section {
	padding: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.team-members {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 30px;
}

.team-member {
	flex: 1;
	min-width: 250px;
	background-color: white;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	padding: 20px;
	border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.video-section {
		height: 300px;
	}

	.play-button {
		width: 60px;
		height: 60px;
	}

	.play-button::after {
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
		border-left: 18px solid #333;
		margin-left: 6px;
	}

	.team-member {
		min-width: 100%;
	}
}

/*--------------------------------------------------------------
# inner page close
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Responsive cass start
--------------------------------------------------------------*/

@media (max-width:1440px) {
	.owl-carousel .owl-nav button.owl-prev {
		left: 88%;
	}

	.banner-title,
	.banner-box h1 {
		font-size: 60px;
	}

	.banner-title>span,
	.banner-box h1>span {
		font-size: 40px;
	}

	.common-para,
	.common-box>div.common-para {
		margin: 14px 0px;
		line-height: 21px;
		font-size: 16px;
	}


}

@media (max-width:1366px) {
	.innertesti {
		margin: 0 5px 0px 5px;
		padding: 30px 30px 40px;
	}

	.card-text {
		margin-bottom: 0;
		align-items: baseline;
	}

	.innerallcarddetailscontact {
		flex-direction: column;
	}

	.card-text {
		text-align: left;
	}

	.innerstar {
		align-items: center;
		margin-top: 0.6rem;
	}

	.innercallsec {
		flex-direction: column;
	}
}

@media (max-width: 1200px) {
	.header .navmenu {
		order: 2;
		margin-right: 0 !important;
	}

	.sociallist {
		order: 3;
	}
}

@media (max-width: 1199px) {
	.header .navmenu {
		order: 3;
		margin-right: 0 !important;
	}

	.sociallist {
		order: 1;
		margin-right: auto;
	}

	.header .logo {
		order: 2;
	}
}

@media (max-width: 1024px) {
	.aboutimg {
		padding: 0 !important;
	}

	.innerallcarddetails {
		display: flex;
		align-items: self-start;
	}

	.innercallsec {
		flex-direction: row;
	}

	.innertitlemainheading {
		font-size: 30px;
	}

	.banner-title,
	.banner-box h1 {
		font-size: 50px;
	}

	.banner-title>span,
	.banner-box h1>span {
		font-size: 30px;
	}

	.banner-box {
		padding-left: 0;
	}

	.owl-carousel .owl-nav button.owl-prev {
		left: 85%;
	}

	.common-para,
	.common-box>div.common-para {
		margin: 20px 0px;
		line-height: 19px;
		font-size: 15px;
	}

	.gallery-item img {
		width: 100%;
		height: 204px;
	}

	.contact-section .row {
		flex-direction: row !important;
	}
}

@media (max-width: 991px) {
	.payhear-heading {
		font-size: 2rem;
	}

	.innerallcarddetails {
		display: flex;
		align-items: center;
	}

	.innerallcarddetailscontact {
		flex-direction: column;
		align-items: center;
	}

	.aboutimg {
		padding: 0 !important;
	}

	.aboutimg img {
		height: 350px;
		object-fit: contain;
		object-position: left;
	}

	.about-bg {
		height: 32%;
		z-index: 1;
		right: 28px;
	}

	.book-cover {
		width: auto;
	}

	.innercopy a {
		font-size: 14px;
	}

	.copypara {
		text-align: left !important;
	}

	.innercopy {
		gap: 5px;
		align-items: center;
		justify-content: center;
	}

	.testimonials .testimonial-item h4,
	.testimonials .testimonial-item h3 {
		text-align: center;
	}

	.testimonials .testimonial-item h4 {
		margin: 0 0 0 0px;
	}

	.testimonials .testimonial-item h3 {
		font-weight: bold;
		margin: 10px 0 5px 0px;
	}

	.testi-slider.owl-carousel .owl-dots {
		bottom: 27px;
	}

	.innerstar {
		margin-top: 2.3rem;
	}
}

@media (max-width: 768px) {
	.owl-carousel .owl-nav button.owl-prev {
		left: 40%;
	}

	.owl-carousel .owl-nav button.owl-next {
		right: 40%;
	}

	.copy-text a,
	.copypara p {
		font-size: 12px;
	}

	.innerallcarddetailscontact {
		flex-direction: column;
		align-items: self-start;
	}

	.innerallcarddetails {
		display: flex;
		align-items: self-start;
	}
}

@media (max-width: 767px) {
	#curvedTabContent {
		padding: 30px;
	}

	.book-image {
		justify-content: start;
	}

	.navmenu a i,
	.navmenu a:focus i {
		width: 30px;
		height: 30px;
	}

	.book-cover {
		width: 100%;
	}

	.curved-tabs .nav-link {
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		margin-right: 3px;
		padding: 10px 10px;
		font-size: 10px;
	}

	nav.detailsbreadcrumb .breadcrumb {
		justify-content: center;
	}

	.innertitlemainheading {
		font-size: 30px;
		text-align: center;
		margin-bottom: 0.6rem;
	}

	.contactdetails {
		flex-direction: column;
	}

	.innerstar {
		margin-top: 2rem;
	}

	.banner-slider.owl-carousel .owl-nav button.owl-prev,
	.banner-slider.owl-carousel .owl-nav button.owl-next {
		top: 87%;
	}

	.owl-carousel .owl-nav button.owl-prev {
		left: 45%;
	}

	.owl-carousel .owl-nav button.owl-next {
		right: 44%;
	}

	.Popular-ListBox:hover .Popular-ListImg {
		margin-top: -10%;
	}

	.testi-slider.owl-carousel .owl-dots {
		bottom: 0;
	}

	.head-pt {
		padding-top: 50px;
	}

	.banner-section {
		--banner-hvh: 48vh;
	}

	.banner-bg {
		--banner-hvh: 48vh;
		--banner-hhp: 48vh;
	}

	.about-bg {
		height: 50%;
	}

	.common-title img {
		height: 24px;
		width: 24px;
	}

	.footer-section .row {
		gap: 0px 0px;
	}

	.copy-text {
		justify-content: center;
		align-items: center;
	}

	.copypara p {
		text-align: center !important;
	}

	.banner-title,
	.banner-box h1 {
		font-size: 40px;
	}

	.banner-title>span,
	.banner-box h1>span {
		font-size: 25px;
	}

	.header .logo img {
		max-height: 64px;
	}

	.sociallistbox {
		width: 30px;
		height: 30px;
	}

	.sociallistbox i {
		font-size: 15px;
		padding: 3px;
	}

	ul.sociallist {
		gap: 5px;
	}

	.banner-section .row,
	.common-section .row,
	.footer-section .row,
	.cbaha-bimg-main .row {
		gap: 18px 0px;
	}

	.music_area .music_field .thumb {
		margin-right: 27px;
	}

	.music_area .music_field .audio_name .name h4 {
		font-size: 20px;
	}

	.common-section.ebook {
		padding-top: 190px;
	}

	.videosec {
		margin-bottom: -190px;
	}

	.fst-italic {
		font-size: 14px;
	}

	.breadcrumb-bg {
		display: none;
	}

	.innercontactsec {
		width: 65%;
	}

	.mytabsec .nav .nav-link {
		width: auto;
	}

	.aboutimg img {
		height: auto;
		object-fit: cover;
		object-position: top;
	}
}

@media (max-width: 580px) {
	#curvedTab {
		flex-wrap: nowrap !important;
	}

	#curvedTabContent {
		padding: 10px;
	}

	.innerallcarddetailscontact {
		flex-direction: column;
	}

	.card-text {
		text-align: left;
	}

	.address-card {
		margin-bottom: 0rem;
	}

	.curved-tabs .nav-link {
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		margin-right: 3px;
		padding: 14px 10px;
		font-size: 14px;
	}

	.contactdetails-box p {
		font-size: 13px;
	}

	#curvedTabContent {
		border-radius: 0px 0px 15px 15px;
	}

	.curved-tabs .nav-link:last-child {
		margin-right: 1px;
	}

	.hourslist {
		grid-template-columns: revert;
	}

	.info-item {
		margin-bottom: 12px;
	}

	.info-wrap {
		padding: 18px;
	}

	.owl-carousel .owl-nav button.owl-next {
		right: 40%;
	}

	.owl-carousel .owl-nav button.owl-prev {
		left: 40%;
	}

	.banner-slider.owl-carousel .owl-nav button.owl-prev,
	.banner-slider.owl-carousel .owl-nav button.owl-next {
		top: 89%;
	}

	.Popular-ListBox:hover .Popular-ListImg {
		margin-top: -16%;
	}

	.about-section .content {
		padding: 0px 15px;
	}

	.common-section {
		padding: 40px 0px;
	}

	.common-title,
	.common-box>h2,
	.common-section .common-box>h2 {
		margin-bottom: 15px;
	}

	.music_area .music_field .thumb {
		margin-right: 27px;
	}

	.music_area .music_field .audio_name .name h4 {
		font-size: 20px;
	}

	.cta-ImgTxt {
		flex-direction: column;
	}

	.common-box.cta-box .common-title,
	.common-box.cta-box .common-para {
		text-align: center;
	}

	.card-header {
		font-size: 18px;
		padding: 15px;
	}

	.innercallsec {
		flex-direction: column;
	}

	.contactform {
		padding: 15px;
	}

	.innertitlemainheading {
		font-size: 25px;
	}
}

@media (max-width: 375px) {
	.innerstar {
		margin-top: 0.5rem;
	}

	.payhear-heading {
		font-size: 1.5rem;
	}

	.fst-italic {
		font-size: 15px;
	}

	.about-section .common-para p:last-child {
		line-height: 20px;
		font-size: 15px;
	}

	.aboutlist li span {
		font-weight: 700;
		font-size: 13px;
	}

	.card-header {
		font-size: 18px;
		padding: 15px;
	}

	/* .btngroupsec{
		flex-direction: column !important;
	} */
}