/* -----------------------------------

  1. Reset default browser styles

------------------------------------- */

@viewport{user-zoom: fixed;}

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
      box-sizing: border-box;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

iframe{width: 100%;}

b, strong{font-weight: bold !important;}

ul{
  list-style: none;
}

q{quotes: none;}

table, table td{ 
  padding: 0;
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
}

img{
  vertical-align: top; 
  max-width: 100%;
  height: auto;
}

embed{ vertical-align: top;}

input,
button{
  -webkit-appearance: none;
  outline: none;
}

button::-moz-focus-inner{border: 0;}

html{
  overflow-x: hidden;

  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,body{height: 100%;}

/* -----------------------------------

  2. Global 

------------------------------------- */

body{
  	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 300;
	color: #444444;
	position:relative;
}

#wrapper{
	 -webkit-transition: all .25s ease;
	-o-transition: all .25s ease;
	transition: all .25s ease;
	position: relative;
	overflow: hidden;
	max-width: 1920px;
	margin: auto;
	background-color: #fff;
	box-shadow: 0 0 39px 1px rgba(0, 0, 0, 0.1);
}


.wrapper-container{
  position: relative;
}

::selection{
  background: #1a1a1a;
  color: #fff;
}

::-moz-selection{
  background: #1a1a1a;
  color: #fff; 
}

::-o-selection{
  background: #1a1a1a;
  color: #fff; 
}

::-ms-selection{
  background: #1a1a1a;
  color: #fff;
}

.selected-type-1{
  background: #1a1a1a;
  color: #fff;
}

img{
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.clearfix:after,
.row:after{
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  content: ".";
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
  font-weight: 300;
  color: #333334;
  -webkit-transition:text-indent .5s ease,color .5s ease;
}

input::-moz-placeholder,
textarea::-moz-placeholder{
  color: #333334;
  font-weight: 300;
  opacity: 1;
  -webkit-transition:text-indent .5s ease,color .5s ease;
}

[placeholder]:focus::-webkit-input-placeholder{
  text-indent:10em;
  color:transparent;
}

[placeholder]:focus::-webkit-textarea-placeholder{
  text-indent:10em;
  color:transparent;
}

.bounce {
  display: inline-block;
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -moz-transform: translateY(-1px);
    transform: translateY(-1px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  60% {
    -webkit-transform: translateY(-);
    transform: translateX(0);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  60% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* ------------------------------------------------------
  
  3. General classes
  
------------------------------------------------------ */

.wrapper{overflow: hidden;}

.relative{position: relative;}

.align-left,.text-left{text-align: left;}

.align-center,.text-center{text-align: center;}

.align-right,.text-right{text-align: right;}

.f-left{float: left;}

.f-right{float: right;}

.hide{display: none;}

.show{display: block;}

.invisible{visibility: hidden;}

img[class*="align"]{
  margin-bottom: 15px;
}

img.alignleft{
  float: left;
  margin-right: 30px;
}

img.alignright{
  float: right;
  margin-left: 30px;
}

#post-content{
	padding: 80px 0;
	background-color:#f8f8f8;
}

#post-content ol{
	margin-left:20px;
}

#post-content ol li{
	margin-bottom:3px;
}

.extra{width: 100%;}

[class*="flex-row"]{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}

[class*="flex-row"]:after{
  display: none;
}

[class*="flex-row"] > *{
  float: none;
}

[class*="flex-row"].flex-justify{
  justify-content: space-between;
}

[class*="flex-row"].flex-center{
  align-items: center;
}

[class*="flex-row"].flex-bottom{
  align-items: flex-end;
}


/* Responsive iframe */

.responsive-iframe{
  position: relative;
  z-index: 1;
  height: 0px;
  padding-bottom: 56.2%;
}

.responsive-iframe > iframe{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

  .responsive-iframe.fix-size > iframe{
    top: -45%;
    height: 180%!important;
  }

/* -----------------------------------

  4. Typography

------------------------------------- */

h1,h2,h3,h4,h5,h6{
  color: #333334;
  font-weight: 600;
  line-height: 1.1em;
}

h1:not(:last-child),
h2:not(:last-child),
h3:not(:last-child),
h4:not(:last-child),
h5:not(:last-child),
h6:not(:last-child){
  margin-bottom: 14px;
}

h1{
  font-size: 3.1em;
  
}

h2{
  font-size: 2.4em;
}

h3{
  font-size: 1.8em;
}

h4{
  font-size: 1.5em;
}

h5{
  font-size: 1.3em;
}

h6{
  font-size: 1.1em;
}

p{
  padding: 0;
}

p:not(:last-child){
  margin-bottom: 25px;
}


a{
  margin: 0;
  padding: 0;
  font-size: 100%;
  outline: none;
  text-decoration: none;
  background: transparent;
  vertical-align: baseline;
	color:inherit;
}

a, a > *{
  text-decoration: none;
  outline: none !important;
}

a,
button{
  -webkit-transition: all .4s ease;
          transition: all .4s ease;
}

a.link-text{
  color: #038ed3;
}

a.link-text:hover{
  text-decoration: underline;
}

[class^="icon-"]:before, 
[class*="icon-"]:before{
  width: auto;
  margin: 0;
  padding: 0;
}

hr {
    border-color: rgba(97, 114, 138, 0.2);
    border-width: 2px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 27px;
    margin-bottom: 30px;
}



/* -----------------------------------

  5. Header

------------------------------------- */

#header{
  /*position: relative;*/
  top: 0;
  z-index: 9;
  width: 100%;
  max-width:1920px;
}

#header-top{
	/*background-color:rgba(3,15,28,0.9);*/
	background-color:rgba(10,10,10,0.85);
	padding: 15px 0 15px;
}

