@charset "utf-8";
:root {
	--primary: #bd0926; 
	--secondary: #111111;
}
*{
	margin: 0px;
	padding: 0px;
	 -webkit-font-smoothing: antialiased;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
img{
	height: auto;
}

.error_box, .success_box{
	padding: 40px;
	margin: 40px;
	border-bottom-left-radius: 50px;
}
.error_box{
	background: #870002;
}
.success_box{
	background: #008d31;
}
.error_box p, .success_box p{
	color: #FFF !important;
}
#header_logo{
	z-index: 999;
	background: rgba(255,255,255,0.5);
	width: 100%;
}
.main_wrap{
	padding-bottom: 60px;
	padding-top: 0px;
}
.box{
	width: 100%;
	padding: 30px 45px 35px 45px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	background: rgba(0,0,0,0.05);
	border-radius: 0px;
}
fancy_head {
	background: var(--primary);
	width: max-content;
	color: #FFF;
	padding: 2px 15px;
	font-weight: 400;
}

/*Header*/
header{
	text-align: center;
	margin-bottom: 25px;
}
#logo{
	width: 100%;
	max-width: 450px;
	margin-bottom: 60px;
	margin-top: 50px;
}
footer i {
	margin-right: 5px;
	min-width: 15px;
}

/*Boni*/
#benefits{
	background: linear-gradient(144deg, rgba(189,9,38,1) 0%, rgba(125,0,0,1) 100%);
	border-bottom: 5px solid #bd0926;
	border-top: 5px solid #bd0926;
	padding-bottom: 60px;
	padding-top: 60px;
}
#benefits p{
	color: #FFF;
}
#benefits i{
	font-size: 80px;
	margin-bottom: 25px;
	color: rgba(255,255,255,1);
}
.benefits_head{
	font-size: 1.3rem;
	font-weight: 600;
}
.benefits_text{
	font-size: 1rem;
	font-weight: 300;
}
.trenner_wh{
	border-top: 2px solid rgba(255,255,255,0.8);
	margin: 5px auto;
	max-width: 30px;
}

/*Schulung Tabs*/
.frage_inner{
	flex-flow: column !important;
	background: rgba(256,256,256,0.5);
	padding: 30px;
	margin: 40px 0px;
}
input.invalid {
	background-color: #ffdddd;
}
.label_wrap {
	margin-bottom:20px;
	display: block;
}
.label_wrap p {
	width: 100%;
	font-weight: 400;
	border-radius: 0px;
	background: var(--primary);
	font-size: 18px;
	width: max-content;
	display: block;
	padding: 3px 15px;;
	color: rgba(255,255,255,1);
}
.label_wrap p.small_text input{
	width: auto;
	display: inline-block;
	margin-bottom: 0px;
}
.label_wrap p.small_text, .label_wrap p.small_text a{
	font-size: 13px;
	line-height: 120%;
	font-weight: 300;
	width: auto;
	color: rgba(0,0,0,0.5);
	background: none;
	padding: 0;
}
.label_wrap input{
	width: 100%;
	padding: 10px;
	display: block;
	font-weight: 300;
	color: rgba(0,0,0,0.6);
	font-style: italic;
	border: none;
	background: rgba(256,256,256,0);
	font-size: 18px;
	border-bottom: 2px dotted rgba(0,0,0,0.2);
}
/* Radio Styles*/
.radio-toolbar {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-bottom: 40px;
	margin-top: 30px;
}

.radio-toolbar input[type="radio"] {
	opacity: 0;
	position: absolute;
	width: 0;
}
.radio-toolbar label {
    display: flex;
	justify-content: center;
	align-items: center;
    background-color: rgba(0,0,0,0.05);
	border-radius: 0px;
	margin-right: 20px;
	margin-bottom: 20px;
    padding: 25px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
	min-height: 260px;
	width: 30%;
	max-width: 350px;
	color: #FFF;
	text-align: center;
	transition: 0.4s;
	opacity: 0.8;
	line-height: 110%;
}
.radio-toolbar label:hover {
	 background-color: rgba(0,0,0,0.1);
	cursor: pointer;
	transform: scale(0.9);
	opacity: 1;
}
.radio-toolbar label span{
	font-weight: 400;
	line-height: 135%;
	color: rgba(0,0,0,0.4);
}
.radio-toolbar label span.title{
	font-weight: 600;
	margin-bottom: 3px;
}
.radio-toolbar input[type="radio"]:focus + label {
}
.radio-toolbar input[type="radio"]:checked + label {
    background-color: var(--primary);
	opacity: 1;
}
.radio-toolbar input[type="radio"]:checked + label span{
	color: #FFF;
}
.icon_button {
  display: block !important;
  font-size: 4.5rem;
  margin-bottom: 15px;
  opacity: 0.8;
}
input.invalid {
  background: rgba(250,20,30,0.4);
  color: rgb(250, 20, 30);
}
input.button{
	padding: 7px 25px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 1rem;
	color: rgba(255,255,255,1);
}
input.button:hover{
	cursor: pointer;
}

/*Flex Layout*/
.flex_wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}
.flex_normal{
	display: flex;
}
.flex_wrap.no_wrap{
	flex-wrap: nowrap;
}
.position_center{
	display: flex;
	align-items: center;
	height: 100%;
	flex-wrap: wrap;
}
.align_center{
	align-items: center;
}
.wrap_reverse{
	flex-wrap: wrap-reverse;	
}
input.hidden{
	display: none;
}

@media(max-width:1500px){
	.wrapper{
		width: 90%;
	}
	.radio-toolbar label{
		width: 45%;
	}
}
@media(max-width:1200px){
	.radio-toolbar label{
		width: 90%;
	}
}

@media(max-width:1024px){
	.box{
		padding: 30px 20px 20px 20px;
	}
	#logo{
		max-width: 300px;
	}
}

@media(max-width:756px){
	.wrapper, .wrapper_small{
		width: 95%;
	}
	.main_wrap {
	  padding-bottom: 30px;
	  padding-top: 0px;
	}
	.box{
		margin-top: 40px;
	}
}

@media(max-width:686px){
	.radio-toolbar{
		justify-content: center;
	}
	.radio-toolbar label{
		font-size: 14px;
		width: 45%;
		margin-bottom: 20px;
}
	#tab_navi{
		margin-top: 20px;
	}
	.send_button{
		margin-bottom: 10px;
	}
	
}

@media(max-width:556px){
	.radio-toolbar label{
		width:100%;
	}
	.einleitung{
		font-size: 20px;
	}
}

