/*
	Author: http://zilliondesigns.com/
	Version: 1.0
*/
@font-face {
    font-family: 'proxima_nova_rgregular';
    src: url('fonts/proximanova-regular-webfont.woff2') format('woff2'),
         url('fonts/proximanova-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
	font-family: 'Conv_proximanova-semibold-webfont';
	src: url('fonts/proximanova-semibold-webfont.woff') format('woff'), 
		 url('fonts/proximanova-semibold-webfont.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
    font-family: 'xirodregular';
    src: url('fonts/xirod-webfont.woff2') format('woff2'),
         url('fonts/xirod-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
	font-family: 'Eurostile LT Std';
	src: url('fonts/EurostileLTStd-Demi.woff2') format('woff2'),
		url('fonts/EurostileLTStd-Demi.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
@font-face {
    font-family: 'bankgothicbold';
    src: url('fonts/bankgothic_bold-webfont.woff2') format('woff2'),
         url('fonts/bankgothic_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
* {
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-webkit-text-size-adjust : none;
}
*::before,*::after {
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #555;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #555;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #555;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #555;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
body {
	background-color:#fff !important;
	font-family: 'proxima_nova_rgregular';
	font-size: 18px;
	color: #333333;
	line-height: 1.5;
}
.rotate{
    transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
    overflow:hidden;
}  
.rotate:hover{
    -webkit-transform:rotate(360deg);
    -moz-transform:rotate(360deg);
    -o-transform:rotate(360deg);
}
.zoom, .transition{
	transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
}
.zoom:hover{
    transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
}
/* ------------------ RESPONSIVE VIDEO ------------------- */
.video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 0 10px #888;
}
.video iframe, .video object, .video embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
input[type="text"], textarea, input[type="email"], input[type="tel"], select {
    border: 1px solid #CCCCCC;
    resize: none;
    transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	padding: 4px 10px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
input[type="text"]:focus, textarea:focus, input[type="email"]:focus, input[type="tel"]:focus, select:focus {
    border: 1px solid #51CBEE;
    box-shadow: 0 0 5px #51CBEE;
	-moz-box-shadow: 0 0 5px #51CBEE;
	-webkit-box-shadow: 0 0 5px #51CBEE;
}
h1, h2, h3, h4, h5, h6{
	font-family: 'xirodregular';
}
h1 {
    color: #fff;
    font-size: 36px;
    margin: 0 0 10px 0;
	line-height: 1.4;
    width: 100%;
	float:left;
}
h2 {
    float: left;
    font-size: 22px;
    line-height: 1.4;
    margin: 0 0 10px 0;
    width: 100%;
}
h3 {
    float: left;
    font-size: 18px;
    line-height: 1.3;
    margin: 0 0 10px 0;
    width: 100%;
}
b, strong {
	font-family: 'Conv_proximanova-semibold-webfont';
}
ul, ol {
	list-style: none;
}
em, i{
	font-style: italic;
}
a {
    text-decoration: none;
	transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
}
.no-transition {
	transition: all 0s ease-in-out 0s;
	-webkit-transition: all 0s ease-in-out 0s;
	-moz-transition: all 0s ease-in-out 0s;
	-o-transition: all 0s ease-in-out 0s;
}
.clear{
	clear:both;
}
img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	vertical-align: middle;
	border-image:none;
}
.content{
	float:left;
	width:100%;
}
.container{
	max-width: 1170px;
	width: 100%;
	position:relative;
	margin:0 auto;
	clear:both;
}
.container:before, .container:after {
    content: "";
    display: table;
}
.container:after {
    clear: both;
}
.content p {
    float: left;
    margin-bottom: 15px;
    width: 100%;
}
.content ul li {
    float: left;
    width: 100%;
    padding: 0 0 0 20px;
    position: relative;
    margin: 0 0 10px;
    background-image: url(images/list-bg.png);
    background-repeat: no-repeat;
    background-position: 0 8px;
}
.edit {
    float: right;
	display:none;
}
.edit a {
    background-color: #ffffff;
    border: 1px solid #000000;
    border-radius: 4px;
    color: #000000 !important;
    font-size: 12px;
    padding: 3px 10px;
}
.pull-left{
	float:left;
}
.pull-right{
	float:right;
}
.wrapper {
    float: left;
    width: 100%;
    position: relative;
}
.content.list-style a {
    color: #006AC2;
    border-bottom: 1px solid;
}
/*----------------------------- HEADER ---------------------------------*/
.header {
    position: relative;
    width: 100%;
    float: left;
	font-family: 'Eurostile LT Std';
	margin: 0 0 1px;
}
.header .container {
    max-width: 1260px;
}
.logo {
    float: left;
    margin: 10px 0;
}
.header-right {
    float: right;
	margin: 30px 0 0 0;
}
.h-number {
    float: left;
    background-image: url(images/number-bg.jpg);
    background-repeat: repeat-x;
    background-position: center top;
    height: 50px;
    padding: 13px 15px 0;
    color: #fff;
    font-size: 17px;
    border-radius: 0 10px 0 10px;
}
.h-number a{
    color: #fff;
}
.h-number span {
    float: left;
	background-image:url(images/phone-icon.png);
	background-repeat: no-repeat;
	background-position: center left;
	padding: 0 0 0 22px;
}
/*----------------------------- NAVIGATION ----------------------------------*/
#primary-navigation {
    float: left;
    position: relative;
    margin: 2px 30px 0 0;
}
#primary-navigation .menu > li {
    float: left;
    position: relative;
	margin: 0 0 0 20px;
}
#primary-navigation .menu > li > a {
    color: #333333;
    float: left;
    height: 45px;
    text-transform: uppercase;
    background-repeat: no-repeat;
    background-position: right bottom;
    padding: 21px 0 0 0;
	font-size: 15px;
}
#primary-navigation .menu > li > a:hover{
	color: #0c4d97;
}
#primary-navigation .menu > li.current-menu-item > a {
	background-image:url(images/active-nav.png);
	color: #0c4d97;
	padding: 21px 17px 0 0px;
}
#primary-navigation ul li.menu-item-has-children a:hover {
    border-bottom: 0 solid #ffffff;
}
#primary-navigation .sub-menu li {
    background-image: none;
    border-bottom: 1px solid #fff;
    float: none !important;
    padding: 0;
    text-align: left;
    width: 100%;
    background-color: rgba(0,0,0,0.6);
	height:auto;
	display: table;
}
#primary-navigation .sub-menu {
    width: 230px;
}
#primary-navigation .sub-menu a {
    border: 0 none !important;
    border-radius: 0 !important;
    color: #fff !important;
    display: table-cell;
    float: none !important;
    font-size: 12px !important;
    height: 50px !important;
    padding: 5px 10px !important;
    vertical-align: middle;
    width: 100%;
}
#primary-navigation .sub-menu a:hover, 
#primary-navigation .sub-menu .current-menu-item a {
    background-color: #2E6599 !important;
    color: #fff !important;
	padding-left:20px !important;
}
#primary-navigation ul ul {
    float: left;
    left: -999em;
    position: absolute;
    z-index: 99;
    top: 100%;
}
#primary-navigation ul ul ul{
    left: -999em;
    top: auto;
    margin:0;
    padding:0;
}
#primary-navigation .menu > li.menu-item-has-children:hover > a, 
#primary-navigation .menu > li.menu-item-has-children a:focus{
	background-image: url("images/nav-active.png");
    background-position: center bottom;
    background-repeat: no-repeat;
}
#primary-navigation .sub-menu a:focus{
	background-image:none !important;
}
#primary-navigation ul li:hover > ul, 
#primary-navigation ul li.focus > ul {
    left: auto;
}
#primary-navigation ul ul li:hover > ul, 
#primary-navigation ul ul li.focus > ul {
    left: 100%;
}
#primary-navigation .menu > li.menu-item-has-children > a:after {
    /*content: "\f502";*/
    display: inline-block;
    font: 8px/1 Genericons;
    position: absolute;
    right: 5px;
    top: 14px;
    vertical-align: text-bottom;
}
#primary-navigation .menu-item-has-children li.menu-item-has-children > a::after, 
#primary-navigation .menu-item-has-children li.page_item_has_children > a::after, 
#primary-navigation .page_item_has_children li.menu-item-has-children > a::after, 
#primary-navigation .page_item_has_children li.page_item_has_children > a::after {
    right: 8px;
    top: 24px;
}

