/*-----------------------------------------------------------------------------------
	Bob Jesser Studio 2020
	About: A shiney new Blocs website.
	Author: Walter
	Version: 1.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 */


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

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


/* Group Styles */

.bloc-group{
	display:flex;
}
.bloc-tile-2{
	width:50%;
}
.bloc-tile-3{
	width:33.33333333%;
}
.bloc-tile-4{
	width:25%;
}
.bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
	width:100%;
}


/* Background Textures */

.bloc-bg-texture::before{
	content:"";
	background-size: 2px 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	left:0;
	right:0;
}
.texture-paper::before{
	background: url("img/texture-paper.png");
	background-size: 280px 280px;
}


/* 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-md{
	margin-top:50px;
}


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

.navbar-dark .nav .dropdown-menu .nav-link{
	color: rgb(64, 64, 64);
}
/* = 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-md{
	margin-top:10px;
	margin-bottom:20px;
}

/* = 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;
}
.btn-style-none,.btn-style-none:hover,.btn-style-none:active,.btn-style-none:focus{
	background:none;
	box-shadow: none;
	padding:0;
}

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




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

/* = Forms
-------------------------------------------------------------- */

.form-control{
	border-color:rgba(0,0,0,.1);
	box-shadow: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;
}
/* = 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,.5);
	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: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;
}

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

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Helvetica";
}
.container{
	max-width:1140px;
}
.h1-style{
	font-family:Quicksand;
	font-size:30px;
	width:100%;
	line-height:42px;
}
.h3-style{
	font-family:Quicksand;
	font-size:30px;
	width:94.23%;
	line-height:43px;
}
.studio{
	font-family:"Quicksand";
	letter-spacing:20px;
}
.main-nav-button{
	font-size:30px;
	font-family:"Quicksand";
	background-position:left center;
	background-repeat:repeat;
	text-transform:none;
	color:#FFFFFF!important;
	border-style:none;
	border-top-right-radius:3px;
	border-top-left-radius:3px;
	border-bottom-width:3px;
	text-decoration:none;
	text-indent:75px;
	letter-spacing:1px;
}
.acting-nav{
	text-align:center;
	font-family:"Quicksand";
	font-weight:normal;
	color:#FFFFFF!important;
	background-position:left top;
	float:left;
	width:25%;
	margin:2px 2px 2px 2px;
	padding:1px 1px 1px 1px;
}
.img-style{
	width:219px;
	text-shadow:0px 30px 0px #000000;
	box-shadow:18px 9px 21px rgba(0,0,0,0.5);
	border-style:none;
	border-color:rgba(255,255,255,0.3)!important;
	padding-bottom:2px;
	padding-right:0px;
	border-radius:30px 30px 30px 30px;
}
.h2-about-bob-style{
	font-family:Quicksand;
}
.p-style{
	width:100%;
	font-size:30px;
	font-family:Quicksand;
	line-height:36px;
}
.h3-2-style{
	font-family:Quicksand;
	font-size:30px;
}
.p-2-style{
	font-family:Quicksand;
	font-size:26px;
}
.h3-3-style{
	font-size:40px;
	font-family:Quicksand;
}
.h3-4-style{
	font-family:Quicksand;
	font-size:28px;
}
.h3-5-style{
	font-size:30px;
	font-family:Quicksand;
}
.p-3-style{
	font-size:22px;
	font-family:Quicksand;
}
.p-4-style{
	font-size:26px;
	font-family:Quicksand;
}
.p-5-style{
	font-family:Quicksand;
	font-size:22px;
}
.h1-classes-style{
	font-family:Quicksand;
	font-size:40px;
}
.h3-class-policies-style{
	font-family:Quicksand;
	font-size:28px;
}
.p-6-style{
	font-family:Quicksand;
	font-size:24px;
}
.h3-8-style{
	font-family:Quicksand;
	font-size:36px;
	width:82.63%;
	text-align:left;
}
.p-7-style{
	font-family:Quicksand;
	font-size:24px;
}
.h1-acting-style{
	font-family:Quicksand;
}
.h3-13-style{
	font-family:Quicksand;
}
.h3-idea-style{
	font-family:Quicksand;
}
.h3-11-style{
	font-family:Quicksand;
}
.h3-paul-meier-style{
	font-family:Quicksand;
}
.h3-9-style{
	font-family:Quicksand;
}
.h1-5-style{
	font-family:Quicksand;
}
.h1-heading-1-style{
	font-family:Quicksand;
}
.h3-heading-3-style{
	font-family:Quicksand;
}
.h3-15-style{
	font-family:Quicksand;
}
.btn-style{
	width:13.25%;
	font-family:"Quicksand";
	font-size:24px;
	border-radius:25px 25px 25px 25px;
}
.img-untitl-style{
	width:147px;
}
.main-menu{
	border-style:solid;
	border-top-width:3px;
	border-color:rgba(0,0,0,0.0)!important;
}
.divider-padding{
	color:#FEFC78!important;
	border-style:none;
	height:3px;
	text-shadow:0px 0px 0px #8DF900;
	padding:5px 5px 5px 5px;
}
.divider{
	color:#4E65FF!important;
	border-color:rgba(121,121,121,0.5)!important;
	text-align:center;
	padding:20px 20px 20px 20px;
}
.studio-text{
	font-size:30px;
}
.navbar-brand img{
	width:150px;
}
.link-style{
	font-family:Quicksand;
	text-transform:none;
	color:#FEFFFF!important;
	font-size:72px;
}
.footer-link{
	text-align:center;
}
.row-style{
	width:100%;
}
.acting-body{
	width:75%;
}
.list-style{
	width:100%;
}
.bloc-margin-bottom{
	margin-bottom:131px;
}
.bloc-style{
	width:100%;
}
.acting-nav-butt{
	font-family:"Quicksand";
	font-weight:normal;
	color:#03089B!important;
	background-color:transparent;
	font-size:28px;
	text-decoration:none;
	border-style:none;
	background-size:auto auto;
	text-align:left;
	text-indent:31px;
}
.img-headsh-style{
	width:704px;
	margin-top:100px;
}
.h1-2-style{
	font-family:Quicksand;
	width:100%;
	font-size:30px;
}
.approach{
	color:#000000!important;
}
.h3-1758-style{
	font-family:Quicksand;
}
.p-8499-style{
	font-family:Quicksand;
}
.h3-44989-style{
	font-family:Quicksand;
}
.p-49305-style{
	font-family:Quicksand;
	font-size:24px;
}
.btn-button-style{
	width:8.42%;
}
.p-10-style{
	font-family:Quicksand;
	font-size:24px;
}
.h3-7-style{
	font-family:Quicksand;
}
.p-11-style{
	font-size:24px;
	font-family:Quicksand;
}
.quote{
	font-family:"Quicksand";
	font-size:24px;
	color:#000000!important;
	text-align:justify;
}
.quoter{
	font-size:24px;
	color:#000000!important;
	font-family:"Quicksand";
	text-align:right;
	font-style:italic;
}
.p-9-style{
	font-family:Quicksand;
	font-size:32px;
}
.books-row{
	background-color:transparent;
}
.book-row{
	padding:10px 10px 10px 10px;
}
.book{
	text-shadow:0px 56px 0px #000000;
	box-shadow:4px 3px 10px #47444A;
}
.h1-4-style{
	font-family:Quicksand;
}
.h3-17-style{
	font-family:Quicksand;
}
.h1-voice-work-style{
	font-family:Quicksand;
}
.dialect-resource{
	font-family:"Quicksand";
	color:#E1E1E1!important;
	text-align:center;
}
.btn-submit-style{
	width:22.13%;
	font-family:"Quicksand";
	font-size:24px;
	font-weight:normal;
	text-align:center;
	color:#FFFFFF!important;
	border-radius:25px 25px 25px 25px;
}
.label-style{
	font-family:Quicksand;
	font-size:22px;
}
.label-email-style{
	font-size:22px;
	font-family:Quicksand;
}
.label-message-style{
	font-size:22px;
	font-family:Quicksand;
}
.button-text{
	color:#000000!important;
	font-family:"Quicksand";
	font-weight:700;
}
.btn-70-style{
	width:46.49%;
	border-radius:11px 11px 11px 11px;
}
.h3-class-sign-up-style{
	font-family:Quicksand;
	font-size:32px;
}
.p-26-style{
	font-family:Quicksand;
	font-size:24px;
}
.photo-row{
	;
}
.img-31-style{
	width:263px;
}
.link-0-style{
	height:191px;
}
.photo-nav-butt{
	color:#000000!important;
	font-family:"Quicksand";
	font-size:32px;
	text-align:left;
	text-indent:80px;
	font-weight:normal;
}
.h1-7-style{
	font-family:Quicksand;
	font-size:30px;
}
.h3-20-style{
	font-size:30px;
	font-family:Quicksand;
}
.h3-background-style{
	font-family:Quicksand;
	font-size:30px;
}
.p-27-style{
	font-size:28px;
	font-family:Quicksand;
	width:88.47%;
}
.h3-rates--style{
	font-family:Quicksand;
}
.p-29-style{
	font-size:24px;
	font-family:Quicksand;
}
.h3-hair-makeup--style{
	font-family:Quicksand;
}
.h3-25-style{
	font-family:Quicksand;
}
.h3-the-studio--style{
	font-family:Quicksand;
}
.p-32-style{
	font-family:Quicksand;
	font-size:24px;
}
.p-30-style{
	font-family:Quicksand;
	font-size:24px;
}
.p-31-style{
	font-family:Quicksand;
	font-size:24px;
}
.p-34-style{
	font-family:Quicksand;
	font-size:22px;
}
.h1-e-mail-style{
	font-size:18px;
}
.h4-style{
	font-family:Quicksand;
}
.h4-2-style{
	font-family:Quicksand;
}
.h4-1-style{
	font-family:Quicksand;
}
.row-17-style{
	width:100%;
}

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

/* Swatch Variables */
:root{
	
	--swatch-var-Unnamed-Swatch:#FFFFFF;
	
	--swatch-var-Unnamed-Swatch-copy-1:#4B4B4B;
	
	--swatch-var-Unnamed-Swatch-copy-2:#FFFFFF;
	
	--swatch-var-Unnamed-Swatch-copy-3:rgba(0,0,0,0.0);
	
	--swatch-var-Unnamed-Swatch-copy-4:#000000;
	
	--swatch-var-Unnamed-Swatch-copy-5:rgba(3,9,156,0.0);
	
	--swatch-var-Unnamed-Swatch-copy-6:#A8ABC2;
	
	--swatch-var-Unnamed-Swatch-copy-7:#FFFFFF;
	
	--swatch-var-Unnamed-Swatch-copy-8:rgba(4,34,172,0.0);
	
	--swatch-var-Unnamed-Swatch-copy-9:rgba(0,0,0,0.0);
	
	--swatch-var-Unnamed-Swatch-copy-10:rgba(0,0,0,0.0);
	
	--swatch-var-Unnamed-Swatch-copy-11:#F9F8F8;
	
	--swatch-var-Unnamed-Swatch-copy-12:#252326;
	
	--swatch-var-Unnamed-Swatch-copy-13:#414141;
	
	--swatch-var-Unnamed-Swatch-copy-14:#1684E9;
	
	--swatch-var-Unnamed-Swatch-copy-15:#EDF5F6;
	
	--swatch-var-Unnamed-Swatch-copy-16:rgba(156,125,237,0.4);
	
}


