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

body {
	font-size: 18px;
	overflow-x: hidden;
}

.v1 {
	background-color: #000000;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	font-family: 'IM Fell English SC', serif;
	font-size: 20px;
}
.v1 ul {
	list-style-type: none;
	display: flex;
	max-width: 800px;	
	margin: 0 auto;
}
.v1 li {
	width: 25%;
}
.v1 li a {
	display: block;
	color: white;
	text-decoration: none;
	padding: 20px 0 20px 0;
	text-align: center;
	transition: all 1s linear;
}
.v1 li:last-of-type a {
	border-right: none;
}
.v1 li a:hover {
	color: white;
	background-color: #A3B4C7;
}

.v3 {
	display: none;
}



.section1 {
	width: 100vw;
	height: 100vh;
	background-image: url(js16.jpg);
	background-size: cover;
	background-position: center center;
	display: flex;
	justify-content: center center;
	align-items: center;
	
	}

	.text1 {
	max-width: 800px;
	max-height: 800px;
	padding-left:100px;
	padding-right: 100px;
	padding-bottom:200px;
	padding-top: 150px;
	margin-top: 400px;
	background-color: rgba(0, 0, 0, 0);
}


.section2 {
	width: 100vw;
	height:100vh;
	background-image: url(A2.png);
	background-size:cover;
	background-position: center center;
	display: flex;
	justify-content: center center;
	align-items: center;
	padding-top: 100px;

	
	}

h2 {
	font-size: 14px;
	font-family: 'Inknut Antiqua', serif;
	color: white;
	text-align: center;
	animation-name: fadeIn;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 5s;
	line-height: 1.4;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.map {
	width: 70%
}

h1 {
	font-family: 'Homemade Apple', cursive;
	font-size: 30px;
	color: white;
	text-align: center;
	animation-duration: 3s;
  animation-name: slidein;

}

h1:hover {
	color: #A3B4C7;
}
@keyframes slidein {
  from {
    margin-top: 100%;
    width: 100%; 
  }

  to {
    margin-top: 0%;
    width: 100%;
  }
}

.container {
	display: flex;
	align-items: center;
	justify-content: center center;
	height: 100vh;
	width: 100vw;
	background-color: black;
}
section {
	max-width: 50%;
	padding:5%;
}

.container {
  animation-duration: 3s;
  animation-name: slidein;
}



@keyframes slidein {
  from {
    margin-left: 100%;
    width: 100%; 
  }

  to {
    margin-left: 0%;
    width: 100%;
  }
}



@media all and (max-width: 800px) {
.v1 {
	display: none;
}
.v3 {
	display: block;
}	
.v3 #menuToggle {
	position: fixed;
	top: 50px;
	left: 50px; /* ------------------------ FOR RIGHT SIDE CHANGE TO right: 50px; ----------------- */
	width: 50px;
}
.v3 input {
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: -5px;
	left: 0;  
	z-index: 10;
	opacity: 0;
	cursor: pointer;
}

.v3 span {
	display: block;
	width: 30px;
	height: 4px;
	background-color: #cdcdcd;
	margin-bottom: 5px;
	border-radius: 3px;
	transform-origin: 2px 2px;
	transition: transform 0.5s linear;
	position: relative;
	z-index: 9;
}

.v3 input:checked ~ span {
	background-color: white;
	transform: rotate(45deg);
}

.v3 input:checked ~ span:nth-of-type(2) {
	opacity: 0;
}

.v3 input:checked ~ span:nth-of-type(3) {
	transform: rotate(-45deg);
}

.v3 #menu {
	list-style-type: none;
	width: 300px;
	height: 100vh;
	background-color: #000000;
	padding: 125px 50px 50px 50px;
	position: absolute;
	top: -50px;
	left: -350px;  /* ------------------------ FOR RIGHT SIDE CHANGE TO right: -350px; ----------------- */
	z-index: 8;
	transition: all 0.5s ease;
	font-family: 'IM Fell English SC', serif;
}
.v3 li {
	margin: 25px 0;
	font-size: 24px;
}
.v3 li a {
	color: white;
	text-decoration: none;
}
.v3 li a:hover {
	color: #A3B4C7;
	transition: all 1s ease;
}

.v3 input:checked ~ #menu {
	left: -50px; /* ------------------------ FOR RIGHT SIDE CHANGE TO right: -50px; ----------------- */
}

}




.video-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px; height: 0; overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
