@font-face {
	font-family: 'Montserrat';
	src: url('../webfonts/Montserrat-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../webfonts/Montserrat-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}

:root {
	--primary-blue: #5DA8FF;
	--primary-light-blue: #b7d1ff;
	--primary-grey: #5d646b;
	--primary-light-grey: #dadada;
	--primary-blue-violet: #4411cf;
	--primary-violet: #7b18b4;
	--primary-lilac: #8894ff;
	--primary-green: #159c1b;
	--text-color-dark: #303651;
	--text-color-neutral: #b2b9d1;
	--text-color-bright: #e5e5e5;
	--bg-dark-blue: #101218;
	--bg-light-blue: #adc2e7;
	--bg-grey: #414f5c;
	--bg-dark-grey: #1d242a;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	word-wrap: break-word;
	max-width: 100%;
}

ol,
ul {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
}

body {
	line-height: 1.1;
	font-family: 'Montserrat', sans-serif;
	background: var(--bg-dark-blue);
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Basic */

@-ms-viewport {
	width: device-width;
}

html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

main {
	padding-top: 3em;
}

strong,
b {
	font-weight: 600;
}

em,
i {
	font-style: italic;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--text-color-bright);
	font-weight: 800;
	letter-spacing: 0.225em;
	line-height: 1em;
	margin: 0 0 1em 0;
	text-transform: uppercase;
	text-align: center;
}

p a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
	text-decoration: none;
}

.align-left {
	text-align: left;
}

.align-center {
	text-align: center;
}

.align-right {
	text-align: right;
}

.custom-hr {
	width: 60%;
	margin: 1.3em auto;
}


/* Utilities */

.gradient-text {
	background-image: linear-gradient(90.65deg,
			var(--primary-blue-violet) 41.17%,
			var(--primary-violet) 92.13%);
	background-size: 100%;
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
	pointer-events: none;
}

.page-section {
	margin: 0 auto;
	padding: 2.5em 0;
	max-width: 90%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-size: auto;
}

@media (max-width: 1200px) {
	.page-section {
		padding-top: 3.25em;
	}
}

.page-section>h2 {
	padding: 3em 0 1em;
	font-size: 3em;
}

.page-section>h3 {
	font-size: 1.9em;
}

@media (max-width: 1200px) {
	.page-section>h2 {
		font-size: 1.8em;
		margin: 0 auto;
		padding: 1.2em 1.2em;
	}

	h3 {
		font-size: 1.5em;
		margin: 0 auto;
		padding: 1em 1em;
	}
}

@media (max-width: 768px) {
	.page-section>h2 {
		font-size: 1.6em;
		margin: 0 auto;
		padding: 1.1em 1.1em;
	}

	h3 {
		font-size: 1.2em;
		margin: 0 auto;
		padding: 1em 1em;
	}
}

.spacer {
	height: 5em;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 2s ease forwards;
	opacity: 0;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.7);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.fade-in {
	opacity: 0;
	animation: fadeIn 2s ease forwards;
}

h2.fade-in {
	animation-delay: 0s;
}

p.fade-in {
	animation-delay: 1s;
}

@keyframes AnimateOnLoad {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.animate-on-load {
	animation: AnimateOnLoad 5s;
	opacity: 0;
}

.text-left {
	text-align: left;
}

.break-mobile {
	display: none;
}

@media screen and (max-width: 768px) {
	.break-mobile {
		display: block;
	}
}

/* Page Wrapper + Banner */

/* Page Wrapper */
#page-wrapper {
	transition: opacity 0.5s ease;
	opacity: 1;
	padding-top: 3em;
	background-image: url("../../images/banner.jpg");
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 0;
	height: 100vh;
}

#page-wrapper::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--bg-dark-blue);
	opacity: 0.5;
	z-index: 1;
}

/* Banner */

#banner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	cursor: default;
	height: 100vh;
	min-height: 35em;
	overflow: hidden;
	position: relative;
	text-align: center;
	z-index: 9999;
}

#banner h2 {
	display: inline-block;
	font-size: 1.75em;
	opacity: 1;
	padding: 0.35em 1em;
	position: relative;
}

#banner p {
	letter-spacing: 0.225em;
	text-transform: uppercase;
}

#banner p a {
	color: var(--text-color-bright);
}

