/*-----------------------------------------------------------------------------------
	    ROBERT
        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 ugly blue glow on chrome and safari */
a:hover{text-decoration: none; cursor:pointer;}


/* 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;}
@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 50px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position:relative;
	display:flex;
}
.bloc .container{
	padding-left:0;
	padding-right:0;
}


/* Sizes */

.bloc-xl{
	padding:150px 50px;
}
.bloc-lg{
	padding:100px 50px;
}
.bloc-md{
	padding:50px;
}
.bloc-sm{
	padding:20px 50px;
}

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


/* Group Styles */

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


/* Background 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-center{
	-webkit-background-size: auto;
}
.bg-repeat{
	background:repeat;
}
.bg-r-edge{
	background: right no-repeat;
}


/* Background Textures */

.bloc-bg-texture::before{
	content:"";
	background-size: 2px 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	left:0;
	right:0;
}
.texture-dots::before{
	background: url("img/texture-dots.gif");
	background-size: 8px 8px;
	opacity: 0.2;
}
.texture-darken::before{
	background: rgba(0,0,0,0.5);
}


/* Background Effects */

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

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

/* Dark theme */

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


/* Light theme */

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


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

.hero .hero-nav{
	padding-left:inherit;
	padding-right:inherit;
}
/* Thick Bars Menu Icon */
.navbar-light .menu-icon-thick-bars .navbar-toggler-icon{
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='5' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-dark .menu-icon-thick-bars .navbar-toggler-icon{
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='5' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* 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 .show .dropdown-menu{
	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: fixed;
	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;
}

/* Full Screen Navigation */
.nav-special.fullscreen-nav{
	width: 100%;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0;
	z-index: 1000;
	position: fixed;
	transition: all .2s linear;
}
 .nav-special.fullscreen-nav.open-up{
	transform: translateY(1000px);
}
 .nav-special.fullscreen-nav.open-down{
	transform: translateY(-1000px);
}
 .nav-special.fullscreen-nav.open-left{
	transform: translateX(-1000px);
}
 .nav-special.fullscreen-nav.open-right{
	transform: translateX(1000px);
}
 .nav-special.fullscreen-nav .nav > li a,.nav-special.fullscreen-nav .nav .dropdown-menu > li > a{
	color:rgba(255,255,255,.8);
	text-align: center;
	font-size: 28px;
}
 .nav-special.fullscreen-nav .nav > li a:hover{
	color:#FFF;
}
 .open.nav-special.fullscreen-nav{
	opacity: 1;
	transition: all .2s linear;
}
.nav-special.fullscreen-nav .site-navigation{
	text-align:center;
	margin-top:10%!important;
}
.nav-special.fullscreen-nav .close-special-menu{
	right:20px;
}
 .open.nav-special.fullscreen-nav.open-left,  .open.nav-special.fullscreen-nav.open-right,  .open.nav-special.fullscreen-nav.open-down, .open.nav-special.fullscreen-nav.open-up{
	transform: translateY(0);
}
.navbar-toggle.menu-icon-thick-bars{
	margin-top:4px!important;
}
/* Handle Multi Level Navigation */.navbar-light .navbar-nav .nav-link {
	color: rgb(64, 64, 64);
}
.btco-menu li > a {
	padding: 10px 15px;
	color: #000;
}
.btco-menu .active a:focus,.btco-menu li a:focus ,.navbar > .show > a:focus{
	background: transparent;
	outline: 0;
}
.dropdown-menu .show > .dropdown-toggle::after{
	transform: rotate(-90deg);
}

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

.mg-clear{
	margin:0;
}
.mg-sm{
	margin-top:10px;
	margin-bottom:5px;
}
.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;
	background:rgba(0,0,0,.3);
}

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

.a-block{
	width:100%;
	text-align:left;
	display: inline-block;
}
.text-center .a-block{
	text-align:center;
}
.icon-spacer{
	margin-right:5px;
}

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

/*  Rounded Image */
.img-rd-md{
	border-radius:20px;
}
.img-rd-lg{
	border-radius:34px;
}

/* = Text Widths
-------------------------------------------------------------- */
.text-w-lg{
	max-width:400px;
}
.text-center.text-w-sm, .text-center.text-w-md, .text-center.text-w-lg, .text-center.text-w-90, .text-center.text-w-80, .text-center.text-w-70, .text-center.text-w-60, .text-center.text-w-50{
	margin-left: auto;
	margin-right: auto;
}


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


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

.form-control{
	border-color:rgba(0,0,0,.1);
	box-shadow:none;
}



/* ScrollToTop button */

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

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

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Oswald";
}
.container{
	margin:4px 4px 4px 4px;
}
.navbar-brand img{
	height:140px;
	width:158px;
}
.h2-color{
	color:#ffffff;
	font-size:16px;
	line-height:16px;
	font-family:"PT Sans Narrow";
	font-weight:400;
	text-transform:uppercase;
}
.button{
	font-family:"PT Sans Narrow";
	font-weight:bold;
	font-size:18px;
	color:#14314A!important;
	background-color:#FFA265;
}
.navbar-nav li a{
	font-family:"PT Sans Narrow";
	font-weight:700;
	font-size:17px;
}
.nav-link{
	border-style:none;
	border-width:0px 0px 0px 0px;
}
.nav-link:hover{
	text-decoration:none;
	border-style:none;
	border-color:#FEFFFE!important;
	border-right-width:0px;
	border-left-width:0px;
}
.menu-link-divider:hover{
	border-style:dotted;
	border-top-width:1px;
}
.menu-divider{
	border-style:dotted;
	border-right-width:1px;
	border-color:#FFFFFF!important;
	padding:22px 22px 22px 22px;
}
.social-icons-nav{
	height:80px;
	color:#FEA164!important;
	margin:2px 2px 2px 2px;
}
.sticky-navstick{
	;
}
.button-color-hover{
	color:#FFFFFF!important;
}
.button-color-hover:hover{
	color:#F0A163!important;
}
.color-hover{
	color:#FFFFFF!important;
	height:64px;
	max-width:220px;
}
.color-hover:hover{
	color:#F0A163!important;
	border-style:solid;
	border-color:#F0A163!important;
	border-top-width:0px;
	border-bottom-width:1px;
}
.link-divider{
	border-style:dotted;
	border-right-width:2px;
	border-color:#FEFFFE!important;
	height:78px;
}
.divider-link{
	border-style:dotted;
	border-color:#FEFFFF!important;
	border-width:0px 2px 0px 0px;
}
.text-span-color{
	color:#ffffff;
}
.sticky-nav.sticky{
	background-color:rgba(67,76,94,0.85);
}
.h1-style{
	font-size:26px;
	margin:12px 12px 12px 12px;
}
.p-color{
	color:#183957!important;
	width:100%;
	line-height:18px;
	font-size:18px;
}
.paragraph{
	color:#FFFFFF!important;
	width:422px;
}
.text{
	padding:6% 6% 6% 6%;
}
.text-span-bloc-2-color{
	color:#ffffff;
}
.h4-color{
	color:#FFFFFF!important;
	line-height:24px;
	width:8.19%;
}
.icon{
	margin:32px 32px 32px 32px;
}
.social-icons-nav:hover{
	color:#FEFFFF!important;
}
.color-link{
	color:#FEA164!important;
}
.color-link:hover{
	;
}
.sticky-navstick:hover{
}
.buttonpadding{
	padding:12% 12% 12% 12%;
}
.team-card{
	min-height:350px;
}
.btn-wire{
	color:#FFFFFF!important;
	font-weight:600;
}
.image{
	;
}
.button:hover{
	color:#FEFFFE!important;
}
.iconhover{
	color:#143049!important;
}
.iconhover:hover{
	color:#FFFFFF!important;
}
.column{
	float:right;
}
.headings{
	float:right;
}
.h3-style{
	line-height:24px;
	text-transform:none;
	font-size:24px;
	letter-spacing:px;
	color:#ffffff;
}
.h3-bloc-2-style{
	font-size:24px;
	line-height:24px;
}
.h3-finances-style{
	font-size:18px;
	line-height:18px;
}
.h3-annuity’s -style{
	font-size:18px;
	line-height:18px;
}
.spanhover{
	color:#FFFFFF!important;
	text-transform:uppercase;
	font-weight:bold;
	font-size:24px;
	margin:8px 8px 8px 8px;
}
.spanhover:hover{
	color:#EA9D60!important;
}
.iconpadding{
	margin:4px 4px 4px 4px;
}
.btn-wire:hover{
	color:#FFFFFF!important;
}
.img-style{
	width:146px;
	height:146px;
}
.h5-style{
	line-height:20px;
}
.h3-robert-pogue -style{
	font-size:33px;
}
.p-style{
	font-size:22px;
	line-height:22px;
}
.socialpadding{
	;
}
.p-bloc-3-style{
	font-size:20px;
	line-height:20px;
	font-weight:100;
}
.list{
	margin:12% 12% 12% 12%;
	padding:22px 22px 22px 22px;
}
.list-style{
	border-style:solid;
	border-color:#FFFFFF!important;
	width:85%;
	border-width:0px 2px 0px 0px;
}
.h3-color{
	color:#ffffff;
	font-size:24px;
	line-height:24px;
}
.h3- finances-style{
	font-size:24px;
	line-height:24px;
}
.colorhovermenu{
	color:#F0A163!important;
	border-style:solid;
	border-color:#F0A163!important;
	border-bottom-width:0px;
}
.colorhovermenu:hover{
	color:rgba(241,161,99,0.76)!important;
}
.menuverticaldevider{
	border-style:solid;
	border-bottom-width:1px;
	border-color:#F0A163!important;
}
.h3-about-us-style{
	line-height:28px;
}
.h2-our-mission-style{
	font-size:28px;
	line-height:28px;
}
.h3-7-style{
	line-height:24px;
	font-size:24px;
	height:104px;
}
.h3- contact-us-style{
	line-height:28px;
}
.h3-bloc-5-style{
	font-size:20px;
	line-height:20px;
	color:#ffffff;
}
.p-bloc-5-style{
	font-size:19px;
	line-height:19px;
}
.textpadding{
	;
}
.form{
	padding:8% 8% 8% 8%;
}
.label-style{
	font-size:16px;
	line-height:16px;
}
.row-style{
	width:100%;
}
.select{
	color:#102141!important;
	height:32px;
}
.check{
	text-decoration:none;
}
.optin{
	text-decoration:underline!important;
}
.label-color{
	color:#ffffff;
}
label{
	text-decoration:none;
	color:#102141!important;
	text-transform:uppercase;
}
.select:active{
	;
}
.select:hover{
}
.blocdivider{
	border-style:dotted;
	border-color:#0B172D!important;
	background-size:auto auto;
	margin:12px 12px 12px 12px;
	border-width:0px 2px 0px 0px;
}
.columndivider{
	border-style:dotted;
	border-color:#0E1F3D!important;
	border-width:0px 2px 0px 0px;
}
.blocpadding{
	;
}
.h3-bloc-5-color{
	font-size:20px;
	line-height:20px;
}
.textcapital{
	text-transform:uppercase;
}
.h2-6-style{
	font-size:28px;
	line-height:28px;
}
.columnpad{
	margin:44px 44px 44px 44px;
}
.iconmargin{
	margin:0px 0px 0px 0px;
}
.img-5-style{
	opacity:22;
	width:249px;
	margin:88px 88px 88px 88px;
}
.h2-34216-style{
	font-size:28px;
	line-height:28px;
	color:#132343;
}
.h3-8-style{
	font-size:22px;
	line-height:22px;
}
.img-5f7ec6cfce1-style{
	width:509px;
}
.h3- finances-style:hover{
}
.link-hover{
	color:#FEFFFE!important;
	font-size:23px;
	margin:5px 5px 5px 5px;
}
.link-hover:hover{
	color:#F79852!important;
}
.iconmargin:hover{
}
.h3- finances-style:active{
}
.image-padding{
	float:none;
	padding:8px 8px 8px 8px;
}
.img-bloc-2-style{
	width:163px;
	padding:2px 2px 2px 2px;
}
.text-padding{
	font-size:24px;
	padding:36px 36px 36px 36px;
}
.font-size{
	text-transform:lowercase;
}
.h2-services-style{
	font-size:27px;
	line-height:28px;
}
.h1-bloc-5-style{
	font-size:20px;
	line-height:20px;
}
.h1-7-style{
	font-size:20px;
	line-height:20px;
}
.h1-3-style{
	font-size:10px;
	line-height:10px;
	border-style:dotted;
	border-color:#132243!important;
	border-width:0px 0px 2px 0px;
}
.h1---bonds-style{
	font-size:20px;
	line-height:20px;
}
.h1---bops-style{
	font-size:20px;
	line-height:20px;
}
.h1-9-style{
	font-size:20px;
	line-height:20px;
}
.h1-5-style{
	font-size:20px;
	line-height:20px;
}
.h1-10-style{
	font-size:20px;
	line-height:20px;
}
.h1-legal-coverage-style{
	font-size:20px;
	line-height:20px;
}
.img-bloc-5-style{
	width:509px;
	height:408px;
}
.column-padding{
	padding:84px 84px 84px 84px;
}
.h2-bloc-6-style{
	font-size:18px;
	line-height:18px;
}
.h2-bloc-11-style{
	font-size:20px;
	line-height:20px;
}
.h2-bloc-15-style{
	font-size:20px;
	line-height:20px;
}
.h2-bloc-19-style{
	font-size:20px;
	line-height:20px;
}
.h2-16-style{
	font-size:20px;
	line-height:20px;
}
.h2-bloc-27-style{
	font-size:20px;
	line-height:20px;
}
.h2-7-style{
	font-size:20px;
	line-height:20px;
}
.img-37146-style{
	width:509px;
}
.img-12843-style{
	width:509px;
}
.h5-bloc-5-style{
	line-height:20px;
}
.h5-bops-style{
	line-height:20px;
}
.h5-4-style{
	line-height:20px;
}
.h5-legal-coverage-style{
	line-height:20px;
}
.h5-6-style{
	line-height:20px;
}
.h5-7-style{
	line-height:20px;
}
.h5-bonds-style{
	line-height:20px;
}
.h5-9-style{
	line-height:20px;
}
.p-bloc-10-style{
	font-size:20px;
	line-height:20px;
}
.colunm-divider{
	border-style:dotted;
	border-color:#FEFFFE!important;
	border-width:0px 3px 0px 0px;
}
.link-color{
	color:#ffffff;
}
.h4-about-us-style{
	font-size:22px;
	line-height:22px;
}
.h4-la-mia-style{
	font-size:22px;
	line-height:22px;
}
.h4-connect-style{
	font-size:22px;
	line-height:22px;
}
.h4-bloc-11-style{
	font-size:22px;
	line-height:22px;
}
.bloc-background{
	background-color:#434C5E;
}
.sticky-navsticky{
	background-color:#434C5E;
}
.button-margin{
	padding:14px 14px 14px 14px;
}
.column-footer-divider{
	border-style:dotted;
	border-width:0px 0px 0px 2px;
}
.h3-bloc-11-style{
	font-size:12px;
	line-height:12px;
	width:100%;
}
.h2-padding{
	padding:22px 22px 22px 22px;
}
.h3- click-aqui -style{
	font-size:22px;
	line-height:22px;
}
.h3- click-aqui -style:hover{
	;
}
.h4-style{
	font-size:20px;
	line-height:20px;
}
.h4-28-style{
	font-size:22px;
	line-height:22px;
}
.p-14-style{
	line-height:16px;
}
.h4-29-style{
	font-size:22px;
	line-height:22px;
}
.p-15-style{
	line-height:16px;
}
.h4-seguro-de-auto-style{
	font-size:22px;
	line-height:22px;
}
.p-12-style{
	line-height:16px;
}
.h4-seguro-de-vida-style{
	font-size:22px;
	line-height:22px;
}
.p-13-style{
	line-height:16px;
}
.h3-23-style{
	font-size:20px;
	line-height:20px;
}
.h3-24-style{
	font-size:20px;
	line-height:20px;
}
.h3-25-style{
	font-size:20px;
	line-height:20px;
}
.h3-seguro-de-auto-style{
	font-size:20px;
	line-height:20px;
}
.h3-seguro-de-vida-style{
	font-size:20px;
	line-height:20px;
}
.p-16-style{
	line-height:16px;
}
.p-17-style{
	line-height:16px;
}
.p-18-style{
	line-height:16px;
}
.p-20-style{
	line-height:16px;
}
.icon-padding{
	padding:44px 44px 44px 44px;
}
.column-divider{
	border-style:solid;
	border-color:#FEFFFE!important;
	border-width:0px 2px 0px 0px;
}
.h3-18511-style{
	font-size:22px;
	line-height:22px;
}
.h3-3210-style{
	font-size:22px;
	line-height:22px;
}
.p-bloc-36-style{
	line-height:16px;
}
.title-margin{
	;
}
.bloc-divider{
	border-style:dotted;
	border-color:#102042!important;
	border-width:0px 2px 0px 0px;
}
.column-divider-icon{
	border-style:dotted;
	border-color:#102042!important;
	border-width:0px 0px 2px 0px;
}
.h3-our-mission-style{
	font-size:28px;
	line-height:28px;
}
.p-bloc-4-style{
	font-size:22px;
	line-height:22px;
}
.h3-our-services-style{
	line-height:28px;
}
.h4-bloc-5-style{
	font-size:20px;
	line-height:20px;
}
.h4-2-style{
	font-size:22px;
	line-height:22px;
}
.h4-legal-coverage-style{
	font-size:20px;
	line-height:20px;
}
.h4-5-style{
	font-size:20px;
	line-height:20px;
}
.h4-3-style{
	font-size:20px;
	line-height:20px;
}
.h4-6-style{
	font-size:20px;
	line-height:20px;
}
.h4-bonds-style{
	font-size:20px;
	line-height:20px;
}
.h4-8-style{
	font-size:20px;
	line-height:20px;
}
.img-bloc-9-style{
	width:156px;
	height:134px;
}
.img-bloc-13-style{
	width:156px;
	height:134px;
}
.img-14-style{
	width:156px;
	height:134px;
}
.img-16-style{
	width:156px;
	height:134px;
}
.img-bloc-8-style{
	width:156px;
	height:134px;
}
.img-bloc-25-style{
	width:186px;
	height:164px;
}
.img-bloc-1-style{
	width:156px;
	height:134px;
}
.img-bloc-6-style{
	width:186px;
	height:164px;
}
.column-horizontal-divider{
	border-style:dotted;
	border-width:0px 0px 4px 0px;
}
.h1-our-staff-style{
	font-size:28px;
	line-height:28px;
}
.bloc-divider-area{
	border-style:dotted;
	border-color:#132243!important;
	background-size:auto auto;
	height:350px;
	border-width:0px 2px 0px 0px;
}
.h3-robert-pogue-style{
	line-height:28px;
}
.h3-42-style{
	line-height:28px;
}
.p-22-style{
	font-size:18px;
	line-height:18px;
}
.p-23-style{
	font-size:18px;
	line-height:18px;
}
.img-circle-cropp-style{
	height:174px;
	width:182px;
}
.img-robert-final-style{
	width:186px;
}
.bloc-dividerstaff{
	border-style:dotted;
	border-color:#132243!important;
	border-width:0px 2px 0px 0px;
}
.footer-link{
	color:#FEFFFF!important;
}
.footer-link:hover{
	color:#FEA165!important;
}

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

