/* //////////////////////////////////// ALLGEMEIN //////////////////////////////////// */
html {
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}
body{
	font-family: "early-sans-variable", sans-serif;
	font-weight: 400;
	background-color: #000;
	color: #fff;
	margin: 0px;
	line-height: 1.4;
	font-size: 1.25rem;
	scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 33px;
	color: #fff;
	margin: 0 0 20px;	
	line-height: 1.2;
}
div p{
	margin: 0px 0px 15px 0px;
}
div p:last-child, p:last-child{
	margin: 0 auto;
}
img, svg, video{
	max-width: 100%;
	height:auto;
}
a{
	color: #fff;
	text-decoration: none;
}
a:active, a:hover {
	color: #2F99D2;
}
ul{
	padding-left: 20px;
	margin: 0 auto 15px;
}
.no_scroll{
	height: 100vh;
	overflow: hidden;
}
.textcenter{
	text-align: center;
}
/* //////////////////////////////////// CONTENT //////////////////////////////////// */
.w1280{
	max-width: 1280px;
	margin: 0 auto;
	position:relative;
	padding: 0px 60px;
}
.w1024{
	max-width:1024px;
	margin:0 auto;
	position:relative;
}
.w960{
	max-width:960px;
	margin:0 auto;
	position:relative;
}
.w800{
	max-width:800px;
	margin:0 auto;
	position:relative;
}
.w700{
	max-width:700px;
	margin:0 auto;
	position:relative;
}
.margin_oben{
	margin-top: 80px;
}
.margin_unten{
	margin-bottom: 80px;
}
.margin_unten_half{
	margin-bottom: 50px;
}
main{
	position: relative;
	width:1280px;
	max-width: 100%;
	margin: 0 auto;
	height: 100%;
	background-position: center top;
	background-repeat: repeat-y;
	background-size: 1160px;
	background-image: url('https://www.ombrax.com/wp-content/themes/effekt/images/bg.svg');
}
.fullwidth{
	width:100%;
	background-repeat:no-repeat;
	background-size:cover;
	background-position: center;
	position: relative;
}
.bg_padding{
	padding: 100px 0;
}


/* //////////////////////////////////// Header //////////////////////////////////// */
.header{
	position:relative;
	padding: 30px 60px 80px;
}
.logo {
	width: 300px;
}
.logo a{
	display: block;
}
.menu {
	width: auto;
	position: fixed;
	right: -450px;
	height: 100vh;
	z-index: 10;
	background-color: #000;
	overflow: scroll;
	padding: 0 70px;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}
.slide_in{
	right: 0;
}
.inner_menu{
	display: block;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding-top: 60px;
}
.nav-menu{
	list-style: none;
	padding: 0;
	margin: 0 auto;
}
.nav-menu li{
	display: block;
	margin: 0 auto 20px;
}
.nav-menu li:last-child{
	margin: 0 auto;
}
.nav-menu li a{
	font-size: 2rem;
	color: #fff;
	line-height: 1.5;
}
.nav-menu li a:hover{
	color: #2F99D2;	
}

.open_menu{
	position: absolute;
	right: 60px;
	top: 30px;
	z-index: 11;
	width: 50px;
	height: 18px;
	vertical-align: middle;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
	display: inline-block;
	vertical-align: middle;
}
.open_menu:hover{
	cursor: pointer;
}
.open_menu span{
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #ffffff;
	border-radius: 1px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
.open_menu:hover span{
	background-color: #ffffff;
}
.open_menu span:nth-child(1){
	top: 0px;
}
.open_menu span:nth-child(2), .open_menu span:nth-child(3){
	bottom: 8px;
}
.open_menu span:nth-child(4){
	bottom: 0px;
}
.open_menu.open span:nth-child(1){
	top: 18px;
	width: 0%;
	left: 50%;
}
.open_menu.open span:nth-child(2){
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	bottom: 8px;
	width: 70%;
	left: 6px;
}
.open_menu.open span:nth-child(3){
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	bottom: 8px;
	width: 70%;
	left: 6px;
}
.open_menu.open span:nth-child(4){
	top: 18px;
	width: 0%;
	left: 50%;
}
#languages {
	position: relative;
	line-height: 1;
	margin-top: 60px;
}
#languages a{
	display: inline-block;
	vertical-align: middle;
	text-transform: uppercase;
	font-size: 1.15rem;
	color: #fff;
	line-height: 1;
	margin-right: 10px;
}
#languages a:hover{
	color: #2F99D2;
}
#languages a.active_lang{
	display: none;
}

/* //////////////////////////////////// Button //////////////////////////////////// */
.button{
	display: inline-block;
	width: auto;
	position: relative;
	cursor: pointer;
}
.button a, .button span{
	display: block;
	padding: 10px 20px;
	font-size: 1rem;
}
.button a:hover, .button span:hover{
	
}


