*{
	margin:0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Outfit", serif;
}
.topcontent{
	position: relative;
	min-height:100vh;
}
body video{
	display: block;
	position: fixed;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
}
.logo{
	position: absolute;
	padding: 4vw;
	top: 0;
	left: 0;
	z-index: 1;
}

.logo img{
	width: 16vw;
	height: auto;
	position: relative;
	z-index: 2;
	padding: 0vw 1vw 6vw 4vw;
	filter: brightness(0) invert(1);
}
.logo svg{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.tagline{
	position: absolute;
	width: 100%;
	top: 15%;
	left: 0;
	z-index: 1;
}

.tagline h1{
	text-align: center;
	font-size:calc(15px + 6vw);
	color:white;
	line-height: 100%;
}
.tagline h1 small{
	font-size: 60%;
}
.link{	
	position: absolute;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	padding: 0 10%;
	bottom: 10%;
	z-index: 3;
	gap:4vw;
}
.link a{
	display: block;
	width: 200px;
}
.link a img{
	filter: brightness(0) invert(1);
	opacity: 0.7;
	transition: all 0.4s cubic-bezier(.2,.65,.3,1);
}
.link a:hover img{
	filter: brightness(1) invert(0);
	opacity: 1;
}
.link .social{
	text-align: center;
	padding-top: 15px;
	margin-top: 15px;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.link .social a{
	width: 20px;
	height: 20px;
	display: inline-block;
	margin: 0 5px;
}
.link .social a img{
	width: 20px;
	height: 20px;
}
.contentsection{
	background-color: #fff;
	position: relative;
	z-index: 100;
	width: 100%;
	aspect-ratio: 16 / 9;
}
.contentsection .imgvideo{
	width: 70%;
	height: auto;
	position: relative;
}
.contentsection .imgvideo iframe{
	position: absolute;
    right: 30.3%;
    bottom: 15%;
    width: 43vw;
    height: 26.5vw;
}
.contentsection .imgvideo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: bottom right;
}
.contentsection .text{
	position: absolute;
    width: 30%;
    right: 60px;
    top: 30%;
    text-align: center;
    line-height: 1.5;
    font-weight: 300;
	font-size: 120%;
}
@media screen and (max-width:1024px){
	.logo img{
		width: 45vw;
		height: auto;
		position: relative;
		z-index: 2;
		padding: 0vw 4vw 14vw 12vw;
	}
	.tagline{
		top: 35%;
	}
}