html {
	overflow-x: hidden;
	width: 100%;
}

body {
	background: #ffffff;
	color: #123246;
	font-family: "proxima-nova", sans-serif;
}

.imageHolder {
	overflow: hidden;
    height: 100%;
}
.imageHolder img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.service-area-hero-section .imageHolder img {
	object-position:top center;
}

.imageHolder.card-image {
	height:300px;
}

.no_cover .imageHolder {
	height: auto;
}
.no_cover .imageHolder img {
	height: auto;
}

.full_width > .container {
    max-width: 100%;
}
.full_width > .container .col-12 {
	padding: 0;
}

.bg_blue {
	background-color: #123246;
	color: #fff;
}
.bg_green {
	background-color: #09a3ae;
	color: #fff;
}
.bg_grey {
	background-color: #e4e8e9;
}

h1, .h1 {
	font-family: "orpheuspro", serif;
	font-weight: 500;
	font-size: 3.125rem;
	font-size: clamp(3.125rem, 2.34375rem + 3.90625vw, 6.25rem);
	line-height: 1.1;	
	text-wrap:balance;
}

h1 a, h1 a:hover {
	font:inherit;
	color:inherit;
	text-decoration:none;
}
h2, .h2 {
	font-family: "orpheuspro", serif;
	font-weight: 400;
	font-size: 2.5rem;
	font-size: clamp(2.5rem, 2.25rem + 1.25vw, 3.75rem);
	line-height: 1.2;
	text-wrap:balance;
}
h3, .h3 {
	font-family: "orpheuspro", serif;
	font-weight: 500;
	font-size: 1.5625rem;
	font-size: clamp(1.5625rem, 1.4375rem + 0.625vw, 2.1875rem);
	line-height: 1.2;
}
h4, .h4 {
	font-family: "orpheuspro", serif;
	font-weight: 500;
	font-size: 1rem;
	font-size: clamp(1rem, 0.8875rem + 0.5625vw, 1.5625rem);
}

h5, .h5{
	font-family: "orpheuspro", serif;
	font-weight: 500;
	font-size: 1.25rem;
}
p {
	font-size: 1rem;
	font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
	font-weight: 400;
}

p > a,
p > strong > a {
	color: inherit;
}
p > a:hover,
p > strong > a:hover {
	color: inherit;
	opacity: 0.8;
}

.subheading {
	color: #09a3ae;
	margin: 0 0 30px 0;
}

.no-padding-top {
	padding-top: 0 !important;
}
.no-padding-bottom {
	padding-bottom: 0 !important;
}
.no-margin-top {
	margin-top: 0 !important;
}
.no-margin-bottom {
	margin-bottom: 0 !important;
}
.narrow .container {
	max-width: 1290px;
}
.wide .container {
	max-width: 1780px;
}

.border {
	border-color: #123246 !important;
}

.btn {
    border-radius: 1000px;
    padding: 22px 30px;
    font-weight: 500;
    min-width: 215px;
    margin: 50px 10px 0;
	font-size: 1rem;
	font-size: clamp(1rem, 0.90625rem + 0.46875000000000006vw, 1.375rem);
	transition: 0.5s;
}
.btn-primary {
	background-color: #fff;
    border-color: #fff;
    color: #123246;
    margin-left: 0;
}
.btn-primary:hover {
	background-color: #123246;
	border-color: #123246;
	color: #ffffff;
}
.btn-secondary {
	background-color: #09a3ae;
	border-color: #09a3ae;
    color: #fff;
    margin-right: 0;
}
.btn-secondary:hover {
	background-color: #123246;
	border-color: #123246;
	color: #ffffff;
}
.btn-square {
	border-radius: 0;
}
.bg_green .btn-primary {
	border: 0 !important;
}
.bg_green .btn-secondary {
	background-color: #123246;
}

.bg_blue .btn-secondary:hover {
	background-color: #fff;
	color: #123246;
}