#header-bottom{
	background-color:rgba(12,12,12,0.95);
}

.header-flex{
	display:flex;
	flex-direction:row;
	justify-content:space-between;
	flex-wrap:nowrap;
	align-content:center;
}

.header-center{
	flex-grow:2;
	display: flex;
    justify-content: flex-end;
    align-items: center;
	padding-left:15px;
}

.logo-wrap{
	margin-right:20px;	
}

.logo-wrap a{
	display:block;
}

.logo-img{
	max-height:60px;
	height:auto;
}

#header-contact{
	display:flex;
}

#header-contact > span{
	display:block;
	margin:0 40px 0 20px;
}

#header-contact i{
	color:#d90000;
	font-size:20px;
	margin-right:5px;
}

.header-right{
	display:flex;
	justify-content:flex-end;
	align-items:center;
}

#mobile-menu-icon{
	font-size:24px;
}

/* HEADROOM */
.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    will-change: transform;
    transition: transform 300ms linear;
}

.admin-bar .sticky-header{
    margin-top:32px;
}
.sticky-header.slideDown {
    transform: translateY(0%);
}
.sticky-header.slideUp {
    transform: translateY(-100%);
}

.sticky-header.headroom--not-top.headroom--not-bottom{
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.3);
    /*background-color: rgba(1,1,15,0.95);*/
}

.sticky-header.headroom--not-bottom.slideDown,
.sticky-header.headroom--bottom{
    /*background-color: rgba(1,1,15,0.95);*/
}

#post-header{
    /*padding-top:92px;*/
    -webkit-transition: padding 250ms ease;
    -moz-transition: padding 250ms ease;
    -o-transition: padding 250ms ease;
	transition: padding 250ms ease;
}

/* Main Navigation */

#vep-menu{
  	position: relative;
	text-align:right;
	flex-grow:2;
	text-align: center;
}

.main-navigation{
  display: inline-block;
  vertical-align: middle;
  text-align: left;
}

.main-navigation > ul > li{
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.main-navigation > ul > li > a{
	margin:0 25px;
	padding-top:20px;
	padding-bottom:20px;
}

.main-navigation > ul > li:hover > a,
.main-navigation > ul > li.current-menu-item > a,
.main-navigation > ul > li.current-menu-ancestor > a{
	color: #d90000;
}

.main-navigation > ul > li > a{
  color: #fff;
  /*letter-spacing: 0.8px;*/
  display: block;
  position: relative;
  text-decoration: none;
}

.main-navigation > li:hover > .sub-menu{
  opacity: 1;
  visibility: visible;
}

.main-navigation > ul > li:hover > a:before,
.main-navigation > ul > li.current > a:before{
width: 100%;
}

.sub-menu > li{
	position: relative;
}

.sub-menu > li:hover > a,
.sub-menu > li.current-menu-item > a{
	color: #d90000;
}

.main-navigation > ul > li.dropdown > a .holder:after{
	font-family: 'vep-icons';
	content: '\f107';
	margin-left: 5px;
	font-size: 14px;
	display: inline-block;
	vertical-align: top;
}

.sub-menu > li > a{
  display: block;
  white-space: pre;
  position: relative;
  font-weight: 300; 
  padding: 7px 30px 7px 30px;
  color: inherit;
}



/* ------------------------------------------------------
    
    6. Content Elements
    
------------------------------------------------------ */

#content,#main{
  position: relative;
}

#post-header.banner .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
	background-color: rgba(14,38,64,0.4);
	/*background-color: rgba(0,0,0,0.45);*/
}


#post-header.banner #post-header-inner {
    width: 100%;
    /* max-width: 1680px; */
    margin: 0 auto;
    padding: 200px 0 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}


#post-header.banner .post-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.3;
	color:#fff;
    word-break: break-word;
}


#post-header.banner .sub-title {
    font-size: 14px;
    line-height: 20px;
    margin-top: 5px;
	margin-bottom:10px;
    font-weight: 300;
    color: #f2f2f2;
    word-break: break-word;
	text-transform:uppercase;
}

#post-header.banner .sub-title:before,
#slider-sub-title:before{
    content: "";
    width: 50px;
    height: 2px;
    margin-right: 20px;
    margin-left: -70px;
    display: inline-block;
    vertical-align: middle;
    background-color: #ffffff;
    position: relative;
    top: -2px;
}