/* Background colour styles */

.bgc-aurometalsaurus{
	background-color:#75777A;
}
.bgc-oxford-blue{
	background-color:#102142;
}
.bgc-light-slate-gray{
	background-color:rgba(131,134,157,0.45);
}
.bgc-beau-blue{
	background-color:rgba(200,229,241,0.60);
}
.bgc-white{
	background-color:#FFFFFF;
}
.bgc-platinum{
	background-color:#E2E3E2;
}
.bgc-oxford-blue-2{
	background-color:#132343;
}

/* Text colour styles */

.tc-splashed-white{
	color:#FBFFFF!important;
}
.tc-medium-jungle-green{
	color:#1A293A!important;
}
.tc-oxford-blue{
	color:#132343!important;
}
.tc-oxford-blue-2{
	color:#102142!important;
}
.tc-white{
	color:#FFFFFF!important;
}

/* Button colour styles */

.btn-oxford-blue{
	background:#102142;
	color:#FFFFFF!important;
}
.btn-oxford-blue:hover{
	background:#0d1a35!important;
	color:#FFFFFF!important;
}

/* Link colour styles */

.ltc-sandy-brown{
	color:#F0A163!important;
}
.ltc-sandy-brown:hover{
	color:#c0814f!important;
}
.ltc-sandy-brown-2{
	color:#F0A163!important;
}
.ltc-sandy-brown-2:hover{
	color:#c0814f!important;
}
.ltc-atomic-tangerine{
	color:#FEA164!important;
}
.ltc-atomic-tangerine:hover{
	color:#cb8150!important;
}