/* //////////////////////////////////// Inhalt //////////////////////////////////// */
/* TITEL GROSS - TEXT */
.hometitel{
	text-align: right;
	font-size: 70px;
	line-height: 1.1;
	font-weight: 300;
}
.hometext{
	text-align: right;
	max-width: 50%;
	float: right;
}

/* TITEL - TEXT - LINK */
.textblock{
	padding-right: 10%;
}
.blocktitel{
	font-size:33px;
	margin-bottom: 40px;
}
.blocklink{
	padding-top: 40px;
}
.buttonlink{
	display: inline-block;
	padding: 13px 20px 10px;
	background-color: #1B2429;
	line-height: 1;
	text-transform: uppercase;
	font-size: 16px;
	text-align: center;
}

/* TEXT - LINK */
.textbig{
	font-size:33px;
}

/* ICON BOX */
.icon{
	width:70px;
	height: auto;
	margin-bottom: 60px;
	display: block;
}
.infoboxtitel{
	font-size:33px;
	margin-bottom: 40px;
}
.grid {
}
.gutter-sizer{
	width: 80px;
}
.grid-item {
	width: calc(50% - 40px);
	margin-bottom: 40px;
	background-color: #1B2429;
	padding: 25px;
}
.icontext{
	font-size:24px;
}
.iconbox_marg{
	margin-top: 60px;
}
.grid-item img{
	display: block;
}


/* ICON BOX MIT TITEL */
.icontitel{
	font-size:24px;
	margin-bottom: 10px;
}
.icontext2{
	font-size:16px;
}

