/*-----------------------------------------------------------------------------------
	    Conference Dynamics
        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-x:hidden;} /* Prevents unwanted scroll space when scroll FX used. */
a,button{transition: background .3s ease-in-out;outline: none!important;} /* Prevent ugly blue glow on chrome and safari */
a:hover{text-decoration: none; cursor:pointer;}

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

.bloc{
	width:100%;
	clear:both;
	background: 50% 50% no-repeat;
	padding:0 50px;
	-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-md{
	padding:50px;
}
.bloc-sm{
	padding:20px 50px;
}

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

.bg-center,.bg-l-edge,.bg-r-edge,.bg-t-edge,.bg-b-edge,.bg-tl-edge,.bg-bl-edge,.bg-tr-edge,.bg-br-edge,.bg-repeat{
	-webkit-background-size: auto!important;
	-moz-background-size: auto!important;
	-o-background-size: auto!important;
	background-size: auto!important;
}
.bg-repeat{
	background:repeat;
}
.bg-t-edge{
	background: top no-repeat;
}


/* Background Effects */

.b-parallax{
	background-attachment:fixed;
}

/* Disable Parallax on Mobile Touch Devices */
@media (hover: none) {
	.b-parallax{
	background-attachment:scroll;
}
}

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


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

.hero .hero-nav{
	padding-left:inherit;
	padding-right:inherit;
}
/* Handle Multi Level Navigation */.navbar-light .navbar-nav .nav-link {
	color: rgb(64, 64, 64);
}
.btco-menu li > a {
	padding: 10px 15px;
	color: #000;
}
.btco-menu .active a:focus,.btco-menu li a:focus ,.navbar > .show > a:focus{
	background: transparent;
	outline: 0;
}
.dropdown-menu .show > .dropdown-toggle::after{
	transform: rotate(-90deg);
}

/* = Bric adjustment margins
-------------------------------------------------------------- */

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

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

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

/* = Icons
-------------------------------------------------------------- */
.icon-lg{
	font-size:60px!important;
}
.icon-xl{
	font-size:100px!important;
}
.icon-round{
	margin:0 auto;
	border:2px solid transparent;
	border-radius: 50%;
	padding: 32px 30px 26px 30px;
	min-width:80px;
}
.icon-round.icon-md,.icon-square.icon-md,.icon-rounded.icon-md{
	min-width: 92px;
}
.icon-round.icon-lg,.icon-square.icon-lg,.icon-rounded.icon-lg{
	min-width: 122px;
}
.icon-round.icon-xl,.icon-square.icon-xl,.icon-rounded.icon-xl{
	min-width: 162px;
}

/* Image Frame */
.img-frame,.img-frame-md,.img-frame-lg,.img-frame-rd,.img-frame-rd-md,.img-frame-rd-lg{
	background:#FFF;
	border:1px solid rgba(0,0,0,0.1);
	box-shadow:0 2px 2px rgba(0,0,0,0.05);
	padding:4px;
}
.img-frame{
	border-radius:3px;
}
.img-frame-md,.img-frame-lg{
	border-radius:6px;
}
.img-frame-md,.img-frame-rd-md{
	padding:8px;
}
.img-frame-lg,.img-frame-rd-lg{
	padding:14px;
}



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

/* = Dividers
-------------------------------------------------------------- */
.divider-h{
	padding:20px 0;
	width:100%;
	display:inline-block;
}
.divider-h span{
	display: block;
	border-top:1px solid transparent;
}
.divider-half{
	width: 50%;
	margin: 0 auto;
}
.dropdown-menu .divider-h,.dropdown-menu .divider-half{
	padding:0;
}




/* ScrollToTop button */

.scrollToTop{
	width:40px;
	height:40px;
	position:fixed;
	bottom:20px;
	right:20px;
	opacity: 0;
	z-index: 500;
	transition: all .3s ease-in-out;
}
.scrollToTop span{
	margin-top: 6px;
}
.showScrollTop{
	font-size: 14px;
	opacity: 1;
}
/* = Lightbox
-------------------------------------------------------------- */

a[data-lightbox]{
	position: relative;
	display: block;
	text-align: center;
}
a[data-lightbox]:hover::before{
	content:"+";
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial;
	font-size:32px;
	line-height: 42px;
	width:50px;
	height:50px;
	margin-left:-25px;
	border-radius: 50%;
	background:rgba(0,0,0,.6);
	color:#FFF;
	font-weight:100;
	z-index: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
a[data-lightbox]:hover img{
	opacity: 0.6;
	-webkit-animation-fill-mode: none;
	animation-fill-mode:none;
}
.lightbox-caption{
	padding: 20px;
	color: #FFF;
	background: rgba(0,0,0,.5);
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: 5px;
}
.close-lightbox{
	color:#FFF;
	font-size: 30px;
	position: absolute;
	top:20px;
	right:20px;
	z-index: 20;
	background:rgba(0,0,0,.5);
	border:none;
	line-height: 30px;
	padding:0 9px 5px;
	opacity: 0.3;
	border-radius:.25rem;
}
.close-lightbox:hover,.next-lightbox:hover, .prev-lightbox:hover{
	opacity: 1.0;
	color:#FFF;
}
.next-lightbox, .prev-lightbox{
	font-size:20px;
	color:rgba(255,255,255,.9);
	background:rgba(0,0,0,.5);
	transition: all .2s ease-in-out;
	position: absolute;
	top:45%;
	z-index:1;
	opacity: 0.4;
	border-radius:.25rem;
}
.next-lightbox{
	padding:6px 8px 1px 13px;
	right:25px;
}
.prev-lightbox{
	padding:6px 13px 1px 10px;
	left:25px;
}

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

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

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Lato";
	font-weight:700;
	line-height:45px;
	color:#000000!important;
	font-size:30px;
}
.container{
	max-width:1140px;
}
.img-man-tabl-style{
	width:414px;
}
.row-style{
	width:82.54%;
}
.img-margin-bottom{
	margin-bottom:10px;
	height:165px;
	width:236px;
}
.img-margin-top{
	margin-top:28px;
	border-style:solid;
	background-position:left center;
	background-repeat:repeat;
	border-color:#536A76!important;
	margin-right:-166px;
	width:393px;
	height:272px;
	border-radius:18px 18px 18px 18px;
	border-width:2px 2px 2px 2px;
}
.h1-ebooks-dtp-margin-top{
	margin-top:-37px;
	font-family:"Lato";
	font-weight:700;
	color:#326A86!important;
}
.navbar-brand img{
	width:300px;
	font-family:"Lato";
	font-weight:400;
	text-transform:none;
	height:120px;
}
h1{
	font-family:"Lato";
	font-weight:700;
	font-size:40pt;
	line-height:48px;
}
h2{
	font-family:"Libre Baskerville";
	font-weight:400;
	font-size:28pt;
	color:#666666!important;
	line-height:40px;
}
h3{
	font-size:18pt;
	line-height:28px;
	font-family:"Libre Baskerville";
	font-weight:400;
	color:#666666!important;
}
h4{
	font-family:"Lato";
	font-weight:400;
	font-size:22pt;
	line-height:32px;
}
h5{
	font-size:21pt;
	line-height:29pt;
}
h6{
	font-size:18pt;
	line-height:26pt;
}
p{
	font-family:"Libre Baskerville";
	font-weight:400;
	font-size:17pt;
	line-height:21pt;
	color:#7F7F7F!important;
}
.navbar-brand img:hover{
	;
}
.container-div-style{
	text-transform:uppercase;
	width:100%;
}
.container-div-style:hover{
	text-transform:none;
}
.navigation{
	text-transform:uppercase;
	color:#808080!important;
}
.navigation:hover{
	color:#326A86!important;
	font-weight:bold;
}
.img-margin-left{
	margin-left:3px;
	margin-right:-57px;
}
.img-margin-right{
	margin-right:173px;
	width:223px;
	margin-bottom:72px;
	margin-left:200px;
}
.row-16-style{
	width:100%;
	margin-left:6px;
}
.btn-portfolio-style{
	border-radius:15px 15px 15px 15px;
}
.btn-2-style{
	font-family:"Lato";
	font-weight:400;
	color:#27338E!important;
	border-radius:12px 12px 12px 12px;
}
.icon-margin-top{
	margin-top:16px;
}
.icon-bloc-17-margin-top{
	margin-top:14px;
}
.label-style{
	line-height:20px;
}
.label-2-style{
	line-height:18px;
}
.p-margin-top{
	margin-top:-15px;
}
.label-45012-style{
	line-height:20px;
	margin-top:30px;
}
.label-3-style{
	line-height:20px;
	margin-top:16px;
}
.label-4-style{
	line-height:20px;
}
.link-margin-top{
	margin-top:3px;
}
.row-margin-top{
	margin-top:43px;
}
.row-23-margin-top{
	margin-top:14px;
}
.p-bloc-19-margin-top{
	margin-top:20px;
}
.p-18-margin-top{
	margin-top:22px;
}
.h4-margin-top{
	margin-top:16px;
}
.h4-bloc-13-margin-top{
	margin-top:18px;
}
.h4-5-margin-top{
	margin-top:18px;
}
.p-14-margin-top{
	margin-top:41px;
}
.p-15-margin-top{
	margin-top:41px;
}
.container-div-margin-top{
	margin-top:36px;
}
.container-div-bloc-8-margin-top{
	margin-top:36px;
}
.img-bloc-1-style{
	width:154px;
}
.img-2-style{
	width:157px;
}
.p-1-margin-top{
	margin-top:1px;
	color:#000000!important;
}
.link-bloc-15-style{
	font-family:Lato;
	font-weight:900;
	line-height:40px;
	font-size:30px;
}
.link-mister-drain-style{
	font-family:"Libre Baskerville";
	font-weight:700;
	line-height:24px;
	font-size:20px;
}
.h3-083-645-6666-style{
	font-size:36pt;
	font-family:Lato;
	font-weight:700;
	padding-top:12px;
}
.h2-hello-welcome-style{
	font-family:Lato;
	font-weight:900;
}
.h3-bloc-1-style{
	font-family:Lato;
	font-weight:700;
	padding-top:12px;
}
.p-bloc-21-style{
	width:82.76%;
	text-align:center;
	margin-left:47px;
}
.h1-margin-top{
	margin-top:42px;
}
.bloc-margin-top{
	padding-top:20px;
}
.h3-bloc-2-style{
	width:81.77%;
	margin-left:101px;
	font-family:Lato;
	font-weight:700;
}
.img-monique-lo-style{
	width:150px;
	height:150px;
	margin-top:-20px;
}
.img-homoeo-p-style{
	width:60%;
}
.img-4-style{
	width:100%;
}
.p-6-style{
	font-family:"Libre Baskerville";
	font-weight:400i;
}
.img-4-monique-lo-style{
	width:15%;
}
.p-8813-style{
	text-indent:0px;
	font-family:"Libre Baskerville";
	font-weight:400;
	line-height:22pt;
}
.img-16808-style{
	width:174px;
	padding-top:12px;
}
.bloc-style{
	opacity:0.6;
	padding-top:24px;
	border-style:solid;
	background-size:1px auto;
	background-color:#FFFFFF;
	border-color:#B3B3B3!important;
	padding-bottom:15px;
}
.img-moniq-style{
	width:50%;
}
.p-7-style{
	width:100%;
}
.p-8-style{
	font-family:"Libre Baskerville";
	font-weight:700;
	width:100%;
}
.navbar-nav li a{
	font-family:"Lato";
	font-weight:700;
	font-size:18px;
}
.h2-bloc-12-style{
	width:93.45%;
}
.p-13-style{
	font-family:Muli;
	font-weight:600;
}
.p-12-style{
	font-family:"Muli";
	font-weight:600;
}
.h2-bloc-20-style{
	font-size:20pt;
	line-height:28px;
	font-family:"Muli";
	font-weight:600;
	text-align:center;
}
.container-div-bloc-23-style{
	width:100%;
}
.p-bloc-20-style{
	font-size:15pt;
}
.p-bloc-5-margin-top{
	margin-top:-20px;
}
.h2-6-style{
	margin-top:18px;
}
label{
	font-family:"Lato";
	font-weight:400;
	line-height:20px;
	font-size:20px;
	color:#7F7F7F!important;
}
.btn-back-style{
	width:14.98%;
}
.h2-margin-left{
	margin-left:290px;
	width:48.68%;
}
.h2-34538-style{
	font-family:Lato;
	font-weight:700;
	font-size:26pt;
}
.p-bloc-9-style{
	width:50.09%;
	color:#333333!important;
}
.p-bloc-22-style{
	line-height:21pt;
	color:#333333!important;
}
.p-bloc-10-style{
	line-height:22pt;
	color:#7F7F7F!important;
	font-family:"Libre Baskerville";
	font-weight:400;
	font-size:16pt;
}
.p-welcome-text-style{
	line-height:21pt;
	color:#808080!important;
}
.p-bloc-26-style{
	line-height:21pt;
	color:#333333!important;
}
.faq{
	font-family:"Lato";
	font-weight:700;
	font-size:15pt;
}
.h3-style{
	font-family:Lato;
	font-weight:700;
	font-size:24pt;
}
.btn-style{
	font-family:Lato;
	font-weight:700;
	font-size:18pt;
	color:#27338E!important;
}
.answer{
	color:#333333!important;
}
a{
	font-family:"Lato";
	font-weight:700;
}
.h2-welcome-style{
	font-size:34pt;
}
.link-company-style{
	font-family:"Libre Baskerville";
	font-weight:400i;
	color:#7F7F7F!important;
}
.h2-1-style{
	font-size:36px;
	line-height:48px;
}
.h3-1-style{
	font-family:"Libre Baskerville";
	font-weight:400;
}
.button{
	font-family:"Lato";
	font-weight:700;
	color:#FFFFFF!important;
}
.h4-style{
	font-family:"Lato";
	font-weight:400;
	font-size:24pt;
}
.your-partner{
	font-family:"Libre Baskerville";
	font-weight:400;
	color:#0068A4!important;
	font-size:16pt;
}
.p-1-style{
	font-family:"Libre Baskerville";
	font-weight:400;
	color:#0068A4!important;
}
.link-style{
	font-family:"Lato";
	font-weight:400;
	color:#0068A4!important;
}
.h2-style{
	font-size:28pt;
	line-height:45px;
}
.h2-bloc-13-style{
	font-family:"Libre Baskerville";
	font-weight:400;
	font-size:28pt;
}
.img-style{
	height:222px;
}
.email-contact{
	font-family:"Lato";
	font-weight:700;
	color:#0068A4!important;
}
.cell_contact{
	font-family:"Lato";
	font-weight:700;
	color:#0068A4!important;
	font-size:24pt;
}

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

/* Background colour styles */

.bgc-gray-htmlcss-gray{
	background-color:#797979;
}
.bgc-gray-x11-gray{
	background-color:#BFBEBE;
}

/* Text colour styles */

.tc-black{
	color:#000000!important;
}
.tc-white{
	color:#FFFFFF!important;
}
.tc-gray-htmlcss-gray{
	color:#797979!important;
}
.tc-medium-electric-blue{
	color:#005392!important;
}
.tc-white-2{
	color:#FEFFFF!important;
}
.tc-medium-electric-blue-2{
	color:#005392!important;
}
.tc-medium-electric-blue-3{
	color:#005392!important;
}

/* Button colour styles */

.btn-medium-electric-blue{
	background:#005392;
	color:#FFFFFF!important;
}
.btn-medium-electric-blue:hover{
	background:#004275!important;
	color:#FFFFFF!important;
}

/* Link colour styles */

.ltc-medium-electric-blue{
	color:#005392!important;
}
.ltc-medium-electric-blue:hover{
	color:#004275!important;
}

/* Icon colour styles */

.icon-medium-electric-blue{
	color:#005392!important;
	border-color:#005392!important;
}
.icon-medium-electric-blue-2{
	color:#005392!important;
	border-color:#005392!important;
}
.icon-medium-electric-blue-3{
	color:#005392!important;
	border-color:#005392!important;
}
.icon-gray-x11-gray{
	color:#BFBEBE!important;
	border-color:#BFBEBE!important;
}

/* Bloc image backgrounds */

.bg-conference-hero{
	background-image:url("img/conference_hero.jpg");
}
.bg-hero-pattern-background{
	background-image:url("img/hero_pattern_background.png");
}
.bg-mexican-20evening1{
	background-image:url("img/mexican%20evening1.jpg");
}
.bg-shabeen-antique{
	background-image:url("img/shabeen_antique.jpg");
}



/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px)
{
    .bloc{
        padding-left: 20px; 
        padding-right: 20px;  
    }
    .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%;}
    .page-container, #hero-bloc{overflow-x: hidden;position: relative;} /* Prevent unwanted side scroll on mobile */
    .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)
{
    .page-container{
        overflow-x: hidden;
        position:relative;
    }
    .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
        padding-left:0;padding-right:0;
    }
    .a-block{
        padding:0 10px;
    }
    .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{
	}
	.img-margin-left{
		margin:-132px -113px -131px -3px;
	}
	.img-margin-right{
		width:331px;
	}
	h1{
		font-size:38px;
		line-height:46px;
	}
	h2{
		font-size:32px;
		line-height:40px;
		font-family:"Libre Baskerville";
		font-weight:400;
		color:#666666!important;
	}
	h3{
		font-size:26px;
		line-height:34px;
	}
	h4{
		font-size:22px;
		line-height:30px;
		font-family:"Lato";
		font-weight:700;
	}
	h5{
		font-size:19px;
		line-height:27px;
	}
	h6{
		font-size:16px;
		line-height:24px;
	}
	p{
		font-size:16px;
		line-height:22px;
	}
	.img-bloc-19-margin-top{
		margin-top:26px;
	}
	.container-div-margin-top{
		margin-top:36px;
	}
	.link-mister-drain-style{
		font-family:"Libre Baskerville";
		font-weight:700;
		font-size:20px;
	}
	.h3-083-645-6666-style{
		font-size:40px;
		font-family:Lato;
		font-weight:900;
	}
	.p-bloc-21-style{
		width:70.59%;
		margin-left:74px;
	}
	.row-margin-right{
		margin-right:4px;
	}
	.h3-bloc-2-style{
		margin-left:57px;
	}
	h1,h2,h3,h4,h5,h6,p,label,.btn,a{
		font-family:"Libre Baskerville";
		font-weight:400;
	}
	.h2-bloc-3-style{
		font-family:Muli;
		font-weight:600;
	}
	.img-moniq-style{
		width:40%;
	}
	.p-8-style{
		font-family:"Libre Baskerville";
		font-weight:700;
	}
	.img-4-style{
		width:100%;
	}
	.navbar-nav li a{
		font-family:"Muli";
		font-weight:600;
		font-size:15px;
	}
	.h2-6-style{
		font-family:Muli;
		font-weight:600;
	}
	.bloc-style{
		width:35%;
	}
	.h2-bloc-4-style{
		font-family:Muli;
		font-weight:600;
	}
	.img-4-monique-lo-style{
		width:20%;
	}
	.p-margin-top{
		margin-top:-16px;
	}
	.h1-margin-top{
		font-family:"Lato";
		font-weight:700;
	}
	.p-12-style{
		font-size:90%;
		font-family:"Muli";
		font-weight:600;
	}
	.p-13-style{
		font-size:90%;
	}
	.navbar-brand img{
		width:300px;
		height:120px;
	}
	.h2-34538-style{
		font-size:20pt;
	}
	.h4-style{
		font-size:24px;
		font-family:Lato;
		font-weight:400;
	}
	.btn-style{
		font-family:"Lato";
		font-weight:700;
	}
	.p-bloc-26-style{
		color:#333333!important;
	}
	.h2-welcome-style{
		font-family:Lato;
		font-weight:700;
		font-size:24pt;
	}
	.h1-style{
		font-family:Lato;
		font-weight:700;
	}
	.h3-1-style{
		font-family:"Libre Baskerville";
		font-weight:400;
	}
	.h4-1-style{
		font-family:Lato;
		font-weight:400;
	}
	.button{
		font-family:"Lato";
		font-weight:700;
	}
	.h3-style{
		font-size:24px;
	}
	.link-style{
		font-family:"Lato";
		font-weight:400;
		font-size:20px;
	}
	.h2-style{
		font-size:24pt;
		font-family:"Libre Baskerville";
		font-weight:400;
		line-height:38px;
	}
	.h5-style{
		font-family:Lato;
		font-weight:900;
	}
	.h2-1-style{
		line-height:48px;
	}
	.h2-bloc-13-style{
		font-size:26px;
		line-height:36px;
	}
	.p-style{
		font-size:18px;
	}
	.p-bloc-10-style{
		font-size:16px;
		line-height:22px;
	}
	.cell_contact{
		font-family:"Lato";
		font-weight:700;
		font-size:24pt;
		color:#0068A4!important;
	}
	.email-contact{
		font-family:"Lato";
		font-weight:700;
		color:#0068A4!important;
	}
	
}