#banner .more {
	border: none;
	bottom: 0;
	color: var(--text-color-bright);
	font-size: 0.8em;
	font-weight: 600;
	height: 8.5em;
	left: 50%;
	letter-spacing: 0.225em;
	margin-left: -8.5em;
	opacity: 1;
	outline: 0;
	padding-left: 0.225em;
	position: absolute;
	text-align: center;
	text-transform: uppercase;
	width: 16em;
}

@media screen and (max-width: 768px) {

	#banner {
		padding: 7em 3em 5em 3em;
		height: 100vh;
		min-height: 0;
	}

	#banner .more {
		display: none;
	}

}

/* Header + Menu */

/* Header */

.brand-info {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
}

#top-bar {
	transition: background-color 0.2s ease;
	background: var(--bg-dark-grey);
	height: 3em;
	left: 0;
	line-height: 3em;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10000;
	display: flex;
	align-items: center;
	transform: translateY(0);
}

#top-bar h1 {
	transition: opacity 0.2s ease;
	height: inherit;
	left: 1.25em;
	line-height: inherit;
	position: absolute;
	top: 0;
	display: flex;
	align-items: center;
}

#top-bar h1 a {
	border: 0;
	height: inherit;
	margin-left: 2em;
	line-height: inherit;
}

#top-bar .brand-info img {
	max-height: 80%;
	margin-right: 1em;
	position: absolute;
	cursor: pointer;
}

@media screen and (max-width: 768px) {

	#top-bar h1 a {
		font-size: 0.8em;
		margin-left: 2em;
	}

	#top-bar .brand-info img {
		max-height: 70%;
		margin-right: 1em;
		position: absolute;
	}
}

@media screen and (max-width: 460px) {

	#top-bar .brand-info a {
		opacity: 0;
	}

	#top-bar .brand-info img {
		max-height: 70%;
		margin-right: 1em;
		position: absolute;
	}
}

#top-bar nav {
	height: inherit;
	line-height: inherit;
	position: absolute;
	right: 0;
	top: 0;
}

#top-bar nav>ul {
	list-style: none;
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

#top-bar nav>ul>li {
	display: inline-block;
	padding: 0;
}

#top-bar nav>ul>li>a {
	border: 0;
	color: var(--text-color-bright);
	display: block;
	font-size: 0.8em;
	letter-spacing: 0.225em;
	padding: 0 1.5em;
	text-transform: uppercase;
}

#top-bar nav>ul>li>a.menuToggle {
	outline: 0;
	position: relative;
}

#top-bar nav>ul>li>a.menuToggle:after {
	background-image: url("images/hamburger.svg");
	background-position: right center;
	background-repeat: no-repeat;
	content: '';
	display: inline-block;
	height: 3.75em;
	vertical-align: top;
	width: 2em;
}

#top-bar nav>ul>li>a.menuToggle.active:after {
	background-image: url("images/close.svg");
}


/* Menu */

@keyframes slideIn {
	from {
		transform: translateX(80px) scale(0.8);
		opacity: 0;
	}

	to {
		transform: translateX(0) scale(1);
		opacity: 1;
	}
}

@keyframes slideOut {
	from {
		transform: scale(1);
		opacity: 1;
	}

	to {
		transform: scale(0.8);
		opacity: 0;
	}
}

#menu {
	transform: scale(0.8);
	background: var(--bg-grey);
	color: var(--text-color-bright);
	max-width: 80%;
	margin-top: 0;
	border-radius: 0.5em;
	padding: 2em;
	position: fixed;
	width: 20em;
	z-index: 10002;
	opacity: 0;
	animation-duration: 0.5s;
	animation-timing-function: ease-in-out;
}

#menu.active {
	animation-name: slideIn;
	opacity: 1;
}

#menu:not(.active) {
	animation-name: slideOut;
	opacity: 0;
}

#menu ul {
	list-style: none;
	padding: 0;
}

#menu ul>li {
	margin: 0.5em 0 0 0;
	padding: 0.5em 0 0 0;
	transition: all 0.3s ease-in-out;
}

#menu ul>li:hover {
	color: var(--primary-blue);
}

#menu ul>li>a {
	border: 0;
	color: inherit;
	display: block;
	font-size: 0.8em;
	letter-spacing: 0.225em;
	outline: 0;
	text-decoration: none;
	text-transform: uppercase;
}

@media screen and (max-width: 768px) {

	#menu ul>li>a {
		line-height: 3em;
	}

}

