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

Theme Name: Eight Wire
Theme URI: https://eightwire.uk
Description: Web Design & Development
Author: Eight Wire
Author URI: https://eightwire.uk
Version: 0.0.1
Tags: design, marketing, web development, content management

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

:root {
	--grey: #706f6f;
	--grey-d: #3c3c3b;
	--cyan: #55ab9e;
	--blue: #247db2;
	--blue-d: #26336e;
	--blue-p: #a3bbda;
	--blue-t: rgba(36, 125, 178, 0.4);
}

html {
	scroll-behavior: smooth;
}
html, body {
	margin: 0;
	padding: 0;
	max-width: 100vw;
	color: var(--grey);
	font-family: 'Montserrat';
	font-size: 10px;
	letter-spacing: 0.01em;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 18px;
	color: var(--blue);
	font-weight: 600;
	letter-spacing: 0.02em;
}
h1 {
	font-size: 3.4rem;
}
h2 {
	font-size: 2.6rem;
}
h3 {
	font-size: 2.2rem;
}
h4 {
	font-size: 2rem;
}

p {
	margin-top: 0;
	font-size: 1.8rem;
	line-height: 1.5;
}

a, a:link, a:visited, a:hover, a:active {
	outline: none;
	text-decoration: none;
}
a, a:visited {
	color: var(--blue);
}
a:hover {
	color: var(--grey-d);
}

.transition-all, .ta, button, input, textarea,
a,
.ewmodal-btn-open {
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
iframe {
	max-width: 100%;
}
textarea {
	min-height: 60px;
	resize: vertical;
}
textarea,
input:not([type="submit"]) {
	border: 1px solid var(--grey);
	border-radius: 3px;
	padding: 6px;
}
address {
	font-size: 1.8rem;
	font-style: normal;
}
li {
	font-size: 1.6rem;
}

/* CLEARFIX */
.cf {
	zoom: 1;
}
.cf:before, .cf:after {
	content: ' ';
	display: table;
}
.cf:after {
	clear: both;
}

.w {
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
}
.w[class*="size-"] {
	margin: 0 auto;
}
.w[class*="size-"].m-r {
	margin: 0 auto 0 0;
}
.w[class*="size-"].m-l {
	margin: 0 0 0 auto;
}
.w.size-full {
	max-width: 1920px;
}
.w.size-xx-wide {
	max-width: 1826px;
}
.w.size-x-wide {
	max-width: 1440px;
}
.w.size-wide {
	max-width: 1258px;
}
.w.size-large {
	max-width: 1158px;
}
.w.size-mid {
	max-width: 960px;
}
.w.size-narrow {
	max-width: 720px;
}
.w.size-small {
	max-width: 606px;
}
.w.size-x-small {
	max-width: 480px;
}


/* HEADER */
header.header {
	position: relative;
	z-index: 4;
}

header .w {
	padding: 25px 32px 0;
}

header .top {
	gap: 19px;
}

a.network-btn {
	margin-left: 19px;
	border: 1px solid var(--grey);
	padding: 7px 9px;
	color: var(--grey);
	font-size: 1.8rem;
	font-weight: 800;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
a.network-btn:hover {
	border-color: var(--blue-d);
	background: var(--blue);
	color: #fff;
}
footer a.network-btn {
	display: inline-block;
	margin-left: 0;
	border-color: #fff;
}
footer a.network-btn:hover {
	border-color: #fff;
	color: var(--grey-d) !important;
}

.hamburger {
	position: absolute;
	z-index: 2000;
	display: none;
	border: 1px solid #fff;
	border-radius: 3px;
	padding: 10px 8px;
	background: var(--blue);
	font-size: 2rem;
	position: relative;
	cursor: pointer;
}
.hamburger:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.2);
	filter: blur(6px);
	z-index: -1;
}

.hamburger .grid > span {
	display: block;
	width: 25px;
	height: 2px;
	border-radius: 2px;
	background: #fff;
	transition: all 0.5s ease-in-out;
	transform-origin: center;
}

.hamburger .text {
	color: #fff;
	font-size: 1.3rem;
}

.hamburger-switch {
	display: none;
}

.hamburger-switch:checked ~ .hamburger .ham1 {
	transform: rotateZ(45deg) translate(5px, 5px) scaleX(1.3);
}
.hamburger-switch:checked ~ .hamburger .ham2 {
	transform: scale(0);
	opacity: 0;
}
.hamburger-switch:checked ~ .hamburger .ham3 {
	transform: rotateZ(-45deg) translate(5px, -5px) scaleX(1.3);
}


/* MENUS */
.menu, .sub-menu {
	list-style: none;
	padding-left: 0;
}

.sub-menu {
	display: none;
	position: absolute;
	top: 96%;
	left: 18px;
	padding: 15px 0;
	background: var(--blue);
	text-align: left;
	z-index: 1;
}

nav .menu li {
	display: inline-block;
	margin: 0;
	position: relative;
}

.ew-menu li.menu-item-has-children:after {
	content: '';
	position: absolute;
	right: 18px;
	bottom: 0;
	left: 18px;
	height: 5px;
	background: var(--blue);
	transform-origin: left center;
	transform: scaleX(0);
	transition: transform 0.18s ease-in-out;
}
.ew-menu li.menu-item-has-children:hover:after {
	transform: scaleX(1);
}

.menu li:hover .sub-menu {
	display: block;
}

.sub-menu > li {
	display: block;
	margin: 0;
}

