/*-----------------------------------------------------------------------------------
	Bubbles
	About: A shiny new Blocs website.
	Author: Nikolai Huber
	Version: 1.0
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:#CDE3E0;
    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: #CDE3E0;
    animation-name: preloader-fade;
    animation-delay: 0.8s;
    animation-duration: 0.3s;
    animation-fill-mode: both;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-progress {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.preloader-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: progress-shimmer 1.2s infinite;
}

@keyframes progress-shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.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:'CabinetGrotesk-Medium';
	src: url('./fonts/CabinetGrotesk-Medium/CabinetGrotesk-Medium.woff2');
	src: url('./fonts/CabinetGrotesk-Medium/CabinetGrotesk-Medium.woff2') format('woff2'),
	url('./fonts/CabinetGrotesk-Medium/CabinetGrotesk-Medium.woff') format('woff'),
	url('./fonts/CabinetGrotesk-Medium/CabinetGrotesk-Medium.eot?#iefix') format('embedded-opentype'),
	url('./fonts/CabinetGrotesk-Medium/CabinetGrotesk-Medium.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

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

@font-face {
	font-family:'CabinetGrotesk-Light';
	src: url('./fonts/CabinetGrotesk-Light/CabinetGrotesk-Light.woff2');
	src: url('./fonts/CabinetGrotesk-Light/CabinetGrotesk-Light.woff2') format('woff2'),
	url('./fonts/CabinetGrotesk-Light/CabinetGrotesk-Light.woff') format('woff'),
	url('./fonts/CabinetGrotesk-Light/CabinetGrotesk-Light.eot?#iefix') format('embedded-opentype'),
	url('./fonts/CabinetGrotesk-Light/CabinetGrotesk-Light.ttf') format('truetype');
	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;
	position:relative;
}


/* 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;
}

/* = Full Width Blocs 
-------------------------------------------------------------- */

.full-width-bloc{
	padding-left:0;
	padding-right:0;
}
.full-width-bloc .row{
	margin-left:0;
	margin-right:0;
}
.full-width-bloc .container{
	width:100%;
	max-width:100%!important;
}
.full-width-bloc .carousel img{
	width:100%;
	height:auto;
}


/* Background Textures */

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


/* 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);
}


/* = 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}
}

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

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

.btn-rd{
	border-radius: 40px;
}
.btn-wire{
	background:transparent!important;
	border:2px solid transparent;
}
.btn-wire:hover{
	background:transparent!important;
	border:2px solid transparent;
}

/* = Icons
-------------------------------------------------------------- */
.icon-sm{
	font-size:18px!important;
}


/* = Text & Icon Styles
-------------------------------------------------------------- */
.blockquote{
	padding:0 20px;
	border-left:2px solid;
}
.blockquote.text-end{
	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;
}
/* = Masonary
-------------------------------------------------------------- */
.card-columns .card {
	margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
	.card-columns {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	orphans: 1;
	widows: 1;
}
.card-columns .card {
	display: inline-block;
	width: 100%;
}
}



