/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
   <3 thanks, Eric :-)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
product, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, product, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*
Colors
Footer background: #2D2C2E Dark grey
Accent color: #FDDD0D yellow
High light color: #FD1F4A red
*/

/* ---------------------------------------------------
BODY
--------------------------------------------------- */

body{
  font-family: 'Open Sans', verdana, sans-serif;
  background-color: black;
  width: 100%;
  font-size: 1em;
  line-height: 1.4em;
  height: auto;
}

section{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
section:before{
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, black, transparent);
  z-index: 10000;
}
section:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: #0a2a43;*/
  z-index: 10000;
  mix-blend-mode: color;
}
section img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;[
    pointer-events: none;
    ]
}
#text{
  position: relative;
  color: #fff;
  font-size: 8em;
  z-index: 2;
	font-family: 'Poppins', sans-serif;
	line-height: 1;
}
#swayambhu{
  z-index: 1;
}

/* ---------------------------------------------------
NAVIGATION MENU
--------------------------------------------------- */
#Layer_1{
	fill: white;
	width: 52px;
	padding: 10px;
}

nav{
	float: right;
	display: absolute;
}
.top-nav{
		list-style-type: none;
}
.top-nav li{
	display: inline-block;
	padding: 30px 5px 20px 5px;

}
.top-nav a{
	text-decoration: none;
	color: white;
}
.top-nav a:hover{
	color: #FDDD0D;
}


/* ---------------------------------------------------
ALL PAGE IMAGE AND CONTENT
--------------------------------------------------- */
.link{
	color: #D11C1C;
}
.link:hover{
	color: #FDDD0D;
}
p{
	font-size: 1.1em;
}
.img-gallery{
	padding: 70px 0 50px 0;
}
.img-gallery p{
	width: 70%;
	margin: auto;
	text-align: center;
	padding-bottom: 20px;
}

.why{
	width: 70%;
	margin: auto;
}
.why h1{
	text-align: center;
	color: white;
	font-size: 1.6em;
	font-weight: bold;
	padding: 30px 0 30px 0;
}
.why p{
	line-height: 1.4em;
	text-align: center;
	padding-bottom: 10px;


}
.img-gallery h1{
	text-align: center;
	color: white;
	font-size: 1.6em;
	font-weight: bold;
	padding-bottom: 30px;
}
span{
	color: #FDDD0D;
}
.home-slider{
	max-width: 90%;
	margin: auto;
}

.mySlides{
	width: 100%;
}
.events h1{
	text-align: center;
	color: white;
	font-size: 1.6em;
	font-weight: bold;
	padding-bottom: 30px;
}
.grid-container {
  display: grid;
  grid-template-columns: auto;
  padding: 10px;
}
.grid-item {
  padding: 20px;
  font-size: 1.2em;;
  text-align: center;
}
.grid-item a{
	text-decoration: none;
}


.grid-item img{
	border-radius: 10px;
	width: 80%;
}

.grid-item p{
	padding-top: 10px;
}

.grid-item img{
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.grid-item:hover img{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	}

}
#view-more{
	display:none;
}
.contact-form{
	width: 80%;
	padding: 30px 0 30px 0;
	margin: 0 auto;
	text-align: center;
	line-height: 1.4em;
}

.contact-form h1{
	color: white;
	font-size: 1.6em;
	font-weight: bold;
	padding-bottom: 20px;
}

.contact-form p{
	padding-bottom: 10px;
}

.contact-form a{
	text-decoration: none;
	color: white;
	font-size: 1.4em;
}
.contact-form a:hover{
	color: #FDDD0D;
}

form{
	text-align: center;
	padding: 20px 0 30px 0;
}
form input, textarea{ /*css for form*/
	padding: 10px;
	margin: 5px 0 5px 0;
	width: 60%;
	border: 2px solid white;
	background-color: black;
	color: white;
	font-family: 'open sans', sans-serif;
}
::placeholder{
	color: white;
	opacity: 0.6;
	font-size: 1.1em;
	text-align: center;
}

form h2{ /*heading of the form in contact*/
	text-align: center;
	font-size: 1.6em;
	padding-bottom: 10px;
	font-weight: bold;
}

input[type=submit]{ /*send button on contact page form*/
	background-color: black;
	color: white;
	margin: 20px 20px auto;
	font-size: 1.1em;
}

input[type=submit]:hover{ /*effect for send button on the form*/
	background-color: #FDDD0D;
	color: black;
	cursor: pointer;
	border: 2px solid #FDDD0D;
}