.phone-btn {
	position: absolute;
    width: 60px;
    height: 60px;
    top: 0;
    right: 60px;
    transition-duration: 0.5s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn {
    position: absolute;
    width: 60px;
    height: 61px;
    top: 0;
    right: 0;
    transition-duration: 0.5s;
    z-index: 10;
    background-color: #09a3ae;
}
.menu-btn .icon {
	transition-duration: 0.5s;
	position: absolute;
	height: 2px;
	width: 30px;
	top: 30px;
	left: 15px;
	background-color: #ffffff;
}
.menu-btn .icon:before {
	transition-duration: 0.5s;
	position: absolute;
	width: 30px;
	height: 2px;
	background-color: #ffffff;
	content: "";
	top: -10px;
}
.menu-btn .icon:after {
	transition-duration: 0.5s;
	position: absolute;
	width: 30px;
	height: 2px;
	background-color: #ffffff;
	content: "";
	top: 10px;
}
.menu-btn.open .icon {
	transition-duration: 0.5s;
	background: transparent;
}
.menu-btn.open .icon:before {
	transform: rotateZ(45deg) scaleX(1) translate(7px, 7px);
}
.menu-btn.open .icon:after {
	transform: rotateZ(-45deg) scaleX(1) translate(8px, -6px);
}
.menu-btn:hover {
	cursor: pointer;
}

nav {
	display: flex;
	justify-content: end;
	width: 100%;
}

.mainmenu {
	list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.mainmenu > li {
	color: #123246;
	font-weight: 500;
	font-size: 20px;
	position: relative;
}
.mainmenu > li.menu-item-has-children > a:after {
	display: inline-block;
    content: '';
    border: 1px solid #000000;
    border-left: 0;
    border-top: 0;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    position: relative;
    top: -5px;
    margin: 0 0 0 8px;
}
.mainmenu > li > a {
	color: inherit;
    text-decoration: none;
    padding: 45px 30px;
    display: block;
}
.mainmenu > li.current_page_item > a:before {
	content: '';
    background-color: #09a3ae;
    height: 15px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.mainmenu > li.btn_holder a:before {
	display: none;	
}

.mainmenu .sub-menu:before {
	content: '';
    background-color: #09a3ae;
    display: block;
    height: 8px;
    width: 115px;
    position: absolute;
    top: -8px;
    left: 0;
}
.mainmenu .sub-menu {
	position: absolute;
    top: 120px;
    left: 0;
    display: none;
    background-color: #ffffff;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 2;
    width: 260px;
}
.mainmenu .sub-menu > li:not(:last-child) {
	border-bottom: 1px solid #e4e8e9;
}
.mainmenu .sub-menu > li > a {
	padding: 15px 20px;
    display: block;
    color: inherit;
    text-decoration: none;
}
.mainmenu .sub-menu > li > a:hover {
	background-color: #f2f3f5;	
}

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


header .btn_holder.primary {
	margin-left: 50px;
	border: 0;
}
header .btn_holder a {
	color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    min-width: 300px;
    text-align: center;
}
header .btn_holder.primary a {
	background-color: #09a3ae;
}
header .btn_holder.secondary a {
	background-color: #123246;
}

img.logo {
	width: 100%;
    max-width: 200px;
}

section {
	padding-top: 7%;
	padding-bottom: 7%;
	position: relative;
	overflow: hidden;
}

.intro {
	margin-bottom: 7%;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    color: #ffffff;
    min-height: 600px;
}
.hero.small {
	min-height: 300px;
}

.hero.small:before {
	background: rgba(18, 50, 70, 1) !important;
}
.hero:not(.no_overlay):before {
	content: '';
	background: rgb(18,50,70);
	background: linear-gradient(90deg, rgba(18,50,70,1) 50%, rgba(18,50,70,0) 100%);
	position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.4;
}
.hero .imageHolder {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.hero .video-container {
	position: absolute;
    height: 100%;
    overflow: hidden;
    width: 100%;
    z-index: -2;
}
.hero .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero p {
	font-size: 1.25rem;
	font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
    line-height: 1.2;
    margin-top: 60px;
	text-wrap:balance;
}

.hero.no-image {
	min-height: 0;
}

.hero.height_small {
	min-height: 400px;
}
.hero.height_small .h1 {
	font-size: 2.5rem;
    font-size: clamp(2.5rem, 2.25rem + 1.25vw, 3.75rem);
}



/* Content */
.content h2,
.content .h2 {
	margin: 0 auto 35px;
    max-width: 740px;
}
.content p,
.content .p {
	margin-left: auto;
	margin-right: auto;
    max-width: 740px;
}
.content p > a ,
.content .p > a {
	color: inherit;
}

.one-column p {
	max-width: 725px;
	margin-left: auto;
	margin-right: auto;
}

.three-column .columns .h3 {
	margin: 0 0 40px 0;
}

.getting-started .columns > .column:first-child {
	background-image: url(../img/pattern_bg_v2.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 10% 10%;
}
.getting-started .columns > .column:first-child .h3 {
	font-size: 2.5rem;
	font-size: clamp(2.5rem, 2.25rem + 1.25vw, 3.75rem);
	margin-left: 0;
}
.getting-started .columns > .column:first-child p {
	font-family: "orpheuspro", serif;
	font-weight: 500;
	font-size: 1.5625rem;
	font-size: clamp(1.5625rem, 1.4375rem + 0.625vw, 2.1875rem);
}
.getting-started .columns > .column:first-child .btn {
	border: 0 !important;
	margin-left: 0;
	margin-top: 100px;
}
.getting-started .columns > .column:last-child {
	background-color: #e7f3f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10% 10%;
}
.getting-started .columns > .column:last-child ul {
	margin: 0;
    padding: 0;
    list-style: none;
}
.getting-started .columns > .column:last-child ul li {
	position: relative;
    padding-left: 50px;
    margin: 35px 0;
}
.getting-started .columns > .column:last-child ul li:before {
	content: '';
    background-image: url(../img/plc_icon.svg);
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
}


.content.numbered .columns {
	list-style: none;
	counter-reset: custom-counter;
}
.content.numbered .columns .column {
	counter-increment: custom-counter;
    position: relative;
    padding: 40px 40px 0 80px;
}
.content.numbered .columns .column:after {
	content: counter(custom-counter);
    color: #fff;
    font-weight: 300;
    font-size: 30px;
    background-color: #123246;
    border-radius: 100%;
    width: 60px;
    aspect-ratio: 1;
    display: inline-block;
    text-align: center;
    line-height: 60px;
    position: absolute;
    left: 0;
    top: 29px;
}
.content.numbered .columns .column:before {
	content: '';
    background-color: #123246;
    height: 1px;
    display: block;
    width: calc(100% - 35px);
    position: absolute;
    left: 0;
    top: 0;
}

.content.boxes .columns .column {
	position: relative;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 100px;
}
.content.boxes .columns .column:before {
	content: '';
    border: 1px solid #e4e8e9;
    position: absolute;
    left: 10px;
    top: 0;
    right: 10px;
    bottom: 0;
    z-index: 1;
    border-radius: 12px;
}
.content.boxes .columns .column .h3 {
	font-size: 1rem;
	font-size: clamp(1rem, 0.44999999999999996rem + 2.75vw, 3.75rem);
}
.content.boxes .columns .column p {
	max-width: 450px;
    margin: auto;
    /*border-top: 1px solid #e4e8e9;*/
    padding: 30px 0 0;	
}

.content.boxes.three_pillars .columns .column .h3 {
	font-size: clamp(1.5625rem, 1.4375rem + 0.625vw, 2.1875rem);
	position: relative;
	z-index: 2;
}
.content.boxes.three_pillars .columns .column p {
	border: 0;
	padding-top: 0;
	height: 230px;
	position: relative;
	z-index: 2;
}
.content.boxes.three_pillars .columns .column .buttons,
.content.boxes.three_pillars .columns .column .btn {
	position: relative;
	z-index: 2;
}

.content.basic .columns {
	border-bottom: 1px solid #e4e8e9;
	padding-bottom: 110px;
}
.content.basic .columns .column {
	text-align: center;
    padding: 0 10%;
    position: relative;
}
.content.basic .columns .column:first-child:after {
	content: '';
    background-color: #e4e8e9;
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.content.basic .columns .column .h3 {
    margin-bottom: 30px;
}

/* Bg Image */
.column.bg_image {
	position: relative;
    color: #fff;
    padding-top: 12%;
    padding-bottom: 12%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.column.bg_image .imageHolder {
	position: absolute;
    top: 0;
    left: -24%;
    right: -24%;
    height: 100%;
    z-index: -1;
}
.column.bg_image:not(.no_overlay) .imageHolder:after {
	content: '';
    background-color: #000000;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.column.bg_image .h2,
.column.bg_image p {
	max-width: 610px;
}

/* Content Image */
.content_image .column {
	padding: 0 5% 0 0;
}
.content_image .column img {
	margin-bottom: 40px;
}
.content_image .column .h3 {
	margin-bottom: 40px;
}


.content.full-content .column {
	width: 100%;
    margin: auto;
    text-align: left !important;
    max-width: 1000px;
}
.content.full-content .column h3 {
	margin: 55px 0;
}
.content.full-content .column h4 {
	margin: 55px 0;
}
.content.full-content .column p {
	max-width: 100%;
}
.content.full-content .column ul {
	padding-left: 40px;
    border-left: 4px solid #09a3ae;
    margin: 35px 0;
}
.content.full-content .column ul li {
	font-size: 1rem;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    font-weight: 400;
    margin: 20px 0;
    line-height: 1.2;
}
.content.full-content .column figure {
	overflow: scroll;
}
.content.full-content .column table {
	width: 2000px;
}
.content.full-content .column table thead tr th {
	background-color: #09a3ae;
    color: #ffffff;
    padding: 15px 15px;
}
.content.full-content .column table tr td {
	vertical-align: top;
	padding: 15px 15px;
}


/* Testimonials */
.testimonials.basic {
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
}
.testimonials.basic p:not(.h3) {
	font-size: 1.375rem;
	font-size: clamp(1.375rem, 1.09375rem + 1.40625vw, 2.5rem);
}
.testimonials.basic .h3 {
	margin-top: 100px;
}
.stars {
	margin-bottom: 35px;
}
.stars svg {
	max-width: 35px;
    margin-right: 15px;
}

.testimonials.full a:not(.btn) {
	color: inherit;
    text-decoration: none;
    border: 1px solid #e4e8e9;
    display: block;
    padding: 45px 40px;
    margin: 20px 25px;
}
.testimonials.full a .contentHolder {
	border-top: 2px solid #09a3ae;
    padding-top: 40px;
}
.testimonials.full .item .h4 {
	margin-bottom: 25px;
}
.testimonials.full .item a p {
	min-height: 180px;
}
.testimonials.full .item .link {
	font-weight: 700;
}

.testimonial_modal .modal-body {
    max-height: 500px;
    overflow: scroll;
}


/* Map */
.map.basic {
	display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.acf-map {
    width: 100%;
    height: 400px;
    margin: 20px 0;
}
.acf-map img {
	max-width: inherit !important;
}

/* Map - Full */
.map.full {
    max-width: 1764px;
    margin: auto;
    background-color: #09a3ae;
    color: #fff;
}
.map.full .intro {
	margin: 0;
	padding: 40px 0;
}
.map.full .acf-map {
    width: calc(100% + 24px);
    margin: 0 -12px;
    min-height: 690px;
    height: auto;
}
.gm-style .gm-style-iw-c {
	min-width: 360px !important;
    border-radius: 0 !important;
    padding: 20px !important;	
}
.gm-style .gm-style-iw-d {
	overflow: hidden !important;
}
.gm-style .gm-style-iw-d div {
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.gm-style .gm-style-iw-d div h3:before {
	content: '';
    background-image: url('../img/plc_icon.svg');
    width: 40px;
    display: inline-block;
    aspect-ratio: 1;
    background-repeat: no-repeat;
    background-size: 100% auto;
    margin: 0 10px 0 0;
}
.gm-style .gm-style-iw-d div h3 {
    margin: 0;
    color: #123246;
    font-size: 25px;
    display: flex;
    align-items: center;
}
.gm-style .gm-style-iw-d div p {
	margin: 0;
}
.gm-style .gm-style-iw-d div a {
	color: #123246;
    text-decoration: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}
.gm-style .gm-style-iw-d div a:after {
	content: '';
    background-image: url(../img/icon-arrow-w-circle-dark.svg);
    width: 40px;
    display: inline-block;
    aspect-ratio: 1;
    background-repeat: no-repeat;
    background-size: 100% auto;
    margin: 0 0 0 15px;
}
.no-results {
	background-color: #65c5cc;
    box-shadow: none;
    margin-left: -12px;
    margin-right: -12px;
    padding: 40px 10px;
    text-align: center;
}
.locations-overlay {
	position: absolute;
	top: 220px;
    left: 7%;
    z-index: 9;
    background-color: #fff;
    color: #123246;
    max-width: 475px;
    padding: 45px 45px 50px;
	box-shadow: 5px 7px 3px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow: 5px 7px 3px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 5px 7px 3px 0px rgba(0,0,0,0.2);
}
.locations-overlay p:not(.h3) {
	font-size: 18px;
    line-height: 26px;
}
.locations-overlay ul {
	margin: 30px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}
.locations-overlay ul li {
    width: 50%;
    margin: 5px 0;
}
.locations-overlay ul li:nth-child(odd){
    padding-right: 10px;
}
.locations-overlay ul li:nth-child(even){
    padding-left: 10px;
}
.locations-overlay ul li .btn {
	font-size: 16px;
	font-weight: 400;
    padding: 5px 10px 7px;
    margin: 0;
    min-width: 0;
    width: 100%;
}
.locations-overlay ul li .distance {
	display: block;
    clear: both;
    width: 100%;
    font-size: 12px;
    line-height: 1;
    margin: -2px 0 3px 0;
    font-style: italic;	
}
.locations-overlay .buttons .btn {
	margin-top: 0;
    min-width: 160px;
    font-size: 19px;
    padding: 18px 30px;
    width: 49%;
}
.locations-overlay .buttons .btn-secondary {
	background-color: #123246;
    border-color: #123246;
    margin-left: 0;
}
.locations-overlay .buttons .btn-primary {
	margin-right: 0;
}

.map.full .form {
    max-width: 1500px;
    margin: auto;
    padding: 30px 0;
}
.postcode_search input[name="origin"] {
	background-color: transparent;
    border: 1px solid #fff;
    border-radius: 1000px;
    padding: 22px 30px;
    color: #fff;
    margin: 0 20px 0 0;
    min-width: 400px;
    font-size: 18px;
    outline-color: #6faeb3;
}
.postcode_search input[name="origin"]::-ms-input-placeholder {
	color: #fff;
}
.postcode_search input[name="origin"]::placeholder {
	color: #fff;
}
.postcode_search button {
	background-color: #123246;
    color: #fff;
    border-color: #123246;
    margin: 0;
    padding: 15px 25px;
}
.postcode_search button svg {
	max-width: 40px;
    margin: 0 0 0 15px;
}


/* CTA */
.cta.default {
	padding: 100px 0;
}
.cta.default .contentHolder {
	width: 100%;
}
.cta.default .btn {
	margin-top: 0;
}

.cta.util {
	background-color: #123246;
	background: linear-gradient(90deg, rgba(9,163,174,1) 22%, rgba(18,50,70,1) 22%);
	color: #ffffff;
	padding-top: 0;
	padding-bottom: 0;
}
.cta.util .zeno-font {
	background-color: #09a3ae;
    width: 22%;
    padding: 45px 10px;
    font-size: 22px;
    color: #fff;
}
.cta.util .zeno-font img {
	max-width: 60px;
    margin: 0 15px 0 0;
}
.cta.util .zeno-font p {
	margin: 0;
}
.cta.util .zeno-font a {	
	color: inherit;
    text-decoration: none;	
}
.cta.util .zeno-font .zeno_font_resizer_reset {
	font-size: 0;
    font-weight: 400;
    margin: 0 25px;
}
.cta.util .zeno-font .zeno_font_resizer_reset:before {
	content: 'Text Size';
    font-size: 20px;  
}
.cta.util .zeno-font .zeno_font_resizer span {
	display: flex;
    justify-content: center;
    align-items: center;
}
.cta.util .zeno-font .zeno_font_resizer_minus {
	background-image: url('../img/icon-minus.svg');
    font-size: 0 !important;
    width: 20px;
    height: 20px;
    display: block; 
    background-color: transparent;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
}
.cta.util .zeno-font .zeno_font_resizer_add {
	background-image: url('../img/icon-plus.svg');
    font-size: 0 !important;
    width: 20px;
    height: 20px;
    display: block;
    background-color: transparent;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
}

.cta.util .h2 {
	font-size: 1rem;
	font-size: clamp(1rem, 0.5874999999999999rem + 2.0625vw, 3.0625rem);
	margin: 0;
	display: flex;
    align-items: center;
}
body.single-location .cta.util .h2 {
	font-size: 1.375rem;
	font-size: clamp(1.375rem, 1.28125rem + 0.46875000000000006vw, 1.75rem);
}

.cta.util .h2:before {
	content: '';
    background-image: url(../img/plc_icon.svg);
    width: 40px;
    display: inline-block;
    aspect-ratio: 1;
    filter: grayscale(1) brightness(2);
    background-repeat: no-repeat;
    background-size: 100% auto;
    margin: 0 30px 0 0;
}
.cta.util .btn.btn-primary {
	background-color: transparent;
    color: inherit;
    border-radius: 0;
    border-color: #fff !important;
    margin: 0;
    font-weight: 400;
    font-size: 20px;
    padding: 10px 30px;
}
.cta.util .btn.btn-primary:hover {
	background-color: #fff;
	border-color: #fff;
	color: #123246;
}
.cta.util .contentHolder {
	width: 78%;
	padding-left: 60px;
}

.contact_items .left {
	padding-right: 7%;
}
.contact_items .item {
	border-top: 1px solid #123246;
    padding-top: 40px;
    margin-bottom: 80px;
}
.contact_items .right {
	padding-left: 7%;
    border-left: 1px solid #eef0f2;
}
.contact_items .btn {
	min-width: 290px;
}

/* Form */
.invisible-label label {
	height: 24.2px;
    font-size: 0 !important;
    display: block;
    width: 1px;
}
.nf-form-fields-required {
	display: none;
}
#ninja_forms_required_items,
.nf-field-container {
    margin-bottom: 50px !important;
}
.html-container.intro {
	border-top: 1px solid #123246;
    padding-top: 30px;
    margin-bottom: 40px;
}
.html-container.intro .nf-field-element {
	display: flex;
    justify-content: space-between;
}
.html-container.intro .nf-field-element > * {
	width: 50%;
}
.html-container.intro .nf-field-element p:first-child {
	font-family: "orpheuspro", serif;
    font-weight: 400;
    font-size: clamp(2.5rem, 2.2894736842105265rem + 0.8421052631578946vw, 3.3rem);
    line-height: 1.2;
}

form label,
form .nf-label-span  {
	font-family: "orpheuspro", serif;
    font-weight: 500 !important;
    font-size: 20px !important;
    line-height: 1 !important;
}
form ::-ms-input-placeholder { 
  color: #818e98;
}
form ::placeholder {
  color: #818e98;
}
form .list-checkbox-wrap .nf-field-element ul,
form .list-image-wrap .nf-field-element ul,
form .list-radio-wrap .nf-field-element ul {
	margin-top: 20px !important;  
}
form .list-radio-wrap ul li {
	width: auto !important;
}
form .list-radio-wrap ul li input,
form .list-checkbox-wrap ul li input {
	position: absolute;
}
.buttons .listradio-wrap ul li label,
.buttons .listcheckbox-wrap ul li label {
	border: 1px solid #123246;
    padding: 16px 20px;
    border-radius: 1000px;
    cursor: pointer;
    min-width: 150px;
    text-align: center;
    margin: 0 10px 0 0 !important;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400 !important;
    font-size: 20px !important;
}
.buttons .listradio-wrap ul li label:not(.nf-checked-label):hover,
.buttons .listcheckbox-wrap ul li label:not(.nf-checked-label):hover {
	background-color: #efefef;
}
.buttons ul li label:before,
.buttons ul li label:after {
	display: none;
}
.buttons ul li label.nf-checked-label {
	background-color: #09a3ae;
	border-color: #09a3ae;
	color: #fff;
}

.nf-form-content .list-select-wrap .nf-field-element > div,
.nf-form-content input:not([type=button]) {
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid #123246 !important;
    color: #123246 !important;
    padding: 0;
}
.nf-form-content textarea {
	background: transparent !important;
    border: 1px solid #123246 !important;
    color: #123246 !important;
}
.nf-form-content button,
.nf-form-content input[type=button],
.nf-form-content input[type=submit] {
    background: #09a3ae !important;
    border-radius: 1000px !important;
    width: 100% !important;
    color: #fff !important;
    box-shadow: none !important;
    border-color: #09a3ae !important;
}

.locations.basic .locations .location a {
	pointer-events: none;
    color: inherit;
    text-decoration: none;
}
.locations.basic .locations .location .contentHolder {
	border-top: 1px solid #fff;
    padding-top: 25px;
    max-width: 400px;
    margin: 0 0 0 auto;
}


body.page-id-1966 .hero {
	min-height: 0;
}

.nf-form-cont .small_description .nf-field-description {
	text-align: left;
}
.nf-form-cont .small_description .nf-field-description p:last-child {
    font-size: 12px;
}
.nf-form-cont input[value="Save"] {
	max-width: 150px;
    float: right;
    padding: 0;	
}
.nf-form-cont .nf-breadcrumbs {
	display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 35px !important;
}
.nf-form-cont .nf-breadcrumbs::after {
	position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    top: 23px;
    z-index: -1;
    left: 0;
}
.nf-form-cont .nf-breadcrumbs li {
    float: none;
}
.nf-form-cont .nf-breadcrumbs li a {
    background: #fff !important;
    border-radius: 100%;
    border: 1px solid #dddddd;
    color: #000 !important;
    width: 50px;
    padding: 12px 18px !important;
    text-align: center;
}
.nf-form-cont .nf-breadcrumbs li.active:not(.errors) a {
	background: #09a3ae !important;
    border-color: #09a3ae;
    color: #fff !important;   
}
.nf-breadcrumbs li.errors a::after {
    left: 33px !important;
    top: -6px;
    color: red;
}

.terms_one p {
	margin: 0;
    position: absolute;
    left: 0;
    font-size: 12px;
    color: #ccc;
}

.nf-form-cont .nf-previous, 
.nf-form-cont .nf-next {
	min-width: 150px;
}
.nf-progress-container {
	position: relative;
    margin-bottom: 75px;
}

.nf-progress-container:before {
	content: '0%';
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
}
.nf-progress-container:after {
	content: '100%';
	position: absolute;
    right: 0;
    top: calc(100% + 10px);
}

.nf-form-content .listselect-wrap .nf-field-element div, .nf-form-content input.ninja-forms-field, .nf-form-content select.ninja-forms-field:not([multiple]) {
    padding-left: 0;
}

#nf-form-6-cont .nf-form-content {
    text-align: left;
}

#nf-form-6-cont .submit-container {
	float: right;
	min-width: 160px;
}


.download_form {
	max-width: 700px;
    margin: auto;	
}

.download_form .buttons .listradio-wrap ul li label,
.download_form .buttons .listcheckbox-wrap ul li label {
	background-color: #fff;
}

.download_form .buttons .listradio-wrap ul li label.nf-checked-label {
	background-color: #09a3ae;
}


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

	.download_form .buttons .listradio-wrap ul li {
		width: 50% !important;
	}
	
}





/* Location Cards */
.location .card {
	border-radius: 0;
	transition: 0.5s;
	color: inherit;
    text-decoration: none;
}
.location .card .imageHolder {
	width: 50%;
	max-height: 170px;
}
.location .card .contentHolder {
	width: 50%;
}
.location .card .contentHolder .link {
	color: inherit;
    text-decoration: none;
}
.location .card .contentHolder .link > svg,
.location .card .contentHolder .link > img {
	max-width: 50px;
}
.location .card .contentHolder .link > svg line,
.location .card .contentHolder .link > svg circle {
	stroke: #123246 !important;
}
.location .card:hover {
	box-shadow: 7px 7px 16px 0px rgba(0,0,0,0.19);
	-webkit-box-shadow: 7px 7px 16px 0px rgba(0,0,0,0.19);
	-moz-box-shadow: 7px 7px 16px 0px rgba(0,0,0,0.19);	
}
.location .column.col-lg-3 {
	padding-right: 24px;
	padding-left: 24px;
}
/* Suites */
.suite .imageHolder {
	position: relative;
	height: auto;
	transition: 0.5s;
}
.suite .imageHolder a {
	display: block;
}
.suite:hover .imageHolder {
	box-shadow: 7px 7px 16px 0px rgba(0,0,0,0.19);
	-webkit-box-shadow: 7px 7px 16px 0px rgba(0,0,0,0.19);
	-moz-box-shadow: 7px 7px 16px 0px rgba(0,0,0,0.19);	
}
.suite .contentHolder .h4 {
	margin: 50px 0;
}
.suite a {
	color: inherit;
	text-decoration: none;		
}

.sticker {
	position: absolute;
    top: 30px;
    right: 30px;
    width: 150px;
    aspect-ratio: 1;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #123246;
    border-radius: 100%;
    color: #fff;
    line-height: 1.3;
}

.buttons.joined .btn-primary {
	background-color: #09a3ae;
    border-color: #09a3ae;
    color: #fff;
    margin: 0;
    width: 50%;
    position: relative;
	-webkit-border-top-right-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	-moz-border-radius-topright: 0;
	-moz-border-radius-bottomright: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
    font-weight: 400;
    min-width: 0;
}
.buttons.joined .btn-primary:after {
	content: '';
    background-color: #fff;
    width: 1px;
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 10px;
}
.buttons.joined .btn-secondary {
	margin: 0;
	width: 50%;
	color: #fff;
	-webkit-border-top-left-radius: 0;
	-webkit-border-bottom-left-radius: 0;
	-moz-border-radius-topleft: 0;
	-moz-border-radius-bottomleft: 0;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
    font-weight: 400;
    min-width: 0;	
}
.suite .contentHolder {
	text-align: center;
}

.suite-table-headings {
	background-color: #09a3ae;
    color: #fff;
    border-radius: 12px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.suite-table-body {
	border: 1px solid #e4e8e9;
    border-radius: 12px;
}
.suite-table-body .suite:not(:last-child) {
	border-bottom: 1px solid #e4e8e9;
}

.suite-item {
	display: grid;
    grid-template-columns: repeat(7,1fr);
    width: 100%;
}
.suite-cell {
	padding: 20px 15px;
}
.plc-pricing .suite-item .suite-title {
	grid-row: 1;
    grid-column: 1 / span 2;
}
.plc-pricing .suite-item .suite-price {
    grid-row: 1;
    grid-column: 3 / span 1;
}
.plc-pricing .suite-item .suite-slider {
    grid-row: 1;
    grid-column: 5 / span 2;
}
.plc-pricing .suite-item .suite-rad {
    grid-row: 1;
    grid-column: 4 / span 1;
}
.plc-pricing .suite-item .suite-dap {
    grid-row: 1;
    grid-column: 7 / span 1;
}
.plc-pricing .suite-item .suite-daily-fee {
    grid-column: span 5;
}

/* The slider itself */
.slider {
	-webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #123246;
    outline: none;
    opacity: 1;
    -webkit-transition: .2s;
    transition: opacity .2s;
    border-radius: 10px;
}
.slider:hover {
	opacity: 1;
}
.slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 25px;
	height: 25px;
	background: #09a3ae;
	cursor: grab;
	border-radius: 100%;
}
.slider::-webkit-slider-thumb:active {
	cursor: grabbing;
}
.slider::-moz-range-thumb {
	width: 25px;
	height: 25px; 
	background: #04AA6D;
	cursor: pointer;
}

/* Listing Cards */
.listing-card {
	margin-top: 10px;
    margin-bottom: 10px;
}
.listing-card a {
	text-decoration: none;
    color: inherit;
    display: block;
}
.listing-card .imageHolder {
	max-height: 364px;
}
.listing-card .contentHolder .h4 {
	padding: 45px 25px;
    border-bottom: 1px solid #fff;
    font-size: 25px;
}
.listing-card .contentHolder .link {
	padding: 10px 35px;
	font-size: 20px;
}
.listing-card .contentHolder .link > svg,
.listing-card .contentHolder .link > img {
    max-width: 45px;
}

/* Resident Stories */
.slide {
	padding: 0 10px;
}
.story {
	display: block;
	text-decoration: none;
	color: inherit;
}
.story .h4 {
	text-align: center;
    border-bottom: 1px solid #ffffff;
    padding: 30px 0;
    margin: 0;
}
.story .link {
	padding: 10px 30px;
}
.link > svg,
.link > img {
	max-width: 54px;
}
.link.invert > svg,
.link.invert > img {
	filter: invert(1);
    max-width: 40px;
}

.flickity .listing-card a {
	margin: 0 10px;
}

/* Team Stories & Our Board */
 .team-grid {
	display: flex;
	flex-wrap: wrap; /* Allow the items to wrap onto the next line */
	justify-content: space-between; /* Space out items evenly */
	gap:40px 0;
}


.page-id-1565 .news {
	padding-top: 0 !important;
}

.flex-break {
  flex-basis: 100%;
  height: 0;
}


.team-profile {
    flex-basis: 23%;
    margin-inline: 10px;
}



.page-id-1565 .team-profile:nth-child(1),
.page-id-1565 .team-profile:nth-child(2) {
	flex-basis: 40%;
	flex-grow: 1;
}
.page-id-1565 .team-stories.full .imageHolder {
	max-height: 500px;
}
.page-id-1565 .team-stories.full .imageHolder img {
	height: 100%;
}



.team-profile.grow {	
	flex-grow: 1;	
}

.team-stories.full {
	padding-inline: 5%;
}
.team-stories.full .contentHolder .h4 {
    padding: 45px 0px 3px; 
    border-bottom: 0;
    margin: 0;
	text-align:center;
}
.team-stories.full .imageHolder {
	background-color: #efefef;
}
.team-stories.full .imageHolder img {
	height: 400px;
	mix-blend-mode: multiply;
}
.team-stories.full .contentHolder {
	padding-bottom: 5px;
}
.team-stories.full .contentHolder p {
	font-size: 14px;
    padding: 0 0px 20px;
    border-bottom: 1px solid #fff;
    margin: 0;
    text-align: center;
}

.team-stories.full .contentHolder .link {
    padding: 10px 10px;
	text-align:center;
	justify-content:center;
	color:#09a3ae;
	font-size:1rem;
}
.team-profile .expanded-content {
	height: 0;
	opacity: 0;
	/*transition: 0.5s;*/
	border: 1px solid #efefef;
    padding: 25px 30px 5px;
    text-align: left;
    position: relative;
}

.team-profile .expanded-content p {
	text-align: left;	
}

#swipebox-close {
    top: 30px;
    right: 30px !important;
}



/*
.team-profile.active .expanded-content {
	height:100%;
	opacity:1;
	
}
*/

.team-profile:has(.expanded-content:empty) .arrow  {
    display: none !important;
}


/*
.team-profile:has(.expanded-content:empty) .contentHolder  {
    border-bottom:1px solid #09a3ae;
}
*/



/*
.team-profile:has(.expanded-content:empty) .contentHolder {
	border: 0;
}
*/


.team-profile .links {
	border-top: 1px solid #09a3ae;
    display: flex;
    justify-content: center;
}
.team-profile .arrow {
	cursor:pointer;
}

.more-info .down-arrow {
	display:none !important;
}
.more-info.active .up-arrow {
	display:none !important;
}
.more-info.active .down-arrow {
	display:flex !important;
}

.expanded-content.open {
	opacity: 1;
    height: auto;
}



.team-stories.full .contentHolder svg {
	width: 20px;
    height: 20px;
    margin-right: 0;
    margin-left: 10px;
}
.team-stories.full .contentHolder .watch svg path {
	fill: #000;
}

.team-stories.full .contentHolder svg .cls-2 {
	stroke: #123246 !important;
}

.single-team-story .two-column .column:first-child .h3,
.single-resident-story .two-column .column:first-child .h3 {
	margin-top: 60px;
    max-width: 70%;
    margin-left: 0;
}
.single-team-story .two-column .column:last-child .h3,
.single-resident-story .two-column .column:last-child .h3 {
	font-size: 2.5rem;
	font-size: clamp(2.5rem, 2.25rem + 1.25vw, 3.75rem);
	font-weight: 400;
	margin-bottom: 70px;
}

.single-team-story .two-column:after,
.single-resident-story .two-column:after {
    content: '';
    height: 1px;
    display: block;
    margin: 7% auto -7%;
    background-color: #a4a7a8;
    max-width: 1480px;
    opacity: 0.5;
}


/* Icons */
.features ul {
	margin: 0;
    list-style: none;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
}
.features .card {
	border-radius: 12px;
	font-size: 20px;
	line-height: 1.4;
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}
.features ul li {
	flex-direction: row !important;
}

.features ul li.features-w-content {
    flex-direction: column !important;
    align-items: start !important;
}
.features ul li.features-w-content .iconHolder {
    width: 44px;
    height: 60px;
}
.features ul li.features-w-content .label {
	font-weight: 500;
    font-size: 130%;
    margin: 0 0 10px 0;
}

.team-cta .imageHolder {
    height: auto;
}
    



.text-boxes ul li {
	flex-direction:column !important;
}

.text-boxes .align-items-center {
	align-items:flex-start !important;
}

.features ul li .iconHolder {
	width: 30px;
    height: auto;
    text-align: center;
    margin: 0 20px 0 0;
}	
.features ul li img {
    max-height: 35px;
    width: auto;
}

.features.alternate ul li {
	flex-direction: column !important;
    align-items: start !important;
    border-radius: 0;
    border: 0;
}
.features.alternate ul li .iconHolder {
    width: 55px;
    margin: 0 0 30px 0;
    height: 50px;
    display: flex;
    align-items: center;
}
.features.alternate ul li img {
    max-height: 50px;
}
.features.alternate ul li .label {
	font-family: "orpheuspro", serif;
	font-size: 26px;
	margin: 0 0 20px 0;
}


/* Video */
.media.video iframe {
	width: 100%;
	max-width: 800px;
}
 

/* Text Box With Carousel */
.textBox_with_carousel .row {
	margin-left: 0;
    margin-right: 0;
}
.textBox_with_carousel .left {
	background-image: url('../img/carousel_bg.jpg');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    color: #ffffff;
}
.textBox_with_carousel.alternate .left {
	background-image: url('../img/carousel_bg_alt.jpg');
}
.textBox_with_carousel .tag,
.image_carousel .tag {
    background-color: #09a3ae;
    -webkit-border-top-right-radius: 100%;
    -webkit-border-bottom-right-radius: 100%;
    -moz-border-radius-topright: 100%;
    -moz-border-radius-bottomright: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    box-shadow: 7px 7px 16px 0px rgba(0,0,0,0.19);
    -webkit-box-shadow: 7px 7px 16px 0px rgba(0,0,0,0.19);
    -moz-box-shadow: 7px 7px 16px 0px rgba(0,0,0,0.19);
    color: #ffffff;
    padding: 25px 50px;
    position: absolute;
    left: 0;
    top: 80px;
    z-index: 1;
}
.textBox_with_carousel.smaller .h2 {
	font-size: clamp(1.5625rem, 1.4375rem + 0.625vw, 2.1875rem);
	margin-bottom: 35px;
}
.image_carousel .caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
}
.image_carousel .caption .h1 {
    width: 100%;
    max-width: 1756px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 50%;
    line-height: 1;
    font-weight: 400;
}
.image_carousel.image_only .slide {
	padding: 0;
	width: 100%;
	height: 600px;
    overflow: hidden;
}
.image_carousel.image_only .slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}


/* Flickity */
.flickity.dots-inside .flickity-page-dots {
    bottom: 10px;
}
.flickity.dots-inside .flickity-page-dots .dot {
	background-color: #fff;
	margin: 0 5px;
}
.flickity.dots-inside .flickity-page-dots .dot.is-selected {
	background-color: #123246;
}

.flickity.arrows-outside {
	position: unset;
}
.flickity.arrows-outside .flickity-prev-next-button.previous {
    left: 60px;
}
.flickity.arrows-outside .flickity-prev-next-button.next {
    right: 60px;
}

.flickity.lines-outside .flickity-page-dots {
    position: relative;
    bottom: 0;
    margin: 50px 0;
}
.flickity.lines-outside .flickity-page-dots .dot {
	background-color: #a4a7a8;
    margin: 0 5px;
    width: 70px;
    height: 2px;
    border-radius: 12px;
}
.flickity.lines-outside .flickity-page-dots .dot.is-selected {
	background-color: #09a3ae;
}

.flickity.invert-arrows .flickity-button {
	filter: invert(1);
}

.flickity-button {
	background: transparent;
	width: 70px;
    height: 70px;
    margin: 0;
	padding: 0;
}
.flickity-button:after {
	content: '';
    background-image: url(../img/icon-arrow.svg);
    background-repeat: no-repeat;
    background-size: 23px auto;
    background-position: center center;
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.flickity-button.previous {
    transform: rotate(180deg);
    margin-top: -37px;
}
.flickity-button svg {
	display: none;
}


.flickity-button:hover:after {
	filter: invert(1);	
}



.media.image_only .imageHolder {
	max-height: 650px;
}
.media.image_only .imageHolder img {
	object-fit: cover;
	object-position: center center;
}



/* Tabs */
.responsiveTabs {
	background-color: #e4e8e9;
}
.resp-tabs-list {
    display: flex;
    justify-content: space-between;
}
.resp-tabs-list li {
    border: 0 !important;
    font-size: 22px;
    font-weight: 500;
    position: relative;
    padding: 23px 15px !important;
    margin: 0;
}
.five-tabs .resp-tabs-list li {
	width: 20%;
	text-align: center;
}
.four-tabs .resp-tabs-list li {
	width: 25%;
	text-align: center;
}
.resp-tabs-list li:not(:last-child):after {
	content: '';
    background-color: #09a3ae;
    width: 1px;
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 0;
}
.resp-tab-active {
	color: #fff;
}
.resp-tabs-container {
	background-color: #09a3ae;
	color: #fff;
	border: 0 !important;	
}
.resp-tab-content {
    border: 0 !important;
}
.resp-tab-content .contentHolder {
	padding: 100px 100px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}
.resp-tab-content .contentHolder .h2 {
	margin-bottom: 45px;
}
.resp-tab-content .contentHolder a {
	color: inherit;
}
h2.resp-accordion {
    font-size: 20px;
    color: #123246;
    padding: 20px 15px !important;
    background-color: #f9f9f9 !important;
    border-bottom: 1px solid #e8e7e7 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-top: 0 !important;
}
h2.resp-accordion:last-of-type {
	border-bottom: 0 !important;
}
h2.resp-accordion.resp-tab-active {
	background-color: rgb(9, 163, 174) !important;
    color: #fff !important;
    border: 0 !important;
}
.resp-arrow {
    margin-top: 7px;
    border-top: 8px solid #123246;
}
h2.resp-tab-active span.resp-arrow {
    border-bottom: 7px solid #fff;
}

.tabs.steps .responsiveTabs {
	background-color: transparent;
}
.tabs.steps .responsiveTabs .resp-tabs-container {
    background-color: transparent;
}
.tabs.steps .resp-tabs-list {
    justify-content: center;
}
.tabs.steps .resp-tabs-list li {
    border: 0 !important;
    font-size: 22px;
    font-weight: 500;
    margin: 0 30px;
    position: relative;
}
.tabs.steps .resp-tabs-list li {
    font-size: 35px;
    border-radius: 100%;
    width: 112px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #09a3ae !important;
}
.tabs.steps .resp-tabs-list li:not(:last-child):after {
	content: '';
    background-color: #09a3ae;
    height: 1px;
    width: 100px;
    position: absolute;
    left: 100%;
    top: 50%;
}
.tabs.steps .resp-tabs-list li.resp-tab-active {
	background-color: #fff !important;
	color: #123246;
	box-shadow: 4px 5px 5px 0px rgba(0,0,0,0.19);
	-webkit-box-shadow: 4px 5px 5px 0px rgba(0,0,0,0.19);
	-moz-box-shadow: 4px 5px 5px 0px rgba(0,0,0,0.19);
}
.tabs.steps h2.resp-accordion.resp-tab-active {
	background-color: #09a3ae !important;
}
.tabs.steps .resp-tabs-container .h2 {
	font-size: 35px;
}

.tabs.vertical .resp-vtabs {
	overflow: hidden;
    border: 1px solid #e5e8e9;
}
.tabs.vertical .resp-vtabs ul.resp-tabs-list {
    margin-top: 0 !important;
    flex-direction: column;
    width: 25%;
}
.tabs.vertical  .resp-vtabs .resp-tabs-list li {
	margin: 0 !important;
    border-left: 0 !important;
    border-top: 0 !important;
    border-bottom: 1px solid #e5e8e9 !important;
    background-color: #ffffff !important;
    color: #123246;
    font-family: "orpheuspro", serif;
    font-weight: 500;
    line-height: 1.2;
    font-size: clamp(1.375rem, 1.1263rem + 1.0612vw, 2.1875rem);
    display: flex;
    border-bottom: 1px solid #e5e8e9;
    justify-content: space-between;
    padding: 40px 25px !important;
    min-height: 190px;
    align-items: center;
}
.tabs.vertical  .resp-vtabs .resp-tabs-list li:last-child {
	border-bottom: 0 !important;
}
.tabs.vertical  .resp-vtabs .resp-tabs-list li:not(:last-child):after {
	display: none;
}
.tabs.vertical  .resp-vtabs .resp-tabs-list li svg {
	max-width: 55px;
    filter: invert(1);
    margin-left: 20px;
}
.tabs.vertical .resp-vtabs li.resp-tab-active {
	background-color: #09a3ae !important;
    color: #fff;
}
.tabs.vertical .resp-vtabs li.resp-tab-active svg {
    filter: invert(0);
}
.tabs.vertical .resp-vtabs .resp-tabs-container {
	color: inherit;
	border-left: 1px solid #e5e8e9 !important;
	border-radius: 0;
}
.tabs.vertical .resp-vtabs .resp-tab-content .contentHolder {
    padding: 90px 100px;
    max-width: unset;
    text-align: left;
}
.tabs.vertical .resp-vtabs .h5 {
	font-weight: 700;
	font-size: 20px;
}
.tabs.vertical .resp-vtabs .h2 {
	font-size: clamp(1.375rem, 1.1263rem + 1.0612vw, 2.1875rem);
	margin: 60px 0;
}
.tabs.vertical .resp-vtabs .contentHolder ul {
	padding-left: 19px;	
}
.tabs.vertical .resp-vtabs .contentHolder ul li {
	margin: 25px 0;
}
.tabs.vertical h2.resp-accordion svg {
	display: none;
}


.tabs.none {
	color: #fff;
}
.tabs.none > .container {
	background-image: url('../img/pattern_bg.jpg');
	background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 100px;
    max-width: 1750px;
}
.tabs.none ul {
	padding: 0;
    margin: 0;
    list-style: none;
}
.tabs.none ul li {
	border-bottom: 1px solid #ffffff;
    margin: 0;
    padding: 10px 0 5px 0;
}
.tabs.none p:last-of-type em {
	font-size: 12px;
    display: block;
    margin-top: 12px;
}
.tabs.none .section {
    margin: 0 0 50px 0;
}
.tabs.none .btn-primary {
	background-color: #123246;
    border-color: #123246;
    color: #fff;
}


/* News */
.news .featured .right {
	padding: 100px 8%;
}
.news .featured .right .buttons {
	margin-top: 100px;
}
.news .featured .bg_grey img {
	max-width: 240px;
    height: auto;
}
.news .featured .bg_blue h3 a {
	color: inherit;
	text-decoration: none;
}



/* Featured News V2 */
.group_news a {
/* 	display: block; */
}
.group_news img {
	max-width: 200px;
    width: 100%;
    height: auto;
}


/* All Magazines */
.all-mags img {
	max-width: 200px;
    width: 100%;
    height: auto;
}
.all-mags .h3 {
	font-weight: 400;
}


.pagination {
	display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0 0 0;
}
.pagination > * {
	text-decoration: none;
    color: inherit;
    margin: 0 10px !important;
    border-bottom: 2px solid #fff;
}
.pagination > *.current {
	border-bottom: 2px solid #09a3ae;
}



.news.alternate .featured .bg_blue {
	background-color: #09a3ae;
}
.news.alternate .featured .btn-secondary {
	background-color: #123246;
	border-color: #123246;
}




.news .past .col-12:not(:last-child):after {
	content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #fff;
}

.news.all .responsiveTabs {
    background-color: transparent;
}
.news.all .resp-tabs-container {
    background-color: transparent;
}
.news.all .resp-tabs-list {
    justify-content: center;
    border-bottom: 1px solid #123246;
}
.news.all .resp-tabs-list li {
    background-color: transparent !important;
    color: #123246;
    text-align: center;
    min-width: 200px;
}
.news.all li.resp-tab-active:before {
	content: '';
    background-color: #09a3ae;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 10px;
    width: 100%;
}
.news.all .resp-tabs-list li:not(:last-child):after {
	display: none;
}
.news.all .resp-tab-content .contentHolder {
    padding: 30px 0 100px;
    max-width: unset;
    width: 100%;
}


.newsletters {
	width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
}
.newsletters .newsletter .card {
	background-color: #09a3ae;
    border-color: #09A3AB;
    padding: 10px 30px;
    text-decoration: none;
    color: inherit;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 150px;
    margin: 8px 15px;
}
.newsletters .newsletter .card:hover {
	opacity: 0.9;
}
.newsletters .newsletter .card p {
	margin: 0;
	font-size: 16px;
}
.newsletters .newsletter .card svg {
	width: 30px;
    height: auto;
    position: absolute;
    right: 20px;
    bottom: 11px;
}
.newsletters li.month {
	font-size: 22px;
    color: #123246;
    font-weight: 500;
    margin: 70px 0 35px 28px;
    padding: 0 0 15px 0;
    text-align: left;
    border-bottom: 1px solid #123246;
    width: calc(100% - 57px);
    line-height: 1;
}


footer {
	background-color: #123246;
	color: #ffffff;
}
footer p {
	font-size: 16px;
}
footer a {
	color: inherit;
	text-decoration: none;
}
footer .top {
	padding: 50px 0;
}
footer .logo {
	filter: grayscale(1) brightness(20);
	max-width: 160px;
}
.call-us {
	font-size: 20px;
}
.socials {
	display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.socials li {
	margin: 0 20px 0 0;
}
ul.socials li svg {
	width: 100%;
    max-height: 20px;
}
footer .btn {
    background-color: transparent;
    color: #ffffff;
    margin: 0;
    padding: 12px 50px;
    font-size: 17px;
    font-family: 'orpheuspro', sans;
    min-width: 0;
}
footer .btn:hover {
	background-color: #fff;
	border-color: #fff;
	color: #123246;
}
.utility {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.utility a {
	color: inherit;
    text-decoration: none;
    padding: 5px 0;
    display: block;
}
.utility > li:first-child > ul {
	columns: 2;
}
.utility > li > a {
	display: block;
    font-family: "orpheuspro", serif;
    font-size: 20px;
    margin: 0 0 10px 0;
}
.utility > li > ul {
	margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    display: block;
}
.utility .sub-menu.open {
	display: block;
}

.copyright {
	background-color: rgba(255, 255, 255, 0.2);
}
.copyright p {
	font-size: 12px;
}
.copyright a {
	color: inherit;
	text-decoration: none;
}



/* Modal */
.modal-dialog {
	max-width: 1600px;
	height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-content {
	border-radius: 15px;	
}
.modal-header {
	background-color: #123246;
    color: #fff;
    padding: 35px 7%;
    border-radius: 10px;
}
.modal-header button {
	background-color: transparent;
    border: 0;
    font-size: 40px;
    padding: 0;
    line-height: 1;
    width: 40px;
    color: #fff;	
}
.modal-body {
	background-color: #e5f4f6;	
	padding: 7%;
}
.modal-body .info_downloads {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1110px;
}
.modal-body .info_downloads .btn {
	min-width: 260px;
    margin: 10px 5px;	
}
.modal-body .info_downloads svg {
	max-width: 30px;
}
.modal-footer {
	border: 0;
    justify-content: center;
    background-color: #e5f4f6;
    flex-direction: column;
    padding: 0 20px 5%;
}


/* Blog */
.index-card {
	margin-bottom: 60px;
}
.index-card figure a {
	display: block;
    height: 250px;
    overflow: hidden;
}
.index-card figure img {
	max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.index-card .h3 {
	
}
.index-card .h3 a {
	color: inherit;
	text-decoration: none;
}
.index-card time {
	margin: 0 0 0 0;
}
.index-card .moretag {
	display: block;
    margin: 30px 0 0 0;
}


.page-numbers {
	list-style: none;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-numbers li {
	width: 30px;
    text-align: center;	
}
.page-numbers li {
	display: block;
}
.page-numbers li a {
	color: inherit;
    text-decoration: none;	
}






/* New Single Blog */
.single_blog .section {
	padding-top: 50px;
    padding-bottom: 50px;
}


.single_blog h1 {
	font-weight: 400;
/* 	font-size: 50px - 40px; */
	margin-bottom: 25px;
	
	font-size: 2.5rem;
	font-size: clamp(2.5rem, 2.25rem + 1vw, 3.125rem);
}
.single_blog h2 {
	font-weight: 400;
	font-size: 44px;
	margin-bottom: 25px;
}
.single_blog h3 {
	font-weight: 400;
/* 	font-size: 38px; */
	margin-bottom: 25px;
	
	font-size: 1.875rem;
	font-size: clamp(1.875rem, 1.675rem + 0.8vw, 2.375rem);
}
.single_blog h4 {
	font-weight: 500;
	font-size: 30px;
	margin-bottom: 20px;
}
.single_blog h5 {
	font-weight: 400;
	margin-bottom: 20px;
}
.single_blog h6 {
	font-weight: 500;
/* 	font-size: 25px; - 18px  */

	margin-bottom: 20px;
	
	font-size: 1.125rem;
	font-size: clamp(1.125rem, 0.95rem + 0.7000000000000001vw, 1.5625rem);
}


.single_blog > .row > div > h6:not(:first-of-type){
	margin-top: 50px;
}
.single_blog p {
/* 	font-size: 20px; */
	font-size: 1rem;
	font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem);
	margin-left: 0;
    margin-right: 0;
    max-width: unset;
}
.single_blog ul, ol {
	font-size: 20px;
}

.single_blog ul li,
.single_blog ol li {
	margin: 20px 0;
}


.single_blog strong {
	font-weight: 600;	
}

    

.single_blog hr {
	margin: 10px 0 30px;	
}




@media screen and (max-width: 768px) {
	
	.single_blog .section {
	    padding-top: 30px;
	    padding-bottom: 30px;
	}
	
}
    






.single-post .left {
	padding-right: 50px;
}
.single-post .left figure {
	width: 100%;
}
.single-post .left figure img {
	max-width: 100%;
}
.single-post .sidebar {
	padding-left: 50px;
/*     border-left: 1px solid #efefef; */
}   
.single-post .sidebar ul {
	list-style: none;
    padding: 0;
    margin: 0;
}
.single-post .sidebar ul li a {
	color: inherit;
    text-decoration: none;
    display: block;
    padding: 12px 0;
}
.single-post .sidebar ul li a:hover {
	text-decoration: underline;
}
time {
	color: #666;
	font-size: 14px;
}
.categories {
	margin: 10px 0 30px 0;
    font-size: 14px;
    font-weight: 600;
}
.categories .cat {
	background-color: #e7f3f6;
    padding: 3px 5px;
    display: inline-block;
    margin-right: 5px;
}


.ad {
	background-color: #123246;
	margin-left: 3px;
    margin-right: 3px;
    padding: 10px 0 20px 0;
    align-items: center;
}
.ad .imageHolder {
	text-align: center;
}
.ad .imageHolder img {
	max-width: 100px;
    height: auto;
    margin-top: 10px;
}
.ad .content {
	padding: 20px 30px 20px 12px;
}
.ad .h3 {
	color: #fff;
	font-size: 30px;
	margin-bottom: 20px;
}
.ad .btn {
	margin-top: 0;
    padding: 8px 15px;
    min-width: 120px;
    font-size: 16px;
    margin-left: 0;
    width: auto;
}



@media (min-width: 1600px) {

	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	    max-width: 1520px;
	}

}


@media (min-width: 1025px) {
	
	.page-id-2 .hero .col-xxl-6 {
	    width: 55%;
	}
	
}


@media (max-width: 1700px) {

	header .btn_holder a {
	    min-width: 230px;
	}

}


@media (max-width: 1600px) {
	
	header .btn_holder a {
	    min-width: 0;
	}

	.cta.util .container {
		max-width: unset;
	}
	
	.flickity.arrows-outside .flickity-prev-next-button.previous {
	    left: 20px;
	}
	.flickity.arrows-outside .flickity-prev-next-button.next {
	    right: 20px;
	}

}

@media (max-width: 1500px) {

	header .btn_holder.primary {
    	margin-left: 35px;
	}

	.mainmenu > li {
	    font-size: 18px;
	}
	.mainmenu > li > a {
	    padding: 45px 25px;
	}
	
	header .btn_holder a {
	    font-size: 18px;
	}	
	
	.postcode_search input[name="origin"] {
	    min-width: 310px;
	}

}


@media (max-width: 1400px) {
	

	body.single-location .cta.util .h2 {
		max-width: 425px;
	}
	
	
}


@media (max-width: 1200px) {

	.ad {
		padding: 0;
	}
	.ad .imageHolder {
	    text-align: center;
	    padding-top: 25px;
	}
	.ad .content {
		text-align: center;
		padding-bottom: 45px;
		padding-left: 30px;
	}

	.mainmenu > li > a {
	    padding: 45px 15px;
	}

	.cta.default .contentHolder {
		flex-direction: column;
	}
	.cta.default .h2 {
		margin-bottom: 35px;
	}
	
	
	
	.testimonials.full a:not(.btn) {
	    margin: 10px 0;
	}
	

	
	.team-stories.full .contentHolder .quote {
	    padding: 0 20px;
	}
	.team-stories.full .contentHolder .details {
	    padding: 35px 20px 20px;
	    flex-direction: column;
	}
	.team-stories.full .contentHolder .details .link {
		margin-top: 30px;
	}
	.team-stories.full .contentHolder .details > * {
		width: 100%;
	}	
	
	
	
	.flickity.lines-outside .flickity-page-dots .dot {
	    width: 70px;
	}	
	
	.news .featured .right .buttons {
		flex-direction: column;
	}
	.news .featured .right .buttons .btn {
		margin: 5px 0;
	}
	
	
	
	/* Contact */
	.four-col-list ul li {
    	width: 33.3333% !important;
	}
	.buttons .listradio-wrap ul li label, .buttons .listcheckbox-wrap ul li label {
	    font-size: 16px !important;
	}	

}


@media (max-width: 1050px) {
	
	.team-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 40px;
	}
	
	.team-profile {
		flex-basis: 100% !important;
		flex-grow: 0;
		flex: 0;
		flex-shrink: 0;
		margin-inline: 0;
	}
	
	.flex-break {
    	display: none;
	}
	
}


@media (max-width: 992px) {
	
	.single-post .left {
	    padding-right: 20px;
	}
	.single-post .sidebar {
	   	padding-left: 20px;
	    border-left: 0;
	    border-top: 1px solid #efefef;
	    padding-top: 35px;
	    margin-top: 30px;
	}

	body.locked {
		overflow: hidden;
	}

	header {
		padding: 10px 10px;
	}
	header .row > * {
		padding-left: 0;
		padding-right: 0;
	}
	header .logo {
		max-width: 100px;
	}
	header nav {
		display: none;
	    position: fixed;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100dvh;
	    background-color: #fff;
	    z-index: 9;
	    padding: 10px 10px 10px 10px;
	    overflow: scroll;
	}
	header nav.open {
		display: block;
	}
	
	.mainmenu {
	    display: block;
	    margin: 50px 10px 0;
	}
	.mainmenu > li {
	    border-bottom: 1px solid #efefef;
	}
	.mainmenu > li > a {
	    padding: 12px 0;
	    position: relative;
	}
	.mainmenu > li.menu-item-has-children > a:after {
	    position: absolute;
	    top: calc(50% - 7px);
	    margin: 0;
	    right: 3px;
	}
	.mainmenu > li:hover .sub-menu {
    	display: none;
	}
	.mainmenu .sub-menu {
	    position: relative;
	    top: 0;
	    left: 0;
	    display: none;
	    width: calc(100% + 40px);
	    border-left: 3px solid #09a3ae;
	    margin-left: -20px;
	}
	.mainmenu .sub-menu.open {
		display: block !important;
	}
	.mainmenu .sub-menu:before {
		display: none;
	}
	.mainmenu .sub-menu li {
		font-size: 85%;	
	}
	.mainmenu .sub-menu > li > a {
	    padding: 12px 20px;
	}
	
	header .btn_holder.primary {
    	margin-left: 0;
	}

	.three-column .columns .h3 {
	    margin: 0 0 20px 0;
	}

	.content.boxes .columns .column {
	    padding-top: 30px;
	    padding-bottom: 45px;
	    margin: 5px 0;
	}
	.content.boxes .columns .column:before {
	    left: 20px;
		right: 20px;
	}
	
	.content.boxes .columns .column .h3 {
		padding: 20px 0 0;
	}
	.content.boxes.three_pillars .columns .column p {
	    padding: 20px 0 0;
	    height: auto;
		min-height: 150px;
	}
	.content.boxes.three_pillars .columns .column .btn {
		width: calc(100% - 40px);
	}
	
	.content_image .column {
    	padding: 0 20px;
	}


	.content_image.reversed .column:first-child {
		order: 2;
	}
	.content_image.reversed .column:last-child {
		order: 1;
	}

	.content.basic .columns .column {
	    padding: 30px 30px;
	}
	.content.basic .columns .column:first-child:after {
		display: none;
	}
	.content.basic .columns .column:last-child {
		padding-bottom: 0;
	}

	.column.bg_image {
	    padding-left: 40px;
		padding-right: 40px;
		padding-top: 20%;
		padding-bottom: 20%;
	}
	.column.bg_image .imageHolder {
	    left: 10px;
	    right: 10px;
	}

	.features ul {
	    grid-template-columns: repeat(2, 1fr);
	}

	.textBox_with_carousel .row {
    	margin-left: 10px;
		margin-right: 10px;
	}
	.textBox_with_carousel .left {
		order: 2;
	}
	.textBox_with_carousel .right {
		order: 1;
	}

	.image_carousel .caption .h1 {
	    padding-right: 0;
	}

	/* Team Stories */
	.team-stories.full .flickity-viewport {
		height:100% !important;
	}
	
	.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr)) !important;
}
	
	.team-stories.full .grid div {
		width:100% !important;
	}
	
	.team-stories.full .listing-card {
		position:static !important;
		transform:none !important;
		width:100% !important;
	}
	
	
	.team-stories.full .contentHolder {
	    width: 100%;
	}
	.team-stories.full .contentHolder .quote {
	    padding: 0 20px;
	}
	.team-stories.full .contentHolder .details {
	    padding: 25px 20px;
	    justify-content: start;
	    align-items: start;
	    flex-direction: column;
	}
	.team-stories.full .contentHolder .details .link {
	    width: 100%;
	}
	
	
	
	
	
	/* News */
	.news.all .resp-tabs-container {
	    color: #fff;
	}
	.news.all .resp-tabs-list li {
	    min-width: 130px;
	    font-size: 18px;
	}
	
	.newsletters .newsletter {
	    margin: 0;
	    padding: 0;
	}
	.newsletters .newsletter .card {
	    margin: 8px 0;
	}
	
	.newsletters li.month {
    	margin: 70px 0 35px 0;
		width: 100%;
	}
	
	
	
	
	.contact_items .left {
    	padding-right: 12px;
		display: flex;
		flex-wrap: wrap;
	}
	
	.contact_items .item {
		padding-top: 0;
	    padding-bottom: 70px;
	    margin-bottom: 0;
	}
	
	
	
	.contact_items .item:nth-child(1) {
	    width: 50%;
	    border-top: 0;
	}
	.contact_items .item:nth-child(2) {
	    width: 50%;
	    border-top: 0;
	}
	.contact_items .item:nth-child(3) {
	    width: 100%;
		padding-top: 50px;
		padding-bottom: 40px;
	}

	
	
	.contact_items .btn {
    	min-width: 200px;
		padding: 20px 15px;
		font-size: 16px;
		margin-top: 10px;
	}
	
	.contact_items .right {
    	padding-left: 0;
		border-left: 0;
	}
	
	form label, form .nf-label-span {
	    font-size: 25px !important;
	}
	.invisible-label label {
    	height: 27px;
	}	
	.buttons .listradio-wrap ul li label,
	.buttons .listcheckbox-wrap ul li label {
	    font-size: 16px !important;
	}	
	
}




@media screen and (max-width: 768px){
	
	.contact_items .row {
		flex-direction:column-reverse !important;
	}
	
	.nf-form-cont .nf-breadcrumbs {
	    padding: 0 !important;
	}
	#nf-form-6-cont .nf-field-container .nf-field-label label {
	    width: 100%;
	}
	#nf-form-6-cont .two-col-list ul li {
	    width: 100%;
	}
	.nf-form-cont .nf-previous, .nf-form-cont .nf-next {
	    min-width: 100px;
	}

	h1, h2 {
		text-wrap:wrap;
	}
	
	.cta.util .h2 {
		font-size:1.5rem;
	}
	
	.getting-started .columns > .column:last-child ul li {
		padding-left:10px;
	}
	
	.getting-started .columns > .column:last-child ul li:before {
		left:-25px;
	}
	
	.hero p {
		text-wrap:wrap;
	}
	
	.text-left {
		text-align:left !important;
	}

	.no-padding-top-mobile {
		padding-top: 0;
	}
	.no-padding-bottom-mobile {
		padding-bottom: 0;
	}

	.no-padding-bottom-mobile.last-section .column.bg_image .imageHolder {
    	left: 0;
		right: 0;
	}
	
	section {
		padding-top: 20%;
		padding-bottom: 20%;
	}
	
	.row > * {
		padding-left: 20px;
		padding-right: 20px;
	}
	

	.btn {
    	padding: 15px 15px;
		min-width: 135px;
		width: 100%;
		margin: 10px 0 0;
	}
	
	/* Team Stories */
	.team-stories.full .listing-card .imageHolder {
		max-height:400px !important;
	}

	.imageHolder img {
	    object-position: center center;
	}

	.mainmenu > li.current_page_item > a:before {
		display: none;
	}
	
	
	header .btn_holder.primary {
		margin-top: 50px;
	}
	header .btn_holder.secondary {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
	}
	header .btn_holder.secondary a {
		padding: 25px 10px;
	}
	

	.hero {
	    min-height: unset !important;
	}	
	.hero p {
    	margin-top: 30px;
	}



	/* CTA */
	.cta.util {
	    background-color: #123246;
	    background: #123246;
	}
	.cta.util .h2 {
		margin-bottom: 15px;
	}
	.cta.util .h2:before {
		display: none;
    	margin: 0 10px 0 0;
		width: 25px;
	}
	.cta.util .row > * {
    	padding-left: 0;
		padding-right: 0;
	}
	.cta.util .zeno-font {
	    width: 100%;
	    padding: 15px 10px;
	    font-size: 16px;
	}
	.cta.util .contentHolder {
    	width: 100%;
		padding: 20px 0;
		flex-direction: column;
	}
	.cta.util .btn.btn-primary {
	    font-size: 16px;
	}
	
	
	.cta.default .buttons {
		width: 100%;
	}
	.cta.default .btn {
    	margin-top: 10px;
	}
	
	
	
	
	

	.media.video iframe {
		height: 250px;
	}

	.content.numbered .columns .column {
	    margin-bottom: 30px;
		padding: 115px 20px 0;
	}
	.content.numbered .columns .column:last-child {
		margin-bottom: 0;
	}
	.content.numbered .columns .column:before {
	    width: auto;
		left: 30px;
		right: 30px;
	}
	.content.numbered .columns .column:after {
	    font-size: 25px;
	    width: 50px;
	    line-height: 50px;
	    left: 19px;
	    top: 40px;
	}
	.content.numbered .columns .column .h3 {
    	margin: 0 0 25px 0;
	}
	
	
	
	.content_image .column {
    	padding: 0 20px;
	}
	
	
	.single-team-story .two-column .column:first-child .h3,
	.single-resident-story .two-column .column:first-child .h3 {
	    margin-top: 0;
	    max-width: 100%;
	}
	.single-team-story .two-column:after, .single-resident-story .two-column:after {
	    margin: 20% auto -20%;
	}
	


	.flickity-button {
	    width: 50px;
	    height: 50px;
	}
	.flickity.arrows-outside {
    	padding-left: 0;
		padding-right: 0;
	}
	.flickity.arrows-outside .flickity-prev-next-button.previous {
	    top: auto;
	    bottom: 25px;
	    left: auto;
	    right: 80px;	
	}
	.flickity.arrows-outside .flickity-prev-next-button.next {
	    top: auto;
		bottom: 0;
	}
	.flickity.lines-outside .flickity-page-dots {
	    margin: 10px 0;
	}	
	.flickity.lines-outside .flickity-page-dots .dot {
	    width: 5px;
		height: 5px;
	}
	.flickity.arrows-outside.invert-arrows .flickity-button {
		position: relative;
		left: auto;
		right: auto;
	}

	/* Testimonials */
	.testimonials.basic {
	    padding-bottom: 140px;
	}
	.testimonials.basic .slide {
    	padding: 0 20px;
	}
	
	.stars svg {
	    max-width: 25px;
	    margin-right: 5px;
	}
	.testimonials.basic .h3 {
    	margin-top: 50px;
	}
	
	
	
	.testimonials.full a:not(.btn) {
	    padding: 30px 20px;
	    margin: 10px 0;
	}
	.testimonials.full a .contentHolder {
	    padding-top: 25px;
	}
	.testimonials.full .item p {
	    min-height: unset;
	}
	.testimonials.full .flickity-slider {
	    transform: none !important;
	}
	.testimonials.full .flickity-button,
	.testimonials.full .flickity-page-dots {
		display: none !important;
	}
		
	
	

	.features ul {
	    grid-template-columns: repeat(1, 1fr);
	}
	.features .card {
	    font-size: 16px;
	    margin: 0 !important;
	}
	.features ul li img {
	    max-height: 25px;
	}
	
	
	
	.location .card {
	    margin: 0 14px;
	}

	.location .card .imageHolder {
	    max-height: 120px;
	}
	.location .card .contentHolder .link > svg,
	.location .card .contentHolder .link > img {
    	max-width: 30px;
	}
	
	
	
	.locations.basic .locations {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.locations.basic .locations .location .contentHolder {
	    max-width: 100%;
	    margin: 0;
	}
	
	
	

	/* Listing Card */
	.listing-card .contentHolder .h4 {
	    padding: 30px 20px;
	}
	.listing-card .contentHolder .link {
	    font-size: 16px;
	    margin-top: 30px;
	}
	
	.resident-stories .flickity .listing-card {
	    width: 90%;
	}
	.resident-stories .listing-card .contentHolder .link {
		margin-top: 0;
		padding: 10px 25px;
	}
	.resident-stories .flickity-button {
		display: none;
	}
	
	
	
	.team-stories .slide {
		width: 90%;
	}
	.team-stories .flickity-button {
		display: none;
	}
	.team-stories .row:not(.intro) > * {
		padding-left: 0;
		padding-right: 0;
	}
	.team-stories.full .contentHolder .quote {
		min-height: 185px;	
	}
	.team-stories .flickity .listing-card a {
    	margin: 0;
	}
	.team-stories .listing-card .contentHolder .link {
		margin: 0;
	}
	
	

	/* Team Stories */
	.team-stories.full .contentHolder {
	    width: 100%;
	}
	.team-stories.full .link > svg,
	.team-stories.full .link > img {
    	max-width: 35px;
	}

	/* Map */
	.acf-map {
	    height: 250px;
	}
	

	.map.full > .container {
		display: flex;
		flex-direction: column;
	}
	
	
	.map.full .acf-map {
	    min-height: 300px;
	    order: 2;
	}
	
	.postcode_search input[name="origin"] {
	    margin: 0;
	    min-width: unset;
	    font-size: 16px;
	    padding: 15px 15px;
		width:100%;
	}
	
	
	
	
	.locations-overlay {
		order: 4;
	    position: relative;
	    top: 0;
	    left: 0;
	    padding: 45px 20px 60px;
	    box-shadow: none;
	    -webkit-box-shadow: none;
	    -moz-box-shadow: none;
	    margin-bottom: 0;
	    max-width: unset;
	    margin-left: -12px;
	    margin-right: -12px;
	    background-color: #f2f3f5;
	}
	.locations-overlay .buttons .btn {
	    min-width: 0;
	    font-size: 16px;
	    width: 49%;
	    padding: 15px 15px;
	    margin: 0;
	}
	
	.postcode_search {
		width: 100%;	
	}
	    
	.postcode_search button {
/* 	    max-width: 87px; */
		min-width: unset;
		padding: 15px 10px;
		margin-top:15px;
	}
	.postcode_search button svg {
	    margin: 0;
	    width: 100%;
	    max-width: 57px;
	    display: none;
	}
	

	
	.image_carousel.image_only .container > .row >  * {
		padding-left: 0;
		padding-right: 0;
	}

	.image_carousel.image_only .slide {
    	padding: 0 10px;
		width: 90%;
		height: 200px;
	}
	.image_carousel.image_only .flickity-button {
		display: none;
	}
	
	

	.textBox_with_carousel .tag, .image_carousel .tag {
	    padding: 5px 10px 5px;
	    top: 10px;
	    left: 25px;
	    font-size: 13px;
	    display: none;
	}
	.image_carousel .caption {
	    position: relative;
	    height: auto;
	    background-color: #123246;
	    padding: 20px 20px !important;
	}
	.image_carousel .caption .h1 {
	    font-size: 30px;
	}

	.resp-tabs-container {
    	background-color: transparent;
		color: #123246;
	}
	.resp-tab-content {
	    background-color: #fff;
	}
	.resp-tab-content .contentHolder {
	    padding: 30px 10px !important;
	}
	.tabs.vertical .resp-vtabs .resp-tabs-container {
    	border-left: 0 !important;
	}
	.resp-vtabs .resp-tab-content:last-child {
    	border-bottom: 0 !important;
	}
	
	.tabs.vertical .resp-vtabs .h5 {
    	font-size: 16px;
	}
	.tabs.vertical .resp-vtabs .h2 {
	    margin: 20px 0 35px 0;
	}

	.tabs.none > .container {
	    padding: 70px 0;
	}
	.tabs.none ul li {
	    padding: 10px 0;
	    line-height: 1.2;
	}
	
	.tabs.steps.no-padding-bottom {
		padding-bottom: 20% !important;
	}
	
	
	
	
	/* Pricing */
	.plc-pricing .suite-item .suite-title .h4 {
	    font-size: 25px;
	}
	.plc-pricing .suite-item .suite-title {
		grid-row: 1;
	    grid-column: 1 / span 7;
	}
	.plc-pricing .suite-item .suite-price {
		grid-row: 2;
	    grid-column: 1 / span 7;
	    padding-top: 0;
	}
	.plc-pricing .suite-item .suite-slider {
    	grid-row: 3;
		grid-column: 1 / span 7;
	}
	.plc-pricing .suite-item .suite-rad {
    	grid-row: 4;
		grid-column: 1 / span 4;
	}
	.plc-pricing .suite-item .suite-dap {
    	grid-row: 4;
		grid-column: 5 / span 3;
		text-align: right;
	}

	/* Getting Started */
	.getting-started .columns > .column:first-child .btn {
	    margin-top: 20px;
	}

	.sticker {
	    top: 15px;
	    right: 15px;
	    width: 95px;
	    font-size: 14px;
	}
	.suite .contentHolder .h4 {
	    margin: 30px 0;
	    font-size: 25px;
	}
	
	.buttons.joined {
	    margin-bottom: 50px;
	}
	
	/* News */
	.news .featured {
		padding-left: 20px;
	    padding-right: 20px;	
	}
	.news .featured .bg_grey img {
	    max-width: 160px;
	}
	.news .featured .right {
    	padding: 30px 20px;
	}
	.news .featured .bg_blue h3 {
    	font-size: 25px;
	}
	.news .featured .right .buttons {
	    margin-top: 20px;
	    flex-direction: column;
	}

	.news .past .col-6:nth-child(3) {
		display: none !important;
	}
	.news .past img {
		max-width: 125px;
		height: auto;
	}
	
	
	.newsletters .newsletter .card {
		margin: 8px 0;
		height: unset;
		padding: 20px 20px;	
	}
	
	
	
	
	/* Contact */
	.contact_items .left {
	    padding-right: 20px;
	}
	.contact_items .item {
	    padding-top: 30px;
	    padding-bottom: 50px;
	}
	
	.contact_items .item:nth-child(1) {
    	width: 100%;
    	padding-top: 0;
	}
	.contact_items .item:nth-child(2) {
    	width: 100%;
    	border-top: 1px solid #123246;
	}
	.contact_items .item:nth-child(3) {
		padding-top: 40px;
	    padding-bottom: 20px;
	}
	
	.contact_items .right {
	    padding-left: 15px;
	}
	
	
	.contact_items .right .html-container.intro .nf-field-element {
    	flex-direction: column;
	}
	
	.contact_items .right .html-container.intro .nf-field-element > * {
    	width: 100%;
	}
	
	.invisible-label label {
    	height: 0;
	}
	
	
		
	.first-name {
		margin-bottom: 15px !important;
	}
	
	.four-col-list ul li {
    	width: 50% !important;
	}
	.buttons .listradio-wrap ul li label,
	.buttons .listcheckbox-wrap ul li label {
	    min-width: 100px;
	    padding: 16px 10px;
	}
	
	
	

	footer .logo {
	    max-width: 135px;
	    margin-bottom: 30px;
	}
	footer .btn {
	    margin-top: 20px;
	}
	.utility {
	    flex-direction: column;
	}
	.utility > li > a {
	    margin: 0;
	    padding: 10px 0;
	}
	.utility > li:first-child > ul {
    	columns: 1;
	}
	.utility li.menu-item-has-children {
		position: relative;
		border-bottom: 1px solid #4c6574;
	}
	.utility li.menu-item-has-children:after {
		content: '';
	    border: 1px solid #fff;
	    border-left: 0;
	    border-top: 0;
	    width: 9px;
	    aspect-ratio: 1;
	    position: absolute;
	    right: 7px;
	    top: 17px;
	    transform: rotate(45deg);
	}
	.utility .sub-menu {
		display: none;
		padding: 10px 0;
	}
	.utility .sub-menu li a {
		padding: 15px 0;
	}
	
	
	
	/* Modal */
	.modal-dialog {
	    height: auto;
	}
	.modal-header {
	    align-items: start;
	}
	.modal-body {
    	padding: 30px 20px;
	}
	.modal-body .info_downloads {
	    flex-direction: column;
		justify-content: start;
		align-items: start;
		width: 100%;
	}
	.modal-body .info_downloads li {
		width: 100%;
	}
	.modal-body .info_downloads .btn {
	    min-width: 0;
	    margin: 10px 5px;
	    width: 100%;
	}

}