@media (max-width: 767px){
	.img-margin-top{
		margin-top:26px;
		font-size:100%;
		width:100%;
	}
	.container-div-style{
		height:20px;
	}
	.img-margin-right{
		margin-top:154px;
		width:505px;
	}
	.icon-margin-top{
		margin-top:15px;
	}
	.icon-bloc-17-margin-top{
		margin-top:15px;
	}
	.bloc-bloc-19-margin-top{
		margin-top:57px;
	}
	.bloc-0-margin-top{
		margin-top:7px;
	}
	.bloc-0-bloc-19-margin-top{
		margin-top:34px;
	}
	.bloc-18428-margin-top{
		margin-top:53px;
	}
	h1{
		font-size:36px;
		line-height:44px;
	}
	h2{
		font-size:28px;
		line-height:38px;
		font-family:"Libre Baskerville";
		font-weight:400;
		color:#666666!important;
	}
	h3{
		font-size:24px;
		line-height:32px;
	}
	h4{
		font-size:20px;
		line-height:26px;
		font-family:"Lato";
		font-weight:400;
	}
	h5{
		font-size:17px;
		line-height:25px;
	}
	h6{
		font-size:14px;
		line-height:22px;
	}
	p{
		font-size:18px;
		line-height:22px;
	}
	.container-div-margin-top{
		margin-top:36px;
	}
	.text-right{
	}
	.text-left{
	}
	.text-center{
	}
	.p-bloc-21-style{
		margin-left:70px;
	}
	.container-div-margin-right{
		margin-right:3px;
		margin-left:-49px;
	}
	.bloc-margin-top{
		margin-top:-29px;
	}
	.h3-bloc-2-style{
		margin-left:35px;
	}
	.img-monique-lo-style{
		width:35%;
	}
	.img-16808-style{
		width:35%;
	}
	.img-4-style{
		width:100%;
		margin-top:12px;
	}
	.navbar-nav li a{
		font-family:"Muli";
		font-weight:600;
		font-size:15px;
	}
	.img-face-optimiz-style{
		width:384px;
	}
	.img-4-monique-lo-style{
		width:25%;
	}
	.p-margin-top{
		margin-top:-21px;
	}
	.p-12-style{
		font-size:100%;
		font-family:"Muli";
		font-weight:600;
	}
	.p-13-style{
		font-size:100%;
	}
	.p-bloc-20-style{
		margin-top:20px;
	}
	.p-bloc-5-margin-top{
		;
	}
	.h4-style{
		font-family:Lato;
		font-weight:400;
		font-size:28px;
		line-height:36px;
	}
	.btn-style{
		font-family:"Lato";
		font-weight:700;
	}
	.p-bloc-26-style{
		color:#333333!important;
	}
	.navbar-brand img{
		width:300px;
		height:120px;
	}
	.h1-style{
		font-family:Lato;
		font-weight:700;
	}
	.h2-1-style{
		font-size:28px;
		line-height:38px;
	}
	.h3-1-style{
		font-family:"Libre Baskerville";
		font-weight:400;
	}
	.button{
		font-family:"Lato";
		font-weight:700;
	}
	.p-1-style{
		font-size:18px;
		line-height:22px;
	}
	.link-style{
		font-family:"Lato";
		font-weight:400;
	}
	.h5-style{
		font-family:Lato;
		font-weight:900;
	}
	.p-bloc-10-style{
		font-size:18px;
		line-height:23px;
	}
	.email-contact{
		font-family:"Lato";
		font-weight:700;
		color:#0068A4!important;
	}
	.cell_contact{
		font-family:"Lato";
		font-weight:700;
		color:#0068A4!important;
		font-size:20pt;
	}
	
}