.ew-menu .sub-menu > li > a {
	width: 246px;
	padding: 8px 16px;
	background: var(--blue);
	color: #fff !important;
	font-size: 1.6rem;
	font-weight: 600;
	text-transform: none;
}
.sub-menu > li > a:hover {
	background: var(--blue-p);
	color: #fff;
}

nav.nav {
	clear: both;
	text-align: center;
}

.ew-menu li > a {
	display: block;
	border: 0;
	padding: 10px 18px;
	color: var(--grey);
	font-size: 1.8rem;
	font-weight: 800;
	text-transform: uppercase;
	text-decoration: none;
}

.ew-menu li > a:hover,
.ew-menu li.current-menu-item > a,
.ew-menu .current-menu-ancestor > a,
.ew-menu .current-menu-parent > a,
.ew-menu li.menu-item-has-children:hover a {
	color: var(--blue);
	text-decoration: none;
}

.ew-menu li.menu-item-has-children > a:after {
	content: '';
	display: inline-block;
	width: 9px;
	height: 9px;
	margin-left: 5px;
	border: 1px solid var(--grey);
	border-top: 0;
	border-left: 0;
	transform: translateY(-4px) rotateZ(45deg);
}
.ew-menu li.menu-item-has-children:hover > a:after {
	border-color: var(--blue);
}

.footernav .menu li {
	margin-bottom: 1em;
}


/* MOBILE MENU */
header .mobile-nav-open {
	display: none;
	padding: 16px 12px 12px;
	text-align: center;
}

.mobile-nav {
	position: fixed;
	top: 0px;
	left: -300px;
	width: 300px;
	max-width: 100%;
	height: 100%;
	border-right: 1px solid var(--grey);
	background: #fff;
	overflow: auto;
	z-index: 999999;
	transition: left 0.7s ease;
}
.mobile-nav.active {
	left: 0;
}

.mobile-nav .menu-primary-container {
	padding-bottom: 60px;
}

.mobile-nav .ewmodal-btn-close {
	position: fixed;
	top: auto;
	right: auto;
	bottom: 0;
	left: -300px;
	width: 300px;
	max-width: 100%;
	padding: 16px;
	background: var(--grey);
	color: #fff;
	text-align: left;
	cursor: pointer;
	transition: left 0.7s ease, color 0.2s ease;
}

.mobile-nav.active .ewmodal-btn-close {
	left: 0;
}

.mobile-nav p {
	margin: 0;
	font-size: 1.8rem;
}

.mobile-nav i.icon-close {
	position: absolute;
	top: 50%;
	right: 8px;
	transform: translateY(-50%);
}

.mobile-nav i.icon-close:before {
	font-size: 2.6rem;
}