#breadcrumbs{
	color:#eee;
	font-size:18px;
	margin-top:30px;
}

#breadcrumbs .bc-sep{
	font-size:20px;
	color:#870000;
	margin-left:3px;
	margin-right:3px;
}

.close-popup{
  position: absolute;
  top: 30px;
  right: 30px;
  left: auto;
  color: #49494a;
}

.section-title-wrapper{
	margin-bottom:30px;
}

.section-title{
  font-weight: bold;
}

.section-title span,
.gradient-text{
	line-height: 1;
    padding: 0 6px 1px 5px;
    transform: skew(-14deg);
    color: #fff;
    background: linear-gradient(to top, #B00000 0%, #D90000 69%, #FC2323 100%);
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0;
    position: relative;
}

.sub-title{
	font-weight:300;
	color:#06182d;
}

.large{
	font-size:20px;
	line-height:28px;
}

.bold,
.large.bold{
	font-weight:500;
}

.large-text{
	font-size:24px;
	line-height:40px;
}

.huge-text{
	font-size:32px;
	line-height:44px;
}

.grey-bg{
	/*background-color:#282f39;*/
	background-color:#222;
}

.dark-bg,
.dark-bg a,
.dark-bg p,
.dark-bg .section-title{
	color:#fff;
}

.light-text{
	color:#61728a;
}

.acr{
	color:#d90000;
}

/*#main a{
	text-decoration:underline;
}*/


/*** 

====================================================================
	HOME
====================================================================

***/

#home-cta{
	z-index:1;
	overflow:visible;
	position:relative;
}

#home-cta-inner{
	max-width:1170px;
	margin:0 auto;
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	align-content:center;
	overflow:visible;
	position:relative;
}

#home-cta .cta-col{
	width:24%;
	overflow:visible;
	position: relative;
    transition: all 0.4s ease 0s;
    background-repeat: no-repeat;
	border-top-width:3px;
	border-bottom-width:3px;
	border-style:solid;
}

#home-cta .cta-col:hover{
	transform: translateY(-20px);
	border-color:#eee!important;
}

#home-cta .cta-col a{
	display:block;
	padding:50px 20px;
	text-align:center;
}

#home-cta .cta-col h3{
	font-weight:bold;
	text-transform:uppercase;
	font-size:36px;
	color:#fff;
}

#home-cta .cta-col h3 .cta-subtitle{
	font-weight:normal;
	font-size:28px;
}

/*** 

====================================================================
	SERVICES
====================================================================

***/

#service-layout{
	margin-top:60px;
	margin-bottom:20px;
}
#service-layout .media{
	display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
	padding-bottom:15px;
}

#service-layout .media i{
	color:#D90000;
	font-size:24px;
	position:relative;
	top:-2px;
}

#service-layout .media-body{
	margin-left:14px;
}

#service-layout .media-body h6{
	margin-bottom:7px;
}

#service-layout .media-body h6:hover{
	color:#d90000;
}

.service-divider{
	margin-bottom:60px;
}

/*** 

====================================================================
	BLOG
====================================================================

***/

#blog-wrap .post{
	background-color: #f5f5f5;
	position:relative;
	display:block;
}

#blog-wrap .post-thumbnail {
    text-align: left;
	display: inline-block;
}

#blog-wrap .item-media{
	position:relative;
}

#blog-wrap .item-media img {
    width: 100%;
}

#blog-wrap .media-links {
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#blog-wrap .media-links:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(3, 15, 28, 0.3);
    opacity: 0;
    transition: all 0.2s linear;
}

#blog-wrap .media-links a.abs-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
}

#blog-wrap .post .share_buttons {
    margin-top: 39px;
    left: 20px;
}

#blog-wrap .post .item-content {
    padding: 34px 40px 40px 70px;
}

#blog-wrap .post + .post {
    margin-top: 70px;
}

#blog-wrap .post .entry-title{
    text-transform: none;
    margin: 0 0 16px !important;
    font-size: 30px;
}

#blog-wrap .post .more-link {
    display:table;
    margin-top: 23px;
}

#blog-wrap .post .article-cat,
.single-post .article-cat{
	display:block;
	position: absolute;
    top: 0;
    left: 4px;
    z-index: 10;
}

