/*-----------------------------------------------------------------------------------
	Olga Malkovskaja
	About: A shiney new Blocs website.
	Author: Andre Kulakowski
	Version: 1.0
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:var(--swatch-var-4211);
    overflow-x:hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.page-container{overflow: hidden;} /* Prevents unwanted scroll space when scroll FX used. */
a,button{transition: background .3s ease-in-out;outline: none!important;} /* Prevent blue selection glow on Chrome and Safari */
a:hover{text-decoration: none; cursor:pointer;}
.scroll-fx-lock-init{position:fixed!important;top: 0;bottom: 0;left: 0;right: 0;z-index:99999;} /* ScrollFX Lock */
.blocs-grid-container{display: grid!important;grid-template-columns: 1fr 1fr;grid-template-rows: auto auto;column-gap: 1.5rem;row-gap: 1.5rem;} /* CSS Grid */
nav .dropdown-menu .nav-link{color:rgba(0,0,0,0.6)!important;} /* Maintain Downdown Menu Link Color in Navigation */
[data-bs-theme="dark"] nav .dropdown-menu .nav-link{color:var(--bs-dropdown-link-color)!important;} /* Maintain Downdown Menu Link Color in Navigation in Darkmode */


/* Preloader */

.page-preloader{position: fixed;top: 0;bottom: 0;width: 100%;z-index:100000;background:#FFFFFF url("img/pageload-spinner.gif") no-repeat center center;animation-name: preloader-fade;animation-delay: 2s;animation-duration: 0.5s;animation-fill-mode: both;}
.preloader-complete{animation-delay:0.1s;}
@keyframes preloader-fade {0% {opacity: 1;visibility: visible;}100% {opacity: 0;visibility: hidden;}}

/* = Web Fonts
-------------------------------------------------------------- */

@font-face {
	font-family:'Almond_YandiDesigns';
	src: url('./fonts/Almond_YandiDesigns/Almond_YandiDesigns.woff');
	src: url('./fonts/Almond_YandiDesigns/Almond_YandiDesigns.woff') format('woff'),
	url('./fonts/Almond_YandiDesigns/Almond_YandiDesigns.eot?#iefix') format('embedded-opentype'),
	url('./fonts/Almond_YandiDesigns/Almond_YandiDesigns.ttf') format('truetype'),
	url('./fonts/Almond_YandiDesigns/Almond_YandiDesigns.svg#Almond_YandiDesigns') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'ArtegraSansAlt-Light';
	src: url('./fonts/ArtegraSansAlt-Light/ArtegraSansAlt-Light.woff');
	src: url('./fonts/ArtegraSansAlt-Light/ArtegraSansAlt-Light.woff') format('woff'),
	url('./fonts/ArtegraSansAlt-Light/ArtegraSansAlt-Light.eot?#iefix') format('embedded-opentype'),
	url('./fonts/ArtegraSansAlt-Light/ArtegraSansAlt-Light.ttf') format('truetype'),
	url('./fonts/ArtegraSansAlt-Light/ArtegraSansAlt-Light.svg#ArtegraSansAlt-Light') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

/* = Blocs
-------------------------------------------------------------- */

.bloc{
	width:100%;
	clear:both;
	background: 50% 50% no-repeat;
	padding:0 20px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position:relative;
	display:flex;
}
.bloc .container{
	padding-left:0;
	padding-right:0;
}


/* Sizes */

.bloc-lg{
	padding:100px 20px;
}
.bloc-md{
	padding:50px 20px;
}
.bloc-sm{
	padding:20px;
}

/* = Full Screen Blocs 
-------------------------------------------------------------- */

.bloc-fill-screen{
	min-height:100vh;
	display: flex;
	flex-direction: column;
	padding-top:20px;
	padding-bottom:20px;
}
.bloc-fill-screen > .container{
	align-self: flex-middle;
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
}
.bloc-fill-screen > .container > .row{
	flex-grow: 1;
	align-self: center;
	width:100%;
}
.bloc-fill-screen .fill-bloc-top-edge, .bloc-fill-screen .fill-bloc-bottom-edge{
	flex-grow: 0;
}
.bloc-fill-screen .fill-bloc-top-edge{
	align-self: flex-start;
}
.bloc-fill-screen .fill-bloc-bottom-edge{
	align-self: flex-end;
}


/* Edge Dividers */

.bloc-shape-divider{
	position: absolute;
	width:100%;
	text-align:center;
	left:0;
	right:0;
	z-index: 0;
	display: flex;
	pointer-events: none;
}
.svg-divider{
	width:100%;
	height:100px;
	fill:#000000;
}
.bloc-divider-top{
	top:-1px;
	align-items: flex-start;
}
.bloc-divider-bottom{
	bottom:-1px;
	align-items: flex-end;
}


/* Flip Edge Divider */

.bloc-divider-flip-x svg{
	transform:scale(-1,1);
}
.bloc-divider-flip-y svg{
	transform:scale(1,-1);
}
.bloc-divider-flip-x.bloc-divider-flip-y svg{
	transform:scale(-1,-1);
}


/* Background Textures */

.bloc-bg-texture::before{
	content:"";
	background-size: 2px 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	left:0;
	right:0;
}
.texture-pixels::before{
	background: url("img/texture-pixel.gif");
	background-size: 2px 2px;
}
.texture-darken::before{
	background: rgba(0,0,0,0.5);
}


/* Background Effects */

.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index:-1;
}
.parallax {
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* Dark theme */

.d-bloc{
	color:rgba(255,255,255,.7);
}
.d-bloc button:hover{
	color:rgba(255,255,255,.9);
}
.d-bloc .icon-round,.d-bloc .icon-square,.d-bloc .icon-rounded,.d-bloc .icon-semi-rounded-a,.d-bloc .icon-semi-rounded-b{
	border-color:rgba(255,255,255,.9);
}
.d-bloc .divider-h span{
	border-color:rgba(255,255,255,.2);
}
.d-bloc .a-btn,.d-bloc .navbar a, .d-bloc a .icon-sm, .d-bloc a .icon-md, .d-bloc a .icon-lg, .d-bloc a .icon-xl, .d-bloc h1 a, .d-bloc h2 a, .d-bloc h3 a, .d-bloc h4 a, .d-bloc h5 a, .d-bloc h6 a, .d-bloc p a{
	color:rgba(255,255,255,.6);
}
.d-bloc .a-btn:hover,.d-bloc .navbar a:hover,.d-bloc a:hover .icon-sm, .d-bloc a:hover .icon-md, .d-bloc a:hover .icon-lg, .d-bloc a:hover .icon-xl, .d-bloc h1 a:hover, .d-bloc h2 a:hover, .d-bloc h3 a:hover, .d-bloc h4 a:hover, .d-bloc h5 a:hover, .d-bloc h6 a:hover, .d-bloc p a:hover{
	color:rgba(255,255,255,1);
}
.d-bloc .navbar-toggle .icon-bar{
	background:rgba(255,255,255,1);
}
.d-bloc .btn-wire,.d-bloc .btn-wire:hover{
	color:rgba(255,255,255,1);
	border-color:rgba(255,255,255,1);
}
.d-bloc .card{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover{
	color:rgba(0,0,0,.7);
}
.d-bloc .card icon{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover{
	color:rgba(0,0,0,1);
}
.d-bloc .card .btn-wire, .d-bloc .card .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* Light theme */

.d-bloc .card,.l-bloc{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover,.l-bloc button:hover{
	color:rgba(0,0,0,.7);
}
.l-bloc .icon-round,.l-bloc .icon-square,.l-bloc .icon-rounded,.l-bloc .icon-semi-rounded-a,.l-bloc .icon-semi-rounded-b{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span,.l-bloc .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn,.l-bloc .a-btn,.l-bloc .navbar a,.l-bloc a .icon-sm, .l-bloc a .icon-md, .l-bloc a .icon-lg, .l-bloc a .icon-xl, .l-bloc h1 a, .l-bloc h2 a, .l-bloc h3 a, .l-bloc h4 a, .l-bloc h5 a, .l-bloc h6 a, .l-bloc p a{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover,.l-bloc .a-btn:hover,.l-bloc .navbar a:hover, .l-bloc a:hover .icon-sm, .l-bloc a:hover .icon-md, .l-bloc a:hover .icon-lg, .l-bloc a:hover .icon-xl, .l-bloc h1 a:hover, .l-bloc h2 a:hover, .l-bloc h3 a:hover, .l-bloc h4 a:hover, .l-bloc h5 a:hover, .l-bloc h6 a:hover, .l-bloc p a:hover{
	color:rgba(0,0,0,1);
}
.l-bloc .navbar-toggle .icon-bar{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .btn-wire,.d-bloc .card .btn-wire:hover,.l-bloc .btn-wire,.l-bloc .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}

/* Row Margin Offsets */

.voffset{
	margin-top:30px;
}
/* Dividers */

.b-divider{
	border-top:1px solid rgba(0,0,0,.1);
	border-bottom:1px solid rgba(0,0,0,.1);
}


/* = NavBar
-------------------------------------------------------------- */

/* Navbar Icon */
.svg-menu-icon{
	fill: none;
	stroke: rgba(0,0,0,0.5);
	stroke-width: 2px;
	fill-rule: evenodd;
}
.navbar-dark .svg-menu-icon{
	stroke: rgba(255,255,255,0.5);
}
.menu-icon-thin-bars{
	stroke-width: 1px;
}
.menu-icon-thick-bars{
	stroke-width: 5px;
}
.menu-icon-rounded-bars{
	stroke-width: 3px;
	stroke-linecap: round;
}
.menu-icon-filled{
	fill: rgba(0,0,0,0.5);
	stroke-width: 0px;
}
.navbar-dark .menu-icon-filled{
	fill: rgba(255,255,255,0.5);
}
.navbar-toggler-icon{
	background: none!important;
	pointer-events: none;
	width: 33px;
	height: 33px;
}
/* Handle Multi Level Navigation */
.dropdown-menu .dropdown-menu{
	border:none}
@media (min-width:576px){
	
.navbar-expand-sm .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-sm .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:768px){
	.navbar-expand-md .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-md .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:992px){
	.navbar-expand-lg .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-lg .dropdown-menu .submenu-left{
	right:100%;
	left:auto}
}
/* = Bric adjustment margins
-------------------------------------------------------------- */

.mg-sm{
	margin-top:10px;
	margin-bottom:5px;
}
.mg-md{
	margin-top:10px;
	margin-bottom:20px;
}
.mg-lg{
	margin-top:10px;
	margin-bottom:40px;
}

/* = Buttons
-------------------------------------------------------------- */

.btn-d,.btn-d:hover,.btn-d:focus{
	color:#FFF;
	background:rgba(0,0,0,.3);
}

.a-block{
	width:100%;
	text-align:left;
	display: inline-block;
}
.text-center .a-block{
	text-align:center;
}
.btn-with-icon{
	display:inline-flex;
	align-items:center;
	justify-content:center;
}
.icon-spacer{
	margin-right:5px;
}

/* = Icons
-------------------------------------------------------------- */
.icon-md{
	font-size:30px!important;
}
.icon-lg{
	font-size:60px!important;
}
.icon-xl{
	font-size:100px!important;
}
blocsicon{
	display:inline-block;
	width:100%;
}
blocsicon svg {
	width: 100%;
	 height: auto;
	 display: block;
}
.btn blocsicon,.text-nested-icon{
	width:20px;
}
.text-nested-icon svg{
	display:inline-block;
}

/* Image Protection */
.img-protected{
	-webkit-touch-callout: none;
}

/* = Text & Icon Styles
-------------------------------------------------------------- */
.blockquote{
	padding:0 20px;
	border-left:2px solid;
}
.blockquote.text-right{
	border-left:0;
	border-right:2px solid;
}


.card-sq, .card-sq .card-header, .card-sq .card-footer{
	border-radius:0;
}
.card-rd{
	border-radius:30px;
}
.card-rd .card-header{
	border-radius:29px 29px 0 0;
}
.card-rd .card-footer{
	border-radius:0 0 29px 29px;
}

/* = Classic Dividers
-------------------------------------------------------------- */
.divider-h{
	min-height: 1px;
	background-color:rgba(0,0,0,.2);
	margin: 20px 0;
}
.divider-half{
	width: 50%;
}
.dropdown-menu .divider-h{
	margin:0;
}


.carousel-nav-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}


/* ScrollToTop button */

.scrollToTop{
	width:36px;
	height:36px;
	padding:5px;
	position:fixed;
	bottom:20px;
	right:20px;
	opacity:0;
	z-index:999;
	transition: all .3s ease-in-out;
	pointer-events:none;
}
.showScrollTop{
	opacity: 1;
	pointer-events:all;
}
.scroll-to-top-btn-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}
/* = Lightbox
-------------------------------------------------------------- */

a[data-lightbox] {
	display: grid;
	text-decoration: none;
}
a[data-lightbox]::before,a[data-lightbox] > img,a[data-lightbox] > picture {
	grid-area: 1 / 1;
}
a[data-lightbox]::before{
	content: "+";
	font-family: Helvetica, Arial;
	color:#FFF;
	font-size:32px;
	font-weight:100;
	line-height: 0px;
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	padding-bottom:5px;
	background: rgba(0,0,0,.5);
	backdrop-filter:blur(5px);
	-webkit-backdrop-filter:blur(5px);
	border-radius: 50%;
	justify-self: center;
	align-self: center;
	pointer-events: none;
	transform:scale(0.6);
	opacity: 0;
	z-index: 1;
	transition: all .2s ease-in-out;
}
a[data-lightbox]:hover::before {
	opacity: 1;
	transform:scale(1);
	transition: all .2s ease-in-out;
}
a[data-lightbox]:hover img{
	opacity: 0.8;
	transition: all .2s ease-in-out;
	-webkit-animation-fill-mode: none;
	animation-fill-mode:none;
}
.lightbox-caption{
	padding: 20px;
	color: #FFF;
	background: rgba(0,0,0,.5);
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 0px;
}
.close-lightbox:hover,.next-lightbox:hover, .prev-lightbox:hover{
	background:rgba(0,0,0,.5);
}
.next-lightbox, .prev-lightbox,.close-lightbox{
	position: absolute;
	padding:6px;
	background:rgba(0,0,0,.3);
	line-height:0;
	transition: background .2s ease-in-out;
	border-radius:.25rem;
	border:none;
	z-index:20;
}
.next-lightbox, .prev-lightbox{
	top:45%;
}
.close-lightbox{
	top:20px;
	right:20px;
}
.next-lightbox{
	right:25px;
}
.prev-lightbox{
	left:25px;
}
.lightbox-prev-icon,.lightbox-next-icon,.lightbox-close-icon{
	fill:none;
	stroke: #fff;
	stroke-width: 3px;
	fill-rule: evenodd;
	stroke-linecap:round;
}
.lightbox-close-svg{
	pointer-events:none;
}

/* Dark */
.dark-lb{
	background:#1F272A;
}

/* Framless */
.frameless-lb{
	border-radius: 0;
	border:none;
}
.frameless-lb .modal-body{
	padding:0;
}
.frameless-lb .lightbox-caption{
	left:0;
	right:0;
	bottom:-16px;
}

/* Full Screen */
.fullscreen-lb{
	background:#000;
	border-radius: 0;
}
.fullscreen-lb .modal-body{
	padding:0;
}
.fullscreen-lb .lightbox-caption{
	left:0;
	right:0;
	bottom:-16px;
	text-align:center;
}
.fullscreen-modal{
	background:#000;
}
.fullscreen-modal .modal-dialog{
	width:100%!important;
	max-width:95%!important;
}

/* Modal Full Screen Close Button */
.close-full-screen-modal{
	position: fixed;
	display: block;
	width: 25px;
	height:25px;
	top:16px;
	right:10px;
	z-index: 10000;
}
.close-full-screen-modal .close-icon{
	display: block;
	width:100%;
	height:1px;
	background: #fff;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	margin-top:12px;
}
.close-full-screen-modal .close-icon{
	height:2px;
}
.close-full-screen-modal .close-icon:after{
	content:"";
	display:inherit;
	width:inherit;
	height:inherit;
	background: inherit;
	-ms-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.close-full-screen-modal{
	right:20px;
}

/* = Custom Styling
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Ubuntu";
	color:#72FCD5!important;
}
.container{
	max-width:1140px;
}
.script{
	font-family:"Almond_YandiDesigns";
	font-size:100px;
	color:#FEFFFF!important;
	font-weight:normal;
	text-align:center;
}
.script_menu{
	font-family:"Almond_YandiDesigns";
	font-size:80px;
	color:#72FCD5!important;
	font-weight:normal;
}
.container-div-style{
	width:100%;
	border-color:#72FCD5!important;
	font-size:18px;
	margin-top:11px;
	opacity:1.0;
}
h1{
	font-family:"Amatic SC";
	font-weight:400;
	font-size:60px;
}
p{
	font-family:"Ubuntu";
	font-weight:400;
}
h2{
	font-family:"Amatic SC";
	font-weight:400;
	font-size:55px;
}
h3{
	font-family:"Raleway";
	font-weight:600;
}
h4{
	font-family:"Raleway";
	font-weight:600;
}
label{
	color:#A9A9A9!important;
}
.bildrame{
	border-color:#212121!important;
	border-style:solid;
	margin:5px 5px 5px 5px;
	border-width:3px 3px 3px 3px;
}
.blochhoch{
	background-size:auto auto;
	height:600px;
	min-height:200px;
	max-height:800px;
}
.navbar-brand{
	font-family:"Almond_YandiDesigns";
	color:#FEFFFF!important;
	font-size:50px;
}
.oel{
	min-height:800px;
	max-height:800px;
}
.indikator_gallerie{
	margin-bottom:-25px;
}
.datenschutz{
	padding-top:110px;
}
.reservieren{
	margin-top:30px;
	text-transform:uppercase;
	background-color:rgba(0,143,81,0.7);
}
.reservieren:hover{
	background-color:rgba(142,250,0,0.8);
	color:#5E5E5E!important;
}
.auswahl{
	margin-left:100px;
	font-family:"helvetica";
	font-weight:400;
	font-size:20px;
	margin-bottom:5px;
}
.datenschutz_link:hover{
	font-weight:bold;
	color:#75D5FF!important;
	background-color:transparent;
}
.platzhalter-600{
	min-height:600px;
}
.navbar-nav li a{
	font-family:"Amatic SC";
	font-weight:400;
	font-size:40px;
	color:var(--swatch-var-5766)!important;
}
.img-style{
	width:341px;
	float:left;
	border-style:solid;
	border-color:#424242!important;
	border-radius:0px 0px 0px 0px;
}
.breit{
	line-height:170%;
}
.img-olga-vi-style{
	width:383px;
}
.img-bloc-formular-style{
	width:450px;
}
.plathalter_fisch{
	height:200px;
}
.platzhalter_kontakt{
	height:50px;
}
.abstand{
	margin-left:125px;
}
.p-style{
	line-height:190%;
}
.linie{
	border-style:none;
	background-color:#929292;
	min-height:2px;
	max-height:2px;
}
.link-style{
	font-size:65px;
	font-weight:normal;
}
.row_abstand{
	margin-top:50px;
	margin-bottom:100px;
}
.field-style{
	width:100%;
}
.field-0-style{
	width:100%;
}
.text-area-style{
	width:100%;
}
.datensutz_abstand{
	margin-top:40px;
}
.checkbox-style{
	width:100%;
}
.btn-style{
	width:100%;
}
.h1-style{
	font-size:80px;
	padding-left:391px;
	margin-bottom:76px;
	padding-top:0px;
}
.linie_work{
	background-color:transparent;
}
.h4-margin-top{
	margin-top:30px;
	margin-bottom:47px;
}
.bloc-margin-top{
	margin-top:31px;
}
.img-bloc-7-margin-top{
	margin-top:23px;
}
.img-7-margin-top{
	margin-top:21px;
}
.img-colla-margin-top{
	margin-top:19px;
}
.img-5-margin-top{
	margin-top:22px;
}
.checkbox-margin-top{
	font-family:"Amatic SC";
	font-weight:normal;
	margin-top:75px;
}
.reserve{
	font-family:"Almond_YandiDesigns";
	font-weight:bold;
	color:#FEFFFF!important;
	background-color:#FF9300;
	background-size:auto auto;
	margin-right:80px;
	margin-left:-px;
	border-radius:12px 12px 12px 12px;
}
.checkbox-margin-top:hover{
	font-weight:normal;
}
.h5-margin-top{
	margin-top:57px;
}
.p-margin-bottom{
	margin-bottom:34px;
	padding-top:19px;
}
.h1-13-style{
	font-family:"Amatic SC";
	font-weight:700;
}
.bloc-margin-bottom{
	margin-bottom:69px;
}
.p-bloc-11-margin-top{
	margin-top:58px;
	padding-top:0px;
}
.bloc-bloc-11-margin-bottom{
	margin-bottom:-84px;
}
.bloc-bloc-15-margin-bottom{
	margin-bottom:-31px;
}
.checkbox-bloc-22-margin-top{
	margin-top:44px;
	margin-bottom:19px;
}
.h2-margin-bottom{
	margin-bottom:34px;
}
.img-datenschu-margin-top{
	margin-top:68px;
}
.carousel-margin-bottom{
	margin-bottom:-1px;
}
.list-margin-top{
	margin-top:-25px;
}
.h1-margin-top{
	margin-top:-34px;
	margin-bottom:46px;
}
.p-bloc-12-margin-bottom{
	margin-bottom:36px;
}
.conti_paral{
	min-height:800px;
}
.img-41-margin-top{
	margin-top:0px;
	margin-bottom:125px;
	padding-bottom:0px;
	padding-top:0px;
}
.bloc-padding-left{
	padding-left:6px;
	padding-right:6px;
}
.gallery_img{
	padding-top:0px;
	padding-right:4px;
	padding-left:4px;
}
.bild_galerie{
	border-style:solid;
	border-color:#212121!important;
}
.p-padding-left{
	padding-left:576px;
	margin-bottom:102px;
	padding-top:0px;
	margin-top:40px;
}
.h1-malerei-margin-top{
	margin-top:48px;
}
.h1-malschule-margin-top{
	margin-top:26px;
	margin-bottom:37px;
}
.bg{
	background-image:url("img/bg_b.jpeg");
	background-image: -webkit-image-set(url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);background-image: image-set(url("img/bg_b.jpeg") 1x,
url("img/bg_b.jpeg") 2x,url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);
	background-image: -webkit-image-set(url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);background-image: image-set(url("img/bg_b.jpeg") 1x,
url("img/bg_b.jpeg") 2x,url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);
	background-size:length;
	background-attachment:fixed;
}
.icon-padding-top{
	padding-top:103px;
}
.card-body-style{
	height:46px;
	width:75.29%;
	padding:10px 10px 10px 10px;
}
.p-bloc-7-style{
	width:71.07%;
}
.ausgebucht{
	background-color:#935100;
	font-size:25px;
	text-align:left;
	letter-spacing:3px;
	padding-left:30px;
	background-size:auto auto;
}
.row-style{
	width:100%;
}
.weiss{
	color:#B8FCD9!important;
}
.h3-bloc-10-margin-bottom{
	margin-bottom:23px;
}
.img-bloc-10-style{
	width:222px;
}
.h1-bloc-11-style{
	font-size:84px;
}
.html-widget-style{
	height:800px;
}
.img-gutsche-style{
	width:466px;
	box-shadow:4.59px 5.28px 18px #000000;
}
a{
	font-size:120%;
	color:var(--swatch-var-6794)!important;
}
.footer-link{
	color:var(--swatch-var-5766)!important;
}
.footer-link:hover{
	color:var(--swatch-var-6794)!important;
}
.navbutton{
	border-color:var(--swatch-var-5766)!important;
	border-style:dotted;
	border-width:1px 1px 3px 1px;
	text-transform:uppercase;
	color:var(--swatch-var-5766)!important;
	font-family:"ArtegraSansAlt-Light";
	text-decoration:none;
	letter-spacing:2px;
	border-radius:6px 6px 0px 0px;
}
.olga{
	font-family:"Almond_YandiDesigns";
	font-size:90px;
	text-align:center;
	text-shadow:-1.39px 7.88px 12px #000000;
	margin-top:20px;
	margin-bottom:0px;
}
.bloc-divider-t-style{
	height:1px;
}
.bloc-divider-b-style{
	height:1px;
}
.bloc-divider-b-bloc-0-style{
	height:3px;
}
.bloc-divider-b-bloc-13-style{
	height:3px;
}
.bloc-divider-b-bloc-9-style{
	height:3px;
}
.bloc-divider-b-bloc-12-style{
	height:3px;
}
.bloc-divider-t-bloc-5-style{
	height:3px;
}
.bloc-divider-b-bloc-3-style{
	height:3px;
}
.bloc-divider-b-bloc-7-style{
	height:3px;
}
.bloc-divider-b-bloc-22-style{
	height:3px;
}
.bloc-divider-b-bloc-25-style{
	height:3px;
}
.img-osterferi-margin-bottom{
	margin-bottom:18px;
	margin-top:-1px;
	width:500px;
}
.h3-bloc-30-margin-bottom{
	margin-bottom:24px;
}
.h4-bloc-30-margin-top{
	margin-top:63px;
}
.btn-zur-anmeldung-style{
	width:100%;
	margin-top:59px;
	margin-bottom:18px;
}
.navbutton:hover{
	background-color:var(--swatch-var-5766);
	color:#000000!important;
}
.h1-margin-bottom{
	margin-bottom:24px;
}
.h2-bloc-30-margin-bottom{
	margin-bottom:24px;
	margin-top:70px;
	padding-bottom:44px;
}
.h2-margin-top{
	margin-top:64px;
}
h5{
	font-family:"Raleway";
	font-weight:600;
}
.page-preloader{
	background-color:var(--swatch-var-4211);
}
.svg-icon-bloc-10-style{
	width:50px!important;
	fill:var(--swatch-var-1182)!important;
}
.blocs-card-width{
	width:25%;
}
.img-padding-bottom{
	padding-bottom:0px;
	margin-bottom:43px;
}
.bildrame:hover{
	width:1000px;
}
.meine-liste{
	color:var(--swatch-var-5766)!important;
}

/* = Colour
-------------------------------------------------------------- */

/* Swatch Variables */
:root{
	
	--swatch-var-6794:rgba(255,212,121,1.00);
	
	--swatch-var-1182:rgba(255,255,255,1.0);
	
	--swatch-var-5766:rgba(115,235,193,1.00);
	
	--swatch-var-631:rgba(0,0,0,1.00);
	
	--swatch-var-4211:rgba(32,32,32,1.00);
	
}


/* Background colour styles */

.bgc-1182{
	background-color:var(--swatch-var-1182);
}

/* Text colour styles */

.tc-5766{
	color:var(--swatch-var-5766)!important;
}

/* Link colour styles */

.ltc-5766{
	color:var(--swatch-var-5766)!important;
}
.ltc-5766:hover{
	color:#40B88E!important;
}

/* Icon colour styles */

.icon-6794{
	color:var(--swatch-var-6794)!important;
	border-color:var(--swatch-var-6794)!important;
}
.icon-5766{
	color:var(--swatch-var-5766)!important;
	border-color:var(--swatch-var-5766)!important;
}

/* Bloc image backgrounds */

.bg-olga-2500{
	background-image:url("img/olga_2500.jpeg");
	background-image: -webkit-image-set(url("img/olga_2500.webp") 1x,
url("img/olga_2500.webp") 2x);background-image: image-set(url("img/olga_2500.jpeg") 1x,
url("img/olga_2500.jpeg") 2x,url("img/olga_2500.webp") 1x,
url("img/olga_2500.webp") 2x);
}
.bg-bg-b{
	background-image:url("img/bg_b.jpeg");
	background-image: -webkit-image-set(url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);background-image: image-set(url("img/bg_b.jpeg") 1x,
url("img/bg_b.jpeg") 2x,url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);
	background-image: -webkit-image-set(url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);background-image: image-set(url("img/bg_b.jpeg") 1x,
url("img/bg_b.jpeg") 2x,url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);
}
.bg-workshop-mit-bilder{
	background-image:url("img/workshop_mit_bilder.jpg");
	background-image: -webkit-image-set(url("img/workshop_mit_bilder.webp") 1x,
url("img/workshop_mit_bilder.webp") 2x);background-image: image-set(url("img/workshop_mit_bilder.jpg") 1x,
url("img/workshop_mit_bilder.jpg") 2x,url("img/workshop_mit_bilder.webp") 1x,
url("img/workshop_mit_bilder.webp") 2x);
}
.bg-BBK-Stolzehaus{
	background-image:url("img/BBK_Stolzehaus.jpeg");
	background-image: -webkit-image-set(url("img/BBK_Stolzehaus.webp") 1x,
url("img/BBK_Stolzehaus.webp") 2x);background-image: image-set(url("img/BBK_Stolzehaus.jpeg") 1x,
url("img/BBK_Stolzehaus.jpeg") 2x,url("img/BBK_Stolzehaus.webp") 1x,
url("img/BBK_Stolzehaus.webp") 2x);
}
.bg-kuh-bg-2{
	background-image:url("img/kuh_bg_2.jpeg");
	background-image: -webkit-image-set(url("img/kuh_bg_2.webp") 1x,
url("img/kuh_bg_2.webp") 2x);background-image: image-set(url("img/kuh_bg_2.jpeg") 1x,
url("img/kuh_bg_2.jpeg") 2x,url("img/kuh_bg_2.webp") 1x,
url("img/kuh_bg_2.webp") 2x);
}
.bg-burg{
	background-image:url("img/burg.jpeg");
	background-image: -webkit-image-set(url("img/burg.webp") 1x,
url("img/burg.webp") 2x);background-image: image-set(url("img/burg.jpeg") 1x,
url("img/burg.jpeg") 2x,url("img/burg.webp") 1x,
url("img/burg.webp") 2x);
}
.bg-workshop-sommerpalette-2023{
	background-image:url("img/bg_b.jpeg");
	background-image: -webkit-image-set(url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);background-image: image-set(url("img/bg_b.jpeg") 1x,
url("img/bg_b.jpeg") 2x,url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);
	background-image: -webkit-image-set(url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);background-image: image-set(url("img/bg_b.jpeg") 1x,
url("img/bg_b.jpeg") 2x,url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);
}
.bg-formen-24{
	background-image:url("img/bg_b.jpeg");
	background-image: -webkit-image-set(url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);background-image: image-set(url("img/bg_b.jpeg") 1x,
url("img/bg_b.jpeg") 2x,url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);
	background-image: -webkit-image-set(url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);background-image: image-set(url("img/bg_b.jpeg") 1x,
url("img/bg_b.jpeg") 2x,url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);
}
.bg-pauluskirche-2725-2{
	background-image:url("img/bg_b.jpeg");
	background-image: -webkit-image-set(url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);background-image: image-set(url("img/bg_b.jpeg") 1x,
url("img/bg_b.jpeg") 2x,url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);
	background-image: -webkit-image-set(url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);background-image: image-set(url("img/bg_b.jpeg") 1x,
url("img/bg_b.jpeg") 2x,url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);
}
.bg-Fruehlingsworkshop{
	background-image:url("img/bg_b.jpeg");
	background-image: -webkit-image-set(url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);background-image: image-set(url("img/bg_b.jpeg") 1x,
url("img/bg_b.jpeg") 2x,url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);
	background-image: -webkit-image-set(url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);background-image: image-set(url("img/bg_b.jpeg") 1x,
url("img/bg_b.jpeg") 2x,url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);
}
.bg-WhatsApp-20Image-202025-06-03-20at-2020-15-49{
	background-image:url("img/bg_b.jpeg");
	background-image: -webkit-image-set(url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);background-image: image-set(url("img/bg_b.jpeg") 1x,
url("img/bg_b.jpeg") 2x,url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);
	background-image: -webkit-image-set(url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);background-image: image-set(url("img/bg_b.jpeg") 1x,
url("img/bg_b.jpeg") 2x,url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);
}
.bg-LOGO-frei-300x313{
	background-image:url("img/bg_b.jpeg");
	background-image: -webkit-image-set(url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);background-image: image-set(url("img/bg_b.jpeg") 1x,
url("img/bg_b.jpeg") 2x,url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);
	background-image: -webkit-image-set(url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);background-image: image-set(url("img/bg_b.jpeg") 1x,
url("img/bg_b.jpeg") 2x,url("img/bg_b.webp") 1x,
url("img/bg_b.webp") 2x);
}

/* = Custom Bric Data
-------------------------------------------------------------- */



/* = Toggle Visibility
-------------------------------------------------------------- */

.toggled-item{transition: height 350ms ease-in-out, padding 350ms ease-in-out, opacity 350ms ease-in-out;overflow: hidden;}
.toggled-item-hidden{padding-top:0!important;padding-bottom:0!important;border-top:0!important;border-bottom:0!important;outline:0!important;opacity: 0;}
.object-hidden{display:none;}


/* = Bloc Padding Multi Breakpoint
-------------------------------------------------------------- */

@media (min-width: 576px) {
    .bloc-xxl-sm{padding:200px 20px;}
    .bloc-xl-sm{padding:150px 20px;}
    .bloc-lg-sm{padding:100px 20px;}
    .bloc-md-sm{padding:50px 20px;}
    .bloc-sm-sm{padding:20px;}
    .bloc-no-padding-sm{padding:0 20px;}
}
@media (min-width: 768px) {
    .bloc-xxl-md{padding:200px 20px;}
    .bloc-xl-md{padding:150px 20px;}
    .bloc-lg-md{padding:100px 20px;}
    .bloc-md-md{padding:50px 20px;}
    .bloc-sm-md{padding:20px 20px;}
    .bloc-no-padding-md{padding:0 20px;}
}
@media (min-width: 992px) {
    .bloc-xxl-lg{padding:200px 20px;}
    .bloc-xl-lg{padding:150px 20px;}
    .bloc-lg-lg{padding:100px 20px;}
    .bloc-md-lg{padding:50px 20px;}
    .bloc-sm-lg{padding:20px;}
    .bloc-no-padding-lg{padding:0 20px;}
}


/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px)
{
    .bloc.full-width-bloc, .bloc-tile-2.full-width-bloc .container, .bloc-tile-3.full-width-bloc .container, .bloc-tile-4.full-width-bloc .container{
        padding-left: 0; 
        padding-right: 0;  
    }
}
@media (max-width: 991px)
{
    .container{width:100%;}
    .bloc{padding-left: constant(safe-area-inset-left);padding-right: constant(safe-area-inset-right);} /* iPhone X Notch Support*/
    .bloc-group, .bloc-group .bloc{display:block;width:100%;}
}
@media (max-width: 767px)
{
    .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
        padding-left:0;padding-right:0;
    }
    .btn-dwn{
       display:none; 
    }
    .voffset{
        margin-top:5px;
    }
    .voffset-md{
        margin-top:20px;
    }
    .voffset-lg{
        margin-top:30px;
    }
    form{
        padding:5px;
    }
    .close-lightbox{
        display:inline-block;
    }
    .blocsapp-device-iphone5{
	   background-size: 216px 425px;
	   padding-top:60px;
	   width:216px;
	   height:425px;
    }
    .blocsapp-device-iphone5 img{
	   width: 180px;
	   height: 320px;
    }
}


@media (max-width: 991px){
	.mt-md-0{
	}
	.mt-md-4{
	}
	.h1-bloc-0-style{
		width:88.86%;
	}
	.p-padding-left{
		padding-left:351px;
	}
	.p-bloc-11-margin-top{
		margin-left:-1px;
	}
	.h1-style{
		padding-left:242px;
	}
	.blocs-card-width{
		width:50%;
	}
	
}

@media (max-width: 767px){
	.p-bloc-11-margin-top{
		margin-top:32px;
		margin-left:0px;
		padding-left:163px;
	}
	.h1-bloc-13-margin-top{
		margin-top:-48px;
	}
	.p-padding-left{
		padding-left:172px;
	}
	.h1-style{
		padding-left:95px;
		font-size:70px;
	}
	.img-5-margin-top{
		padding-right:0px;
		margin-right:10px;
	}
	.menuweiss{
		background-color:#A9A9A9;
	}
	.h1-bloc-0-style{
		width:86.12%;
		font-size:70px;
	}
	.blocs-card-width{
		width:50%;
	}
	
}

@media (max-width: 575px){
	.footer-link{
		text-align:center;
	}
	.mt-1{
	}
	.h1-bloc-0-style{
		font-size:40px;
		width:100%;
	}
	.p-style{
		font-size:15px;
	}
	.link-style{
		line-height:px;
	}
	.h1-style{
		font-size:50px;
		padding-left:21px;
	}
	.h2-style{
		font-size:40px;
		padding-left:0px;
	}
	.container-div-bloc-12-style{
		width:100%;
	}
	.p-padding-left{
		padding-left:20px;
	}
	.p-bloc-11-margin-top{
		padding-left:17px;
	}
	.container-div-margin-bottom{
		margin-bottom:-282px;
	}
	.p-padding-bottom{
		padding-bottom:1px;
		margin-bottom:-133px;
	}
	.menuweiss{
		background-color:#929292;
	}
	.p-bloc-0-style{
		font-size:81px;
	}
	.h1-1-style{
		font-size:40px;
	}
	.blocs-card-width{
		width:100%;
	}
	
}