/* 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;
}

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

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"CabinetGrotesk-Medium";
}
.container{
	max-width:1140px;
}
.img-ffm-big-laurel-style{
	width:170px;
}
.h1-style{
	font-family:"Roboto";
	font-weight:700;
	font-size:15px;
	width:96.77%;
}
.img-bloc-0-style{
	width:166px;
}
.social-icon-size-sm{
	width:40px;
}
.social-icon-size{
	max-width:120px;
}
.img-fsff25-style{
	width:135px;
}
.p-bloc-0-style{
	font-family:"CabinetGrotesk-Medium";
	font-size:10px;
}
.p-bloc-2-style{
	font-family:"CabinetGrotesk-Medium";
	line-height:19px;
}
.p-3-style{
	line-height:19px;
}
.p-4-style{
	line-height:19px;
}
.p-5-style{
	line-height:19px;
}
.p-2-style{
	font-family:"CabinetGrotesk-Medium";
	font-size:10px;
}
.p-style{
	font-family:"CabinetGrotesk-Medium";
}
.h4-style{
	font-family:"CabinetGrotesk-Medium";
	font-size:12px;
}
.h4-follow-us-style{
	font-family:"Roboto";
	font-size:20px;
}
.h3-screenings-style{
	font-family:"Roboto";
}
.p-bloc-3-style{
	font-family:"CabinetGrotesk-Medium";
	font-size:12px;
}
.h3-style{
	font-family:"Roboto";
	font-size:20px;
	letter-spacing:5px;
}
.p-11-style{
	font-family:"Roboto";
}
.footer-link{
	font-size:12px;
	font-family:"Roboto";
}
.p-bloc-9-style{
	font-family:"CabinetGrotesk-Light";
	font-size:12px;
}
.p-2-bloc-0-style{
	font-family:"CabinetGrotesk-Bold";
	font-size:19px;
	font-weight:700;
}
.img-style{
	width:35px;
}
.impr-bttn{
	font-family:"Roboto";
	font-weight:bold;
	font-size:16px;
}
.linknoline{
	text-decoration:none;
}
.img-bloc-6-style{
	width:241px;
}
.p-13-style{
	font-size:22px;
	font-family:"CabinetGrotesk-Medium";
}
.img-19-style{
	width:258px;
}
.bloc5custom{
	text-transform:none!important;
	text-decoration:none!important;
	color:#FFFFFF!important;
}
.bloc5custom:active{
	text-decoration:none!important;
}
.bloc5custom:focus{
	text-transform:none;
}
.customhtmlstyle{
	text-decoration:none!important;
	font-size:14px;
}
.customhtmlstyle:hover{
	text-transform:none;
	text-decoration:none;
}
.customhtmlstyle:active{
	text-decoration:none!important;
	text-transform:none!important;
}
.customhtmlstyle:focus{
	text-transform:none!important;
	text-decoration:none!important;
}
.customhtmlstyle:visited{
	text-transform:none!important;
	text-decoration:none!important;
}
h1,h2,h3,h4,h5,h6,p,label,.btn,a:hover{
	text-transform:none;
	text-decoration:none;
}
h1,h2,h3,h4,h5,h6,p,label,.btn,a:active{
	text-transform:none;
	text-decoration:none;
}
.buttonextrasytyle{
	font-family:"CabinetGrotesk-Medium";
	padding:4px 13px 3px 13px;
}
.p-bloc-12-style{
	font-family:"CabinetGrotesk-Medium";
	font-size:20px;
	letter-spacing:px;
}
.p-16-style{
	font-size:20px;
}

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

/* Swatch Variables */
:root{
	
	--swatch-var-7343:#000000;
	
	--swatch-var-3743:rgba(200,200,200,1.00);
	
	--swatch-var-6251:rgba(99,99,99,1.00);
	
	--swatch-var-7907:rgba(100,100,0,1.00);
	
	--swatch-var-2722:rgba(100,200,200,1.00);
	
	--swatch-var-5967:rgba(0,100,100,1.00);
	
	--swatch-var-250:rgba(200,200,100,1.00);
	
	--swatch-var-230:rgba(45,135,255,1.00);
	
	--swatch-var-1290:rgba(212,219,205,1.00);
	
	--swatch-var-994:rgba(221,243,229,0.84);
	
	--swatch-var-6367:rgba(0,0,0,1.00);
	
	--swatch-var-6676:rgba(224,246,239,1.00);
	
	--swatch-var-1058:rgba(56,111,157,1.00);
	
	--swatch-var-5119:rgba(255,255,255,1.00);
	
	--swatch-var-262:rgba(58,111,157,1.00);
	
	--swatch-var-1566:rgba(212,229,240,0.73);
	
}


/* Background colour styles */