#blog-wrap .post .article-cat span,
.single-post .article-cat span{
    padding: 5px 6px;
    margin: 0 3px 9px;
    text-align: center;
    display: inline-block;
    font-size: 16px !important;
    line-height: 1;
    transform: skew(-22deg);
    background: linear-gradient(to top, #B00000 0%, #D90000 69%, #FC2323 100%);
    font-weight: 400;
    border-image-slice: 1;
}

#blog-wrap .post .article-cat span:first-child,
.single-post .article-cat span:first-child{
	margin-left:-13px;
}

#blog-wrap .post .article-cat span:first-child:before,
.single-post .article-cat span:first-child:before{
    content: '';
    position: absolute;
    bottom: -12px;
    left: 1.5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 12px 0;
    border-color: transparent #D90000 transparent transparent;
    transform: skew(22deg) !important;
}

#blog-wrap .post .article-cat span a,
.single-post .article-cat span a{
    font-size: 16px !important;
    font-style: italic;
    display: inline-block;
    transform: skew(22deg);
    color: #fff;
}

.single-post{
	position:relative;	
}

.single-post .item-media-wrap {
    margin-bottom: 24px;
}

.single-post .post-thumbnail{
	position: relative;
	text-align: left;
	overflow: visible;
	display: inline-block;
}

.single-post .post-thumbnail img{
	width: 100%;
}

.single-post .affix-aside.affix-top{
	width: inherit !important;
    left: auto !important;
}

.single-post .item-content,
.single-post .comments-area{
	padding-left: 70px;
}

.single-post .article-cat{
	display:block;
	position: absolute;
    top: 0;
    left: 4px;
    z-index: 10;
}
.single-post .entry-meta{
    margin: 60px 0 25px;
    line-height: 1;
    clear: both;
}

.single-post .entry-meta .byline span {
    margin: 0 25px;
}

.single-post .entry-meta .byline span:first-child {
    margin-left: 0;
}

.single-post .entry-meta .byline span i {
    margin-right: 6px;
	color:#d90000;
}


.wp-pagenavi{
	margin-top:60px;
	text-align:center;
}

.wp-pagenavi > span{
    border: 1px solid rgba(97, 114, 138, 0.2);
    border-radius: 0 !important;
    color: #61728a;
    display: inline-block;
    margin-right: 5px;
    margin-left: 0;
    padding: 7px;
    min-width: 40px;
    text-align: center;
    line-height: inherit;
    font-weight: 400;
}

.wp-pagenavi > span {
    background-color: #d90000 !important;
    color: #fff;
    cursor: not-allowed;
    border-color: #d90000 !important;
}

.wp-pagenavi > a{
    border: 1px solid rgba(97, 114, 138, 0.2);
    border-radius: 0 !important;
    color: #61728a;
    display: inline-block;
    margin-right: 5px;
    margin-left: 0;
    padding: 7px;
    min-width: 40px;
    text-align: center;
    line-height: inherit;
    font-weight: 400;
}

.wp-pagenavi > a:hover {
    background-color: #d90000;
    color: #fff;
}



/*** 

/* -----------------------------------

  UI Elements

------------------------------------- */

.simple-heading:before{
	content: "";
    width: 10px;
    height: 26px;
    margin-right: 12px;
    margin-left: -20px;
    /* margin-bottom: 10px; */
    display: inline-block;
    vertical-align: middle;
    background-color: #d90000;
    /*transform: rotate(33deg);*/
    position: relative;
    top: -1px;
}

  /*----------- Buttons --------------*/

.button-container{
	display:block;
}

.btn{
    font-size: 16px;
    letter-spacing: 0;
    border-width: 2px;
		border-style:solid;
    text-transform: none;
    padding: 7px 39px;
    border-radius: 50px;
		display:inline-block;
  }

.btn-small{
	padding: 7px 16px;
}

.btn-style-1{
	border-color: #fff000;
	background-color:#fff000;
}

.btn-style-1:hover{
	background-color: transparent;
}

.dark-bg .btn-style-1{
	color:#030f1c;	
}

.dark-bg .btn-style-1:hover{
	color: #fff!important;
}

.btn-style-2{
	border-color: #fff000;
}

.dark-bg .btn-style-2{
	color: #fff;
}

.btn-style-2:hover{
	color: #030f1c!important;
    background-color: #fff000;
}

.btn-style-3{
	color: #030f1c!important;
  border-color: #aaa9ad;
	background-color: #aaa9ad;
}

.btn-style-3:hover{
	color:#fff!important;
	background-color:transparent;
}

.btn-style-4{
	color:#fff!important;
  border-color: #d90000;
	background-color:#d90000;
	padding:7px 39px 7px 20px;
}

.btn-style-4:hover{
	border-color: #870000!important;
	background-color: #870000;
}

.btn-style-4:after {
    position: absolute;
    padding-left: 5px;
    content: '\00bb';
    font-size: 32px;
    /* padding-bottom: 2px; */
    transform: translateY(-2px);
}

.btn.white-border{
	border-color:#fff;
}

/* -----------------------------------

  Contact

------------------------------------- */

.contact-info .contact-row{
	display:flex;
	margin-bottom:5px;
}

.contact-row .contact-heading{
	font-weight:bold;
	padding-right:20px;
	min-width: 90px;
}

#post-content #frm_form_1_container{
	padding:20px 5% 20px;
	background-color:#fff;
	box-shadow:0 0 15px 10px #f2f2f2;
	border:1px solid #eee;
	border-radius:5px;
}