/*------------------------------ SECTION 1 --------------------------------*/
.section1{
	float: left;
	width: 100%;
	position:relative;
}
.section1 img{
	float: left;
	width: 100%;
}
.section1 .container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    max-width: 790px;
    z-index: 99;
}
.wrap-caption {
    position: absolute;
    top: -100px;
    bottom: 0;
    left: auto;
    right: 0;
    margin: auto;
    text-align: center;
    width: 420px;
    height: 171px;
}
.welcomenote {
    color: #89ace7;
    background-color: rgba(255,255,255,0.85);
    padding: 10px 20px;
	display: inline-block;
	vertical-align: top;
	font-family: 'Eurostile LT Std';
	font-size: 17px;
}
.caption-heading1 {
    font-family: 'xirodregular';
    color: #0096dc;
    font-size: 35px;
    float: left;
    width: 100%;
    line-height: 1;
	margin: 15px 0 0 0;
    background: -webkit-linear-gradient(#40b7df, #0057a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.caption-heading2{
	font-family: 'xirodregular';
	color: #1852a0;
	font-size: 35px;
	float: left;
    width: 100%;
    line-height: 1;
	margin: 0 0 15px;
    background: -webkit-linear-gradient(#3775c3, #233285);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.slide-btn {
    display: block;
    vertical-align: top;
    background-image: url("images/slide-btn-bg.png");
    background-position: center top;
    background-repeat: no-repeat;
    width: 221px;
    height: 55px;
    clear: both;
    margin: 0 auto;
    color: #fff;
    font-family: 'Eurostile LT Std';
    font-size: 17px;
    padding: 18px 0 0 75px;
    text-align: left;
}
.slide-btn:hover {
	color: #1852a0;
}
.banner-left-col {
    background-image: url("images/banner-left.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: auto 100%;
    height: 100%;
    position: absolute;
    width: 30%;
    left: 0;
    top:0;
    z-index: 99;
}
.banner-right-col {
    background-image: url("images/banner-right.png");
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 100%;
    position: absolute;
    width: 30%;
    right: 0;
    top: 0;
    z-index: 99;
}

/*------------------------------ SECTION 2 --------------------------------*/
.section2{
	float: left;
	width: 100%;
	position:relative;
	padding: 60px 0;
}
.big-heading{
	text-align:center;
	font-size: 43px;
	line-height: 1;
	margin: 0 0 30px;
}
.wrap-sec2-h1 {
    background-image: url("images/sec2-heading-bg.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: top;
    padding: 0 0 0 60px;
}
.sec2-h1-span1{
	color: #1169b4;
}
.sec2-h1-span2{
	color: #6c9a14;
}
.sec2-h1-span3 {
    color: #282d82;
    font-size: 29px;
    font-family: 'bankgothicbold';
    display: block;
    margin: 4px 0 0 0;
}
.sec2-about-content{
	text-align:center;
	margin: 0 0 30px 0;
}
.section2 .content{
	line-height: 1.8;
	font-size: 17px;
}
.sec2-left{
	background-image: url("images/mission-bg.png");
    background-position: 0 0;
    background-repeat: no-repeat;
	background-size: 92px auto;
	float: left;
	width: 48%;
	padding: 0 0 0 110px;
}
.sec2-right{
	background-image: url("images/values-bg.png");
    background-position: 0 0;
    background-repeat: no-repeat;
	background-size: 92px auto;
	float: right;
	width: 48%;
	padding: 0 0 0 110px;
}
/*------------------------------ SECTION 3 --------------------------------*/
.section3 {
    background-image: url("images/sec3-bg.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    float: left;
    width: 100%;
    position: relative;
    padding: 60px 0;
    color: #fff;
    background-size: cover;
}
.sec3-cross {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
}
.sec3-left{
	float: left;
	width: 40%;
}
.sec3-left .content li {
    background-image: url("images/sec3-list-bg.png");
    background-position: center left;
    font-family: 'Eurostile LT Std';
    font-size: 16px;
    padding: 0 0 0 30px;
    margin: 10px 0 10px;
}
.sec3-left .btn-sec3 {
    float: left;
    background-image: url(images/blue-btn-bg.jpg);
    background-repeat: repeat-x;
    background-position: center top;
    height: 50px;
    padding: 10px 15px 0;
    color: #fff;
    font-family: 'Eurostile LT Std';
    font-size: 17px;
    border-radius: 0 10px 0 10px;
    background-size: auto 100%;
    border: 2px solid #fff;
    margin: 20px 0 0 0;
}
.sec3-right .btn-sec3 {
    float: right;
    background-image: url(images/number-bg.jpg);
    background-repeat: repeat-x;
    background-position: center top;
    height: 50px;
    padding: 10px 15px 0;
    color: #fff;
    font-family: 'Eurostile LT Std';
    font-size: 17px;
    border-radius: 0 10px 0 10px;
    background-size: auto 100%;
    border: 2px solid #fff;
    margin: 20px 0 0 0;
}
.sec3-right{
	float: right;
	width: 40%;
	text-align: right;
}
.sec3-right .content li {
    background-image: url("images/sec3-list-bg.png");
    background-position: center right;
    font-family: 'Eurostile LT Std';
    font-size: 16px;
    padding: 0 30px 0 0;
    margin: 10px 0 10px;
}
.section3-bottom {
    float: left;
    width: 100%;
    text-align: center;
    margin: 15px 0;
}
.section3-bottom h3{
    margin: 0;
	color: #a2bd2f;
	font-size: 22px;
}
.section3-bottom h3 span{
	color: #1c4696;
}
/*------------------------------ SECTION 4 --------------------------------*/
.section4{
	float: left;
	width: 100%;
	position:relative;
}
.wrap-service1, .wrap-service3, .wrap-service5{
	background-color: #f5f5f5;	
}
.wrap-service {
    float: left;
    width: 100%;
    padding: 60px 0;
}
.service-left {
    float: left;
    width: 33%;
}
.service-right {
    float: right;
    width: 63%;
}
.wrap-service2 .service-left, .wrap-service4 .service-left, .wrap-service6 .service-left {
    float: right;
}
.wrap-service2 .service-right, .wrap-service4 .service-right, .wrap-service6 .service-right {
    float: left;
}
.btn-sec4 {
    float: left;
    background-image: url(images/number-bg.jpg);
    background-repeat: repeat-x;
    background-position: center top;
    height: 50px;
    padding: 10px 15px 0;
    color: #fff;
    font-family: 'Eurostile LT Std';
    font-size: 17px;
    border-radius: 0 10px 0 10px;
    background-size: auto 100%;
    border: 2px solid #fff;
    margin: 20px 0 0 0;
}
.wrap-service2 .btn-sec4, .wrap-service4 .btn-sec4, .wrap-service6 .btn-sec4 {
	background-image: url(images/blue-btn-bg.jpg);	
}
.service-right h2 {
    font-size: 26px;
}
.service-right .content {
    line-height: 1.7;
}

/*------------------------------ SECTION 5 --------------------------------*/
.section5 {
    background-image: url("images/sec5-bg.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    float: left;
    width: 100%;
    position: relative;
    padding: 60px 0;
    color: #fff;
    background-size: cover;
	min-height: 512px;
}
.section5 h2 {
    font-family: 'xirodregular';
    text-align: center;
    font-size: 36px;
    background-image: url("images/sec5-h2-bg.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 0 0 15px;
	margin: 0 0 50px;
}
.wrap-review {
    float: left;
    width: 100%;
    padding: 30px 30px 90px 66px;
    background-color: #fff;
    color: #333;
    background-image: url("images/review-bg.png");
    background-position: left bottom;
    background-repeat: no-repeat;
    border-radius: 8px;
    border: 3px solid #fff;
    margin: 0 0 65px;
	position:relative;
}
.wrap-review::after {
    content: url("images/review-arrow-bottom.png");
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: auto;
    width: 56px;
}
.wrap-review h3 {
    background-image: url("images/5stars.png");
    background-position: right bottom;
    background-repeat: no-repeat;
    color: #262c81;
    font-family: 'Eurostile LT Std';
    font-size: 17px;
    width: auto;
    position: absolute;
    bottom: 15px;
    right: 30px;
    padding: 0 0 20px 0;
}
.wrap-review .content::before {
    content: url("images/quote-open.png");
    position: absolute;
    margin-left: -40px;
}
.wrap-review .content::after {
    content: url("images/quote-close.png");
    position: absolute;
    margin: 15px 0 0 15px;
}
.wrap-review .content{
    text-align: center;
}
.wrap-review img {
    max-width: 110px !important;
    border: 3px solid #fff;
    border-radius: 100%;
    position: absolute;
    bottom: -65px;
    left: 25px;
}
.section5 .bx-wrapper .bx-controls-direction a {
    top: 28%;
    margin-top: 0;
    width: 32px;
    height: 63px;
}
.section5 .bx-wrapper .bx-prev {
    left: -55px;
	background: url(images/slider2-controls.png) no-repeat 0 0;
}
.section5 .bx-wrapper .bx-prev:hover {
    background: url(images/slider2-controls.png) no-repeat 0 -69px;
}
.section5 .bx-wrapper .bx-next {
    right: -55px;
	background: url(images/slider2-controls.png) no-repeat -38px 0;
}
.section5 .bx-wrapper .bx-next:hover {
	background: url(images/slider2-controls.png) no-repeat -38px -69px;
}

/*------------------------------ SECTION 6 --------------------------------*/
.section6{
	float: left;
	width: 100%;
	position:relative;
	padding: 60px 0 40px;
}
.pro-col {
    float: left;
    width: 24%;
    margin: 0 15px 0 0;
}
.pro-col.pro-col3{
	margin: 0;
}
.pro-col.pro-col4{
	margin: 0;
	float: right;	
}
.pro-col img {
    float: left;
    width: 100%;
    margin: 0 0 20px 0;
    border: 1px solid #ccc;
}

/*------------------------------ SECTION 7 --------------------------------*/
.section7{
	float: left;
	width: 100%;
	position:relative;
	background-color: #f0f0f0;
	padding: 60px 0;
}
.section7 h2 {
    font-family: 'xirodregular';
    text-align: center;
    font-size: 36px;
    background-image: url("images/sec7-heading-bg.jpg");
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 0 0 15px;
	margin: 0 0 50px;
	color: #6c9a14;
}
.section7 h2 span{
	color: #1169b4;	
}
.wrap-partners {
    float: left;
    width: 100%;
    text-align: center;
}
.single-logo {
    display: inline-block;
    vertical-align: top;
    width: 200px;
    position: relative;
    border: 1px solid #e2e2e2;
    height: 95px;
    margin: 0 10px 10px;
    background-color: #fff;
}
.single-logo img {
    position: absolute;
    max-height: 85%;
    max-width: 85%;
    width: auto;
    height: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    filter: grayscale(100%);
}
.single-logo:hover img{
    filter: grayscale(0);	
}
.homemap, .homemap img{
	float: left;
	width: 100%;
}

/*------------------------------ SECTION 8 --------------------------------*/
.section8{
	float: left;
	width: 100%;
	position:relative;
	padding: 60px 0;
}
.section8 h2 {
    font-family: 'xirodregular';
    text-align: center;
    font-size: 36px;
    background-image: url("images/sec7-heading-bg.jpg");
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 0 0 15px;
	margin: 0 0 50px;
	color: #6c9a14;
}
.section8 h2 span{
	color: #1169b4;	
}
.sec8-form{
	display: block;
	clear:both;
	margin: 0 auto;
	max-width: 900px;
	width: 100%;
}
/*----------------------------- FOOTER --------------------------------*/
.footer{
	background-image: url("images/footer-bg.jpg");
    background-position: center top;
    background-repeat: no-repeat;
	background-size: cover;
	float:left;
	width: 100%;
	min-height: 406px;
	padding: 60px 0 20px;
	color: #fff;
	font-size: 15px;
}
.footer a{
	color: #fff;
}
.footer .sub-menu{
	display: none;
}
.footer-box {
    background-image: url("images/footer-seperator.png");
    background-position: center right;
    background-repeat: no-repeat;
    float: left;
    margin: 0 4% 0 0;
    padding: 0 4% 0 0;
    min-height: 265px;
}
.footer-box1{
	width: 28%;
}
.footer-box2 {
    width: 21%;
}
.footer-box3 {
    width: 18%;
    margin: 0;
}
.footer-box4 {
    background-image: none;
    float: right;
    width: 21%;
    margin: 0;
    padding: 0;
}
.footer-logo {
    width: 100%;
    float: left;
    margin: 0 0 20px;
}
.socialmedia {
    float: left;
    width: 100%;
    text-align: center;
}
.socialmedia a {
    display: inline-block;
    vertical-align: top;
    margin: 0 2px;
}
.footer-box h3{
	color: #fff;
	font-family: 'Eurostile LT Std';
	font-size: 22px;
}
.footer-menu {
    float: left;
    width: 100%;
}
.footer-menu li{
    float: left;
    width: 100%;
	margin: 15px 0 6px;
}
.wrap-address {
    float: left;
    width: 100%;
    margin: 15px 0 0 0;
}
.f-add {
    float: left;
    width: 100%;
    padding: 0 0 0 24px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 16px;
	margin: 0 0 10px;
}
.f-address{
	background-image:url(images/f-address-white.png);
	background-position: 0 0;
}
.f-email{
	background-image:url(images/f-email-white.png);
	width: auto !important;
}
.f-phone{
	background-image:url(images/f-phone-white.png);
}
.wrap-address h4 {
    margin: 15px 0 0 0;
}
.wrap-profile {
    float: left;
    width: 100%;
	margin: 0 0 10px;
}
.owner-cell {
    background-image: url(images/f-cell-white.png);
    background-size: auto;
    background-position: 1px 0px;
}
.owner-name{
	background-image:url(images/f-person-white.png);	
}
.copyright {
    float: left;
    width: 100%;
    border-top: 1px solid #5f78ab;
    padding: 20px 0 0 0;
    text-align: center;
    margin: 20px 0 0 0;
    font-size: 16px;
}
/*----------------------------- Inner Pages --------------------------------*/
.wrap-inner-page {
    float: left;
    width: 100%;
	position:relative;
}
.wrap-inner-page .content a {
    color: #1c4696;
    border-bottom: 1px solid;
}
.wrap-inner-page h2, .wrap-inner-page h3{
	color: #1169b4;
}
.feature_title {
    float: left;
    width: 100%;
	position:relative;
}
.f-img {
    float: left;
    width: 100%;
    height: auto;
    position: relative;
}
.div-absolute{
	position:absolute;
	width: 100%;
	height: 100%;
}
.div-table{
	display:table;
	height: 100%;
	width: 100%;
}
.div-vertical{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
.heading {
    color: #fff;
    display: inline-block;
    float: none;
    margin: 0;
    padding: 0;
    text-align: center;
    width: auto;
    font-size: 36px;
    line-height: 1;
    text-transform: uppercase;
}
.heading::after {
    content: "";
    border-bottom: 3px solid #1169b4;
    display: block;
    width: 196px;
    margin: 15px auto 0;
}
.inner-content {
    float: left;
    width: 70%;
    margin: 50px 0;
}
.sidebar-inner {
    float: right;
    width: 27%;
    margin: 50px 0;
    background-color: #efefef;
    padding: 15px;
}
.full-content {
    float: left;
    width: 100%;
    margin: 40px 0 20px;
}
.wpcf7 {
    clear: both;
    float: left;
    width: 100%;
	font-family: 'proxima_nova_rgregular';
}
.wpcf7 p{
	float:left;
	width:100%;
	margin-bottom: 10px;
}
.wpcf7 input, .wpcf7 textarea, select {
    float: left;
    width: 100%;
	color: #333;
    height: 48px;
    border-radius: 5px;
    background-color: #f0f0f0;
	margin: 5px 0 0 0;
	font-family: inherit;
	font-size: 15px;
}
.wpcf7 textarea{
	height:150px;
	padding:10px;	
}
.wpcf7-form-control.wpcf7-submit {
    float: left;
    background-image: url(images/number-bg.jpg);
    background-repeat: repeat-x;
    background-position: center top;
    height: 50px;
    padding: 0px 20px 0;
    color: #fff;
    font-family: 'Eurostile LT Std';
    font-size: 17px;
    border-radius: 0 10px 0 10px;
    background-size: auto 100%;
    border: 2px solid #fff;
    margin: 0;
    width: auto;
	cursor: pointer;
}
div.wpcf7-response-output {
    clear: both;
    margin: 10px 0 0 !important;
    padding: 10px !important;
}
span.wpcf7-not-valid-tip {
    clear: both;
    float: left;
    width: 100%;
}
.half-left {
    float: left;
    width: 48%;
}
.half-right {
    float: right;
    width: 48%;
}
.wrap-cf7{
	float:left;
	width: 80%;
}
.default-content {
    font-size: 16px;
}
.inner-content .f-img {
    margin: 0 0 20px;
}
.archive .heading, .single .heading {
    font-size: 40px;
}
.wrap-blog-post {
    float: left;
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding: 0 0 20px;
    margin: 0 0 20px;
}
.default-content a {
    color: #2E6599;
    border-bottom: 1px solid;
}
.blog-reamore {
    float: left;
    clear: both;
    margin: 10px 0 0 0;
    padding: 10px 25px;
    background-color: #2E6599;
    color: #fff;
    font-size: 16px;
}
.page-template-page-about .section2 {
    padding: 40px 0 0;
    background-color: #dedede;
}
/*---------------------------------- SIDEBAR --------------------------------------*/
.sidebar li {
    float: left;
    font-size: 16px;
    margin: 0 0 10px;
    width: 100%;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #aaa;
}
h2.widget-title{float:left;font-size:20px;margin:0 0 10px;width:100%;}
.sidebar a{color:#2E6599;float:left;}
.sidebar span{clear:both;float:left;font-size:13px;}

/*---------------------------------------- PAGINATION ----------------------------------------*/
.navigation.blogpostsnav {
    float: left;
    width: 100%;
    margin: 0 0 4% 0;
	text-align:center;
}
.blogpostsnav ul {
    margin: 0;
    padding: 0;
}
.blogpostsnav li a,
.blogpostsnav li a:hover,
.blogpostsnav li.active a,
.blogpostsnav li.disabled {
	color: #fff;
	text-decoration:none;
}
.blogpostsnav li {
	display: inline-block;
	vertical-align:top;
}
.blogpostsnav li a,
.blogpostsnav li a:hover,
.blogpostsnav li.active a,
.blogpostsnav li.disabled {
	background-color: #737373;
	border-radius: 3px;
	cursor: pointer;
	padding: 12px;
	padding: 5px 12px;
    color: #fff !important;
}

.blogpostsnav li a:hover,
.blogpostsnav li.active a {
	background-color: #2E6599;
    color: #fff;
}
/*---------------------------------- RESPONSIVE -------------------------------------*/

@media only screen and (max-width : 1169px){
    .container{
        width: 95%;
    }
    #primary-navigation {
        float: left;
        position: relative;
        margin: 0;
    }
    .h-number {
        position: absolute;
        right: 0;
        top: 5px;
    }
    #primary-navigation .menu > li > a {
        font-size: 14px;
    }
    #primary-navigation {
        margin: 37px 0 0 0;
    }
    .section1 .container {
        max-width: 680px;
    }
    .big-heading {
        font-size: 30px;
        margin: 0 0 20px;
    }
    .sec2-h1-span3 {
        font-size: 20px;
    }
    .section2 h2 {
        font-size: 18px;
        margin: 0;
    }
    .section2 {
        padding: 30px 0 20px;
    }
    .sec2-about-content {
        margin: 0 0 10px 0;
    }
    .sec3-right .content li {
        background-position: right 1px;
        font-size: 14px;
    }
    .section3 h2 {
        font-size: 18px;
    }
    .section3 .content {
        font-size: 15px;
    }
    .sec3-left .content li {
        background-position: 0px 1px;
        font-size: 14px;
    }
    .service-right h2 {
        font-size: 22px;
        margin: 0 0 5px;
    }
    .btn-sec4 {
        margin: 0px 0 0 0;
    }
    .section3 , .wrap-service {
        padding: 30px 0;
    }
    .section5 {
        padding: 30px 0;
        min-height: 100%;
    }
    .section5 .bx-wrapper {
        max-width: 530px !important;
    }
    .section5 h2 {
        font-size: 30px;
        margin: 0 0 30px;
    }
    .section6 {
        padding: 40px 0 30px;
    }
    .pro-col img {
        margin: 0 0 15px 0;
    }
    .section7, .section8 {
        padding: 30px 0;
    }
    .section8 h2, .section7 h2 {
        font-size: 30px;
        margin: 0 0 20px;
    }
    .footer {
        min-height: 380px;
        padding: 30px 0 10px;
    }
    .footer-box h3 {
        font-size: 18px;
    }
    .footer .menu a {
        font-size: 13px;
    }
    .sec3-cross {
        width: 170px;
    }
    .page-template-page-about .section2 {
        padding: 30px 0 20px;
    }
    .heading {
        font-size: 26px;
    }
} 
@media only screen and (max-width : 979px){
    #primary-navigation{
        display: none;
    }
    .h-number {
        position: fixed;
        right: 2.5%;
        top: 8px;
        z-index: 999999;
        background-image: none;
        padding: 0;
        height: auto;
    }
    .logo {
        float: none;
        display: block;
        margin: 8px auto;
        width: 198px;
    }
    .logo img {
        width: 100%;
    }
    .header-right {
        float: none;
        margin: 0;
    }
    .caption-heading1, .caption-heading2 {
        font-size: 24px;
    }
    .welcomenote {
        padding: 5px 10px 3px;
        font-size: 13px;
    }
    .wrap-caption {
        width: 320px;
        height: 150px;
        top: -70px;
    }
    .slide-btn {
        width: 170px;
        height: 44px;
        font-size: 14px;
        padding: 13px 0 0 60px;
        text-align: left;
        background-size: contain;
    }
    .section1 .container {
        max-width: 550px;
    }
    .content, p {
        font-size: 14px;
        line-height: 1.5;
    }
    .service-right h2 {
        font-size: 18px;
    }
    .sec3-cross {
        width: 130px;
    }
    .pro-col {
        width: 24%;
        margin: 0 1% 0 0;
    }
    .pro-col img {
        margin: 0 0 7% 0;
    }
    .footer-box1 {
        width: 25%;
    }
    .socialmedia img {
        width: 28px;
    }
    .footer-box4 {
        width: 25%;
    }
    .full-content {
        margin: 20px 0 10px;
    }
    .wrap-inner-page h2{
        font-size: 20px;
    }
    .wrap-inner-page h3{
        font-size: 17px;
    }
} 
@media only screen and (max-width : 767px){
    .logo {
        width: 140px;
    }
    .caption-heading1, .caption-heading2 {
        font-size: 18px;
    }
    .caption-heading2 {
        margin: 0 0 5px;
    }
    .caption-heading1 {
        margin: 8px 0 0 0;
    }
    .wrap-caption {
        width: 240px;
        height: 120px;
        top: -50px;
    }
    .section1 .container {
        max-width: 450px;
    }
    .big-heading {
        font-size: 24px;
        margin: 0 0 10px;
    }
    .sec2-h1-span3 {
        font-size: 16px;
    }
    .section2 h2 {
        font-size: 15px;
    }
    .section2 .content {
        margin: 0;
    }
    .sec3-left, .sec3-right {
        width: 47%;
    }
    .section3 h2 {
        font-size: 15px;
    }
    .sec3-left .content li, .sec3-right .content li {
        font-size: 13px;
        background-size: 12px;
        margin: 0 0 10px 0;
    }
    .sec3-left .content li{
        background-position: left 3px;
        padding: 0 0 0 14px;
    }
    .sec3-right .content li {
        background-position: right 3px;
        padding: 0 14px 0 0;
    }
    .sec3-left .btn-sec3, .sec3-right .btn-sec3 {
        font-size: 13px;
        height: 42px;
    }
    .sec3-cross {
        width: 100px;
    }
    .section3-bottom h3 {
        font-size: 16px;
    }
    .section3-bottom {
        margin: 10px 0;
    }
    .service-right h2 {
        font-size: 15px;
    }
    .btn-sec4 {
        margin: 0;
        background-size: contain;
        padding: 10px;
        font-size: 13px;
        height: 41px;
    }
    .section5 h2 {
        font-size: 24px;
    }
    .section5 .bx-wrapper .bx-prev {
        left: -45px;
    }
    .section5 .bx-wrapper .bx-next {
        right: -45px;
    }
    .single-logo {
        width: 140px;
        height: 51px;
        margin: 0 5px 10px;
    }
    .wpcf7 textarea {
        height: 80px;
    }
    .footer-box {
        width: 48%;
        margin: 0 !important;
        padding: 0 !important;
        background-image: none !important;
    }
    .footer-box1, .footer-box3 {
        float: left;
    }
    .footer-box2, .footer-box4 {
        float: right;
    }
    .footer-box h3 {
        margin: 0;
    }
    .footer-logo {
        width: 100%;
        float: none;
        max-width: 160px;
        display: block;
        margin: 0 auto 20px;
    }
    .section8 h2, .section7 h2 {
        font-size: 24px;
        margin: 0 0 20px;
    }
    .heading {
        font-size: 22px;
    }
    
} 
@media only screen and (max-width : 639px){
    .sec2-left, .sec2-right {
        background-size: 60px auto;
        width: 100%;
        padding: 0 0 0 75px;
    }
    .sec2-right{
        margin: 10px 0 0 0;
    }
    .sec3-cross {
        width: 60px;
    }
    .section1 .container {
        max-width: 360px;
    }
    .big-heading {
        font-size: 20px;
    }
    .sec2-h1-span3 {
        font-size: 13px;
    }
    .single-logo {
        width: 120px;
    }
    .section5 h2 {
        margin: 0 0 20px;
    }
    .section5 .bx-wrapper .bx-prev {
        left: auto !important;
        right: 70px !important;
        top: 80% !important;
    }
    .section5 .bx-wrapper .bx-next {
        left: auto !important;
        right: 0 !important;
        top: 80% !important;
    }
    .wrap-review img {
        max-width: 70px !important;
        bottom: -40px;
        left: 15px;
    }
    .heading {
        font-size: 18px;
    }
    .heading::after {
        width: 100px;
        margin: 5px auto 0;
    }
    .wrap-inner-page h2{
        font-size: 17px;
    }
    .wrap-inner-page h3{
        font-size: 15px;
    }
}
@media only screen and (max-width : 439px){
    .section1 .container{
        display: none;
    }
    .footer-box {
        width: 100%;
        margin: 0 0 20px !important;
        min-height: 100%;
    }
    .copyright {
        padding: 10px 0 0 0;
        margin: 0px 0 0 0;
        font-size: 14px;
    }
    .section8 h2, .section7 h2 {
        font-size: 20px;
        margin: 0 0 20px;
    }
    .sec3-cross{
        display: none;
    }
    .sec3-left, .sec3-right {
        width: 100%;
        padding: 15px;
    }
    .sec3-left {
        background-color: #a2bd2f;
    }
    .sec3-right {
        background-color: #1c4696;
    }
    .section3{
        background-image: none;
        padding: 0;
    }
    .sec3-left .btn-sec3, .sec3-right .btn-sec3 {
        margin: 0;
    }
    .section5 h2 {
        font-size: 18px;
    }
    .big-heading {
        font-size: 15px;
    }
    .sec2-h1-span3 {
        font-size: 10px;
    }
    .service-left, .service-right{
        width: 100%;
    }
    .service-right {
        margin: 12px 0 0 0;
    }
}