.bgc-1290{
	background-color:var(--swatch-var-1290);
}
.bgc-7343{
	background-color:var(--swatch-var-7343);
}
.bgc-6367{
	background-color:var(--swatch-var-6367);
}

/* Text colour styles */

.tc-5119{
	color:var(--swatch-var-5119)!important;
}
.tc-6367{
	color:var(--swatch-var-6367)!important;
}
.tc-6676{
	color:var(--swatch-var-6676)!important;
}
.tc-1566{
	color:var(--swatch-var-1566)!important;
}

/* Button colour styles */

.wire-btn-c-6251{
	color:var(--swatch-var-6251)!important;
	border-color:var(--swatch-var-6251)!important;
}

/* Link colour styles */

.ltc-5119{
	color:var(--swatch-var-5119)!important;
}
.ltc-5119:hover{
	color:#CCCCCC!important;
}
.ltc-1290{
	color:var(--swatch-var-1290)!important;
}
.ltc-1290:hover{
	color:#A1A89A!important;
}

/* Icon colour styles */

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

/* Bloc image backgrounds */

.bg--28C-29Schmidbauer-Film-20Nikolai-20Huber-Morgenspaziergang{
	background-image:url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Morgenspaziergang.jpg");
	background-image: -webkit-image-set(url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Morgenspaziergang.webp") 1x,
url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Morgenspaziergang.webp") 2x);background-image: image-set(url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Morgenspaziergang.jpg") 1x,
url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Morgenspaziergang.jpg") 2x,url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Morgenspaziergang.webp") 1x,
url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Morgenspaziergang.webp") 2x);
}
.bg--28C-29Schmidbauer-Film-20Nikolai-20Huber-Fiete-20-28Leonard-20Scheicher-29{
	background-image:url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Fiete%20%28Leonard%20Scheicher%29.jpg");
	background-image: -webkit-image-set(url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Fiete%20%28Leonard%20Scheicher%29.webp") 1x,
url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Fiete%20%28Leonard%20Scheicher%29.webp") 2x);background-image: image-set(url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Fiete%20%28Leonard%20Scheicher%29.jpg") 1x,
url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Fiete%20%28Leonard%20Scheicher%29.jpg") 2x,url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Fiete%20%28Leonard%20Scheicher%29.webp") 1x,
url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Fiete%20%28Leonard%20Scheicher%29.webp") 2x);
}
.bg--28C-29Schmidbauer-Film-20Nikolai-20Huber-Urlaubsstimmung-20mit-20Amiri-20-28Zeynep-20Bozbay-20l-29-20Luca-20-28Johanens-20Nussbaum-20m-29-20und-20Fiete-20-28Leonard-20Scheicher-20r-29{
	background-image:url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Urlaubsstimmung%20mit%20Amiri%20%28Zeynep%20Bozbay,%20l%29,%20Luca%20%28Johanens%20Nussbaum,%20m%29%20und%20Fiete%20%28Leonard%20Scheicher,%20r%29.jpg");
	background-image: -webkit-image-set(url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Urlaubsstimmung%20mit%20Amiri%20%28Zeynep%20Bozbay,%20l%29,%20Luca%20%28Johanens%20Nussbaum,%20m%29%20und%20Fiete%20%28Leonard%20Scheicher,%20r%29.webp") 1x,
url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Urlaubsstimmung%20mit%20Amiri%20%28Zeynep%20Bozbay,%20l%29,%20Luca%20%28Johanens%20Nussbaum,%20m%29%20und%20Fiete%20%28Leonard%20Scheicher,%20r%29.webp") 2x);background-image: image-set(url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Urlaubsstimmung%20mit%20Amiri%20%28Zeynep%20Bozbay,%20l%29,%20Luca%20%28Johanens%20Nussbaum,%20m%29%20und%20Fiete%20%28Leonard%20Scheicher,%20r%29.jpg") 1x,
url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Urlaubsstimmung%20mit%20Amiri%20%28Zeynep%20Bozbay,%20l%29,%20Luca%20%28Johanens%20Nussbaum,%20m%29%20und%20Fiete%20%28Leonard%20Scheicher,%20r%29.jpg") 2x,url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Urlaubsstimmung%20mit%20Amiri%20%28Zeynep%20Bozbay,%20l%29,%20Luca%20%28Johanens%20Nussbaum,%20m%29%20und%20Fiete%20%28Leonard%20Scheicher,%20r%29.webp") 1x,
url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Urlaubsstimmung%20mit%20Amiri%20%28Zeynep%20Bozbay,%20l%29,%20Luca%20%28Johanens%20Nussbaum,%20m%29%20und%20Fiete%20%28Leonard%20Scheicher,%20r%29.webp") 2x);
}
.bg--28C-29Schmidbauer-Film-20Nikolai-20Huber-Katja-20-28Caro-20Cult-20l-29-20und-20Luca-20-28Johannes-20Nussbaum-20r-29-20sind-20ein-20Paar{
	background-image:url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Katja%20%28Caro%20Cult,%20l%29%20und%20Luca%20%28Johannes%20Nussbaum,%20r%29%20sind%20ein%20Paar.jpg");
	background-image: -webkit-image-set(url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Katja%20%28Caro%20Cult,%20l%29%20und%20Luca%20%28Johannes%20Nussbaum,%20r%29%20sind%20ein%20Paar.webp") 1x,
url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Katja%20%28Caro%20Cult,%20l%29%20und%20Luca%20%28Johannes%20Nussbaum,%20r%29%20sind%20ein%20Paar.webp") 2x);background-image: image-set(url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Katja%20%28Caro%20Cult,%20l%29%20und%20Luca%20%28Johannes%20Nussbaum,%20r%29%20sind%20ein%20Paar.jpg") 1x,
url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Katja%20%28Caro%20Cult,%20l%29%20und%20Luca%20%28Johannes%20Nussbaum,%20r%29%20sind%20ein%20Paar.jpg") 2x,url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Katja%20%28Caro%20Cult,%20l%29%20und%20Luca%20%28Johannes%20Nussbaum,%20r%29%20sind%20ein%20Paar.webp") 1x,
url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Katja%20%28Caro%20Cult,%20l%29%20und%20Luca%20%28Johannes%20Nussbaum,%20r%29%20sind%20ein%20Paar.webp") 2x);
}
.bg-bubbles-bg8{
	background-image:url("img/bubbles-bg8.png?timestamp=8682?timestamp=8682?timestamp=8682");
}
.bg-bg05-compressed{
	background-image:url("img/bg05-compressed.jpg");
	background-image: -webkit-image-set(url("img/bg05-compressed.webp") 1x,
url("img/bg05-compressed.webp") 2x);background-image: image-set(url("img/bg05-compressed.jpg") 1x,
url("img/bg05-compressed.jpg") 2x,url("img/bg05-compressed.webp") 1x,
url("img/bg05-compressed.webp") 2x);
}
.bg--28C-29Schmidbauer-Film-20Nikolai-20Huber-Katja-20-28Caro-20Cult-20l-29-20und-20Luca-20-28Johannes-20Nussbaum-20r-29-20sind-20ein-20Paar{
	background-image:url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Katja%20%28Caro%20Cult,%20l%29%20und%20Luca%20%28Johannes%20Nussbaum,%20r%29%20sind%20ein%20Paar.jpg");
	background-image: -webkit-image-set(url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Katja%20%28Caro%20Cult,%20l%29%20und%20Luca%20%28Johannes%20Nussbaum,%20r%29%20sind%20ein%20Paar.webp") 1x,
url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Katja%20%28Caro%20Cult,%20l%29%20und%20Luca%20%28Johannes%20Nussbaum,%20r%29%20sind%20ein%20Paar.webp") 2x);background-image: image-set(url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Katja%20%28Caro%20Cult,%20l%29%20und%20Luca%20%28Johannes%20Nussbaum,%20r%29%20sind%20ein%20Paar.jpg") 1x,
url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Katja%20%28Caro%20Cult,%20l%29%20und%20Luca%20%28Johannes%20Nussbaum,%20r%29%20sind%20ein%20Paar.jpg") 2x,url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Katja%20%28Caro%20Cult,%20l%29%20und%20Luca%20%28Johannes%20Nussbaum,%20r%29%20sind%20ein%20Paar.webp") 1x,
url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Katja%20%28Caro%20Cult,%20l%29%20und%20Luca%20%28Johannes%20Nussbaum,%20r%29%20sind%20ein%20Paar.webp") 2x);
}
.bg--28C-29Schmidbauer-Film-20Nikolai-20Huber-Fiete-20-28Leonard-20Scheicher-20r-29-20und-20Luca-20-28Johannes-20Nussbaum-20l-29-20treffen-20sich-20ungeplant-20nach-20zehn-20Jahren-20wieder{
	background-image:url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Fiete%20%28Leonard%20Scheicher,%20r%29%20und%20Luca%20%28Johannes%20Nussbaum,%20l%29%20treffen%20sich%20ungeplant%20nach%20zehn%20Jahren%20wieder.jpg");
	background-image: -webkit-image-set(url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Fiete%20%28Leonard%20Scheicher,%20r%29%20und%20Luca%20%28Johannes%20Nussbaum,%20l%29%20treffen%20sich%20ungeplant%20nach%20zehn%20Jahren%20wieder.webp") 1x,
url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Fiete%20%28Leonard%20Scheicher,%20r%29%20und%20Luca%20%28Johannes%20Nussbaum,%20l%29%20treffen%20sich%20ungeplant%20nach%20zehn%20Jahren%20wieder.webp") 2x);background-image: image-set(url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Fiete%20%28Leonard%20Scheicher,%20r%29%20und%20Luca%20%28Johannes%20Nussbaum,%20l%29%20treffen%20sich%20ungeplant%20nach%20zehn%20Jahren%20wieder.jpg") 1x,
url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Fiete%20%28Leonard%20Scheicher,%20r%29%20und%20Luca%20%28Johannes%20Nussbaum,%20l%29%20treffen%20sich%20ungeplant%20nach%20zehn%20Jahren%20wieder.jpg") 2x,url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Fiete%20%28Leonard%20Scheicher,%20r%29%20und%20Luca%20%28Johannes%20Nussbaum,%20l%29%20treffen%20sich%20ungeplant%20nach%20zehn%20Jahren%20wieder.webp") 1x,
url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Fiete%20%28Leonard%20Scheicher,%20r%29%20und%20Luca%20%28Johannes%20Nussbaum,%20l%29%20treffen%20sich%20ungeplant%20nach%20zehn%20Jahren%20wieder.webp") 2x);
}
.bg--28C-29Schmidbauer-Film-20Nikolai-20Huber-Fiete-20-28Leonard-20Scheicher-29{
	background-image:url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Fiete%20%28Leonard%20Scheicher%29.jpg");
	background-image: -webkit-image-set(url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Fiete%20%28Leonard%20Scheicher%29.webp") 1x,
url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Fiete%20%28Leonard%20Scheicher%29.webp") 2x);background-image: image-set(url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Fiete%20%28Leonard%20Scheicher%29.jpg") 1x,
url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Fiete%20%28Leonard%20Scheicher%29.jpg") 2x,url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Fiete%20%28Leonard%20Scheicher%29.webp") 1x,
url("img/%28C%29Schmidbauer-Film,%20Nikolai%20Huber_Fiete%20%28Leonard%20Scheicher%29.webp") 2x);
}
.bg-bbl-still-10{
	background-image:url("img/bbl_still_10.jpeg");
	background-image: -webkit-image-set(url("img/bbl_still_10.webp") 1x,
url("img/bbl_still_10.webp") 2x);background-image: image-set(url("img/bbl_still_10.jpeg") 1x,
url("img/bbl_still_10.jpeg") 2x,url("img/bbl_still_10.webp") 1x,
url("img/bbl_still_10.webp") 2x);
}
.bg-bbl-heroimg-02{
	background-image:url("img/bbl_heroimg_02.jpg");
	background-image: -webkit-image-set(url("img/bbl_heroimg_02.webp") 1x,
url("img/bbl_heroimg_02.webp") 2x);background-image: image-set(url("img/bbl_heroimg_02.jpg") 1x,
url("img/bbl_heroimg_02.jpg") 2x,url("img/bbl_heroimg_02.webp") 1x,
url("img/bbl_heroimg_02.webp") 2x);
}

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

