/* Theme Name: Spider Oak */ 
@font-face {
    font-family: 'Avenir Next Light';
    src: url('./fonts/avenir-next/AvenirNext-UltraLight.woff2') format('woff2'),
        url('./fonts/avenir-next/AvenirNext-UltraLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next';
    src: url('./fonts/avenir-next/AvenirNext-Regular.woff2') format('woff2'),
        url('./fonts/avenir-next/AvenirNext-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next Bold';
    src: url('./fonts/avenir-next/AvenirNext-Bold.woff2') format('woff2'),
        url('./fonts/avenir-next/AvenirNext-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next Demi Bold';
    src: url('./fonts/avenir-next/AvenirNext-DemiBold.woff2') format('woff2'),
        url('./fonts/avenir-next/AvenirNext-DemiBold.woff') format('woff');
	font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next Heavy';
    src: url('./fonts/avenir-next/AvenirNext-Heavy.woff2') format('woff2'),
        url('./fonts/avenir-next/AvenirNext-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
:root {
	--font-primary-light: 'Avenir Next Light', sans-serif;
    --font-primary: 'Avenir Next', sans-serif;
	--font-primary-demibold: 'Avenir Next Demi Bold', sans-serif;
    --font-primary-bold: 'Avenir Next Bold', sans-serif;
	--font-primary-heavy: 'Avenir Next Heavy', sans-serif;
}

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;
}
*, *:after, *::before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*:focus {
	outline: 0;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="button"],
input[type="submit"],
textarea,
select {
     -webkit-appearance: none;
     border-radius: 0;
	 border: none;
}

/* DEFAULTS */
html,
body {
	font-family: var(--font-primary);
	color: var(--color-primary);
	font-size: 62.5%;
	margin: 0;
	overflow-x: hidden;
}
#page {
	overflow-x: hidden;
}
.v-wrap {
	padding-top: 40px;
	padding-bottom: 40px;
}
.h-wrap {
	max-width: 1500px;
	margin: 0 auto;
	padding-left: 8%;
	padding-right: 8%;
}
.clear {
	clear: both;
}
br.res {
	display: none;
}
h1,
h2,
h3,
h4 {
	margin-bottom: .6em;
	line-height: 1.2em;
}
h1,
h2.large {
	font-size: 5rem;
	line-height: 1.2em;
	text-transform: uppercase;
}
h2 {
	font-size: 3.5rem;
	text-transform: uppercase;
}
h3,
.pagination {
	font-size: 1.7rem;
	font-family: var(--font-primary-bold);
	text-transform: uppercase;
	letter-spacing: .1em;
}
h4 {
	font-size: 3rem;
	letter-spacing: 2px;
}
h4 {
	font-weight: 300;
}
p,
ul,
ol,
td {
	font-size: 1.4rem;
	line-height: 1.8em;
	margin-bottom: 1em;
}
a {
	color: var(--color-primary);
}
p a {
	color: inherit;
	font-weight: bold;
	text-decoration: none;
}
p a:hover {
	text-decoration: underline;
}
li.dead > a {
 cursor: default;
}
img {
	max-width: 100%;
	height: auto;
}
.tel {
	text-decoration: none;
}
strong {
	font-family: var(--font-primary-bold);
}
.heavy {
	font-family: var(--font-primary-heavy);
}
em {
	font-style: italic;
}
.large {
	font-size: 1.3em;
}
.color-primary {
	color: var(--color-primary);;
}
.color-secondary {
	color: var(--color-secondary);
}
.color-accent {
	color: var(--color-accent);
}
.white {
	color: #FFF!important;
}
.gray {
	color: #555;
}
.uppercase {
	text-transform: uppercase;
}
.lowercase {
	text-transform: none;
}
.small {
	display: block;
	font-size: .8em;
    line-height: 1.5em;
}
.text-center {
	text-align: center;
}
.btn,
input[type="button"] {
	display: inline-block;
	margin: 10px 0;
	padding: 10px 15px;
	color: #FFF!important;
	font-size: 1.4rem!important;
	font-weight: bold;
	font-family: var(--font-primary-demibold);
	text-transform: uppercase;
	letter-spacing: .2em;
	text-decoration: none;
	background: var(--color-secondary)!important;
	border: 2px solid var(--color-secondary);
	cursor: pointer;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.btn:hover,
input[type="button"]:hover {
	padding-left: 20px;
	padding-right: 20px;
	color: var(--color-primary)!important;
	border: 2px solid var(--color-primary);
	text-decoration: none;
	-webkit-box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, .05);
	-moz-box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, .05);
	box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, .05);
}
.btn-dark {
	background: var(--color-primary)!important;
}
.btn-dark:hover {
	color: var(--color-primary)!important;
	background: var(--color-secondary)!important;
	border: 2px solid var(--color-secondary);
}
.btn-accent {
	background: var(--color-accent)!important;
	border: 2px solid var(--color-accent);
}
.btn-outline {
    color: var(--color-secondary)!important;
    background: #FFF!important;
}
.btn-full,
.btn-full:hover {
	width: 100%;
	margin: 0!important;
	text-align: center;
}
table .btn:hover {
    padding: 10px 15px!important;
}
.btn-space {
	margin-top: 40px;
}
ol {
	margin-left: 30px;
}
@media (max-width: 500px) {
	h1,
	h2.large {
		font-size: 2.5rem;
	}
	h2 {
		font-size: 2rem;
	}
}
@media (max-width: 800px) {
	h1,
	h2.large {
		font-size: 3.5rem;
	}
	h2 {
		font-size: 2.7rem;
	}
}
@media (min-width: 700px) {
	.v-wrap {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.mob {
		display: none;
	}
}
@media (min-width: 1000px) {
	.h-wrap {
		padding-left: 100px;
		padding-right: 100px;
	}
	.v-wrap {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	br.res {
		display: block;
	}
}
@media (max-width: 1000px) {
	.desk {
		display: none;
	}
}
/* PAGE */
.page-wrap {
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
}
/* PACE */
.pace {
	  -webkit-pointer-events: none;
	  pointer-events: none;
	  -webkit-user-select: none;
	  -moz-user-select: none;
	  user-select: none;
}
.pace-inactive {
  	display: none;
}
.pace .pace-progress {
	background: var(--color-secondary);
	position: fixed;
	z-index: 2000;
	top: 0;
	right: 100%;
	width: 100%;
	height: 3px;
}
/* NIVO */
.nivo-lightbox-close {
    background-size: 10px!important;
    zoom: 2;
}
@media (max-width: 550px) {
	.nivo-lightbox-content {
		-webkit-overflow-scrolling: touch;
		overflow-y: scroll;
	}
}
@media (min-width: 1200px) {
	.nivo-lightbox-wrap {
		left: 20%!important;
		right: 20%!important;
	}
}
/* NAV */
header {
	position: absolute;
    z-index: 300;
    width: 100%;
}
ul.menu,
ul.menu ul {
	margin-bottom: 0;
	font-size: 1.4rem;
	line-height: 1em;
}
ul.menu {
	list-style-type: none;
}
ul.menu li {
	position: relative;
	display: inline-block;
    padding: 0 12px;
}
ul.menu li a {
	position: relative;
    text-transform: uppercase;
    letter-spacing: .05em;
	text-decoration: none;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
#menu-primary a {
	font-family: var(--font-primary-demibold);
}
header ul.menu .current-menu-item a,
footer ul.menu .current-menu-item a {
	color: var(--color-secondary);
    font-family: var(--font-primary-bold);
}
header ul.menu a:hover,
footer ul.menu a:hover {
    color: var(--color-secondary);
}
header ul.menu a:after {
	content: '';
	position: absolute;
	left: 0; bottom: -7px;
	width: 0;
	height: 4px;
	background-color: var(--color-secondary);
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

header ul.menu a:hover:after {
	width: 100%;
}
/* main nav */
header nav,
header nav .h-wrap {
	width: 100%;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
header nav {
	background-color: rgba(255,255,255,0);
}
header nav .h-wrap {
	padding-left: 40px;
	padding-right: 40px;
}
#logo img {
	width:100%;
	max-width: 175px;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
header #logo {
	min-height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
header .right .menu-primary-container {
	display: none;
}
header nav #menu {
	display: flex;
	justify-content: space-between;
	padding: 18px 0;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
header .right {
    position: relative;
	z-index: 100;
	display: flex;
    flex-direction: column;
    justify-content: center;
}
ul#menu-primary {
	margin: 0 -10px;
}
ul#menu-primary li {
	padding: 0 10px;
}
.panel {
	display: none;
}
/* Dropdowns */
header nav .sub-menu {
	opacity: 0;
	position: absolute;
	top: 20px;
	left: 0;
	z-index: 100;
	overflow: hidden;
	max-height: 0;
	padding: 0;
	text-align: left;
	background-color: rgba(255,255,255,.95);
	border: 1px solid var(--color-primary);
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
	transition-delay: .2s;
}
header nav li:nth-child(4) .sub-menu,
header nav li:nth-child(5) .sub-menu,
header nav li:last-child .sub-menu{
	left: auto;
	right: 0;
}
header nav li.menu-item-has-children:hover .sub-menu {
	opacity: 1;
	top: 30px;
	max-height: 1000px;
	padding: 7px 15px 7px 10px;
}
header nav li:last-of-type .sub-menu {
	left: auto;
	right: 12px;
}
header nav .sub-menu li {
	display: block!important;
	margin: 7px 0;
    padding: 1px 0!important;
}
header nav .sub-menu a {
	padding: 2px 0;
	line-height: 1em;
	white-space: nowrap;
	border-left: 2px solid rgba(0,0,0,0);
}
header nav .sub-menu a:hover {
	padding-left: 7px;
	color: var(--color-accent);
	border-left: 2px solid var(--color-accent);
}
header nav .sub-menu a:after {
	display: none;
}
header .right-btns {
    display: none;
}
.menu-btns {
	position: fixed;
	bottom: 20px;
	right: 20px;
}
.menu-btn-wrap {
    display: inline-block;
}
.menu-btn,
#menu-btn {
    position: relative;
    z-index: 200;
    display: inline-block;
    width: 35px;
    height: 35px;
    margin-left: 10px;
    border-radius: 50px;
    cursor: pointer;
}
.menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    top: 0px;
    text-align: center;
    background-color: var(--color-secondary);
    -webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}
.menu-btn:hover {
    top: -2px;
}
.menu-btn i {
    color: #FFF;
    font-size: 1.7rem;
}
.menu-btn:hover i {
    color: var(--color-primary);
    -webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}
iframe#launcher {
	display: none!important;
}
/* dark */
header.dark.fixed nav {
	background-color: var(--color-primary);
}
header.dark nav a {
	color: #FFF;
}
header.dark nav .sub-menu {
	background-color: var(--color-primary);
	border-color: var(--color-secondary);
}
@media (max-width: 1000px) {
	/* Mobile Nav */
	.menu-open {
		overflow-y: hidden;
	}
    header nav {
        background-color: #FFF;
        box-shadow: 0 0 25px rgba(0,0,0,.5);
    }
	header nav #menu {
		padding: 12px 0;
	}
    header #logo img {
        max-width: 150px;
    }
	header .right-btns {
		display: flex;
		justify-content: flex-end;
	}
	.menu-btns {
		position: relative;
		display: inline-block;
		bottom: 0;
		right: 0;
	}
	.mobile-menu-btn {
		display: flex;
	}
	#menu-btn {
        padding: 10px;
        background-color: var(--color-primary);
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		-webkit-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
	}
	#menu-btn span {
		display: block;
		position: absolute;
		height: 5px;
		width: 5px;
		background-color: #FFF;
		opacity: 1;
		left: 15px;
        border-radius: 50%;
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: .25s ease-in-out;
		transition: .25s ease-in-out;
		transition-delay: .4s;
	}
	#menu-btn:hover span{
		background-color: var(--color-secondary);
	}
	#menu-btn span:nth-child(1) {
		top: 7px;
	}
	#menu-btn span:nth-child(2),
	#menu-btn span:nth-child(3) {
		top: 15px;
	}
	#menu-btn span:nth-child(4) {
		top: 23px;
	}
	.menu-open #menu-btn span {
		left: 0;
	}
	.menu-open #menu-btn span:nth-child(1) {
		top: 12px;
		width: 0%;
		left: 50%
	}
    .menu-open #menu-btn span:nth-child(2),
    .menu-open #menu-btn span:nth-child(3) {
        left: 7px;
        width: 20px;
        height: 4px;
        border-radius: 2px;
	}
	.menu-open #menu-btn span:nth-child(2) {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg)
	}
	.menu-open #menu-btn span:nth-child(3) {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg)
	}
	.menu-open #menu-btn span:nth-child(4) {
		top: 12px;
		width: 0%;
		left: 50%
	}
	.panel {
		display: block;
		position: fixed;
		top: 0; bottom: 0;
		right: -100%;
		width: 100%;
		z-index: 99;
		background-color: rgba(0, 0, 0, 0);
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		-o-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
	}
	.menu-open .panel {
		right: 0;
		background-color: var(--color-primary);
	}
	.panel ul {
		width: 50%;
		height: 100vh;
		margin-bottom: 0;
		border-right: 1px solid #FFF;
	}
	.panel li {
		position: relative;
		width: 100%;
		padding-left: 0!important;
		padding-right: 0!important;
		border-bottom: 1px solid #FFF;
		list-style-type: none;
		-webkit-transition: .3s ease-in-out;
		-moz-transition: .3s ease-in-out;
		-o-transition: .3s ease-in-out;
		transition: .3s ease-in-out;
	}
	.panel ul:not(.sub-menu) li {
		margin-left: 100%;
	}
	.menu-open .panel ul:not(.sub-menu) li {
		margin-left: 0;
	}
	.panel li:nth-of-type(2) {
		transition-delay: .25s;
	}
	.panel li:nth-of-type(3) {
		transition-delay: .3s;
	}
	.panel li:nth-of-type(4) {
		transition-delay: .35s;
	}
	.panel li:nth-of-type(5) {
		transition-delay: .4s;
	}
	.panel li:nth-of-type(6) {
		transition-delay: .45s;
	}
	.panel li:nth-of-type(7) {
		transition-delay: .5s;
	}
	.panel li:nth-of-type(8) {
		transition-delay: .55s;
	}
	.panel li:nth-of-type(9) {
		transition-delay: .5s;
	}
	.panel li:nth-of-type(10) {
		transition-delay: .65s;
	}
	.panel li.menu-item-has-children span {
		position: absolute;
		top: 1px;
		bottom: 0;
		right: 0;
		padding: 15px 30px 18px 18px;
		font-size: 1.8rem;
		line-height: 1em;
		cursor: pointer;
		-webkit-transition: .3s ease-in-out;
		-moz-transition: .3s ease-in-out;
		-o-transition: .3s ease-in-out;
		transition: .3s ease-in-out;
	}
	.panel li.menu-item-has-children span i {
		position: relative;
    	top: -4px;
		color: #FFF;
		-webkit-transition: .3s ease-in-out;
		-moz-transition: .3s ease-in-out;
		-o-transition: .3s ease-in-out;
		transition: .3s ease-in-out;
	}
	.panel li.menu-item-has-children.active span i {
		transform: rotate(135deg);
	}
	.panel a {
		display: block;
		padding: 15px 30px;
		color: var(--color-secondary)!important;
		font-weight: 800;
		text-decoration: none;
		border: none!important;
		-webkit-transition: .3s ease-in-out;
		-moz-transition: .3s ease-in-out;
		-o-transition: .3s ease-in-out;
		transition: .3s ease-in-out;
	}
	.panel a:hover,
	.panel li.active > a {
        color: var(--color-primary)!important;
		background-color: var(--color-secondary);
	}
	.panel a:after {
		display: none;
	}
	.panel .sub-menu {
		position: fixed;
    	top: 0;
		right: -100%;
		height: auto;
		border-right: none;
	}
	.panel li.active .sub-menu {
		right: 0;
	}
	.panel .sub-menu li {
		position: relative;
		left: 100%;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		-o-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
	}
	.panel li.active .sub-menu li {
		left: 0;
	}
	.panel li.active .sub-menu li:nth-of-type(2) {
		transition-delay: .05s;
	}
	.panel li.active .sub-menu li:nth-of-type(3) {
		transition-delay: .1s;
	}
	.panel li.active .sub-menu li:nth-of-type(4) {
		transition-delay: .15s;
	}
	.panel li.active .sub-menu li:nth-of-type(5) {
		transition-delay: .2s;
	}
	.panel li.active .sub-menu li:nth-of-type(6) {
		transition-delay: .25s;
	}
	.panel li.active .sub-menu li:nth-of-type(7) {
		transition-delay: .3s;
	}
	.panel li.active .sub-menu li:nth-of-type(8) {
		transition-delay: .35s;
	}
	.panel li.active .sub-menu li:nth-of-type(9) {
		transition-delay: .4s;
	}
	.panel li.active .sub-menu li:nth-of-type(10) {
		transition-delay: .45s;
	}
	.panel .sub-menu li:first-of-type a {
		padding-right: 50px;
	}
	/* dark */
	header.dark nav {
		background-color: var(--color-primary);
	}
	header.dark nav #menu-btn {
		background-color: var(--color-accent);
	}
}
@media (min-width: 1000px) {
	header .top-bar {
		display: block;
	}
	header.fixed .top-bar {
		max-height: 0;
	}
	header.fixed nav {
		position: fixed;
		background: rgba(255,255,255,.95);
	}
	header.fixed .h-wrap {
		padding-left: 30px;
		padding-right: 30px;
	}
	header.fixed #logo img {
		max-width: 150px;
	}
	header .right .menu-primary-container {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	header.fixed nav #menu {
		padding: 5px 0;
	}
}
@media (max-width: 500px) {
	header nav .h-wrap {
		padding-left: 20px;
		padding-right: 20px;
	}
}
/* HOME */
/* hero */
.hero {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.bg-wrap {
    position: absolute;
    top: 0;
    width: 100%;
}
.bg-wrap video {
    width: 100%;
    height: auto;
}
.hero .v-wrap {
    position: relative;
    z-index: 1;
}

.hero .section-arrow > .v-wrap,
.hero.home > .v-wrap,
.hero.blog .bg .v-wrap {
    padding-top: 140px;
}
.hero.home > .v-wrap,
.hero.main .section-arrow > .v-wrap {
	padding-bottom: 24px;
}
.hero .content {
	max-width: 800px;
}
.hero h1 {
	margin-bottom: .3em;
}
.hero .arrow {
	position: relative;
	z-index: 1;
	color: #FFF;
	text-align: center;
	background-color: var(--color-accent);
	clip-path: polygon(0 18%, 100% 0, 100% 82%, 50% 100%, 0 82%);
}
.hero .arrow .v-wrap {
    padding-top: 80px;
	padding-bottom: 40px;
}
.hero .menu-btns {
	position: absolute;
    bottom: 2.5%;
	right: 40px;
	z-index: 200;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hero.home .menu-btns {
    bottom: 70px;
}
.hero .menu-btns.fixed,
.pop-form-show .hero .menu-btns {
	position: fixed;
	bottom: 20px;
	right: 40px;
}
.pop-form-show .hero .menu-btns {
	z-index: 500;
}
.hero .menu-btns .menu-btn {
	-webkit-box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, .03);
	-moz-box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, .03);
	box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, .03);
}
@media (max-width: 1000px) {
	.hero .menu-btns {
		bottom: -10px;
	}
}
@media (max-width: 700px) {
	.hero > .v-wrap,
	.hero .section-arrow > .v-wrap {
		padding-top: 140px;
		padding-bottom: 20px;
	}
	.hero .menu-btns,
	.hero .menu-btns.fixed,
	.pop-form-show .hero .menu-btns {
		right: 15px;
	}
	.hero .menu-btns.fixed,
	.pop-form-show .hero .menu-btns {
		bottom: 15px;
	}
}