/* Background colour styles */

.bgc-7271{
	background-color:var(--swatch-var-Unnamed-Swatch-copy-4);
}
.bgc-3864{
	background-color:var(--swatch-var-Unnamed-Swatch-copy-11);
}
.bgc-587{
	background-color:var(--swatch-var-Unnamed-Swatch-copy-15);
}
.bgc-658{
	background-color:var(--swatch-var-Unnamed-Swatch);
}
.bgc-5357{
	background-color:var(--swatch-var-Unnamed-Swatch-copy-12);
}
.bgc-3709{
	background-color:var(--swatch-var-Unnamed-Swatch-copy-7);
}
.bgc-6943{
	background-color:var(--swatch-var-Unnamed-Swatch-copy-13);
}
.bgc-1945{
	background-color:var(--swatch-var-Unnamed-Swatch-copy-2);
}
.bgc-3813{
	background-color:var(--swatch-var-Unnamed-Swatch-copy-6);
}
.bgc-336{
	background-color:var(--swatch-var-Unnamed-Swatch-copy-16);
}

/* Text colour styles */

.tc-1945{
	color:var(--swatch-var-Unnamed-Swatch-copy-2)!important;
}
.tc-658{
	color:var(--swatch-var-Unnamed-Swatch)!important;
}
.tc-7271{
	color:var(--swatch-var-Unnamed-Swatch-copy-4)!important;
}

