@charset "UTF-8";
/* CSS Document */

:root {
	--color-blue:#0560AB;
	--color-blue-dark:#04446B;
	--color-light-blue:#dbebf5;
	--color-orange:#FD7425;
	--swiper-navigation-size:28px;
}

.kob{
	margin: 0 15px;
	font-size: 16px;
	line-height: 22px;
	--swiper-navigation-size:30px;
}

.kob a:link{
	color: var(--color-blue-dark);
	border-bottom: 1px solid var(--color-blue-dark); 
}

.kob .bold{
	font-weight: bold;
}

.kob .block{
	display: block;
}

.kob .smaller{
	font-size: 0.8em;
}

.kob .border-top{
	border-top: 2px solid var(--color-blue-dark);
}

.kob .border-bottom{
	border-bottom: 2px solid var(--color-blue-dark);
}

.kob .border-bottom.no-last:last-child{
	border-bottom: none;
}

.kob .border-bottom-small{
	border-bottom: 1px solid var(--color-blue-dark);
}

.kob .kobicon{
	height: 70px;
	width: auto;
}

.kob .float-right{
	float: right;
}

.kob .kobicon.small{
	height: 50px;
	width: auto;
}

.kob .kobicon.large{
	height: 120px;
}

.kob .kobicon.xlarge{
	height: 220px;
}

.kob h1{
	font-size: 2.2em;
	font-weight: bold;
	margin-top: 0;
}

.kob .subtitle{
	font-size: 2.0em;
	line-height: 1;
}

.kob h2{
	font-size: 2em;
	font-weight: bold;
}

.kob .uppercase{
	text-transform: uppercase;
}

.kob .no-transform{
	text-transform: none;
}

.kob .white .swiper-button-next:after, 
.kob .white .swiper-button-prev:after{
	color: white;
}

.kob .swiper-button-next:after, 
.kob .swiper-button-prev:after{
	color: var(--color-blue-dark);
}

.kob h3,
.kob .h3{
	font-size: 1.7em;
	text-transform: uppercase;
	color: var(--color-blue-dark);
	font-weight: bold;
}

.kob .bg-blue{
	background: var(--color-blue);
}

.kob .bg-blue-dark{
	background: var(--color-blue-dark);
}

.kob .bg-light-blue{
	background: var(--color-light-blue);
}

.kob .swiper-slide > a{
	color: var(--color-blue-dark);
	border-bottom: none;
}

.kob .swiper-slide.width-auto{
	width: auto;
	padding: 0px 15px;
}

.kob .colorwhite{
	color: #fff;
}

.kob .colorbluedark{
	color: var(--color-blue-dark);
}

.kob .limit-content-75{
	max-width: 75%;
}

.kob .limit-content-75-spc{
	width: 100%;
	max-width: 750px;
	text-align: left;
}

.kob .limit-content-80{
	width: 80%;
}

.kob .center-margin{
	margin-left: auto;
	margin-right: auto;
}

.kob .anchor-parent{
	position: relative;
}

.kob .absanchor{
	position: absolute;
	top: -80px;
}

.kob .wpcf7-form input {width: unset !important}

.kob .width-fix-rest{
	width: calc(100% - 180px);
}

.kob .width-fix{
	width: 180px;
}

.kob .content-width.small{
	max-width: 800px;
}

.kob .relative{
	position: relative;
}

.kob .absolute{
	position: absolute;
}

.kob .no-overflow{
	overflow:hidden;
}

.kob .flex-row{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-box-align: start;
	-moz-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;

	-webkit-box-pack: start;
	-moz-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;

	-webkit-box-direction: normal;
	-moz-box-direction: normal;
	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;

	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;

	-webkit-align-content: flex-start;
	-ms-flex-line-pack: start;
	align-content: flex-start;
}

