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: #646464;
	--cl-black: #1d1d1d;
	--cl-green: #009767;
	--cl-orange: #FF9933;
	--cl-blue: #99CCFF;
	--cl-red: #dc3545;

	--cl-main: #ffffff;

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

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

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

h1 {
	width: auto;
	height: auto;
	font-family: var(--ff-family);
	font-weight: 400;
	font-size: 6vw;
	color: var(--cl-black);
	line-height: 120px;
	letter-spacing: 5px;
	text-align: center;
	z-index: 200;
	position: absolute;
	top: 20px;
	right: 20px;
	bottom: 20px;
	left: 0;
	pointer-events: none;
}

@media screen and (max-width: 575.98px) {
	#header {
		width: 100%;
		height: 156px;
		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%;
	}
}

/* The header ends and the content starts */

/* The content starts */

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

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

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

.headline {
	font-weight: 700;
}

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

#pictures img {
	width: 100%;
	height: auto;
}

#pictures p {
	width: auto;
	height: auto;
	font-family: var(--ff-family);
	font-weight: 300;
	font-size: 13px;
	line-height: 19px;
	letter-spacing: 0;
	color: var(--cl-grey);
	margin: 5px 0 0 0;
	float: right;
}

.videoWrapper {
	width: 100%;
	height: auto;
	padding-top: 56.25%;
	overflow: hidden;
	margin: 0 0 20px 0;
	box-sizing: border-box;
	position: relative;
	float: left;
}

iframe {
	width: 100%;
	height: 100%;
	border: none;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 20px;
}

.pictures_content_big {
	width: 100%;
	height: auto;
	overflow: hidden;
	margin: 0px auto;
	padding: 0 0 20px 0;
	box-sizing: border-box;
	position: relative;
	float: left;
}

.picture_inside {
	pointer-events: none;
}

.bigger {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 10px;
	right: 10px;
	overflow: hidden;
	visibility: hidden;
	cursor: pointer;
	transition-property: transform;
	transition-duration: 0.025s;
	transition-timing-function: ease-in-out;
	display: none;
}

.pictures_content_big:hover .bigger {
	visibility: visible;
}

.bigger:active {
	transform: scale(0.9);
}

#new_project {
	width: 100%;
	height: 174px;
	margin: 80px 0 0 0;
	cursor: pointer;
	position: relative;
	float: right;
}

#new_project:hover .arrow {
	padding-left: 25px;
}

#new_project:hover .img_wrapper {
	opacity: 1;
}

#info {
	width: 218px;
	height: 100%;
	background-color: var(--cl-black);
	position: relative;
	float: left;
}

#info p {
	font-family: var(--ff-family);
	font-weight: 400;
	font-size: 12px;
	color: var(--cl-white);
	line-height: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-align:	left;
	float: left;
	padding: 20px 0px 0px 20px;
}

h3 {
	font-family: var(--ff-family);
	font-weight: 400;
	font-size: 20px;
	color: var(--cl-white);
	line-height: 24px;
	letter-spacing: 1px;
	text-align:	left;
	padding: 0px 0px 0px 20px;
	position: absolute;
	bottom: 54px;
	left: 0px;
	margin: 0 auto;
}

.arrow {
	transition-property: padding-left;
	transition-duration: 0.05s;
	transition-timing-function: ease-in-out;
}

.img_wrapper {
	width: calc(100% - 218px);
	height: 100%;
	background-color: white;
	align-content: center;
	background: url(img/dsf7022.jpg);
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	float: right;
	opacity: 0.8;
	transition-property: opacity;
	transition-duration: 0.0125s;
	transition-timing-function: ease-in-out;
}

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

@media screen and (max-width: 575.98px) {
	#content {
		width: 100%;
		padding: 20px 20px 0 20px;
	}
	#text {
		width: 100%;
	}
	#new_project {
		margin: 20px 0 20px 0;
	}
	.img_wrapper {
		background-size: 120% auto;
		opacity: 1;
	}
}

/* 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 */