/*-----------------------------------------------------------------------------------
	CBC Dancesport
	About: A shiny new Blocs website.
	Author: Paul Rutherford
	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;
	position:relative;
}


/* Sizes */

.bloc-lg{
	padding:100px 20px;
}
.bloc-md{
	padding:50px 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 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:repeat!important;
}


/* Video Background Styles */

.video-bg-container, .bloc-video{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	right: -50%;
	overflow: hidden;
	transform: translateX(-50%);
	-webkit-transform:translateX(-50%);
}
.bloc-video, .video-bg-container iframe{
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	z-index: 0;
}


/* 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);
}
:where(.d-bloc) .bloc-link{
	fill: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);
}
:where(.l-bloc) .bloc-link{
	fill: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);
}


/* Correct Dropdown Links */

.d-bloc .dropdown-menu a, .l-bloc .dropdown-menu a,.d-bloc .dropdown-menu a:hover, .l-bloc .dropdown-menu a:hover{
	color:var(--bs-nav-link-hover-color);
}

/* Row Margin Offsets */

.voffset{
	margin-top:30px;
}
.voffset-md{
	margin-top:50px;
}
.voffset-lg{
	margin-top:80px;
}


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

.navbar-dark .nav .dropdown-menu .nav-link{
	color: rgb(64, 64, 64);
}
/* 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;
}

/* Nav Special Classes */
.nav-special{
	overflow-y:scroll;
}
.nav-special .site-navigation{
	top:0;
	left:0;
	width:100%;
	position: relative!important;
	max-width: 100%!important;
	z-index: 1000;
}
.nav-special .nav > li{
	width:100%;
	background: none!important;
	border:0!important;
}
.nav-special.collapsing{
	-webkit-transition: none;
	transition: none;
	height:100%!important;
	background: none!important;
}
.nav-special .navbar-nav .dropdown-menu.show{
	position: relative!important;
	transform: none!important;
	float: none;
	width: 100%;
	margin-top: 0;
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 0;
}
.nav-special .nav .dropdown-menu .nav-link{
	color:#FFF;
}
.blocsapp-special-menu{
	position: absolute;
	z-index:10000;
}
.nav-special.fullscreen-nav .caret,.nav-special.fullscreen-nav .dropdown-menu .dropdown .caret{
	border-width: 8px;
}
.nav-special .navbar-nav .show>.nav-link{
	color:#FFF;
}

/* Animate Menu Symbol */
.navbar-toggle{
	transition: all .1s linear;
}
.selected-nav{
	opacity: 0;
	transform: scale(0.3);
	transition: all .1s linear;
}


/* Special Menu Close Button */
.close-special-menu{
	position: absolute;
	display: block;
	width: 25px;
	height:25px;
	top:16px;
	right:10px;
	z-index: 10000;
}
.nav-invert .sidebar-nav .close-special-menu{
	left:260px;
}
.close-special-menu .close-icon{
	display: block;
	width:100%;
	height:1px;
	transform: rotate(45deg);
	margin-top:12px;
}
.close-special-menu .close-icon:after{
	content:"";
	display:inherit;
	width:inherit;
	height:inherit;
	background: inherit;
	transform: rotate(90deg);
}
.lock-scroll{
	overflow:hidden;
	transition: background .3s linear;
}
.nav-special::-webkit-scrollbar{
	-webkit-appearance: none;
	width:0;
	height:0;
}
.nav-special .dropdown-menu .dropdown .caret{
	border-top-color: rgba(255,255,255,.8);
	border-right-color: transparent;
	border-bottom-color: transparent;
	border-left-color: transparent;
	margin: 0 0 0 5px;
	float: none;
}
.blocsapp-special-menu .site-navigation.pull-right{
	float:none!important;
}

/* Nav Special Close Button */
.close-special-menu .close-icon{
	background:#fff;
}
.blocsapp-special-menu blocsnav{
	background: #000;
}

/* Side Bar Navigation */
.nav-special.sidebar-nav{
	position: fixed;
	right: -300px;
	top: 0;
	bottom: 0;
	width: 300px;
	z-index: 1000;
	transition: all .2s linear;
}
.nav-invert .nav-special.sidebar-nav{
	right: auto;
	left: -300px;
}
 .nav-special.sidebar-nav .site-navigation{
	margin-top:15px;
	padding-left:15px;
}
.nav-special.sidebar-nav .nav > li a{
	color:rgba(255,255,255,.8);
}
 .nav-special.sidebar-nav .nav > li a:hover{
	color:#FFF;
}
 .open.nav-special.sidebar-nav{
	right: 0;
	transition: all .2s linear;
}
.nav-invert .open.nav-special.sidebar-nav{
	left: 0;
	transition: all .2s linear;
}
.navbar-toggler:focus{
	box-shadow:none;
}
;
	
/* Content Tint */
.content-tint{
	z-index: -1;
	transition: background .2s linear;
}
.content-tint.on{
	display: block;
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	background: transparent;
	z-index: 1001;
	background:rgba(0,0,0,.4);
}
.content-tint.on:hover{
	background:rgba(0,0,0,.1);
}
/* 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;
}
.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;
	fill:#FFF;
	background:rgba(0,0,0,.3);
}

.btn-rd{
	border-radius: 40px;
}
.btn-style-none,.btn-style-none:hover,.btn-style-none:active,.btn-style-none:focus{
	background:none;
	box-shadow: none;
	padding:0;
}
.btn-xl{
	padding: 16px 40px;
	font-size: 28px;
}
.a-block{
	width:100%;
	text-align:left;
	display: inline-block;
}
.text-center .a-block{
	text-align:center;
}
.dropdown a .caret{
	margin:0 0 0 5px}.btn-dropdown .dropdown-menu .dropdown{
	padding: 3px 20px;
}

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

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

.text-justify{
	text-align: justify;
}


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


.carousel-nav-controls svg{
	transform:scale(0.8);
	transition:transform .30s ease,background .50s ease;
}
.carousel-nav-controls:hover svg{
	transform:scale(1.0);
}
.carousel-nav-controls:active svg{
	transform:scale(0.9);
}

.carousel-caption{
	left:6%;
	 right:6%;
}

.carousel-item:not(:has(> img, > picture)) .carousel-caption {
	position: relative;
	transform: none;
	width: 80%;
	left:10%;
	right:10%;
	top:0;
	bottom:0;
	padding-top: 0;
	margin-bottom: 20px;
	z-index:0;
	color: #000000;
}

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

.carousel-indicators li::marker{
	font-size:0;
}


/* ScrollToTop button */

