/*
:root 
{
	--main_color: #6D0000; 
	--main_color_shade2: #a70000;
	--main_color_shade3: #BB0000;
	--main_color_shade4: #DD0000;
	--highlight_color: #fD6A02;
	--color_shade1: #FFFFFF;
	--color_shade2: #FAFAFA;
	--color_shade3: rgb(239,239,239); 
	--color_shade4: #e3e5e3;
	--color_red: red;
}

*/


*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


html
{
	scroll-behavior: smooth;
}


body 
{
	font-size: 16px;
	font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
	font-weight: 400;
	line-height: 1.5;
	color: var(--main_color_shade2);
} 



/* ....................LINK......................... */

a
{
	color: var(--highlight_color);
	text-decoration: none;
}





/* ....................CONTAINERS......................... */


.homepage_container
{
	width: 100%;
	background: var(--color_shade2);
}


.homepage_content
{
	height: 90%;
	
}

.homepage_head
{
	padding: 50px 20px 80px 20px;
	background: radial-gradient(var(--main_color_shade3),var(--main_color));
	text-align: center;
	position: relative;
}

.homepage_body
{
	padding: 50px 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 800px;
	margin: auto;
}



.homepage_body .email_success_heading
{
	text-align: center;
	margin: 20px 0;
}



.homepage_body a
{
	color: var(--main_color_shade2);
	display: block;
	flex-basis: 200px;
	margin: 20px;
}


.homepage_box
{
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 5px var(--color_shade4);
	background: var(--color_shade1);
	text-align: center;
}

.homepage_box:hover
{
	box-shadow: 0 0 15px var(--color_shade4);
	transition: .5s;
}

.homepage_box:active
{
	transform: scale(.9);
	transition: .2s;
}

.homepage_box:hover i
{
	color: var(--color_red);
	transition: .5s;
}


.homepage_box i
{
	font-size: 30px;
	color: var(--main_color_shade4);
}


.desc_container
{
	padding: 50px 20px;
	border-top: 1px solid var(--color_shade4);
}

.desc_container p
{
	max-width: 800px;
	margin: auto;
	text-align: center;
}




/* LOADING EFFECT */

.loading_container
{
	position: fixed;
	z-index: 9999;
	background: var(--color_shade1);
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}



.dot_container
{
	display: flex;
	justify-content: center;
}

.loading_dot
{
	width: 15px;
	height: 15px;
	background: var(--main_color_shade2);
	border-radius: 50%;
	margin: 5px;
}


.highlight
{
	background: var(--highlight_color);
}


.loading_content img
{
	width: 100px;
	display: block;
	text-align: center;
	margin: 20px auto;
	animation-name: logo_opacity;
	animation-duration: 1s;
	animation-iteration-count: infinite;
}

@keyframes logo_opacity
{
   0% {opacity: 1;}
   20% {opacity: 0.8;}
   40% {opacity: 1;}
   60% {opacity: 0.8;}
   80% {opacity: 1;}
   100% {opacity: 0.8;}
}

/*Loading effect ends */




/*---------- FOR WAVY BACKGROUND -------------*/
.wave
{
	position: absolute;
	width: 100%;
	height: 38px;
	bottom: 0;
	left: 0;
	background: url("../images/wave.png");
	animation: animate 10s linear infinite;
}


.wave::before
{
	content: '';
	width: 100%;
	height: 38px;
	background: url("../images/wave.png");
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.4;
	animation: animate-reverse 10s linear infinite;
}

.wave::after
{
	content: '';
	width: 100%;
	height: 38px;
	background: url("../images/wave.png");
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.6;
	animation-delay: -5s;
	animation: animate 20s linear infinite;
}



@keyframes animate {
	
	0% {
		background-position: 0;
	}

	100% {
		background-position: 1811px;
	}
}

@keyframes animate-reverse {
	
	0% {
		background-position: 1811px;
	}

	100% {
		background-position: 0;
	}
}


/* ....................HEADING......................... */

h1, h2, h3, h4, h5, h6
{
	font-family: 'Raleway', sans-serif;
}

.homepage_head h1
{
	color: var(--color_shade1);
}



/* ....................PARAGRAPH......................... */


.homepage_head p
{
	color: var(--highlight_color);
}


/* ....................VIDEOS......................... */

#video_wrapper
{
	height: 100%;
	display: none;
}


.video
{
	width: 100%;
	max-width: 900px;
	
}

.video_container
{
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	position: relative;
}

.video_container iframe
{
	
	position: absolute;
	width: 100%;
	height: 100%;
}


.video_box
{
	min-height: 20px;
	width: 100%;
	max-width:400px;
}



/* ....................FOOTER......................... */

.logo
{
	display: block;
	margin: auto;
	width: 100px;
}



/* ....................FOOTER......................... */

.footer_container
{
	background: var(--color_shade2);
	padding: 20px;
	text-align: center;
	border-top: 1px solid var(--color_shade4);
}


.footer_container span
{
	font-size: 12px;
	
}

/* .................... ADVERT SECTION ......................... */

.ad_container
{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 0;
}

.ad_container a
{
	flex-basis: 1000px;
	
}

.ad_container a img
{
	width: 100%;
}






/* ....................RESPONSIVE MEDIA QUERRIES......................... */

@media only screen and (max-width: 600px)
{
	.homepage_head
	{
		padding: 30px 10px 60px 10px;
	}
	
	.homepage_head h1
	{
		font-size: 22px;
		margin-top: 20px;
	}
	
	.homepage_head p
	{
		font-size: 14px;
		
	}
	
	.homepage_box
	{
		padding: 10px;
	}
	
	.homepage_box h2
	{
		font-size: 16px;
	}
	
	.homepage_body
	{
		padding: 20px 10px;
	}
	
	.homepage_body a
	{
		margin: 10px;
		flex-basis: 200px;
		flex-grow: 1;
	}
	
	body .footer_container span
	{
		line-height: 1;
	}
	
}


@media only screen and (max-width: 460px)
{
	.homepage_body a
	{
		flex-basis: 150px;
		
	}
}

@media only screen and (max-width: 360px)
{
	.homepage_body a
	{
		flex-basis: 100px;
	}
}