.mobile-nav ul {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav ul li {
	position: relative;
}

.mobile-nav ul a {
  display: block;
  padding: 16px;
  font-size: 1.8rem;
  color: var(--grey);
}
.mobile-nav ul a:hover {
	background: var(--grey);
  color: #fff;
}

.mobile-nav li.menu-item-has-children > a {
	padding-right: 56px;
}

.mobile-nav .sub-menu {
  display: block;
  position: initial;
}

.mobile-nav .sub-menu > li > a {
	width: auto;
	padding-left: 28px;
	font-size: 1.6rem;
}

.mobile-nav .sub-menu .sub-menu > li > a {
	padding-left: 36px;
}


/* FRONT PAGE */


/* ARTICLE */
.pad {
	padding: 36px;
}
.pad.pad-more {
	padding: 60px;
}
.pad.pad-mid {
	padding: 24px;
}
.pad.pad-half {
	padding: 18px;
}
.pad.pad-less {
	padding: 12px;
}
.pad-h {
	padding: 0 32px;
}
.pad-h.less {
	padding: 0 12px;
}
.pad-v {
	padding: 36px 0;
}


/* LAYOUTS */
.two-col .col,
.three-two-col .col,
.three-col .col,
.text-with-image-wrapper .text-wrapper,
.text-with-image-wrapper .image-wrapper {
	width: 100%;
}

.two-col .col img,
.three-two-col .col img,
.three-col .col img {
	margin: 0 auto;
}

.banner-slider,
.banner-slide {
	position: relative;
}

.banner-caption {
	padding-bottom: 50px !important;
	color: #fff;
	background: var(--blue-d);
}

.banner-caption h2 {
	color: #fff;
	font-size: 3.4rem;
}

.banner-caption p {
	font-size: 2rem;
	font-weight: 600;
}

.banner-caption:not(:has(p)) :is(h1, h2),
.banner-caption p:last-child {
	margin-bottom: 0;
}

.slick-dots {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0;
	padding: 0 0 12px;
	text-align: center;
}
.slick-dots:not(:has(li:nth-child(2))) {
	display: none;
}

.slick-dots li {
	position: relative;
	display: inline-block;
	margin: 0 6px;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button {
	display: block;
	width: 12px;
	height: 12px;
	border: 2px solid var(--blue);
	border-radius: 50%;
	padding: 5px;
	background: var(--blue);
	color: transparent;
	font-size: 0;
	line-height: 0;
	cursor: pointer;
	outline: none;
	transition: background 0.2s ease;
}
.slick-dots li.slick-active button,
.slick-dots li:hover button {
	border-color: var(--grey);
	background: var(--grey);
}

.layout {
	margin: 30px 0;
}

.layout.single-column-text-wrapper,
.layout.two-column-text-wrapper {
	margin: 50px 0;
}

.intro-text-wrapper p {
	font-size: 2rem;
}

.text-with-image-wrapper .image-wrapper {
	margin: 0 auto 12px;
}
.text-with-image-wrapper.img-right .image-wrapper {
	margin: 12px auto 0;
}
.image-wrapper.cover {
	align-self: stretch;
}

.image-wrapper.cover .inner {
	position: relative;
	height: 100%;
	background: url() no-repeat center center / cover;
	z-index: 2;
}

.text-with-image-wrapper.img-right .image-wrapper {
	order: 2;
}

.feature-detail-wrapper > .w {
	border: 1px solid var(--grey);
	border-radius: 3px;
	padding: 20px;
}

.col-content-wrapper .grid {
	gap: 50px;
}

.col-content-wrapper .img-wrap {
	position: relative;
	margin-bottom: 22px;
	border: 1px solid var(--grey);
	border-radius: 3px;
	padding: 10px;
}
.col-content-wrapper a.img-wrap {
	display: block;
}

.col-content-wrapper .img-wrap .ewbtn {
	position: absolute;
	bottom: 0;
	left: 0;
	border-bottom: 0;
	border-left: 0;
	border-top-left-radius: 0;
	border-bottom-right-radius: 0;
	z-index: 2;
}

.col-content-wrapper .img-wrap img {
	margin: 0 auto;
}

.col-content-wrapper .txt-wrap {
	padding: 0 10px;
}

.team-wrapper .col:has(.position) h3 {
	margin-bottom: 3px;
}

.team-wrapper .position {
	color: var(--cyan);
	font-size: 1.5rem;
	font-weight: 600;
}

.single-column-image-wrapper figure,
.single-column-video-wrapper > .w {
	border: 1px solid var(--grey);
	border-radius: 3px;
	padding: 20px;
}

.single-column-image-wrapper img {
	margin: 0 auto;
}

.single-column-image-wrapper figcaption {
	margin-top: 20px;
	font-size: 1.6rem;
}

.two-column-image-wrapper .col:first-child,
.three-column-image-wrapper .col:not(:last-child) {
	margin-bottom: 12px;
}

.divider-wrapper > .w {
	position: relative;
	height: 8px;
}
.divider-wrapper > .w:before,
.divider-wrapper > .w:after {
	content: '';
	position: absolute;
	top: 0;
	left: -1px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--blue);
}
.divider-wrapper > .w:after {
	right: -1px;
	left: auto;
}

.layout-divider {
	width: 100%;
	margin: 0;
	border-bottom: 0;
	border-color: var(--grey);
	border-style: solid;
	background: var(--grey);
	color: var(--grey);
}

.layout-spacer {
	height: 18px;
}
.layout-spacer.med {
	height: 36px;
}
.layout-spacer.large {
	height: 60px;
}

.gallery-outer {
	line-height: 0;
}

.gallery-wrapper .grid.grid-4 {
	grid-template-columns: 1fr 1fr;
}

.gallery-wrapper .grid > div {
	overflow: hidden;
	border: 1px solid var(--grey);
	border-radius: 3px;
	padding: 10px;
}
.gallery-wrapper .grid > div:nth-child(n+9) {
	display: none;
}

.gallery-wrapper .grid a,
.gallery-slide a {
	cursor: zoom-in;
}

.gallery-wrapper .btn-wrap {
	padding: 30px 12px 0;
}

.gallery-slide img {
	margin: 0 auto;
}

.gallery-nav-arrow {
	position: relative;
	width: 30px;
	cursor: pointer;
}
.gallery-nav-arrow:before {
	content: '';
	position: absolute;
  top: 50%;
  top: calc(50% + 3px);
  left: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid var(--grey);
  border-top: 0;
  border-left: 0;
  transform: translate(-50%, -50%) rotateZ(135deg);
	transition: border;
}
.gallery-nav-arrow-right:before {
	transform: translate(-50%, -50%) rotateZ(-45deg);
}
.gallery-nav-arrow:hover:before {
	border-color: var(--blue);
}

.gallery-thumbnav {
	width: 90%;
	width: calc(100% - 90px);
}

.gallery-thumb-img {
	margin: 12px 6px 0;
	cursor: pointer;
}

.logos.flex {
	margin-top: 26px;
	gap: 13px 32px;
}

.faq:not(:last-child) {
	margin-bottom: 16px;
}

.faq-question {
	margin-bottom: 18px;
	cursor: pointer;
}
.faq:not(:first-child) .faq-question {
	border-top: 2px solid var(--grey-d);
}

.faq-label {
	padding: 28px 32px 0;
	font-size: 3rem;
	line-height: 1;
}

.faq-question .ewbtn {
	width: 34px;
	height: 32px;
	margin: -1px 0 0 auto;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	flex-shrink: 0;
}

.faq-answer {
	display: none;
	padding: 0 64px 24px 0;
	background: var(--grey);
	color: #fff;
}

.faq dt {
	padding: 28px 30px 0 0;
}

.faq dd {
	margin-left: 0;
	padding-top: 28px;
}

.faq p:last-child {
	margin-bottom: 0;
}

.newsletter-wrapper,
.cta-wrapper {
	padding: 60px 32px;
	background: var(--cyan) url('assets/images/bg-newsletter.png') no-repeat right -166px center / 496px;
	color: #fff;
	font-size: 1.8rem;
}
.cta-wrapper {
	background-color: var(--blue);
}

.newsletter-wrapper h2,
.cta-wrapper h2 {
	color: #fff;
}

.newsletter-wrapper .dotted-line {
	background: var(--grey-d);
}

.newsletter-form {
	max-width: 856px;
	margin: 30px auto;
}

.newsletter-form .flex {
	gap: 25px 50px;
}

.newsletter-form input {
	max-width: 252px;
	border-color: #fff;
	color: var(--grey-d);
}
.newsletter-form input[type="submit"],
.newsletter-form button {
	margin-top: 30px;
	border-color: var(--grey);
	color: var(--blue);
}
.newsletter-form input[type="submit"]:hover,
.newsletter-form button:hover {
	border-color: var(--blue-d);
	color: #fff;
}

.newsletter-wrapper p:last-child,
.cta-wrapper p:last-child {
	margin-bottom: 0;
}

.cta-wrapper .flex {
	gap: 30px;
}

.cta-wrapper .cta-btn {
	flex-shrink: 0;
}

.double-cta-wrapper .cta {
	padding: 32px;
	border-radius: 3px;
	background: var(--cyan);
	color: #fff;
}

.double-cta-wrapper h3 {
	color: #fff;
}

.double-cta-wrapper .dotted-line,
.cards-wrapper .dotted-line {
	background: var(--grey-d);
}

.double-cta-btn {
	margin-top: auto;
}

.multi-attachment-wrapper > .w {
	border: 1px solid var(--grey);
	border-radius: 3px;
	padding: 20px;
	gap: 30px;
}

.ma-img {
	width: 300px;
	flex-shrink: 0;
}

.ma-img img {
	object-fit: cover;
	height: 100%;
}

.ma-downloads {
	max-width: 600px;
	margin: 30px 0 0 auto;
	padding-left: 0;
	list-style: none;
}

.ma-downloads li {
	display: flex;
	justify-content: space-between;
	gap: 18px;
}
.ma-downloads li:not(:last-child),
.card-links li:not(:last-child) {
	margin-bottom: 12px;
}

.ma-downloads li span {
	color: var(--blue);
	font-weight: 500;
}

.cards-wrapper {
	padding: 60px 32px;
	background-color: var(--cyan);
}

.cards-wrapper h2 {
	color: #fff;
}

.cards-wrapper .flex {
	gap: 30px;
}

.cards-wrapper .card {
	width: 30%;
	width: clamp(280px, 400px, calc(33.3% - 20px));
	border: 1px solid var(--grey);
	border-radius: 6px;
	padding: 30px;
	background: #fff;
	gap: 0;
}
.cards-wrapper:has(.card:nth-child(4)) .card {
	width: 20%;
	width: clamp(280px, 292px, calc(25% - 22px));
}

.cards-wrapper .card h3 {
	margin-top: 18px;
}

.card-links {
	margin: auto auto 0;
	padding-left: 0;
	list-style: none;
}


/* CONTACT PAGE & FORM */
.key-contact > .inner {
	border: 1px solid var(--grey);
	border-radius: 3px;
	padding: 22px;
}

.key-contact address {
	margin-bottom: 30px;
}

.key-contact a.email {
	font-weight: 600;
}

.key-contact p:has(+ .socials),
.key-contact p:has(+ .ewbtn) {
	margin-bottom: 8px;
}

.key-contact .socials {
	margin-bottom: 14px;
}

.key-contact .ewbtn {
	font-weight: 800;
}

.gform_wrapper.gravity-theme .gfield_label {
	font-size: 1.4rem !important;
	font-weight: 400 !important;
}

.gform_wrapper .ginput_counter {
	text-align: right;
}

.gform_confirmation_message {
	font-size: 1.8rem;
}


/* BLOG */
.news-desc {
	margin-bottom: 50px !important;
}

.archive-with-sidebar {
	display: grid;
	gap: 30px;
}

.post-feed-post:has(a:hover h3.post-title) .img-wrap .ewbtn {
	border-color: var(--blue-d);
  background: var(--blue);
  color: #fff;
}

.post-feed-post {
	background: #fff;
	overflow: hidden;
}

h3.post-title {
	transition: color 0.2s ease-in-out;
}
.post-feed-post a:hover h3.post-title,
.post-feed-post:has(a.img-wrap:hover) h3.post-title {
	color: var(--cyan);
}

.post-date p {
	font-size: 1.5rem;
	font-weight: 600;
}

.pagination {
	font-size: 0;
}

.pagination a {
	color: var(--grey-d);
	text-decoration: none;
}
.pagination a:hover,
.pagination .page-numbers.current {
	background: var(--blue);
	color: #fff;
}

.pagination > a,
.pagination > span,
ul.page-numbers a,
ul.page-numbers span {
	display: inline-block;
	min-width: 40px;
	height: 40px;
	margin: 0 3px;
	border: 1px solid var(--grey);
	border-radius: 3px;
	padding: 6px;
	font-size: 1.8rem;
	line-height: 1.5;
}

.pagination a i.icon,
.pagination a > span {
	display: inline-block;
	vertical-align: middle;
}
.pagination a i.icon:before {
	font-size: 2.2rem;
}


/* EVENTS */
.events-btn-wrap {
	padding: 30px 0 20px;
}

.intro-text-wrapper:has(.event-date) h1 {
	margin-bottom: 6px;
}

.event-date {
	text-align: center;
	color: var(--grey);
	font-size: 1.8rem !important;
	font-weight: 500;
}


/* INSIGHTS */
.post-feed-post:has(.archive-tagline) h3.post-title {
	margin-bottom: 12px;
}

.archive-tagline h4 {
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--grey);
}