/* Icon colour styles */

.icon-splashed-white{
	color:#FBFFFF!important;
	border-color:#FBFFFF!important;
}
.icon-screamin-green{
	color:#56FF64!important;
	border-color:#56FF64!important;
}
.icon-sandy-brown{
	color:#F0A163!important;
	border-color:#F0A163!important;
}
.icon-oxford-blue{
	color:#132343!important;
	border-color:#132343!important;
}

/* Bloc image backgrounds */

.bg-insurance-3113180{
	background-image:url("img/insurance-3113180.jpg");
}
.bg-pexels-adrianna-calvo-17679{
	background-image:url("img/pexels-adrianna-calvo-17679.jpg");
}
.bg-22BLOGO{
	background-image:url("img/22BLOGO.png");
}
.bg-606c8ab7623d5{
	background-image:url("img/606c8ab7623d5.jpg");
}
.bg-606c941acbd74{
	background-image:url("img/606c941acbd74.jpg");
}
.bg-606c969237c39{
	background-image:url("img/606c969237c39.jpg");
}
.bg-Car-Insurance-Wallpaper{
	background-image:url("img/Car-Insurance-Wallpaper.jpg");
}
.bg-pexels-kindel-media-7579354{
	background-image:url("img/pexels-kindel-media-7579354.jpg");
}
.bg-pexels-pixabay-461049{
	background-image:url("img/pexels-pixabay-461049.jpg");
}