#menu.active {
	transform: translateX(0);
	right: 0;
}

@media screen and (max-width: 768px) {

	#menu {
		padding: 3em 1.5em;
	}

}

/* Website Info */

.website-info {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.info-container {
	opacity: 0;
	transform: translateY(20px);
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2em;
	padding: 1em;
	animation: fade-in 1s ease-in-out forwards;
}

.info-container:nth-child(1) {
	animation-delay: 0.5s;
}

.info-container:nth-child(2) {
	animation-delay: 1s;
}

.info-container:nth-child(3) {
	animation-delay: 1.5s;
}

.info-container:nth-child(4) {
	animation-delay: 2s;
}

.info-card {
	display: flex;
	flex-direction: column;
	position: relative;
	gap: 1em;
	width: 100%;
	max-width: 22em;
	min-height: 23.75em;
	border-radius: 0.5em;
	padding: 3em 2em;
	border: 0.0625em solid var(--primary-blue);
	background: var(--bg-light-blue);
	text-align: center;
	transition: transform 0.3s ease-in-out;
}

.info-card:hover {
	transform: scale(1.05);
}

.info-card>h3 {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 700;
	text-align: center;
	color: var(--text-color-dark);
}

.info-card--primary {
	background: var(--bg-light-blue);
}

.info-card_logo {
	width: auto;
	height: 6.25em;
}

.info-card>.divider {
	border: 0.0625em solid #E6E8F0;
}

.info-card>ul {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.info-card>ul>li {
	position: relative;
	font-weight: 500;
	list-style-type: none;
	font-size: 1em;
	color: var(--text-color-dark);
}

.info-card>ul>li:before {
	content: "";
	position: absolute;
	top: 0.125em;
	left: -2em;
	width: 2em;
	height: 2em;
	background-repeat: no-repeat;
}

/* KPIs */
@keyframes slide-in {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fade-in {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

#slider {
	box-sizing: border-box;
	display: block;
}

.info-slide {
	width: 95%;
	position: relative;
	max-width: 50em;
	margin: 3em auto 0;
	background-color: var(--bg-light-blue);
	padding: 1.5em;
	border-radius: 0.5em;
	height: 400px;
	transition: all 0.3s;
}

@media screen and (max-width: 992px) {
	.info-slide {
		max-width: 680px;
		height: 400px;
	}
}

@media screen and (max-width: 768px) {
	.info-slide {
		min-height: 500px;
		height: auto;
		margin: 7em auto 0;
	}
}

@media screen and (max-height: 500px) and (min-width: 992px) {
	.info-slide {
		height: 350px;
	}
}

.info-slide--wrp {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	box-sizing: content-box;
	transform: translate3d(0, 0, 0);
}

/* Text-Container Animation */
.info-slide--item {
	opacity: 0;
	animation: fade-in 1s ease-in-out forwards 0.5s;
}

/* Info-Slides Animation */
.info-slide {
	opacity: 0;
	animation: slide-in 1s ease-in-out forwards;
}

.info-slide:nth-child(1) {
	animation-delay: 0.5s;
}

.info-slide:nth-child(2) {
	animation-delay: 1s;
}

.info-slide:nth-child(3) {
	animation-delay: 1.5s;
}

.info-slide--item {
	display: flex;
	align-items: center;
	margin: 6em 0;
}

@media screen and (max-width: 768px) {
	.info-slide--item {
		flex-direction: column;
	}
}

.info-slide--img {
	width: 300px;
	flex-shrink: 0;
	height: 300px;
	box-shadow: 4px 13px 30px 1px var(--bg-dark-grey);
	border-radius: 0.5em;
	transform: translateX(-80px);
	overflow: hidden;
}

.info-slide--img:hover img {
	transform: scale(1.2);
}

.info-slide--img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
	.info-slide--img {
		transform: translateY(-50%);
		width: 90%;
	}
}

@media screen and (max-width: 576px) {
	.info-slide--img {
		width: 95%;
	}
}

@media screen and (max-height: 500px) and (min-width: 992px) {
	.info-slide--img {
		height: 270px;
	}
}

.info-slide--img:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 0.5em;
	opacity: 0.8;
}

.info-slide--content {
	padding-right: 1.75em;
	transition-delay: 0.3s;
	opacity: 1;
	transform: none;
	transition: all 0.4s;
}

@media screen and (max-width: 768px) {
	.info-slide--content {
		margin-top: -5em;
		text-align: center;
		padding: 0 30px;
	}
}

@media screen and (max-width: 576px) {
	.info-slide--content {
		padding: 0;
	}
}

.info-slide--header,
.info-slide--title {
	font-size: 1.8em;
	font-weight: 700;
	color: var(--text-color-dark);
	margin-bottom: 1.2em;
}

.info-slide--text {
	color: var(--text-color-dark);
	margin-bottom: 2em;
	line-height: 1.2em;
	font-size: 1.1em;
}

.info-slide--button {
	color: var(--text-color-dark);
	font-weight: 600;
	display: inline-flex;
	background-image: linear-gradient(147deg, var(--primary-blue), var(--primary-lilac) 74%);
	padding: 0.6em 1.8em;
	border-radius: 0.5em;
	transition: 1000ms;
	transform: translateY(0);
	box-shadow: 0px 14px 80px var(--bg-grey);
	text-decoration: none;
	justify-content: center;
	text-align: center;
	letter-spacing: 1px;
	text-align: uppercase;
	font-size: 1.3em;
}

.info-slide--button:hover {
	transition: 1000ms;
	padding: 1em 2.125em;
	transform: translateY(-0px);
}

/* Gallery */

.gallery-section {
	margin: 0 auto;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1em;
}

.image {
	display: flex;
	align-items: stretch;
	opacity: 0;
	animation: fade-in 1s ease-in-out forwards 0.5s;
}

.image:nth-child(1) {
	animation: fade-in 1s ease-in-out forwards 0.3s;
}

.image:nth-child(2) {
	animation: fade-in 1s ease-in-out forwards 0.5s;
}

.image:nth-child(3) {
	animation: fade-in 1s ease-in-out forwards 0.7s;
}

.image:nth-child(4) {
	animation: fade-in 1s ease-in-out forwards 0.9s;
}

.image:nth-child(5) {
	animation: fade-in 1s ease-in-out forwards 1.1s;
}

.image:nth-child(6) {
	animation: fade-in 1s ease-in-out forwards 1.3s;
}

.image img {
	border-radius: 0.8em;
	align-items: stretch;
	object-fit: cover;
	transition: transform 0.5s ease;
	display: block;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 1200px) {
	.gallery img {
		max-width: calc(70% - 10px);
		/* Adjust the maximum width */
	}
}

@media screen and (max-width: 992px) {
	.gallery img {
		max-width: calc(100% - 10px);
		/* Adjust the maximum width */
	}

	.gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}

.gallery img:hover {
	transform: scale(1.05);
}

/* Experience */

.container {
	display: flex;
	align-items: center;
	max-width: 70em;
	margin: 0 auto;
	text-align: center;
}

.image-column {
	flex: 50%;
	padding: 0.5em;
}

.image-column img {
	width: 80%;
	height: auto;
	border-radius: 10px;
	opacity: 0;
	animation: slide-in 1s ease-in-out forwards 0.5s;
}

.text-column {
	font-size: 0.8em;
	flex: 50%;
	padding: 0.5em;
	color: var(--text-color-neutral);
}

.text-column>ul {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1em;
	padding: 1.5em 0em;
}

.text-column>ul>li {
	position: relative;
	font-weight: 500;
	list-style-type: none;
	font-size: 0.875rem;
	color: var(--text-color-neutral);
}

.text-column>h3 {
	font-size: 1.9em;
}

@media screen and (max-width: 768px) {
	.container {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
		text-align: center;
	}

	hr {
		width: 50%;
		margin: 0 auto;
		margin-top: 1.3em;
	}
}

.experience-element {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 1.2em;
}

.experience-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 1.2em;
}

