/*-----------------------------------------------------------------------------------
	OhSiBo
	About: Winter 2025
	Author: erik de saedeleer
	Version: 10.0
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:#FFFFFF;
    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:'Muli';
	src: url('./fonts/Muli/Muli-Regular.ttf');
	src: url('./fonts/Muli/Muli-Regular.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;
}


/* Sizes */

.bloc-xl{
	padding:150px 20px;
}
.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;
}


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


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

/* = Sticky Nav
-------------------------------------------------------------- */

.sticky-nav.sticky{
	position:fixed;
	top:0;
	z-index:1000;
	box-shadow:0 1px 2px rgba(0,0,0,.3);
	 transition: all .2s ease-out;
}
/* 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-clear{
	margin:0;
}
.mg-sm{
	margin-top:10px;
	margin-bottom:5px;
}
.mg-md{
	margin-top:10px;
	margin-bottom:20px;
}
.mg-lg{
	margin-top:10px;
	margin-bottom:40px;
}
img.mg-sm,img.mg-md,img.mg-lg{
	margin-top: 0;
}
img.mg-sm{
	margin-bottom:10px;
}
img.mg-md{
	margin-bottom:30px;
}
img.mg-lg{
	margin-bottom:50px;
}

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

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

/* Prevent ugly blue glow on chrome and safari */
button{
	outline: none!important;
}

.btn-sq{
	border-radius: 0px;
}

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


/* = Text & Icon Styles
-------------------------------------------------------------- */
.lg-shadow{
	text-shadow:0 2px 5px rgba(0,0,0,.5);
}


.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;
}




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

.hide-indicators{
	display:none;
}


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

