* {
	margin: 0;
	padding: 0;

	box-sizing: border-box;
	-webkit-font-smoothing:  antialiased;
}

h1 {
	font-family: arial;
	font-size: 16px;
	line-height: 1.3;
	letter-spacing: 1px;

	font-weight: normal;
}

a, p {
	font-family: arial;
	font-size: 14px;

	line-height: 1.3;

	letter-spacing: 1.3px;

	color: black;
	text-decoration: none;
}

span {color: gray;}

.tagline img {
	height: 22px;
}

.video-wrapper {
	height: calc(100vh - 80px);
	width: 100%;

	object-fit: cover;
}

video, #video {
	width: 100%;
	height: 100%;

 	object-fit: cover;
 	object-position: bottom;
}

video {transform: rotate(180deg) scaleX(-1);}

#logo {position: absolute; top: calc(50vh + 80px); left: 50vw; transform: translate(-50%, -50%); color: white;}


.header {
	height: 80px;

	display: flex;
	align-items: center;	

	padding: 0 30px;
}

.tagline {
	width: 100%;

	display: flex;
	justify-content: space-between;

	align-items: center;
}

#tag {
	position: absolute;
	left: 50vw;
	top: 50vh;

	transform: translate(-50%, -50%);

	text-transform: uppercase;
	z-index: 1000;

	text-align: center;

	width: 80vw;
}

#tag p {
	color: white;

	line-height: 1.8;
}




.content {
	width: 33%;

	padding: 30px;
}



.acc__panel:not(first-child) {display: none;}
.acc__panel {padding: 15px 0;}

.arrow {transform: rotate(-90deg);}

.active .arrow {transform: rotate(0deg);}

.acc__title {
	width: 100%;

	display: flex;
	justify-content: space-between;

	border-bottom: 1px solid black;

	padding: 15px 0;

	cursor: pointer;
}

.acc__title:hover .arrow {
	transform: rotate(0deg);
	transition: .2s;
}


footer {
	width: 100%;
	margin-top: 100px;

	padding: 30px;

	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}



@media screen and (min-width: 1023px) {

} 



@media screen and (max-width: 1100px) {
	.content {width: 50%;}
}

@media screen and (max-width: 900px) {
	.content {width: 100%;}
}


@media screen and (max-width: 600px) {
	.content {margin: 30px 0;}

	.tagline {margin-top: 15px; align-items: flex-start;}

	.header, .content, footer {padding: 15px;}

	.tagline p {width: 80%; transform: translateY(-5px);}

	.shared {
		margin: 0px 0;
	}

	.tagline img {
		height: 26px;
	}

	#tag p {
		font-size: 12px;
	}
}