/* Button colour styles */

.btn-c-3813{
	background:var(--swatch-var-Unnamed-Swatch-copy-6);
	color:rgba(0,0,0,.5)!important;
}
.btn-c-3813:hover{
	background:#75788F!important;
	color:rgba(0,0,0,.5)!important;
}
.btn-c-7271{
	background:var(--swatch-var-Unnamed-Swatch-copy-4);
	color:#FFFFFF!important;
}
.btn-c-7271:hover{
	background:#000000!important;
	color:#FFFFFF!important;
}

/* Link colour styles */

.ltc-658{
	color:var(--swatch-var-Unnamed-Swatch)!important;
}
.ltc-658:hover{
	color:#CCCCCC!important;
}
.ltc-3864{
	color:var(--swatch-var-Unnamed-Swatch-copy-11)!important;
}
.ltc-3864:hover{
	color:#C6C5C5!important;
}
.ltc-1945{
	color:var(--swatch-var-Unnamed-Swatch-copy-2)!important;
}
.ltc-1945:hover{
	color:#CCCCCC!important;
}

/* Bloc image backgrounds */

.bg-hot-air-balloon-2411851{
	background-image:url("img/hot-air-balloon-2411851.jpg");
	background-image: -webkit-image-set(url("img/hot-air-balloon-2411851.webp") 1x,
url("img/hot-air-balloon-2411851.webp") 2x);
}
.bg-hot-air-balloon-736879{
	background-image:url("img/hot-air-balloon-736879.jpg");
	background-image: -webkit-image-set(url("img/hot-air-balloon-736879.webp") 1x,
url("img/hot-air-balloon-736879.webp") 2x);
}
.bg-sand-768783-1920{
	background-image:url("img/sand-768783_1920.jpg");
	background-image: -webkit-image-set(url("img/sand-768783_1920.webp") 1x,
url("img/sand-768783_1920.webp") 2x);
}



