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: #ff9933;

	--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-orange);
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
}

h1 {
	width: 100%;
	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: 50%;
	left: 0;
	margin-top: -120px;
	pointer-events: none;
}

p3 {
	display: none;
}

@media screen and (max-width: 575.98px) {
	#header {
		width: 100%;
		height: auto;
		padding: 10px;
	}
	h1 {
		width: 100%;
		height: auto;
		font-size: 12vw;
		text-align: center;
		line-height: 14vw;
		letter-spacing: 2px;
		position: relative;
		top: 0;
		left: 0;
		margin: 0;
		padding: 80px 0 20px 0;
	}
	p3 {
		display: block;
		width: 100%;
		height: auto;
		font-family: var(--ff-family);
		font-weight: 400;
		font-size: 3vw;
		text-align: center;
		letter-spacing: 1px;
		position: relative;
		padding: 0 0 80px 0;
	}
}

/* The header ends and the content starts */

/* The content starts */

#content {
	width: 80%;
	height: auto;
	background-color: var(--cl-white);
	box-sizing: border-box;
	padding: 35px 0 40px 0;
	margin: 0px auto;
	position: relative;
	float: left;
	top: 0;
	right: 10%;
	bottom: 0;
	left: 10%;
	overflow: hidden;
}

.imgWrapper {
	width: 50%;
	height: auto;
	background-color: var(--cl-white);
	box-sizing: border-box;
	margin: 0px auto;
	padding: 5px;
	position: relative;
	float: left;
	overflow: hidden;
	cursor: pointer;
}

.imgWrapper:hover .imgContent img {
	transform: scale(1.025);
	opacity: 0.8;
}

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

#banner {
	width: 40px;
	height: auto;
	position: absolute;
	top: 5px;
	right: 40px;
	z-index: 200;
}

.imgContent {
	width: 100%;
	height: auto;
	padding-top: 56.25%;
	padding-bottom: 0;
	overflow: hidden;
	position: relative;
	float: left;
	margin: 0 auto;
}

.imgContent img {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	transform-origin: center;
	transition-property: transform, opacity;
	transition-duration: 0.05s;
	transition-timing-function: ease-in-out;
}

@media screen and (max-width: 767.98px) {
	#content {
		padding: 30px 0 40px 0;
	}
	.imgWrapper {
		width: 100%;
		padding: 10px 0 10px 0;
	}
	#banner {
		top: 10px;
	}
}

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

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