@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;
}

.container {}

/* 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;
}

body {
	background: #000000;
	background: -webkit-linear-gradient(to right, #434343, #000000);
	background: linear-gradient(to right, #434343, #000000);
	/* 	height: 100vh; */
	position: relative;
	/* 	display: flex;
	justify-content: center;
	align-items: center; */
	overflow-x: hidden;
}

.heading {
	position: fixed;
	top: 0px;
	color: ghostwhite;
	font-size: 35px;
	width: 100%;
	text-align: center;
	background: black;
	border-bottom: 2px solid orangered;
	z-index: 2;
	min-height: 60px;
}

.heading .inner-header {
	position: relative;
	width: 100%;
	padding: auto 10% auto 1%;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media (max-width: 600px) {
	.logo {
		max-width: 150px;
	}
}

@media (max-width: 400px) {
	.logo {
		max-width: 110px;
		padding: 5px 0;
	}
}




.heading h1 {
	font-family: megrim;
	border-bottom: 2px solid orangered;
}

.category {
	width: 60%;
	margin: 10% auto 0% auto;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
}

.category a {
	text-decoration: none;
	transition: 0.2s all;
	transition-timing-function: ease-in-out;
}

.category a:hover {
	transform: scale(1.05);
}

.category a:hover .card {
	box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.3);
}

.card {
	width: 25rem;
	background: #0c0c0c;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 20px;
	transition: 0.2s all;
	transition-timing-function: ease-in-out;
	box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.6);
}

.card .image {
	width: 100%;
	height: 200px;
}

.card img {
	width: 100%;
	height: 100%;
}

.card .card-details {
	width: 100%;
	padding: 10px;
	font-family: roboto;
	color: ghostwhite;
}

/* ********************************************************** */

/* MAIN FILE CSS */
.block_hide {
	opacity: 0;
	position: relative !important;
}

.main {
	margin-top: 60px;
}

.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;
}

.heading a {
	position: absolute;
	top: 35%;
	left: 10%;
	font-family: roboto;
	color: ghostwhite;
	text-decoration: none;
	font-size: 18px;
	/* display: flex; */
	/* align-items: baseline; */
}

.heading a:hover {
	color: orangered;
}

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


.sub_heading {
	width: 100%;
	background: rgba(0, 0, 0, 0.6);
}

.sub_heading_content {
	width: 100%;
	color: ghostwhite;
	padding: 36px 2% 30px 10%;
}

.sub_heading_content h1 {
	font-family: roboto;
}

.sub_heading_content p {
	font-family: roboto;
}

.option {
	width: 85%;
	margin: 5% auto 0% auto;
	flex-wrap: wrap;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.option_card {
	width: 18%;
	text-align: center;
	margin-bottom: 5%;
}

.option_card a {
	text-align: center;
	font-family: roboto;
	text-decoration: none;
	color: ghostwhite;
}

.option_image img:hover {
	transform: scale(1.05);
}

.option_image {
	width: 100%;
	margin-bottom: 10px;
}

.option_image img {
	width: 200px;
	height: 200px;
	object-fit: cover;
	border-radius: 5px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	transition: 0.2s all;
	transition-timing-function: ease-in-out;
}

.option_image img:hover {
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* *********************************************** */
/* SLIDER CONTENT */
/* .sliders-container
{
  width: 100%;
  height: 100vh;
  margin-top: 28%;
}
.slider
{
  margin-bottom: 10%;
}
.slider h2
{
  font-size: 30px;
  padding: 10px;
  font-family: roboto;
  color: ghostwhite;
}
.carousel 
{
  width: 100%;
  padding: 10px;
}
.carousel-cell 
{
  width: 26rem;
  height: 26rem;
  margin-right:10px;
  border-radius: 5px;
  counter-increment: gallery-cell;
  overflow: hidden;
  cursor: pointer;
}
.image-detail-container
{
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
  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: rgba(0, 0, 0,0.8);
 
}
.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 img
{
	width: 100%;
	display: block;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
} */