/* slider */
.news-events {
	position: relative;
	top: -100px;
	padding-top: 100px;
	margin-bottom: -100px;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: var(--color-primary);
}
.news-events h3 {
	color: var(--color-secondary);
}
.news-events h2 a,
.news-events p {
	color: #FFF;
	text-decoration: none;
}
.news-events h2 a:hover {
	text-decoration: underline;
}
.news-events .slick {
	padding-top: 20px;
}
.slick-initialized .slick-slide {
    padding: 0 15px;
}
.slick-nav {
	position: absolute;
	display: flex;
    justify-content: space-between;
	top: 45%;
    left: 2%;
    right: 2%;
    pointer-events: none;
}
.news-events button {
	border: none;
    background: none;
}
.slick-nav .slick-arrow {
	position: relative;
	left: 0;
	color: var(--color-accent);
	font-family: var(--font-primary);
	font-size: 5rem;
	pointer-events: initial;
	cursor: pointer;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}
.slick-nav .slick-prev:hover {
	left: -2px;
}
.slick-nav .slick-next:hover {
	left: 2px;
}
.slick-dots {
	display: flex;
	justify-content: center;
}
.slick-dots li {
	padding: 0 5px;
}
.slick-dots li::marker {
	color: rgba(0,0,0,0);
}
.slick-dots button {
	text-indent: -10000px;
	width: 12px;
	height: 12px;
	zoom: 75%;
	background-color: #FFF;
	border-radius: 50%;
	cursor: pointer;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}
