@import url('https://fonts.googleapis.com/css2?family=Megrim&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

/* width */
::-webkit-scrollbar {
	width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f8f7fd;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: black;
	cursor: pointer;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: orangered;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	/* font-family: poppins; */
}

body {
	background: #000000;
	/* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #434343, #000000);
	/* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #434343, #000000);
	/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	position: relative;
}

/* .block_show
{
	background: red !important;
} */
.block_hide {
	opacity: 0;
	position: relative !important;
}

.main_heading {
	position: fixed;
	top: 0px;
	color: ghostwhite;
	font-size: 18px;
	width: 100%;
	text-align: center;
	background: black;
	z-index: 9;
	padding: 8px 0px;
}

.main_heading h1 {
	font-family: megrim;
}

.main_heading a {
	position: absolute;
	top: 18px;
	left: 10%;
	font-family: roboto;
	color: ghostwhite;
	text-decoration: none;
}

.main_heading a:hover {
	color: orangered;
}

.main_heading a i {
	color: ghostwhite;
	margin-right: 6px;
}

.sub_heading {
	/* position: relative;
	top: 7%; */
	width: 100%;
	background: rgba(0, 0, 0, 0.6);
}

.sub_heading_content {
	width: 100%;
	margin: 0px auto;
	color: ghostwhite;
}

.sub_heading_content h1 {
	font-family: roboto;
}

.sub_heading_content p {
	font-family: roboto;
}

.sliders-container {
	margin-top: 3%;
	padding-bottom: 200px;
}

.container {
	position: relative;
	width: 100%;
	margin-bottom: 3%;
}

.container .title {
	padding: 0px 9.8%;
	margin-bottom: 2%;
	color: ghostwhite;
	/* 	margin-top: 5%; */
}

.container .title h2 {
	font-family: roboto;
	font-size: 30px;
}

.owl-nav {
	margin-top: 0px !important;
}

.custom-nav {
	position: absolute;
	top: 0px;
	left: 0px;
}

.owl-prev, .owl-next {
	position: absolute;
	height: 100%;
	top: -5px;
	width: 4%;
	color: inherit;
	border: none;
	border-radius: 0px !important;
	z-index: 100;
	background: black !important;
}

.owl-next, .owl-prev {
	background: rgba(0, 0, 0, 0.8) !important;
	color: ghostwhite !important;
}

.owl-prev i, .owl-next i {
	font-size: 3.5rem;
}

.owl-prev {
	left: -20px !important;
}

.owl-next {
	right: -20px !important;
}

.owl-theme .owl-nav .disabled {
	display: none !important;
	cursor: default;
	transition: 0.2s all !important;
	transition-timing-function: ease-in-out !important;
}

.slider {
	width: 98% !important;
	margin: 0px auto;
	z-index: 9999;
}

.owl-carousel {
	width: 100%;
	position: relative !important;
}

.item {
	width: 25rem !important;
	height: 25rem;
	z-index: 9999;
	cursor: grab;
	position: relative;
	overflow: hidden;
	transition: 0.2s all;
	transition-timing-function: ease-in-out;
}

.item:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	left: 0px;
	transition: 0.4s all;
	transition-timing-function: ease-in-out;
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(2px);
}

.item:hover .btn {
	opacity: 1;
}

.item:hover:before {
	opacity: 1;
}

.btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 2.5rem;
	opacity: 0;
	padding: 15px;
	border-radius: 50%;
	color: ghostwhite;
	z-index: 999;
	cursor: pointer;
	transition-delay: 0.3s;
	transition: 0.3s all;
	transition-timing-function: ease-in-out;
}

.btn:hover {
	background: orangered;
}

.image-detail-container {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 999999;
	display: none;
	transition: 0.2s all;
	transition-timing-function: ease-in-out;
}

.image_detail {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: space-around;
	align-items: center;
	background: rgb(0 0 0 / 95%);

}

.image_detail i {
	position: absolute;
	top: 5%;
	right: 5%;
	font-size: 2rem;
	color: ivory;
	cursor: pointer;
}

.image_detail .description h1 {
	color: ghostwhite;
	position: relative;
	width: fit-content;
	margin-bottom: 5%;
	font-family: roboto;
}

.image_detail .description h1:after {
	content: '';
	position: absolute;
	left: 0px;
	bottom: -10px;
	border-radius: 10px;
	height: 3px;
	width: 100%;
	background: orangered;
}

.image_detail .description .description-paragraph {
	width: 100%;
	height: 40vh;
	overflow: scroll;
	overflow-x: hidden;
}

.image_detail .description p {
	color: floralwhite;
	font-family: roboto;
}

.image_detail .img, .image_detail .description {
	width: 45%;
}

/* .image_detail .img
	{
		object-fit: cover;
		text-align: center;
	}
	.image_detail .img img
	{
		width: 600px;
		height: 600px;
		margin: 0px auto;
		display: block;
		object-fit: cover;
	} */
.image_detail .img img {
	width: 100%;
	display: block;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.modal-open {
	height: 100vh;
	overflow-y: hidden;
}