@media (max-width: 575px){
	.container-div-style{
		height:21px;
	}
	.img-margin-top{
		margin-top:-32px;
	}
	.footer-link{
		text-align:center;
	}
	.mt-1{
	}
	.img-margin-right{
		margin-top:141px;
	}
	.p-14-margin-top{
		margin-top:24px;
	}
	.p-15-margin-top{
		margin-top:35px;
	}
	p{
		font-size:17px;
		line-height:22px;
	}
	h1{
		font-size:32px;
		line-height:40px;
	}
	h2{
		font-size:22px;
		line-height:32px;
		font-family:"Libre Baskerville";
		font-weight:400;
		color:#666666!important;
	}
	h3{
		font-size:24px;
		line-height:32px;
	}
	h4{
		font-size:18px;
		line-height:22px;
		font-family:"Lato";
		font-weight:400;
	}
	h5{
		font-size:17px;
		line-height:25px;
	}
	h6{
		font-size:14px;
		line-height:22px;
	}
	.container-div-margin-top{
		margin-top:36px;
	}
	.navbar-brand img{
		width:300px;
		height:120px;
	}
	.img-happy-2-men-p-style{
		height:200px;
	}
	.h3-083-645-6666-style{
		opacity:0.9;
		font-family:Lato;
		font-weight:900;
		padding:9px 9px 9px 9px;
	}
	.p-bloc-21-style{
		font-size:19px;
		margin-left:45px;
	}
	.h3-bloc-2-style{
		margin-left:19px;
	}
	.img-monique-lo-style{
		width:45%;
	}
	.img-homoeo-p-style{
		width:85%;
	}
	.img-16808-style{
		width:45%;
		margin-bottom:17px;
	}
	.link-mister-drain-style{
		font-family:"Libre Baskerville";
		font-weight:700;
	}
	.bloc-style{
		padding-top:18px;
	}
	.container{
		;
	}
	.navbar-nav li a{
		font-family:"Muli";
		font-weight:600;
		font-size:15px;
	}
	.img-4-monique-lo-style{
		width:35%;
	}
	.p-margin-top{
		margin-top:-24px;
	}
	.img-4-style{
		margin-top:9px;
	}
	.p-12-style{
		font-family:Muli;
		font-weight:600;
	}
	.p-13-style{
		font-family:Muli;
		font-weight:600;
	}
	.h2-bloc-20-style{
		font-size:24px;
		line-height:28px;
	}
	.p-bloc-20-style{
		line-height:24px;
	}
	.p-bloc-24-style{
		font-size:16px;
	}
	.h2-34538-style{
		font-size:18pt;
		font-family:Lato;
		font-weight:700;
	}
	.p-bloc-9-style{
		width:66.19%;
	}
	.h4-style{
		font-family:"Lato";
		font-weight:700;
		font-size:13pt;
	}
	.btn-style{
		font-weight:700;
		font-family:"Lato";
	}
	.p-bloc-22-style{
		color:#333333!important;
	}
	.p-bloc-26-style{
		color:#333333!important;
	}
	.h1-style{
		font-family:Lato;
		font-weight:700;
	}
	h1,h2,h3,h4,h5,h6,p,label,.btn,a{
		color:#666666!important;
	}
	.h3-1-style{
		font-family:"Libre Baskerville";
		font-weight:400;
		font-size:24px;
	}
	.button{
		color:#FFFFFF!important;
		font-family:"Lato";
		font-weight:700;
	}
	label{
		font-family:"Lato";
		font-weight:400;
		color:#0068A4!important;
	}
	.link-style{
		text-decoration:none;
		font-family:"Lato";
		font-weight:400;
		color:#0068A4!important;
		font-size:17px;
	}
	.h2-bloc-13-style{
		line-height:32px;
		font-size:22px;
	}
	.h2-style{
		line-height:36px;
	}
	.h2-1-style{
		font-size:28px;
	}
	.p-bloc-10-style{
		font-size:16px;
		line-height:22px;
	}
	.p-1-style{
		font-family:"Libre Baskerville";
		font-weight:400;
		font-size:16px;
	}
	.email-contact{
		font-family:Lato;
		font-weight:700;
		color:#0068A4!important;
	}
	.cell-contact{
		font-family:Lato;
		font-weight:700;
		font-size:20pt;
		text-align:center;
	}
	.cell_contact{
		font-family:"Lato";
		font-weight:700;
		font-size:20pt;
		color:#0068A4!important;
	}
	
}