.slick-dots li.slick-active button,
.slick-dots button:hover {
	background-color: var(--color-secondary);
}
@media (max-width: 700px) {
	.slick-nav {
		left: 1%;
		right: 1%;
	}
}
/* products */
.products .row,
.solutions .row,
.contact .row {
	display: flex;
	justify-content: space-between;
}
.products .row > *,
.solutions .row > *,
.contact .row > * {
	width: 47%;
}
.products .content h2,
.solutions .content h2,
.contact .content h2 {
	margin-bottom: .3em;
}
.products .product-list {
	display: flex;
	flex-wrap: wrap;
}
.products .product-list .product {
	position: relative;
	width: 50%;
	padding-bottom: 40px;
	text-align: center;
}
.products .product .overlay {
	position: absolute;
	top: 0; bottom: 100%;
	left: 0; right: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-height: 0;
	background-color: rgba(255,255,255,.8);
	overflow: hidden;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.products .product-list a > img {
	display: inline-block;
	max-width: 100px;
}
.products .product a:hover .overlay {
	bottom: 0;
	max-height: 500px;
	padding: 15px 0;
}
.products .product .overlay img {
	opacity: 0;
	width: 100%;
	max-width: 200px;
	margin-bottom: 30px;
	-webkit-transition: .4s ease-in-out;
	-moz-transition: .4s ease-in-out;
	-o-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}
.products .product a:hover .overlay img {
	opacity: 1;
	margin-bottom: 10px;
}
.products .product .overlay p {
	margin-bottom: 0;
}
@media (min-width: 700px) and (max-width: 1000px) {
	.products .product .overlay p {
		font-size: 1.1rem;
	}
}
@media (max-width: 1000px) {
	.products .product-list a > img {
		max-width: 80px;
	}
}
@media (max-width: 700px) {
	.products .row,
	.solutions .row,
	.contact .row {
		flex-wrap: wrap;
	}
	.products .row > *,
	.solutions .row > *,
	.contact .row > * {
		width: 100%;
	}
	.products .content,
	.contact .content {
		margin-bottom: 30px;
	}
	.products .product .overlay {
		bottom: 0;
		max-height: 500px;
		padding: 15px!important;
	}
	.products .product .overlay img {
		opacity: 1;
		width: auto;
		max-height: 50px;
		margin-bottom: 10px;
	}
}
@media (max-width: 550px) {
	.products .product-list .product {
		width: 100%;
	}
}
/* solutions */
.solutions .v-wrap {
	padding-top: 0;
	padding-bottom: 40px;
}
.nav-list a {
	text-decoration: none;
	display: block;
	padding: 0;
	font-family: var(--font-primary-demibold);
	border-bottom: 3px solid var(--color-secondary);
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}
.nav-list a:hover {
	padding-left: 3px;
	border-bottom: 3px solid var(--color-accent);
}
.nav-list h2 {
	padding: 18px 0 10px;
	margin-bottom: 0;
	line-height: 1em;
}
.nav-list.small  h2 {
    padding: 7px 0 5px;
}
.nav-list.small h2 span {
    font-size: .8em;
}
@media (max-width: 700px) {
	.solutions .row {
		display: flex;
		flex-direction: column-reverse;
	}
	.solutions .content {
		margin-bottom: 20px;
	}
}
/* video element */
.video-element video {
	width: 100%;
	clip-path: polygon(0 0, 100% 0, 100% 99%, 0 99%);
}
/* contact */
.nf-form-fields-required {
	display: none;
}
.nf-field-container {
    margin-bottom: 15px!important;
}
.nf-form-content {
    padding: 0!important;
}
.nf-form-wrap input,
.nf-form-wrap select,
.nf-form-wrap textarea {
	padding: 3px 10px!important;
    color: var(--color-accent)!important;
	font-size: 1.4rem!important;
    background: none!important;
	border: none!important;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.nf-form-wrap input:focus,
.nf-form-wrap select:focus,
.nf-form-wrap textarea:focus {
	background-color: #FFF;
	border: 1px solid #3A5275;
}
.nf-form-wrap input {
    font-family: var(--font-primary-bold);
    border-bottom: 2px solid #ebebeb!important;
}
.nf-form-wrap input:not([type="button"]),
.nf-form-wrap select,
.nf-form-wrap .list-select-wrap .nf-field-element > div {
    height: 30px!important;
}
.nf-field-element:after {
    height: 30px!important;
    line-height: 30px!important;
}
.nf-form-wrap input:focus {
    border-bottom: 2px solid var(--color-accent)!important;
}
::-webkit-input-placeholder {
    font-family: var(--font-primary);
	color: var(--color-primary);
}
:-moz-placeholder {
    font-family: var(--font-primary);
	color: var(--color-primary);
	opacity: 1;
}
::-moz-placeholder {
    font-family: var(--font-primary);
	color: var(--color-primary);
	opacity: 1;
}
:-ms-input-placeholder {
    font-family: var(--font-primary);
	color: var(--color-primary);
}
.nf-error.field-wrap .nf-field-element:after {
    font-size: 15px!important;
    top: 0px!important;
    right: 0px!important;
    bottom: 0px!important;
    height: 30px!important;
    width: 30px!important;
    line-height: 32px!important;
}
.nf-form-wrap select {
    border-bottom: 2px solid #ebebeb!important;
}
.nf-form-wrap select,
.nf-form-wrap select option {
	color: var(--color-primary)!important;
}
.nf-form-wrap .list-select-wrap .nf-field-element > div {
    background: none!important;
    border: none!important;
}
.nf-form-wrap textarea { 
	max-height: 150px;
    padding-top: 10px!important;
    font-family: var(--font-primary-bold);
    background-color: #ebebeb!important;
}
.nf-form-wrap input[type="checkbox"] {
	position: relative;
    top: 2px;
}
.nf-field-label label {
    padding-left: 5px;
	color: #3A5275;
    font-size: 1rem;
	font-weight: normal!important;
}
.nf-error-msg {
	font-size: 1.2rem;
}
.nf-form-wrap input[type="button"] {
	margin: 0;
    padding: 10px 25px!important;
    color: #FFF!important;
    background-color: var(--color-secondary)!important;
    border: 2px solid var(--color-secondary)!important;
}
.nf-form-wrap input[type="button"]:hover {
    padding: 10px 30px!important;
	color: var(--color-primary)!important;
	border: 2px solid var(--color-primary)!important;
}
/* FOOTER */
footer {
    background-color: var(--color-primary);
    clip-path: polygon(0 0, 88% 15%, 100% 0, 100% 100%, 0 100%);
}
footer .h-wrap {
    padding-left: 40px;
    padding-right: 40px;
}
footer .row {
    display: flex;
    padding: 80px 0;
}
footer .menu-footer-container {
    width: 100%;
}
footer ul.menu {
    display: flex;
    justify-content: space-between;
}
footer ul.menu a {
    color: var(--color-accent);
	font-size: 1.3rem;
}
.page-template-page-main footer ul.menu a {
    color: var(--color-secondary);
}
footer ul.menu > li {
	padding-left: 0;
  	padding-right: 40px;
}
#menu-footer > li > a {
    font-family: var(--font-primary-demibold);
    font-size: 1.6rem;
}
footer ul.sub-menu {
    padding-top: 3px;
}
footer ul.sub-menu li {
    display: block;
    padding: 3px 0;
}
footer ul.sub-menu a {
    color: #FFF!important;
    text-transform: none;
}
footer .nf-form-cont {
    position: relative;
    top: -12px;
    width: 30%;
	max-width: 300px;
	padding-left: 20px;
}
footer .nf-form-cont input[type="email"] {
    border-bottom: 2px solid var(--color-accent)!important;
}
.page-template-page-main footer .nf-form-cont input[type="email"] {
    border-bottom: 2px solid var(--color-secondary)!important;
}
footer ::-webkit-input-placeholder {
	color: #FFF;
}
footer :-moz-placeholder {
    color: #FFF;
}
footer ::-moz-placeholder {
    color: #FFF;
}
footer :-ms-input-placeholder {
    color: #FFF;
}
footer .nf-form-cont input[type="button"] {
    height: 33px!important;
    padding: 6px 15px!important;
}
footer .nf-form-cont input[type="button"]:hover {
    padding: 6px 20px!important;
}
footer .nf-response-msg p {
	color: #FFF;
}
#menu-copyright {
	display: block;
	padding-bottom: 35px;
}
#menu-copyright li {
	width: auto;
	margin-bottom: 0;
	padding: 0 10px 0 0!important;
}
#menu-copyright li:not(:last-of-type):after {
	position: relative;
	top: -3px;
	right: -7px;
	content: '|';
	color: #FFF;
}
#menu-copyright a {
	font-family: var(--font-primary);
	text-transform: none;
}
@media (max-width: 1000px) {
	footer {
		clip-path: polygon(0 0, 88% 10%, 100% 0, 100% 100%, 0 100%);
	}
	footer .row {
		padding-bottom: 50px;
	}
	footer .menu-footer-container {
		width: 67%;
	}
	footer ul.menu {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	footer ul.menu > * {
		width: 50%;
		margin-bottom: 25px;
	}
	footer .nf-form-cont {
		padding-left: 0;
	}
}
@media (max-width: 700px) {
	footer {
		clip-path: polygon(0 0, 88% 5%, 100% 0, 100% 100%, 0 100%);
	}
	footer #logo img {
		max-width: 150px;
	}
	footer .row {
		flex-wrap: wrap;
		padding-top: 60px;
		padding-bottom: 30px;
	}
	footer .row > * {
		width: 100%;
	}
	footer .nf-form-cont {
		padding-top: 10px;
	}
	#menu-copyright {
		padding-bottom: 60px;
	}
}
@media (max-width: 500px) {
	footer .h-wrap {
		padding-left: 30px;
		padding-right: 30px;
	}
	#menu-copyright,
	#menu-copyright a {
		font-size: 1.1rem;
	}
}

