@import url('https://fonts.googleapis.com/css2?family=Cabin&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inknut+Antiqua&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inknut+Antiqua&display=swap');
*
{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html
{
	font-size: 62.5%;
    scroll-behavior: smooth;
}
body
{
	width: 100%;
	/* height: 100vh; */
	display: flex;
	flex-direction: column;
	background: rgba(0, 0, 0, 0.9);
}
.header
{
	width: 100%;
	padding: 1.5rem 0;
	background: red;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	z-index: 999;
}
/* logo */
.header .logo
{
	margin-left: 5rem;
	cursor: default;
}
.header .logo .dw
{
	padding: 1rem;
	font-size: 1.7rem;
	color: #fff;
	text-transform: capitalize;
	font-family: 'Permanent Marker', cursive;
	position: relative;
}
.header .logo .dw:before
{
	content: "";
	width: 80%;
	height: 0.3rem;
	position: absolute;
	bottom: 0.4rem;
	left: 0;
	background: #fff;
}
.header .logo i
{
	font-size: 3rem;
	color: #fff;
	animation: node 0.5s linear infinite;
}
@keyframes node
{
	0% {
		transform: rotate(-30deg);
	}50% {
		transform: rotate(30deg);
	}100% {
		transform: rotate(-30deg);
	}
}
/* menu */
.header .menu
{
	margin-left: -10rem;
}
.header .menu ul 
{
	display: flex;
	list-style: none;
}
.header .menu ul li
{
	margin-left: 2rem;
}
.header .menu ul li a
{
	text-decoration: none;
	font-size: 2rem;
	color: #fdfd;
	font-family: 'Cabin', sans-serif;
	font-weight: 400;
	text-transform: capitalize;
	position: relative;
	transition: 0.3s ease all;
}
.header .menu ul li a:hover
{
	color: #fff;
}
.header .menu ul li a:before
{
	content: "";
	position: absolute;
	width: 0%;
	height: 0.3rem;
	left: 0;
	bottom: -0.4rem;
	background: #fff;
	transition: 0.5s linear all;
}
.header .menu ul li a:hover:before
{
	width: 100%;
}
/* slidebar */
.header .slidebar
{
	margin-right: 2rem;
	font-size: 2.5rem;
	color: #fff;
	cursor: pointer;
	margin-top: auto;
	user-select: none;
}
/* slidemenu */
.slide_menu
{
	width: 30rem;
	height: 100vh;
	position: fixed;
	top: 0;
	right: 0;
	background: #724297;
	padding: 6rem 3rem;
	z-index: 99999;
	transition: 0.5s ease-out;
	display: none;
	overflow-x: hidden;
}
.slide_menu.active
{
	display: block;
}
.slide_menu .close_nav
{
	position: absolute;
	top: 1.5rem;
	right: 2rem;
	color: #fff;
	font-size: 2.5rem;
	cursor: pointer;
	z-index: 9999999;
}
.slide_menu ul li
{
	list-style: none;
	padding: 1rem 0rem;
	text-align: center;
	cursor: pointer;
	transition: 0.5s linear;
}
.slide_menu ul li:hover
{
	background: #7216EF;
}
.slide_menu ul li a
{
	font-size: 2rem;
	color: #fff;
	text-transform: capitalize;
	text-decoration: none;
	font-family: 'Cabin', sans-serif;
	position: relative;
}
.slide_menu ul li a:before
{
	content: " ";
	position: absolute;
	bottom: -0.4rem;
	left: 0;
	width: 100%;
	height: 0.3rem;
	background: red;
}
.slide_menu ul li:hover > a:before
{
	width: 0;
}
.slide_menu ul .imgd
{
	width: 100%;
	height: 30rem;
	margin-top: 3rem;
	overflow: hidden;
	background: #000;
	filter : drop-shadow(0.1rem 0.1rem 1rem red);
	animation: animate
}
.slide_menu ul .imgd img
{
	width: 100%;
	height: 100%;
	transition: 0.3s all linear;
}
.slide_menu ul .imgd img:hover
{
	transform: scale(1.5) rotate(-60deg);
}


/* main video content */
.video_heading
{
	font-size: 2.5rem;
	color: #fff;
	font-weight: bolder;
	text-align: center;
	margin: 8rem auto 1rem; 
	font-family: 'Inknut Antiqua', serif;
	position: relative;
	cursor: default;
	user-select: none;
	text-align: center;
}
.video_heading:before
{
	content: " ";
	position: absolute;
	bottom: -0.2rem;
	left: 0;
	width: 100%;
	height: 0.3rem;
	background: red;
	border-radius: 1rem;
}
.main_content1
{
	margin: 3rem 0 1rem;
}
.main_content2
{
	margin: 1rem 0;
}
.main_content3
{
	margin: 1rem 0 3rem;
}
/* for recommanded */
.main_content4
{
	margin: 1rem 0 3rem;
}
.main_content1, .main_content2,.main_content3,.main_content4
{
	display: grid;
	grid-template-rows: repeat(1, 25rem);
	grid-template-columns: repeat(8, 30rem);
	grid-column-gap: 1rem;
	overflow-y: hidden;

}
.main_content1 .div1, .main_content2 .div1, .main_content3 .div1,
.main_content4 .div1
{
	background: red;
	transition: 0.4s linear all;
}
.main_content1 .div1:hover,.main_content2 .div1:hover,.main_content3 .div1:hover,
.main_content4 .div1:hover
{
	transform: scale(1.1);
}
.main_content1::-webkit-scrollbar, .main_content2::-webkit-scrollbar,
.main_content3::-webkit-scrollbar,.main_content4::-webkit-scrollbar
{
	overflow: hidden;
}
.main_content1 .div1 img,.main_content2 .div1 img,
.main_content3 .div1 img,.main_content4 .div1 img
{
	width: 100%;
	height: 100%;
}

/* recommanded part */
.rvideo
{
	font-size: 2.5rem;
	margin: 2rem auto;
	color: #fff;
	text-transform: capitalize;
	font-family: 'Inknut Antiqua', serif;
	position: relative;
	cursor: default;
}
.rvideo:before
{
	content: " ";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0.3rem;
	background: red;
}


















/* footer */
.footer
{
	width: 100%;
	background: rgba(0, 0, 0, 0.8);
	margin-top: auto;
	padding: 2.5rem;
}
.footer .content
{
	display: flex;
	width: 100%;
}
.footer .content .address
{
	width: 50%;
	border-right: 0.4rem solid #fff;
}
.footer .content .address h1,.footer .content .contact h2
{
	font-size: 2.7rem;
	font-family: 'Zilla Slab', serif;
	color: red;
	position: relative;
	cursor: pointer;
	margin-left: 1.6rem;
}
.footer .content .address .lbox,.footer .content .contact .rbox
{
	margin-top: 1.4rem;
}
.footer .content .contact .rbox p
{
	text-align: center;
}
.footer .content .address p,.footer .content .contact p
{
	font-size: 1.6rem;
	color: #fff;
	cursor: pointer;
}
.footer .content .contact p a
{
	color: #fff;
	text-decoration: none;
	transition: 0.3s all linear;
}
.footer .content .contact p a:hover
{
	color: red;
}
.footer .content .address p span, .footer .content .contact p span
{
	font-size: 3rem;
	color: red;
	padding: 0.9rem;
	text-align: justify;
	cursor: pointer;
}
.footer .content .contact
{
	width: 50%;
}


/* for mobile phones */

@media(max-width: 768px)
{  body
	{
		height: auto;
	}
	
	/* logo */
.header .logo
{
	margin-left: 1rem;
}
.header .logo .dw
{
	padding: 1rem 0;
	font-size: 2rem;
	color: #fff;
}
.header .logo .dw:before
{
	width: 100%;
}
.header .logo i
{
	display: none;
}
.header .menu
{
	margin-right: 1rem;
}
.header .menu ul li
{
	margin-left: 1rem;
}
.header .menu ul .hid
{
	display: none;
}
.header .menu ul li a
{
	font-size: 2rem;
}
.header .slidebar
{
	display: none;
}
.main_content1, .main_content2,.main_content3,.main_content4
{
	display: grid;
	grid-template-rows: repeat(1, 18rem);
	grid-template-columns: repeat(8, 13rem);
	grid-column-gap: 0.2rem;
	overflow-y: hidden;

}
.main_content1 .div1, .main_content2 .div1, .main_content3 .div1,
.main_content4 .div1
{
	border-radius: 1rem;
	background: none;
}
.main_content1 .div1 img,.main_content2 .div1 img,
.main_content3 .div1 img,.main_content4 .div1 img
{
	border-radius: 1rem;
}
.main_content1
{
	margin: 3rem 0 0.5rem;
}
.main_content2
{
	margin: 0.5rem 0;
}
.main_content3
{
	margin: 0.5rem 0 0;
}
.main_content1 .div1:hover,.main_content2 .div1:hover,.main_content3 .div1:hover,
.main_content4 .div1:hover
{
	transform: none;
}
.video_heading
{
	margin: 10rem auto 1rem; 
}
.rvideo
{
	margin: 0.5rem auto;
}
.footer .content
{
	display: block;
}
.footer
{
	width: 100%;
	background: rgba(0, 0, 0, 0.8);
	margin-top: auto;
	padding: 2.5rem 0;
}
.footer .content
{
	display: block;
	width: 100%;
}
.footer .content .address, .footer .content .contact
{
	width: 100%;
	border: none;
	padding: 2rem;
}
.footer .content .address
{
	border-bottom: 0.1rem solid #fff;
}
.footer .content .address h1,.footer .content .contact h2
{
	text-align: center;
	padding: 0;
}
.footer .content .address .lbox,.footer .content .contact .rbox
{
	margin-top: 0;
}
.footer .content .address p, .footer .content .contact p
{
	text-align: center;
}
.footer .content .address p span, .footer .content .contact p span
{
	font-size: 3rem;
	color: red;
	padding: 0.9rem;
	text-align: center;
	cursor: pointer;
}
