@charset "utf-8";

:root {
	font-size: 16px;
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #000;
	font-family: "Arial", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

img {
	max-width: 100%;
	height: auto;
}

#wrapper {
	position: relative;
	margin: 0 auto;
	overflow: hidden;
	background: #fff;
}

.container {
	max-width: 1160px;
	margin: 0 auto;
	position: relative;
	padding: 0 20px
}

:is(a:link, a:visited, a:hover, a:active) {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

p {
	margin: 18px 0 18px;
}

h1 {
	position: absolute;
	bottom: 35px;
	left: 0;
	padding: 1rem 1.5rem;
	background-color: #e0001b;
	max-width: 80%;
	color: #fff;
	font-size: 34px;
}

h2 {
	color: #e0001b;
	font-size: 30px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 0 18px;
}

h4 {
	color: #e0001b;
	font-size: 24px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 0 18px;
	color: #fff;
}

h3 {
	font-size: 24px
}

.tasks-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	min-width: 70px;
	height: 70px;
	background-color: #fff;
	border-radius: 50%;
	margin-right: 1rem;
}

ul {
	list-style: none;
	margin: 0 0 0.625rem;
	padding: 0;
}

ul li {
	padding-left: 18px
}

ul li:before {
	content: "\2022";
	float: left;
	margin-left: -18px;
	font-size: 1.375em;
	line-height: 1.2;
	color: #e0001b;
}

header {
	position: relative;
}

.logo {
	margin: 15px 15px 15px auto;
	display: block
}

.flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.key {
	font-size: 20px;
	font-weight: bold;
	color: #e0001b;
	display: flex;
	justify-content: center;
	align-items: center;
}

.key span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	min-width: 70px;
	height: 70px;
	background-color: #fff;
	border-radius: 50%;
	margin-right: 1rem;
	border: 2px solid #e0001b;
}


.flex_box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.cnt {
	width: 48%;
	background-color: #f3f3f3;
	padding: 1rem;
	margin: 16px 0 32px
}

.box {
	position: relative;
}

.box img {
	max-height: calc(800px - 60px);
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
	width: 100%;
}


details {
	position: relative;
}

summary {
	position: relative;
	display: inline-block;
	background-color: #e0001b;
	border: 2px solid #e0001b;
	border-radius: 1.375rem;
	color: #fff;
	padding: 10px 2rem;
	font-weight: bold;
	cursor: pointer;
	margin-top: 3rem;
	transition: all 0.25s ease-in-out;
}

summary:hover {
	background-color: #b2b2b2;
	border-color: #f3f3f3;
}

summary::-webkit-details-marker {
	display: none;
}

.share-popup {
	max-height: 500px;
	padding: 0.5rem 1rem;
	-webkit-box-shadow: 3px 3px 8px 2px rgba(215, 215, 215, 0.3803921569);
	box-shadow: 3px 3px 8px 2px rgba(215, 215, 215, 0.3803921569);
	position: absolute;
	bottom: 40px;
	margin: 0;
	overflow: hidden;
	transition: all 0.3s;
	width: 200px;
	left: -12px;
	border-bottom: 0;
	background: #fff;
}

details[open] .share-popup {
	max-height: 500px;
	opacity: 1;
}

.share-popup a {
	color: #b20000;
	text-decoration: none;
	padding: 6px 10px;
	font-weight: bold;
	display: block;
}

.share-popup a:hover {
	text-decoration: underline;
}

.benefits {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	row-gap: 1rem;

}

.icon {
	width: 31%;
	background: #e0001b;
	padding: 1rem;
	color: #fff;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0;
}

.section {
	position: relative;
	width: 100%;
	margin: 0 auto;
	background-color: #b2b2b2;
	color: #fff;
	padding: 2rem;
	margin-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}

.left,
.right {
	width: 45%;
}

.right {
	width: 50%;
}

.bottom {
	width: 100%;
}

.kontakt {
	display: block;
	width: 175px;
	height: 175px;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
	border-radius: 50%;
	margin-bottom: 1rem;
}

.social {
	width: 20px;
}

a.collapsible-link {
	position: relative;
	display: block;
	width: 100%;
	left: 0;
	margin: 0;
	padding: 4px 0;
	color: #e0001b !important;
	-webkit-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
	display: flex;
	justify-content: flex-start;
	gap: 1rem;
	text-decoration: underline;
}

a.collapsible-link:hover {
	left: 2px;
	-webkit-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
	color: #e0001b;
	text-decoration: underline;
}

.socials {
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-align: center;
	align-items: center;
	column-gap: 1.5rem;
}

.socials a {
	-webkit-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
	color: #e0001b;
}

.socials img {
	display: block;
	width: 25px;
	height: 25px;
	-o-object-fit: contain;
	object-fit: contain;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-filter: invert(0%) sepia(0%) saturate(7500%) hue-rotate(186deg) brightness(91%) contrast(109%);
	filter: invert(0%) sepia(0%) saturate(7500%) hue-rotate(186deg) brightness(91%) contrast(109%);
}

.socials img:hover {
	-webkit-filter: invert(22%) sepia(95%) saturate(6883%) hue-rotate(346deg) brightness(84%) contrast(112%);
	filter: invert(22%) sepia(95%) saturate(6883%) hue-rotate(346deg) brightness(84%) contrast(112%);
}

footer {
	margin: 20px 0 0;
	border-top: 1px solid #e0001b;
	padding: 16px;

}

a.apply {
	color: #fff;
	background: #e0001b;
	border-color: #e0001b;
	display: block;
	font-size: 1rem;
	border-radius: 0;
	margin: 0 auto;
	text-decoration: none;
	border-radius: 1.375rem;
	font-weight: bold;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	width: fit-content;
	padding: 0.5em 1.2em 0.55em;
}

a.apply:hover {
	background: #b2b2b2;
	border-color: #b2b2b2;
}

@media only screen and (max-width: 1159px) {
	#wrapper {
		border: none;
		margin: 0 auto;
	}


	p,
	ul {
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
	}
}

@media only screen and (max-width: 1000px) {
	.icon {
		hyphens: auto;
	}

	.icon br {
		display: none;
	}
}

@media only screen and (max-width: 800px) {
	.icon {
		width: 48%;
	}

	.section,
	.flex_box {

		display: flex;
		flex-direction: column;
	}

	.flex {
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
	}

	.key {
		width: 50%;
	}

	.left,
	.right,
	.bottom,
	.cnt {
		width: 100%;
	}
}

@media only screen and (max-width: 550px) {
	.logo {
		margin: 15px auto;
	}

	.key span,
	.tasks-icon {
		width: 3.125rem;
		height: 3.125rem;
		min-width: 3.125rem;
		min-height: 3.125rem;
	}

	.flex p {
		font-size: 18px;
	}

	.key span img,
	.tasks-icon img {
		width: 1.875rem;
	}

	.key {
		width: 100%;
	}

	.flex {
		margin: 1rem 0 0;
		align-items: flex-start;
		justify-content: flex-start;
	}

	.key {
		justify-content: flex-start;
	}

	.flex p {
		margin: 0 0 1rem;
		padding: 0;
	}

	p {
		margin: 1rem 0;
	}

	ul {
		margin: 0 0 1rem;
	}

	.benefits {
		flex-direction: column;
	}

	.icon {
		width: 100%;
	}

	.container_padding {
		margin: 0;
		padding: 0;
	}

	h1 {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		position: static;
		margin: 0 0;
		padding: 1.25rem;
		font-size: 1.5rem;
		text-align: center;
	}

	h2,
	h3,
	h4 {
		font-size: 1.25rem;
	}
}