/* POP FORM */
.pop-form-show {
	overflow-y: hidden;
}
.pop-form {
	position: fixed;
	top: 100%; bottom: 0;
	left: 0; right: 0;
	z-index: 400;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-height: 0;
	padding: 0;
	background-color: var(--color-primary);
	overflow: hidden;
	-webkit-transition: .4s ease-in-out;
	-moz-transition: .4s ease-in-out;
	-o-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}
.pop-form-show .pop-form {
	top: 0;
	max-height: 5000px;
}
.pop-form .h-wrap {
	max-width: 800px;
	margin: 0 auto;
	opacity: 0;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}
.pop-form-show .pop-form .h-wrap {
	opacity: 1;
}
.pop-form h2,
.pop-form h3,
.pop-form p {
	color: #FFF;
}
.pop-form input:not([type="button"]) {
	color: var(--color-secondary)!important;
	border-bottom: 2px solid var(--color-accent)!important;
}
.pop-form ::-webkit-input-placeholder {
	color: #FFF;
}
.pop-form :-moz-placeholder {
    color: #FFF;
}
.pop-form ::-moz-placeholder {
	color: #FFF;
}
.pop-form :-ms-input-placeholder {
	color: #FFF;
}
.pop-form select {
	color: #FFF!important;
	border-bottom: 2px solid var(--color-accent)!important;
}
.pop-form textarea {
	max-height: 100px;
	color: #FFF!important;
	background-color: var(--color-accent)!important;
}
.pop-form #x {
	position: absolute;
	top: 7%;
	right: 7%;
	color: var(--color-accent);
	font-size: 3rem;
	cursor: pointer;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}