.bordered-shadow .vc_column-inner{
	padding:20px 5% 20px;
	background-color:#fff;
	box-shadow:0 0 15px 10px #f2f2f2;
	border:1px solid #eee;
	border-radius:5px;
}

.map-container{
	margin-top:20px;
}


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

  /* FORM */
/*.frm_style_formidable-style.with_frm_style .frm_primary_label{display:none;}*/
.frm_style_formidable-style.with_frm_style div.frm_description{line-height:16px;}
.frm_style_formidable-style.with_frm_style .frm_submit{text-align:center;}

.frm_style_formidable-style.with_frm_style input[type=text],
.frm_style_formidable-style.with_frm_style input[type=email],
.frm_style_formidable-style.with_frm_style input[type=tel],
.frm_style_formidable-style.with_frm_style textarea{
	border-top:0;
	border-left:0;
	border-right:0;
	border-bottom-width:1px;
	background-color:transparent;
}


.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_opt_container{
	display: flex;
  flex-direction: row;
  justify-content: space-between;
	flex-wrap:wrap;
}

.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_opt_container > div{
	min-width:48%;
}

#field_6cki9_label{
	display:block;
}

/* FORM */
#contact-row .frm_style_formidable-style.with_frm_style input[type=text],
#contact-row .frm_style_formidable-style.with_frm_style input[type=password],
#contact-row .frm_style_formidable-style.with_frm_style input[type=email],
#contact-row .frm_style_formidable-style.with_frm_style input[type=number],
#contact-row .frm_style_formidable-style.with_frm_style input[type=url],
#contact-row .frm_style_formidable-style.with_frm_style input[type=tel],
#contact-row .frm_style_formidable-style.with_frm_style input[type=phone],
#contact-row .frm_style_formidable-style.with_frm_style input[type=search],
#contact-row .frm_style_formidable-style.with_frm_style select,
#contact-row .frm_style_formidable-style.with_frm_style textarea,
#contact-row .frm_form_fields_style,
#contact-row .frm_style_formidable-style.with_frm_style .frm_scroll_box .frm_opt_container,
#contact-row .frm_form_fields_active_style,
#contact-row .frm_form_fields_error_style,
#contact-row .frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices,
#contact-row .frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single{
	border-top:0;
	border-right:0;
	border-left:0;
	color:#eee;
	background-color:transparent;
}

#modal-appointment .frm_style_formidable-style.with_frm_style input[type=text],
#modal-appointment .frm_style_formidable-style.with_frm_style input[type=password],
#modal-appointment .frm_style_formidable-style.with_frm_style input[type=email],
#modal-appointment .frm_style_formidable-style.with_frm_style input[type=number],
#modal-appointment .frm_style_formidable-style.with_frm_style input[type=url],
#modal-appointment .frm_style_formidable-style.with_frm_style input[type=tel],
#modal-appointment .frm_style_formidable-style.with_frm_style input[type=phone],
#modal-appointment .frm_style_formidable-style.with_frm_style input[type=search],
#modal-appointment .frm_style_formidable-style.with_frm_style select,
#modal-appointment .frm_style_formidable-style.with_frm_style textarea,
#modal-appointment .frm_form_fields_style,
#modal-appointment .frm_style_formidable-style.with_frm_style .frm_scroll_box .frm_opt_container,
#modal-appointment .frm_form_fields_active_style,
#modal-appointment .frm_form_fields_error_style,
#modal-appointment .frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices,
#modal-appointment .frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single{
  border: 1px solid #ddd;
	color:#323438;
}

#modal-appointment .frm_style_formidable-style.with_frm_style label.frm_primary_label{
	display:none;
}

#modal-appointment .qm-heading{
	font-weight:bold;
	font-size:18px;
	text-align:center;
	background-color:#d90000;
	color:#ffffff;
	padding:10px;
	margin-bottom:20px;
}

#modal-appointment .qm-close-modal{
	padding:28px;
	color:#ffffff;
}

#modal-appointment .frm_submit {
    text-align: center;
}

#sidebar .frm_style_formidable-style.with_frm_style label.frm_primary_label{
	display:none;
}

#sidebar .frm_style_formidable-style.with_frm_style .frm_description{
	color:#eee;	
}

#sidebar .frm_submit {
    text-align: center;
}

.frm_style_formidable-style.with_frm_style .disclaimer-text{
 background-color:#fff;
    color:#eee;
    border:1px solid #eee;
    padding:3px;
    font-size:12px;
    line-height:14px;
    display:none;
}

#sidebar .frm_style_formidable-style.with_frm_style #frm_checkbox_24-0 label{
	color:#eee;	
}


  /*----------- Video --------------*/

.video-list .video-box:not(:last-child){
	margin-bottom:40px;
    padding-bottom:40px;
    border-bottom:1px solid #aaa;
}

.video-list .video-content{
	font-size:18px;
	line-height:26px;
}

.video-list .video-title{
    margin-bottom:30px;
}

.single-video #post-content .lyte-wrapper{
    margin-top:40px!important;
}
.lyte-wrapper{
    border: 3px solid #666;
}

