/******************************************************************

Theme Name: Eight Wire
Theme URI: https://eightwire.uk
Description: Web Design & Development
Author: Eight Wire
Author URI: https://eightwire.uk
Version: 200414
Tags: one-column, two-columns, right-sidebar, custom-header, custom-menu, featured-images
Text Domain: eightwire 

******************************************************************/
/**********
BREAKPOINTS
**********/
/* xs | mobile default 1 col | 320px-479px */

/* s | landscape mobile & portrait tablet | 480px-959px 
@media screen and (min-width:480px)  { } */

/* m | landscape tablet & laptop | 960px-1439px
@media screen and (min-width:960px)  { } */

/* l | hd desktop | 1440px-1920px 
@media screen and (min-width:1440px) { } */

/* xl | fhd desktop | 1921px-2399px 
@media screen and (min-width:1921px) { } */

/* xxl | 2k desktop | 2400px-3359
@media screen and (min-width:2400px) { } */

/* xxxl | 4k desktop | 3360px+ 
@media screen and (min-width:3360px) { } */

/***
VARS
***/
:root { 
    --dark: #020A0A;
	--grey: #848487;
    --lite: #848487;
	--blue: #1F71B6;
	--dblue:#233672;
	--greyheader:#020A0AB3;

    --primary: var(--dblue,#233672);
    --secondary: var(--lite,#F7F7F7);
    --text: var(--grey,#848487);
    
    --font-sys: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Oxygen-Sans", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    --fontsize-body: 15;
    --lineheight: 1.8;
    
    --width-max:     1340px;
    --width-content: 1160px;    
    --width-text:     960px;
    --headerheight: 148.8; /* set using JS if height varies responsively */
    --fullheight: 0;
    --bannerheight: 0;
    --bullet: "\2219";
    
    --vh:0;
    --uivh: calc(var(--vh,1vh) * 100); /* --vh calculated by script */
    --adminbarheight: 0;
    
    --transition-attr:all;
    --transition-time:0.2s;
    --transition-type:ease;
}
/***
BASE
***/
html, body {
    margin: 0;
    padding:0;
    font-family: "Lato", var(--font-sys);
	max-width: 100vw;
}
html {
    height: var(--uivh,100vh);
    font-size: 62.5%;
    -ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
*,
*::after,
*::before {
    -webkit-box-sizing: inherit;
            box-sizing: inherit;
}
body {
	font-weight: 400;
	font-size: calc(var(--fontsize-body) * 0.1rem);
	line-height: var(--lineheight, 1.5);
	color: var(--text);
	-webkit-font-smoothing: antialiased;
    background-color: #fff;
	overflow-y: scroll;
	overflow-x: hidden;
    min-height:100%;
	min-width: 160px;
}
body.admin-bar {
    --adminbarheight: 32;
}
@media screen and (max-width: 782px) {
    body.admin-bar {
        --adminbarheight: 46;
    }
}
@media screen and (max-width: 959px) {
    :root {
        --headerheight: 120; /* may need JS to set if height varies responsively */
    }
}
@media only screen and (max-device-width : 1024px) and (orientation : portrait) {
    .fullheight {
        height: 100vh; /* fallback */
    }
    .fullheight {
        --fullheight:calc(var(--uivh) - var(--adminbarheight) * 1px);
        height: var(--fullheight,100vh);
    }
}
/*@supports ( backdrop-filter: blur(3px) ) {
    #wpadminbar {
        -webkit-backdrop-filter: blur(3px) contrast(.8) hue-rotate(45deg);
        backdrop-filter: blur(3px) contrast(.8) hue-rotate(45deg);
        background: rgba(0,0,0,0.7);
    }
}*/

/****
RESET
****/
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
audio, canvas, progress, video {
	display: inline-block;
	vertical-align: baseline;
}
audio:not([controls]) {
	display: none;
	height: 0;
}
[hidden], template {
	display: none;
}
abbr[title] {
	border-bottom: 1px dotted;
}
b, strong {
	font-weight: 700;
}
dfn, i. em {
	font-style: italic;
}
mark {
	background: #ff0;
	color: #000;
}
small {
	font-size: 80%;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
figure {
	margin: 0;
	display: inline-block;
}
figcaption {
	margin: 0.5em 0;
	padding: 0.5em 0;
	border-top: 1px solid rgba(127,127,127,0.5);
	border-bottom: 1px solid rgba(127,127,127,0.5);
}
svg:not(:root) {
	overflow: hidden;
}
code, kbd, pre, samp {
	font-family: monospace;
	font-size: 1em;
}
pre {
	overflow: auto;
}
code, pre {
	text-align: left;
	padding: 5px 10px;
	background: #f5f5f5;
}
blockquote {
	padding: 0 0 0 1em;
	margin: 0 0 0 .1em;
	-webkit-box-shadow: inset 5px 0 rgba(17, 17, 17, 0.3);
	        box-shadow: inset 5px 0 rgba(17, 17, 17, 0.3);
}
button, input, optgroup, select, textarea {
	color: inherit;
	font: inherit;
	margin: 0;
    outline: none;
}
button {
	overflow: visible;
}
button, select {
	text-transform: none;
}
button, 
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
    outline: none;
}
button[disabled],
input[disabled] {
	cursor: default
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
input {
	line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
fieldset {
	border: 0;
	padding: 0;
}
legend {
	border: 0;
	padding: 0;
}
label {
	cursor: pointer;
}
textarea {
	overflow: auto;
}
optgroup {
	font-weight: bold;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	text-align: left;
}
td, th {
	padding: 5px 2.4em 5px 10px;
}
th {
	text-align: left;
	font-weight: 900;
	color: #fff;
	background-color: var(--primary);
}
@media screen and (max-width:480px) {
    td, th {
        /*display: block;*/
        width: auto;
        padding:5px 1px;
    }
    th {
        word-break: break-all;
        word-wrap: break-word;
    }
    table {
        table-layout: fixed;
        width: auto;
    }
    
}
.success th {
	background-color: var(--success);
}
.warning th {
	background-color: var(--warning);
}
.error th {
	background-color: var(--error);
}
.dull th {
	background-color: var(--dull);
}

tr:nth-child(even) {
	background: rgba(0, 0, 0, 0.05);
}
ul {
    margin: 0;
	padding: 0;
}
article ul li {
	margin: 0 0 0.5em 1.5em;
	position: relative;
	display: block;
}
ol {
	margin: 0;
	padding: 0;
}



.flex {
    display: -webkit-box;
	display: -moz-box;
	display: box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	width: 100%;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.flex>* {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	padding: 0;
}

.flex.margin {
	margin-left: -10px;
	margin-right: -10px;
	width: calc(100% + 20px);
}
.flex.margin>*{
	padding: 5px;
}

.flex.nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex.grow>* {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1
}

.flexcol {
	-webkit-box-orient: vertical;
	box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.flexrow {
	-webkit-box-orient: horizontal;
	box-orient: horizontal;
	-ms-flex-direction: row;
	flex-direction: row;
}
.flexdirection {
	-webkit-box-direction: normal;
	box-direction: normal;
}
.flexdirectionreverse {
	-webkit-box-direction: reverse;
	box-direction: reverse;
}
.flexstretch {
	-webkit-box-pack: justify;
	box-pack: justify;
	-ms-flex-pack: stretch;
	justify-content: space-between;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-box-align: stretch;
	box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.flexstart {
	-ms-flex-line-pack: flex-start;
	align-content: flex-start;
	-webkit-box-align: flex-start;
	box-align: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
}
.flexwrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flexfirst {
	-webkit-box-ordinal-group: 0;
	box-ordinal-group:-1;
	-ms-flex-order: -1;
	order: -1;
}
.flexorder {
	-webkit-box-ordinal-group: 1;
	box-ordinal-group:0;
	-ms-flex-order: -1;
	order: -1;
}
.flexistretch {
	-webkit-align-self: stretch;
	-ms-flex-item-align: stretch;
	-ms-grid-row-align: stretch;
	    align-self: stretch;
}
.flexaround {
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
 -ms-flex-pack: distribute;
     justify-content: space-around;
}
.flexspaceb {
	-webkit-box-pack: space-between;
	box-pack: space-between;
	-ms-flex-pack: space-between;
	-moz-flex-pack: space-between;
	justify-content: space-between;
}
.center,
.flexcenter {
	-moz-justify-content: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.flexend {
	-moz-justify-content: flex-end;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.flexvcenter,
.vcenter {
	-webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/******
STYLING
******/
.wrapper, 
.content ,
.text {
	max-width: var(--width-max);
	margin: 0 auto;
    padding: 0 20px;
}
.content {
	max-width: var(--width-content);
}
.text {
	max-width: var(--width-text);
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Monserrat", var(--font-sys);
    text-rendering: optimizelegibility;
    font-weight: inherit;
    line-height: inherit;
    margin: 0 0 0.5em 0;
    font-weight: 600;
    color: var(--greyheader);
    font-size: inherit;
    text-transform: uppercase;
}
h2 {
	font-size: 3.6rem;
	letter-spacing: 0.05em;
}
h3 {
	font-size: 20px;
}
.primary {
    color: var(--primary);
}
.secondary {
    color: var(--secondary);
}
p {
	font-weight: inherit;
	text-rendering: optimizeSpeed;
    font-size: inherit;
	line-height: inherit;
	margin: 0 0 1em 0;
}
a {
	text-decoration: none;
	color: inherit;
    display: inline-block;
}
a:active, a:hover {
	outline: 0;
}
article p a {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: var(--primary);
}
article p a:hover {
    color: var(--secondary);
    text-decoration-color: var(--secondary);
}

/*****
HEADER 
*****/
header.header {
	text-align:center;
    max-width: var(--width-max);
    margin:0 auto;
    position: relative;
	z-index: 5;
}
.sitelogo {
	display:block;
	margin: 0 auto;
    z-index: 500;
	text-align:center;
    width:310px;
	padding: 25px 36px 25px 36px;
	background: #fff;
}
.sitelogo img ,
.sitelogo svg {
    width:100%;
	max-width: 238px;
    height: auto;
	display:block;
}
.sitelogo svg path {
	fill: #var(--primary);
}
.sitelogo:hover {
	background: var(--secondary);
}
@media screen and (min-width:960px) {
    .sitelogo {
        margin: 0 auto 0 50px;
    }
}

/*****
MAIN 
*****/
.btn {
	display: inline-block;
	border:1px solid var(--primary);
	color: var(--primary);
	padding: 0.5em 2em;
}
.btn:hover {
	background-color: var(--primary);
	color: #fff;
}

/*****
TEXT 
*****/
.layout-text {
	padding: 40px 0;
}

/*****
IMAGES TEXT
*****/
.layout-imagestext {
	margin: 40px 0 80px 0;
}
.layout-imagestext .flex > * {
	flex-basis: 50%;
}
.layout-imagestext-images {
	position: relative;
	margin-bottom: 100px;
	order: 2;
}
.layout-imagestext-image1 {
	width: 90%;
	max-width: 477px;
	aspect-ratio: 1;
	-o-object-fit: cover;
    object-fit: cover;
}
.layout-imagestext-image2 {
    width: 70%;
	aspect-ratio: 1;
    -o-object-fit: cover;
    object-fit: cover;
	position: absolute;
	z-index: 2;
	top: 45%;
	right: 0;
	max-width: 316px;
}
.layout-imagestext-texts {
	padding: 20px 20px 20px 60px;
}
.layout-imagestext-title {
	font-size: 3.6rem;
	font-weight: 600;
	font-family: "Montserrat", var(--font-sys);
	letter-spacing: 0.05em;
	margin-bottom: 1em;
}
.layout-imagestext-subtitle {
	font-size: 2rem;
	font-weight: 600;
	font-family: "Montserrat", var(--font-sys);
	letter-spacing: 0.075em;
	margin-bottom: 1em;
	position: relative;
}
.layout-imagestext-subtitle::before {
    content: "";
    display: block;
    width: 2px;
    height: 100px;
    background-color: var(--greyheader);
    position: absolute;
    margin: 1.5em auto 0 -38px;
}
.layout-imagestext-subtitle::after {
    content: "";
    display: block;
    height: 2px;
    background-color: var(--greyheader);
    position: absolute;
    width: 55%;
    margin: 0.5em auto 0 -60px;
    z-index: -1;
}
@media screen and (min-width:960px) {
	.layout-imagestext-images {
		margin-bottom: 160px;
		order: unset;
	}
	.layout-imagestext-texts {
		padding: 0 20px 100px 80px;
	}
	.layout-imagestext-title {
		margin-bottom: 4em;
	}
	.layout-imagestext-image2 {

	}
}

/*****
TEXT IMAGE 
*****/
.layout-textimage {
	background: var(--greyheader);
	color: #fff;
}
.layout-textimage .flex > *{
	flex-basis: 50%;
}
.layout-textimage-content {
	padding: 40px 40px 40px 0;
}
.layout-textimage-title {
	font-size: 3.6rem;
	font-weight: 600;
	font-family: "Montserrat", var(--font-sys);
	letter-spacing: 0.05em;
	color: inherit;
}
.layout-textimage-text {
	font-size: 1.5rem;
}
.layout-textimage-image {
	padding: 20px 0;
}
.layout-textimage-image img {
	width:100%;
	max-width: 527px;
	aspect-ratio: 527/477;
	-o-object-fit: cover;
    object-fit: cover;
}
@media screen and (min-width:960px) {
	.layout-textimage {
		margin-top:100px;
	}
    .layout-textimage-image {
		position: relative;
        top: -100px;
		padding: 0;
    }
}

/*****
PANEL 
*****/
.layout-panel {
	background: var(--dblue) url() 50% 50% no-repeat scroll;
	background-size: cover;
	padding: 40px 20px;
	color: #fff;
	min-height: 595px;
	position: relative;
}
.layout-panel::before {
    content: "";
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(2, 10, 10, 0.7);
}
.layout-panel > div {
	position: relative;
	z-index: 20;
}
.layout-panel-title {
	font-size: 2.7rem;
	color: #fff;
	font-weight: 500;
	font-family: "Montserrat", var(--font-sys);
	letter-spacing: 0.075em;
	line-height: 1.5;
	position: relative;
	margin-bottom: 1.5em;
}
.layout-panel-title::before {
    content: "";
    display: block;
    width: 2px;
    height: 76px;
    background-color: #fff;
    position: absolute;
	margin: 1.5em auto 0 -38px;
	bottom: -38px;
}
.layout-panel-title::after {
    content: "";
    display: block;
    height: 2px;
    background-color: #fff;
    position: absolute;
    width: 125%;
    margin: 0.5em auto 0 -100%;
    z-index: 1;
}
.layout-panel-text {
	font-size: 1.7rem;
	color: #fff;
	font-weight: 400;
	font-family: "Lato", var(--font-sys);
}
.layout-panel-link.btn {
	border:1px solid #fff;
	color: #fff;
}
.layout-panel-link.btn:hover {
	background-color: #fff;
	color: var(--primary);
}

/*****
SOCIALS 
*****/
.socials {
    padding: 40px 20px;
	text-align: center;
}
.socials ul {
	display: inline-block;
	list-style: none;
	margin: 0;
}
.socials li {
	display: inline-block;
    margin: 0 10px;
}
.socials svg {
	display: inline-block;
	width: 54px;
	height: 54px;
}
.socials svg path {
    fill: var(--dblue);
}
.socials a:hover svg path {
    fill: var(--blue);
}

/*****
FOOTER 
*****/
footer.footer {
    background-color: var(--greyheader);
    color: #fff;
    padding: 54px 20px;
    font-size: 1.6rem;
    text-align: center;
}
footer.footer h6 {
    color: #fff;
}
footer.footer nav {
	display: inline-block;
}
footer.footer ul {
	display: inline-block;
	list-style: none;
	margin: 0;
}
footer.footer li ,
footer.footer p {
	display: inline-block;
    margin: 0;
    line-height: 1.5;
}
footer.footer .footer-menu li:not(:last-child)::after {
    content: "·";
	margin: 0 0 0 0.25em;
}
footer.footer a:hover {
    text-decoration: underline;
}



/******
UTILITY
******/
@media screen and (max-width:479px) {
    .equal {
        height: auto !important;
    }
}
.transition-all, .ta  {
	-webkit-transition: var(--transition-attr,all) var(--transition-time,0.2s) var(--transition-type,ease);
	-moz-transition: var(--transition-attr,all) var(--transition-time,0.2s) var(--transition-type,ease);
	-o-transition: var(--transition-attr,all) var(--transition-time,0.2s) var(--transition-type,ease);
	-ms-transition: var(--transition-attr,all) var(--transition-time,0.2s) var(--transition-type,ease);
	transition: var(--transition-attr,all) var(--transition-time,0.2s) var(--transition-type,ease);
}
/* ALIGN */
.alignleft {
	float: left;
}
.aligncenter {
    display: inline-block;
    position: relative;
    left: 50%;
    -webkit-transform: translate(-50%, 0px);
        -ms-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
}
.alignright {
	float: right;
}
.none {
	display: none
}
/*
article .alignwide {
	margin-left: auto;
	margin-right: auto;
	max-width: 75vw;
	width: 100%;
}
article .alignfull {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
	width: 100vw;
}
*/
.textcenter {
    text-align: center;
}
#gototop {
    display:block; /* or script can show on scroll */
    font-size: 32px;
    background: #fff;
    border: 1px solid #000;
    opacity:0.5;
    color:#000;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    width:40px;
    height:40px;
    position:fixed;
    left:40px;
    bottom:40px;
    z-index: 999;
}
#gototop:hover {
    opacity: 1;
}
iframe {
	max-width: 100%;
}
/* RATIO EMBED */
/*https://codepen.io/cvn/pen/WbXEoX/ */
.video-bg {
  background: white;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
.video-bg .video-fg,
.video-bg iframe,
.video-bg video,
.video-bg .youtubevideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*
  Full page video background
  Simulate object-fit: cover
  Based on http://fvsch.com/code/video-background/
*/
/*
@media (min-aspect-ratio: 16/9) {
  .video-bg.cover .video-fg {
    height: 300%;
    top: -100%;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video-bg.cover .video-fg {
    width: 300%;
    left: -100%;
  }
}
*/
@media screen and (max-width: 1082px) {
  .video-bg.cover .video-fg {
    width: 300%;
    left: -100%;
  }
}
@media screen and (min-width:1083px) {
  .video-bg.cover .video-fg {
    height: 300%;
    top: -100%;
  }
}
@supports (-o-object-fit: cover) {
  .video-bg.cover .video-fg.supports-cover {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .video-bg.cover iframe,
  .video-bg.cover video,
  .video-bg.cover .youtubevideo {
    -o-object-fit: cover;
  }
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .video-bg.cover .video-fg.supports-cover {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  html:not(.safari) .video-bg.cover iframe,
  html:not(.safari) .video-bg.cover video,
  html:not(.safari) .video-bg.cover .youtubevideo {
       -o-object-fit: cover;
          object-fit: cover;
  }
}
/*
  Vertical centering for 16/9 youtube iframes and video elements
  Simulate object-fit: contain for entire element, not just contents of element
*/
.video-bg.contain {
  font-size: 0;
}
.video-bg.contain * {
  font-size: 16px;
}
.video-bg.contain::before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.video-bg.contain .video-fg {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 */
  pointer-events: none;
}
.video-bg.contain iframe,
.video-bg.contain video {
  pointer-events: auto;
}
@media (min-aspect-ratio: 16/9) {
  .video-bg.contain .video-fg {
    height: 100%;
    padding-bottom: 0;
    max-width: 53.33333333vh;
    left: 50%;
    margin-left: -26.66666667vh;
  }
}
/* 16x9 Aspect Ratio */
.ratio {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
}
/* 4x3 Aspect Ratio */
.ratio-4x3 {
  padding-bottom: 75%;
}
.ratio iframe {
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  border:none;
}
/* CLEARFIX */
.cf {
	zoom: 1;
}
.cf::before, .cf::after {
	content: ' ';
	display: table;
}
.cf::after {
	clear: both;
}
/* MAP */
.acf-map {
    width: 100%;
    height: 400px;
}
.acf-map img {
   max-width: inherit !important;
}
/* GREY */
.greyscale {
    -webkit-filter: saturate(0%);
    filter: saturate(0%);
}

/* GUTENBERG BLOCKS */


/****************
HERO 
****************/
.lSSlideOuter  {
	max-width:1920px;
	margin: 0 auto;
    position: relative;
	z-index: 3;
}
@media screen and (min-width:960px) {
    .lSSlideOuter {
		margin-top: -89px;
    }
}
.lightSlider > div {
    height:100%;
    background-size: cover;
    margin: 0;
}
.lightslider {
    padding-bottom: 30.709% !important; /* (1920x585) */
    min-height:220px;
}
.home .lslide::before  {
    content: "";
    position: absolute;
    z-index: 10;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: rgba(2, 10, 10, 0.7);
}
.lightslider.hero > div {
    /*--bannerheight:calc(calc(calc(var(--uivh) - var(--headerheight)) - var(--adminbarheight)) * 1px);*/
    --bannerheight:calc(calc(var(--uivh) - var(--adminbarheight)) * 1px);
    min-height:300px;
    height:var(--bannerheight);
    background-size: cover;
    margin: 0;
}
.lightslider .caption {
    position: relative;
    z-index: 12;
    color: #fff;
	font-weight: 500;
    font-family: "Montserrat", var(--font-sys);
    font-size: 17px;
	padding: 0 80px;
}
.lightslider .caption-heading {
    font-family: "Montserrat", var(--font-sys);
	font-weight: 500;
    font-size: calc(16px + 1.6vmin);
	color: #fff;
	line-height: 1.5;
}
.lightslider .caption-heading:empty {
    display: none;
}
@media screen and (max-width:767px) {
   .lightslider .caption-heading {
       xdisplay: none;
    }
}
.lightslider .caption-heading::before {
    content: "";
    display: block;
    width: 2px;
    height: 75px;
    background-color: #fff;
    position: absolute;
	left: 40px;
    bottom: -20px;
}
.lightslider .caption-heading::after {
    content: "";
    display: block;
    height: 2px;
    background-color: #fff;
    position: absolute;
    width: 100%;
    margin: 0.5em auto 0 -38vw;
}
.lSSlideOuter .lSPager.lSpg{
    position: absolute;
    z-index: 10;
    right:50px;
    bottom: 20px;
}
.lSSlideOuter .lSPager.lSpg li:only-child{
    display: none;
}
.lSSlideOuter .lSPager.lSpg>li a {
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 0;
}
.lSSlideOuter .lSPager.lSpg>li.active a {
    background-color: #fff !important;
    border: 1px solid #fff !important;
}
.lSSlideOuter .lSPager.lSpg>li:hover a {
    border: 1px solid var(--primary);
    background-color: transparent;
}

/*********
PAGINATION 
*********/
.custom-pagination {
	clear:both;
	margin: 30px auto 60px auto;
	text-align:center;
    font-size: 1.4rem;
}
.custom-pagination span,
.custom-pagination a {
  display: inline-block;
  padding: 2px 10px;
  text-decoration:none !important;
}
.custom-pagination a {
	color: #CCCCCC;
	border: 1px solid #CCCCCC;
	border-radius:0;
	display:inline-block;
	padding:5px 20px;
	background:none;
	position:relative;
	text-transform:uppercase;
}
.custom-pagination a:hover {
  background-color: var(--secondary);
  color: #fff;
}
.custom-pagination span.page-num {
  margin-right: 10px;
  padding: 0;
}
.custom-pagination span.dots {
  padding: 0;
  color: #CCCCCC;
}
.custom-pagination span.current {
  background-color: var(--primary);
  color: #fff;
  padding:6px 21px;
}



/***
CF7 
***/
/*
div.wpcf7 input,
div.wpcf7 textarea {
	width:100%;
	border:1px solid #666666;
	color:#666666;
	padding:5px 10px;
}
div.wpcf7 textarea {
	max-height:8em;
	overflow:auto;
}
div.wpcf7 input::-webkit-input-placeholder, div.wpcf7 textarea::-webkit-input-placeholder {
	color:#999999;
}
div.wpcf7 input::-moz-placeholder, div.wpcf7 textarea::-moz-placeholder {
	color:#999999;
}
div.wpcf7 input:-ms-input-placeholder, div.wpcf7 textarea:-ms-input-placeholder {
	color:#999999;
}
div.wpcf7 input::-ms-input-placeholder, div.wpcf7 textarea::-ms-input-placeholder {
	color:#999999;
}
div.wpcf7 input::placeholder,
div.wpcf7 textarea::placeholder {
	color:#999999;
}
div.wpcf7 input[type="submit"]{
	width:auto;
	color:#CCCCCC;
	padding:10px 30px;
	font-weight:400;
	background:none;
	font-size:16px;
	border: 1px solid #CCCCCC;
}
div.wpcf7 input[type="submit"]:hover{
	width:auto;
	color:#fff;
	background: #CCCCCC;
}
*/
/************
THEME CHECKER
************/
.sticky {}
.gallery-caption {}
.bypostauthor {}

/* *********
PRINT STYLES
***********/

@media print {
	* {
		background: transparent !important;
		color: black !important;
		text-shadow: none !important;
		-webkit-filter: none !important;
		        filter: none !important;
		-ms-filter: none !important;
	}
	a, a:link, a:visited {
		color: #444 !important;
		text-decoration: underline;
	}
	a::after, a:visited::after {
		content: " (" attr(href) ")";
	}
	a abbr[title]::after, a:visited abbr[title]::after {
		content: " (" attr(title) ")";
	}
	.ir a::after,  a[href^="javascript:"]::after,  a[href^="#"]::after {
		content: "";
	}
	pre, blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	thead {
		display: table-header-group;
	}
	tr, img {
		page-break-inside: avoid;
	}
	img {
		max-width: 100% !important;
	}
	@page {
		margin: 0.5cm;
	}
	p, h2, h3 {
		orphans: 3;
		widows: 3;
	}
	h2,  h3 {
		page-break-after: avoid;
	}
	.searchform,  nav {
		display: none;
	}
}