/*-----------------------------------------------------------------------------------
	Divine Insurance Agency
	About: Divine Insurance Agency Website
	Author: Josue B.
	Version: 1.1
	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;}}

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

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


/* 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 Textures */

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


/* Dark theme */

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


/* Light theme */

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


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

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

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





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

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

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

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Helvetica";
}
.container{
	max-width:1140px;
}
.blocs-card-width{
	width:25%;
}
.navbar-logo{
	text-transform:none;
	text-decoration:none;
}
.p-style{
	width:100%;
	font-size:14px;
}
.p-bloc-0-style{
	width:100%;
	font-size:14px;
}
.p-4-style{
	width:31.72%;
}
.p-3-style{
	font-size:14px;
}
.link-style{
	text-decoration:none;
	font-weight:bold;
}
.link--702-628-6405-style{
	text-decoration:none;
	font-weight:bold;
}
.bloc-divider-t-fill{
	fill:var(--swatch-var-6809);
}
.img-style{
	width:200px;
}
.img-forb-style{
	width:200px;
}
.img-bloc-2-style{
	width:200px;
}
.img-guardi-style{
	width:200px;
}
.h1-style{
	font-size:37px;
	font-family:"Domine";
}
.p-bloc-2-style{
	font-size:22px;
}
.txt-label-style{
	font-size:19px;
	color:var(--swatch-var-7343)!important;
}
.input-style{
	border-style:solid;
	border-color:var(--swatch-var-3134)!important;
}
.botton-frm-style{
	background-color:var(--swatch-var-2948);
	font-size:27px;
	font-weight:bold;
	text-transform:uppercase;
	color:var(--swatch-var-6142)!important;
	border-style:solid;
	border-color:var(--swatch-var-6142)!important;
	border-width:2px 2px 2px 2px;
	font-family:"Domine";
}
.botton-frm-style:hover{
	background-color:var(--swatch-var-6142);
	color:var(--swatch-var-2948)!important;
	font-weight:bold;
	text-transform:uppercase;
	font-size:27px;
	border-width:2px 2px 2px 2px;
	border-color:var(--swatch-var-2948)!important;
}
.option-selector-style{
	font-size:30px;
	color:var(--swatch-var-7343)!important;
	text-transform:uppercase;
	font-weight:bold;
}
.agree-selector-txt{
	color:var(--swatch-var-819)!important;
	font-size:19px;
}
input{
	border-style:solid;
	border-color:var(--swatch-var-2948)!important;
}
.txt-ag-style{
	font-size:19px;
	color:var(--swatch-var-819)!important;
}
.botton-frm-style:active{
	font-size:27px;
	color:var(--swatch-var-2948)!important;
	border-width:2px 2px 2px 2px;
	border-color:var(--swatch-var-6142)!important;
	border-style:solid;
	background-color:var(--swatch-var-4110);
}
.botton-frm-style:visited{
	background-color:var(--swatch-var-4110);
	font-size:27px;
	font-weight:bold;
	color:var(--swatch-var-2948)!important;
	border-width:2px 2px 2px 2px;
	border-color:var(--swatch-var-2948)!important;
}
.botton-frm-style:focus{
	border-width:2px 2px 2px 2px;
	border-color:var(--swatch-var-2948)!important;
	font-size:27px;
	font-weight:bold;
	color:var(--swatch-var-2948)!important;
	background-color:var(--swatch-var-4110);
}
.p-bloc-5-style{
	font-size:34px;
	color:var(--swatch-var-674)!important;
	line-height:40px;
	font-family:"Domine";
}
.p-7-style{
	font-size:21px;
	line-height:32px;
}
.h1-dma-txt{
	font-weight:bold;
	color:var(--swatch-var-2948)!important;
	text-transform:uppercase;
}
.txt-00{
	font-weight:bold;
	text-transform:none;
	text-decoration:none;
	color:var(--swatch-var-2948)!important;
}
.txt-prg{
	color:var(--swatch-var-7343)!important;
}
.bto-style{
	font-size:30px;
	font-weight:bold;
	color:var(--swatch-var-6142)!important;
	background-color:var(--swatch-var-2948);
	text-transform:uppercase;
	font-family:"Domine";
}
.bto-style:hover{
	color:var(--swatch-var-2948)!important;
	background-color:var(--swatch-var-4110);
	border-width:1px 1px 1px 1px;
	border-style:solid;
	border-color:var(--swatch-var-2948)!important;
}
.h1-bloc-5-style{
	font-size:37px;
	line-height:45px;
	font-family:"Domine";
}
.h1-3-style{
	font-size:35px;
	font-family:"Domine";
}
.txt-st00{
	font-weight:bold;
	color:var(--swatch-var-2948)!important;
}
.serv-txt-style{
	font-weight:bold;
	color:var(--swatch-var-2948)!important;
	font-family:"Domine";
}
.desc-style-txt{
	color:var(--swatch-var-7343)!important;
}
.h2-style{
	font-size:37px;
	line-height:45px;
	font-family:"Domine";
}
.p-14-style{
	font-size:21px;
	line-height:32px;
}
.top-txt-style{
	border-style:solid;
	border-color:var(--swatch-var-6809)!important;
	border-width:0px 0px 2px 0px;
}
.h1-bloc-8-style{
	font-size:37px;
	line-height:45px;
	font-family:"Domine";
}
.p-bloc-8-style{
	font-size:21px;
	line-height:32px;
}
.dmv-txt-style{
	font-weight:bold;
	text-transform:uppercase;
	color:var(--swatch-var-6142)!important;
}
.dmv-pgr-style{
	color:var(--swatch-var-6809)!important;
}
.blk-style{
	background-size:length;
}
.h2-auto-insurance-style{
	line-height:38px;
}
.h2-bloc-6-style{
	font-size:28px;
	line-height:38px;
}
.h2-life-insurance-style{
	font-size:28px;
	line-height:38px;
}
.h2-4-style{
	font-size:28px;
	line-height:38px;
}
.p-bloc-11-style{
	font-size:14px;
}
.img-bloc-9-style{
	width:336px;
}
.label-style{
	font-size:19px;
	color:var(--swatch-var-7343)!important;
}
.p-bloc-9-style{
	font-size:35px;
	font-weight:bold;
	font-family:"Domine";
}
.lk-style-ft{
	color:var(--swatch-var-2948)!important;
	text-decoration:none;
}
.lk-style-ft:hover{
	color:var(--swatch-var-2948)!important;
	text-decoration:none;
}
.lk-style-ft:active{
	color:var(--swatch-var-2948)!important;
	text-decoration:none;
}
.lk-style-ft:focus{
	color:var(--swatch-var-2948)!important;
	text-decoration:none;
}
.lk-style-ft:visited{
	color:var(--swatch-var-2948)!important;
	text-decoration:none;
}
.bto-yell{
	font-weight:bold;
	font-size:30px;
	text-transform:uppercase;
	color:var(--swatch-var-2948)!important;
}
.bto-yell:hover{
	color:var(--swatch-var-2948)!important;
	background-color:var(--swatch-var-6142);
}
.bto-yell:active{
	color:var(--swatch-var-2948)!important;
	background-color:var(--swatch-var-6142);
}
.bto-yell:focus{
	background-color:var(--swatch-var-6142);
	color:var(--swatch-var-2948)!important;
}
.bto-yell:visited{
	color:var(--swatch-var-2948)!important;
	background-color:var(--swatch-var-6142);
}
.bto-yell-st0{
	font-weight:bold;
	font-size:30px;
	color:var(--swatch-var-2948)!important;
	text-transform:uppercase;
}
.bto-yell-st0:hover{
	color:var(--swatch-var-2948)!important;
	text-transform:uppercase;
}
.bto-yell-st0:active{
	color:var(--swatch-var-2948)!important;
	text-transform:uppercase;
}
.bto-yell-st0:focus{
	color:var(--swatch-var-2948)!important;
	text-transform:uppercase;
}
.bto-yell-st0:visited{
	color:var(--swatch-var-2948)!important;
	text-transform:uppercase;
}
.btu00{
	font-size:30px;
	text-transform:uppercase;
	background-color:var(--swatch-var-6142);
	color:var(--swatch-var-2948)!important;
	font-weight:bold;
	font-family:"Domine";
}
.btu00:hover{
	font-size:30px;
	text-transform:uppercase;
	background-color:var(--swatch-var-6142);
	color:var(--swatch-var-2948)!important;
	font-weight:bold;
}
.btu00:active{
	text-transform:uppercase;
	background-color:var(--swatch-var-6142);
	color:var(--swatch-var-2948)!important;
}
.btu00:focus{
	text-transform:uppercase;
	background-color:var(--swatch-var-6142);
	color:var(--swatch-var-2948)!important;
}
.btu00:visited{
	text-transform:uppercase;
	background-color:var(--swatch-var-6142);
	color:var(--swatch-var-2948)!important;
}
.bg-st00{
	background-color:var(--swatch-var-2);
}
.img-bloc-10-style{
	width:229px;
}
.p-bloc-10-style{
	font-size:19px;
	font-family:"Domine";
}
.p-18-style{
	width:67.31%;
	font-size:16px;
}
.p-19-style{
	font-size:19px;
	font-family:"Domine";
}
.p-20-style{
	font-size:19px;
	font-family:"Domine";
}
.p-20-bloc-10-style{
	font-size:18px;
}
.p-22-style{
	font-size:18px;
}
.ph-lk00{
	text-decoration:none;
	color:var(--swatch-var-2)!important;
}
.loc-st00{
	text-decoration:none;
	color:var(--swatch-var-2)!important;
}
.div-style{
	margin:0px 0px 0px 0px;
	padding:150px 10px 150px 10px;
}
.yutuyt{
	background-image:url("img/divine-insurance-agency-location.png");
	background-size:length;
	background-position:center center;
}
.p-31-style{
	font-size:18px;
	line-height:27px;
}
.label-name-style{
	font-size:19px;
}
.label-last-name-style{
	font-size:19px;
}
.label-cellphone-style{
	font-size:19px;
}
.label-email-style{
	font-size:19px;
}
.label-message-style{
	font-size:19px;
}
.img-17-style{
	width:347px;
}
.bloc-divider-b-fill{
	fill:var(--swatch-var-6142);
}
.bloc-divider-t-0-fill{
	fill:var(--swatch-var-2);
}
.label-17-style{
	font-size:21px;
}
.label-18-style{
	font-size:21px;
}
.label-19-style{
	font-size:21px;
}
.label-20-style{
	font-size:21px;
}
.label-21-style{
	font-size:21px;
}
.img-27-style{
	width:729px;
}
.bloc-divider-t-bloc-21-fill{
	fill:var(--swatch-var-6142);
}
.p-bloc-21-style{
	font-size:21px;
	line-height:30px;
}
.p-30-style{
	font-size:39px;
	font-family:"Domine";
}
.h1-bloc-14-style{
	font-size:37px;
	line-height:45px;
	font-family:"Domine";
}
.h2-bloc-14-style{
	font-size:34px;
	line-height:40px;
	font-family:"Domine";
}
.h2-bloc-15-style{
	font-size:34px;
	line-height:40px;
	font-family:"Domine";
}
.h1-bloc-15-style{
	font-family:"Domine";
}
.h1-8-style{
	font-size:37px;
	line-height:45px;
	font-family:"Domine";
}
.h2-10-style{
	font-size:34px;
	line-height:40px;
	font-family:"Domine";
}
.h1-bloc-13-style{
	font-size:37px;
	line-height:45px;
	font-family:"Domine";
}
.h2-bloc-13-style{
	font-size:34px;
	line-height:40px;
	font-family:"Domine";
}
.h2-bloc-10-style{
	font-size:25px;
}
.p-28-style{
	font-size:19px;
}
.h1--contact-us-style{
	font-size:37px;
	line-height:45px;
	font-family:"Domine";
}
.p-27-style{
	font-size:16px;
}
.img-27-bloc-10-style{
	width:287px;
}
.h1-bloc-11-style{
	font-size:37px;
	line-height:45px;
	font-family:"Domine";
}
.p-bloc-14-style{
	font-size:37px;
	line-height:47px;
	font-family:"Domine";
}
.serv-sty00{
	font-size:32px;
	font-family:"Domine";
	color:var(--swatch-var-2948)!important;
	font-weight:bold;
	line-height:38px;
}
.txtsty-00{
	color:var(--swatch-var-7343)!important;
}
.h1-bloc-10-style{
	font-family:"Domine";
}
.p-20-bloc-11-style{
	font-size:37px;
	line-height:45px;
	font-family:"Domine";
	text-transform:uppercase;
}
.p-21-style{
	font-size:21px;
	line-height:32px;
}
.p-bloc-13-style{
	font-size:21px;
	line-height:32px;
}
.label-12-style{
	font-size:19px;
}
.label-13-style{
	font-size:19px;
}
.label-14-style{
	font-size:19px;
}
.label-15-style{
	font-size:19px;
}
.label-16-style{
	font-size:19px;
}
.p-18582-style{
	font-size:37px;
	font-family:"Domine";
	text-transform:uppercase;
}
.p-26-style{
	font-size:34px;
	font-family:"Domine";
	line-height:40px;
}
.p-21-bloc-11-style{
	font-size:34px;
	line-height:40px;
	font-family:"Domine";
}
.link-company-style{
	line-height:px;
	font-size:19px;
	font-family:"Domine";
	font-weight:500;
	text-transform:none;
}
.navbar-brand img{
	width:140px;
}
.label-home-style{
	font-size:19px;
}
.label-services-style{
	font-size:19px;
}
.label-about-style{
	font-size:19px;
}
.label-contact-us-style{
	font-size:19px;
}
.bt01{
	font-weight:bold;
	color:var(--swatch-var-2948)!important;
	background-color:var(--swatch-var-6142);
}
.bt02{
	font-weight:bold;
	background-color:var(--swatch-var-4884);
	border-style:solid;
	border-color:var(--swatch-var-6142)!important;
	border-width:3px 3px 3px 3px;
}
.btu-nav00{
	text-decoration:none;
	color:var(--swatch-var-2)!important;
}
.btu-nav00:active{
	text-decoration:none;
}
.btu-nav00:focus{
	text-decoration:none;
}
.btu-nav00:hover{
	color:var(--swatch-var-6142)!important;
}
.links-acc{
	color:var(--swatch-var-6142)!important;
	font-weight:bold;
	text-decoration:underline!important;
}
.bt01:hover{
	color:var(--swatch-var-2948)!important;
	background-color:var(--swatch-var-2959);
}
.bt01:active{
	color:var(--swatch-var-2948)!important;
	background-color:var(--swatch-var-6142);
}
.bt01:focus{
	color:var(--swatch-var-2948)!important;
	background-color:var(--swatch-var-6142);
}
.bt01:visited{
	color:var(--swatch-var-2948)!important;
	background-color:var(--swatch-var-6142);
}
.blk-sty00{
	padding-top:3px;
	padding-bottom:3px;
}
.tko-sty00{
	padding-top:45px;
	padding-bottom:45px;
}
.img-bloc-1-style{
	width:103px;
}
.lgdvc00{
	top:-120px;
}
.img-5-style{
	width:345px;
}
.link-bloc-1-style{
	width:16.36%;
}
.h1-bloc-2-style{
	font-family:"Domine";
}

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