.lyte-wrapper:hover{
    border: 3px solid #ff7d00;
}

.video-box{
    text-align:center;

    margin-bottom:40px;
}

.video-box .video-player{
    margin-left:auto;
    margin-right:auto;
}

.wp-video{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
}

.brand-img{
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.brand-img img{
	max-height: 70px;
	width:auto!important;
	padding:5px;
}

/* -----------------------------------

  Sidebar

------------------------------------- */

.widget{
	display:relative;
}

#sidebar-content .widget > h3,
#sidebar-content .widget .widget-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 27px;
    line-height: 1;
}

.widget_archive li, .widget_categories li, .widget_nav_menu li, .widget_meta li, .widget_pages li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	border-top: 1px solid rgba(97, 114, 138, 0.2);
    border-bottom: 1px solid rgba(97, 114, 138, 0.2);
}

.widget_archive li + li, .widget_categories li + li, .widget_meta li + li, .widget_pages li + li, .widget_nav_menu li + li, .widget_recent_comments li + li, .widget_recent_entries li + li{
	border-top:none;
}

.widget_archive li a, .widget_categories li a, .widget_nav_menu li a, .widget_meta li a, .widget_pages li a {
    color: #61728a;
    flex-grow: 10;
    display: inline-block;
    padding-top: 12px;
    padding-bottom: 12px;
}

.widget_archive li a:hover, .widget_categories li a:hover, .widget_nav_menu li a:hover, .widget_meta li a:hover, .widget_pages li a:hover{
	color: #d90000;
}

.widget_archive li > a:before, .widget_categories li > a:before, .widget_nav_menu li > a:before, .widget_meta li > a:before, .widget_pages li > a:before {
    font-family: 'vep-icons';
    content: '\e80b';
    font-size: 14px;
    color: #ff4e3c;
    position: relative;
    padding-right: 10px;
}

.widget_archive ul ul li, .widget_categories ul ul li, .widget_meta ul ul li, .widget_pages ul ul li, .widget_nav_menu ul ul li, .widget_recent_comments ul ul li, .widget_recent_entries ul ul li{
	padding-left:20px;
}

.widget_archive li.current-cat a, .widget_categories li.current-cat a, .widget_nav_menu li.current-cat a, .widget_meta li.current-cat a, .widget_pages li.current-cat a {
    font-weight: 500;
    color: #030f1c;
}

/* -----------------------------------

 Social

------------------------------------- */

.social-icons{
	list-style-type:none;
}


.social-icons > li{
	display: inline-block;
	margin-left:5px;
	margin-right:5px;
}

.share_buttons{
	position:absolute;
}

.share_buttons > span{
	display:block;
	margin-bottom:10px;
}

.share_buttons > span > a,
.social-icons > li > a{
	display: block;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	text-align: center;
	font-size: 14px;
	line-height:30px;
}

.social-icons > li > a{
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.4);
}

.social-icons > li > a:hover{
	background: #d90000;
	border-color: #d90000;
}

.share_buttons > span > a{
	color:#61728a;
	border: 2px solid rgba(97, 114, 138, 0.4)
}

.share_buttons > span > a.icon-paper-plane:hover{
	color:#fff;
	background:#08c;
	border-color:#08c;
}

.share_buttons > span > a.icon-facebook:hover{
	color:#fff;
	background:#3b5998;
	border-color:#3b5998;
}

.share_buttons > span > a.icon-twitter:hover{
	color:#fff;
	background:#55acee;
	border-color:#55acee;
}


/* -----------------------------------

  Footer

------------------------------------- */

#subfooter #cta-row{
	background: linear-gradient(to top, #B00000 0%, #D90000 69%, #FC2323 100%);
	padding-top:44px;
	padding-bottom:20px;
}

#subfooter .cta-heading,
#subfooter .cta-subtext,
#subfooter .cta-button,
#subfooter #cta-row .frm_forms.with_frm_style .frm_required{
	color:#fff;
}

#subfooter .cta-heading{
	font-size: 40px;
	line-height: 44px;
	font-weight:bold;
}

#subfooter #cta-row .frm_fields_container .frm_form_field,
#subfooter #cta-row .frm_fields_container > *{
	grid-column: span 3 / span 12;
}

#subfooter #cta-row .frm_forms.with_frm_style{
	padding-top:10px;
	padding-bottom:10px;
}

#subfooter #cta-row .frm_forms.with_frm_style .frm_primary_label{
	font-weight:normal;
	color:#fff;
}
#subfooter #cta-row .frm_forms.with_frm_style select{
    padding-top: 2px;
    background-color: transparent;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    color: #fff;
}

#subfooter #cta-row .frm_style_formidable-style.with_frm_style .form-field input{
	color:#fff;
}

#subfooter #cta-row .frm_style_formidable-style.with_frm_style .form-field input:not([type=file]):focus{
	background-color:transparent;	
}