.pop-form #x:hover {
	color: var(--color-secondary);
}
/* MAIN */
.section-arrow {
	position: relative;
	clip-path: polygon(0 0%, 100% 0, 100% 82%, 50% 100%, 0 82%);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.section-arrow-cut-top,
.default.section-arrow:not(.dark) + section {
	clip-path: polygon(0 0, 50% 100px, 100% 0, 100% 100%, 0 100%);
}
/*.default.section-arrow:not(.dark) + .default.section-arrow.dark {
	clip-path: polygon(0 0, 50% 18%, 100% 0, 100% 82%, 50% 100%, 0 82%);
}*/
.hero.main .content {
	min-height: 350px;
}
.hero.main h1 {
	margin-bottom: 30px;
	color: #FFF;
	font-weight: var(--font-primary-demibold);
	position: relative;
}
.hero.main .headlines a {
	text-decoration: none;
}
.hero.main .headline-info {
	display: none;
}
.hero.main .headline-info:nth-of-type(1) {
	display: block;
}
.hero.main .headline-info p {
	margin-bottom: 0;
	color: #FFF;
	font-weight: var(--font-primary-demibold);
	text-transform: uppercase;
}
.hero.main .headline-info p span {
	position: relative;
	top: -2px;
}
.hero.main .typewrite {
	position: relative;
	display: inline-block;
}
.hero.main .typewrite:after {
	content: ' ';
	position: absolute;
	right: -20px;
	top: .5rem;
	bottom: 0;
	height: 3rem;
	width: 15px;
	background-color: var(--color-secondary);
	animation: blinking .5s linear infinite;
	text-decoration: blink;
}
.hero.main .typewrite.dock:after {
	right: -15px;
} 
@keyframes blinking {
	from,
	49.9% {
	  opacity: 0;
	}
	50%,
	to {
	  opacity: 1;
	}
}
.hero.main .headlines h2 {
	display: inline-block;
	color: var(--color-secondary);
	cursor: default;
}
.glitch-1 {
	clip-path: polygon(10% 0, 100% 0, 100% 100%, 10% 100%);
}
.glitch-2 {
	clip-path: polygon(0 0, 30% 0, 30% 20%, 100% 20%, 100% 100%, 0 100%);
}
@media (max-width: 500px) {
	.hero.main .typewrite:after {
		top: .2rem;
		width: 8px;
		height: 1.8rem;
	}
}
@media (max-width: 1000px) {
	.section-arrow {
		clip-path: polygon(0 0%, 100% 0, 100% 92%, 50% 100%, 0 92%);
	}
	.section-arrow-cut-top,
	.default.section-arrow:not(.dark) + section {
		clip-path: polygon(0 0, 50% 50px, 100% 0, 100% 100%, 0 100%);
	}
	.default.section-arrow:not(.dark) + .default.section-arrow.dark {
		clip-path: polygon(0 0, 50% 8%, 100% 0, 100% 92%, 50% 100%, 0 92%);
	}
	.hero.main .typewrite:after {
		top: .3rem;
		width: 12px;
		height: 2.4rem;
	}
}
/* main content */
.main-content .content-1 {
	text-align: center;
}
.main-content .blocks,
.main-content .row {
	display: flex;
	justify-content: space-between;
	padding: 20px 0 100px;
}
.main-content .blocks {
	padding: 20px 0 100px;
}
.main-content .blocks a,
.main-content .row > * {
	display: block;
	width: 49%;
	text-decoration: none;
}
.main-content .block {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 250px;
	text-align: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.main-content .block h3 {
	position: relative;
	top: 0;
	display: inline-block;
	width: 75%;
	margin: 0 auto!important;
	color: #FFF;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}
.main-content .blocks a:hover h3 {
	top: -2px;
}
.main-content .content-2 {
	padding-right: 30px;
}
ul.theme,
.page-template-default section ul,
.blog-single ul {
	margin: 0 0 20px 15px;
    list-style-type: none;
	
}
ul.theme li,
.page-template-default section ul li,
.blog-single ul li {
	position: relative;
	margin-bottom: .5em;
}
ul.theme li:before,
.page-template-default section ul li:before,
.blog-single ul li:before {
	content: ' ';
	position: absolute;
	top: .35em;
	left: -13px;
	width: 4px;
	height: 1em;
	background-color: var(--color-secondary);
}
.main-content .content-3 ul.theme {
	margin-bottom: 40px;
}
@media (max-width: 800px) {
	.main-content .blocks,
	.main-content .row {
		flex-wrap: wrap;
	}
	.main-content .blocks {
		padding-bottom: 60px;
	}
	.main-content .blocks a,
	.main-content .row > * {
		width: 100%;
	}
	.main-content .blocks a {
		margin-bottom: 20px;
	}
}
/* footer */
.page-template-page-main .news-events {
	margin-bottom: -200px;
	padding-bottom: 50px;
}
/* PAGE BUILDER */
/* hero */
.page-template-default .hero .section-arrow,
.page-template-default section.dark,
.hero.dark > .h-wrap,
.hero.blog.dark .bg {
	background-color: var(--color-primary);
}
.page-template-default .hero .h-wrap {
    display: flex;
}
.page-template-default .hero .content {
	padding-bottom: 30px;
}
.page-template-default .hero .img {
    min-width: 35%;
}
.page-template-default .hero .img img {
    display: block;
    width: 65%;
    margin: 0 auto;
}
.page-template-default .hero .img.sm img {
    width: 40%;
}
.page-template-default .hero h1,
.page-template-default .hero p,
.default.dark h1,
.default.dark h2,
.default.dark p,
.default.dark li,
.hero.dark h1,
.hero.dark h2,
.hero.dark p {
	color: #FFF;
}
.page-template-default h3 {
	color: var(--color-secondary);
}
@media (max-width: 700px) {
    .page-template-default .hero .v-wrap {
        padding-bottom: 130px
    }
    .page-template-default .hero .h-wrap {
        flex-wrap: wrap;
    }
    .page-template-default .hero .img {
        min-width: 100%;
    }
	.page-template-default .hero .img img {
		width: 80%;
        margin-left: 0
    }
    .page-template-default .hero .img.sm img {
        width: 30%;
    }
}
/* default */
.default:not(.dark) + .default:not(.dark) .v-wrap {
    padding-top: 40px;
}
.default.arrow-adj,
.default.dark.section-arrow {
    padding-bottom: 150px;
}
.default.arrow-adj {
    margin-bottom: -200px;
}
.default.arrow-adj + .default.dark {
    padding-top: 100px;
}
.default .intro {
    margin-bottom: 40px;
}
.default .row {
    display: flex;
    justify-content: space-between;
}
.default .col {
    width: 49%
}
.default .row.cols-1 .col {
    width: 100%;
    overflow-x: auto;
}
.default .col.slim {
    width: 40%
}
.default p a,
.default li a {
    color: var(--color-accent);
    text-decoration: none;
}
.default p a:not(.btn):hover,
.default li a:hover {
    text-decoration: underline;
}
.wp-caption {
    max-width: 100%;
}
.wp-caption.aligncenter {
    width: 100%!important;
}
.wp-caption.aligncenter img,
img.aligncenter {
    display: block;
    margin: 0 auto;
}
h3 + .wp-caption {
    padding-top: 20px;
}
.wp-caption-text {
    width: 75%;
    margin: 0 auto;
    padding-top: 15px;
    text-align: center;
    color: var(--color-secondary)!important;
    font-style: italic;
    line-height: 1.4em;
}
ul.slim,
.team {
    display: inline-block;
    width: 49.5%;
    margin-left: 0!important;
    padding: 0 20px 20px 40px;
    vertical-align: top;
}
.row.cols-1 ul.slim,
.row.cols-1 .team {
    width: 24.5%;
}
ul.slim h3 {
    margin-left: -15px;
}
.team {
	text-align: center;
}
.team p {
	text-align: left;
}
table {
    width: 100%;
    overflow-x: scroll;
    border-spacing: 0;
}
table td {
    padding: 7px 10px;
    text-align: center;
    vertical-align: center;
    white-space: nowrap;
}
table th td,
table tr.th td {
    padding: 10px;
    color: #FFF;
    background: var(--color-accent);
}
table:not(.no-guide) tr.th td:first-child {
    background: none;
}
table tr.th td span {
    position: relative;
    top: .17em;
    font-family: var(--font-primary-bold);
    font-size: 2em;
}
table:not(.no-guide) td:first-child {
    padding-right: 30px;
    text-align: right;
    color: var(--color-secondary)!important;
    font-style: italic;
}
table tr:nth-of-type(odd) {
    background-color: #efeff0;
}
table tr:first-child,
table tr.btns {
    background: none;
}
table h3 {
    margin-bottom: .3em;
}
#social i {
	position: relative;
	top: 0;
	margin: 0 10px;
	font-size: 5rem;
	color: var(--color-secondary);
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}
#social a:hover i {
	top: -2px;
}
@media (max-width: 1100px) {
    table td {
        text-align: center;
        white-space: normal;
        line-height: 1.2em;
    }
    table tr.th td span {
        top: .12em;
        font-size: 1.5em;
    }
    table td:first-child {
        padding-right: 15px;
    }
	.row.cols-1 ul.slim,
	.row.cols-1 .team {
		width: 49.5%;
	}
}
@media (max-width: 800px) {
	.default.arrow-adj + .default.dark {
		padding-top: 100px;
	}
	.default.dark.section-arrow {
		padding-bottom: 100px;
	}
    .default .row {
        flex-wrap: wrap;
    }
    .default .col {
        width: 100%;
        padding: 15px 0;
    }
    .default .col.slim {
        width: 80%;
    }
}
@media (max-width: 500px) {
	.row ul.slim,
	.team {
		width: 100%!important;
	}
}
/* featured image */
.featured-image {
    position: relative;
}
.featured-image .h-wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}
.default:not(.dark) + .featured-image .v-wrap {
    padding-top: 0;
}
.featured-image .wp-caption-text {
   width: 30%;
   padding-top: 30px;
}
.featured-image .img {
    width: 67%;
 }