/* = 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{
	}
	.link-style{
		font-size:60px;
	}
	.main-nav-button{
		font-size:24px;
		text-indent:18px;
	}
	.h1-style{
		font-size:22px;
	}
	.h3-style{
		font-size:22px;
	}
	.acting-nav-butt{
		font-size:22px;
		text-align:center;
	}
	.row-bloc-3-style{
		width:100%;
	}
	.p-2-style{
		font-size:24px;
	}
	.p-4-style{
		font-size:22px;
	}
	.p-style{
		font-size:22px;
	}
	.h1-2-style{
		font-size:22px;
	}
	.h3-2-style{
		font-size:22px;
		width:89.16%;
	}
	
	/* MD Row Margin Offsets */
	.voffset-md{
		margin-top:30px;
	}
	
}

@media (max-width: 767px){
	.text-right{
	}
	.text-left{
	}
	.text-center{
	}
	.link-style{
		font-size:32px;
		text-align:center;
	}
	.main-menu{
		color:#FFFFFF!important;
		font-size:14px;
	}
	.h1-style{
		width:67.35%;
		font-size:20px;
	}
	.h3-style{
		font-size:20px;
		width:100%;
	}
	.p-2-style{
		font-size:20px;
	}
	.p-style{
		font-size:20px;
	}
	.p-4-style{
		font-size:20px;
	}
	.h1-2-style{
		font-size:20px;
	}
	.h3-2-style{
		font-size:20px;
	}
	
}

@media (max-width: 575px){
	.mt-1{
	}
	.footer-link{
		text-align:center;
	}
	.link-style{
		font-size:12px;
	}
	.h1-style{
		font-size:18px;
		width:84.44%;
	}
	.h3-style{
		font-size:18px;
	}
	.p-2-style{
		font-size:18px;
	}
	.p-4-style{
		font-size:18px;
	}
	.p-style{
		font-size:18px;
	}
	.p-6-style{
		font-size:22px;
	}
	.btn-style{
		width:95.93%;
	}
	.p-9-style{
		font-size:28px;
		width:98.15%;
	}
	.p-49305-style{
		font-size:22px;
	}
	.p-7-style{
		font-size:22px;
	}
	.acting-nav-butt{
		font-size:18px;
	}
	.row-bloc-5-style{
		width:100%;
	}
	.h3-2-style{
		font-size:18px;
	}
	.h1-2-style{
		font-size:18px;
	}
	.h4-1-style{
		font-size:18px;
	}
	.h4-2-style{
		font-size:18px;
	}
	.h4-style{
		font-size:18px;
	}
	
}