/* Swatch Variables */
:root{
	
	--swatch-var-7343:rgba(0,0,0,1.00);
	
	--swatch-var-2:rgba(255,255,255,1.00);
	
	--swatch-var-7150:#D8D5D5;
	
	--swatch-var-6142:rgba(255,201,7,1.00);
	
	--swatch-var-6809:rgba(255,236,187,1.00);
	
	--swatch-var-2959:rgba(255,241,208,1.00);
	
	--swatch-var-6784:rgba(255,246,228,1.00);
	
	--swatch-var-2948:rgba(33,64,154,1.00);
	
	--swatch-var-2332:rgba(175,176,217,1.00);
	
	--swatch-var-6331:rgba(199,200,229,1.00);
	
	--swatch-var-674:rgba(224,224,241,1.00);
	
	--swatch-var-4110:rgba(219,240,251,1.00);
	
	--swatch-var-3134:rgba(183,183,183,1.00);
	
	--swatch-var-819:rgba(76,76,76,1.00);
	
	--swatch-var-4884:rgba(33,64,154,0.00);
	
}


/* Background colour styles */

.bgc-6142{
	background-color:var(--swatch-var-6142);
}
.bgc-2948{
	background-color:var(--swatch-var-2948);
}
.bgc-6809{
	background-color:var(--swatch-var-6809);
}
.bgc-2959{
	background-color:var(--swatch-var-2959);
}
.bgc-4110{
	background-color:var(--swatch-var-4110);
}
.bgc-6784{
	background-color:var(--swatch-var-6784);
}