.post-feed-post .txt-wrap.flex {
	flex-grow: 1;
}

.archive-search-wrap .search-form {
	position: relative;
	margin: 30px auto 50px;
	font-size: 2rem;
}

.archive-search-bar {
	width: 100%;
	padding-right: 36px !important;
}

.archive-search-wrap .ewbtn {
	margin-left: 18px;
	padding: 9px 20px;
	flex-shrink: 0;
}

.clear-search {
	display: none;
	position: absolute;
	top: 50%;
	right: 94px;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
	cursor: pointer;
}
.clear-search.active {
	display: block;
}
.clear-search:before,
.clear-search:after {
	content: '';
	display: block;
	position: absolute;
	width: 20px;
	height: 2px;
	background: var(--grey);
	transform: translateY(8px) rotateZ(45deg);
}
.clear-search:after {
	transform: translateY(8px) rotateZ(-45deg);
}

.mobile-filters-bg {
	display: none;
}

.ew-apply-filters {
	width: 100%;
	margin-bottom: 6px !important;
}
.filters-form:not(:has(.reset-filter.active)) .ew-apply-filters {
	margin-bottom: 18px !important;
}

.ew-apply-filters.bottom {
	margin: 18px 0 0 !important;
}

.filters-search {
	display: none;
}

.reset-filter {
	display: none;
	margin-bottom: 18px;
	font-size: 1.5rem;
}
.reset-filter.active {
	display: block;
}

