html {
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

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

a {
	color: var(--cl-black);
	text-underline-position: under;
}

:root {
	--cl-white: #ffffff;
	--cl-grey: #f5f5f5;
	--cl-black: #1d1d1d;
	--cl-green: #009767;
	--cl-orange: #FF9933;
	--cl-blue: #99CCFF;
	--cl-red: #dc3545;

	--cl-main: #99ccff;

	--ff-family: 'Roboto', sans-serif;
	--ff-size: ;
}

/* Everything, that is included in the header */

#header {
	width: 100%;
	height: 100vh;
	margin: 0 auto;
	padding: 20px;
	background-color: var(--cl-blue);
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
}

h1 {
	width: 100%;
	height: auto;
	font-family: var(--ff-family);
	font-weight: 400;
	font-size: 8vw;
	color: var(--cl-black);
	line-height: 160px;
	letter-spacing: 7px;
	text-align: center;
	z-index: 200;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -140px;
	pointer-events: none;
}

#video_wrapper {
	width: 30%;
	height: auto;
	z-index: 100;
	opacity: 0.8;
	transition-property: transform, opacity, z-index;
	transition-duration: 0.0125s;
	transition-timing-function: ease-in-out;
	position: absolute;
	top: 50%;
	left: 35%;
	margin-top: -60px;
	transform: translateY(-50%);
	transform-origin: center;
}

#video_wrapper:hover {
	transform: scale(1.0125) translateY(-50%);
	opacity: 1;
	z-index: 300;
}

#video_wrapper img {
	width: 100%;
	height: auto;
	pointer-events: none;
}

@media screen and (max-width: 575.98px) {
	#header {
		width: 100%;
		height: auto;
		padding: 10px;
	}
	h1 {
		width: 100%;
		height: auto;
		font-size: 8vw;
		text-align: left;
		line-height: 80px;
		letter-spacing: 2px;
		position: relative;
		top: 0;
		left: 0;
		margin: 0;
		padding-top: 56.25%;
	}
	#video_wrapper {
		width: 100%;
		height: auto;
		margin: 10px 0 0 0;
		padding-top: 56.25%;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 1;
		transform: translateY(0)
	}
	#video_wrapper:hover {
		transform: scale(1);
	}
	#video_wrapper img {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		padding-right: 10px;
		padding-left: 10px;
	}
}

/* The header ends and the content starts */

/* The content starts */

#content {
	width: 80%;
	height: auto;
	background-color: var(--cl-white);
	padding: 40px 0 0 0;
}

#text {
	width: 33.333%;
	height: auto;
	text-align: left;
	float: left;
}

#text p {
	font-family: var(--ff-family);
	font-weight: 300;
	font-size: 13px;
	color: var(--cl-black);
	letter-spacing: normal;
	line-height: 19px;
	text-transform: none;
	margin-bottom: 40px;
	padding: 0;
}

.headline {
	font-weight: 700;
}

#pictures {
	width: 66.666%;
	height: auto;
	float: right;
	padding: 0 0 0 20px;
	box-sizing: border-box;
	margin-bottom: 40px;
}

#pictures img {
	width: 100%;
	height: auto;
	pointer-events: none;
}

@media screen and (max-width: 1199.98px) {
	#text {
		width: 75%;
	}
	#pictures {
		width: 100%;
		height: auto;
		float: left;
		padding: 0;
	}
}

@media screen and (max-width: 575.98px) {
	#content {
		width: 100%;
		padding: 20px 20px 0 20px;
	}
	#text {
		width: 100%;
	}
}

/* The content ends */

/* Here starts the footer */

#footer {
	width: 100%;
	height: auto;
	padding: 20px 10% 40px 10%;
	overflow: hidden;
}

h4 {
	width: auto;
	height: auto;
	font-family: var(--ff-family);
	font-weight: 400;
	font-size: 20px;
	color: var(--cl-black);
	line-height: 16px;
	letter-spacing: 1px;
	text-align:	left;
	float: left;
	margin: 0 auto;
	padding: 0;
}

.back {
	width: auto;
	height: auto;
	position: relative;
	cursor: pointer;
}

.back:hover .arrow2 {
	margin-top: -5px;
}

.arrow2 {
	transform: rotate(-90deg);
	transition-property: margin-top;
	transition-duration: 0.05s;
	transition-timing-function: ease-in-out;
	margin: 0 5px 0 -10px;
	padding: 0;
}

p2 {
	width: 60%;
	height: auto;
	font-family: var(--ff-family);
	font-weight: 300;
	font-size: 12px;
	color: var(--cl-black);
	line-height: 16px;
	letter-spacing: 1px;
	text-align:	right;
	float: right;
}

@media screen and (max-width: 767.98px) {
	p2 {
		width: 100%;
		text-align: left;
		float: left;
		margin-top: 20px;
	}
}

@media screen and (max-width: 575.98px) {
	#footer {
		padding: 20px;
	}
}
	

/* Here ends the footer */