.featured-image .bg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 300px;
    background-color: var(--color-accent);
    clip-path: polygon(0 18%, 50% 0, 100% 18%, 100% 100%, 0 82%);
}
@media (max-width: 1000px) {
    .featured-image .h-wrap {
        justify-content: center;
        flex-wrap: wrap;
    }
    .featured-image .wp-caption-text {
        width: 75%;
        padding: 0 0 20px;
     }
    .featured-image .img {
        width: 90%;
		height: auto;
     }
     .featured-image .bg {
        height: 200px;
    }
}
/* BLOG */
.hero.blog .bg {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.hero.blog .bg .h-wrap {
	margin-bottom: -150px;
	padding-bottom: 200px;
}
.hero.blog .bg .h-wrap .content {
	max-width: 500px!important;
}
.hero.blog .post-featured {
	padding: 20px 0;
}
.hero.blog .arrow h3 {
	color: rgba(255,255,255,.8);
}
.hero.blog .arrow h2  {
	margin-bottom: .3em;
}
.hero.blog .arrow h2 a {
	color: #FFF;
	text-decoration: none;
}
.hero.blog .arrow h2 a:hover {
	text-decoration: underline;
}
.hero.blog .arrow p {
	margin-bottom: 1.5em;
}
.blog-wrap {
	margin: 0 -20px;
}
.blog-wrap .blog-post-wrap {
	width: 33%;
	padding: 0 20px;
	margin-bottom: 40px;
}
.blog-wrap .blog-post {
	padding: 20px;
	background-color: #f3f4f4;
}
.blog-wrap .blog-post h2 a {
	color: var(--color-secondary);
	line-height: 1.2em;
	text-decoration: none;
}
.blog-wrap .blog-post h2 .small {
	line-height: 1.2em;
}
.blog-wrap .blog-post h2 a:hover {
	text-decoration: underline;
}
.blog-wrap .blog-post .feat-img {
	margin: 0 -20px;
}
.blog-wrap .blog-post .wp-post-image {
	width: 100%;
	margin-bottom: 20px;
}
.pagination {
	padding-top: 20px;
	text-align: center;
}
.pagination h2 {
	display: none;
}
@media (max-width: 1100px) {
	.blog-wrap .blog-post {
		width: 48.5%;
	}
}
@media (max-width: 700px) {
	.blog-wrap .blog-post {
		width: 100%;
	}
}
/* single */
.single-post .hero.blog > .h-wrap {
    padding-bottom: 175px;
}
.single-post .hero.blog .bg .h-wrap .content {
    max-width: 100%!important;
}
.single-post .hero h3 {
	color: var(--color-secondary);
}
.single-post .hero .arrow {
	padding: 50px 0 15px;
	background-color: var(--color-accent)!important;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	text-align: left;
}
.single-post .blog-single h2 {
	color: var(--color-secondary);
}
.single-post .blog-single h3 {
	color: var(--color-accent);
}
.more-posts .v-wrap {
	padding-top: 0;
}
.more-posts .blog-wrap {
	display: flex;
	flex-wrap: wrap;
}
.more-posts .blog-wrap .blog-post {
	display: flex;
    flex-direction: column;
    height: 100%;
	justify-content: space-between;
}
.more-posts .blog-wrap .blog-post h3 a {
	color: var(--color-secondary);
	text-decoration: none;
}
.more-posts .blog-wrap .blog-post h3 a {
	color: var(--color-secondary);
	text-decoration: none;
}
.more-posts .blog-wrap .blog-post h3 a:hover {
	text-decoration: underline;
}
@media (min-width: 1000px) {
	.single-post .blog-single {
		padding: 0 80px;
	}
}