/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px)
{
    .bloc{
        padding-left: 20px; 
        padding-right: 20px;  
    }
    .bloc.full-width-bloc, .bloc-tile-2.full-width-bloc .container, .bloc-tile-3.full-width-bloc .container, .bloc-tile-4.full-width-bloc .container{
        padding-left: 0; 
        padding-right: 0;  
    }
}
@media (max-width: 991px)
{
    .container{width:100%;}
    .page-container{overflow: hidden;position: relative;} /* Prevent unwanted side scroll on mobile */
    .bloc{padding-left: constant(safe-area-inset-left);padding-right: constant(safe-area-inset-right);} /* iPhone X Notch Support*/
    .bloc-group, .bloc-group .bloc{display:block;width:100%;}
}
@media (max-width: 767px)
{
    .page-container{
        overflow: hidden;
        position:relative;
    }
    .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
        padding-left:0;padding-right:0;
    }
    .a-block{
        padding:0 10px;
    }
    .btn-dwn{
       display:none; 
    }
    .voffset{
        margin-top:5px;
    }
    .voffset-md{
        margin-top:20px;
    }
    .voffset-lg{
        margin-top:30px;
    }
    form{
        padding:5px;
    }
    .close-lightbox{
        display:inline-block;
    }
    .blocsapp-device-iphone5{
	   background-size: 216px 425px;
	   padding-top:60px;
	   width:216px;
	   height:425px;
    }
    .blocsapp-device-iphone5 img{
	   width: 180px;
	   height: 320px;
    }
}