/* Hide Object */
.object-hidden{
	display:none;
}

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

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Helvetica";
}
.container{
	max-width:1140px;
}
h1{
	font-size:40px;
	line-height:48px;
	font-family:"Lato";
	font-weight:700;
}
h2{
	font-size:30px;
	line-height:38px;
}
h3{
	line-height:31px;
	font-size:23px;
	font-family:"Lato";
	font-weight:700;
	color:#000000!important;
}
h4{
	font-size:20px;
	line-height:28px;
}
p{
	font-size:18px;
	line-height:23px;
	font-family:"Lato";
	font-weight:400;
	color:#2F3236!important;
}
a{
	font-size:18px;
	line-height:23px;
}
.navbar-nav li a{
	font-size:14px;
	line-height:23px;
	font-family:"Muli";
	font-weight:500;
	text-decoration:none;
	color:#000000!important;
}
.navbar-brand{
	font-size:23px;
	line-height:31px;
}
.navbar-brand img{
	width:150px;
}
.navbar-nav li a:hover{
	font-family:"Muli";
	font-weight:500;
	font-size:14px;
	color:#565656!important;
	text-decoration:overline!important;
	line-height:23px;
}
.raleway{
	font-family:"Raleway";
	font-weight:400;
	font-size:18px;
	color:#2F3236!important;
}
.muli{
	font-family:"Muli";
	font-weight:400;
	color:#2F3236!important;
	font-size:18px;
}
.lato{
	font-family:"Lato";
	font-weight:400;
	font-size:18px;
	color:#2F3236!important;
}
.titel-1{
	font-size:22px;
	font-family:"Lato";
	font-weight:700;
	color:#000000!important;
}
.titel-2{
	font-size:22px;
	font-family:"Muli";
	font-weight:700;
	color:#000000!important;
}
.titel-3{
	font-family:"Lato";
	font-weight:700;
	font-size:22px;
	color:#000000!important;
}
.button{
	font-family:"Lato";
	font-weight:400;
	background-color:#000000;
	font-size:18px;
	margin:10px 0px 0px 0px;
	padding:0px 0px 0px 0px;
}
.footer-tekst{
	font-family:"Lato";
	font-weight:400;
	color:#FFFFFF!important;
	font-size:18px;
}
.h1-style{
	width:100%;
}
.button:hover{
	background-color:#999999;
}
.p-style{
	font-family:Lato;
	font-weight:700;
}
.p-bloc-14-style{
	font-family:Lato;
	font-weight:700;
}
.p-bloc-16-style{
	font-family:Lato;
	font-weight:700;
}
.p-bloc-8-style{
	font-family:Lato;
	font-weight:700;
}
.scrollToTop{
	color:#28282E!important;
	background-color:#CACACA;
}
.navbar-brand:hover{
	font-size:23px;
	line-height:31px;
}
.text-span-color{
	color:#ff2600;
}
.img-style{
	width:360px;
	height:540px;
}
.img-style-small{
	width:360px;
	height:240px;
}
.p-bloc-1-style{
	line-height:40px;
}
.p-2-style{
	line-height:40px;
}
.p-3-style{
	line-height:200px;
}
.foto-contact{
	margin:66px 66px 66px 66px;
}
.img-chanson1-w-style{
	height:370px;
}
.rij-hv{
	width:550px;
	height:367px;
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
}
.img-dacapo9-style{
	width:508px;
}
.home-header{
	font-family:"Oxygen";
	font-weight:700;
	font-size:50px;
	color:#FFFFFF!important;
	letter-spacing:1px;
	text-shadow:2px 1px 0px #000000;
}
.home-subheader{
	font-family:"Oxygen";
	font-weight:bold;
	font-size:20px;
	color:#FFFFFF!important;
	letter-spacing:1px;
	text-shadow:1px 1px 0px #000000;
}
.interior-site-title{
	background-color:rgba(254,255,255,0.70);
	text-transform:capitalize;
	letter-spacing:0.02em;
	font-family:"PT Sans Narrow";
	font-weight:700;
	color:#000000!important;
	border-style:solid;
	border-color:#009192!important;
	box-shadow:0px 0px 28px rgba(0,0,0,0.40);
	padding:14px 50px 10px 50px;
	border-width:4px 4px 4px 4px;
}
.interior-responsive-banner{
	padding-top:230px;
	padding-bottom:140px;
}
.img-calida-bip-style{
	height:540px;
	width:360px;
}
.img-406-style{
	height:540px;
	width:360px;
}
.img-407-style{
	height:540px;
	width:360px;
}
.img-collecties-style{
	width:360px;
	height:494px;
}
.img-19-style{
	height:494px;
}
.img-dacapo2-style{
	height:495px;
}
.img-24-style{
	height:495px;
}
.img-dacapo-hw22-0-style{
	height:495px;
}
.img-lingadore3-style{
	height:360px;
}
.img-lingadore1-style{
	height:495px;
}
.img-lingadore2-style{
	height:495px;
}
.img-simone1-style{
	height:495px;
}
.img-wish-w-style{
	height:495px;
}
.img-saga-w-style{
	height:495px;
}
.img-lingadore-style{
	height:495px;
}
.img-59-style{
	height:495px;
}
.img-60-style{
	height:495px;
}
.img-coemi1-style{
	height:495px;
}
.img-308-style{
	height:495px;
}
.img-309-style{
	height:495px;
}
.img-bloc-107-style{
	height:495px;
}
.img-bloc-94-style{
	height:540px;
}
.img-314-style{
	height:540px;
}
.img-315-style{
	height:540px;
}
.img-bloc-110-style{
	height:540px;
}
.img-317-style{
	height:540px;
}
.img-318-style{
	height:540px;
}
.img-bloc-111-style{
	height:495px;
}
.img-320-style{
	height:495px;
}
.btn-style{
	text-decoration:none;
	font-style:normal;
}
.img-013-calida-style{
	height:480px;
}
.img-012-calida-style{
	height:480px;
}
.img-018-coemi-style{
	height:530px;
}
.od{
	font-family:"Lato";
	font-weight:900;
	color:#FFFFFF!important;
	border-color:#000000!important;
	opacity:1.0;
	background-color:#000000;
	padding:0px 0px 0px 0px;
}
.button2{
	font-family:"Lato";
	font-weight:400;
	background-color:#000000;
	font-size:18px;
	margin:10px 0px 0px 0px;
	padding:0px 0px 0px 0px;
}
.button2:hover{
	background-color:#999999;
}
.img-132-style{
	height:540px;
}
.img-133-style{
	height:540px;
}
.img-134-style{
	height:540px;
}
.img-lidea-11-style{
	height:540px;
}
.img-147-style{
	height:540px;
}
.img-148-style{
	height:540px;
}
.img-freya-style{
	height:540px;
}
.img-bloc-120-style{
	height:540px;
}
.img-243-style{
	width:555px;
	height:370px;
}
.img-244-style{
	width:555px;
	height:370px;
}
.row-style{
	width:100%;
}
.img-calida1-style{
	height:269px;
	width:360px;
}
.img-voorgevel-zom-style{
	height:370px;
	width:750px;
}
.p-coordinaten-style{
	width:100%;
}
.img-bloc-180-style{
	width:360px;
}
.img-bloc-155-style{
	height:540px;
}
.img-205-style{
	height:540px;
}
.img-15-h-mey-style{
	height:370px;
}
.img-6-h-2-calida-style{
	height:370px;
}
.span1{
	font-family:"Lato";
	font-weight:700;
	font-size:18px;
}
.img-045-coemi-style{
	height:540px;
}
.p-slider-style{
	font-size:18px;
}

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

/* Swatch Variables */
:root{
	
	--swatch-var-1243:rgba(255,255,255,1.0);
	
	--swatch-var-1858:#282828;
	
	--swatch-var-4259:#000000;
	
	--swatch-var-6131:#FF2600;
	
	--swatch-var-2:#FFFFFF;
	
}


/* Background colour styles */

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

/* Text colour styles */

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

/* Icon colour styles */

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

/* Bloc image backgrounds */

