/*-----------------------------------------------------------------------------------
	mubn
	About: A shiny new Blocs website.
	Author: azizi hs
	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 */
nav .dropdown-menu .nav-link{color:rgba(0,0,0,0.6)!important;} /* Maintain Downdown Menu Link Color in Navigation */
[data-bs-theme="dark"] nav .dropdown-menu .nav-link{color:var(--bs-dropdown-link-color)!important;} /* Maintain Downdown Menu Link Color in Navigation in Darkmode */


/* Preloader */

.page-preloader{position: fixed;top: 0;bottom: 0;width: 100%;z-index:100000;background:#FFFFFF url("img/pageload-spinner.gif") no-repeat center center;animation-name: preloader-fade;animation-delay: 2s;animation-duration: 0.5s;animation-fill-mode: both;}
.preloader-complete{animation-delay:0.1s;}
@keyframes preloader-fade {0% {opacity: 1;visibility: visible;}100% {opacity: 0;visibility: hidden;}}

/* = Web Fonts
-------------------------------------------------------------- */

@font-face {
	font-family:'Merriweather-Bold';
	src: url('./fonts/Merriweather-Bold/Merriweather-Bold.ttf');
	src: url('./fonts/Merriweather-Bold/Merriweather-Bold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'Merriweather-Black';
	src: url('./fonts/Merriweather-Black/Merriweather-Black.ttf');
	src: url('./fonts/Merriweather-Black/Merriweather-Black.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

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

.bloc{
	width:100%;
	clear:both;
	background: 50% 50% no-repeat;
	padding:0 20px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position:relative;
	display:flex;
}
.bloc .container{
	padding-left:0;
	padding-right:0;
	position:relative;
}


/* Sizes */

.bloc-lg{
	padding:100px 20px;
}


/* Edge Dividers */

.bloc-shape-divider{
	position: absolute;
	width:100%;
	text-align:center;
	left:0;
	right:0;
	z-index: 0;
	display: flex;
	pointer-events: none;
}
.svg-divider{
	width:100%;
	height:100px;
	fill:#000000;
}
.bloc-divider-top{
	top:-1px;
	align-items: flex-start;
}
.bloc-divider-bottom{
	bottom:-1px;
	align-items: flex-end;
}


/* Flip Edge Divider */

.bloc-divider-flip-x svg{
	transform:scale(-1,1);
}
.bloc-divider-flip-y svg{
	transform:scale(1,-1);
}
.bloc-divider-flip-x.bloc-divider-flip-y svg{
	transform:scale(-1,-1);
}


/* 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-bl-edge{
	background-position: bottom left!important;
	background-repeat: no-repeat;
}


/* Background Effects */

.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index:-1;
}
.parallax {
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* Dark theme */

.d-bloc{
	color:rgba(255,255,255,.7);
}
.d-bloc button:hover{
	color:rgba(255,255,255,.9);
}
.d-bloc .icon-round,.d-bloc .icon-square,.d-bloc .icon-rounded,.d-bloc .icon-semi-rounded-a,.d-bloc .icon-semi-rounded-b{
	border-color:rgba(255,255,255,.9);
}
.d-bloc .divider-h span{
	border-color:rgba(255,255,255,.2);
}
.d-bloc .a-btn,.d-bloc .navbar a, .d-bloc a .icon-sm, .d-bloc a .icon-md, .d-bloc a .icon-lg, .d-bloc a .icon-xl, .d-bloc h1 a, .d-bloc h2 a, .d-bloc h3 a, .d-bloc h4 a, .d-bloc h5 a, .d-bloc h6 a, .d-bloc p a{
	color:rgba(255,255,255,.6);
}
.d-bloc .a-btn:hover,.d-bloc .navbar a:hover,.d-bloc a:hover .icon-sm, .d-bloc a:hover .icon-md, .d-bloc a:hover .icon-lg, .d-bloc a:hover .icon-xl, .d-bloc h1 a:hover, .d-bloc h2 a:hover, .d-bloc h3 a:hover, .d-bloc h4 a:hover, .d-bloc h5 a:hover, .d-bloc h6 a:hover, .d-bloc p a:hover{
	color:rgba(255,255,255,1);
}
.d-bloc .navbar-toggle .icon-bar{
	background:rgba(255,255,255,1);
}
.d-bloc .btn-wire,.d-bloc .btn-wire:hover{
	color:rgba(255,255,255,1);
	border-color:rgba(255,255,255,1);
}
.d-bloc .card{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover{
	color:rgba(0,0,0,.7);
}
.d-bloc .card icon{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover{
	color:rgba(0,0,0,1);
}
.d-bloc .card .btn-wire, .d-bloc .card .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* Light theme */

.d-bloc .card,.l-bloc{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover,.l-bloc button:hover{
	color:rgba(0,0,0,.7);
}
.l-bloc .icon-round,.l-bloc .icon-square,.l-bloc .icon-rounded,.l-bloc .icon-semi-rounded-a,.l-bloc .icon-semi-rounded-b{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span,.l-bloc .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn,.l-bloc .a-btn,.l-bloc .navbar a,.l-bloc a .icon-sm, .l-bloc a .icon-md, .l-bloc a .icon-lg, .l-bloc a .icon-xl, .l-bloc h1 a, .l-bloc h2 a, .l-bloc h3 a, .l-bloc h4 a, .l-bloc h5 a, .l-bloc h6 a, .l-bloc p a{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover,.l-bloc .a-btn:hover,.l-bloc .navbar a:hover, .l-bloc a:hover .icon-sm, .l-bloc a:hover .icon-md, .l-bloc a:hover .icon-lg, .l-bloc a:hover .icon-xl, .l-bloc h1 a:hover, .l-bloc h2 a:hover, .l-bloc h3 a:hover, .l-bloc h4 a:hover, .l-bloc h5 a:hover, .l-bloc h6 a:hover, .l-bloc p a:hover{
	color:rgba(0,0,0,1);
}
.l-bloc .navbar-toggle .icon-bar{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .btn-wire,.d-bloc .card .btn-wire:hover,.l-bloc .btn-wire,.l-bloc .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}

/* Row Margin Offsets */

.voffset{
	margin-top:30px;
}


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

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

.sticky-nav.sticky{
	position:fixed;
	top:0;
	z-index:1000;
	box-shadow:0 1px 2px rgba(0,0,0,.3);
	 transition: all .2s ease-out;
}
/* Navbar Icon */
.svg-menu-icon{
	fill: none;
	stroke: rgba(0,0,0,0.5);
	stroke-width: 2px;
	fill-rule: evenodd;
}
.navbar-dark .svg-menu-icon{
	stroke: rgba(255,255,255,0.5);
}
.menu-icon-thin-bars{
	stroke-width: 1px;
}
.menu-icon-thick-bars{
	stroke-width: 5px;
}
.menu-icon-rounded-bars{
	stroke-width: 3px;
	stroke-linecap: round;
}
.menu-icon-filled{
	fill: rgba(0,0,0,0.5);
	stroke-width: 0px;
}
.navbar-dark .menu-icon-filled{
	fill: rgba(255,255,255,0.5);
}
.navbar-toggler-icon{
	background: none!important;
	pointer-events: none;
	width: 33px;
	height: 33px;
}
.navbar-toggle.menu-icon-rounded-uneven-list{
	margin-top:7px!important;
}
/* Handle Multi Level Navigation */
.dropdown-menu .dropdown-menu{
	border:none}
@media (min-width:576px){
	
.navbar-expand-sm .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-sm .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:768px){
	.navbar-expand-md .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-md .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:992px){
	.navbar-expand-lg .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-lg .dropdown-menu .submenu-left{
	right:100%;
	left:auto}
}
/* = Bric adjustment margins
-------------------------------------------------------------- */

.mg-clear{
	margin:0;
}
.mg-sm{
	margin-top:10px;
	margin-bottom:5px;
}
.mg-md{
	margin-top:10px;
	margin-bottom:20px;
}

/* = 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-rd{
	border-radius: 40px;
}
.btn-glossy{
	border:1px solid rgba(0,0,0,.09);
	border-bottom-color:rgba(0,0,0,.2);
	text-shadow:0 1px 0 rgba(0,0,1,.2);
	box-shadow: 0 1px 3px rgba(0,0,1,.35), inset 0 1px 0 0 rgba(255,255,255,.4), inset 0 1px 0 2px rgba(255,255,255,.08);
	background-image: -moz-linear-gradient(bottom, rgba(0,0,0,.07) 0%, rgba(255,255,255,.07) 100%);
	 background-image: -o-linear-gradient(bottom, rgba(0,0,0,.07) 0%, rgba(255,255,255,.07) 100%);
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,.07) 0%, rgba(255,255,255,.07) 100%);
	background-image: linear-gradient(bottom, rgba(0,0,0,.07) 0%, rgba(255,255,255,.07) 100%);
}
.btn-style-none,.btn-style-none:hover,.btn-style-none:active,.btn-style-none:focus{
	background:none;
	box-shadow: none;
	padding:0;
}
.btn-wire{
	background:transparent!important;
	border:2px solid transparent;
}
.btn-wire:hover{
	background:transparent!important;
	border:2px solid transparent;
}


/*  Image Protection */
.img-protected{
	-webkit-touch-callout: none;
}

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

/* = Lists
-------------------------------------------------------------- */
.list-horizontal-layout li{
	display:inline-block;
	margin:0 10px;
}
.list-sp-md li:last-child,.list-sp-lg li:last-child,.list-sp-xl li:last-child{
	padding-bottom:0;
}

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

.close{
	color:#000;
	opacity:0.5;
}
.close:hover{
	opacity:1;
}

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

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Helvetica";
}
.container{
	max-width:1140px;
}
.navbar-brand img{
	width:120px;
}
.navi{
	color:rgba(0,0,0,0.87)!important;
	font-family:"Merriweather-Bold";
}
.navi:hover{
	color:#D59244!important;
}
.img-style{
	width:270px;
}
.img-grow-style{
	width:285px;
	margin-top:34px;
	padding-top:0px;
}
.bloc-fill{
	fill:#000000;
}
.bloc-divider-b-fill{
	fill:var(--swatch-var-722);
}
.p-padding-left{
	padding-left:92px;
	padding-right:115px;
	font-family:"PT Serif Caption";
	font-weight:700;
	font-size:12px;
}
.h3-padding-left{
	padding-left:94px;
}
.p-style{
	font-size:14px;
}
.bloc-divider-t-fill{
	fill:var(--swatch-var-722);
	height:35px;
}
.p-bloc-2-style{
	font-size:12px;
}
.h2-style{
	font-family:"PT Serif";
}
.bloc-divider-t-bloc-2-fill{
	fill:var(--swatch-var-722);
	height:246px;
}
.p-2-style{
	font-size:14px;
}
.img-4-style{
	width:117px;
}
.backg{
	background-color:var(--swatch-var-3);
	box-shadow:0.00px -0.00px 7px #000000;
}
.p-8-style{
	font-size:12px;
}
.p-9-style{
	font-size:12px;
}
.p-10-style{
	font-size:12px;
}
.p-11-style{
	font-size:12px;
}
.p-12-style{
	font-size:12px;
}
.p-13-style{
	font-size:12px;
}
.p-3-style{
	font-size:12px;
}
.p-4-style{
	font-size:12px;
}
.p-5-style{
	font-size:12px;
}
.p-6-style{
	font-size:12px;
}
.p-7-style{
	font-size:12px;
}
.h4-style{
	font-size:16px;
	font-family:"PT Serif";
	color:var(--swatch-var-3)!important;
}
.h4-bloc-2-style{
	font-size:16px;
	font-family:"PT Serif";
	color:var(--swatch-var-3)!important;
}
.h4-3-style{
	font-size:16px;
	font-family:"PT Serif";
	color:var(--swatch-var-722)!important;
}
.h4-4-style{
	font-size:16px;
	font-family:"PT Serif";
	color:var(--swatch-var-722)!important;
}
.h4-5-style{
	font-size:16px;
	font-family:"PT Serif";
	color:var(--swatch-var-722)!important;
}
.white{
	color:#FEFFFF!important;
}
.img-7-style{
	width:170px;
}
.p-14-style{
	font-size:8px;
}
.row-padding-top{
	padding-top:0px;
	margin-top:4px;
}
.bloc-divider-b-bloc-2-fill{
	fill:var(--swatch-var-3);
	height:304px;
}
.bloc-divider-t-0-fill{
	fill:var(--swatch-var-3);
}
.img-placeholder-us-style{
	width:138px;
}
.p-15-style{
	width:67.31%;
	font-size:12px;
	line-height:20px;
}
.margin-toss{
	margin-top:20px;
}
.p-bloc-3-style{
	font-size:14px;
}
.bloc-divider-b-bloc-3-fill{
	fill:#216974;
}
.p-17-style{
	font-size:14px;
}
.bloc-divider-t-38523-fill{
	fill:#216974;
}
.p-18-style{
	font-size:12px;
	color:var(--swatch-var-2869)!important;
}
.p-19-style{
	font-size:12px;
	color:var(--swatch-var-2869)!important;
}
.p-20-style{
	font-size:12px;
	color:var(--swatch-var-2869)!important;
}
.p-21-style{
	font-size:12px;
	color:var(--swatch-var-2869)!important;
}
.p-22-style{
	font-size:12px;
	color:var(--swatch-var-2869)!important;
}
.p-23-style{
	font-size:12px;
	color:var(--swatch-var-2869)!important;
}
.img-12-style{
	width:131px;
}
.img-13-style{
	width:131px;
}
.img-14-style{
	width:131px;
}
.img-15-style{
	width:131px;
}
.img-16-style{
	width:131px;
}
.h2-our-founder-style{
	font-family:"PT Serif";
	color:var(--swatch-var-3994)!important;
}
.h2-our-approach-style{
	font-family:"PT Serif";
	color:var(--swatch-var-722)!important;
}
.h3-style{
	font-family:"PT Serif";
}
.bloc-divider-b-bloc-4-fill{
	fill:#216974;
}
.bloc-divider-t-19784-fill{
	fill:#000000;
}
.h3-bloc-5-style{
	font-family:"PT Serif";
}
.img-bloc-5-style{
	width:705px;
}
.bloc-divider-t-style{
	height:68px;
	fill:var(--swatch-var-722);
}
.h3-4-style{
	font-family:"PT Serif";
}
.p-bloc-6-style{
	font-size:32px;
	font-family:"PT Serif";
}
.p-padding-top{
	padding-top:33px;
	font-size:14px;
}
.top-margin{
	margin-top:40px;
}
.p-90-style{
	font-size:12px;
}
.font-zse{
	font-size:12px;
}
.p-109-style{
	font-size:14px;
}
.p-123-style{
	font-size:14px;
}
.p-77-style{
	font-size:14px;
}
.p-78-style{
	font-size:14px;
}
.p-79-style{
	font-size:14px;
}
.p-80-style{
	font-size:14px;
}
.p-81-style{
	font-size:14px;
}
.p-82-style{
	font-size:14px;
}
.p-83-style{
	font-size:14px;
}
.p-84-style{
	font-size:14px;
}
.p-85-style{
	font-size:14px;
}
.p-86-style{
	font-size:14px;
}
.p-87-style{
	font-size:14px;
}
.p-88-style{
	font-size:14px;
}
.p-96-style{
	font-size:14px;
}
.p-97-style{
	font-size:14px;
}
.p-98-style{
	font-size:14px;
}
.p-99-style{
	font-size:14px;
}
.p-100-style{
	font-size:14px;
}
.p-102-style{
	font-size:14px;
}
.p-103-style{
	font-size:14px;
}
.p-104-style{
	font-size:14px;
}
.p-105-style{
	font-size:14px;
}
.p-106-style{
	font-size:14px;
	letter-spacing:0px;
}
.p-107-style{
	font-size:14px;
}
.p-110-style{
	font-size:14px;
}
.p-122-style{
	font-size:14px;
}
.p-123-bloc-6-style{
	font-size:14px;
}
.p-124-style{
	font-size:14px;
}
.p-125-style{
	font-size:14px;
}
.p-126-style{
	font-size:14px;
}
.p-127-style{
	font-size:14px;
}
.p-128-style{
	font-size:14px;
}
.p-129-style{
	font-size:14px;
}
.p-130-style{
	font-size:14px;
}
.p-133-style{
	font-size:14px;
}
.p-128-bloc-6-style{
	font-size:14px;
}
.p-127-bloc-6-style{
	font-size:14px;
}
.p-126-bloc-6-style{
	font-size:14px;
}
.p-125-bloc-6-style{
	font-size:14px;
}
.p-124-bloc-6-style{
	font-size:14px;
}
.p-39890-style{
	font-size:14px;
}
.p-122-bloc-6-style{
	font-size:14px;
}
.p-121-style{
	font-size:14px;
}
.p-120-style{
	font-size:14px;
}
.navi-size{
	font-family:"PT Sans";
	font-size:14px;
}
.h2-3-style{
	font-family:"PT Serif";
}
.p-bloc-7-style{
	font-size:32px;
	font-family:"PT Serif";
}
.p-147-style{
	font-size:32px;
	font-family:"PT Serif";
}
.p-148-style{
	font-size:32px;
	font-family:"PT Serif";
}
.p-149-style{
	font-size:32px;
	font-family:"PT Serif";
}
.p-147-bloc-7-style{
	font-size:14px;
}
.p-148-bloc-7-style{
	font-size:14px;
}
.p-149-bloc-7-style{
	font-size:14px;
}
.p-150-style{
	font-size:14px;
}
.p-151-style{
	font-size:14px;
}
.p-152-style{
	font-size:14px;
}
.p-155-style{
	font-size:14px;
}
.p-156-style{
	font-size:14px;
}
.p-157-style{
	font-size:14px;
}
.p-158-style{
	font-size:14px;
}
.p-159-style{
	font-size:14px;
}
.p-163-style{
	font-size:12px;
}
.p-172-style{
	font-size:12px;
}
.p-168-style{
	font-size:14px;
}
.p-169-style{
	font-size:14px;
}
.p-170-style{
	font-size:14px;
}
.p-171-style{
	font-size:14px;
}
.p-174-style{
	font-size:14px;
}
.p-175-style{
	font-size:14px;
}
.p-176-style{
	font-size:14px;
}
.p-177-style{
	font-size:14px;
}
.p-178-style{
	font-size:14px;
}
.p-180-style{
	font-size:14px;
}
.p-191-style{
	font-size:12px;
}
.fontis{
	font-size:14px;
}
.p-195-style{
	font-size:14px;
}
.p-216-style{
	font-size:12px;
}
.title-navi{
	font-family:"PT Serif";
	text-align:center;
	font-size:25px;
	font-weight:bold;
	text-transform:capitalize;
}
.h2-4-style{
	font-family:"PT Serif";
}
.h2-5-style{
	font-family:"PT Serif";
}
.h2-6-style{
	font-family:"PT Serif";
}
.drop-down-list{
	text-transform:capitalize;
}
.buttonz{
	font-family:"PT Serif";
	margin-top:10px;
	border-radius:14px 14px 14px 14px;
	background-color:var(--swatch-var-3);
	box-shadow:0.28px -0.96px 4px #000000;
}
.h3-bloc-1-style{
	font-family:"Merriweather-Bold";
}
.btn-style{
	width:24.73%;
}
.con{
	padding-right:15px;
	border-width:1px 1px 1px 1px;
	border-style:solid;
	border-color:rgba(0,0,0,0.15)!important;
	padding-left:15px;
}
.bloc-divider-t-bloc-10-fill{
	fill:var(--swatch-var-722);
	height:97px;
}
.bloc-divider-t-bloc-9-fill{
	fill:var(--swatch-var-722);
	height:68px;
}
.bloc-divider-t-bloc-6-fill{
	fill:var(--swatch-var-722);
	height:68px;
}
.bloc-divider-t-bloc-7-style{
	height:68px;
	fill:var(--swatch-var-722);
}
.h3-6-style{
	font-family:"Merriweather-Black";
}
.h3-7-style{
	font-size:16px;
}
.h3-8-style{
	font-size:16px;
}
.h3-9-style{
	font-size:16px;
}
.h3-training-venue-style{
	font-size:16px;
}
.bloc-divider-t-bloc-12-fill{
	fill:var(--swatch-var-722);
	height:68px;
}
.img-bloc-4-style{
	width:131px;
}
.img-bloc-6-style{
	width:131px;
}
.img-19-style{
	width:131px;
}
.img-20-style{
	width:131px;
}
.img-21-style{
	width:131px;
}
.img-22-style{
	width:131px;
}
.img-26-style{
	width:131px;
}
.img-27-style{
	width:131px;
}
.img-28-style{
	width:131px;
}
.img-29-style{
	width:131px;
}
.img-30-style{
	width:131px;
}
.img-34-style{
	width:131px;
}
.img-35-style{
	width:131px;
}
.img-36-style{
	width:131px;
}
.img-37-style{
	width:131px;
}
.img-38-style{
	width:131px;
}
.img-42-style{
	width:131px;
}
.img-43-style{
	width:131px;
}
.img-44-style{
	width:131px;
}
.img-45-style{
	width:131px;
}
.img-46-style{
	width:131px;
}
.img-bloc-8-style{
	width:131px;
}
.img-91-style{
	width:131px;
}
.img-92-style{
	width:131px;
}
.img-93-style{
	width:131px;
}
.img-94-style{
	width:131px;
}
.img-98-style{
	width:131px;
}
.img-99-style{
	width:131px;
}
.img-100-style{
	width:131px;
}
.img-101-style{
	width:131px;
}
.img-102-style{
	width:131px;
}
.img-106-style{
	width:131px;
}
.img-107-style{
	width:131px;
}
.img-108-style{
	width:131px;
}
.img-109-style{
	width:131px;
}
.img-110-style{
	width:131px;
}
.img-114-style{
	width:131px;
}
.img-115-style{
	width:131px;
}
.img-116-style{
	width:131px;
}
.img-117-style{
	width:131px;
}
.img-118-style{
	width:131px;
}
.img-122-style{
	width:131px;
}
.img-123-style{
	width:131px;
}
.img-124-style{
	width:131px;
}
.img-125-style{
	width:131px;
}
.img-126-style{
	width:131px;
}
.img-bloc-7-style{
	width:131px;
}
.img-51-style{
	width:131px;
}
.img-52-style{
	width:131px;
}
.img-53-style{
	width:131px;
}
.img-54-style{
	width:131px;
}
.img-58-style{
	width:131px;
}
.img-59-style{
	width:131px;
}
.img-60-style{
	width:131px;
}
.img-61-style{
	width:131px;
}
.img-62-style{
	width:131px;
}
.img-66-style{
	width:131px;
}
.img-67-style{
	width:131px;
}
.img-68-style{
	width:131px;
}
.img-69-style{
	width:131px;
}
.img-70-style{
	width:131px;
}
.img-74-style{
	width:131px;
}
.img-75-style{
	width:131px;
}
.img-76-style{
	width:131px;
}
.img-77-style{
	width:131px;
}
.img-78-style{
	width:131px;
}
.img-82-style{
	width:131px;
}
.img-83-style{
	width:131px;
}
.img-84-style{
	width:131px;
}
.img-85-style{
	width:131px;
}
.img-86-style{
	width:131px;
}
.img-bloc-9-style{
	width:131px;
}
.img-131-style{
	width:131px;
}
.img-132-style{
	width:131px;
}
.img-133-style{
	width:131px;
}
.img-134-style{
	width:131px;
}
.img-138-style{
	width:131px;
}
.img-139-style{
	width:131px;
}
.img-140-style{
	width:131px;
}
.img-141-style{
	width:131px;
}
.img-142-style{
	width:131px;
}
.img-146-style{
	width:131px;
}
.img-147-style{
	width:131px;
}
.img-148-style{
	width:131px;
}
.img-149-style{
	width:131px;
}
.img-150-style{
	width:131px;
}
.img-bloc-10-style{
	width:131px;
}
.img-155-style{
	width:131px;
}
.img-156-style{
	width:131px;
}
.img-157-style{
	width:131px;
}
.img-158-style{
	width:131px;
}
.img-162-style{
	width:131px;
}
.img-163-style{
	width:131px;
}
.img-164-style{
	width:131px;
}
.img-165-style{
	width:131px;
}
.img-166-style{
	width:131px;
}
.img-167-style{
	width:131px;
}

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

/* Swatch Variables */
:root{
	
	--swatch-var-5324:rgba(245,245,231,1.00);
	
	--swatch-var-599:rgba(0,146,68,1.00);
	
	--swatch-var-3165:rgba(0,94,42,1.00);
	
	--swatch-var-4498:rgba(40,86,35,1.00);
	
	--swatch-var-2869:rgba(55,54,54,1.00);
	
	--swatch-var-2941:#FFFFFF;
	
	--swatch-var-3994:rgba(33,105,116,1.00);
	
	--swatch-var-3:rgba(65,118,143,1.00);
	
	--swatch-var-722:rgba(65,118,111,1.00);
	
}


/* Background colour styles */

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

/* Text colour styles */

.tc-2869{
	color:var(--swatch-var-2869)!important;
}
.tc-3165{
	color:var(--swatch-var-3165)!important;
}
.tc-2941{
	color:var(--swatch-var-2941)!important;
}

/* Button colour styles */

.btn-c-3994{
	background:var(--swatch-var-3994);
	color:#FFFFFF!important;
}
.btn-c-3994:hover{
	background:#003541!important;
	color:#FFFFFF!important;
}
.wire-btn-c-599{
	color:var(--swatch-var-599)!important;
	border-color:var(--swatch-var-599)!important;
}

/* Bloc image backgrounds */


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

#particles-js{
	position: absolute;
	height:100%;
	width: 100%;
	left: 0;
	right:0;
	top:0;
	bottom: 0;
}


/* = 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){
	.img-bloc-2-style{
		width:159px;
	}
	.img-5-style{
		width:159px;
	}
	.img-6-style{
		width:159px;
	}
	.img-8-style{
		width:159px;
	}
	.img-7-style{
		width:159px;
	}
	.p-bloc-3-style{
		font-size:14px;
	}
	
}

@media (max-width: 767px){
	.p-style{
		font-size:12px;
	}
	.p-2-style{
		font-size:12px;
	}
	.h5-style{
		font-size:16px;
	}
	
}

@media (max-width: 575px){
	.p-padding-left{
		padding-right:1px;
		padding-left:128px;
	}
	.img-style{
		width:206px;
	}
	.img-grow-style{
		width:216px;
	}
	.p-style{
		font-size:12px;
	}
	.footer-link{
		text-align:center;
	}
	.p-2-style{
		font-size:12px;
	}
	.p-bloc-3-style{
		font-size:12px;
	}
	.p-bloc-6-style{
		font-size:16px;
	}
	.p-bloc-5-style{
		font-size:12px;
	}
	.btn-style{
		width:44.48%;
	}
	.p-18-bloc-3-style{
		font-size:12px;
	}
	.p-19-bloc-3-style{
		font-size:12px;
	}
	.p-20-bloc-3-style{
		font-size:12px;
	}
	.p-21-bloc-3-style{
		font-size:12px;
	}
	.p-22-bloc-3-style{
		font-size:12px;
	}
	.p-23-bloc-3-style{
		font-size:12px;
	}
	.p-24-style{
		font-size:12px;
	}
	.p-25-style{
		font-size:12px;
	}
	.p-26-style{
		font-size:12px;
	}
	.img-bloc-2-style{
		width:115px;
	}
	.img-5-style{
		width:115px;
	}
	.img-6-style{
		width:115px;
	}
	.img-7-style{
		width:115px;
	}
	.img-8-style{
		width:115px;
	}
	.img-4-style{
		width:115px;
	}
	.p-bloc-8-style{
		font-size:14px;
	}
	.h5-bloc-8-style{
		font-size:14px;
	}
	.p-padding-top{
		font-size:12px;
	}
	.h5-64-style{
		font-size:14px;
	}
	.p-253-style{
		font-size:12px;
	}
	.p-254-style{
		font-size:12px;
	}
	.p-255-style{
		font-size:12px;
	}
	.p-256-style{
		font-size:12px;
	}
	.p-257-style{
		font-size:12px;
	}
	.p-258-style{
		font-size:12px;
	}
	.p-259-style{
		font-size:12px;
	}
	.p-262-style{
		font-size:12px;
	}
	.p-263-style{
		font-size:12px;
	}
	.p-261-style{
		font-size:14px;
	}
	.p-264-style{
		font-size:12px;
	}
	.p-265-style{
		font-size:12px;
	}
	.p-266-style{
		font-size:12px;
	}
	.p-267-style{
		font-size:12px;
	}
	.p-268-style{
		font-size:12px;
	}
	.p-269-style{
		font-size:12px;
	}
	.p-272-style{
		font-size:12px;
	}
	.h5-68-style{
		font-size:14px;
	}
	.h5-67-style{
		font-size:14px;
	}
	.h5-modules-style{
		font-size:14px;
	}
	.h5-65-style{
		font-size:14px;
	}
	.p-276-style{
		font-size:16px;
	}
	.h5-69-style{
		font-size:14px;
	}
	.p-277-style{
		font-size:12px;
	}
	.h5-70-style{
		font-size:14px;
	}
	.p-278-style{
		font-size:12px;
	}
	.p-279-style{
		font-size:12px;
	}
	.p-280-style{
		font-size:12px;
	}
	.p-281-style{
		font-size:12px;
	}
	.p-282-style{
		font-size:12px;
	}
	.p-283-style{
		font-size:12px;
	}
	.h5-71-style{
		font-size:14px;
	}
	.p-286-style{
		font-size:12px;
	}
	.p-287-style{
		font-size:12px;
	}
	.p-288-style{
		font-size:12px;
	}
	.p-289-style{
		font-size:12px;
	}
	.p-285-style{
		font-size:12px;
	}
	.h5-72-style{
		font-size:14px;
	}
	.h5-73-style{
		font-size:14px;
	}
	.h5-74-style{
		font-size:14px;
	}
	.p-296-style{
		font-size:16px;
	}
	.h5-75-style{
		font-size:14px;
	}
	.h5-78-style{
		font-size:14px;
	}
	.h5-77-style{
		font-size:14px;
	}
	.h5-76-style{
		font-size:14px;
	}
	.p-324-style{
		font-size:16px;
	}
	.h5-81-style{
		font-size:14px;
	}
	.h5-82-style{
		font-size:14px;
	}
	.h5-83-style{
		font-size:14px;
	}
	.h5-84-style{
		font-size:14px;
	}
	.h5-85-style{
		font-size:14px;
	}
	.h5-86-style{
		font-size:14px;
	}
	.p-347-style{
		font-size:16px;
	}
	.h5-87-style{
		font-size:14px;
	}
	.h5-88-style{
		font-size:14px;
	}
	.h5-89-style{
		font-size:14px;
	}
	.h5-90-style{
		font-size:14px;
	}
	.h5-91-style{
		font-size:14px;
	}
	.h5-92-style{
		font-size:14px;
	}
	.p-367-style{
		font-size:14px;
	}
	.p-368-style{
		font-size:14px;
	}
	.navi{
	}
	.navi-size{
	}
	.top-margin{
	}
	.p-336-style{
		font-size:12px;
	}
	.p-337-style{
		font-size:12px;
	}
	.p-338-style{
		font-size:12px;
	}
	.p-339-style{
		font-size:12px;
	}
	.p-bloc-7-style{
		font-size:14px;
	}
	.h5-bloc-7-style{
		font-size:13px;
	}
	.h5-34-style{
		font-size:13px;
	}
	.h5-35-style{
		font-size:13px;
	}
	.h5-36-style{
		font-size:13px;
	}
	.h5-37-style{
		font-size:13px;
	}
	.h5-38-style{
		font-size:13px;
	}
	.p-147-style{
		font-size:16px;
	}
	.h5-45-style{
		font-size:13px;
	}
	.h5-46-style{
		font-size:13px;
	}
	.h5-47-style{
		font-size:13px;
	}
	.h5-48-style{
		font-size:13px;
	}
	.h5-49-style{
		font-size:13px;
	}
	.h5-50-style{
		font-size:13px;
	}
	.p-208-style{
		font-size:13px;
	}
	.p-148-style{
		font-size:13px;
	}
	.h5-51-style{
		font-size:13px;
	}
	.h5-52-style{
		font-size:13px;
	}
	.h5-53-style{
		font-size:13px;
	}
	.h5-54-style{
		font-size:13px;
	}
	.h5-55-style{
		font-size:13px;
	}
	.h5-56-style{
		font-size:13px;
	}
	.p-229-style{
		font-size:13px;
	}
	.p-230-style{
		font-size:13px;
	}
	.p-149-style{
		font-size:16px;
	}
	.h5-57-style{
		font-size:13px;
	}
	.h5-58-style{
		font-size:13px;
	}
	.h5-59-style{
		font-size:13px;
	}
	.h5-60-style{
		font-size:13px;
	}
	.h5-61-style{
		font-size:13px;
	}
	.h5-62-style{
		font-size:13px;
	}
	.p-bloc-9-style{
		font-size:16px;
	}
	.p-396-style{
		font-size:16px;
	}
	.p-424-style{
		font-size:16px;
	}
	.p-bloc-10-style{
		font-size:16px;
	}
	.p-443-style{
		font-size:16px;
	}
	.h3-bloc-12-style{
		font-family:"PT Serif";
	}
	
}