.scrollToTop{
	width:36px;
	height:36px;
	padding:5px;
	position:fixed;
	bottom:1rem;
	right:1rem;
	opacity:0;
	z-index:999999;
	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;
}

.close{
	color:#000;
	opacity:0.5;
}
.close:hover{
	opacity:1;
}
.modal-header > [data-bs-dismiss="modal"]{
	margin: calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.10 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto;
}
/* = Lightbox
-------------------------------------------------------------- */

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

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

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

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Lato";
	font-weight:700;
	font-size:24px;
	line-height:38px;
	color:#000000!important;
}
.container{
	max-width:1140px;
}
.nav-position{
	z-index:200;
	position:fixed;
}
.navbar-nav li a{
	font-size:20px;
	line-height:30px;
}
.column-white{
	background-color:rgba(255,255,255,0.30);
	box-shadow:0px 13px 27px rgba(235,235,235,0.50);
	padding:20px 20px 20px 20px;
}
h1{
	font-family:"Lato";
	font-weight:700;
	font-size:36px;
	line-height:46px;
}
h2{
	font-family:"Lato";
	font-weight:700;
	font-size:32px;
	line-height:42px;
}
h3{
	font-family:"Lato";
	font-weight:700;
	font-size:28px;
	line-height:38px;
}
h4{
	font-family:"Lato";
	font-weight:700;
	font-size:24px;
	line-height:34px;
}
h5{
	font-family:"Lato";
	font-weight:700;
	font-size:20px;
	line-height:30px;
}
h6{
	font-family:"Lato";
	font-weight:700;
	font-size:16px;
	line-height:26px;
}
p{
	font-family:"Lato";
	font-weight:400;
}
.p-style{
	font-size:24px;
	font-weight:500;
	color:#000000!important;
	text-align:justify;
	border-style:none;
	line-height:38px;
	font-family:"Lato";
}
.h3-style{
	color:#0432FF!important;
	font-weight:bold;
	text-align:center;
	margin-left:0px;
	margin-top:36px;
	text-decoration:underline!important;
	font-family:"Abril Fatface";
	font-size:34px;
	padding-bottom:20px;
	line-height:46px;
	margin-bottom:0px;
}
.h3-style:hover{
	text-transform:none;
	font-family:"Abril Fatface";
	text-decoration:none;
	font-weight:bold;
}
.h5-style{
	line-height:32px;
	font-size:26px;
	color:#000000!important;
}
.form-link{
	color:#0432FF!important;
	text-decoration:underline!important;
	font-weight:bold;
	font-family:"Lato";
	text-transform:none;
	font-size:24px;
}
.h4-header{
	font-weight:bold;
	color:#000000!important;
	text-decoration:underline!important;
	text-align:center;
	font-size:30px;
	line-height:48px;
	margin-bottom:36px;
}
.h6-header{
	font-weight:bold;
	color:#000000!important;
}
.link-19388-style{
	text-decoration:underline;
}
.officials-style{
	font-weight:bold;
	font-size:14px;
}
.officials-card-margin{
	margin-bottom:20px;
	box-shadow:4px 6px 20px rgba(0,0,0,0.76);
}
.p-margin-left{
	margin-left:15px;
}
.img-contact-style{
	width:200px;
	border-style:solid;
	border-color:#D5D5D5!important;
	background-color:#FEFFFF;
	box-shadow:4px 4px 22px rgba(0,0,0,0.76);
	padding:18px 18px 18px 18px;
	border-width:1px 1px 1px 1px;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
	background-color:#FFFFC7;
	border-style:solid;
	border-color:#000000!important;
	box-shadow:3px 3px 5px #929292;
	opacity:70;
	border-width:2px 2px 2px 2px;
	border-radius:1px 1px 1px 1px;
}
.news-graphic-size{
	width:500px;
	border-style:solid;
	border-color:#000000!important;
	border-width:2px 2px 2px 2px;
}
.img-news-style{
	border-color:#000000!important;
	border-style:solid;
	border-width:1px 1px 1px 1px;
	height:250px;
}
.img-competitor-style{
	width:350px;
	padding-top:20px;
	padding-bottom:20px;
	background-color:var(--swatch-var-2762);
}
.welcome-link-style{
	color:#0432FF!important;
	text-transform:none;
	text-decoration:underline!important;
	font-weight:600;
	font-size:26px;
	font-family:"Lato";
	line-height:38px;
	margin-left:10px;
}
.img-glamour-pu-style{
	width:300px;
	height:130px;
}
.img-21-style{
	width:275px;
}
.img-19-style{
	width:300px;
}
.img-video-pro--style{
	width:275px;
}
.img-18-style{
	width:200px;
}
.shine-graphic-size{
	width:500px;
	border-style:solid;
	border-color:#000000!important;
	border-width:2px 2px 2px 2px;
}
.row-margin-bottom{
	margin-bottom:75px;
}
.online-register-button{
	color:#FEFFFF!important;
	border-style:solid;
	border-color:#000000!important;
	width:300px;
	font-weight:bold;
	font-family:"Open Sans";
	padding:15px 15px 15px 15px;
}
.container-div-margin-bottom{
	margin-bottom:75px;
}
.online-register-button:hover{
	font-family:"Open Sans";
	font-weight:bold;
}
.img-bloc-11-style{
	width:400px;
}
.h4-style{
	font-size:28px;
	line-height:42px;
	margin-bottom:70px;
}
.h2-style{
	font-size:34px;
	line-height:46px;
}
.img-welcome-style{
	width:450px;
}
.h2-coming-in--style{
	font-size:30px;
	font-style:italic;
}
.html-widget-padding-right{
	padding-right:15px;
}
.bloc-padding-top{
	padding-top:24px;
	margin-top:13px;
	margin-bottom:32px;
}
.p-style-red{
	font-family:"Lato";
	font-size:28px;
	text-align:center;
	font-weight:bold;
	line-height:38px;
	color:#CA1D00!important;
	text-decoration:underline!important;
}
.img-style{
	width:450px;
	border-style:solid;
	border-color:var(--swatch-var-2119)!important;
	border-width:1px 1px 1px 1px;
}
.image-border{
	border-width:1px 1px 1px 1px;
	border-color:var(--swatch-var-2119)!important;
	border-style:solid;
}
.img-dancer-in-yo-style{
	width:275px;
}
.text-news-style{
	width:250px;
	text-align:center;
}
.img-scroll-style{
	border-color:#000000!important;
	border-style:solid;
	border-width:1px 1px 1px 1px;
	height:350px;
}
.img-71-style{
	width:420px;
	margin-top:1px;
	padding-top:0px;
	margin-bottom:50px;
	margin-left:30px;
}
.btn-style{
	width:50%;
	margin-left:0px;
	margin-right:auto;
}
.common-background{
	background-image:url("img/Brick-Pattern-7-2a.jpg");
	background-image: -webkit-image-set(url("img/Brick-Pattern-7-2a.webp") 1x,
url("img/Brick-Pattern-7-2a.webp") 2x);background-image: image-set(url("img/Brick-Pattern-7-2a.jpg") 1x,
url("img/Brick-Pattern-7-2a.jpg") 2x,url("img/Brick-Pattern-7-2a.webp") 1x,
url("img/Brick-Pattern-7-2a.webp") 2x);
}
.previous-results-button{
	color:var(--swatch-var-2762)!important;
	background-color:var(--swatch-var-4910);
	border-style:solid;
	border-color:var(--swatch-var-2119)!important;
	border-width:1px 1px 1px 1px;
}
.previous-results-button:hover{
	border-width:1px 1px 1px 1px;
	border-color:var(--swatch-var-2119)!important;
	border-style:solid;
	background-color:var(--swatch-var-4910);
}
.h3-card-footer-style{
	font-size:18px;
	line-height:26px;
}
.p-bloc-11-style{
	font-size:22px;
	line-height:36px;
}
.form-link2{
	color:#0432FF!important;
	text-decoration:underline!important;
	font-weight:bold;
	font-family:"Lato";
	text-transform:none;
	font-size:22px;
}
.navbar-nav li a:hover{
	background-color:var(--swatch-var-616);
}
.img-37-style{
	width:250px;
}
.results-button{
	color:var(--swatch-var-2762)!important;
	border-width:1px 1px 1px 1px;
	border-style:solid;
	border-color:var(--swatch-var-2119)!important;
	padding:18px 20px 18px 20px;
	background-color:var(--swatch-var-7016);
}
.modal-button{
	background-color:var(--swatch-var-7016);
	color:var(--swatch-var-2762)!important;
}
.results-button:hover{
	background-color:var(--swatch-var-7016);
	color:var(--swatch-var-6500)!important;
}
.results-button:active{
	background-color:var(--swatch-var-7016);
}
.results-button:focus{
	background-color:var(--swatch-var-7016);
}
.results-button:visited{
	background-color:var(--swatch-var-7016);
}
.modal-button:hover{
	background-color:#FF2600;
	color:#FEFB00!important;
}
.modal-button:active{
	background-color:#FF2600;
}
.modal-button:focus{
	background-color:#FF2600;
}
.modal-button:visited{
	background-color:#FF2600;
}
.modal-header{
	background-color:var(--swatch-var-6500);
	border-width:0px 0px 0px 0px;
}
.modal-body{
	border-width:1px 0px 1px 0px;
	border-style:solid;
	border-color:var(--swatch-var-2119)!important;
}
.modal-border{
	border-width:1px 1px 1px 1px;
	border-style:solid;
	border-color:var(--swatch-var-6694)!important;
}
.h3-bloc-11-style{
	font-size:18px;
	line-height:26px;
}
.h3-13-style{
	font-size:18px;
	line-height:26px;
}
.news-card-body-padding{
	padding:0px 0px 0px 0px;
}
.news-card-border{
	border-style:solid;
	border-color:#000000!important;
	border-width:1px 1px 1px 1px;
}
.news-card-footer-padding{
	background-color:#EAEAEA;
}
.news-card-header-padding{
	padding-left:5px;
	padding-right:5px;
	background-color:#EAEAEA;
}
.bloc-margin-bottom{
	margin-bottom:40px;
}
.news-card-footer-p-style{
	text-align:center;
}
.news-link{
	color:var(--swatch-var-478)!important;
	font-weight:bold;
}
.news-link:hover{
	text-decoration:underline!important;
}
.row-align{
	float:none;
	margin-bottom:700px;
	padding-left:50px;
}
.hl-program-results-button{
	padding:30px 30px 30px 30px;
	font-weight:900;
	margin:20px 20px 20px 20px;
	font-size:24px;
	border-width:2px 2px 2px 2px;
	border-color:#FFFFFF;
	border-style:solid;
	background-color:#DC2600;
	color:var(--swatch-var-2266)!important;
}
.hl-program-results-button:hover{
	background-color:var(--swatch-var-7070);
	border-color:var(--swatch-var-6694)!important;
}
.hl-program-results-button:active{
	background-color:#FF2600;
}
.hl-program-results-button:focus{
	background-color:#FF2600;
}
.hl-program-results-button:visited{
	background-color:#FF2600;
}
.svg-icon-fill{
	fill:var(--swatch-var-2266)!important;
}
.svg-icon-home-fill{
	fill:var(--swatch-var-2266)!important;
	width:35px!important;
}
.scroll-down-msg{
	position:relative;
	top:-175px;
}
.h4-welcome-style{
	font-size:30px;
	line-height:40px;
}
.img-eb-final-ic-style{
	width:140px;
	height:140px;
}
.img-102-style{
	padding:auto auto auto auto;
	width:250px;
}
.container-div-style{
	width:100%;
}
.html-widget-padding-left{
	padding-left:97px;
	margin-left:-24px;
	margin-right:0px;
	padding-right:0px;
	font-size:16px;
	font-family:"Alef";
	width:100%;
}
.modal-footer{
	background-color:var(--swatch-var-45);
	border-width:0px 0px 0px 0px;
}
.container-div-bloc-10-margin-left{
	margin-left:0px;
	padding-left:0px;
	padding-right:55px;
}
.column-margin{
	margin-left:auto;
	margin-right:auto;
}
.button-style{
	width:300px;
	height:95px;
	margin-top:0px;
	background-color:var(--swatch-var-6694);
	border-color:var(--swatch-var-2119)!important;
	border-width:2px 2px 2px 2px;
	font-size:28px;
	margin-bottom:30px;
	font-family:"Abril Fatface";
}
.btn-bloc-19-style{
	width:42.89%;
	padding-top:25px;
	border-radius:0px 0px 0px 0px;
}
.h4-bloc-19-style{
	font-size:28px;
	line-height:48px;
	margin-top:39px;
}
.button-style:hover{
	background-color:var(--swatch-var-45);
}
.h3-welcome--style{
	font-family:"Abril Fatface";
	font-size:36px;
	line-height:56px;
	text-decoration:none;
	text-align:center;
	margin-top:19px;
	color:var(--swatch-var-7016)!important;
}
.img-padding-top{
	padding-top:26px;
}
.h3-cbc-lounge-style{
	font-family:"Abril Fatface";
	font-size:36px;
}
.h4-style2{
	font-family:"Lato";
	font-weight:700;
	font-size:28px;
	line-height:42px;
}
.h4-padding-left{
	padding-left:71px;
	font-size:34px;
	margin-bottom:36px;
	margin-left:40px;
}
.row-padding-top{
	margin-top:37px;
}
.container-div-margin-left{
	margin-top:20px;
}
.button-style:active{
	background-color:var(--swatch-var-2762);
}
.button-style:focus{
	background-color:var(--swatch-var-2762);
}
.button-style:visited{
	background-color:var(--swatch-var-2762);
}
.h6-style{
	line-height:30px;
}
.img-hotel-1-7-style{
	width:700px;
	height:700px;
}
.hotel-width{
	width:700px;
}
.btn-padding-top{
	color:var(--swatch-var-2266)!important;
	background-color:var(--swatch-var-7016);
	border-width:10px 10px 10px 10px;
}
.btn-padding-top:hover{
	background-color:var(--swatch-var-7016);
}

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