.experience-number {
	font-size: 3em;
	font-weight: 600;
	line-height: 1;
}

.experience-text {
	font-size: 1em;
	font-weight: 400;
	text-align: center;
}

@keyframes count {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media screen and (max-width: 768px) {
	.experience-element {
		flex-direction: column;
		text-align: center;
	}

	.experience-item {
		margin-bottom: 1.2em;
	}

	.experience-number {
		font-size: 2.2em;
	}
}


/* Contact */
/* Contact Button */

.contact-wrapper--button {
	position: fixed;
	right: 0;
	bottom: 100px;
	transform: translateX(100%);
	transition: transform .4s ease-in-out;
	z-index: 10003;
}

.contact-wrapper--button.contact-wrapper--open {
	transform: translateX(-10px);
}

.contact-panel {
	background-color: var(--bg-grey);
	border: 1px solid var(--bg-light-blue);
	max-width: 500px;
	border-radius: 4px;
	width: 100%;
	position: relative;
}

.contact-panel ul {
	list-style-type: none;
	padding: 15px;
	margin: 0;
	text-align: center;
}

.contact-panel ul li {
	margin: 0 5px;
	display: inline-block;
}

.contact-panel ul li a {
	border-radius: 50%;
	height: 50px;
	width: 50px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	transition: box-shadow .4s;
}

.contact-panel ul li a:hover {
	box-shadow: 0 2px 5px 1px var(--bg-light-blue);
}

.contact-panel ul li a img {
	height: 50%;
	width: auto;
}

.contact-panel__header {
	position: relative;
	color: var(--bg-light-blue);
	font-size: 21px;
	font-weight: 600;
	line-height: 16px;
	padding: 15px;
	text-align: center;
	margin: 0;
}

.contact-close {
	border: 0;
	background: none;
	color: var(--text-color-bright);
	position: absolute;
	top: 10px;
	right: 10px;
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.contact-close:focus {
	outline: none;
}

.contact-close:before,
.contact-close:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 2px;
	background-color: var(--text-color-bright);
	transform-origin: center;
}

.contact-close:before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.contact-close:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-close:hover::before,
.contact-close:hover::after {
	background-color: var(--bg-light-blue);
}

.contact-button {
	border: 0;
	background-color: var(--bg-light-blue);
	color: var(--text-color-dark);
	cursor: pointer;
	padding: 8px 16px;
	transition: background-color .4s ease-in-out;
	font-size: 1.1em;
	font-weight: 600;
	line-height: 20px;
	position: fixed;
	bottom: 1.8em;
	right: 1em;
	border-radius: 4px;
	z-index: 10002;
}

.contact-button:hover {
	background-color: var(--primary-lilac);
}

@media screen and (max-width: 961px) {
	.contact-wrapper--button {
		display: none;
	}
}

/* Contact Form */

.contact-wrapper--form {
	background: var(--bg-grey);
	border-radius: 15px;
	width: 50%;
}

.screen-body {
	display: flex;
}

.screen-body-item {
	flex: 1;
	padding: 50px;
}

.screen-body-item:last-child {
	padding-left: 0;
}

.screen-body-item:first-child {
	padding-right: 0;
}

.screen-body-item.left {
	display: flex;
	flex-direction: column;
}

.contact-form-title {
	display: flex;
	flex-direction: column;
	position: relative;
	color: var(--bg-light-blue);
	font-size: 1.8em;
	font-weight: 600;
	pointer-events: none;
}

.contact-form-contact {
	margin-top: auto;
	font-size: 0.8em;
	color: var(--text-color-neutral);
}

.contact-form-contact-info:hover {
	color: var(--primary-blue);
}

.contact-form-form-group {
	margin-bottom: 15px;
}

.contact-form-form-group.message {
	margin-top: 40px;
}

.contact-form-form-group.buttons {
	margin-bottom: 0;
	text-align: right;
}

.contact-form-form-control {
	width: 100%;
	padding: 0.6em 0;
	background: none;
	border: none;
	border-bottom: 1px solid var(--primary-light-grey);
	color: var(--primary-light-grey);
	font-size: 1em;
	text-transform: uppercase;
	outline: none;
	transition: border-color .2s;
}

.contact-form-form-control.message {
	font-size: 1em;
	resize: none;
	word-wrap: break-word;
	overflow: hidden;
	height: auto;
}

.contact-form-form-group>p {
	color: var(--primary-light-grey);
	font-size: 0.8em;
	margin: 0;
	letter-spacing: normal;
	outline: none;
	font-weight: 600;
	text-align: start;
}

.char-count {
	font-size: 0.8em;
	color: var(--primary-light-grey);
	margin-top: 0.2em;
}

.contact-form-form-control::placeholder {
	color: var(--primary-light-grey);
}

.contact-form-form-control:focus {
	border-bottom-color: var(--primary-blue);
}

.contact-form-form-control:focus::placeholder {
	color: var(--primary-blue);
	opacity: 0.7;
}

.contact-form-form-button {
	padding-top: 1.2em;
	background: none;
	border: none;
	color: var(--bg-light-blue);
	font-size: 1em;
	cursor: pointer;
	outline: none;
}

.contact-form-form-button:hover {
	color: var(--primary-green);
}

@media screen and (max-width: 1200px) {
	.screen-body {
		flex-direction: column;
		padding: 2em;
	}

	.contact-form-form-control {
		font-size: 0.8em;
	}

	.screen-body-item.left {
		margin-bottom: 30px;
	}

	.screen-body-item {
		padding: 0;
	}

	.contact-wrapper--form {
		width: 80%;
	}

	.contact-form-contact {
		margin-top: 10px;
	}
}

@media screen and (min-width: 1200px) {
	.screen-body {
		padding: 2em;
	}

	.contact-form-form-control {
		font-size: 0.8em;
	}


	.screen-body-item {
		padding: 0;
	}

	.contact-wrapper--form {
		width: 50;
	}

	.contact-form-contact {
		margin-top: 10px;
	}
}


/* Privacy */

.privacy-wrapper {
	background: var(--bg-grey);
	border-radius: 15px;
}

.privacy-wrapper-title {
	display: flex;
	flex-direction: column;
	position: relative;
	color: var(--bg-light-blue);
	font-size: 1.8em;
	font-weight: 600;
	pointer-events: none;
}

.privacy-contact {
	margin-top: auto;
	font-size: 0.8em;
	color: var(--text-color-neutral);
}

.privacy-contact-info:hover {
	color: var(--primary-blue);
}

.privacy-info>p {
	font-weight: 400;
	line-height: 1.4;
}

.privacy-info>h2 {
	margin-top: 2em;
}

.privacy-info>h1 {
	margin-top: 2em;
}

.privacy-info:hover {
	color: var(--primary-blue);
}

@media screen and (max-width: 1200px) {
	.privacy-wrapper {
		width: 90%;
	}
}

@media screen and (min-width: 1200px) {
	.privacy-wrapper {
		width: 70%;
	}
}



/* Impressum */

.impressum-wrapper {
	background: var(--bg-grey);
	border-radius: 15px;
}

.impressum-wrapper-title {
	display: flex;
	flex-direction: column;
	position: relative;
	color: var(--bg-light-blue);
	font-size: 1.8em;
	font-weight: 600;
	pointer-events: none;
}

.impressum-contact {
	margin-top: auto;
	font-size: 0.8em;
	color: var(--text-color-neutral);
}

.impressum-contact-info:hover {
	color: var(--primary-blue);
}

.impressum-info>p {
	font-weight: 400;
	line-height: 1.4;
}

.impressum-info>h2 {
	margin-top: 2em;
}

.impressum-info>h1 {
	margin-top: 2em;
}

.impressum-info:hover {
	color: var(--primary-blue);
}


@media screen and (max-width: 1200px) {
	.impressum-wrapper {
		width: 90%;
	}
}

@media screen and (min-width: 1200px) {
	.impressum-wrapper {
		width: 70%;
	}
}




/* Footer */

#footer {
	padding: 6em 0 4em 0;
	background-color: var(--bg-dark-grey);
	text-align: center;
}

#footer .brand img:hover {
	filter: brightness(1.4);
}

#footer .custom-hr {
	color: var(--text-color-neutral);
	opacity: 0.5;
}



/* Legal */

#footer .copyright {
	color: var(--text-color-neutral);
	font-size: 0.8em;
	letter-spacing: 0.225em;
	list-style: none;
	padding: 0;
	text-transform: uppercase;
}

#footer .copyright li {
	border-left: solid 1px var(--text-color-neutral);
	display: inline-block;
	line-height: 1em;
	margin-left: 1em;
	padding-left: 1em;
}

#footer .copyright li:first-child {
	border-left: 0;
	margin-left: 0;
	padding-left: 0;
	pointer-events: none;
}

#footer .copyright li a {
	color: inherit;
}

#footer .copyright li a:hover {
	color: var(--text-color-bright);
}

#footer .social {
	color: var(--text-color-neutral);
	list-style: none;
}

#footer .social li {
	display: inline-block;
	line-height: 1em;
	margin: 1em;
}

#footer .social img:hover {
	filter: brightness(1.4);
}