/* ICON BOX MIT BILD */
.iconbild{
	width:90px;
	height: 90px;
	margin-bottom: 60px;
	display: block;
	-webkit-border-radius: 45px 45px 45px 45px;
	border-radius: 45px 45px 45px 45px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* AKKORDEON */
.akkordeontitel{
	font-size:33px;
	margin-bottom: 40px;
}
.accordion-item {
   background-color: #1B2429;
	padding: 20px;
	margin-bottom: 15px;
	position: relative;
	font-size: 16px;
}
.accordion-item h2{
	margin-bottom: 0;
}
.accordion-content {
    display: none;
	padding-left: 40px;
	padding-top: 20px;
}
.accordion-header {
    cursor: pointer;
	padding-left: 40px;
	font-size: 24px;
}
.toggle {
    position: absolute;
	left: 20px;
	top: 20px;
}

/* VIDEO */
.play-button{
	width: 50px;
	height:50px;
}
.videodiv{
	position:relative;
	z-index: 1;
}
.video1{
	float: left;
	width: calc(25% - 27px);
	border-right: 4px solid #000;
	padding: 25px;
	position: absolute;
	left: 60px;
	top: 0;
	z-index: 2;
	height: 100%
}
.video2{
	float: left;
	width: calc(25% - 27px);
	border-right: 4px solid #000;
	padding: 25px;
	position: absolute;
	left: calc(25% + 29px);
	top: 0;
	z-index: 2;
	height: 100%
}
.video3{
	float: left;
	width: calc(25% - 27px);
	border-right: 4px solid #000;
	padding: 25px;
	position: absolute;
	left: calc(50% - 2px);
	top: 0;
	z-index: 2;
	height: 100%
}
.video4{
	float: left;
	width: calc(25% - 27px);
	padding: 25px;
	position: absolute;
	left: calc(75% - 32px);
	top: 0;
	z-index: 2;
	height: 100%
}
.videotext{
	text-transform:uppercase;
	font-size:16px;
	text-shadow: 0 0 15px #000000;
}

/* BILD - TEXT */
.bildbox_1 {
	float: left;
	width: calc(50% - 10px);
	margin-bottom: 20px;
	margin-right: 10px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: calc(50% + 60px); /* 1:1 Aspect Ratio */
  	position: relative; /* If you want text inside of it */
}
.bildbox_2 {
	float: left;
	width: calc(50% - 10px);
	margin-bottom: 20px;
	margin-left: 10px;
	margin-top: 60px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 50%; /* 1:1 Aspect Ratio */
  	position: relative; /* If you want text inside of it */
}
.bildbox_3 {
	float: left;
	width: calc(50% - 10px);
	margin-bottom: 20px;
	margin-right: 10px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 50%; /* 1:1 Aspect Ratio */
  	position: relative; /* If you want text inside of it */
}
.bildbox_4 {
	float: left;
	width: calc(50% - 10px);
	margin-bottom: 20px;
	margin-left: 10px;
	margin-top: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: calc(50% + 60px); /* 1:1 Aspect Ratio */
  	position: relative; /* If you want text inside of it */
}
.bildtitel{
	position:absolute;
	z-index: 2;
	text-shadow: 0 0 15px #000000;
	text-transform:uppercase;
	font-size:16px;
}
.right_top{
	top:25px;
	right: 25px;
	text-align: right;
}
.left_bottom{
	bottom:25px;
	left: 25px;
}

/* MAP - ADRESSE */
.standort{
	display:block;
	width: 100%;
	margin-bottom: 40px;
	font-size: 16px;
}
.standort:last-child{
	margin-bottom: 0;
}
.standort_adresse{
	float: left;
	width: 300px;
	padding: 20px;
	background-color: #1B2429;
	height: 400px;
}
.standort_adresse strong{
	font-size:24px;
}
.standort_map{
	float: left;
	width: calc(100% - 300px);
	height: 400px;
}
.standort_map iframe{
	width: 100%!important;
	height: 100%!important;
}

/* INFOPOINTS */
.infopoints{
	position:relative;
}
.point{
	position: absolute;
	z-index: 3;
	width: 40px;
	height: 40px;
	cursor: pointer;
}
.point_text{
	font-size:14px;
	background-color: #1B2429;
	width: 250px;
	padding: 10px;
	position: absolute;
	z-index: 2;
}
.klapp_left{
	padding-right:60px;
}
.klapp_right{
	padding-left:60px;
}
.point_text_1, .point_text_2, .point_text_3, .point_text_4, .point_text_5, .point_text_6, .point_text_7 {
	opacity: 0;
    transition: opacity 1.5s ease;
    display: block;
}
.visible{
	opacity:1;
}
.infomobile{
	display:none;
}

/* KONTAKDATEN */
.kontaktdaten p{
	margin:0;
}





/* //////////////////////////////////// Swiper //////////////////////////////////// */
.swiper {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
	display: block;
	width: 100%;
    height: 100%;
}
.swiper-vertical > .swiper-wrapper {
	flex-direction: column;
}
.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
}
.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	box-sizing: border-box;
	text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper_nav{
	width: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 50px;
}
.swiper_arrows{
	width: 10px;
	line-height: 0;
	cursor: pointer;
}
.swiper-pagination{
	margin: 0 20px;
	line-height: 0;
}
.swiper-pagination-bullet{
	width: 12px;
	height: 12px;
	border-radius: 15px;
	background-color: #1E2529;
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px;
	cursor: pointer;
}
.swiper-pagination-bullet:hover, .swiper-pagination-bullet-active, .swiper-button-disabled{
	opacity: 0.5;
}
.swiper-button-next{
	top:inherit!important;
	bottom: -30px!important;
	right: 60px!important;
	left: inherit!important;
	display: block!important;
	width: 40px!important;
	height: 20px!important;
	background-image: url('https://www.ombrax.com/wp-content/themes/effekt/images/next.svg');
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 40px;
}
.swiper-button-prev{
	top:inherit!important;
	bottom: -30px!important;
	right:110px!important;
	left: inherit!important;
	display: block!important;
	width: 40px!important;
	height: 20px!important;
	background-image: url('https://www.ombrax.com/wp-content/themes/effekt/images/prev.svg');
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 40px;
	content: none!important;
}
.swiper-button-prev::after, .swiper-button-next::after {
  content:none!important;
}



/* //////////////////////////////////// Footer //////////////////////////////////// */
footer{
	position:relative;
	padding: 100px 0 60px;
}
footer p{
	margin: 0;
}
.logo_footer{
	width: 300px;
	margin-bottom: 40px;
}
.logo_footer a{
	display: block;
}
.footer_left{
	width: calc(50% - 20px);
	float: left;
}
.bestellen{
	font-size: 34px;
}
#whatsapp_icon{
	width:25px;
	height: auto;
	margin-right: 15px;
}
.whatsapp a:hover #whatsapp_icon path{
	fill:#2F99D2;
}
.whatsapp{
	font-size: 34px;
}
.footer_right{
	width: calc(50% - 20px);
	float: left;
}
.mailtxt{
	font-size: 34px;
}
.mail{
	font-size: 34px;
}
.footer_social{
	width: 40px;
	float: left;
}
.footer_social svg{
	width: 30px;
	height: auto;
}
.footer_left{

}
.impressum{
	display: inline-block;
	font-size: 16px;
	font-weight: 300;
	padding-top: 40px;
}
.impressum a{
	display: inline-block;
}

.rcb-sc-link{
    width:auto;
    margin: 0 10px 10px 0;
    display: inline-block;
}

/* //////////////////////////////////// CLEARFIX do not group these rules //////////////////////////////////// */
.clearfix:before,
.clearfix:after {
	content:"";
	display:table;
}
.clearfix:after {
	clear:both;
}
.clearfix {
	zoom:1; /* For IE 6/7 (trigger hasLayout) */
}