* {
	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(js18.jpeg);
	background-size: cover;
	background-position: center center;
	display: flex;
	justify-content: center;
	align-items: center;
	
	}

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

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

.text2 {
	max-width: 600px;
	margin-top: 250px;
	padding: 30px;
	background-color:rgba(163,180,199,0.05);
}
p {
	font-size: 12px;
	font-family: 'Inknut Antiqua', serif;
	color: white;
}

h1 {
	font-family: 'Homemade Apple', cursive;
	font-size: 25px;
	color: white;
	text-align: center;
}
h1:hover {
	color: #A3B4C7;
}

h2 {
	font-family: 'IM Fell English SC', serif;
	font-size: 1.9vw;
	color: black;
	text-align: center;
	font-weight: 300px;
}
h3 {
	font-family: 'Homemade Apple', cursive;
	font-size: 1.8vw;
	color: black;
	text-align: center;
	font-weight: 300px;
}

h4 {
	font-family: 'Inknut Antiqua', serif;
	font-size: 1.3vw;
	line-height: 1.7;
	color: white;
	text-align: center;
}

.intro {
	display: flex;
	align-items: center;
	height: 100vh;
}

.intro h3:hover {
	transform: rotate(0deg) scale(1.5);
	transition: all 2s ease;
}
section {
	max-width: 50%;
	padding:12%;
}
.North {
	width: 130%;
}
.North:hover {
	transform: rotate(360deg) scale(1.1);
	transition: all 4s ease;
}


.n-type {
	width: 150%;
}

.section2 {
	border: 0px;
	transition: all 3s ease;
}
.section2:hover {
	border: 50px solid black;
}

.text2 h4 {
	transition: all 3s ease;
}
.section2:hover + .text2 h4 {
	opacity: 0;
}

.section2 h4 {
	transition: all 4s linear;
}
.text2:hover h4 {
	opacity: 0;
}


.text2:hover {
	background-color:rgba(163,180,199,0);
}


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

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

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


.intro {
  animation-duration: 5s;
  animation-name: color;
  animation-play-state: paused; 
}

.intro:hover {
	animation-play-state: running;
}

@keyframes color {
  from {
    background-color: black;
  }

  to {
    background-color: white;
  }
}

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

section {
	max-width: 100%;
	padding:12%;
}

}



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




