/*
 Theme Name:   ParamountPress
 Theme URI:    http://localhost/website
 Description:  ParamountPress - Paramounts own Wordpress Theme
 Author:       Paramount Digital
 Author URI:   http://paramountdigital.co.uk
 Template:     generatepress
 Version:      1.0.0
*/

/* colour variables */
:root {
	--green: #8DBD3F;
	--grey: #2F2F2F;
	--light-grey: #F9F9F9;
	--text: #262626;
	--black: #262626;
}

html {
  	box-sizing: border-box;
	font-size: 14px;
	font-family: "usual", sans-serif;
}
h1, h2, h3, h4, h5 {
	display: inline-block;
	clear: both;
	width: 100%;
	font-family: "le-monde-livre-classic-byol", serif;
	font-display: swap;
	line-height: 1.2;
	letter-spacing: -0.04em;
}
*, *:before, *:after {
	box-sizing: inherit;
	min-height: 0;
	min-width: 0;
}
a, a:visited {
	transition: color 0.3s ease-in-out;
}
a:hover, a:focus, a:active {
	transition: color 0.3s ease-in-out;
}
.entry-content a:not(.content-button) {
	text-decoration: underline;
	text-underline-position: under;
}
textarea {
	height: 165px;
}
blockquote {
	width: 100%;
	background: var(--light-grey);
}
.wp-block-quote p {
	font-size: 17px;
}
.wp-block-pullquote p {
	font-size: 17px;
}
.wp-block-pullquote cite {
	font-size: 16px;
}
.wp-block-preformatted {
	line-height: 1.5;
}
.wp-block-pullquote {
    width: 100%;
	padding: 0;
	margin: 0;
}
.grecaptcha-badge { 
    visibility: hidden;
}

.white + .white {
    padding-top: 0;
}

.content.wide-section + .accordions-section {
    padding: 5em 0;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    line-height: 20px;
	position: relative;
	font-family: "nimbus-sans", sans-serif;
	font-display: swap;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	letter-spacing: -0.03em;
}
ul, ol {
	margin: 0 0 1.5em 1.5em;
}
strong {
	font-weight: 600;
}
hr {
	margin: 2em 0 !important;
	height: 2px;
    background-color: rgba(0,0,0,.05);
}

/* fluid font typography */
h1 {
	font-size: 22px;
	font-style: normal;
}
.page-hero .main-heading {
	font-size: 22px;
	color: #fff;
}
h2 {
	font-size: 28px;
	font-style: normal;
}
h3 {
	font-size: 26px;
}
h4 {
	font-size: 18px;
}
h5 {
	font-size: 16px;
}
@media screen and (min-width: 320px) {
	h1 {
		font-size: calc(22px + 6 * ((100vw - 320px) / 680));
	}
	.page-hero .main-heading {
		font-size: calc(22px + 6 * ((100vw - 320px) / 680));
	}
	h3 {
		font-size: calc(26px + 6 * ((100vw - 320px) / 680));
	}
	h4 {
		font-size: calc(18px + 6 * ((100vw - 320px) / 680));
	}
	h5 {
		font-size: calc(16px + 6 * ((100vw - 320px) / 680));
	}
}
@media screen and (min-width: 1000px) {
	.page-hero .main-heading {
		font-size: 38px;
		line-height: 43px;
	}
	.page-hero:not(.home) .main-heading {
		font-size: 44px;
	}
	h1 {
		font-size: 48px;
	}
	h2 {
		font-size: 30px;
	}
	h3 {
		font-size: 28px;
	}
	h4 {
		font-size: 20px;
	}
	h5 {
		font-size: 18px;
	}
}
.team_members .entry-title, .team_members .member-role {
	font-size: 20px;
	font-family: "le-monde-livre-classic-byol", serif;
	line-height: 1.2;
    letter-spacing: -0.04em;
}