.filter-set {
	margin: 0 0 12px;
	border: 1px solid var(--grey);
	border-radius: 3px;
	padding: 10px;
}

.filter-heading {
	position: relative;
	margin-bottom: 0;
	padding-right: 16px;
	color: var(--blue);
	font-weight: 600;
	cursor: pointer;
}
.filter-heading.open {
	margin-bottom: 12px;
}
.filter-heading:after {
	content: '^';
	position: absolute;
	display: inline-block;
	top: 0;
	right: 0;
	margin-left: 5px;
	transform: rotateZ(180deg);
	font-family: monospace;
	line-height: 0.8;
	transition: transform 0.2s ease;
}
.filter-heading.open:after {
	transform: rotateZ(0) translateY(50%);
}

.filter-set-options {
	display: none;
	padding: 0 10px;
}

.filter-set-options p {
	margin-bottom: 9px;
	line-height: 1.1;
}
.filter-set-options p:last-child {
	margin-bottom: 0;
}

.filter-set-options label {
	font-size: 1.4rem;
}

.filter-set-options input {
	width: 14px;
	height: 14px;
	margin-right: 6px;
	flex-shrink: 0;
}


/* TESTIMONIALS */
.testimonials-wrapper .slick-arrow {
	position: relative;
	display: block;
	width: 30px;
	height: 30px;
	margin: 0 0 0 12px;
	border: 0;
	border-top: 2px solid var(--blue);
	border-left: 2px solid var(--blue);
	background: transparent;
	font-size: 0;
	text-indent: -9999px;
	flex-shrink: 0;
	overflow: hidden;
	cursor: pointer;
	transform: rotate(-45deg);
}
.testimonials-wrapper .slick-arrow.slider-next {
	margin: 0 12px 0 0;
	border: 0;
	border-top: 2px solid var(--blue);
	border-right: 2px solid var(--blue);
	transform: rotate(45deg);
}

.testimonials-slider {
  position: relative;
  width: 80%;
  width: calc(100% - 84px);
}

.testimonials-slider-slides-slide {
	margin-top: 12px;
	padding: 0 36px;
	text-align: left;
}

.testimonial-text p {
	font-size: 1.8rem;
	font-weight: 300;
	font-style: italic;
}

.testimonial-attribution {
	font-size: 1.6rem;
	font-weight: 400;
	font-style: normal;
}

.testimonial-attribution .name {
	font-weight: 600;
}

.testimonials-slider-wrapper .slick-arrow {
	cursor: pointer;
}

.testimonials-slider-wrapper i.icon:before {
	color: var(--blue);
	font-size: 2.4rem;
}
.testimonials-slider-wrapper .slick-arrow:hover i.icon:before {
	color: var(--grey);
}


/* FOOTER */
footer.footer {
	position: relative;
	background: var(--blue);
	color: #fff;
	text-align: center;
	z-index: 2;
}

footer .top {
	padding: 32px;
}

footer li {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: 800;
	text-transform: uppercase;
}

footer li a {
	display: block;
	padding: 10px 18px;
}
footer li a:hover {
	color: var(--grey-d) !important;
}

footer a {
	color: #fff !important;
}

.footer-links {
	gap: 19px;
}

footer .socials {
	margin-top: 6px;
}

footer .socials a {
	border-color: #fff;
}

footer .socials svg path {
	fill: #fff;
}
footer .socials a:hover svg path {
	fill: var(--grey-d);
}

footer .bottom {
	padding: 12px 18px;
	background: var(--grey-d);
	font-size: 1.6rem;
}

footer .bottom a:hover {
	text-decoration: underline;
}


/* MODAL */
html.locked {
	overflow: hidden;
}

.modal-bg {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.4);
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s ease, visibility 0.4s ease;
	z-index: 9999;
}
.modal-bg.active {
	visibility: visible;
	opacity: 1;
}

.modal-window {
	background: #fff;
	position: fixed;
	top: -100vh;
	left: 50%;
	bottom: auto;
	width: 80%;
	height: 80%;
	padding-top: 60px !important;
	transition: visibility 0.2s ease, top 0.4s ease;
	transform: translate(-50%, -50%);
	z-index: 99999;
	overflow-y: scroll;
}
.modal-window.active {
	top: 50%;
	visibility: visible;
}

.ewmodal-btn-open {
	cursor: pointer;
}