#subfooter #cta-row .frm_forms.with_frm_style select option { 
    /* Whatever color  you want */
    background-color: #d90000;
}

#subfooter #cta-row #frm_field_22_container{
	display:none;
}

/*#subfooter #contact-row{
	background-repeat:no-repeat;
	background-size:cover;
}

#subfooter #contact-row .sub-left{
	height:640px;
	background-color:rgba(21,24,33,0.90);
	padding:60px 10%;
}*/

#subfooter #contact-row .sub-right{
	height: 680px;
  background-color: rgba(255,255,255,0.8);
	padding:30px 10%;
}

#subfooter #contact-row .sub-left{
	height:680px;
	background-size:cover;
	background-repeat:no-repeat;
	background-position:top center;
}

#subfooter .frm_style_formidable-style.with_frm_style .vertical_radio .frm_checkbox{
	display:inline-block;
	margin-right:10px;
}

#subfooter .frm_style_formidable-style.with_frm_style .frm_submit{
	text-align:center;
}

#subfooter #footer-map{
	min-height:480px;
}

/*#subfooter #map-row .sub-right{
	height:680px;
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center center;
}

#subfooter #map-row .sub-left{
	height:680px;
}*/

#subfooter #map-row .map-content-row{
	min-height:32px;
}

#subfooter #map-row .map-content-row .map-icon{
	margin-right:8px;
	display:inline-block;
}

#subfooter #map-row .map-content-row .map-icon img{
	max-width:24px;
	height:auto;
}

#subfooter #map-row .map-content-row .map-text{
	font-size:15px;
	font-weight:500;
	line-height:24px;
	display:inline-block;
}

#footer{
	position:relative;
	z-index:1;
	/*background-color:#06182d;*/
	background-color:#222;
}

.footer-main{
	padding-top:60px;
	padding-bottom:30px;
}

.footer-last{
	padding-top:20px;
	padding-bottom:20px;
}

#footer-social{
	position: relative;
	text-align:center;
}

#footer-social > li{
	position: relative;
    text-align: center;
}

#footer-social > li:first-child:before{
	height: 2px;
    transform: translateY(-100%);
    width: 1250px;
    top: 50%;
    position: absolute;
    display: inline-block;
    content: "";
    background-color: rgba(255, 255, 255, 0.2);
	right: calc(100% + 15px);
}

#footer-social > li:last-child:after{
	height: 2px;
    transform: translateY(-100%);
    width: 1250px;
    top: 50%;
    position: absolute;
    display: inline-block;
    content: "";
    background-color: rgba(255, 255, 255, 0.2);
	left: calc(100% + 15px);
}

.footer-contact-row{
	margin-top:10px;
}

.copyright-text{
	text-align:center;
	font-size:14px;
}

/* -----------------------------------

  Extras

------------------------------------- */


.no-gutter {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.no-gutter > .row {
  margin-right: 0;
  margin-left: 0;
}

.no-gutter > .row > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.no-margin,
.wpb_content_element .no-margin{
	margin-bottom:0!important;
}

.responsive-map{
	overflow:hidden;
	padding-bottom:56.25%;
	position:relative;
	height:0;
	margin-top:40px;
}
.responsive-map iframe{
	left:0;
	top:0;
	height:100%;
	width:100%;
	position:absolute;
}

#mapSelector{
	cursor:pointer;
	text-decoration:underline;
}

.sitemap-section > .pagenav{
	list-style:none;
}

.lg-padding-top{
	padding-top:100px;
}

.md-padding-top{
	padding-top:60px;
}

.sm-padding-top{
	padding-top:30px;
}

.lg-padding-btm{
	padding-bottom:100px;
}

.md-padding-btm{
	padding-bottom:60px;
}

.sm-padding-btm{
	padding-bottom:30px;
}

.recaptcha-notice{
	margin-top:10px;
	font-size:0.65em;
}

.grecaptcha-badge { 
    visibility: hidden;
}

/*** VC ***/

/*.vc_row.vc_row-flex.vc_row-fluid{
	max-width:1920px!important;
	margin: auto;
}*/

.iframe-container iframe {border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%;}
.iframe-container {overflow: hidden; padding-top: 425px; padding-bottom: 50px; position: relative;  }


/*==================================RESPONSIVE LAYOUTS===============================================*/

@media only screen and (min-width: 1280px){
	.left-box {
		position: relative;
		right: 77px !important;
	}
	.right-box {
		position: relative;
		left: 77px !important;
	}
}


@media (min-width: 1201px){
	.row.narrow,
	.vc_row.narrow{
		max-width:1200px;
		margin-left:auto;
		margin-right:auto;
	}
	#blog-wrap .post .share_buttons {
		margin-top: 69px;
		left: 70px;
	}
	#blog-wrap .post .item-content {
		padding: 63px 40px 60px 128px;
	}
	#sidebar-content{
		padding-left:40px;
	}
}