@media (max-width: 991px){
	.link-style{
		width:100%;
		padding-top:8px;
		padding-bottom:8px;
	}
	.navbar-brand img{
		width:158px;
		height:140px;
	}
	.navbar-nav li a{
		font-size:12px;
	}
	.img-bloc-9-style{
		width:156px;
		height:134px;
	}
	.img-bloc-8-style{
		width:156px;
		height:134px;
	}
	.img-bloc-1-style{
		width:156px;
		height:134px;
	}
	.img-bloc-6-style{
		width:156px;
		height:134px;
	}
	.iconmargin{
		margin:1px 1px 1px 1px;
	}
	.h3- finances-style{
		font-size:24px;
		line-height:24px;
	}
	.img-bloc-25-style{
		width:156px;
		height:134px;
	}
	.img-16-style{
		width:156px;
		height:134px;
	}
	.img-bloc-13-style{
		width:156px;
		height:134px;
	}
	.suscribe-button{
		color:#102042!important;
	}
	.h3-robert-pogue-style{
		font-size:20px;
		line-height:20px;
	}
	.h3-42-style{
		font-size:20px;
		line-height:20px;
	}
	.color-hover{
		float:none;
		overflow:visible;
	}
	
}

@media (max-width: 767px){
	.text-right{
	}
	.text-left{
	}
	.text-center{
	}
	.img-bloc-1-style{
		width:186px;
		height:164px;
	}
	.blocsapp-special-menu blocsnav{
		background-color:#424B5D;
	}
	.img-bloc-8-style{
		width:186px;
		height:164px;
	}
	.img-bloc-9-style{
		width:186px;
		height:164px;
	}
	.img-bloc-13-style{
		width:186px;
		height:164px;
	}
	.toggle-padding{
		float:none;
		overflow:visible;
		margin:14px 14px 14px 14px;
	}
	.img-14-style{
		width:186px;
		height:164px;
	}
	.img-16-style{
		width:186px;
		height:164px;
	}
	.img-bloc-25-style{
		width:186px;
		height:164px;
	}
	.img-bloc-6-style{
		width:186px;
		height:164px;
	}
	.form{
		margin:8px 8px 8px 8px;
		padding:0% 0% 0% 0%;
	}
	.mobile-icon-padding{
		margin:22px 22px 22px 22px;
	}
	.column-pad{
		height:44px;
	}
	.navtoggle-padding{
		width:222%;
	}
	.column-padding{
	}
	.column-padding-menu{
		height:38px;
		margin:94px 94px 94px 94px;
	}
	.icon-padding-main{
		margin:36% 36% 36% 36%;
	}
	.icon-margin{
		padding:22px 22px 22px 22px;
	}
	.h3-bloc-11-style{
		color:#132243;
	}
	.list-style{
		margin:32px 32px 32px 32px;
	}
	.navbar-nav li a{
		font-family:"Oswald";
		font-size:6px;
	}
	.text-span-bloc-23-color{
		color:#132243;
	}
	.text-span-bloc-19-color{
		color:#132243;
	}
	.text-span-bloc-11-color{
		color:#132243;
	}
	
	/* Small Text Margin Offsets */
	.mg-lg-sm{
		margin-top: 10px;
		margin-bottom:40px;
	}
		.mg-clear-sm{
		margin:0;
	}
	
}