.ewmodal-btn-close {
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px;
	color: var(--grey);
	text-align: center;
	cursor: pointer;
	transition: color 0.2s ease;
}
.ewmodal-btn-close:hover {
	color: var(--grey-d);
}

.ewmodal-btn-close i.icon:before {
	font-size: 2.4rem;
}

button.modal-open {
	margin-bottom: 10px;
	border-radius: 3px;
}


/* MISC */
a.button,
a.ewbtn,
.ewbtn,
.gform_button.button {
	display: inline-block;
	margin: 0;
	border: 1px solid var(--grey);
	border-radius: 3px;
	padding: 9px 11px;
	background: #fff;
	color: var(--blue);
	font-size: 1.6rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	transition: all 0.18s ease-in-out;
}
a.button:hover,
a.ewbtn:hover,
.ewbtn:hover,
a:hover span.ewbtn,
.gform_button.button:hover,
.ewbtn.alt {
	border-color: var(--blue-d);
	background: var(--blue);
	color: #fff;
}
.ewbtn.alt:hover {
	background: var(--blue-d);
}

.ewbtn.margin {
	margin: 12px;
}

.ew-scroll-top {
	display: none;
	position: fixed;
	right: 18px;
	bottom: 18px;
	width: 42px;
	height: 42px;
	border: 1px solid #fff;
	border-radius: 3px;
	background: var(--grey-d);
	color: #fff;
	text-align: center;
	cursor: pointer;
	z-index: 3;
	overflow: hidden;
}
.ew-scroll-top:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--blue);
	transform-origin: center top;
	transform: scaleY(0);
	transition: transform 0.18s ease-in-out;
	z-index: 1;
}
.ew-scroll-top:hover:before {
	transform-origin: center bottom;
	transform: scaleY(1);
}
.ew-scroll-top:after {
	content: '';
	position: absolute;
	top: 50%;
	top: calc(50% + 3px);
	left: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: translate(-50%, -50%) rotateZ(225deg);
	z-index: 2;
}

.centred {
	text-align: center;
}

.dotted-line {
	position: relative;
	width: 100px;
	height: 1px;
	margin: 29px auto;
	background: var(--grey);
}
.dotted-line:before,
.dotted-line:after {
	content: '';
	position: absolute;
	top: -4px;
	left: -1px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--blue);
}
.dotted-line:after {
	right: -1px;
	left: auto;
}

.socials {
	gap: 19px;
}

.socials a {
	display: flex;
	width: 25px;
	height: 25px;
	border: 1px solid var(--grey);
	justify-content: center;
	align-items: center;
}

.socials svg {
	height: 14px;
}

.socials svg path {
	transition: fill 0.18s ease-in-out;
}
.socials a:hover svg path {
	fill: var(--grey);
}

i.icon {
	font-size: 0;
}
i.icon:before {
	font-size: 3.8rem;
}

.responsive-embed {
	position: relative;
	padding-bottom: 56.25%;
	max-width: 100%;
	height: 0;
	overflow: hidden;
}
.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.hidden {
	opacity: 0;
	visibility: hidden;
}
.nodisplay {
	display: none;
}


/* WOOCOMMERCE */


/* WORDPRESS CORE */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  max-width: 98.5%;
	width: auto;
	height: auto;
	margin: 0;
	border: 0 none;
  padding: 0;
}

.wp-caption p.wp-caption-text {
	margin: 0;
  padding: 0 4px 5px;
  font-size: 1.1rem;
  line-height: 17px;
}

.screen-reader-text {
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	overflow: hidden;
	position: absolute !important;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	display: block;
	top: 5px;
	left: 5px;
	width: auto;
	height: auto;
	background-color: #eee;
	padding: 15px 23px 14px;
	clip: auto !important;
	clip-path: none;
	color: #444;
	font-size: 1em;
	line-height: normal;
	text-decoration: none;
	z-index: 100000;
}


/* Media Queries */
@media screen and (min-width: 461px) {
	.logos .slick-track {
		display: flex !important;
		justify-content: center;
		align-items: center;
	}
}