.kob .flex-column{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-box-pack: start;
	-moz-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;

	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	-webkit-align-content: flex-start;
	-ms-flex-line-pack: start;
	align-content: flex-start;

	-webkit-box-align: start;
	-moz-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.kob .flex-row.nowrap{
	-webkit-flex-wrap:nowrap;
	-ms-flex-wrap:nowrap;
	flex-wrap:nowrap;
	-webkit-flex-flow:nowrap;
	flex-flow:nowrap;
}

.kob .flex-row.justify-space-between {
	-webkit-box-pack: space-between;
	-moz-box-pack: space-between;
	-webkit-justify-content: space-between;
	-ms-flex-pack: space-between;
	justify-content: space-between;
}

.kob .flex-row.justify-space-around {
	-webkit-box-pack: space-around;
	-moz-box-pack: space-around;
	-webkit-justify-content: space-around;
	-ms-flex-pack: space-around;
	justify-content: space-around;
}

.kob .flex-row.justify-content-center{
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.kob .flex-column.justify-content-flex-end,
.kob .flex-row.justify-content-flex-end{
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

.kob .flex-row.justify-content-flex-start{
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}

.kob .flex-row.align-items-stretch,
.kob .flex-column.align-items-stretch{
	-webkit-align-items: center;
	align-items: stretch;
}

.kob .flex-row.align-items-center{
	-webkit-align-items: center;
	align-items: center;
}

.kob .flex-row.align-content-center{
	-webkit-align-content: center;
	align-content: center;
}

.kob .flex-column.align-items-flex-end,
.kob .flex-row.align-items-flex-end{
	-webkit-align-items: center;
	align-items: flex-end;
}

.kob .full-width,
.kob .full-width-image{
	width: 100%;
}

.kob .full-width-image img{
	width: 100%;
	height: auto;
}

.kob .rounded-image img{
	border-radius: 50%;
}

.kob .flex-item-image img{
	margin-bottom: 20px;
}

.kob .logo-footer-item {
	margin: 0 1.5%;
}

.kob .content-padding{
	padding-left: 20px;
	padding-right: 20px;
}


.kob .content-padding-large{
	padding-left: 40px;
	padding-right: 40px;
}


.kob .content-padding-small{
	padding: 10px;
}

.kob .negativ-margin-top{
	margin-top: -20px;
}

.kob .margin-top-small{
	margin-top: 20px;
}

.kob .margin-top-medium{
	margin-top: 40px;
}

.kob .margin-left-small{
	margin-left: 20px;
}

.kob .margin-left-xsmall{
	margin-left: 10px;
}


.kob .padding-left-xsmall{
	padding-left: 10px;
}

.kob .padding-right-small{
	padding-right: 20px;
}

.kob .padding-right-xsmall{
	padding-right: 10px;
}

.kob .padding-left-small{
	padding-left: 20px;
}

.kob .padding-top-xsmall{
	padding-top:10px;
}

.kob .padding-top-small{
	padding-top: 20px;
}

.kob .padding-bottom-xsmall{
	padding-bottom: 10px;
}

.kob .padding-bottom-small{
	padding-bottom: 20px;
}

.kob .padding-top-lsmall{
	padding-top: 30px;
}

.kob .padding-top-default{
	padding-top: 40px;
}

.kob .padding-bottom-default{
	padding-bottom: 40px;
}

.kob .padding-top-medium{
	padding-top: 60px;
}

.kob .padding-right-default{
	padding-right: 40px;
}

.kob .padding-bottom-medium{
	padding-bottom: 60px;
}

.kob .padding-top-large{
	padding-top: 80px;
}

.kob .margin-top-default{
	margin-top: 40px;
}

.kob .margin-bottom-default{
	margin-bottom: 40px;
}

.kob .padding-bottom-large{
	padding-bottom: 80px;
}

.kob .margin-bottom-xsmall{
	margin-bottom: 10px;
}

.kob .margin-bottom-small{
	margin-bottom: 20px;
}

.kob .margin-bottom-medium{
	margin-bottom: 40px;
}

.kob .margin-bottom-large{
	margin-bottom: 80px;
}

.kob .flex-item{
	width: 100%;
}

.kob .center{
	text-align: center;
}

.kob .flex-item-2{
	width: 50%;
}

.kob .flex-item-2-spacing{
	width: 48.3%;
}

.kob .flex-item-2-spacing.flex-item-2-spacing-fx{
	width: calc(50% - 10px);
}

.kob .flex-item-2-spacing.flex-item-2-spacing-fx.small{
	width: calc(50% - 3px);
}

.kob .flex-item-3-spacing{
	width: 28%;
}

.kob .flex-item-3-spacing.spacing-fix{
	width: calc(33.33% - 13px);
}

.kob .flex-negative-margin{
	margin: 0 -12px;
}

.kob .flex-negative-margin .flex-item-3-spacing{
	width: calc(33.33% - 20px);
	margin-left:10px;
	margin-right: 10px;
}

.kob .flex-item-4-spacing{
	width: 22%;
}

.kob .flex-item-4-spacing.flex-item-4-spacing-fx{
	width: calc(25% - 15px);
}

.kob .flex-item-4-spacing img + h3{
	margin-top: 25px;
}

.kob .arrow-holder{
	padding: 0 20px;
	position: relative;
}

.kob .arrow-holder .swiper-button-next{
	right: -10px;
}

.kob .arrow-holder .swiper-button-prev{
	left: -10px;
}

.kob .arrow-holder > .swiper{
	position: static;
}

.kob .flex-item-75{
	width: 75%;
}

.kob .flex-item-60{
	width: 60%;
}

.kob .flex-item-66{
	width: 66%;
}

.kob .flex-item-66-spacing{
	width: 66%;
}

.kob .flex-item-40{
	width: 40%;
}

.kob .flex-item-35{
	width: 35%;
}

.kob .flex-item-50{
	width: 50%;
}

.kob .flex-item-55{
	width: 55%;
}

.kob .flex-item-45 {
	width: 45%;
}

.kob input[type="checkbox"]{
    display: none;
}

.kob .wpcf7-form input[type="checkbox"]{
    display: inline-block;
	width: auto;
}

.kob .wpcf7-list-item{
	margin-left: 0px;
}

.kob .toggle-content {
	max-height: 0;
	overflow: hidden;
}

.kob .toggle-checkbox:checked~.toggle-content {
	max-height: 1500px;
}

.kob ul{
	margin-bottom: 20px;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.kob ul li{
	padding-left: 15px;
	position: relative;
	font-size: 16px;
	line-height: 22px;

}

.kob ul li:before{
	position: absolute;
	left: 0;
	top: 12px;
	height: 5px;
	width: 5px;
	border-radius: 50%;
	background-color: rgb(238,113,3);
	display: block;
	content: '';
}

.kob ul li{
	margin-bottom: 15px;
	padding-left: 20px;
}

.kob ul li:before{
	background: url("img/drop.svg");
	width: 9px;
	height: 14px;
	display: block;
	top:3px;
}

.kob .labelmoreless{
	font-size: 1.7em;
	text-transform: uppercase;
	color: var(--color-blue-dark);
	cursor: pointer;
}

.kob .labelmoreless:after {
	content: '';
	background: url("img/arrow.svg");
	width: 30px;
	height: 15px;
	display: block;
	background-size: 30px 15px;
	margin: 0 auto;
	transition: all 0.2s;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.toggle-checkbox:checked ~ div > .labelmoreless:after {
	transform: rotate(-180deg);
}

.kob .image-three{
	max-width: 50%;
}

.kob .button-holder{
	min-width: 150px;
}

.kob .conent-element{
	max-width: 30%;
}

.kob .kreis-logo{
	width: 150px;
	height: auto;
	margin: 0 auto;
	display: block;
}

.kob .button-kok{
	border: 2px solid var(--color-orange) !important;
	border-radius: 5px;
	padding: 17px;
	font-weight: bold;
	font-size: 1.2em;
	display: inline-block;
	text-align: center;
	color: var(--color-blue-dark);
	background: var(--color-light-blue);
}

.kob .button-kok:hover{
	background: var(--color-orange);
	color: #fff;
}

.kob .header-image{
	min-height: 350px;
}

.kob .vh-image,
.kob .header-image.vh-image{
	height: 40vh;
}

.kob .vh-image.small{
	min-height: 260px;
	height: 55vh;
}

.kob img.object-fit{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kob .fix-right img.object-fit{
	object-position: 100%;
}

.kob .fix-left img.object-fit{
	object-position: 0%;
}

.kob .fix-center img.object-fit{
	object-position: 50%;
}

.kob img.absolute-image{
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
}

.kob .reci-outer{
	max-height: 500px;
	overflow-y: scroll;
	direction:rtl; 
}

.kob .reci-outer .rezicon{
	direction: ltr;
}

.kob ::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.kob ::-webkit-scrollbar-track {
  background: var(--color-blue-dark);
  border-radius: 5px;
}
 
/* Handle */
.kob ::-webkit-scrollbar-thumb {
  background: white; 
  border-radius: 5px;
}

/* Handle on hover */
.kob ::-webkit-scrollbar-thumb:hover {
  background: var(--color-orange); 
}

.kob .tabs-layout input[name="tabs"] { display: none; }                

.kob .tabs-layout input + label {
	display: inline-block;
}

.kob .tabs-layout input ~ .tab {
	display: none;
}

.kob #tab1:checked ~ .tab.content1,
.kob #tab2:checked ~ .tab.content2,
.kob #tab3:checked ~ .tab.content3,
.kob #tab4:checked ~ .tab.content4{
	display: block;
}

.kob .tabbaritem{
	text-transform: uppercase;
	min-width: 20%;
	border: 2px solid var(--color-blue-dark);
	text-align: center;
	border-radius: 5px;
	color: #fff;
	background: var(--color-blue-dark);
	font-size: 1.5em;
	padding: 20px;
	cursor: pointer;
}

.kob #tab1:checked ~ .menu-tabs .tabbaritem-1, 
.kob #tab2:checked ~ .menu-tabs .tabbaritem-2, 
.kob #tab3:checked ~ .menu-tabs .tabbaritem-3, 
.kob #tab4:checked ~ .menu-tabs .tabbaritem-4, 
.kob #tab5:checked ~ .menu-tabs .tabbaritem-5{
	color: var(--color-blue-dark);
	background:transparent;
}

.kob .logo-info{
	width: 180px;
	height: auto;
	margin: 4px 8px 4px 8px;
}

.kob .logo-info.white{
	background: white;	
}

.kob .flex-combo-logo {
	background: white;
	border-radius: 5px;
	padding: 5px;
}

.pum-content .kob{
	padding: 0px;
	margin: 0px;
}

.pum-content .kob .wpcf7-form input,
.pum-content .kob .wpcf7-form textarea{
	width: 100%;
	color: var(--color-blue-dark);
}

.pum-content .kob .wpcf7-form select,
.pum-content .kob .wpcf7-form input[type="number"]{
	min-width: 150px;
	color: var(--color-blue-dark);
}

@media screen and (max-width:991px) {	
	.kob .flex-item-overview-slider.full-width-image{
		padding-bottom: 60%;
	}
	
	.kob .flex-item-overview-slider{
		width: 100%;
	}
	
	.kob{
		font-size: 15px;
		line-height: 21px;
	}
	
	.kob .flex-row.nowrap.mobile-wrap{
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-flex-flow: row wrap;
		flex-flow: row wrap;	
	}
	
	.kob .mobile-full{
		width: 100%;
		max-width: 100%;
		text-align: center;
	}
	
	.kob .image-three{
		margin: 20px auto;
		width: 100%;
		max-width: 100%;
	}
	
	.kob .mobile-full.mobile-center-items > div{
		justify-content: center;
		margin: 20px 0px 20px 0px;
	}
	
	.kob .mobile-full.mobile-center-items > div p{
		text-align: left;
	}
	
	.kob .width-fix {
		width: 100%;
		margin-bottom: 15px;
	}
	
	.kob .width-fix-rest {
		width: 100%;
	}
	
	.kob .swiper-slide.width-auto{
		padding: 0 8px;
	}
}

@media screen and (max-width:700px) {
	
	.kob .content-padding-large{
		padding-left: 15px;
		padding-right: 15px;
	}
	
	.kob .flex-item-2-spacing{
		width: 100%;
	}
	
	.kob .mobile-margin-top{
		margin-top: 20px;
	}
	
	.kob .flex-item-66-spacing,
	.kob .flex-item-3-spacing.spacing-fix{
		width: 100%;
		margin-bottom: 20px;
	}
	
	.kob .flex-item-66-spacing:last-child,
	.kob .flex-item-3-spacing.spacing-fix:last-child{
		margin-bottom: 0;
	}
	
	.kob .tabbaritem{
		padding: 10px;
		font-size: 1em;
		min-width: 22%;
	}
	
	.kob .flex-item-40.reci-item{
		width: 100%;
		margin-bottom:20px;
	}
	
	.kob .flex-item-60.slider-item{
		width: 100%;
	}
	
	.kob .mobile-center{
		text-align: center;
	}
	
	.kob .mobile-center h1{
		margin-bottom: 10px;
		width: 100%;
	}
	
	.kob .mobile-center .button-kok{
		margin: 0 auto;
	}
	
	.kob .labelmoreless{
		font-size: 0.9em;
	}
	
	.kob .labelmoreless:after{
		width: 20px;
		height: 10px;
		background-size: 20px 10px;
		right: 5px;
	}
}

@media screen and (max-width:500px) {
	
	.kob .right-item-slider .padding-right-small{
		padding-right: 2px;
	}
	
	.kob .country-name{
		font-size: 0.8em;
	}
	
	.kob .flex-row.justify-content-flex-end.mobile-center-justify{
		justify-content: center;
	}
	
	.kob .flex-row.justify-content-flex-end.mobile-center-justify .padding-right-small{
		padding-right: 4px;
	}
	
	.kob .kobicon.xlarge{
		height: 160px;
	}
	
	.kob .kobicon.large {
		height: 70px;
	}
	
	.kob .kobicon{
		height: 40px;
	}
	
	.kob .kobicon.small{
		height: 30px
	}
	
	.kob{
		font-size: 14px;
	}
	
	.kob .button-kok{
		padding: 10px;
	}
	
	.kob .h1,
	.kob h1{
		font-size: 1.6em;
		margin-bottom: 3px;
	}
	
	.kob .subtitle{
		font-size: 1.4em;
	}
	
	.kob h3, .kob .h3{
		font-size: 1.3em
	}
	
	.flex-map-image-item.order-1{
		order: 1;
		width: 100%;
	}
	
	.flex-map-image-item.order-0{
		order: 0;
		width: 100%;
	}
	
	.kob .tabbaritem{
		min-width: 48%;
	}
	
	.kob .kreis-logo{
		margin-top: 20px;
	}
}