@media (max-width: 575px){
	.footer-link{
		text-align:center;
	}
	.blocsapp-special-menu blocsnav{
		background-color:#767879;
		font-weight:normal;
		font-size:8px;
		background-position:right bottom;
		background-repeat:no-repeat;
		background-size:90px 80px;
		background-image:url("img/replogo_finalwhite-01.png");
	}
	.toggle-padding{
		width:208px;
		margin:68px 68px 68px 68px;
	}
	.img-bloc-1-style{
		width:156px;
		height:134px;
	}
	.img-bloc-8-style{
		width:156px;
		height:134px;
	}
	.img-bloc-9-style{
		width:156px;
		height:134px;
	}
	.img-16-style{
		width:156px;
		height:134px;
	}
	.img-bloc-13-style{
		width:156px;
		height:134px;
	}
	.img-14-style{
		width:156px;
		height:134px;
	}
	.img-bloc-25-style{
		width:156px;
		height:134px;
	}
	.img-bloc-6-style{
		width:156px;
		height:134px;
	}
	.form{
		;
	}
	.html-widget-style{
		width:100%;
	}
	.column-padding-menu{
		margin:60px 60px 60px 60px;
	}
	.icon-padding-main{
		margin:28% 28% 28% 28%;
	}
	.navbar-nav li a{
		font-size:10px;
	}
	.h2-color{
		font-size:12px;
		line-height:12px;
	}
	.p-22-style{
		color:#132243!important;
	}
	.h2-style{
		line-height:12px;
		font-size:12px;
	}
	.list-hide-fx{
		border-style:solid;
		border-right-width:0px;
	}
	.icon-padding-menu{
		float:none;
		display:none;
	}
	.icon-margin-menu{
		margin:28px 28px 28px 28px;
	}
	.h3- finances-style{
	}
	.buttonpadding{
		padding:12% 12% 12% 12%;
	}
	.blocsapp-special-menu blocsnav li a{
		font-family:"PT Sans Narrow";
		font-size:10px;
		font-weight:700;
		text-align:left;
	}
	.navtoggle-padding{
		;
	}
	.nav-special.fullscreen-nav .nav > li a{
		font-size:18px;
		font-weight:bold;
		text-align:right;
	}
	.navtoggle-padding:hover{
	}
	.color-hover{
		max-width:120px;
		text-align:left;
	}
	.nav-special.fullscreen-nav .nav > li a:hover{
		border-style:solid;
		border-bottom-width:1px;
		border-color:#FEA165!important;
	}
	.background-mobile{
		background-position:left center;
		background-repeat:no-repeat;
		background-size:800px 400px;
	}
	
	/* Mobile Text Margin Offsets */
	.mg-lg-xs{
		margin-top: 10px;
		margin-bottom:40px;
	}
	
}