@media only screen and (min-width: 992px){
	.header-right{
		display:none;
	}
	#header-contact span.c-detail{
		display:block;
	}
	#mobile-menu-icon{
		display:none;
	}
	
	.main-navigation > ul > li > a{
		line-height:16px;
	}
	
	.main-navigation > ul > li:before {
		content: '';
		width: 1px;
		position: absolute;
		left: -2px;
		top: 0;
		bottom: 0;
		background-color: #333;
	}

	.main-navigation > ul > li:last-child:after{
		content: '';
		width: 1px;
		position: absolute;
		right: -2px;
		top: 0;
		bottom: 0;
		background-color: #333;
	}
	
		

	.main-navigation > ul > li:hover > .sub-menu{
		-webkit-transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
		-o-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
		visibility: visible;
	}
	
  .sub-menu{
    position: absolute;
    left: -2px;
    top: 100%;
    min-width: 240px;
    border-top: 3px solid #d90000;
    background: #fff;
    padding: 14px 0;
    opacity: 0;
    visibility: hidden;
    z-index: 999;

    -webkit-transition: -webkit-transform .3s ease, opacity .3s ease, visibility .3s ease;
    transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
    -webkit-transform: translate3d(-15px, 15px, 0);
    -moz-transform: translate3d(-15px, 15px, 0);
    -o-transform: translate3d(-15px, 15px, 0);
    -ms-transform: translate3d(-15px, 15px, 0);
    transform: translate3d(-15px, 15px, 0);

    background-color: #0c0c0c;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
  }

  .sub-menu:before{
    content: '';
    bottom: 100%;
    width: 100%;
    left: 0;
    height: 4px;
    display: block;
    position: absolute;
    background: transparent;
  }
	
	#home-cta .cta-col{
		margin-top:-50px;
	}

	.left-box {
		right: 24px;
	}
	.right-box {
		left: 46px;
	}
	
}

@media only screen and (min-width: 992px) and (max-width:1199px){
	#header-contact > span {
    	font-size: 15px;
	}
	.main-navigation > ul > li > a {
    	margin: 0 15px;
	}
}

@media only screen and (max-width: 1366px){
	#subfooter #contact-row .sub-right{
		padding:30px 5%;
	}
}

@media only screen and (max-width: 1280px){
	#header.sticky-header.clone-fixed{
	    display: none;!important;
	}
}

@media only screen and (max-width: 1199px){

}

@media only screen and (max-width: 991px){
	
	#header-bottom{
		/*background-color:rgba(6,24,45,1);*/
		background-color:rgba(12,12,12,0.95);
	}
	
	.header-flex{
		flex-wrap:wrap;
	}
	
	.header-left{
		order:1;
	}
	
	.header-center{
		/*width:100%;*/
		order:2;
		justify-content:space-between;
		/*margin-bottom:15px;*/
	}
	
	.header-right{
		/*order:2;*/
		order:3;
		margin-right:20px;
	}
	
	#header-contact > span{
		margin-left:10px;
	}
	
	#header-contact .c-detail{
		display:none;
	}
	
	#mobile-menu-icon.is-active i:before {
		content: '\f2d3';
	}
	
	#vep-menu{
		width:100%;
		max-height: calc(100vh - 230px);
	}
	
	.main-navigation{
		display: none;
	}
	
	.main-navigation ul li a{
		padding-left:10px;
		color:#fff;
	}
	
    .main-navigation ul > li{
        display: block;
        text-align: left;
		padding:0;
	}
    .main-navigation > ul > li{
		display:block;
		margin:0;
    }
    .main-navigation > ul > li > a{
        line-height:20px;
		margin-left:0;
		margin-right:0;
		padding-top:12px;
		padding-bottom:12px;
		padding-left:10px;
    }
    .main-navigation > ul > li > a > .holder{
        position:absolute;
        right:10px;
        padding-right: 10px;
    }
	.main-navigation ul li > .sub-menu{
		display:none;
        text-indent:10px;
	}
	
	.main-navigation > ul > li.current-menu-item > a,
	.main-navigation > ul > li:hover > a {
		background-color: #d90000;
		color:#fff;
	}
	
	#home-cta .cta-col{
		width:49%;
		margin-bottom:20px;
	}
}


@media (max-width:768px){
	#home-cta .cta-col{
		width:100%;
		margin-bottom:15px;
	}
	#subfooter #contact-row .sub-left{
		height:320px;
	}
	#subfooter #contact-row .sub-right{
		height:auto;
		padding:20px 5%;
	}
}


@media only screen and (max-width:599px){
	#header-contact > span{
		margin-right:20px;
	}
	#header-contact span.large.bold{
		display:none;
	}
	#header-contact > span:last-child{
		/*margin-right:5px;*/
		display:none;
	}
	#header-button .btn-small{
		padding:4px 10px;
	}
	.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_opt_container > div{
		min-width:100%;
	}
}

@media only screen and (max-width:480px){
	#post-header.banner .post-title{
		font-size:32px;
		line-height:36px;
	}
	#breadcrumbs{
		font-size:16px;
	}
}