.bg-banner{
	background-image:url("img/banner.png");
	background-image: -webkit-image-set(url("img/banner.webp") 1x,
url("img/banner.webp") 2x);background-image: image-set(url("img/banner.png") 1x,
url("img/banner.png") 2x,url("img/banner.webp") 1x,
url("img/banner.webp") 2x);
}
.bg-banner{
	background-image:url("img/banner.png");
	background-image: -webkit-image-set(url("img/banner.webp") 1x,
url("img/banner.webp") 2x);background-image: image-set(url("img/banner.png") 1x,
url("img/banner.png") 2x,url("img/banner.webp") 1x,
url("img/banner.webp") 2x);
}
.bg-01-20DACAPO-parralax{
	background-image:url("img/01%20DACAPO-parralax.jpg");
	background-image: -webkit-image-set(url("img/01%20DACAPO-parralax.webp") 1x,
url("img/01%20DACAPO-parralax.webp") 2x);background-image: image-set(url("img/01%20DACAPO-parralax.jpg") 1x,
url("img/01%20DACAPO-parralax.jpg") 2x,url("img/01%20DACAPO-parralax.webp") 1x,
url("img/01%20DACAPO-parralax.webp") 2x);
}
.bg-02-20DACAPO-parralax{
	background-image:url("img/02%20DACAPO-parralax.jpg");
	background-image: -webkit-image-set(url("img/02%20DACAPO-parralax.webp") 1x,
url("img/02%20DACAPO-parralax.webp") 2x);background-image: image-set(url("img/02%20DACAPO-parralax.jpg") 1x,
url("img/02%20DACAPO-parralax.jpg") 2x,url("img/02%20DACAPO-parralax.webp") 1x,
url("img/02%20DACAPO-parralax.webp") 2x);
}

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

.edit-mode  {
	    display: grid;
	      grid-template-columns: repeat(4, 1fr);
	      grid-gap: 10px;
}
	.edit-mode img{
	 width: 100%;
	 padding: 7px 0;
}
.owl-carousel a[data-lightbox]:hover::before{
	left: 50%;
}
@media (max-width: 500px){
	.edit-mode {
	-webkit-column-count: 1;
	 -moz-column-count: 1;
	column-count: 1;
}
}

/* = 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){
	h1{
		font-size:35px;
		line-height:43px;
	}
	h2{
		line-height:36px;
		font-size:28px;
	}
	h3{
		font-size:22px;
		line-height:30px;
	}
	h4{
		font-size:19px;
		line-height:27px;
	}
	p{
		font-size:16px;
		line-height:24px;
	}
	a{
		line-height:24px;
		font-size:16px;
	}
	.interior-site-title{
		text-transform:capitalize;
		font-family:"PT Sans Narrow";
		font-weight:700;
		padding-right:40px;
		padding-left:40px;
	}
	.interior-responsive-banner{
		padding-top:200px;
		padding-bottom:110px;
	}
	
}

@media (max-width: 767px){
	h1{
		font-size:30px;
		line-height:38px;
	}
	h2{
		font-size:25px;
		line-height:33px;
	}
	h3{
		line-height:29px;
		font-size:21px;
	}
	h4{
		line-height:26px;
		font-size:18px;
	}
	p{
		line-height:23px;
		font-size:15px;
	}
	a{
		font-size:15px;
		line-height:23px;
	}
	.button{
		margin-bottom:20px;
	}
	.interior-site-title{
		padding:15px 28px 12px 28px;
	}
	.interior-responsive-banner{
		padding-top:150px;
		padding-bottom:70px;
	}
	.button2{
		margin-bottom:20px;
	}
	
}

@media (max-width: 575px){
	h1{
		font-size:12px;
		line-height:36px;
	}
	h2{
		font-size:23px;
		line-height:31px;
	}
	h3{
		font-size:20px;
		line-height:28px;
	}
	h4{
		font-size:17px;
		line-height:25px;
	}
	p{
		font-size:14px;
		line-height:22px;
	}
	a{
		line-height:23px;
		font-size:14px;
	}
	.button{
		padding-bottom:0px;
		margin-bottom:20px;
	}
	.header1{
	}
	.interior-site-title{
		padding:13px 20px 10px 20px;
	}
	.interior-responsive-banner{
		padding-top:130px;
		padding-bottom:60px;
	}
	.img-bloc-3-style{
		width:257px;
	}
	.p-bloc-3-style{
		width:71.11%;
	}
	.button2{
		padding-bottom:0px;
		margin-bottom:20px;
		font-size:13px;
	}
	.img-243-style{
		width:270px;
	}
	.img-406-style{
		height:540px;
	}
	.img-calida-bip-style{
		width:360px;
		height:540px;
	}
	.img-15-h-mey-style{
		height:180px;
	}
	.img-6-h-2-calida-style{
		height:180px;
	}
	.img-2-calida-style{
		height:540px;
	}
	.h3-style{
		font-family:"Lato";
		font-weight:700;
	}
	
	/* Mobile Text Margin Offsets */
	.mg-md-xs{
		margin-top:10px;
		margin-bottom:20px;
	}
	
}