/* Swatch Variables */
:root{
	
	--swatch-var-2762:rgba(255,255,255,1.00);
	
	--swatch-var-2119:rgba(0,0,0,1.00);
	
	--swatch-var-929:rgba(255,255,255,0.24);
	
	--swatch-var-4910:rgba(122,129,255,1.00);
	
	--swatch-var-2266:rgba(255,255,255,1.00);
	
	--swatch-var-6694:rgba(254,255,255,1.00);
	
	--swatch-var-7235:#27AE60;
	
	--swatch-var-7070:rgba(231,76,60,1.00);
	
	--swatch-var-7016:rgba(219,33,0,1.00);
	
	--swatch-var-616:rgba(0,0,0,0.15);
	
	--swatch-var-3930:rgba(252,143,131,1.00);
	
	--swatch-var-6500:rgba(250,249,222,1.00);
	
	--swatch-var-45:rgba(231,232,250,1.00);
	
	--swatch-var-478:rgba(4,50,255,1.00);
	
}


/* Background colour styles */

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

/* Text colour styles */

.tc-2119{
	color:var(--swatch-var-2119)!important;
}
.tc-2762{
	color:var(--swatch-var-2762)!important;
}
.tc-7016{
	color:var(--swatch-var-7016)!important;
}

/* Button colour styles */