/* jquery modal */
.blocker {
	z-index: 999 !important;
	background: -o-linear-gradient(45deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.3) 100%);
	background: linear-gradient(45deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.3) 100%);
}
.modal {
	display: none;
}
.modal.is-open {
	display: block;
    position: relative;
    z-index: 99999;
}
.modal-overlay {
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	padding: 20px;
}
.modal .modal-container {
	background-color: var(--grey);
    max-width: 560px;
    max-height: 80vh;
    border-radius: 4px;
    overflow-y: auto;
	color: #fff;
	padding: 20px;
}
.modal-container header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.modal-container header h2 {
    margin-bottom: 0;
}
.modal .modal-container .modal-header {
	position: relative;
	text-align: center;
	padding: 30px 30px 0;
}
.modal .modal-container .modal-content {
	padding: 30px;
}
.modal .modal-container .modal-header .main-heading {
	color: #fff;
}
.modal-header button[data-micromodal-close] {
	position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    white-space: nowrap;
    overflow: hidden;
	padding: 0;
	border: none;
	background-color: transparent;
}
button[data-micromodal-close]:has(svg) {
    padding: 10px;
}
.modal-header button[data-micromodal-close]::before {
	content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 19 19" fill="none"><path d="M2.96875 9.5H16.0312" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M9.5 2.96875V16.0312" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	display: inline-block;
    vertical-align: middle;
    line-height: 1;
    padding: 5px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
.modal form input[type="text"],
.modal form input[type="tel"],
.modal form input[type="email"] {
	width: 100%;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    font-family: inherit;
    letter-spacing: -0.03em;
    color: #C3C3C3;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 10px 20px;
}
.modal form input[type="checkbox"] {
	width: 16px;
    height: 16px;
    vertical-align: middle;
    line-height: 16px;
    display: inline-block;
    margin-right: 6px;
}
.modal form {
	display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr[2];
    grid-template-columns: repeat(2,minmax(0,1fr));
    grid-gap: 20px;
    grid-auto-flow: row;
    width: 100%;
}
.modal form .wpcf7-list-item-label p {
	margin: 0;
}
.modal form .accept,
.modal form .submit {
	grid-column: -1 / 1;
    text-align: center;
	position: relative;
}
.modal form .wpcf7-spinner {
	position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.modal form .wpcf7-list-item-label {
	display: inline-block;
    vertical-align: top;
    width: calc(100% - 22px);
}
.modal form a:hover {
	color: #fff;
}
.modal form label {
	position: relative;
	display: inline-block;
}
.modal form .wpcf7-list-item {
	margin: 0;
    text-align: left;
}
.modal form label.postcode {
	grid-column: -1 / 1;
	text-align: left;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.modal form label.postcode span {
	width: 100%;
    margin-bottom: 8px;
}
@media (max-width: 575px) {
	.modal form {
		-ms-grid-columns: 1fr[1];
    	grid-template-columns: repeat(1,minmax(0,1fr));
	}
}

/* readmore */
.article-content, .banner-content {
	overflow: hidden;
	max-height: 18em; /* custom sizing */
	-webkit-transition: height 0.3s ease-in-out;
	-o-transition: height 0.3s ease-in-out;
	transition: height 0.3s ease-in-out;
	position: relative;
}
.banner-content {
	max-height: 14em;
}
.centre-content .article-content {
	max-height: 6em;
}
.article-content.no-readmore {
	max-height: none;
}
.article-content.no-readmore + .content-buttons {
	margin-top: 15px;
    width: 100%;
}
a[data-readmore-toggle] {
	width: auto;
	position: relative;
	padding: 10px 10px 0 0;
}
.article-content a.download-link {
	padding: 11px 23px;
    background: #F4F4F4;
    border-radius: 50px;
	color: #383838;
	text-decoration: none;
	position: relative;
	margin-bottom: 1.5em;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.article-content a.download-link:hover,
.article-content a.download-link:focus {
	color: #fff;
	background-color: var(--black);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.article-content a.download-link::after {
	content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="11" height="14" viewBox="0 0 11 14" fill="none"><path d="M5.6875 1.40625V10.7812" stroke="rgb(58, 58, 58)" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/><path d="M1.46875 6.5625L5.6875 10.7812L9.90625 6.5625" stroke="rgb(58, 58, 58)" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/><path d="M1 12.6562H10.375" stroke="rgb(58, 58, 58)" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    vertical-align: middle;
	display: inline-block;
	margin-left: 10px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.article-content a.download-link:hover::after,
.article-content a.download-link:focus::after {
	content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="11" height="14" viewBox="0 0 11 14" fill="none"><path d="M5.6875 1.40625V10.7812" stroke="white" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/><path d="M1.46875 6.5625L5.6875 10.7812L9.90625 6.5625" stroke="white" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/><path d="M1 12.6562H10.375" stroke="white" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
a[data-readmore-toggle] + .content-buttons {
	margin-top: 1.5em;
}
@media (min-width: 992px) {
	.content[data-orientation="flip"] .article-content a.download-link {
		float: right;
	}
}
@media (max-width: 991px) {
	.centre-content .article-content.readmore {
		max-height: 8.5em;
	}
	.banner-content {
		max-height: 8.5em;
	}
}

/* header */
.site-header, #sticky-navigation {
	z-index: 10;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.site-header .site-logo {
	position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.site-header .header-content {
	margin-left: auto;
}
.site-header .header-search-form {
	position: relative;
}
.site-header .header-search-form input[type="search"] {
	border-radius: 50px;
    line-height: 14px;
    font-size: 12px;
    color: #fff;
    background: #484848;
    border-color: #484848;
	padding: 12px 20px;
}
.site-header .header-search-form input[type="search"]::-webkit-input-placeholder {
	color: #797979;
}
.site-header .header-search-form input[type="search"]::-moz-placeholder {
	color: #797979;
}
.site-header .header-search-form input[type="search"]:-ms-input-placeholder {
	color: #797979;
}
.site-header .header-search-form input[type="search"]::-ms-input-placeholder {
	color: #797979;
}
.site-header .header-search-form input[type="search"]::placeholder {
	color: #797979;
}
.site-header .header-search-form button[type="submit"] {
	border: none;
    padding: 5px;
    border-radius: 0;
    background: transparent;
    top: 50%;
    position: absolute;
    right: 10px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.site-header .header-content > div {
	display: inline-block;
	margin-left: 15px;
}
.site-header .header-content a[href^="tel:"] {
	background: #fff;
    color: var(--text);
    border-color: #fff;
}
.site-header .header-content a[href^="tel:"]::before,
.menu-socials a[href^="tel:"]::before {
	content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="11" height="11" viewBox="0 0 11 11" fill="none"><path d="M3.14269 5.53915C3.63966 6.55516 4.46324 7.375 5.48151 7.86734C5.55601 7.90264 5.63842 7.91794 5.72063 7.91172C5.80284 7.9055 5.88201 7.87798 5.95035 7.83187L7.44968 6.83208C7.516 6.78786 7.59229 6.76089 7.67166 6.75359C7.75102 6.7463 7.83096 6.75893 7.90421 6.79032L10.7092 7.99245C10.8045 8.03293 10.884 8.10327 10.9358 8.19289C10.9877 8.28251 11.009 8.38655 10.9965 8.48932C10.9079 9.18307 10.5694 9.82071 10.0445 10.2829C9.51952 10.745 8.84413 11 8.14474 11C5.98462 11 3.91298 10.1419 2.38554 8.61446C0.858105 7.08702 0 5.01538 0 2.85526C3.67762e-05 2.15587 0.254998 1.48048 0.717145 0.955541C1.17929 0.430603 1.81693 0.0921166 2.51068 0.00345924C2.61345 -0.00897833 2.71749 0.0123219 2.80711 0.0641508C2.89672 0.11598 2.96707 0.19553 3.00755 0.290815L4.21072 3.09823C4.24184 3.17084 4.25453 3.25003 4.24764 3.32873C4.24075 3.40744 4.2145 3.48321 4.17124 3.54932L3.17492 5.07165C3.12958 5.14013 3.10277 5.21921 3.09712 5.30115C3.09147 5.38309 3.10717 5.46509 3.14269 5.53915Z" fill="rgb(47, 47, 47)"/></svg>');
    vertical-align: middle;
    margin-right: 10px;
	display: inline-block;
}
@media (min-width: 1500px) {
	.site-header .header-search-form .search-field {
		min-width: 240px;
	}
}

/* top bar */
.top-bar {
	background-color: var(--green);
	width: 100%;
}
.top-bar .inside-top-bar .widget {
	margin: auto;
}
.top-bar .widget {
	margin: auto;
	font-weight: 600;
    font-size: 14px;
    line-height: 17px;
}
.top-bar .widget a {
	text-underline-position: under;
}
.top-bar .widget p {
	margin-bottom: 0;
}
@media (max-width: 575px) {
	.top-bar .inside-top-bar .widget {
		font-size: 13px;
	}
	.top-bar {
		position: absolute;
		top: 64px;
		z-index: 1;
	}
	.page-hero {
		margin-top: 37px;
	}
}

/* mobile header */
#mobile-header .search-form {
	top: 100%;
    z-index: 1;
    background: var(--grey);
	color: #fff;
}
.navigation-search input[type="search"] {
	font-size: 14px;
	font-family: inherit;
	padding: 10px 30px;
	color: #fff;
}
#mobile-header .inside-navigation {
	height: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 10px;
}
#mobile-header.main-navigation .menu-toggle {
	order: -1;
	padding: 0 20px;
}
#mobile-header.main-navigation .menu-toggle svg {
	vertical-align: middle;
}
#sticky-placeholder.mobile-header-navigation {
	height: 64px;
}
.main-navigation .menu-bar-item svg {
	top: 0;
}
.main-navigation .menu-bar-item a {
	padding: 0 20px;
}
.menu-bar-items .search-item .icon-search {
	color: #fff;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.site-logo.mobile-header-logo {
	margin-left: auto !important;
}
.site-logo.mobile-header-logo img {
	padding: 0 !important;
	height: 31px !important;
}
@media (min-width: 1025px) {
	.menu-bar-items {
		display: none;
	}
}
@media (max-width: 360px) {
	#mobile-header {
		height: 60px;
	}
	#sticky-placeholder.mobile-header-navigation {
		height: 60px;
	}
	.site-logo.mobile-header-logo img {
		height: 35px;
	}
	.main-navigation .menu-toggle {
		padding: 0 10px;
	}
	.main-navigation .menu-toggle svg {
		width: 26px;
	}
	.main-navigation .menu-bar-item a {
		padding: 0 10px;
	}
	.main-navigation .menu-bar-item svg {
		width: 18px;
	}
}

/* mobile menu */
.mm-ocd {
	z-index: 9999999999;
}

/* select 2 */
.select2-results__options {
	font-size: 15px;
	padding: 5px;
}
.select2-container .select2-selection--single {
	border: none !important;
	background: var(--grey) !important;
	height: 50px !important;
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 10px 25px 10px 10px;
	min-width: 85px;
}
.inside-left-sidebar .select2-container {
	width: 100%;
	max-width: 100%;
	min-width: 100%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 50px !important;
	width: 30px;
	top: 0;
	right: 0;
}
.select2-container--open .select2-dropdown--below {
	border: none;
    background: #fff !important;
    border-radius: 0 4px;
    overflow: hidden;
    border-top: 0;
	-webkit-box-shadow: 0px 5px 16px rgb(0 0 0 / 10%);
	        box-shadow: 0px 5px 16px rgb(0 0 0 / 10%);
}
.select2-container--default .select2-results__option {
	border-radius: 4px;
	margin-bottom: 5px;
}
.select2-results__options {
	padding: 8px;
}

/* mobile call button */
.mobile-call-button {
	position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    z-index: 4;
    background: var(--green);
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    border-radius: 50%;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.25);
}
.mobile-call-button::before {
	content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" aria-hidden="true" focusable="false" data-prefix="fas" data-icon="phone" class="svg-inline--fa fa-phone fa-w-16" role="img" viewBox="0 0 512 512"><path fill="white" d="M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z"/></svg>');
	vertical-align: middle;
    width: 50px;
    height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
	padding: 5px;
	line-height: 1;
}
@media (min-width: 992px) {
	.mobile-call-button {
		display: none;
	}
}

/* mega menu */
@media (min-width: 1025px) {
	.main-nav {
		width: 100%;
	}
	.main-navigation .main-nav > ul {
		width: 100%;
	}
	.main-navigation li.mega-menu {
		position: initial;
	}
	.main-navigation li.mega-menu > .sub-menu {
		width: 100%;
    	left: 0 !important;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		padding: 50px 0 58px 0;
	}
	.main-navigation li.mega-menu > .sub-menu::before {
		content: "";
		z-index: -1;
		background-color: var(--black);
		width: 100vw;
		height: 100%;
		top: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
		    -ms-transform: translateX(-50%);
		        transform: translateX(-50%);
		position: absolute;
		border-bottom: 8px solid var(--green);
	}
	.main-navigation li.mega-menu > .sub-menu > li {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 20%;
		        flex: 1 0 20%;
	}
	.main-navigation li.mega-menu > .sub-menu > li > a {
		padding: 0;
		font-weight: 600;
		font-size: 15px;
		line-height: 18px;
		letter-spacing: -0.03em;
		margin-bottom: 15px;
	}
	.main-navigation li.mega-menu > .sub-menu > li.brochure-item {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 40%;
		        flex: 1 0 40%;
		z-index: 1;
	}
	.main-navigation li.mega-menu > .sub-menu > li.explore-item {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 100%;
		        flex: 1 0 100%;
	}
	.main-navigation li.mega-menu > .sub-menu > li.explore-item a { 
		margin: 0;
		font-weight: 400;
		font-style: italic;
		text-decoration: underline;
		padding: 0;
		margin-top: 20px;
		font-size: 14px;
	}
	.main-navigation li.mega-menu > .sub-menu > li a {
		padding: 8px 0;
	}
	.main-navigation li.mega-menu > .sub-menu > li a .dropdown-menu-toggle {
		display: none;
	}
	.main-navigation li.mega-menu > .sub-menu > li > .sub-menu {
		left: 0;
		width: auto;
		visibility: visible;
		pointer-events: all;
		position: relative;
		height: auto;
		opacity: 1;
		-webkit-box-shadow: none;
		        box-shadow: none;
	}
	.main-navigation li.mega-menu > .sub-menu > li.brochure-item {
		margin-bottom: -2.5em;
	}
	.main-navigation li.mega-menu > .sub-menu > li.brochure-item img {
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		   object-fit: cover;
	}
	.main-navigation li.mega-menu > .sub-menu > li.brochure-item a {
		margin: 0;
    	padding-bottom: 0;
	}
	.main-navigation li.mega-menu > .sub-menu > li.brochure-item .menu-item-title {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		padding: 12px 18px;
		background: #222222;
		font-weight: normal;
		font-size: 13px;
		line-height: 16px;
		letter-spacing: -0.03em;
	}
	.main-navigation li.mega-menu > .sub-menu > li.brochure-item .menu-item-title::after {
		content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="11" height="14" viewBox="0 0 11 14" fill="none"><path d="M5.6875 1.40601V10.781" stroke="white" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/><path d="M1.46875 6.56226L5.6875 10.781L9.90625 6.56226" stroke="white" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/><path d="M1 12.656H10.375" stroke="white" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
		vertical-align: middle;
		display: inline-block;
		margin-left: 10px;
	}
	.main-navigation li.popup-brochure {
		margin-left: auto;
	}
	.main-navigation li.popup-brochure a::after {
		content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="11" height="14" viewBox="0 0 11 14" fill="none"><path d="M5.6875 1.40601V10.781" stroke="white" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/><path d="M1.46875 6.56226L5.6875 10.781L9.90625 6.56226" stroke="white" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/><path d="M1 12.656H10.375" stroke="white" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
		vertical-align: middle;
		display: inline-block;
		margin-left: 10px;
	}
}

/* slide out menu */
.sub-link > a {
	pointer-events: none;
}
.mm-spn.mm-spn--navbar:before {
	z-index: 2;
    color: #fff;
    opacity: 1;
    top: 32px;
	left: 30px;
}
.mm-spn.mm-spn--navbar ul {
	top: 64px !important;
}
.mm-spn.mm-spn--navbar > ul {
	top: 81px;
	position: relative;
	height: calc(100% - 81px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
#generate-slideout-menu, .slideout-overlay {
	display: none;
}
.mm-spn.mm-spn--navbar ul li.brochure-item {
	display: none;
}
.mm-spn.mm-spn--navbar ul li.popup-brochure {
	display: none;
}
.mm-ocd__content .menu-socials {
	-webkit-box-ordinal-group: 3;
	    -ms-flex-order: 2;
	        order: 2;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px;
	background-color: #fff;
}
.mm-ocd__content .inside-navigation .slideout-menu {
	padding-bottom: 90px;
}
.mm-ocd__content > .inside-navigation[data-mm-spn-title="Menu"]::before {
	display: none;
}
.mm-spn.mm-spn--navbar ul {
	background-color: #FFF;
}
.mm-spn li:after, .mm-spn.mm-spn--navbar ul:before {
	width: calc(100% - 30px);
	margin-left: 15px;
	display: none;
}
.mm-spn a:not(:last-child):after {
	display: none;
}
.toggled .icon-menu-bars svg:nth-child(2) {
	display: none !important;
}
.toggled .icon-menu-bars svg:nth-child(1) {
	display: block !important;
}
.mm-spn .menu-item-has-children .dropdown-menu-toggle {
	display: none;
}
.mm-spn.mm-spn--navbar:after {
	opacity: 1;
	font-weight: 600;
	padding-right: 20px;
	content: "";
	background-color: #262626;
	background-image: url('/wp-content/uploads/2021/11/abbott-wade-logo.svg');
    background-repeat: no-repeat;
    height: 64px;
	background-size: auto 31px;
    background-position: center;
}
.mm-spn .main-nav li a {
	font-size: 14px;
    font-weight: 600;
	padding: 11px 30px;
}
.mm-ocd__content .inside-navigation .social-icons {
	-webkit-box-ordinal-group: 0;
	    -ms-flex-order: -1;
	        order: -1;
	width: 100%;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
    margin-bottom: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.mm-ocd__content .inside-navigation .social-icons a {
	width: auto;
    padding: 0;
    line-height: 1;
}
.mm-ocd__content .inside-navigation .content-buttons {
	width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.mm-spn li:before {
	opacity: 1;
    color: var(--black);
}
.mm-ocd__content .inside-navigation .content-buttons .content-button {
    padding: 11px 26px;
    border-radius: 50px;
    line-height: 1;
    font-size: 14px;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    text-decoration: none;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    font-family: inherit;
	width: 100%;
    text-align: center;
}
.mm-ocd__content .inside-navigation .content-buttons .content-button.white {
	border-color: var(--black);
	margin-bottom: 10px;
}
.mm-ocd__content .inside-navigation .content-buttons .content-button.green {
	border-color: var(--green);
}
@media (max-width: 360px) {
	.mm-spn .main-nav li a {
		font-size: 15px;
    	padding: 10px 20px;
	}
	.mm-spn li:before {
		top: 50%;
	}
}
.main-navigation .main-nav ul li a {
	font-size: 14px;
}
@media (max-width: 1440px) {
	.main-navigation .main-nav ul li a {
		padding-left: 14px;
    	padding-right: 14px;
	}
	.menu-item-has-children .dropdown-menu-toggle {
		padding-right: 14px;
	}
}
@media (min-width: 1025px) {
	.main-navigation .menu-bar-items {
		display: none !important;
	}
	.nav-below-header .main-navigation .inside-navigation.grid-container {
		padding: 0;
	}
}

/* page hero */
.page-hero {
	position: relative;
	overflow: hidden;
	padding: 15px 15px 0;
	z-index: 0;
}
.page-hero .container {
	z-index: 1;
	position: relative;
	height: 100%;
}
body.single-case_studies .page-hero::before {
	content: "";
    position: absolute;
    z-index: -1;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    left: 15px;
    top: 15px;
    background-color: #F9F9F9;
}
.page-hero:not(.home) .contained-hero-content {
	text-align: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	position: initial;
	border-bottom: 0;
}
.page-hero:not(.home) .contained-hero-content:last-child {
	background: transparent;
    color: var(--text);
    margin: auto;
    border: none;
	padding: 80px 15px;
}
.page-hero:not(.home) .contained-hero-content:last-child .main-heading {
    color: var(--text);
}
.page-hero .contained-hero-content .main-heading:last-child {
	margin-bottom: 0;
}
.contained-hero-content .breadcrumbs {
	margin-bottom: 15px;
}
.breadcrumbs a {
	color: #A3A3A3;
	text-decoration:none;
}
.page-hero {
	min-height: 220px;
}
.page-hero .banner-slide {
	position: relative;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	background-color: #F9F9F9;
	width: 100%;
	min-height: 330px;
}
.page-hero:not(.home) .banner-slide::before,
.page-hero:not(.home) .banner-slide::after {
	content: attr(data-title);
    position: absolute;
    font-size: 178px;
    line-height: 43px;
    text-align: center;
    letter-spacing: -0.04em;
    color: rgba(47, 47, 47, 0.05);
    font-family: "le-monde-livre-classic-byol", serif;
	left: 0;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
	z-index: 0;
}
.page-hero:not(.home) .banner-slide::after {
	right: 0;
	left: auto;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
}
.page-hero .banner-slide .page-hero-background {
	height: 100%;
	z-index: 1;
}
.page-hero .banner-slide .page-hero-background.slick-slider {
	padding: 0;
	position: absolute;
    right: 0;
    top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex; 
	flex-wrap: nowrap;
}
.page-hero .banner-slide .page-hero-background.slick-slider > div:not(.slick-list) {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 100%;
	        flex: 0 0 100%;
}
.page-hero .banner-slide .page-hero-background.slick-slider .slick-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
}
.page-hero .banner-slide .page-hero-background.slick-slider .slick-slide {
	height: inherit;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}
.page-hero .banner-slide .page-hero-background .slick-list {
	height: 100%;
}
.page-hero .slick-dots {
	position: absolute;
    bottom: 80px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 0 15px;
	height: auto; 
	pointer-events: none;
}
.page-hero .slick-dots li:first-child:last-child {
	display: none;
}
@media (max-width: 991px) {
	.page-hero .slick-dots {
		padding: 0 30px;
		bottom: 30px;
	}
	.page-hero .page-hero-background {
		position: relative;
		z-index: 0;
	}
	.page-hero .page-hero-background img {
		float: right;
    	max-width: none;
		width: 180%;
		margin-right: -90%;
		margin-bottom: -10%;
		margin-top: -15%;
	}
	.page-hero:not(.home) .banner-slide::before,
	.page-hero:not(.home) .banner-slide::after { 
		display: none;
	}
	.page-hero:not(.home) .contained-hero-content:last-child {
		padding-left: 30px;
		padding-right: 30px;
	}
}

/* carousel */
.carousel-banner {
	width: 100%;
	overflow: hidden;
	position: relative;
    z-index: 1;
}
.carousel-banner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
}
.carousel-banner.slick-slider {
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.carousel-banner > .banner-slide {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 100%;
	        flex: 0 0 100%;
}
.carousel-banner .slick-list, .carousel-banner .slick-track {
	min-width: 100%;
}
.carousel-banner > .slick-list > .slick-track {
	height: 100%;
}
.carousel-banner .banner-slide .container {
	height: 100%;
	position: relative;
}
.banner-slide .container .contained-hero-content .breadcrumbs {
	position: absolute;
    top: 20px;
    left: 15px;
    margin: 0;
	font-weight: 600;
    font-size: 13px;
}
.page-hero.home .carousel-banner .banner-slide {
	min-height: 640px;
}
.page-hero:not(.home) .carousel-banner .banner-slide {
	min-height: 320px;
}
.page-hero .contained-hero-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-line-pack: center;
	    align-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 0;
	z-index: 1;
	position: initial;
	color: #fff;
	text-align: center;
	justify-content: center;
	border-bottom: 9px solid var(--green);
	height: 100%;
	background-color: var(--grey);
}
.page-hero .contained-hero-content .banner-slide-content-inner {
	max-width: 620px;
	padding: 60px 15px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.page-hero .contained-hero-content .banner-content p:last-child {
	margin-bottom: 0;
    font-family: Usual;
    font-size: 13px;
}
.page-hero .contained-hero-content .content-buttons {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
	margin-top: 1.5em;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.page-hero .page-hero-background img {
	width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
	-o-object-position: bottom;
	   object-position: bottom;
	position: absolute;
    width: 50vw;
    max-width: none;
    left: 0;
	top: 0;
}
.article-content .content-buttons {
    width: 100%;
	margin-bottom: 1.5rem;
}
.article-content .content-buttons .content-button {
	text-decoration: none;
}
@media (max-width: 991px) {
	.banner-slide .container .contained-hero-content .breadcrumbs {
		left: 30px;
		width: calc(100% - 60px);
	}
	.page-hero.home .carousel-banner .banner-slide .container {
		min-height: auto;
		padding: 30px 0;
	}
	.page-hero .contained-hero-content {
		height: auto;
	}
	.page-hero .contained-hero-content .banner-slide-content-inner {
		padding: 35px 0;
	}
	.page-hero.home .banner-slide .page-hero-background {
		order: -1;
	}
	.page-hero .banner-slide .page-hero-background,
	.page-hero .banner-slide .page-hero-background.slick-slider {
		height: auto;
    	position: relative;
		padding: 0;
	}
	.page-hero .banner-slide .page-hero-background.slick-slider .slick-slide::before {
		content: "";
		display: inline-block;
		width: 100%;
		z-index: -1;
		padding-top: 66.66%;
	}
	.page-hero .banner-slide .page-hero-background img {
		width: 100%;
    	height: 100%;
    	margin: 0;
	}
	.page-hero.home .carousel-banner .banner-slide {
		min-height: auto;
	}
	.page-hero {
		padding: 0;
	}
}
@media (max-width: 575px) {
	.page-hero .contained-hero-content .content-button:not(:last-child) {
		margin-bottom: 15px;
	}
	.page-hero .contained-hero-content .content-buttons {
    	clear: both;
		width: auto;
		max-width: 100%;
	}
	.page-hero .contained-hero-content .content-buttons{
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
	.page-hero .contained-hero-content .content-buttons .content-button {
		overflow: hidden;
		-o-text-overflow: ellipsis;
		   text-overflow: ellipsis;
		white-space: nowrap;
		max-width: 100%;
		margin-bottom: 0;
		text-align: center;
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 48%;
		        flex: 0 0 48%;
    	margin: 0 !important;
	}
	.page-hero .contained-hero-content .content-buttons .content-button:first-child:last-child {
		margin-left: auto !important; 
		margin-right: auto !important;
	}
}

/* main navigation */
.main-navigation {
	background: var(--black);
    color: #fff;
}

/* content buttons */
a:hover, a:focus, a:active {
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.content-buttons .content-button:not(:last-child),
.content-buttons a[data-readmore-toggle]:not(:last-child) {
	margin-right: 20px;
}
.content-button, a[data-readmore-toggle], .header-button a, button, html input[type="button"], input[type="reset"], input[type="submit"], a.button, a.button:visited, a.wp-block-button__link:not(.has-background) {
	background-color: var(--green);
	color: #fff;
	display: inline-block;
	padding: 11px 26px;
	border-radius: 50px;
	line-height: 1;
	border: 2px solid var(--green);
    font-size: 13px;
	position: relative;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: relative;
	text-decoration: none;
	letter-spacing: -0.03em;
	text-transform: capitalize;
	font-family: inherit;
	font-weight: 600;
}
.content-button:hover,
.content-button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
	background: #fff;
    color: var(--green);
	border-color: #fff;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.content-button:not(:last-child) {
	margin-right: 20px;
}
.content-button.white {
	background: #fff;
    color: var(--text);
    border-color: #fff;
}
.page-hero:not(.home) .content-button.white {
	background: transparent;
	border-color: var(--green);
}
.page-hero:not(.home) .content-button.white:hover,
.page-hero:not(.home) .content-button.white:focus {
	background: var(--black);
    color: #fff;
    border-color: var(--black);
}
.content-button.white:hover,
.content-button.white:focus {
	background: var(--green);
    color: #fff;
    border-color: var(--green);
}
.content-button.grey {
	background: #F5F5F5;
    color: var(--text);
    border-color: #F5F5F5;
}
.content-button.grey:hover,
.content-button.grey:focus {
	background: #474747;
    color: #fff;
    border-color: #474747;
}
@media (max-width: 575px) {
	.content-button:not(:last-child) {
		margin-right: 0;
	}
	.page-hero .contained-hero-content .content-buttons {
		margin-top: 1.5em;
		width: 100%;
	}
	.content-buttons .content-button:last-child {
		margin-bottom: 0 !important;
	}
	.content-button {
		padding: 11px 16px;
	}
}

/* content */
.main-heading {
	line-height: 1.2;
	color: var(--black);
}
.main-heading strong {
	font-weight: inherit;
    color: var(--blue);
}
.content .article-content-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
	-ms-flex-line-pack: center;
	    align-content: center;
}
.content .article-content-block.sideline .article-content p:last-child {
	margin-bottom: 0;
}
.content .article-content-block.centre-content { 
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.content .article-content-block.centre-content ul {
	width: auto;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.content .article-content-block.centre-content a[data-readmore-toggle] {
	margin: auto;
}
.content .container {
	position: relative;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.subtitle {
	font-size: 1.3em;
    font-weight: 500;
}
.article-content {
    width: 100%;
    clear: both;
}
.article-content ul {
	display: block;
    clear: both;
}
.article-content ul:last-child {
	margin-bottom: 0;
}
.article-content a {
	color: var(--green);
	text-decoration: underline;
}
.content .content-image {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-left: auto;
	position: relative;
	height: inherit;
}
.content .content-image.slick-slider {
	grid-gap: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.content .content-image .slick-list {
	min-width: 100%;
	overflow: visible;
	-webkit-box-ordinal-group: 0;
	    -ms-flex-order: -1;
	        order: -1;
}
.content .content-image.slick-slider:not(.single-image) .content-slide-image {
	margin-right: 30px;
	height: inherit;
}
.content .content-image .slick-track {
	min-width: 100%;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	height: 100%;
}
.content .content-image.below-images .content-slide-image img {
	width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.content .content-image:not(.below-images):not(.slick-slider) .content-slide-image {
	width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
}
.content .content-image .content-slide-image[href] {
	cursor: pointer;
}
.content .content-image .download-pdf {
	position: absolute;
    z-index: 1;
    width: 100%;
    top: 100%;
	margin-top: 1.5em;
	padding-right: 40%;
	pointer-events: none;
}
.content .content-image .download-pdf p {
	margin-bottom: 0;
}
section#brochure {
    padding-top: 8em;
}
.content .content-image .download-pdf a {
	pointer-events: all;
	position: absolute;
    bottom: 0;
    right: 0;
}
.content .content-image .content-slide-image::before {
	content: "";
	padding-top: 50%;
	display: block;
	z-index: -1;
}
.content > .content-image .content-slide-image::before {
	padding-top: 50%;
}
.content .content-image .content-slide-image img {
	height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
	top: 0;
    left: 0;
	position: absolute;
	overflow: hidden;
}
.content > .content-image .content-slide-image img {
	border-radius: 0;
}
.content .content-image.below-images .content-slide-image {
	max-height: 400px;
}
.content .content-video {
	position: relative;
	-ms-flex-item-align: start;
	    align-self: flex-start;
	position: sticky;
	top: 50px;
}
.content.has-logo .container {
	position: relative;
}
.content.has-no-readmore .container {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.content .content-video::before {
	content: "";
    display: block;
    padding-top: 56.25%;
}
.content .content-video > * {
	position: absolute;
    top: 0;
    height: 100%;
    left: 15px;
    width: calc(100% - 30px);
}
.content .content-socials {
	position: absolute;
    top: 100%;
    height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
	margin-top: 1.5em;
}
.content .content-socials .social-icons a svg {
	vertical-align: middle;
}
.content .content-socials .social-icons {
	vertical-align: middle;
    line-height: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
	margin-right: auto;
}
.content {
	position: relative;
	max-width: 100%;
}
.content .content-buttons {
	width: 100%;
}
.content .content-buttons .content-button {
	min-width: 140px;
    text-align: center;
}
.article-content-block .article-content-block-inner {
	padding: 6em 15px;
	max-width: 620px;
	direction: ltr;
    text-align: center;
	color: #fff;
	margin: auto;
}
.article-content-block .article-content-block-inner .main-heading {
	color: #fff;
}
.article-content-block .article-content-block-inner .article-content {
	max-height: 6em;
}
.article-content-block .article-content-block-inner .article-content + a[data-readmore-toggle] {
	display: inline-block;
    margin-left: auto; 
	margin-right: auto;
    float: none;
}
.article-content + a[data-readmore-toggle],
.banner-content + a[data-readmore-toggle] {
	margin-top: 1.5em;
}
.content > .article-content-block::before {
	content: "";
    background: var(--grey);
    width: calc(100% - 15px);
    height: 100%;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
}
.content[data-orientation="flip"] > .content-image {
	padding-right: 0;
}
.content[data-orientation="normal"] > .content-image {
	padding-left: 0;
}
.content > .article-content-block .article-content-block-inner .content-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
	margin-top: 20px;
}
@media (min-width: 1800px) {
	.article-content-block .article-content-block-inner .article-content {
		max-height: 16em;
	}
}
@media (min-width: 1600px) {
	.article-content-block .article-content-block-inner .article-content {
		max-height: 13em;
	}
}
@media (min-width: 992px) {
	.content .content-image.slick-slider:not(.single-image) .content-slide-image {
		max-height: 300px;
	}
	.content[data-orientation="flip"] .article-content-block {
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
		margin-left: auto;
		text-align: right;
	}
	.content[data-orientation="normal"] > .article-content-block::before {
		left: 15px;
	}
	.content[data-orientation="flip"] .article-content + a[data-readmore-toggle] {
		margin-left: auto;
	}
	.content[data-orientation="flip"] .article-content-block .content-buttons .content-button {
		float: right;
	}
	.content[data-orientation="normal"] .article-content-block {
		margin-right: auto;
	}
	.content[data-orientation="normal"]:not(.wide-section) .article-content-block:not(.centre-content) .article-content {
		padding-right: 3em;
	}
	.content[data-orientation="flip"]:not(.wide-section) .article-content-block:not(.centre-content) .article-content {
		padding-left: 3em;
	}
	.content[data-orientation="flip"] .content-image {
		margin-left: 0;
    	margin-right: auto;
	}
	.content[data-orientation="normal"] .content-video iframe {
		float: right;
	}
}
@media (max-width: 991px) {
	.subtitle { 
		font-size: 20px;
	}
	.content > .article-content-block::before {
		width: 100%;
	}
	.content.content-two-blocks .second-article-block {
		margin-top: 1.5rem;
		border-radius: 0;
	}
	.content .content-video {
		margin-top: 1.5em;
	}
	.content .content-video > * {
		left: 30px;
		width: calc(100% - 60px);
	}
	.content.grey::after {
		width: 100%;
		height: 15px; 
		top: auto;
		bottom: 0;
	}
	.content .has-socials {
		margin-bottom: 4em;
	}
	.content .content-image > .slick-list {
		position: relative;
	}
	.content .content-image img {
		max-width: 100%;
    	left: 0;
	}
	.content .content-image.below-images {
		margin-top: 0;
	}
	.content .content-image .content-slide-image.downloadable {
		margin-bottom: 8em;
	}
	.content.wide-section .content-image.single-image {
		order: -1;
		padding: 0;
	}
	.content:not(.wide-section) .content-image {
		margin-top: 3em;
	}
}
@media (max-width: 575px) {
	.content .article-content-block.sideline {
		border-left: 0;
	}
	.content .content-buttons .content-button:not(:last-child) {
		margin-bottom: 0;
	}
	.content .content-image .content-slide-image {
		position: relative;
	}
	.content .content-image .content-slide-image::before {
		content: "";
		display: block;
		padding-top: 80%;
	}
	.content .content-image .content-slide-image img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.content .content-image.single-image .content-slide-image img {
		border-radius: 0;
	}
	.content .content-image .content-slide-image::before {
		padding-top: 66%;
	}
	.article-content-block .article-content-block-inner .article-content {
		max-height: 20em;
	}
}
@media (max-width: 360px) {
	.content .content-image .download-pdf p {
		display: none;
	}
	.content .content-image .download-pdf a {
		position: relative;
		right: auto;
    	bottom: auto;
	}
	.content .content-image .content-slide-image.downloadable {
		margin-bottom: 9em;
	}
}

/* content padding */
.content.white:not(.wide-section) + .content.white {
	padding-top: 0;
}
.content.wide-section {
	padding: 0;
}
.content.white:not(.wide-section) + .filterable-gallery-section {
	padding-top: 0;
}

.filterable-gallery-section + .accordions-section.white {
    padding-top: 0;
}

.content.wide-section + .social-gallery {
	padding-top: 15px;
}
.company-usps + .page-blocks {
	padding-top: 0;
}
.page-blocks + .content.white {
	padding-top: 0;
}
.company-usps  + .content.white {
	padding-top: 0;
}

/* team members */

section#meet-team {
    padding: 5em 0;
}

.team-members {
	overflow: hidden;
	position: relative;
	background-color: var(--light-grey);
}
.team-members .section-introduction {
	text-align: center;
}

/* page blocks */
.page-blocks .section-introduction {
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.page-blocks .section-introduction .article-content {
	max-height: 6em; 
	overflow: hidden;
}
.page-blocks .section-introduction .article-content + a[data-readmore-toggle] {
	margin-bottom: 1.5em;
}
.page-blocks .page-block-items {
	margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr[4];
    grid-template-columns: repeat(4,minmax(0,1fr));
    grid-gap: 40px 20px;
    grid-auto-flow: row dense;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.page-blocks .page-block-items.column-3 {
	-ms-grid-columns: 1fr[3];
    grid-template-columns: repeat(3,minmax(0,1fr));
}
.page-blocks .page-block-items.column-2 {
	-ms-grid-columns: 1fr[2];
    grid-template-columns: repeat(2,minmax(0,1fr));
}
.page-blocks .page-block-items .page-block-item figure {
	position: relative;
	overflow: hidden;
}
.page-blocks .page-block-items .page-block-item figure img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
.page-blocks .page-block-items .page-block-item {
	position: relative;
}
.page-blocks .page-block-items .page-block-item figure::before,
.page-blocks .page-block-items .page-block-item.no-image .block-background::before {
	content: "";
	padding-top: 120%;
	display: block;
}
.page-blocks .page-block-items.column-3 .page-block-item figure::before,
.page-blocks .page-block-items.column-3 .page-block-item.no-image .block-background::before {
	padding-top: 80%;
}
.page-blocks .page-block-items.column-2 .page-block-item figure::before,
.page-blocks .page-block-items.column-2 .page-block-item.no-image .block-background::before {
	padding-top: 60%;
}
.page-blocks .page-block-items .page-block-item span {
	position: relative;
    display: block;
    width: 100%;
}
.page-blocks .page-block-items .page-block-item .block-background {
	background: var(--black);
    color: #fff;
}
.page-blocks .page-block-items .page-block-item .block-background span {
	position: absolute;
    top: 50%;
    left: 50%;
    padding: 15px;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.page-blocks .page-block-items .page-block-item .block-background span .link-subtitle {
	padding: 11px 26px;
    border-radius: 50px;
    line-height: 1;
    border: 2px solid #fff;
	color: #fff;
    margin-top: 10px;
    font-size: 13px;
    text-decoration: none;
    letter-spacing: -0.03em;
    text-transform: capitalize;
    font-family: inherit;
    font-weight: 600;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.page-blocks .page-block-items .page-block-item .block-background span .link-subtitle:hover,
.page-blocks .page-block-items .page-block-item .block-background span .link-subtitle:focus {
	background: var(--green);
    color: #fff;
    border-color: var(--green);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.page-blocks .page-block-items .page-block-item .block-background span .link-subtitle::after {
	display: none;
}
.page-blocks .page-block-items .page-block-item.no-image .main-heading {
	color: #fff;
	max-width: 200px;
	line-height: 1.2;
	font-size: 28px;
	width: 100%;
	display: block;
	clear: both;
}
.page-blocks .page-block-items .page-block-item .main-heading {
	font-size: 22px;
	line-height: 1.5;
    margin-top: 5px;
	margin-bottom: 5px;
}
.page-blocks .page-block-items .page-block-item .link-subtitle {
	font-size: 13px;
    line-height: 18px;
    color: #D4D4D4;
	display: inline-block;
	margin: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.page-blocks .page-block-items .page-block-item .link-subtitle::after {
	content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="6" height="11" viewBox="0 0 6 11" fill="none"><path d="M1 1L5 5.5L1 10" stroke="rgb(212, 212, 212)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    vertical-align: middle;
	display: inline-block;
	margin-left: 10px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.page-blocks .page-block-items .page-block-item:hover .link-subtitle,
.page-blocks .page-block-items .page-block-item:focus .link-subtitle {
	color: var(--green);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.page-blocks .page-block-items .page-block-item:hover .link-subtitle::after,
.page-blocks .page-block-items .page-block-item:focus .link-subtitle::after {
	content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="6" height="11" viewBox="0 0 6 11" fill="none"><path d="M1 1L5 5.5L1 10" stroke="rgb(141,189,63)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
@media (max-width: 1024px) {
	.page-blocks .page-block-items,
	.page-blocks .page-block-items.column-3 {
	 	-ms-grid-columns: 1fr[3];
    	grid-template-columns: repeat(3,minmax(0,1fr));
	}
	.page-blocks .page-block-items .page-block-item .link-subtitle {
		color: var(--green);
	}
}
@media (max-width: 768px) {
	.page-blocks .page-block-items,
	.page-blocks .page-block-items.column-3 {
	 	-ms-grid-columns: 1fr[2];
    	grid-template-columns: repeat(2,minmax(0,1fr));
	}
	.page-blocks .page-block-items .page-block-item.no-image .main-heading {
		max-width: none;
	}
}
@media (max-width: 575px) {
	.page-blocks .page-block-items,
	.page-blocks .page-block-items.column-2,
	.page-blocks .page-block-items.column-3 {
	 	-ms-grid-columns: 1fr[1];
    	grid-template-columns: repeat(1,minmax(0,1fr));
	}
	.page-blocks .page-block-items .page-block-item figure::before,
	.page-blocks .page-block-items .page-block-item.no-image .block-background::before {
		padding-top: 66%;
	}
}

/* contact form */
.contact-form {
	overflow: hidden;
}

.white .form-additional-details .content-button.green{
	color:white;
}

.white .form-additional-details .content-button.green:hover,
.white .form-additional-details .content-button.green:focus{
	color: var(--green);
}

.form-additional-details a {
	color: #262626;
}
.form-additional-details a:hover,
.form-additional-details a:focus {
	color: var(--green);
}
.contact-form.wide-form {
	padding: 0;
}
.contact-form .article-content-block {
	position: relative;
}
.contact-form.wide-form .article-content-block {
	text-align: center;
	color: #fff;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.contact-form.wide-form .article-content-block::before {
	content: "";
    position: absolute;
    background: var(--grey);
    width: calc(100% - 15px);
    height: 100%;
    left: 15px;
    top: 0;
    z-index: -1;
}
.contact-form .form-image {
	padding-left: 0;
}
.contact-form .form-image img {
	width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.contact-form.wide-form form {
	display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr[2];
    grid-template-columns: repeat(2,minmax(0,1fr));
    grid-gap: 20px;
    grid-auto-flow: row;
	width: 100%;
}
.contact-form.wide-form .article-content-block-inner {
	padding-right: 0;
}
.contact-form.wide-form form .accept {
	grid-column: -1 / 1;
    text-align: left;
	font-size: 13px;
	max-width: 480px;
    margin: auto;
}
.contact-form.wide-form form .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}
.contact-form.wide-form form input {
	width: 100%;
	font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    font-family: inherit;
    letter-spacing: -0.03em;
    color: var(--grey);
    background: #FFFFFF;
	border-radius: 20px;
    padding: 10px 20px;
}
.contact-form.wide-form form input::-webkit-input-placeholder {
	color: #C3C3C3;
}
.contact-form.wide-form form input::-moz-placeholder {
	color: #C3C3C3;
}
.contact-form.wide-form form input:-ms-input-placeholder {
	color: #C3C3C3;
}
.contact-form.wide-form form input::-ms-input-placeholder {
	color: #C3C3C3;
}
.contact-form.wide-form form input::placeholder {
	color: #C3C3C3;
}
.contact-form.wide-form form .wpcf7-list-item {
	margin: 0;
	line-height: 16px;
}
.contact-form.wide-form form input[type="checkbox"] {
	width: 16px;
    height: 16px;
    vertical-align: middle;
    line-height: 16px;
    display: inline-block;
    margin-right: 6px
}
.contact-form.wide-form form label.submit {
	grid-column: -1 / 1;
}
.contact-form.wide-form form label {
	position: relative;
	display: inline-block;
}
.contact-form.wide-form form label .wpcf7-list-item-label {
	display: inline-block;
	width: calc(100% - 22px);
}
.contact-form.wide-form form a:hover,
.contact-form.wide-form form a:focus {
	color: #fff;
}
.contact-form.wide-form form label .wpcf7-spinner {
	position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    margin: 0;
}
.contact-form.wide-form form .accept p {
	display: inline-block;
	width: calc(100% - 30px);
	margin: 0;
	vertical-align: middle;
}
.contact-form.wide-form form .accept .wpcf7-form-control-wrap {
	display: inline-block;
    width: auto;
	vertical-align: middle;
}
.contact-form.wide-form form .accept .wpcf7-form-control-wrap span:not(.wpcf7-list-item-label) {
	display: inline-block;
	vertical-align: middle;
}
.contact-form.wide-form form .accept .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
	display: inline-block;
}
.contact-form.wide-form form label input[type="submit"] {
	width: auto;
    display: inline-block;
    margin: auto;
    float: none;
    background: var(--green);
    color: #fff;
    font-size: 14px;
	letter-spacing: -0.03em;
    text-transform: capitalize;
    font-family: inherit;
    font-weight: 600;
	padding: 11px 26px;
	border-radius: 50px;
    line-height: 1;
}
.contact-form form .wpcf7-response-output {
	grid-column: -1 / 1;
	margin: 0;
	width: 100%;
    text-align: center;
}
.contact-form:not(.wide-form) form label.submit + .wpcf7-response-output {
	margin-top: 1.5em;
}
.contact-form:not(.wide-form) form label.postcode {
	-webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: calc(100% - 15px);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.contact-form form label.postcode {
    grid-column: -1 / 1;
	text-align: left;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.contact-form form label.postcode span {
	width: 100%;
    margin-bottom: 8px;
}
form label.postcode button[type="button"] {
	border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
form label.postcode #getaddress_error_message {
	width: 100%;
    margin: 10px 0 0;
    text-align: center;
}
form label.postcode input[type="text"] {
	color: var(--grey);
	flex: 1;
	border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
form label.postcode select {
	width: 100%;
    margin-top: 10px;
    border-radius: 4px;
    font-family: inherit;
    font-weight: 500;
    font-size: 12px;
	color: #fff;
}
form label.postcode select option {
	background: var(--grey);
}
.contact-form:not(.wide-form) form label.postcode select {
	background: var(--light-grey);
	color: var(--grey);
}
.contact-form:not(.wide-form) form label.postcode select option {
	color: #fff;
}
label.postcode input[type="text"]::-webkit-input-placeholder {
	color: #C3C3C3;
}
label.postcode input[type="text"]::-moz-placeholder {
	color: #C3C3C3;
}
label.postcode input[type="text"]:-ms-input-placeholder {
	color: #C3C3C3;
}
label.postcode input[type="text"]::-ms-input-placeholder {
	color: #C3C3C3;
}
label.postcode input[type="text"]::placeholder {
	color: #C3C3C3;
}
.wpcf7 form .wpcf7-response-output {
	margin: 0;
    grid-column: -1 / 1;
    text-align: center;
}

.dark-form .article-content-block {
    background: black;
    color: white;
    text-align: center;
    padding: 30px;
	height: max-content;
}

.dark-form.contact-form:not(.wide-form) form{
	display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr [2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 10px;
    grid-auto-flow: row;
    width: 100%;
}

.dark-form.contact-form:not(.wide-form) form label{
	width:100%;
	max-width:100%;
}

.dark-form.contact-form:not(.wide-form) .article-content-block::before{
	content:none;
}

.dark-form .main-heading{
	color:white;
}

.dark-form .street-address, .dark-form .accept, .dark-form .submit{
    grid-column: -1 / 1;
}

.dark-form.contact-form:not(.wide-form) form .accept p{
	margin-bottom:0;
}

.dark-form.contact-form form input {
    width: 100%;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    font-family: inherit;
    letter-spacing: -0.03em;
    color: var(--grey);
    background: #FFFFFF;
    border-radius: 20px;
    padding: 10px 20px;
}

.dark-form.contact-form form .submit input {
	width: auto;
    display: inline-block;
    margin: auto;
    float: none;
    background: var(--green);
    color: #fff;
    font-size: 14px;
    letter-spacing: -0.03em;
    text-transform: capitalize;
    font-family: inherit;
    font-weight: 600;
    padding: 11px 26px;
    border-radius: 50px;
    line-height: 1;
}

.dark-form .container{
	justify-content:space-between;
}



@media (max-width: 991px) {
	.contact-form.wide-form .article-content-block::before {
		left: 0; 
		width: 100%;
	}
	.contact-form .form-image {
		padding: 0;
	}
	.article-content-block .article-content-block-inner {
		padding: 3em 15px;
	}
	.contact-form .form-additional-details {
		margin-bottom: 2em;
	}
}
@media (max-width: 575px) { 
	.contact-form.wide-form form {
		-ms-grid-columns: 1fr[1];
    	grid-template-columns: repeat(1,minmax(0,1fr));
	}
	.contact-form.wide-form form label input[type="submit"] {
		width: 100%;
	}
	.dark-form.contact-form:not(.wide-form) form{
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}

/* maps location */
.map-section {
	position: relative;
	overflow: hidden;
}
.map-section .container {
	position: relative;
}
.map-section .map-inner {
	margin-left: auto;
}
.map-section .map {
	border-radius: 4px;
	overflow: hidden;
}
.map-section .map::before {
	content: "";
	padding-top: 45%;
	display: block;
}
@media (min-width: 992px) {
	.contact-form + .map-section {
		padding: 0;
		margin-top: -3em;
	}
	.map-section .map-inner::before {
		content: "";
		height: 100%;
		width: 2px;
		background-color: #E8E8E8;
		position: absolute;
		left: -3em;
		top: 0;
	}
	.contact-form:not(.wide-form) .article-content-block::before {
		content: "";
		height: calc(100% + 5em);
		width: 2px;
		background-color: #E8E8E8;
		position: absolute;
		left: -3em;
		top: 0;
	}
}
@media (max-width: 991px) {
	.map-section .map::before {
		padding-top: 60%;
	}
	.map-section .map-inner {
		text-align: center;
	}
}
@media (max-width: 575px) {
	.map-section .map::before {
		padding-top: 120%;
	}
}

/* popup button */
.popup-link {
	top: 50%;
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
    text-align: center;
    z-index: 9;
    right: 0;
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    position: fixed;
	border-radius: 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.popup-link:hover {
	background-color: var(--grey);
    border-color: var(--grey);
}

/* call to action buttons */
.footer-ctas {
	position: relative;
	overflow: hidden;
	padding: 3em 0;
}
.footer-ctas .footer-cta-slider {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-bottom: 0;
}
.footer-ctas .footer-cta-slider .slick-list {
	min-width: 100%;
}
.footer-ctas .footer-cta-slider .slick-track {
	min-width: 100%;
}
.footer-ctas .footer-cta-slider .footer-cta {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
	padding: 5px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 25%;
	        flex: 0 0 25%;
}
.footer-ctas .footer-cta-slider .footer-cta a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.footer-ctas .footer-cta-slider .footer-cta img {
	width: 30px;
	height: 30px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 30px;
	        flex: 0 0 30px; 
	-o-object-fit: contain; 
	   object-fit: contain;
}
.footer-ctas .footer-cta-slider .footer-cta .main-heading {
	width: auto;
    margin: 0;
    padding-left: 10px;
}
.footer-ctas .footer-cta-slider .footer-cta a:hover .main-heading,
.footer-ctas .footer-cta-slider .footer-cta a:focus .main-heading {
	text-decoration: underline;
	text-underline-position: under;
	text-decoration-color: var(--green);
}
@media (max-width: 991px) {
	.footer-ctas .footer-cta-slider .footer-cta .main-heading {
		-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	}
}
@media (max-width: 768px) {
	.footer-ctas .footer-cta-slider .slick-list {
		padding-right: 60px;
		overflow: visible;
	}
}

/* meet the team */
.the-team .department-section:not([hidden]) {
	display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr[4];
    grid-template-columns: repeat(4,minmax(0,1fr));
    grid-gap: 30px;
    grid-auto-flow: row;
    width: 100%;
	text-align: center;
}
.the-team .department-section article .entry-summary {
	font-size: 13px;
	color: #4D4D4D;
}
.the-team .department-section article .entry-summary header {
    width: 100%;
    margin-bottom: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.the-team .department-section article .entry-summary header .entry-title {
	width: auto;
}
.the-team .department-section article .post-image {
	position: relative;
	margin-bottom: 10px;
}
.the-team .department-section article .post-image::before {
	content: "";
	padding-top: 100%;
	display: block;
}
.the-team .department-section article .post-image img,
.the-team .department-section article .post-image svg {
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.the-team .department-section article .post-image svg {
	border: 2px solid #fff;
    padding: 40px;
}
@media (max-width: 1024px) {
	.the-team .department-section:not([hidden]) {
		-ms-grid-columns: 1fr[3];
		grid-template-columns: repeat(3,minmax(0,1fr)); 
		grid-gap: 20px;
	}
}
@media (max-width: 768px) {
	.the-team .department-section:not([hidden]) {
		-ms-grid-columns: 1fr[2];
		grid-template-columns: repeat(2,minmax(0,1fr));  
	}
	.the-team .department-section article .entry-summary {
		font-size: 12px;
		letter-spacing: -0.03em;
	}
}

/* meet the team filters */
.team-members .departments-filter {
	margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
	margin: auto;
    margin-bottom: 3em;
}
.team-members .departments-filter .locations-filter-button button[type="button"] {
	border: none;
    padding: 5px;
    background: transparent;
    color: var(--green);
    text-decoration: underline;
    text-underline-position: under;
	font-family: "le-monde-livre-classic-byol", serif;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    letter-spacing: -0.04em;
	border-radius: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.team-members .departments-filter .locations-filter-button button[type="button"][aria-selected="false"] {
	color: #B3B3B3;
	text-decoration: none;
}
.team-members .departments-filter .locations-filter-button button[type="button"]:hover {
	text-decoration: underline;
	color: var(--green);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
	.team-members .departments-filter {
		overflow: scroll;
		-webkit-overflow-scrolling: touch;
		display: inline-block;
		width: 100%;
		white-space: nowrap;
		margin-bottom: 2em;
	}
	.team-members .departments-filter li {
		display: inline-block;
		margin-right: 15px;
	}
}

/* section defaults */
section.grey {
	background-color: var(--grey);
}
section.green {
	background-color: var(--green);
	color: #fff;
}
section.black .main-heading,
section.grey .main-heading {
	color: #fff;
}
section.grey .article-content  {
	color: #fff;
}
.section-introduction {
	margin-left: auto;
    margin-right: auto;
}

/* right sidebar */
#right-sidebar .inside-right-sidebar {
    width: 100%;
	padding: 30px 15px;
    border-radius: 20px;
}
#right-sidebar .inside-right-sidebar h2, #right-sidebar .inside-right-sidebar h3 {
	font-weight: 500;
    font-size: 22px;
}
#right-sidebar aside {
	padding: 15px;
}

/* call to action */
.call-to-action {
	overflow: hidden;
}
.call-to-action.blue::before {
	content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="487" height="612" viewBox="0 0 487 612" fill="none"><ellipse rx="309.5" ry="306" transform="matrix(-1 0 0 1 309.5 306)" fill="rgb(5, 105, 200)"/></svg>');
	position: absolute;
    bottom: 0;
    right: 0; 
	z-index: 0;
	pointer-events: none;
}
.call-to-action .section-introduction {
	margin-bottom: 0;
}
.call-to-action .article-content p:last-child {
	margin-bottom: 0;
}
.call-to-action .content-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-ms-flex-line-pack: center;
	    align-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
@media (max-width: 991px) {
	.call-to-action .section-introduction {
		margin-bottom: 1.5em;
	}
	.call-to-action .content-buttons {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
	}
	.call-to-action.blue::before {
		bottom: 15%;
		transform: scale(0.75);
		transform-origin: bottom right;
		width: auto;
	}
}
@media (max-width: 575px) {
	.call-to-action.blue::before {
		bottom: 65%;
		transform: scale(0.35);
		width: auto;
		transform-origin: bottom right;
	}
	.call-to-action .main-heading br {
		display: none;
	}
}

/* gallery social bar */
.social-gallery {
	position: relative;
	overflow: hidden;
	padding: 0;
}
.social-gallery #sbi_load a {
	position: absolute;
    z-index: 1;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    left: 50%;
    background: #fff;
    padding: 15px 25px;
    line-height: 1;
    border-radius: 50px;
    color: var(--text);
	text-decoration: none;
	font-size: 15px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.social-gallery #sbi_load a svg { 
	display: inline-block;
	width: 16px;
	height: 16px;
	vertical-align: middle;
    margin-right: 5px;
}
.social-gallery #sbi_load a:hover,
.social-gallery #sbi_load a:focus {
	color: var(--green);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.social-gallery .gallery { 
	display: -webkit-box; 
	display: -ms-flexbox; 
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap-reverse;
	margin-bottom: 0;
}
.social-gallery .gallery #sb_instagram {
	width: 100%;
}
.social-gallery .gallery #sbi_images {
	display: -webkit-box; 
	display: -ms-flexbox; 
	display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
	margin-bottom: 0;
	max-width: calc(100% + 15px);
	margin-right: -15px;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
}
.social-gallery .gallery #sb_instagram #sbi_images .sbi_item,
.social-gallery .gallery #sb_instagram #sbi_images .sbi_photo_wrap {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
}
.social-gallery .gallery #sb_instagram #sbi_images .sbi_photo {
	padding-top: 100%;
	width: 100%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	position: relative;
	padding-bottom: 0 !important;
	margin-right: 15px;
}
.social-gallery .gallery #sb_instagram #sbi_images .sbi_photo svg.sbi_lightbox_carousel_icon {
	position: absolute;
    right: 8px;
    top: 8px;
    font-size: 18px;
    height: 1em;
    text-shadow: 0 0 8px rgb(0 0 0 / 30%);
    -webkit-filter: drop-shadow(0px 0px 2px rgba(0,0,0,.4));
    filter: drop-shadow( 0px 0px 2px rgba(0,0,0,.4) );
    color: rgba(255,255,255,.9);
}
.social-gallery .gallery #sb_instagram #sbi_images .sbi_photo img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
.social-gallery .gallery .sbi-screenreader {
	border: 0;
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal!important;
}
.social-gallery .gallery .slick-list,
.social-gallery .gallery .slick-track {
	min-width: 100%;
}
.social-gallery .gallery #sbi_images > .sbi_item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 16.667%;
	        flex: 0 0 16.667%;
	max-width: calc(16.667% - 15px);
}
@media (min-width: 992px) {
	.social-gallery .main-heading {
		border: 0;
		clip: rect(1px,1px,1px,1px);
		-webkit-clip-path: inset(50%);
		clip-path: inset(50%);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute!important;
		width: 1px;
		word-wrap: normal!important;
	}
}
@media (max-width: 991px) { 
	.social-gallery .main-heading { 
		width: auto;
    	padding: 0 30px;
	}
	.social-gallery .slick-list {
		padding-right: 60px;
	}
	.social-gallery #sbi_load a {
		position: relative;
		top: 0;
		-webkit-transform: none;
		    -ms-transform: none;
		        transform: none;
		left: auto;
		background: var(--green);
		line-height: 1;
		margin-bottom: auto;
		color: #fff;
		padding: 11px 20px;
		margin-left: auto;
   		margin-right: 30px;
	}
	.social-gallery .gallery #sbi_images > .sbi_item {
		-webkit-box-flex: 0;
			-ms-flex: 0 0 25%;
				flex: 0 0 25%;
		max-width: calc(25% - 15px);
	}
}
@media (max-width: 575px) {
	.social-gallery .gallery #sbi_images > .sbi_item {
		-webkit-box-flex: 0;
			-ms-flex: 0 0 100%;
				flex: 0 0 100%;
		max-width: calc(100% - 15px);
	}
}

/* brochure download shortcode */

.brochure-download {
    position: relative;
    border: 1px solid #D9D9D9;
    background: #F6F6F6;
    padding: 25px 0;
}

.brochure-download h3{
	color: #000;
	font-family: Usual;
	font-size: 26px;
	font-style: normal;
	font-weight: 400;
	line-height: 33px;
	letter-spacing: -0.78px;
	text-transform: capitalize;
}

.brochure-img{
	position:absolute;
	bottom:0;
	right:0;
}

.brochure-download a {
    color: #8DBD3F;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-decoration: none;
}

.brochure-download a::after {
	content: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="DownloadSimple"><path id="Vector" d="M15.75 10.125V14.625C15.75 14.7742 15.6907 14.9173 15.5852 15.0227C15.4798 15.1282 15.3367 15.1875 15.1875 15.1875H2.8125C2.66332 15.1875 2.52024 15.1282 2.41475 15.0227C2.30926 14.9173 2.25 14.7742 2.25 14.625V10.125C2.25 9.97582 2.30926 9.83274 2.41475 9.72725C2.52024 9.62176 2.66332 9.5625 2.8125 9.5625C2.96168 9.5625 3.10476 9.62176 3.21025 9.72725C3.31574 9.83274 3.375 9.97582 3.375 10.125V14.0625H14.625V10.125C14.625 9.97582 14.6843 9.83274 14.7898 9.72725C14.8952 9.62176 15.0383 9.5625 15.1875 9.5625C15.3367 9.5625 15.4798 9.62176 15.5852 9.72725C15.6907 9.83274 15.75 9.97582 15.75 10.125ZM8.60203 10.523C8.65427 10.5753 8.71631 10.6168 8.7846 10.6451C8.85288 10.6734 8.92608 10.6879 9 10.6879C9.07392 10.6879 9.14712 10.6734 9.2154 10.6451C9.28369 10.6168 9.34573 10.5753 9.39797 10.523L12.2105 7.71047C12.2627 7.65821 12.3042 7.59616 12.3325 7.52788C12.3608 7.4596 12.3753 7.38641 12.3753 7.3125C12.3753 7.23859 12.3608 7.1654 12.3325 7.09712C12.3042 7.02884 12.2627 6.96679 12.2105 6.91453C12.1582 6.86227 12.0962 6.82081 12.0279 6.79253C11.9596 6.76424 11.8864 6.74969 11.8125 6.74969C11.7386 6.74969 11.6654 6.76424 11.5971 6.79253C11.5288 6.82081 11.4668 6.86227 11.4145 6.91453L9.5625 8.76727V2.25C9.5625 2.10082 9.50324 1.95774 9.39775 1.85225C9.29226 1.74676 9.14918 1.6875 9 1.6875C8.85082 1.6875 8.70774 1.74676 8.60225 1.85225C8.49676 1.95774 8.4375 2.10082 8.4375 2.25V8.76727L6.58547 6.91453C6.47992 6.80898 6.33677 6.74969 6.1875 6.74969C6.03823 6.74969 5.89508 6.80898 5.78953 6.91453C5.68398 7.02008 5.62469 7.16323 5.62469 7.3125C5.62469 7.46177 5.68398 7.60492 5.78953 7.71047L8.60203 10.523Z" fill="%238DBD3F"/></g></svg>');
	vertical-align: middle;
	display: inline-block;
	margin-left: 10px;
    margin-bottom: -3px;
}

.brochure-download {
    margin-top: 30px;
}

@media (max-width: 991px){
	.brochure-download {
		text-align: center;
		padding: 25px 0 0;
	}
	.brochure-img {
		position:unset;
		display: block;
        margin: 30px auto 0;
	}
}

/* internal nav section */

.internal-nav {
    padding: 0;
}

.internal-nav + section, section + .internal-nav {
    padding-top: 3em;
}

main > .internal-nav {
    padding-top: 3em;
}

.internal-nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.internal-nav-content p{
	margin-bottom:0;
	margin-right: 20px;
}

@media (max-width: 991px){
	.internal-nav .content-button.grey.smooth-scroll {
		width: calc(100% - 30px);
		margin: auto;
	}
	.internal-nav-buttons.content-buttons {
		display: flex;
		flex-direction: column;
		width: 100%;
        gap: 10px;
        text-align: center;
		margin-top: 20px;
	}
	.internal-nav-wrapper{
		flex-direction:column;
	}
}

/* filter gallery */
.filterable-gallery-section .filter-gallery-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-bottom: 25px;
}
.filterable-gallery-section .filter-gallery-nav span {
	margin-right: 25px;
}
.filterable-gallery-section .filter-gallery-nav ul {
	margin: 0;
    list-style: none;
    width: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.filterable-gallery-section .filter-gallery-nav li {
	margin-right: 20px;
}
.filterable-gallery-section .filter-gallery-nav li button[aria-selected="true"] {
	background: #474747;
    color: #fff;
}
.filterable-gallery-section .filter-gallery-nav li button {
	border-color: transparent;
    background: transparent;
    color: #2F2F2F;
}
.filterable-gallery-section .gallery {
	display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr[4];
    grid-template-columns: repeat(4,minmax(0,1fr));
    grid-gap: 15px;
    grid-auto-flow: row;
    width: 100%;
	margin: 0;
	list-style: none;
}
.filterable-gallery-section .gallery li a {
	display: block;
    width: 100%;
    height: 100%;
	position: relative;
}
.filterable-gallery-section .gallery li a::before {
	content: "";
    padding-top: 120%;
    display: block;
	pointer-events: none;
}
.filterable-gallery-section .gallery li a img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.gallery .image.hidden {
    display: none;
}

.load-more-container {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (max-width: 991px) {
	.filterable-gallery-section .gallery {
		-ms-grid-columns: 1fr[3];
    	grid-template-columns: repeat(3,minmax(0,1fr));
	}
	.filterable-gallery-section .filter-gallery-nav span {
		display: none;
	}
	.filterable-gallery-section .filter-gallery-nav {
		overflow: scroll;
		-webkit-overflow-scrolling: touch;
		display: inline-block;
		width: 100%;
	}
	.filterable-gallery-section .filter-gallery-nav li {
		display: inline-block;
	}
	.filterable-gallery-section .filter-gallery-nav li button {
		white-space: nowrap;
	}
}
@media (max-width: 575px) {
	.filterable-gallery-section .gallery {
		-ms-grid-columns: 1fr[2];
    	grid-template-columns: repeat(2,minmax(0,1fr));
		grid-gap: 10px;
	}
	.filterable-gallery-section .gallery li a::before {
		padding-top: 100%;
	}
	.filterable-gallery-section {
		padding: 2em 0;
	}
	.filterable-gallery-section .filter-gallery-nav {
		margin-bottom: 2em;
	}
}

/* accreditation logos */
.accreditation-logos {
	position: relative;
	overflow: hidden;
	padding: 3em 0;
}
.accreditation-logos .logos {
	display: -webkit-box; 
	display: -ms-flexbox; 
	display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
	margin-bottom: 0;
}
.accreditation-logos .logo {
	padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
	height: inherit;
}
.accreditation-logos .logo img {
	max-width: 200px;
}
.accreditation-logos > .logo {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 16.667%;
	        flex: 0 0 16.667%;
	max-width: 16.667%;
}
.accreditation-logos .slick-list, 
.accreditation-logos .slick-track {
	min-width: 100%;
}
.accreditation-logos .slick-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media (max-width: 991px) { 
	.accreditation-logos > .logo {
		-webkit-box-flex: 0;
			-ms-flex: 0 0 33.33%;
				flex: 0 0 33.33%;
		max-width: 33.33%;
	}
	.accreditation-logos {
		padding: 2em 0;
	}
}
@media (max-width: 575px) { 
	.accreditation-logos > .logo {
		-webkit-box-flex: 0;
			-ms-flex: 0 0 50%;
				flex: 0 0 50%;
		max-width: 50%;
	}
}

/* accordions */
.accordions .section-introduction {
	text-align: center;
	margin-bottom: 2em;
}
.accordion-section {
	width: 100%;
}
.accordions-section .section-introduction {
	text-align: center;
}
.accordion-section .content-buttons {
	width: 100%;
	padding-bottom: 1em;
}
.accordion-section .accordion .accordion-title {
	margin: 0;
	width: 100%;
	padding-right: 30px;
	box-sizing: border-box;
}
.accordion-section .accordion {
	width: 100%;
	overflow: hidden;
	margin-bottom: 0.5em;
	background: #fff;
	border-bottom: 2px solid #E6E6E6;
	padding: 20px 0;
}
.accordion-section .accordion:last-of-type {
	border-bottom: none;
}
details summary {
	list-style-type: none;
    width: 100%;
	position: relative;
	cursor: pointer;
	background: #fff;
	padding: 16px 0;
	margin: -16px 0;
	box-sizing: border-box;
	position: relative;
}
details {
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
details .accordion-details {
	position: relative;
	margin-top: 25px;
	width: 100%;
}
details .accordion-details a {
	text-decoration: underline;
	text-underline-position: under;
}
details summary::after {
	content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 31 29" fill="none"><path d="M4.84375 14.5H26.1562" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path d="M15.5 4.53125V24.4688" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    vertical-align: middle;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
details[open] summary::after { 
	-webkit-transform: translateY(-50%) rotate(45deg); 
	    -ms-transform: translateY(-50%) rotate(45deg); 
	        transform: translateY(-50%) rotate(45deg);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
details summary::-webkit-details-marker {
	display: none;
}
@media (min-width: 992px) {
	details .accordion-details {
		max-width: 90%;
	}
}

.accordion-title {
	font-size: 24px;
}
@media screen and (min-width: 320px) {
	.accordion-title {
		font-size: calc(24px + 6 * ((100vw - 320px) / 680));
	}
}
@media screen and (min-width: 1000px) {
	.accordion-title {
		font-size: 22px;
	}
}
@media (max-width: 575px) {
	.accordion-section .accordion .accordion-title {
		padding-right: 40px;
	}
}

/* case studies archive */
.archive-post-wrapper.case_studies .posts-columns,
.archive-post-wrapper.customer_reviews .posts-columns {
	-ms-grid-columns: 1fr[4];
    grid-template-columns: repeat(4,minmax(0,1fr));
	grid-gap: 40px 20px;
	grid-auto-rows: auto;
}
.archive-post-wrapper .posts-columns article.case_studies .inside-article .post-image,
.archive-post-wrapper .posts-columns article.customer_reviews .inside-article .post-image {
	padding-top: 120%;
	margin-bottom: 15px;
}
.archive-post-wrapper.customer_reviews .posts-columns article .entry-content {
	max-height: 8em;
	overflow: auto;
	padding-right: 10px;
}
.archive-post-wrapper.customer_reviews .posts-columns article .entry-content figure table {
	margin-bottom: 0;
}
.archive-post-wrapper.customer_reviews .posts-columns article .entry-content::-webkit-scrollbar {
	width: 8px;
}
.archive-post-wrapper.customer_reviews .posts-columns article .entry-content::-webkit-scrollbar-track {
	background: #F4F4F4;
	border-radius: 8px;
}
.archive-post-wrapper.customer_reviews .posts-columns article .entry-content::-webkit-scrollbar-thumb {
	background: var(--green);
	border-radius: 8px;
}
.archive-post-wrapper.customer_reviews .posts-columns article .entry-content::-webkit-scrollbar-thumb:hover {
	background: #546e29;
}
.archive-post-wrapper .posts-columns article.customer_reviews .inside-article .post-image {
	background: var(--black);
}
.archive-post-wrapper:not(.search-posts) .posts-columns article.customer_reviews .inside-article .entry-title {
	font-size: 13px;
	line-height: 16px;
	color: var(--black);
	font-family: "usual", sans-serif;
	letter-spacing: normal;
}
.archive-post-wrapper.search-posts .posts-columns article .entry-summary {
	border: 0;
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal!important;
}
.archive-post-wrapper .posts-columns article.customer_reviews .inside-article .read-more-container {
	display: none;
}
.posts-columns article:not(.featured-column, .customer_reviews) .inside-article .entry-summary p:not(.read-more-container) {
	border: 0;
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal!important;
}
.posts-columns article.featured-column .inside-article .entry-summary p.read-more-container {
	margin-bottom: 20px;
}
.archive-post-wrapper .posts-columns article.case_studies .inside-article,
.archive-post-wrapper .posts-columns article.customer_reviews .inside-article {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
	height: 100%;
}
.archive-post-wrapper .posts-columns article.case_studies .read-more.button,
.archive-post-wrapper .posts-columns article.customer_reviews .read-more.button {
	padding: 0;
    background: transparent;
    color: var(--text);
    border-radius: 0;
    border: none;
	line-height: 20px;
    text-decoration: underline;
    font-weight: initial;
	letter-spacing: -0.03em;
}
.archive-post-wrapper .posts-columns article.case_studies .entry-summary {
	margin-top: auto;
}
.archive-post-wrapper .posts-columns article.customer_reviews .entry-summary {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;  
	overflow: hidden;
}
@media (max-width: 991px) {
	.archive-post-wrapper.case_studies .posts-columns,
	.archive-post-wrapper.customer_reviews .posts-columns {
		-ms-grid-columns: 1fr[3];
		grid-template-columns: repeat(3,minmax(0,1fr));
	}
}
@media (max-width: 768px) {
	.archive-post-wrapper.case_studies .posts-columns,
	.archive-post-wrapper.customer_reviews .posts-columns {
		-ms-grid-columns: 1fr[2];
		grid-template-columns: repeat(2,minmax(0,1fr));
	}
}
@media (max-width: 575px) {
	.archive-post-wrapper.case_studies .posts-columns,
	.archive-post-wrapper.customer_reviews .posts-columns {
		-ms-grid-columns: 1fr[1];
		grid-template-columns: repeat(1,minmax(0,1fr));
	}
	.archive-post-wrapper .posts-columns article.case_studies .inside-article .post-image {
		padding-top: 90%;
	}
}

/* site usps */
.company-usps {
	overflow: hidden;
	padding: 4em 0;
}
.company-usps .list-usps {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
	justify-content:center;
}
.company-usps .list-usps .usp {
	text-align: center;
	margin-right: 30px;
	font-size: 13px;
	position: relative;
	overflow: hidden;
}
.company-usps .list-usps .usp img {
	width: 65px;
	height: 65px;
	display: block;
    margin: auto;
	margin-bottom: 15px;
}
.company-usps .list-usps .usp .main-heading {
	margin-bottom: 15px;
}
.company-usps .list-usps > .usp {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 25%;
	        flex: 0 0 25%;
    max-width: calc(25% - 30px);
}
.list-usps .slick-list,
.list-usps .slick-track {
	min-width: 100%;
}
.list-usps .slick-list {
	width: calc(100% + 30px);
    margin-right: -30px;
}
@media (max-width: 991px) {
	.company-usps .list-usps > .usp {
		-webkit-box-flex: 0;
			-ms-flex: 0 0 33.33%;
				flex: 0 0 33.33%;
		max-width: calc(33.33% - 30px);
	}
	.company-usps .list-usps .usp {
		padding-left: 85px;
		text-align
	}
	.company-usps .list-usps .usp .usp-subtitle p:last-child {
		margin: 0;
	}
	.company-usps .list-usps .usp img {
		position: absolute;
		left: 0;
		top: 50%;
		-webkit-transform: translateY(-50%);
		    -ms-transform: translateY(-50%);
		        transform: translateY(-50%);
		margin: 0;
	}
	.list-usps .slick-list {
		overflow: visible;
	}
}
@media (max-width: 768px) {
	.company-usps .list-usps > .usp {
		-webkit-box-flex: 0;
			-ms-flex: 0 0 50%;
				flex: 0 0 50%;
		max-width: calc(50% - 30px);
	}
	.company-usps {
		padding: 3em 0;
	}
}
@media (max-width: 575px) {
	.company-usps .list-usps > .usp {
		-webkit-box-flex: 0;
			-ms-flex: 0 0 100%;
				flex: 0 0 100%;
		max-width: calc(100% - 30px);
	}
}

/* contact form */
.contact-form:not(.wide-form) form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}
.contact-form:not(.wide-form) form label {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.33%;
	        flex: 0 0 33.33%;
	max-width: calc(33.33% - 15px);
	margin-right: 15px;
	margin-bottom: 15px;
	display: inline-block;
}
.contact-form:not(.wide-form) .wpcf7[id^="wpcf7-f15940"] form label.story-message {
	-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
			flex: 0 0 100%;
	max-width: calc(100% - 15px);
}
.contact-form:not(.wide-form) .wpcf7[id^="wpcf7-f15940"] label {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
    max-width: calc(50% - 15px);
}
.contact-form:not(.wide-form) form label input[type="text"],
.contact-form:not(.wide-form) form label input[type="tel"], 
.contact-form:not(.wide-form) form label input[type="email"],
.contact-form:not(.wide-form) form label textarea {
	background: #F9F9F9;
    border: none;
	width: 100%;
}
.contact-form:not(.wide-form) form label .wpcf7-form-control-wrap {
	display: block;
    width: 100%;
    margin-top: 5px;
}
.contact-form:not(.wide-form) form label.subject {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 66.66%;
	        flex: 0 0 66.66%;
	max-width: calc(66.66% - 15px);
}
.contact-form:not(.wide-form) form label.message,
.contact-form:not(.wide-form) form .submit-wrapper {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
	max-width: calc(50% - 15px);
}
.contact-form:not(.wide-form) form .submit-wrapper {
	margin-bottom: 15px;
	margin-right: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}
.contact-form:not(.wide-form) form .submit-wrapper .accept .wpcf7-form-control-wrap label {
	max-width: none;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    margin: 0;
}
.contact-form:not(.wide-form) form .submit-wrapper .accept {
    width: 100%;
    display: inline-block;
}
.contact-form:not(.wide-form) form .submit-wrapper .accept p {
	margin-bottom: 10px;
    font-size: 13px;
	max-width: calc(100% - 35px);
}
.contact-form:not(.wide-form) form .submit-wrapper .accept .wpcf7-form-control-wrap {
	vertical-align: top;
}
.contact-form:not(.wide-form) form .submit-wrapper .submit {
	max-width: none;
    width: 100%;
    flex: auto;
    margin: 0;
}
.contact-form:not(.wide-form) form label.message textarea {
	height: 100px;
}
.contact-form:not(.wide-form) form label.message {
	margin-bottom: 15px;
}
.contact-form:not(.wide-form) form .wpcf7-list-item {
	margin: 0;
}
.contact-form:not(.wide-form) form .accept input {
	width: 16px;
    height: 16px;
    vertical-align: top;
    margin-right: 8px;
	margin-top: 3px;
}
.contact-form:not(.wide-form) form .accept .wpcf7-form-control-wrap {
	display: inline-block;
}
.contact-form:not(.wide-form) form .accept .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
	display: inline-block;
	vertical-align: middle;
}
.contact-form:not(.wide-form) form .accept p {
	display: inline-block;
}
.contact-form:not(.wide-form) form label.submit {
	position: relative;
}
.contact-form:not(.wide-form) form label.submit .wpcf7-spinner {
	position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    margin: 0;
}
.contact-form:not(.wide-form) form label.submit input {
	width: 100%;
}
@media (max-width: 991px) {
	.contact-form:not(.wide-form) form label {
		-webkit-box-flex: 0;
			-ms-flex: 0 0 50%;
				flex: 0 0 50%;
		max-width: calc(50% - 15px);
	}
	.contact-form:not(.wide-form) .wpcf7[id^="wpcf7-f15940"] label {
		-webkit-box-flex: 0;
			-ms-flex: 0 0 100%;
				flex: 0 0 100%;
		max-width: calc(100% - 15px);
	}
}
@media (max-width: 575px) {
	.contact-form:not(.wide-form) form label {
		-webkit-box-flex: 0;
			-ms-flex: 0 0 100%;
				flex: 0 0 100%;
		max-width: calc(100% - 15px);
		margin-top: 15px;
	}
	.contact-form:not(.wide-form) form .submit-wrapper, 
	.contact-form:not(.wide-form) form label.message {
		-webkit-box-flex: 0;
			-ms-flex: 0 0 100%;
				flex: 0 0 100%;
		max-width: calc(100% - 15px);
	}
}

/* posts */
.post-filters {
	padding: 30px 0;
}
.post-filters + .archive-post-wrapper {
	padding-top: 0;
}
.archive-post-wrapper.blog-posts {
	padding-top: 0;
}
#right-sidebar .inside-right-sidebar aside {
	padding-top: 0;
    width: 100%;
}
#right-sidebar .inside-right-sidebar aside .widget-title {
	font-size: 24px;
}
#right-sidebar .inside-right-sidebar aside ul {
    width: 100%;
}
#right-sidebar .inside-right-sidebar aside ul li {
    margin-left: 15px;
	font-size: 16px;
	line-height: 1.3;
	list-style-type: disc;
}
@media (max-width: 991px) {
	.archive-post-wrapper.blog-posts {
		padding-top: 3em;
	}
}

/* defaults */
.section-introduction {
	margin-bottom: 1.5em;
}
.paging-navigation {
	width: 100%;
	grid-column: -1 / 1;
}
.paging-navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.masonry-load-more {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 4em;
	margin-bottom: 0;
	grid-column: -1 / 1;
}
.archive-post-wrapper + .masonry-load-more {
	margin-top: -4em;
	margin-bottom: 4em;
}
.generate-columns-container + .masonry-load-more {
	margin-top: -2em;
    margin-bottom: 4em;
}
@media (max-width: 991px) {
	.archive-post-wrapper + .masonry-load-more {
		margin-top: -1em;
		margin-bottom: 2em;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}
@media (max-width: 768px) {
	.generate-columns-container + .masonry-load-more {
		margin-top: -1em;
    	margin-bottom: 2em;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

/* post filters */
.post-filters .order-blogs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.post-filters .order-blogs label {
	margin-right: 20px;
}
.post-filters .order-blogs label.category {
	margin-right: 0;
    margin-left: auto;
}
.post-filters .order-blogs select {
	border: 1px solid #F5F5F5;
	margin-left: 20px;
	background-color: #F5F5F5;
	border-radius: 50px;
	font-family: inherit;
    font-size: 14px;
}
.post-filters .order-blogs label:last-child {
	margin-right: 0;
}
.post-filters .order-blogs input[type="submit"] {
	padding: 12px 20px 10px 20px;
}
@media (max-width: 575px) {
	.post-filters .order-blogs label {
		margin: 0;
	}
	.post-filters .order-blogs label:last-child {
		margin-bottom: 0;
	}
	.post-filters .order-blogs label input[type="submit"] {
		width: 100%;
	}
	.post-filters .order-blogs select {
		margin: 0;
		display: block;
	}
}

/* blog page */
body.blog .page-hero .contained-hero-content {
	padding-bottom: 210px !important;
}
.archive-post-wrapper .container > .main-heading {
	margin-bottom: 2em;
}
.archive-post-wrapper .posts-columns {
	margin: auto;
	display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr[2];
    grid-template-columns: repeat(2,minmax(0,1fr));
    grid-gap: 40px;
    grid-auto-flow: row dense;
}
.archive-post-wrapper .posts-columns .featured-column {
	grid-column: -1 / 1;
	margin-top: -180px;
}
.archive-post-wrapper.search-posts .posts-columns article.featured-column {
	grid-column: 1;
    margin: 0;
}
.archive-post-wrapper.search-posts .posts-columns .featured-column .inside-article .entry-header::before {
	display: none;
}
.archive-post-wrapper .posts-columns .featured-column .inside-article .post-image {
	padding-top: 0;
    height: 360px;
	margin-bottom: 30px;
}
.archive-post-wrapper .posts-columns .featured-column .inside-article .entry-header::before {
	content: "Latest News";
	letter-spacing: 0.1em;
	color: #FFFFFF;
	font-weight: 500;
	font-size: 13px;
	line-height: 21px;
	background: var(--green);
	border-radius: 5px;
	text-transform: uppercase;
	padding: 5px 10px;
    margin-bottom: 10px;
}
.archive-post-wrapper .posts-columns article {
	width: 100%;
}
.archive-post-wrapper .posts-columns .inside-article .post-image.default-logo {
	background: var(--black);
}
.archive-post-wrapper .posts-columns .inside-article .post-image.default-logo img {
	-o-object-fit: contain;
	   object-fit: contain;
    max-width: 70%;
}
.archive-post-wrapper.search-posts .posts-columns .inside-article .entry-header {
	margin-top: 10px;
}
.archive-post-wrapper .posts-columns .inside-article .post-image,
.archive-post-wrapper.search-posts .posts-columns .inside-article .post-image {
	margin: 0; 
	position: relative;
	padding-top: 56.25%;
	margin-bottom: 15px;
	overflow: hidden;
	margin: 0;
	height: auto;
}
.archive-post-wrapper.search-posts .posts-columns article.case_studies .inside-article .post-image,
.archive-post-wrapper.search-posts .posts-columns article.customer_reviews .inside-article .post-image {
	margin: 0; 
	position: relative;
	padding-top: 56.25%;
	margin-bottom: 15px;
	overflow: hidden;
	margin: 0;
}
.archive-post-wrapper.blog-posts .posts-columns article:not(.featured-column) .inside-article {
	padding-left: calc(50% + 25px);
	position: relative;
}
.archive-post-wrapper.blog-posts .posts-columns article:not(.featured-column) .inside-article::before {
	content: "";
	display: block;
    padding-top: 100%;
    width: 100%;
}
.archive-post-wrapper.blog-posts .posts-columns article:not(.featured-column) .inside-article .post-image {
	position: absolute;
	width: 50%;
	left: 0;
	top: 0;
	padding-top: 0;
	height: 100%;
}
.archive-post-wrapper.blog-posts .posts-columns article:not(.featured-column) .inside-article .entry-header {
	position: absolute;
    top: 0;
    left: calc(50% + 20px);
    margin: 0;
}
.archive-post-wrapper.blog-posts .posts-columns article:not(.featured-column) .inside-article .entry-summary {
	position: absolute;
    bottom: 0;
	left: calc(50% + 20px);
    margin: 0;
}
.archive-post-wrapper.blog-posts .posts-columns .inside-article {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.archive-post-wrapper .posts-columns .inside-article .post-image a,
.archive-post-wrapper .posts-columns .inside-article .post-image > img {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.archive-post-wrapper .posts-columns .inside-article .post-image img {
	width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.archive-post-wrapper .posts-columns .inside-article > .entry-meta {
	display: none;
}
.archive-post-wrapper .posts-columns .inside-article .entry-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
	margin-bottom: 10px;
}
.archive-post-wrapper .posts-columns .inside-article .entry-summary p:not(.read-more-container) {
	margin-bottom: 10px;
}
.posts-columns .inside-article .read-more-container .read-more.button::after {
	content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="7" height="11" viewBox="0 0 7 11" fill="none"><path d="M1 1L6 5.5L1 10" stroke="white" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    vertical-align: middle;
    margin-left: 15px;
	margin-right: -5px;
	display: inline-block;
}
.archive-post-wrapper .posts-columns .entry-title {
	font-size: 24px;
	line-height: 29px;
}
.archive-post-wrapper .posts-columns .inside-article .read-more.button {
	border: none;
    background: transparent;
    color: var(--text);
    padding: 0;
    text-decoration: underline;
    font-style: italic;
	font-weight: 600;
}
.archive-post-wrapper .posts-columns .inside-article .entry-meta {
	color: #4D4D4D;
    font-size: 13px;
    line-height: 21px;
	text-transform: capitalize;
}
.archive-post-wrapper .posts-columns .inside-article .entry-meta a {
	color: #4D4D4D;
	text-decoration: none;
}
@media (max-width: 991px) {
	.archive-post-wrapper .posts-columns {
		-ms-grid-columns: 1fr[2];
    	grid-template-columns: repeat(2,minmax(0,1fr));
	}
	.archive-post-wrapper .container > .main-heading {
		margin-bottom: 1em;
	}
	.archive-post-wrapper .posts-columns .featured-column .inside-article .post-image {
		height: 210px;
	}
	.archive-post-wrapper.blog-posts .posts-columns article:not(.featured-column) .inside-article {
		padding: 0;
	}
	.archive-post-wrapper.blog-posts .posts-columns article:not(.featured-column) .inside-article .post-image {
		position: relative;
		width: 100%;
		height: auto;
		padding-top: 66%;
	}
	.archive-post-wrapper.blog-posts .posts-columns article:not(.featured-column) .inside-article::before {
		display: none;
	}
	.archive-post-wrapper.blog-posts .posts-columns article:not(.featured-column) .inside-article .entry-header {
		position: relative;
		top: 0;
		left: 0;
		margin: 15px 0;
	}
	.archive-post-wrapper.blog-posts .posts-columns article:not(.featured-column) .inside-article .entry-summary{
		position: relative;
		top: 0;
		left: 0;
	}
}
@media (max-width: 575px) {
	.archive-post-wrapper .posts-columns {
		-ms-grid-columns: 1fr[1];
    	grid-template-columns: repeat(1,minmax(0,1fr));
		grid-gap: 40px;
		grid-auto-rows: auto;
	}
	.one-container .site-main .paging-navigation {
		margin-top: 2rem;
	}
}

/* no results */
.no-results .entry-header {
	width: 100%;
}
.no-results .inside-article {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	text-align: center;
}
.no-results .inside-article .search-form {
	width: 100%;
	display: block;
	position: relative;
}
.no-results .inside-article .search-form label {
	width: 100%;
	display: block;
	position: relative;
}
.no-results .inside-article .search-form label input[type="search"] {
	display: block;
	width: 100%;
	border-radius: 50px;
    line-height: 1.5;
    font-size: 14px;
    color: #fff;
    background: #484848;
    border-color: #484848;
    padding: 12px 20px;
}
.no-results .inside-article .search-form .search-submit {
	margin: 0;
	width: 50px;
	position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    text-align: center;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 0;
    font-size: 16px;
}

/* latest case studies */
.latest-case-studies .container {
	display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr[3];
    grid-template-columns: repeat(3,minmax(0,1fr));
    grid-gap: 30px;
    grid-auto-rows: 1fr;
    grid-auto-flow: row dense;
}
.latest-case-studies .section-introduction {
	margin: 0;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.latest-case-studies .section-introduction .main-heading {
	margin-top: auto;
}
.latest-case-studies .section-introduction .article-content p:last-child {
	margin-bottom: 0;
}
.latest-case-studies .section-introduction::before {
	content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="147" height="147" viewBox="0 0 147 147" fill="none"><path d="M0 0H147L72.0493 72.0493L0 147V0Z" fill="rgb(207, 82, 54)"/></svg>');
}
.latest-case-studies .case-studies {
	-ms-grid-column-span: 2;
	grid-column: span 2;
    -ms-grid-row-span: 3;
    grid-row: span 3;
	display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr[2];
    grid-template-columns: repeat(2,minmax(0,1fr));
    grid-gap: 30px;
    grid-auto-rows: 1fr;
    grid-auto-flow: row dense;
}
@media (min-width: 992px) {
	.latest-case-studies .section-introduction {
		position: sticky;
    	top: 135px;
	}
}
@media (max-width: 991px) {
	.latest-case-studies .section-introduction::before {
		display: none;
	}
	.latest-case-studies .section-introduction {
		margin-bottom: 1.5rem;
	}
	.latest-case-studies .container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		grid-gap: 0;
	}
	.latest-case-studies .case-studies {
		width: 100%;
		grid-gap: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
	}
	.latest-case-studies .case-studies.slick-slider {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
	.latest-case-studies .case-studies .slick-list {
		-webkit-box-ordinal-group: 0;
		    -ms-flex-order: -1;
		        order: -1;
	}
	.latest-case-studies {
		overflow: hidden;
	}
	.latest-case-studies .case-studies .slick-list {
		min-width: 100%;
		overflow: visible;
		padding-right: 30px;
	}
	.latest-case-studies .case-studies .slick-track {
		min-width: 100%;
	}
	.latest-case-studies .case-studies article {
		margin-right: 30px;
	}
	.latest-case-studies .case-studies > article {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		margin-right: 30px;
		max-width: calc(100% - 30px);
	}
}

/* call to action */

/* latest blogs */
.latest-blogs {
	overflow: hidden;
	position: relative;
}
.latest-blogs .latest-blogs-slider {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
}
.latest-blogs .latest-blogs-slider.slick-slider {
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.latest-blogs .latest-blogs-slider article {
	margin-right: 60px;
}
.latest-blogs .latest-blogs-slider article footer.entry-meta {
	display: none;
}
.latest-blogs .latest-blogs-slider article .entry-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
}
.latest-blogs .latest-blogs-slider article .entry-header .entry-meta {
	margin: 0;
    order: -1;
    margin-bottom: 5px;
}
.latest-blogs .latest-blogs-slider article .post-image {
	margin: 0;
    position: relative;
    padding-top: 56.25%;
    margin-bottom: 15px;
}
.latest-blogs .latest-blogs-slider article .post-image a {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.latest-blogs .latest-blogs-slider article .post-image img {
	width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.latest-blogs .latest-blogs-slider article .entry-title {
	font-size: 20px;
    line-height: 24px;
}
.latest-blogs .latest-blogs-slider .slick-dots {
	width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	margin-top: 15px;
}
.latest-blogs .latest-blogs-slider .slick-dots li {
	margin-bottom: 0;
}
.latest-blogs .latest-blogs-slider .slick-list {
	order: -1; 
	min-width: 100%;
}
.latest-blogs .latest-blogs-slider .slick-track {
	min-width: 100%;
}
@media (min-width: 992px) {
	.latest-blogs .latest-blogs-slider {
		overflow: hidden;
	}
}
@media (max-width: 991px) {
	.latest-blogs .latest-blogs-slider .slick-list {
		overflow: visible;
	}
}
@media (min-width: 576px) {
	.latest-blogs .latest-blogs-slider .slick-list {
		width: calc(100% + 60px);
		min-width: calc(100% + 60px);
	}
}
@media (max-width: 575px) {
	.latest-blogs .latest-blogs-slider article {
		margin-right: 40px;
	}
}

/* section */
section {
	padding-top: 8em;
	padding-bottom: 8em;
	position: relative;
}
section.page-blocks {
	padding-top: 6em;
    padding-bottom: 6em;
}
@media (max-width: 991px) {
	section {
		padding-top: 3em;
		padding-bottom: 3em;
	}
	section.page-blocks {
		padding-top: 3em;
		padding-bottom: 3em;
	}
}

/* single case study */
body.single-post .entry-meta {
	margin-top: 2em;
}
body.single-case_studies .page-hero .contained-hero-content,
body.single-post .page-hero .contained-hero-content {
	padding-bottom: 185px !important;
	text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
body.single-case_studies .single-page-wrapper,
body.single-post .single-post-wrapper {
	padding: 0;
}
body.single-case_studies .single-page-wrapper .single-case-content,
body.single-post .single-post-wrapper .single-post-content {
	margin: auto;
}
body.single-case_studies .single-page-wrapper .featured-image,
body.single-post .single-post-wrapper .featured-image {
	margin-top: -165px;
    height: 330px;
	margin-bottom: 30px;
}
body.single-case_studies .single-page-wrapper .featured-image img,
body.single-post .single-post-wrapper .featured-image img {
	width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.single-post-content .entry-header .entry-meta {
	letter-spacing: -0.03em;
    color: #4D4D4D;
    margin-bottom: 20px;
}
.single-post-content .entry-header .entry-meta a {
	color: #4D4D4D;
	text-decoration: none;
}
.single-post-content form label {
	display: inline-block;
	width: 100%;
	margin-bottom: 10px;
	position: relative;
}
.single-post-content form .submit {
	text-align: center;
}
.single-post-content form .submit .wpcf7-spinner {
	position: absolute;;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.single-post-content form label input[type="text"],
.single-post-content form label input[type="email"],
.single-post-content form label input[type="tel"] {
	width: 100%;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    font-family: inherit;
    letter-spacing: -0.03em;
    color: var(--grey);
    background: #FFFFFF;
    border-radius: 20px;
    padding: 10px 20px;
}
.single-post-content form label.postcode {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex; 
	-ms-flex-wrap: wrap; 
	    flex-wrap: wrap;
}
.single-post-content form label.postcode input[type="text"] {
	border-top-right-radius: 0; 
	border-bottom-right-radius: 0;
}
.single-post-content form label.postcode span {
	width: 100%;
	margin-bottom: 8px;
	text-align: center;
}
.single-post-content form {
	
}
.single-post-content form .accept input[type="checkbox"] {
	width: 16px;
    height: 16px;
    vertical-align: middle;
    line-height: 16px;
    display: inline-block;
    margin-right: 6px;
}
.single-post-content form .accept .wpcf7-list-item {
	margin: 0;
}
.single-post-content form .accept label {
	margin: 0;
}
.single-post-content form .accept .wpcf7-list-item-label {
	width: calc(100% - 22px);
	display: inline-block;
    vertical-align: top;
}
@media (max-width: 991px) {
	body.blog .page-hero .contained-hero-content {
		padding-bottom: 150px !important;
	}
	body.single-case_studies .single-page-wrapper .featured-image, body.single-post .single-post-wrapper .featured-image {
		height: 210px;
	}
}

/* case study gallery */
.project-gallery {
	overflow: hidden;
	padding: 30px 0;
}
.project-gallery .gallery-images {
	margin: auto;
	display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr[4];
    grid-template-columns: repeat(4,minmax(0,1fr));
    grid-gap: 10px;
    grid-auto-rows: 1fr;
    grid-auto-flow: row dense;
	width: 100%;
}
.project-gallery .gallery-images .slick-list {
	min-width: 100%;
}
.project-gallery .gallery-images .slick-track {
	min-width: 100%;
}
.project-gallery .gallery-images a {
	position: relative;
}
.project-gallery .gallery-images a::before {
	content: "";
	padding-top: 100%;
	display: block;
}
.project-gallery .gallery-images a img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
@media (max-width: 1024px) {
	.project-gallery .gallery-images {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		grid-gap: 0;
	}
	.project-gallery .gallery-images > .project-image {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 25%;
		        flex: 0 0 25%;
		max-width: calc(25% - 20px);
	}
	.project-gallery .gallery-images .project-image {
		margin-right: 20px;
	}
	.project-gallery .gallery-images .slick-list {
		padding-right: 80px;
		overflow: visible;
	} 
	.project-gallery .gallery-images {
		overflow: visible;
	}
}
@media (max-width: 991px) { 
	.project-gallery .gallery-images > .project-image {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 33.33%;
		        flex: 0 0 33.33%;
		max-width: calc(33.33% - 20px);
	}
}
@media (max-width: 768px) {
	.project-gallery .gallery-images > .project-image {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
		max-width: calc(50% - 20px);
	} 
}
@media (max-width: 575px) {
	.project-gallery .gallery-images > .project-image {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		max-width: calc(100% - 20px);
	} 
}

/* slick slider defaults - prevents pop-in */
.slick-initialized .slick-slide img {
	opacity: 1;
}

.slick-sr-only {
	font-size: 14px;
}
/* end slick bug fix */
.slick-arrow {
	position: absolute;
	bottom: 0;
	cursor: pointer;
}
.slick-arrow.slick-next {
	right: 15px;
	z-index: 10;
}
.slick-arrow.slick-prev {
	left: 15px;
	z-index: 10;
}
.slick-dots {
	list-style-type: none;
	font-size: 0;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.slick-dots li button {
	padding: 6px;
	margin-left: 5px;
	margin-right: 5px;
	border-radius: 50%;
	font-size: 0;
	background: #fff;
    border-color: #fff;
}
.slick-dots li.slick-active button {
	background: var(--green);
    border-color:var(--green);
}

/* fancy box image */
.fancybox__container {
	z-index: 99999;
}

/* pagination */
.paging-navigation {
	margin-top: 6rem;
}
.paging-navigation .page-numbers {
	font-size: 18px;
    font-weight: 500;
}
.paging-navigation .page-numbers {
	line-height: 35px;
    display: inline-block;
    min-width: 30px;
    text-align: center;
    background: var(--green);
    color: #fff;
    padding: 0;
    border-radius: 4px;
	text-decoration: none;
	padding: 0 8px;
	margin: 0 4px;
}
.paging-navigation .page-numbers.next, 
.paging-navigation .page-numbers.prev {
	background: transparent;
    color: var(--green);
}
.paging-navigation .page-numbers span {
	display: none;
}

/* blog */
.post {
	margin: 0;
	position: relative;
}
.separate-containers .site-main {
	margin: 0;
}

/* footer */
.site-footer {
    width: 100%;
	overflow: hidden;
	position: relative;
	border-top: 9px solid var(--green);
}
.site-footer > * {
	position: relative;
	z-index: 1;
}
.site-footer .footer-social-bar .container {
	position: relative;
}
.site-footer .footer-social-bar .main-heading {
	margin: 0;
    width: auto;
    color: #fff;
    margin-right: auto;
	font-weight: 400;
}
.site-footer .copyright-bar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	margin: 0 !important;
	margin-right: auto !important;
	color: #929292;
}
.site-footer .copyright-bar .google-recaptcha {
	display: block;
    width: 100%;
    text-align: left;
}
.site-footer .copyright-bar .copyright {
	float: right;
	-webkit-box-ordinal-group: 2;
	    -ms-flex-order: 1;
	        order: 1;
}
.site-footer .footer-widgets-container .inside-footer-widgets {
	width: 100%;
	margin: 0;
}
.site-footer .copyright-bar .footer-details {
	display: inline-block;
    margin-right: auto;
	text-align: left;
}
.site-footer .footer-widgets-container .inner-padding {
	padding: 0 15px 0 15px;
    width: 100%;
	margin-bottom: 10px;
    line-height: 1.5;
}
.inside-footer-widgets address {
	text-transform: initial;
}
.inside-footer-widgets {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.inside-footer-widgets .sub-menu {
	display: none;
}
.inside-footer-widgets aside > div {
    width: 100%;
}
.inside-footer-widgets .footer-widget-3 #text-4 .textwidget {
	text-transform: initial;
    margin-top: 0.5em;
}
.inside-footer-widgets .widget address {
	font-style: normal;
	max-width: 270px;
	padding-left: 26px;
	position: relative;
}
.inside-footer-widgets .widget address::before {
	content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="15" height="23" viewBox="0 0 15 23" fill="none"><path d="M3.9973 17.1807C3.01201 17.3723 1.75307 17.7096 0.755711 18.6258C0.255711 19.0858 0.00640677 19.6369 0.0547401 20.1782C0.101015 20.6975 0.422867 21.1751 0.961004 21.5232C1.53779 21.8981 2.17367 22.182 2.84436 22.3642C4.2977 22.7529 5.79939 22.951 7.30837 22.9531C8.43446 22.9526 9.55749 22.8412 10.6597 22.6204C11.7283 22.4073 12.9651 22.0853 14.0298 21.3155C14.5442 20.9438 14.8469 20.4867 14.9053 19.9937C14.9641 19.4961 14.7735 18.9803 14.3535 18.501C13.7676 17.8321 12.9928 17.3733 11.9848 17.0982C11.6077 16.9949 11.2158 16.926 10.8369 16.859C10.7124 16.8369 10.588 16.8151 10.4635 16.7918C10.616 16.5642 10.7691 16.3375 10.923 16.1118C11.3116 15.5392 11.7135 14.9468 12.0835 14.35C13.1898 12.5651 14.4928 10.1636 14.7502 7.41377C15.0215 4.51577 14.0679 2.44124 11.8346 1.07195C10.2856 0.122095 8.5571 -0.197362 6.69788 0.123042C3.8869 0.607168 2.04994 2.18112 1.23798 4.80124C0.753965 6.36355 0.931122 7.94332 1.13994 9.14524C1.4819 11.1174 2.25455 13.0908 3.64543 15.5439C3.86229 15.9264 4.0914 16.2911 4.33405 16.6772C4.41856 16.8115 4.50326 16.9469 4.58817 17.0834L4.48034 17.1C4.31191 17.126 4.15368 17.1504 3.9973 17.1807ZM7.61121 18.141C7.54657 18.2211 7.4815 18.3017 7.41601 18.383C6.10826 17.3149 5.27112 15.9493 4.56141 14.6299C3.64808 12.9319 2.67199 10.8887 2.35807 8.60704C2.08964 6.65438 2.29052 5.21297 3.00954 3.93192C3.90277 2.3406 5.67836 1.33566 7.75924 1.24356C7.86114 1.23906 7.96246 1.23679 8.06318 1.23679C9.97795 1.23679 11.671 2.04679 12.6348 3.43768C13.2482 4.32341 13.5191 5.35561 13.4878 6.68585C13.4525 8.16705 13.0248 9.69417 12.142 11.4914C11.1457 13.5201 9.84462 15.474 8.16454 17.4646C7.97709 17.6865 7.79934 17.9072 7.61121 18.141ZM5.06523 17.9123C5.17013 17.9168 5.27005 17.9564 5.34759 18.0243C5.93956 18.6736 6.67254 19.191 7.49523 19.5407C7.85533 19.6928 8.17601 19.5996 8.44758 19.2638L8.63258 19.0342C8.88317 18.7227 9.14239 18.4007 9.41229 18.0983C9.49224 18.003 9.60723 17.9406 9.73368 17.9238C10.659 17.9959 11.632 18.1312 12.4772 18.6299C12.8334 18.8475 13.1527 19.1163 13.4235 19.4269C13.4824 19.4829 13.5285 19.5498 13.5594 19.6235C13.5903 19.6972 13.6052 19.7761 13.6031 19.8556C13.5889 19.9364 13.5577 20.0136 13.5113 20.0825C13.4649 20.1514 13.4044 20.2105 13.3334 20.2564C13.0133 20.5004 12.6624 20.7046 12.2886 20.8643C10.886 21.4607 9.26905 21.7579 7.20042 21.7994C5.69964 21.7464 4.23758 21.6616 2.85013 21.214C2.39786 21.0727 1.96734 20.8741 1.56994 20.6238C1.29131 20.4439 1.13709 20.2336 1.12405 20.0154C1.1117 19.8099 1.22758 19.6012 1.45905 19.4115C1.95768 19.0031 2.51621 18.6669 3.11679 18.4138C3.5964 18.2136 4.13161 18.1029 4.64925 17.9958C4.77602 17.9695 4.90279 17.9432 5.02868 17.9157C5.0407 17.9133 5.05294 17.9122 5.06523 17.9123Z" fill="rgb(134, 134, 134)"/><path d="M10.5786 6.20412C10.5786 6.17839 10.5796 6.15269 10.5803 6.12706C10.5851 6.01441 10.5836 5.90158 10.5754 5.78909C10.5416 5.35607 10.3943 4.93823 10.1471 4.57419C9.89993 4.21015 9.56082 3.91167 9.1612 3.70642C8.77285 3.51043 8.3386 3.41288 7.89976 3.42309C7.46091 3.43329 7.03208 3.55092 6.65414 3.76473C5.76198 4.24932 5.20199 5.06541 5.03493 6.12472C4.81797 7.50022 5.83885 8.84623 7.31042 9.12514C7.5086 9.16306 7.71017 9.18234 7.91228 9.18276C9.15081 9.18276 10.1619 8.42639 10.4697 7.20326C10.5174 6.99734 10.5536 6.78914 10.5781 6.57954C10.591 6.4852 10.6038 6.39087 10.6188 6.29699C10.6208 6.28415 10.6201 6.27102 10.6167 6.25843C10.6134 6.24585 10.6074 6.23405 10.5991 6.22374C10.5933 6.2163 10.5863 6.20969 10.5786 6.20412ZM9.46561 6.3183L9.46355 6.35763C9.46149 6.40007 9.45866 6.45732 9.45376 6.51459C9.40229 7.11071 9.17442 7.57457 8.79482 7.85583C8.45727 8.10601 8.01583 8.19453 7.51739 8.11229C7.25721 8.0603 7.01064 7.95859 6.79246 7.81324C6.57428 7.66789 6.38894 7.48186 6.24757 7.26634C6.11865 7.06997 6.03584 6.84915 6.00489 6.61909C5.97394 6.38905 5.99562 6.15528 6.06836 5.93404C6.25611 5.32036 6.53347 4.72751 7.28553 4.54595C7.46711 4.50108 7.65378 4.47785 7.84131 4.47678C8.19659 4.46862 8.54413 4.57682 8.82648 4.78349C9.24844 5.10305 9.47541 5.64816 9.46561 6.31789V6.3183Z" fill="rgb(134, 134, 134)"/></svg>');
    vertical-align: middle;
	position: absolute;
    top: 4px;
    left: 0;
    line-height: 1;
}
.inside-footer-widgets .widget .email {
	padding-left: 26px;
	position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 22px;
}
.inside-footer-widgets .widget .email::before {
	content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="18" height="13" viewBox="0 0 18 13" fill="none"><path d="M17.8794 6.15178C17.8398 5.49565 17.8083 4.82781 17.7776 4.18204C17.7477 3.55316 17.7169 2.90285 17.6787 2.2635C17.6235 1.33503 17.0853 0.65862 16.1227 0.307387C15.7828 0.183446 15.3644 0.117906 14.8447 0.106847C13.468 0.0777884 12.0682 0.0643567 10.7144 0.051298C10.2324 0.0466313 9.7506 0.0417476 9.26882 0.0366495C9.25668 0.0277199 9.24145 0.0228125 9.2257 0.0228054H8.1035C7.19156 0.0228054 6.2797 0.0230451 5.36796 0.0234372C5.20109 0.0234372 5.03368 0.0231022 4.86687 0.0226904C4.36537 0.021161 3.84673 0.0198917 3.33667 0.0363623C2.64027 0.0587741 2.10403 0.179643 1.64922 0.41682C0.728118 0.897291 0.236781 1.58313 0.188846 2.45542C0.163594 2.91477 0.155087 3.38198 0.146911 3.83387L0.141571 4.11679C0.134186 4.49604 0.126471 4.87521 0.118427 5.25431C0.0925148 6.50349 0.0656799 7.7952 0.0550645 9.06608C0.0507788 9.57196 0.0795258 10.1705 0.324735 10.7739C0.687371 11.6664 1.35627 12.2434 2.36968 12.5379C3.31254 12.8054 4.29576 12.9426 5.28515 12.9445C7.74449 12.9728 10.3241 12.9863 13.36 12.9863H13.9497C14.5076 12.9947 15.0646 12.9409 15.6075 12.8261C16.8522 12.5421 17.5899 11.8614 17.8 10.803C17.8668 10.4439 17.9132 10.082 17.9389 9.71873C18.0299 8.61637 17.9617 7.49926 17.8956 6.41878L17.8794 6.15178ZM6.37834 11.9832C5.31304 11.9803 4.17476 11.9444 3.06884 11.7024C2.62385 11.6051 2.30559 11.4911 2.05128 11.3368L7.53963 6.83378L7.69286 6.98084C7.84556 7.12749 8.00321 7.27884 8.16244 7.42884C8.62332 7.86314 9.0755 7.89873 9.58517 7.54096C9.79372 7.39467 9.99185 7.22914 10.1835 7.06961C10.256 7.00902 10.3293 6.94802 10.4037 6.88731L15.7754 11.7245C15.5897 11.8607 15.3653 11.8893 15.1288 11.9193L15.0609 11.928C14.8069 11.9581 14.5509 11.9721 14.2946 11.9698L12.7921 11.9746C10.6898 11.9816 8.51618 11.989 6.37834 11.9832ZM14.7651 1.93026C13.9614 2.57761 13.1304 3.24694 12.3379 3.92911C11.5471 4.60982 10.7718 5.32321 10.0219 6.01331C9.71156 6.29896 9.39112 6.5939 9.07471 6.88167L2.39994 1.04136C2.44772 1.03003 2.49513 1.01858 2.54216 1.00701C2.72414 0.962832 2.89603 0.920985 3.07161 0.89022C3.94465 0.737279 4.84353 0.758079 5.71287 0.778491C5.90704 0.782961 6.10115 0.787385 6.2952 0.790208C6.59045 0.794326 6.89097 0.803108 7.18148 0.811638C7.4338 0.818991 7.69471 0.826638 7.95165 0.831167C8.67422 0.843914 9.39679 0.85615 10.1194 0.867879C11.6814 0.893879 13.2965 0.92085 14.8847 0.95485C15.108 0.965844 15.3299 0.993726 15.548 1.0382C15.6337 1.05344 15.7225 1.06907 15.8107 1.08272V1.08467C15.4633 1.36791 15.1085 1.65378 14.765 1.93049L14.7651 1.93026ZM3.52339 9.03484C2.85396 9.60273 2.16251 10.1894 1.49388 10.789C1.21616 10.2044 1.07223 9.72467 1.02937 9.24361C0.910689 7.90908 0.960008 6.58073 1.02106 5.33456C1.04895 4.76626 1.0601 4.18825 1.07091 3.62925C1.07829 3.24925 1.08594 2.8563 1.09873 2.47041C1.11192 2.06112 1.26535 1.77393 1.60847 1.5201L6.82385 6.09114C5.76212 7.13531 4.6241 8.1009 3.523 9.03531L3.52339 9.03484ZM16.6713 10.6891C16.6469 10.8064 16.6143 10.9221 16.5736 11.0357C16.5589 11.0797 16.5443 11.1239 16.5305 11.168L16.5095 11.1743L10.9811 6.36796C12.8922 4.60911 14.7047 3.10908 16.5175 1.78556C16.5253 1.81667 16.5332 1.84696 16.5409 1.87649C16.5733 1.98368 16.5947 2.0932 16.605 2.20381C16.6662 3.31699 16.716 4.41557 16.7526 5.24839C16.7869 6.0299 16.8162 6.80096 16.8397 7.54031C16.869 8.47649 16.8723 9.58296 16.6709 10.6894L16.6713 10.6891Z" fill="rgb(134, 134, 134)"/></svg>');
    vertical-align: middle;
	position: absolute;
    top: 4px;
    left: 0;
    line-height: 1;
}
.inside-footer-widgets .widget .phone {
	padding-left: 26px;
	position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 26px;
}
.inside-footer-widgets .widget .phone::before {
	content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="11" height="19" viewBox="0 0 11 19" fill="none"><path d="M10.9352 10.5727C10.9352 12.3618 10.9383 14.151 10.9326 15.9402C10.934 16.3079 10.9136 16.6753 10.8714 17.0403C10.8504 17.259 10.7835 17.47 10.6755 17.6586C10.3582 18.1609 9.87163 18.5658 9.28877 18.693C8.82 18.8045 8.34263 18.872 7.86229 18.8946C6.24251 18.9379 4.62184 18.9505 3.00139 18.9623C2.67407 18.9646 2.34597 18.9157 2.01879 18.884C1.10657 18.7956 0.630391 18.1736 0.37866 17.3422C0.253077 16.9273 0.229456 16.4768 0.176994 16.0402C-0.00633898 14.5149 0.033572 12.9824 0.0521874 11.4507C0.0674652 10.1886 0.0802497 8.92653 0.0905446 7.66443C0.100698 6.21838 0.0899107 4.77193 0.119173 3.32639C0.129726 2.83736 0.191704 2.35102 0.303988 1.87613C0.511648 0.998673 1.09691 0.547155 1.9389 0.369969C3.89415 -0.0414027 5.86301 0.0138554 7.8355 0.121891C8.53358 0.160111 9.15917 0.420562 9.74111 0.814925C10.1525 1.08957 10.4553 1.51002 10.5936 1.99904C10.7058 2.3981 10.7749 2.80903 10.7996 3.22412C10.8654 4.53296 10.912 5.84282 10.9395 7.15372C10.9619 8.2929 10.9442 9.43297 10.9442 10.5727H10.9352ZM1.28553 15.0221C4.1623 14.7567 7.05126 14.6639 9.93819 14.7441C9.94658 14.5904 9.95815 14.4706 9.95885 14.3507C9.97676 11.4468 9.92359 8.46927 9.93854 5.56506C9.93974 5.4183 9.93036 5.27165 9.91034 5.12637C9.81642 4.46071 9.79477 3.86825 9.68632 3.20517C9.63661 2.91756 9.56899 2.63362 9.48388 2.35518C9.44023 2.20871 9.36577 2.07431 9.26599 1.96175C9.16622 1.8492 9.04359 1.76133 8.90708 1.70461C8.51214 1.51351 8.08356 1.40975 7.64836 1.39982C7.19045 1.39106 6.73173 1.39679 6.27473 1.37455C4.89557 1.30739 3.53178 1.43552 2.17286 1.67545C1.74027 1.75182 1.50391 1.99683 1.41245 2.42109C1.37552 2.58814 1.35194 2.75809 1.34194 2.92922C1.32523 3.24714 1.31923 3.56589 1.31712 3.88432C1.29944 6.57967 1.28271 9.27523 1.26691 11.9709C1.26198 12.755 1.25119 13.539 1.24928 14.3231C1.24921 14.5398 1.27121 14.7565 1.28553 15.0221ZM9.88961 15.59L1.32544 15.6955C1.38136 16.2551 1.35534 16.7713 1.50743 17.2622C1.62427 17.6392 1.87459 17.8798 2.28251 17.8869C2.43503 17.8897 2.58734 17.9023 2.73978 17.9029C3.23274 17.9048 3.72562 17.9038 4.21858 17.9029C5.54478 17.9009 6.87113 17.9087 8.19702 17.8894C8.54796 17.8818 8.89672 17.8299 9.23567 17.7347C9.54804 17.6487 9.84307 17.4428 9.87825 17.0816C9.92423 16.6111 9.88961 16.1322 9.88961 15.5901V15.59Z" fill="rgb(134, 134, 134)"/><path d="M6.36639 16.6753C6.36533 17.0681 6.00916 17.4096 5.59194 17.4179C5.50081 17.4204 5.41014 17.4036 5.32538 17.3685C5.24063 17.3334 5.16354 17.2808 5.09876 17.2138C5.03398 17.1468 4.98285 17.0668 4.94844 16.9787C4.91403 16.8905 4.89705 16.796 4.89853 16.7008C4.90477 16.4968 4.98479 16.3029 5.12248 16.1582C5.26017 16.0134 5.4453 15.9285 5.64053 15.9206C6.00656 15.9157 6.36723 16.2909 6.36639 16.6753Z" fill="rgb(134, 134, 134)"/></svg>');
    vertical-align: middle;
	position: absolute;
    top: 4px;
    left: 0;
    line-height: 1;
}
.inside-footer-widgets .widget {
	font-size: 15px;
	font-weight: 300;
}
.inside-site-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
	padding: 15px;
}
.inside-site-info {
	padding: 25px 15px;
}
.footer-widgets .widget-title {
	margin-bottom: 20px;
}
.footer-widgets .inside-footer-widgets > div {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.footer-widgets .inside-footer-widgets > .footer-widget-4 {
	-webkit-box-flex: 1;
	    -ms-flex: 0 0 250px;
	        flex: 0 0 250px;
}
.footer-widgets .inside-footer-widgets > .footer-widget-4 .widget {
	margin: 0;
}
.site-info .inside-site-info {
	font-size: 14px;
	text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
	-webkit-box-ordinal-group: 0;
	    -ms-flex-order: -1;
	        order: -1;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.generate-back-to-top {
	right: 15px;
    bottom: 15px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    background-color: #484848 !important;
}
.generate-back-to-top span::before {
	content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="21" height="21" viewBox="0 0 21 21" fill="none"><path d="M10.5 17.7188V3.28125" stroke="rgb(242, 235, 235)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M4.59375 9.1875L10.5 3.28125L16.4062 9.1875" stroke="rgb(242, 235, 235)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    vertical-align: middle;
	display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.generate-back-to-top span svg {
	display: none;
}
@media (max-width: 991px) {
	.generate-back-to-top {
		left: 20px;
    	bottom: 20px;
		right: auto;
		width: 50px;
    	height: 50px;
		opacity: 0.9 !important;
	}
}
.site-footer .footer-widgets-container h2 {
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 20px !important;
	font-family: "nimbus-sans", sans-serif;
	letter-spacing: -0.03em;
}
.footer-widget-1 .widget h2 {
	margin-top: 15px;
}
.site-footer .wpcf7 .wpcf7-form-control-wrap {
	display: block;
    width: 100%;
	margin-bottom: 15px;
}
.site-footer .wpcf7 label {
	position: relative;
}
.site-footer .wpcf7 label .wpcf7-spinner {
	position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.site-footer a {
	text-decoration: none;
}
.site-footer a:hover,
.site-footer a:focus {
	text-decoration: underline;
}
.site-footer .wpcf7 label input[type="submit"] {
	display: block;
    min-width: 160px;
}
.site-footer .wpcf7 .wpcf7-form-control-wrap input[type="email"] {
	width: 100%;
    display: block;
    border-radius: 50px;
    line-height: 1;
    padding: 11px 16px;
    font-size: 14px;
	border: 1px solid #F5F5F5;
    background-color: #F5F5F5;
    font-family: inherit;
}
.site-footer .wpcf7 label {
	display: block;
    width: 100%;
}
.widget p:empty {
	display: none;
}
.social-icons a {
	display: inline-block;
	text-decoration: none;
}
.social-icons a svg path {
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.social-icons a:hover svg path,
.social-icons a:focus svg path {
	fill: var(--green);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.social-icons a:not(:last-child) {
	margin-right: 8px;
}
.site-footer table td {
	padding-left: 0;
	border: none;
}
.site-footer table th {
	border: none;
}
.site-footer table {
	max-width: 300px;
	border: none;
}
address {
	font-style: normal;
}
@media (min-width: 992px) {
	.site-footer .footer-widgets-container {
		padding-left: 0;
		padding-right: 0;
	}
	.site-footer .footer-widgets .inside-footer-widgets > .footer-widget-1 {
		-webkit-box-flex: 2;
		    -ms-flex: 2;
		        flex: 2;
	}
}
@media (max-width: 991px) {
	.menu-footer-policies-container {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 100%;
		        flex: 1 0 100%;
    	text-align: center;
	}
	.menu-footer-policies-container #menu-footer-policies {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
    	list-style: none;
	}
	.site-footer .footer-social-bar .container::before {
		width: calc(100% - 50px);
		left: 25px;
	}
	.inside-site-info .copyright-bar {
		text-align: center;
		width: 100%;
		margin-bottom: 1.5rem !important;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
	.site-footer .copyright-bar .footer-details {
		text-align: center;
		margin-bottom: 1.5em;
	}
	.inside-site-info {
		padding: 15px 25px;
	}
	.footer-widgets .inside-footer-widgets > .footer-widget-1 {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 100%;
		        flex: 1 0 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
	.site-footer .footer-widgets .footer-widgets-container .footer-widget-1 .inner-padding {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 60%;
		        flex: 1 0 60%;
		    padding: 0 0 4px 0;
	}
	.footer-widgets .inside-footer-widgets > div {
		-webkit-box-flex: 1;
			-ms-flex: 1 0 50%;
				flex: 1 0 50%;
	}
	.site-footer .copyright-bar .copyright {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 100%;
		        flex: 1 0 100%; 
		padding: 0;
	}
	.site-footer .copyright-bar .terms {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 100%;
		        flex: 1 0 100%; 
		padding: 0;
	}
}
@media (max-width: 768px) {
	.footer-widgets .inside-footer-widgets > div:not(.footer-widget-1, .footer-widget-5) aside > *:not(.widget-title) {
		display: none;
	}
	.footer-widgets .inside-footer-widgets > div:not(.footer-widget-1, .footer-widget-5) .widget-title::after {
		content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 7 11" fill="none"><path d="M1 1L6 5.5L1 10" stroke="white" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
		line-height: 1;
		vertical-align: middle;
		display: inline-block;
		position: absolute;
		right: 0;
		top: 50%;
		-webkit-transform: translateY(-50%);
		    -ms-transform: translateY(-50%);
		        transform: translateY(-50%);
		-webkit-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	.footer-widgets .inside-footer-widgets > div .widget-title[aria-expanded="true"]::after {
		-webkit-transform: translateY(-50%) rotate(-90deg);
		    -ms-transform: translateY(-50%) rotate(-90deg);
		        transform: translateY(-50%) rotate(-90deg);
		-webkit-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	.footer-widgets .inside-footer-widgets > div {
		-webkit-box-flex: 1;
			-ms-flex: 1 0 50%;
				flex: 1 0 50%;
	}
	.site-footer .footer-widgets .footer-widgets-container .inner-padding {
		margin-bottom: 0;
		width: 100%;
	}
	.site-footer .footer-widgets .inside-footer-widgets {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
	}
	.inside-footer-widgets .footer-widget-1 {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 100%;
		        flex: 1 0 100%;
	}
	.inside-footer-widgets > div {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 50%;
		        flex: 1 0 50%;
	}
	.inside-footer-widgets .widget-title {
		margin-bottom: 15px;
		position: relative;
	}
	.site-footer .footer-widgets-container h2 {
		font-size: 22px;
	}
	.inside-footer-widgets > div:not(:last-child):not(:first-child) {
		margin-bottom: 0;
	}
	.inside-footer-widgets aside > div {
		margin-bottom: 20px !important;
	}
	.inside-footer-widgets>div:not(:last-child) {
		margin-bottom: 15px;
	}
	.inside-footer-widgets aside > div.social-icons {
		margin-bottom: 0 !important;
	}
	.inside-footer-widgets .footer-widget-4 aside {
		padding: 20px 0;
	}
	.site-footer .footer-widgets-container {
		padding-bottom: 0;
	}
}
@media (max-width: 575px) {
	.site-info .inside-site-info .social-icons {
		width: 100%;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		margin-bottom: 10px;
	}
	.footer-widgets .inside-footer-widgets > .footer-widget-4 {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 100%;
		        flex: 1 0 100%;
	}
	.footer-widgets .inside-footer-widgets > .footer-widget-4 iframe {
		margin: auto;
	}
	.site-footer .footer-social-bar .main-heading {
		text-align: center;
		margin: auto;
		margin-bottom: 1.5em;
	}
	.site-footer .footer-social-bar .footer-social-links {
		width: 100%;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		text-align: center;
	}
	.site-footer .footer-social-bar .footer-social-links .social-icons {
		text-align: center;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
	.site-footer .footer-social-bar .social-icons a {
		margin: 0 15px;
	}
	.footer-widgets .inside-footer-widgets > div {
		-webkit-box-flex: 1;
			-ms-flex: 1 0 100%;
				flex: 1 0 100%;
	}
	.footer-widgets .footer-widget-1 aside .social-icons a {
		width: auto;
    	height: auto;
	}
	.footer-widget-1 {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
	.footer-widget-1 aside {
		-webkit-box-flex: 1 !important;
		    -ms-flex: 1 0 50% !important;
		        flex: 1 0 50% !important;
		margin-bottom: 20px;
		margin-bottom: 0 !important;
	}
	.inside-footer-widgets > div {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 100%;
		        flex: 1 0 100%;
	}
	.site-footer .footer-widgets .footer-widgets-container .inner-padding {
		width: 100%;
		-webkit-box-flex: 1 !important;
		    -ms-flex: 1 0 100% !important;
		        flex: 1 0 100% !important;
	}
	.inside-footer-widgets .footer-widget-1 {
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.site-footer .footer-widgets-container {
		padding: 50px 30px;
	}
	.site-footer .footer-widgets-container .wp-block-image {
		margin-bottom: 20px;
	}
}

/* container */
.container, .grid-container, .site-content {
	width: 100%;
	background: transparent !important;
	margin-right: auto;
	margin-left: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	  flex-wrap: wrap;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
		-ms-flex-direction: row;
			flex-direction: row;
}
.full-width {
	width: 100%;
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-ms-flex-wrap: wrap;
      flex-wrap: wrap;
	clear: both;
}
#page {
	width: 100%; 
}
.site-content .content-area {
	width: 100%; 
}
@media (max-width: 768px) {
	.content.full-width { 
		overflow: hidden;
	}
	.container-page .inside-article {
		width: 100%;
		padding-top: 4em; 
	}
	.container .site-content .content-area {
		width: 100% !important;
	}
}
@media (min-width: 576px) {
  .container, .grid-container {
    max-width: 540px !important;
  }
  #page {
	max-width: 100% !important;
  }
}
@media (min-width: 768px) {
  .container, .grid-container {
    max-width: 720px !important;
	max-width: 82% !important;
  }
  #page {
	max-width: 100% !important;
  }
}
@media (min-width: 992px) {
  .container, .grid-container {
    max-width: 960px !important;
	max-width: 82% !important;
  }
  #page {
	max-width: 100% !important;
  }
}
@media (min-width: 1280px) {
  .container, .grid-container {
    max-width: 1160px !important;
  }
  #page {
	max-width: 100% !important;
  }
}
@media (min-width: 1500px) {
  .container, .grid-container {
    max-width: 1330px !important;
  }
  #page {
	max-width: 100% !important;
  }
}

/*!
 * Bootstrap Grid v4.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
/* bootstrap col sizes */
.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}@media (min-width:576px){.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@media (min-width:768px){.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@media (min-width:992px){.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@media (min-width:1200px){.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}

@media (max-width: 991px) {
	.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
	.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
	.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
	.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
	.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
	.col-xl-auto {
		padding-right: 30px;
  		padding-left: 30px;
	}
}

/* bootstrap offsets */
.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}

/*!
 * Mmenu Light
 * mmenujs.com/mmenu-light
 *
 * Copyright (c) Fred Heusschen
 * www.frebsite.nl
 *
 * License: CC-BY-4.0
 * http://creativecommons.org/licenses/by/4.0/
 */
:root{--mm-ocd-width:80%;--mm-ocd-min-width:200px;--mm-ocd-max-width:440px}body.mm-ocd-opened{overflow-y:hidden;-ms-scroll-chaining:none;overscroll-behavior:none}.mm-ocd{position:fixed;top:0;right:0;bottom:100%;left:0;z-index:9999;overflow:hidden;-ms-scroll-chaining:none;overscroll-behavior:contain;background:rgba(0,0,0,0);-webkit-transition-property:bottom,background-color;-o-transition-property:bottom,background-color;transition-property:bottom,background-color;-webkit-transition-duration:0s,.3s;-o-transition-duration:0s,.3s;transition-duration:0s,.3s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-delay:.45s,.15s;-o-transition-delay:.45s,.15s;transition-delay:.45s,.15s}.mm-ocd--open{bottom:0;background:rgba(0,0,0,.25);-webkit-transition-delay:0s;-o-transition-delay:0s;transition-delay:0s}.mm-ocd__content{position:absolute;top:0;bottom:0;z-index:2;width:80%;width:var(--mm-ocd-width);min-width:200px;min-width:var(--mm-ocd-min-width);max-width:440px;max-width:var(--mm-ocd-max-width);background:#fff;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform;transition-property:transform,-webkit-transform;-webkit-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.mm-ocd--left .mm-ocd__content{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.mm-ocd--right .mm-ocd__content{right:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.mm-ocd--open .mm-ocd__content{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-ocd__backdrop{position:absolute;top:0;bottom:0;z-index:3;width:calc(100% - 80%);width:calc(100% - var(--mm-ocd-width));min-width:calc(100% - 440px);min-width:calc(100% - var(--mm-ocd-max-width));max-width:calc(100% - 200px);max-width:calc(100% - var(--mm-ocd-min-width));background:rgba(3,2,1,0)}.mm-ocd--left .mm-ocd__backdrop{right:0}.mm-ocd--right .mm-ocd__backdrop{left:0}.mm-spn,.mm-spn a,.mm-spn li,.mm-spn span,.mm-spn ul{display:block;padding:0;margin:0;-webkit-box-sizing:border-box;box-sizing:border-box}:root{--mm-spn-item-height:50px;--mm-spn-item-indent:20px;--mm-spn-line-height:24px}.mm-spn{width:100%;height:100%;-webkit-tap-highlight-color:transparent;-webkit-overflow-scrolling:touch;overflow:hidden;-webkit-clip-path:inset(0 0 0 0);clip-path:inset(0 0 0 0);-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}.mm-spn ul{-webkit-overflow-scrolling:touch;position:fixed;top:0;left:100%;bottom:0;z-index:2;width:130%;padding-right:30%;line-height:24px;line-height:var(--mm-spn-line-height);overflow:visible;overflow-y:auto;background:inherit;-webkit-transition:left .3s ease 0s;-o-transition:left .3s ease 0s;transition:left .3s ease 0s;cursor:default}.mm-spn ul:after{content:"";display:block;height:50px;height:var(--mm-spn-item-height)}.mm-spn>ul{left:0}.mm-spn ul.mm-spn--open{left:0}.mm-spn ul.mm-spn--parent{left:-30%;overflow-y:hidden}.mm-spn li{position:relative;background:inherit;cursor:pointer}.mm-spn li:before{content:"";display:block;position:absolute;top:25px;top:calc(var(--mm-spn-item-height)/ 2);right:25px;right:calc(var(--mm-spn-item-height)/ 2);z-index:0;width:10px;height:10px;border-top:2px solid;border-right:2px solid;-webkit-transform:rotate(45deg) translate(0,-50%);-ms-transform:rotate(45deg) translate(0,-50%);transform:rotate(45deg) translate(0,-50%);opacity:.4}.mm-spn li:after{content:"";display:block;margin-left:20px;margin-left:var(--mm-spn-item-indent);border-top:1px solid;opacity:.15}.mm-spn a,.mm-spn span{position:relative;z-index:1;padding:13px 20px;padding:calc((var(--mm-spn-item-height) - var(--mm-spn-line-height))/ 2) var(--mm-spn-item-indent)}.mm-spn a{background:inherit;color:inherit;text-decoration:none}.mm-spn a:not(:last-child){width:calc(100% - 50px);width:calc(100% - var(--mm-spn-item-height))}.mm-spn a:not(:last-child):after{content:"";display:block;position:absolute;top:0;right:0;bottom:0;border-right:1px solid;opacity:.15}.mm-spn span{background:0 0}.mm-spn.mm-spn--navbar{cursor:pointer}.mm-spn.mm-spn--navbar:before{content:'';display:block;position:absolute;top:25px;top:calc(var(--mm-spn-item-height)/ 2);left:20px;left:var(--mm-spn-item-indent);width:10px;height:10px;margin-top:2px;border-top:2px solid;border-left:2px solid;-webkit-transform:rotate(-45deg) translate(50%,-50%);-ms-transform:rotate(-45deg) translate(50%,-50%);transform:rotate(-45deg) translate(50%,-50%);opacity:.4}.mm-spn.mm-spn--navbar.mm-spn--main{cursor:default}.mm-spn.mm-spn--navbar.mm-spn--main:before{content:none;display:none}.mm-spn.mm-spn--navbar:after{content:attr(data-mm-spn-title);display:block;position:absolute;top:0;left:0;right:0;height:50px;height:var(--mm-spn-item-height);padding:0 40px;padding:0 calc(var(--mm-spn-item-indent) * 2);line-height:50px;line-height:var(--mm-spn-item-height);opacity:.4;text-align:center;overflow:hidden;white-space:nowrap;-o-text-overflow:ellipsis;text-overflow:ellipsis}.mm-spn.mm-spn--navbar.mm-spn--main:after{padding-left:20px;padding-left:var(--mm-spn-item-indent)}.mm-spn.mm-spn--navbar ul{top:51px;top:calc(var(--mm-spn-item-height) + 1px)}.mm-spn.mm-spn--navbar ul:before{content:'';display:block;position:fixed;top:inherit;z-index:2;width:100%;border-top:1px solid currentColor;opacity:.15}.mm-spn.mm-spn--light{color:#444;background:#f3f3f3}.mm-spn.mm-spn--dark{color:#ddd;background:#333}.mm-spn.mm-spn--vertical{overflow-y:auto}.mm-spn.mm-spn--vertical ul{width:100%;padding-right:0;position:static}.mm-spn.mm-spn--vertical ul ul{display:none;padding-left:20px;padding-left:var(--mm-spn-item-indent)}.mm-spn.mm-spn--vertical ul ul:after{height:25px;height:calc(var(--mm-spn-item-height)/ 2)}.mm-spn.mm-spn--vertical ul.mm-spn--open{display:block}.mm-spn.mm-spn--vertical li.mm-spn--open:before{-webkit-transform:rotate(135deg) translate(-50%,0);-ms-transform:rotate(135deg) translate(-50%,0);transform:rotate(135deg) translate(-50%,0)}.mm-spn.mm-spn--vertical ul ul li:last-child:after{content:none;display:none}