/* Text colour styles */

.tc-6142{
	color:var(--swatch-var-6142)!important;
}
.tc-2948{
	color:var(--swatch-var-2948)!important;
}
.tc-7343{
	color:var(--swatch-var-7343)!important;
}
.tc-2{
	color:var(--swatch-var-2)!important;
}

/* Button colour styles */

.btn-c-2948{
	background:var(--swatch-var-2948);
	color:#FFFFFF!important;
}
.btn-c-2948:hover{
	background:#000D67!important;
	color:#FFFFFF!important;
}

/* Link colour styles */

.ltc-2948{
	color:var(--swatch-var-2948)!important;
}
.ltc-2948:hover{
	color:#000D67!important;
}

/* Icon colour styles */

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

/* Bloc image backgrounds */




/* = 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){
	.blocs-card-width{
		width:50%;
	}
	.p-style{
		font-size:19px;
	}
	.p-3-style{
		font-size:19px;
	}
	.p-bloc-0-style{
		font-size:19px;
	}
	.bto-style{
		font-size:18px;
	}
	.btu00:hover{
	}
	.p-bloc-14-style{
		line-height:45px;
	}
	.continer-style00{
	}
	.p-18-style{
		width:100%;
	}
	.h1-bloc-15-style{
		font-size:43px;
	}
	
}

@media (max-width: 767px){
	.blocs-card-width{
		width:50%;
	}
	.link-bloc-1-style{
		width:29.03%;
	}
	.menu-icon-stroke{
		stroke:var(--swatch-var-6142)!important;
		fill:var(--swatch-var-6142)!important;
	}
	.lghdgdgs{
	}
	.p-3-style{
		width:100%;
		font-size:19px;
	}
	.p-style{
		font-size:19px;
	}
	.p-bloc-0-style{
		font-size:19px;
	}
	.botton-frm-style{
		font-size:22px;
	}
	.btu00{
		font-size:20px;
	}
	.btu00:hover{
		font-size:20px;
	}
	.btu00:active{
	}
	.p-bloc-14-style{
		font-size:30px;
		text-align:center;
	}
	.p-18-style{
		width:100%;
	}
	.p-bloc-10-style{
		line-height:25px;
	}
	.h1-bloc-15-style{
		font-size:37px;
	}
	.bto-style{
		font-size:27px;
	}
	.botton-frm-style:hover{
		font-size:22px;
	}
	.botton-frm-style:active{
		font-size:22px;
	}
	.botton-frm-style:focus{
		font-size:22px;
	}
	.botton-frm-style:visited{
		font-size:22px;
	}
	
}

@media (max-width: 575px){
	.blocs-card-width{
		width:100%;
	}
	.navbar-logo{
		font-size:18px;
	}
	.footer-link{
		text-align:center;
	}
	.link-bloc-1-style{
		width:90.7%;
	}
	.menu-icon-stroke{
		stroke:var(--swatch-var-6142)!important;
		fill:var(--swatch-var-6142)!important;
	}
	.tgsty00{
	}
	.botton-frm-style{
		font-size:20px;
	}
	.bto-style{
		font-size:17px;
	}
	.botton-frm-style:hover{
		font-size:20px;
	}
	.botton-frm-style:active{
		font-size:20px;
	}
	.botton-frm-style:focus{
		font-size:20px;
	}
	.botton-frm-style:visited{
		font-size:20px;
	}
	.bto-style:hover{
	}
	.bto-style:active{
	}
	.bto-style:focus{
	}
	.bto-style:visited{
	}
	.btu00{
	}
	.p-bloc-9-style{
		line-height:45px;
	}
	.p-30-style{
		font-size:22px;
		text-align:center;
	}
	.p-bloc-21-style{
		font-size:17px;
		line-height:25px;
		text-align:center;
	}
	.btu00:hover{
		font-size:20px;
	}
	.btu00:active{
	}
	.btu00:focus{
	}
	.btu00:visited{
	}
	.h1--contact-us-style{
		font-size:30px;
	}
	.h1-8-style{
		font-size:29px;
		line-height:35px;
	}
	.p-18-style{
		width:100%;
	}
	.h1-bloc-15-style{
		font-size:39px;
	}
	.h1-bloc-10-style{
		font-size:26px;
	}
	.p-18582-style{
		font-size:30px;
		text-align:center;
	}
	.navbar-brand img{
		width:120px;
	}
	.style-tg{
	}
	.navtog-style{
		width:300px;
		height:300px;
		background-size:length;
	}
	
}