.bgc-2762{
	background-color:var(--swatch-var-2762);
}
.tc-2762{
	color:var(--swatch-var-2762)!important;
}
.btn-c-2762,.btn-c-2762:focus{
	background:var(--swatch-var-2762);
	color:rgba(0,0,0,.5)!important;
	fill:rgba(0,0,0,.5);
}
.btn-c-2762:hover{
	background:#CCCCCC!important;
	color:rgba(0,0,0,.5)!important;
	fill:rgba(0,0,0,.5);
}
.wire-btn-c-2762{
	color:var(--swatch-var-2762)!important;
	border-color:var(--swatch-var-2762)!important;
	fill:var(--swatch-var-2762);
}
.ltc-2762{
	color:var(--swatch-var-2762)!important;
	fill:var(--swatch-var-2762);
}
.ltc-2762:hover{
	color:#CCCCCC!important;
	fill:var(--swatch-var-2762);
}
.icon-2762{
	color:var(--swatch-var-2762)!important;
	border-color:var(--swatch-var-2762)!important;
}
/**/.bgc-2119{
	background-color:var(--swatch-var-2119);
}
.tc-2119{
	color:var(--swatch-var-2119)!important;
}
.btn-c-2119,.btn-c-2119:focus{
	background:var(--swatch-var-2119);
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.btn-c-2119:hover{
	background:#000000!important;
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.bgc-2762{
	background-color:var(--swatch-var-2762);
}
.tc-2762{
	color:var(--swatch-var-2762)!important;
}
.btn-c-2762,.btn-c-2762:focus{
	background:var(--swatch-var-2762);
	color:rgba(0,0,0,.5)!important;
	fill:rgba(0,0,0,.5);
}
.btn-c-2762:hover{
	background:#CCCCCC!important;
	color:rgba(0,0,0,.5)!important;
	fill:rgba(0,0,0,.5);
}
.wire-btn-c-2762{
	color:var(--swatch-var-2762)!important;
	border-color:var(--swatch-var-2762)!important;
	fill:var(--swatch-var-2762);
}
.ltc-2762{
	color:var(--swatch-var-2762)!important;
	fill:var(--swatch-var-2762);
}
.ltc-2762:hover{
	color:#CCCCCC!important;
	fill:var(--swatch-var-2762);
}
.icon-2762{
	color:var(--swatch-var-2762)!important;
	border-color:var(--swatch-var-2762)!important;
}
/**/.bgc-2119{
	background-color:var(--swatch-var-2119);
}
.tc-2119{
	color:var(--swatch-var-2119)!important;
}
.btn-c-2119,.btn-c-2119:focus{
	background:var(--swatch-var-2119);
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.btn-c-2119:hover{
	background:#000000!important;
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.wire-btn-c-2119{
	color:var(--swatch-var-2119)!important;
	border-color:var(--swatch-var-2119)!important;
	fill:var(--swatch-var-2119);
}
.ltc-2119{
	color:var(--swatch-var-2119)!important;
	fill:var(--swatch-var-2119);
}
.ltc-2119:hover{
	color:#000000!important;
	fill:var(--swatch-var-2119);
}
.icon-2119{
	color:var(--swatch-var-2119)!important;
	border-color:var(--swatch-var-2119)!important;
}
/**/.bgc-929{
	background-color:var(--swatch-var-929);
}
.tc-929{
	color:var(--swatch-var-929)!important;
}
.btn-c-929,.btn-c-929:focus{
	background:var(--swatch-var-929);
	color:rgba(0,0,0,.5)!important;
	fill:rgba(0,0,0,.5);
}
.btn-c-929:hover{
	background:rgba(204,204,204,0.24)!important;
	color:rgba(0,0,0,.5)!important;
	fill:rgba(0,0,0,.5);
}
.wire-btn-c-929{
	color:var(--swatch-var-929)!important;
	border-color:var(--swatch-var-929)!important;
	fill:var(--swatch-var-929);
}
.ltc-929{
	color:var(--swatch-var-929)!important;
	fill:var(--swatch-var-929);
}
.ltc-929:hover{
	color:rgba(204,204,204,0.24)!important;
	fill:var(--swatch-var-929);
}
.icon-929{
	color:var(--swatch-var-929)!important;
	border-color:var(--swatch-var-929)!important;
}
/**/.bgc-4910{
	background-color:var(--swatch-var-4910);
}
.tc-4910{
	color:var(--swatch-var-4910)!important;
}
.btn-c-4910,.btn-c-4910:focus{
	background:var(--swatch-var-4910);
	color:rgba(0,0,0,.5)!important;
	fill:rgba(0,0,0,.5);
}
.btn-c-4910:hover{
	background:#474ECC!important;
	color:rgba(0,0,0,.5)!important;
	fill:rgba(0,0,0,.5);
}
.wire-btn-c-4910{
	color:var(--swatch-var-4910)!important;
	border-color:var(--swatch-var-4910)!important;
	fill:var(--swatch-var-4910);
}
.ltc-4910{
	color:var(--swatch-var-4910)!important;
	fill:var(--swatch-var-4910);
}
.ltc-4910:hover{
	color:#474ECC!important;
	fill:var(--swatch-var-4910);
}
.icon-4910{
	color:var(--swatch-var-4910)!important;
	border-color:var(--swatch-var-4910)!important;
}
/**/.bgc-2266{
	background-color:var(--swatch-var-2266);
}
.tc-2266{
	color:var(--swatch-var-2266)!important;
}
.btn-c-2266,.btn-c-2266:focus{
	background:var(--swatch-var-2266);
	color:rgba(0,0,0,.5)!important;
	fill:rgba(0,0,0,.5);
}
.btn-c-2266:hover{
	background:#CCCCCC!important;
	color:rgba(0,0,0,.5)!important;
	fill:rgba(0,0,0,.5);
}
.wire-btn-c-2266{
	color:var(--swatch-var-2266)!important;
	border-color:var(--swatch-var-2266)!important;
	fill:var(--swatch-var-2266);
}
.ltc-2266{
	color:var(--swatch-var-2266)!important;
	fill:var(--swatch-var-2266);
}
.ltc-2266:hover{
	color:#CCCCCC!important;
	fill:var(--swatch-var-2266);
}
.icon-2266{
	color:var(--swatch-var-2266)!important;
	border-color:var(--swatch-var-2266)!important;
}
/**/.bgc-6694{
	background-color:var(--swatch-var-6694);
}
.tc-6694{
	color:var(--swatch-var-6694)!important;
}
.btn-c-6694,.btn-c-6694:focus{
	background:var(--swatch-var-6694);
	color:rgba(0,0,0,.5)!important;
	fill:rgba(0,0,0,.5);
}
.btn-c-6694:hover{
	background:#CBCCCC!important;
	color:rgba(0,0,0,.5)!important;
	fill:rgba(0,0,0,.5);
}
.wire-btn-c-6694{
	color:var(--swatch-var-6694)!important;
	border-color:var(--swatch-var-6694)!important;
	fill:var(--swatch-var-6694);
}
.ltc-6694{
	color:var(--swatch-var-6694)!important;
	fill:var(--swatch-var-6694);
}
.ltc-6694:hover{
	color:#CBCCCC!important;
	fill:var(--swatch-var-6694);
}
.icon-6694{
	color:var(--swatch-var-6694)!important;
	border-color:var(--swatch-var-6694)!important;
}
/**/.bgc-7235{
	background-color:var(--swatch-var-7235);
}
.tc-7235{
	color:var(--swatch-var-7235)!important;
}
.btn-c-7235,.btn-c-7235:focus{
	background:var(--swatch-var-7235);
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.btn-c-7235:hover{
	background:#007B2D!important;
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.wire-btn-c-7235{
	color:var(--swatch-var-7235)!important;
	border-color:var(--swatch-var-7235)!important;
	fill:var(--swatch-var-7235);
}
.ltc-7235{
	color:var(--swatch-var-7235)!important;
	fill:var(--swatch-var-7235);
}
.ltc-7235:hover{
	color:#007B2D!important;
	fill:var(--swatch-var-7235);
}
.icon-7235{
	color:var(--swatch-var-7235)!important;
	border-color:var(--swatch-var-7235)!important;
}
/**/.bgc-7070{
	background-color:var(--swatch-var-7070);
}
.tc-7070{
	color:var(--swatch-var-7070)!important;
}
.btn-c-7070,.btn-c-7070:focus{
	background:var(--swatch-var-7070);
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.btn-c-7070:hover{
	background:#B41909!important;
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.wire-btn-c-7070{
	color:var(--swatch-var-7070)!important;
	border-color:var(--swatch-var-7070)!important;
	fill:var(--swatch-var-7070);
}
.ltc-7070{
	color:var(--swatch-var-7070)!important;
	fill:var(--swatch-var-7070);
}
.ltc-7070:hover{
	color:#B41909!important;
	fill:var(--swatch-var-7070);
}
.icon-7070{
	color:var(--swatch-var-7070)!important;
	border-color:var(--swatch-var-7070)!important;
}
/**/.bgc-7016{
	background-color:var(--swatch-var-7016);
}
.tc-7016{
	color:var(--swatch-var-7016)!important;
}
.btn-c-7016,.btn-c-7016:focus{
	background:var(--swatch-var-7016);
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.btn-c-7016:hover{
	background:#A80000!important;
	color:#FFFFFF!important;
	fill:#FFFFFF;
}

/* Link colour styles */

.ltc-2762{
	color:var(--swatch-var-2762)!important;
	fill:var(--swatch-var-2762);
}
.ltc-2762:hover{
	color:#CCCCCC!important;
	fill:var(--swatch-var-2762);
}

/* Icon colour styles */

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

/* Bloc image backgrounds */


/* = 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;
}
/*Infinite Sliderversion: 2.2.0Author: Lucas TsolakianCopyright 2023, Archetyponhttps://archetypon.net/brics/infinite-slider/*/.splide__list {
		padding: 0;
		margin: 0 auto;
		left: 0;
		right: 0}.is-edit .splide__list {
		display: grid;
		padding: 0;
		margin: 0 auto;
		left: 0;
		right: 0}@media (min-width:576px) {
		.is-edit .splide__list {
			grid-template-columns: 24.75% 24.75% 24.75% 24.75%;
			column-gap: .5%;
			row-gap: 1%}
}.infinite-slider, .is-item {
		background-color: transparent;
}
.is-edit img {
		width: 100%;
		height: auto}.is-edit div, .is-edit>img {
		width: auto;
		overflow: hidden}.is-item {
		position: relative;
		background-color: #eaeaea;
		color: #000;
		overflow: hidden}.is-item .is-bric-container {
		position: absolute;
		width: 100%;
		box-sizing: border-box;
		z-index: 1;
		color: #fff;
		background-color: rgba(0,0,0,0)}.is-item .is-bric-container.hidden {
		display: none}.is-item custom-bric-container {
		z-index: 100;
		width: 100%}.is-item-img.hidden {
		visibility: hidden}.is-item-top {
		top: 0;
		transition: .2s}.is-item-bottom {
		bottom: 0;
		transition: .2s}.is-item-middle {
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		transition: .2s}.is-item .clickable a:hover {
		cursor: pointer!important}.is-item.hover-brightness a:hover img {
		filter: brightness(85%);
		transition-duration: .5s}.ft-clip{
		overflow: hidden!important;
}
.fancy-wrapper{
	    opacity: 0;
	    transition: opacity 0.5s ease-in-out;
}


/* = 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;}
    .link-with-icon.text-sm-start,.link-with-icon.text-sm-left{justify-content: flex-start;}
    .link-with-icon.text-sm-center{justify-content: center;}
    .link-with-icon.text-sm-end,.link-with-icon.text-sm-right{justify-content: flex-end;}
}
@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;}
    .link-with-icon.text-md-start,.link-with-icon.text-md-left{justify-content: flex-start;}
    .link-with-icon.text-md-center{justify-content: center;}
    .link-with-icon.text-md-end,.link-with-icon.text-md-right{justify-content: flex-end;}
}
@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;}
    .link-with-icon.text-lg-start,.link-with-icon.text-lg-left{justify-content: flex-start;}
    .link-with-icon.text-lg-center{justify-content: center;}
    .link-with-icon.text-lg-end,.link-with-icon.text-lg-right{justify-content: flex-end;}
}


/* = 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){
	.officials-style{
		text-align:center;
	}
	.container-div-margin-bottom{
		margin-bottom:70px;
	}
	.online-register-button:hover{
		font-family:"Open Sans";
		font-weight:600;
	}
	.nav-position{
		z-index:200;
	}
	.row-style{
		width:97.8%;
	}
	.blocsapp-special-menu blocsnav{
		background-color:rgba(0,0,0,0.50);
	}
	.img-welcome-style{
		margin-top:0px;
		padding-top:0px;
	}
	.html-widget-padding-right{
		padding-right:21px;
	}
	.h2-style{
		padding-top:0px;
	}
	.img-style{
		background-position:center center;
		width:550px;
	}
	.btn-style:hover{
		font-weight:bold;
	}
	.btn-style{
		font-weight:bold;
		width:93.49%;
		margin-left:0px;
		margin-right:0px;
	}
	.navbar-nav li a{
		color:var(--swatch-var-6694)!important;
	}
	.navbar-nav li a:hover{
		background-color:var(--swatch-var-616);
	}
	.h3-style{
		margin-bottom:0px;
		font-size:33px;
		line-height:48px;
		opacity:1.0;
	}
	.img-71-style{
		padding-top:0px;
		opacity:1.0;
		width:375px;
		margin-bottom:50px;
		margin-left:30px;
	}
	.p-style-red{
		font-size:27px;
	}
	.bloc-padding-top{
		margin-top:10px;
	}
	.results-button{
		padding:18px 18px 18px 18px;
	}
	.news-card-footer-padding{
		padding-left:0px;
		padding-right:0px;
	}
	.row-align{
		margin-bottom:725px;
		padding-left:25px;
	}
	.hl-program-results-button{
		margin-top:30px;
		padding:20px 20px 20px 20px;
	}
	.scroll-down-msg{
		top:-200px;
	}
	.html-widget-padding-left{
		padding-left:68px;
		padding-right:15px;
		margin-right:0px;
	}
	.modal-footer{
		border-width:0px 0px 0px 0px;
	}
	.modal-header{
		border-bottom-width:0px;
	}
	.modal-body{
		border-width:1px 0px 1px 0px;
		border-style:solid;
		border-color:var(--swatch-var-2119)!important;
	}
	.img-102-style{
		width:200px;
	}
	.btn-bloc-19-style{
		width:64.54%;
	}
	.h3-welcome--style{
		line-height:56px;
		margin-top:12px;
	}
	.button-style{
		height:95px;
		margin-bottom:30px;
	}
	.img-padding-top{
		padding-top:20px;
	}
	.h4-style{
		margin-bottom:51px;
	}
	.h4-padding-left{
		padding-left:42px;
		font-size:32px;
		margin-left:40px;
	}
	.h4-bloc-19-style{
		margin-top:37px;
	}
	
	/* MD Row Margin Offsets */
	.voffset-md{
		margin-top:30px;
	}
		.voffset-lg-md{
		margin-top:80px;
	}
	
	/* MD Text Margin Offsets */
	.mg-lg-md{
		margin-top: 10px;
		margin-bottom:40px;
	}
	
}

@media (max-width: 767px){
	.text-center{
	}
	.h4-header{
		text-transform:none;
		margin-bottom:30px;
		font-size:28px;
	}
	.img-contact-style{
		width:250px;
	}
	.welcome-link-style{
		font-size:25px;
	}
	.blocsapp-special-menu blocsnav{
		background-color:rgba(0,0,0,0.50);
	}
	.online-register-button:hover{
		font-family:"Open Sans";
		font-weight:600;
	}
	.html-widget-padding-right{
		padding-right:24px;
	}
	.bloc-padding-top{
		margin-bottom:36px;
	}
	.img-style{
		width:500px;
	}
	.btn-style{
		font-weight:bold;
		width:100%;
		padding-left:0px;
		margin-left:0px;
		padding-right:0px;
	}
	.btn-style:hover{
		font-weight:bold;
	}
	.navbar-nav li a{
		color:var(--swatch-var-6694)!important;
	}
	.navbar-nav li a:hover{
		background-color:var(--swatch-var-616);
	}
	.h3-style{
		margin-bottom:0px;
		font-size:30px;
	}
	.img-71-style{
		padding-top:0px;
		width:350px;
		margin-bottom:50px;
		margin-top:0px;
		margin-left:20px;
	}
	.p-style-red{
		font-size:26px;
	}
	.results-button{
		padding:16px 16px 16px 16px;
	}
	.row-align{
		margin-bottom:725px;
		padding-left:25px;
	}
	.hl-program-results-button{
		font-size:22px;
		padding:20px 20px 20px 20px;
	}
	.h2-style{
		padding-top:0px;
	}
	.scroll-down-msg{
		top:-225px;
	}
	.html-widget-padding-left{
		padding-left:79px;
		padding-right:2px;
		margin-right:50px;
		margin-left:-18px;
		width:100%;
	}
	.p-padding-bottom{
		margin-bottom:0px;
	}
	.modal-footer{
		border-width:0px 0px 0px 0px;
	}
	.modal-header{
		border-bottom-width:0px;
	}
	.modal-body{
		border-style:solid;
		border-color:var(--swatch-var-2119)!important;
		border-width:1px 0px 1px 0px;
	}
	.img-102-style{
		width:175px;
	}
	.btn-bloc-19-style{
		width:79.62%;
		padding-top:25px;
	}
	.h3-welcome--style{
		font-size:34px;
		line-height:52px;
		margin-top:23px;
	}
	.button-style{
		height:93px;
		margin-bottom:30px;
	}
	.img-padding-top{
		padding-top:24px;
	}
	.h4-style{
		font-size:26px;
	}
	.h3-cbc-lounge-style{
		font-size:34px;
	}
	.h4-padding-left{
		padding-left:8px;
		margin-left:40px;
		font-size:30px;
	}
	.row-padding-top{
		margin-top:15px;
	}
	.h4-bloc-19-style{
		margin-top:33px;
	}
	.hotel-width{
		width:auto;
	}
	.sidebar-nav{
		width:230px!important;
	}
	.nav-special.sidebar-nav .nav > li{
		width:80%;
	}
	.nav-invert .sidebar-nav .close-special-menu{
		left:200px;
	}
	
	/* Small Row Margin Offsets */
	.voffset-lg-sm{
		margin-top:80px;
	}
	
	/* Small Text Margin Offsets */
	.mg-lg-sm{
		margin-top: 10px;
		margin-bottom:40px;
	}
	
}

@media (max-width: 575px){
	.nav-position{
		z-index:200;
		position:fixed;
	}
	.h3-style{
		line-height:40px;
		margin-left:0px;
		font-size:28px;
		margin-bottom:0px;
	}
	.h4-header{
		text-transform:none;
		font-size:26px;
		margin-bottom:36px;
	}
	.officials-style{
		font-size:16px;
	}
	.welcome-link-style{
		font-size:24px;
	}
	.blocsapp-special-menu blocsnav{
		background-color:rgba(0,0,0,0.50);
	}
	.online-register-button{
		width:250px;
		margin-left:auto;
		margin-right:auto;
		padding-right:15px;
		padding-left:15px;
	}
	.container-div-margin-bottom{
		margin-bottom:57px;
	}
	.online-register-button:hover{
		font-weight:bold;
	}
	.navigation{
		background-color:transparent;
	}
	.h2-style{
		line-height:48px;
		padding-top:0px;
	}
	.html-widget-padding-right{
		padding-right:29px;
	}
	.column-white{
		padding:10px 10px 10px 10px;
	}
	.img-style{
		border-width:1px 1px 1px 1px;
		width:350px;
	}
	.btn-style{
		font-weight:bold;
		width:100%;
		padding-left:17px;
		margin-left:8px;
		padding-right:12px;
	}
	.btn-style:hover{
		font-weight:bold;
	}
	.img-glamour-pu-style{
		height:110px;
	}
	.p-style{
		line-height:36px;
		font-size:22px;
	}
	.img-scroll-style{
		height:275px;
	}
	.navbar-nav li a{
		color:var(--swatch-var-2762)!important;
	}
	.navbar-nav li a:hover{
		background-color:var(--swatch-var-616);
	}
	.img-71-style{
		padding-top:0px;
		margin-top:0px;
		margin-bottom:40px;
		padding-bottom:18px;
		width:270px;
		margin-left:20px;
	}
	.p-style-red{
		font-size:24px;
	}
	.form-link{
	}
	.h4-style{
		font-size:24px;
		line-height:34px;
	}
	.form-link2{
		font-size:20px;
	}
	.p-bloc-11-style{
		font-size:20px;
		line-height:34px;
	}
	.bloc-padding-top{
		margin-top:5px;
	}
	.results-button{
		font-size:22px;
		line-height:34px;
		padding:10px 10px 10px 10px;
	}
	.news-card-footer-p-style{
		text-align:center;
	}
	.row-align{
		padding-bottom:20px;
		padding-left:1px;
		padding-right:10px;
	}
	.hl-program-results-button{
		font-size:20px;
		font-weight:900;
		margin:30px 30px 20px 30px;
		padding:10px 10px 10px 10px;
	}
	.scroll-down-msg{
		top:-225px;
	}
	.h4-welcome-style{
		font-size:30px;
		line-height:40px;
	}
	.html-widget-padding-left{
		padding-left:24px;
		padding-right:0px;
		margin-right:0px;
		margin-left:5px;
		width:100%;
	}
	.container-div-bloc-10-margin-left{
		padding-right:0px;
		margin-left:-17px;
		margin-right:auto;
		padding-left:0px;
	}
	.p-padding-bottom{
		padding-bottom:0px;
		margin-bottom:0px;
	}
	.modal-footer{
		border-width:0px 0px 0px 0px;
	}
	.modal-header{
		border-bottom-width:0px;
	}
	.modal-body{
		border-style:solid;
		border-color:var(--swatch-var-2119)!important;
		border-width:1px 0px 1px 0px;
	}
	.img-102-style{
		width:150px;
	}
	.btn-bloc-19-style{
		width:90.15%;
		border-radius:1px 1px 1px 1px;
		padding-top:18px;
	}
	.button-style{
		font-size:22px;
		height:80px;
		margin-bottom:15px;
	}
	.h3-welcome--style{
		font-size:28px;
		line-height:48px;
		margin-top:15px;
	}
	.h3-cbc-lounge-style{
		font-size:32px;
	}
	.h4-padding-left{
		margin-bottom:25px;
		font-size:26px;
		margin-left:0px;
	}
	.row-padding-top{
		padding-top:0px;
		margin-top:26px;
	}
	.h4-bloc-19-style{
		margin-top:31px;
		padding-top:0px;
	}
	.hotel-width{
		width:auto;
	}
	
	/* Mobile Row Margin Offsets */
	.voffset-lg-xs{
		margin-top:80px;
	}
	
	/* Mobile Text Margin Offsets */
	.mg-lg-xs{
		margin-top: 10px;
		margin-bottom:40px;
	}
	
}