/* ---------------------------------------------------
About
--------------------------------------------------- */
.about{
	max-width: 90%;
	margin: auto;
}

.about h1{
	font-size: 1.6em;
	text-align: center;
	font-weight: bold;
	padding-bottom: 20px;
}

.about h2{
	font-size: 1.2em;
		font-weight: bold;
}

.about-img{
	display: block;
	width:90%;
	margin:0 auto;
}

.about p{
	padding: 10px 0 10px 0;
	line-height: 1.4em;
}
.two-img{
	padding-bottom: 20px;
	display: grid;
	grid-gap: 20px;
	grid-template-columns: auto;
}

.two-img-col{
	grid-column: 1fr;
}
/* ---------------------------------------------------
CONTENTS FOR HOMEPAGE
--------------------------------------------------- */
.about h1, h2, p{
	color: white;
}
/* ---------------------------------------------------
FOOTER STYLING
--------------------------------------------------- */
footer {
	background-color: #2D2C2E;
	bottom: 0;
	width: 100%;
	color: white;
	text-align: center;
}

.footer-content a{ /*selecting site maps*/
	text-decoration: none;
	color: white;
}

.footer-content a:hover{ /*effect for site maps*/
	color: #FDDD0D;
}

footer ul li:first-child{ /*selecting the first li from each list*/
	font-size: 1.2em;
	font-weight: bold;
	padding-bottom: 10px;
	color: #FDDD0D;
}

footer ul{
	padding: 10px;
	line-height: 1.5em;
}

footer p:last-child{ /*selecting last paragraph which is the bottom end footer*/
	text-align: center;
	font-size: 0.8em;
	padding: 20px 20px;
	border-top: 1px solid white;
}


#footer-logo{
	width: 64px;
	fill: #FDDD0D;
}

.social-media{
	width: 24px;
	fill: #FDDD0D;
	display: inline-block;
}

.social-inline{
	display: inline-block;
}
/* ---------------------------------------------------
GALLERY
--------------------------------------------------- */
.gallery-img{
	width: 100%;
	margin: auto;
	text-align: center;
}

.gallery-item {
	background-color: black;
	padding: 20px;
	text-align: center;
	filter: grayscale(100%);
}
.gallery-item img{
	width: 80%;
}

.gallery-item:hover{ /*slight change of effect while hover on product page*/
	 filter: grayscale(0);
}

.gallery-img h1{
	font-size: 1.6em;
	color: white;
	font-weight: bold;
	padding-top: 30px;
}

.caption{
		color:white;
		font-style: italic;
		font-size: 0.7em;
		padding-top: 5px;
		opacity: 0.6;
}

/* ---------------------------------------------------
MEDIA QUERIES
--------------------------------------------------- */

@media screen and (max-width: 600px) { /*only for 404page*/
}

@media screen and (min-width: 600px){
	.home-slider{
		max-width: 70%;
	}
	.grid-item img{
		width: 60%;
	}
}
@media only screen and ( min-width: 720px ) {
.top-nav li{
	display: inline-block;
	padding: 30px 20px 20px 20px;
}
}
@media screen and (min-width: 800px){
	.footer-content{ /*Column content for footer*/
		display: flex; /* Change here for mobile */
		flex-direction: row;
		justify-content: space-around;
		padding: 20px;
	}

	.about-content{  /*our about content*/
		display: flex;  /*css for content and image*/
		grid-gap: 10px;

	}
	.about-img{
		margin-top: 20px;
	}
	.about h1{
		font-size: 1.8em;
	}
	.about p{
		font-size: 1.1em;
	}
	.gallery-grid { /*creating 4X grid for gallery in product page*/
	  display: grid;
	  grid-template-columns: auto auto;
		padding-top: 20px;
	}
	.gallery-item img{
		width: 100%;
	}
	.home-slider{
		max-width: 50%;
	}
	form input, textarea{ /*css for form*/
		width: 40%;
	}
}

@media screen and (min-width: 1080px){
	.footer-content{
		font-size: 1.2em;
	}
	.footer-content ul li{
		padding-bottom: 2px;
	}
	.two-img{
		grid-template-columns: auto auto;
	}

	.about{
		width: 70%;
	}
	.gallery-grid { /*creating 4X grid for gallery in product page*/
	  grid-template-columns: auto auto auto;

	}
	.gallery-item img{
		width: 90%;
	}
	.grid-container {
		grid-template-columns: auto auto auto;

	}
	.grid-item img{
		width: 90%;
	}
}