@media screen and (min-width: 600px) {
	.grid-4,
	.grid-3-2,
	.grid-2 {
		grid-template-columns: 1fr 1fr;
	}
	.gallery-wrapper .grid.grid-4 {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media screen and (min-width: 720px) {
	textarea,
	input:not([type="submit"]) {
		padding: 12px;
	}

	.two-col .col,
	.three-two-col .col {
		width: 48%;
		width: calc(50% - 12px);
	}

	.form-wrapper .two-col .col {
		width: 46%;
		width: calc(50% - 25px);
	}

	.text-with-image-wrapper .image-wrapper {
		position: relative;
		width: 50%;
		margin: 0 auto !important;
		border: 1px solid var(--grey);
		border-radius: 3px;
		padding: 20px 20px 20px 0;
		z-index: 1;
	}
	.text-with-image-wrapper.img-quarter .image-wrapper {
		width: 25%;
	}
	.text-with-image-wrapper.img-right .image-wrapper {
		padding: 20px 0 20px 20px;
	}
	.text-with-image-wrapper .image-wrapper:before {
		content: '';
		position: absolute;
		top: -1px;
		right: 50%;
		bottom: -1px;
		left: -1px;
		background: #fff;
		z-index: 1;
	}
	.text-with-image-wrapper.img-right .image-wrapper:before {
		right: -1px;
		left: 50%;
	}

	.text-with-image-wrapper.feature-detail-wrapper .image-wrapper {
		width: 40%;
		border: 0;
		border-radius: 0;
		padding: 0;
	}
	.text-with-image-wrapper.feature-detail-wrapper .image-wrapper:before {
		content: none;
	}

	.text-with-image-wrapper.feature-detail-wrapper .image-wrapper.cover img {
		height: 0;
	}

	.text-with-image-wrapper .image-wrapper .inner,
	.text-with-image-wrapper .image-wrapper .responsive-embed {
		position: relative;
		z-index: 2;
	}

	.text-with-image-wrapper .image-wrapper img,
	.text-with-image-wrapper .video-wrapper {
		margin: 0;
	}

	.text-with-image-wrapper .text-wrapper {
		position: relative;
		width: 50%;
		padding: 20px 0;
		z-index: 2;
	}
	.text-with-image-wrapper.img-quarter .text-wrapper {
		width: 75%;
	}
	.text-with-image-wrapper.img-left .text-wrapper {
		padding-left: 32px;
	}
	.text-with-image-wrapper.img-right .text-wrapper {
		padding-right: 32px;
	}

	.text-with-image-wrapper .text-wrapper h2 {
		position: relative;
		margin-bottom: 50px;
	}
	.text-with-image-wrapper .text-wrapper h2:before {
		content: '';
		position: absolute;
		bottom: -23px;
		right: 0;
		left: -32px;
		height: 1px;
		background: var(--grey);
		z-index: 1;
	}
	.text-with-image-wrapper.img-right .text-wrapper h2:before {
		right: -32px;
		left: 0;
	}
	.text-with-image-wrapper .text-wrapper h2:after {
		content: '';
		position: absolute;
		bottom: -26.5px;
		left: -36.5px;
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: var(--blue);
		z-index: 2;
	}
	.text-with-image-wrapper.img-right .text-wrapper h2:after {
		right: -36.5px;
		left: auto;
	}

	.text-with-image-wrapper.feature-detail-wrapper .text-wrapper {
		width: 60%;
	}

	.text-with-image-wrapper.feature-detail-wrapper .text-wrapper h2 {
		margin-bottom: 18px;
	}
	.text-with-image-wrapper.feature-detail-wrapper .text-wrapper h2:before,
	.text-with-image-wrapper.feature-detail-wrapper .text-wrapper h2:after {
		content: none;
	}

	.two-column-image-wrapper .col:first-child {
		margin-bottom: 0;
	}

	.cta-wrapper .flex {
		gap: 90px;
	}
}

@media screen and (min-width: 840px) {
	.three-col .col {
		width: 31%;
		width: calc(33.3% - 12px);
	}

	.grid-3-2 {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.three-column-image-wrapper .col {
		margin-bottom: 0 !important;
	}

	.content-with-sidebar .content-sidebar {
		width: 29%;
	}

	.content-with-sidebar .content-main {
		width: 67%;
	}
}

@media screen and (min-width: 960px) {
	.banner-caption {
		position: absolute;
		top: 50%;
		left: 50%;
		max-width: 1294px;
		width: 80%;
		width: calc(100% - 36px);
		padding: 18px !important;
		background: transparent;
		color: #fff;
		text-align: left;
		z-index: 2;
		transform: translate(-50%, -50%);
	}
	.banner-caption.overlay {
		background: rgba(112, 111, 111, 0.6);
	}

	.grid-4,
	.gallery-wrapper .grid.grid-4 {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}

@media screen and (min-width: 1080px) {
	.archive-with-sidebar {
		grid-template-columns: 230px auto;
	}

	.mobile-filters-open {
		display: none;
	}
}

@media screen and (min-width: 1330px) {
	.banner-caption h2 {
		font-size: 4.4rem;
	}

	.banner-caption p {
		font-size: 2.2rem;
	}
}

@media screen and (max-width: 1330px) {
	html:has(.hamburger-switch:checked) {
		overflow-y: hidden;
	}

	header .top {
		padding-bottom: 25px;
	}

	.header-links {
		margin-right: 31px;
	}

	nav.ew-menu {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 600;
	}

	nav.ew-menu > .wrap {
		position: relative;
	}

	.hamburger {
		position: absolute;
		display: flex;
		top: 25px;
		right: 18px;
		gap: 8px;
		z-index: 1000;
		-webkit-tap-highlight-color: transparent;
	}
	.admin-bar .hamburger {
		top: 57px;
	}

	.hamburger .grid {
		display: grid;
		gap: 5px;
		place-items: center;
	}

	.ew-menu .menu {
		position: fixed;
		display: none;
		top: -100vh;
		left: 0;
		width: 100%;
		height: 100vh;
		margin-top: 0;
		padding: 60px 20px 20px;
		background-color: rgba(255,255,255,0.90);
		overflow-y: auto;
		z-index: 999;
		backdrop-filter: blur(10px);
		transition: top 0.3s ease;
	}
	.hamburger-switch:checked ~ .menu {
		display: block !important;
		top: 0;
		place-content: center;
	}

	.ew-menu .menu li {
		display: block;
		max-width: 600px;
		margin: 0 auto;
	}

	.ew-menu li.menu-item-has-children:after,
	.ew-menu li.menu-item-has-children > a:after {
		content: none;
	}

	.ew-menu .sub-menu {
		position: initial;
		display: block;
		margin-bottom: 12px;
		padding: 0;
		background: unset;
		text-align: center;
	}

	.ew-menu .sub-menu > li > a {
		width: unset;
		padding: 3px 6px;
		background: transparent !important;
		color: var(--blue) !important;
		font-size: 85% !important;
	}
}

@media screen and (max-width: 1079px) {
	html:has(.archive-sidebar.mobile-form-open) {
		overflow-y: hidden;
	}

	.filters-form {
		position: fixed;
		top: 0;
		bottom: 0;
		left: -300px;
		max-width: 100%;
		width: 300px;
		border-right: 1px solid var(--blue);
		padding: 50px 18px;
		background: #fff;
		overflow-x: scroll;
		transition: left 0.2s ease;
		z-index: 9;
	}
	.archive-sidebar.mobile-form-open .filters-form {
		left: 0;
	}

	.archive-sidebar.mobile-form-open .mobile-filters-bg {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: var(--blue-t);
		backdrop-filter: blur(10px);
		z-index: 7;
	}
}

@media screen and (max-width: 840px) {
	.header-logo {
		width: 100%;
		text-align: center;
		order: 3;
	}

	.header-logo-link {
		display: inline-block;
	}

	.header-links {
		width: 100%;
		order: 1;
		justify-content: space-between;
	}

	.hamburger-switch:checked ~ .menu {
		padding-top: 109px;
	}

	.multi-attachment-wrapper > .w {
		flex-direction: column;
	}

	.ma-img {
		width: 100%;
	}
}

@media screen and (max-width: 600px) {
	header .top {
		margin-top: 58px;
	}

	.admin-bar .hamburger {
		top: 71px;
	}

	.pad,
	.pad.pad-more {
		padding: 18px;
	}
	.pad-h {
		padding: 0 18px;
	}

	.testimonials-slider {
		width: 100%;
	}

	.testimonials-slider-wrapper .slick-arrow {
		display: none !important;
	}

	.cta-wrapper .flex {
		flex-direction: column;
	}

	.cta-text {
		width: 100%;
	}

	.cta-btn {
		margin-left: auto;
	}
}

@media screen and (max-width: 500px) {
	.modal-window {
		width: 95%;
	}

	.single-column-image-wrapper figure,
	.single-column-video-wrapper > .w,
	.feature-detail-wrapper > .w,
	.multi-attachment-wrapper > .w {
		padding: 10px;
	}

	.ma-downloads li {
		display: block;
	}
	.ma-downloads li:not(:last-child) {
		margin-bottom: 18px;
	}

	.ma-downloads li span {
		display: block;
		margin-bottom: 6px;
	}

	.faq-label {
		padding: 12px 12px 0 8px;
	}

	.faq dt {
		padding: 12px 8px 0 0;
	}

	.faq-answer {
		padding: 0 34px 24px 0;
	}

	.faq dd {
		padding: 12px 0 0 4px;
	}

	.archive-search-wrap .search-form {
		font-size: 1.5rem;
	}

	.archive-search-wrap .ewbtn {
		margin-left: 6px;
		padding: 9px 11px;
	}

	.clear-search {
		right: 62px;
	}

	footer .credit :is(span, a) {
		display: block;
	}
	footer .credit a {
		margin-top: 9px;
	}

	footer .credit .separator {
		display: none !important;
	}
}

@media screen and (max-width: 400px) {
	header .w {
		padding: 25px 18px 0;
	}

	.header-links {
		margin-right: 0;
		flex-wrap: wrap;
	}

	header .socials {
		width: 100%;
		margin: 0 auto;
		justify-content: center;
	}

	header a.network-btn {
		margin: 12px auto;
	}

	header .network-btn br {
		display: none;
	}

	.cards-wrapper .card {
		padding: 20px;
	}

	.faq-label {
		font-size: 2rem;
	}

	.faq p {
		font-size: 1.5rem;
	}
}


/* GRID */
.grid {
	display: grid;
	gap: 30px;
}


/* FLEX - No styles below this */
.flex {
	display: -webkit-box;
	display: -moz-box;
	display: box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.flexcol {
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.flexrow {
	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	box-orient: horizontal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}
.flexdirection {
	-webkit-box-direction: normal;
	-moz-box-direction: normal;
	box-direction: normal;
}
.flexdirectionreverse {
	-webkit-box-direction: reverse;
	-moz-box-direction: reverse;
	box-direction: reverse;
}
.flexstretch {
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: stretch;
	justify-content: space-between;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-box-align: stretch;
	-moz-box-align: stretch;
	box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.flexwrap {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flexorder {
	-webkit-box-ordinal-group: 1;
	-moz-box-ordinal-group: 0;
	box-ordinal-group:0;
	-webkit-order: 0;
	-ms-flex-order: 0;
	order: 0;
}
.flexi {
	-webkit-box-flex: 1;
	-moz-box-flex: 1 0 auto;
	box-flex:1 0 auto;
	-webkit-flex: 1 0 auto;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	word-wrap:break-word;
	-moz-transition: all ease-in-out 0.2s;
	-o-transition: all ease-in-out 0.2s;
	-webkit-transition: all ease-in-out 0.2s;
	transition: all ease-in-out 0.2s;
}
.flexone {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
	flex: 1 1 auto;
}
.flexzero {
	-webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
	flex: 1 1 0;
}
.flexiq {
  flex: 1 0 25%;
}
.flexistretch {
	-webkit-align-self: stretch;
	-ms-flex-item-align: stretch;
	align-self: stretch;
}

.flexcenter {
	-webkit-justify-content: center;
	-moz-justify-content: center;
	justify-content: center;
}

.flexend {
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	justify-content: flex-end;
}

.flexvstart {
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

.flexvcenter {
	-webkit-align-items: center;
	align-items: center;
}

.flexvend {
	-webkit-align-items: flex-end;
	align-items: flex-end;
}

@media print {
  #modalWindow,
  #modalbg {
    display: none !important;
  }
}