.social-link-bric a svg{
	transition: all 0.3s ease-in-out;
}
.social-hover-fade a:hover svg{
	opacity: 0.5;
}
.social-hover-grow a:hover svg{
	transform: scale(1.2);
}
.social-hover-shrink a:hover svg{
	transform: scale(0.9);
}
.social-hover-shadow a:hover svg{
	filter: drop-shadow(0px 6px 2px rgba(0,0,0,0.3));
	overflow: visible;
}

/* = Additional CSS
-------------------------------------------------------------- */

/* Tighten only this Bloc (optional) */
.bloc.video-tight,
.bloc.video-tight.bloc-lg,
.bloc.video-tight.bloc-md-lg{
  padding-top:20px;
  padding-bottom:20px;
}

/* Teaser/Trailer Player (scoped) */
.bubbles-player{position:relative;width:100%;max-width:100%;}
.bubbles-player .player-media{position:relative;width:100%;}
.bubbles-player .player-media video,
.bubbles-player .player-media img{display:block;width:100%;height:auto;object-fit:cover;}
.bubbles-player .overlay{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;pointer-events:none;}
.bubbles-player .overlay .overlay-inner{text-align:center;color:#FFFFFF;text-shadow:0 2px 12px rgba(0,0,0,.6);}
.bubbles-player .play-btn{
  appearance:none;border:2px solid rgba(255,255,255,1);border-radius:8px;
  padding:10px 16px;min-height:46px;background:rgba(0,0,0,.35);
  backdrop-filter:saturate(120%) blur(2px);color:#fff;display:inline-flex;
  align-items:center;justify-content:center;gap:10px;cursor:pointer;
  transition:transform .2s ease, background .2s ease;pointer-events:auto;
}
.bubbles-player .play-btn:hover{transform:scale(1.02);background:rgba(255,255,255,.08);}
.bubbles-player .play-icon{width:0;height:0;border-left:12px solid #fff;border-top:8px solid transparent;border-bottom:8px solid transparent;}
.bubbles-player .play-text{font-size:14px;letter-spacing:.02em;}
.bubbles-player .label{margin-top:10px;font-size:12px;letter-spacing:.02em;}
.bubbles-player .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,


/* = 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){
	.p-bloc-0-style{
		font-size:9px;
	}
	
}

@media (max-width: 767px){
	.p-bloc-0-style{
		font-size:7px;
	}
	
}

@media (max-width: 575px){
	.footer-link{
		text-align:center;
	}
	.img-ffm-big-laurel-style{
		width:160px;
	}
	.p-bloc-0-style{
		font-size:7px;
	}
	.p-bloc-2-style{
		font-size:9px;
		line-height:12px;
	}
	.p-4-style{
		font-size:9px;
		line-height:12px;
	}
	.p-3-style{
		font-size:9px;
		line-height:12px;
	}
	.p-5-style{
		font-size:9px;
		line-height:12px;
	}
	.p-bloc-12-style{
		font-size:10px;
	}
	
}

