:root {
	--frame-ex: 80px;
	--frame-pad: 10vw;
	--frame-expad: calc(10vw + var(--frame-ex));
	--frame-width: calc(100% - 20vw);
	--frame-exwidth: calc((100% - 20vw) - var(--frame-ex));

	--colour-primary: #1DA1DE;
	--colour-primary-alt: #1487db;
	--colour-secondary: #2846BA;
	--colour-tertiary: #29BFB1;
	--colour-light: #C1D6E9;
	--colour-dark: #172233;
	--colour-darker: #101724;

	--colour-heading: #2F425E;

	--colour-red: #f23636;
	--colour-green: #35c261;
	--colour-blue:#2E4FC2;
	--colour-dark-blue:#182F43;
	--colour-white:#ffffff;
	--colour-white-greyish:#EEF4F7;
	--colour-whiteish: #F9F9F9;
	--colour-yellow:#FBBC05;
	--colour-turqiose:#2EC6BA;

	/*
	--colour-primary: #149fdf;
	--colour-primary-alt: #117cd4;
	--colour-secondary: #1b3cbb;
	--colour-tertiary: #1dbfb0;
	--colour-dark: #131e2e;
	*/

	--pad-small: 30px;
	--pad-mid: 50px;
	--pad-big: 80px;
	--pad-huge: 120px;

	--font-body: "Readex Pro", 'proxima-nova', sans-serif;
	--font-heading: "poppins", 'proxima-nova', sans-serif;
	--font-awesome: "Font Awesome 6 Pro", 'Font Awesome 5 Pro';

	--transition: cubic-bezier(0.31, 0.87, 0.32, 1);
	--transition-alt: cubic-bezier(0.34, 1.56, 0.64, 1);

}

/* Notice CSS / Toggle */
.header .notice {
	background-color: #f95e44;
	padding: 8px 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 20px;
}
.header .notice p {
	text-align: center;
	color: var(--colour-white);
	font-size: 14px;
	margin: 0px;
	font-weight: 400;
}
@media screen and (max-width:1000px) {
	.header .notice {
		padding: 5px 0px;
	}
	.header .notice p {
		font-weight: 300;
	}
}
@media screen and (max-width:800px) {
	.header .notice {
		margin: -20px 0px 20px;
		flex-direction: column;
		padding: 3px 0px;
	}
	.header .notice p {
		font-size: 12px;
	}
}
@media screen and (max-width:500px) {
	.header .notice {
		margin: -15px 0px 15px;
	}
}

/*Controllers*/
.cb.plain {
	z-index: 99;
	position: absolute !important;
	display: none;
	opacity: 0.3;
}
.cb.plain:hover {
	opacity: 1;
}
.cb.plain .cb-link .button {
	padding: 6px 12px !important;
}

/*Main CSS*/
html, body {
	height: auto;
}
html {
	scrollbar-width: 15px;
	scrollbar-color: var(--colour-secondary) /*#0f1722*/ var(--colour-darker);
	scroll-behavior: smooth;
}
body {
	color: var(--colour-heading);
	font-family: var(--font-body);
	-moz-osx-font-smoothing:grayscale;
	-webkit-font-smoothing:antialiased;
	min-height: 102vh;
}
.body {
	padding: 40px;
}
.frame {
	width:100%;
	padding-left: var(--frame-pad);
	padding-right: var(--frame-pad);
}
.medium-frame{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.mini-frame{
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}
body.frame-full-width .body .frame {
	padding-top: 0;
	padding-bottom: 0;
	padding-left: var(--frame-pad);
	padding-right: var(--frame-pad);
}

/*Elements*/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, .h5, h5 {
	font-family: var(--font-heading);
	color: var(--colour-heading);
}
h1,.h1 {
	font-size: 75px;
	line-height: 80px;
	font-weight: 600;
	letter-spacing: -0.035em;
}
h2,.h2 {
	font-size: 60px;
	line-height: 70px;
	font-weight: 600;
	letter-spacing: -0.035em;
}
h3,.h3 {
	font-size: 35px;
	line-height: 50px;
	font-weight: 600;
	letter-spacing: -0.035em;
}
h4,.h4 {
	font-size: 26px;
	line-height: 40px;
	font-weight: 600;
	letter-spacing: -0.035em;
}
h1 mark,
h2 mark,
h3 mark,
h4 mark {
	background: none;
	position: relative;
	color: inherit;
	z-index: 1;
}
.h1 mark,
h2 .h3 mark,
.h3 mark,
.h4 mark {
	background: none;
	position: relative;
	color: inherit;
	z-index: 1;
}
h1 mark::after,
h2 mark::after,
h3 mark::after,
h4 mark::after {
	content: '';
	position: absolute;
	transition: all 0.2s ease;
	background-color: var(--colour-tertiary);
	width: calc(100% + 10px);
	left: -5px;
	bottom: 17px;
	height: 15px;
	z-index: -1;
}
.h1 mark::after,
.h2 mark::after,
.h3 mark::after {
	content: '';
	position: absolute;
	transition: all 0.2s ease;
	background-color: var(--colour-tertiary);
	width: calc(100% + 10px);
	left: -5px;
	bottom: 6px;
	height: 15px;
	z-index: -1;
}
h1 mark.m1::after,
h2 mark.m1::after,
h3 mark.m1::after,
h4 mark.m1::after {
	background-color: var(--colour-primary) !important;
}
.h1 mark.m1::after,
.h2 mark.m1::after,
.h3 mark.m1::after,
.h4 mark.m1::after {
	background-color: var(--colour-primary) !important;
}
h1 mark.m2::after,
h2 mark.m2::after,
h3 mark.m2::after,
h4 mark.m2::after {
	background-color: var(--colour-secondary) !important;
}
h1 mark.m3::after,
h2 mark.m3::after,
h3 mark.m3::after,
h4 mark.m3::after {
	background-color: var(--colour-tertiary) !important;
}
h1 mark.m4::after,
h2 mark.m4::after,
h3 mark.m4::after,
h4 mark.m4::after {
	background-color: var(--colour-white) !important;
}
h3 mark::after {
	bottom: 8px;
	height: 10px;
}
h4 mark::after {
	bottom: 3px;
	height: 10px;
}
h2:has(.h2, .h3, .h4, .h5, .h6) mark::after{
	bottom: 15px;
	height: 13px;
}
h1 mark:hover::after,
h2 mark:hover::after,
h3 mark:hover::after {
	width: calc(100% + 20px);
	left: -10px;
}
mark a {
	color: inherit;
	text-decoration: none!important;
}
mark a:hover {
	color: inherit;
}

p {
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0.1px;
	font-weight: 300;
}

*::selection {
	background-color: rgba(22, 45, 167, 0.95);
	color: #fff;
}

a.blue, span.blue, p.blue, b.blue, strong.blue, .blue {
	color: var(--colour-primary) !important;
}
a.violet, span.violet, p.violet, b.violet, strong.violet, .violet {
	color: var(--colour-secondary) !important;
}
a.teal, span.teal, p.teal, b.teal, strong.teal, .teal,
a.turqiose, span.turqiose, p.turqiose, b.turqiose, strong.turqiose, .turqiose {
	color: var(--colour-tertiary) !important;
}

/*Buttons*/
.button,
button {
	background: none;
	position: relative;
	border: none !important;
	padding: 15px 25px 16px;
	transition: all 0.3s var(--transition);
	font-family: var(--font-body);
	color: #fff;
	z-index: 2;
	top: 0px;
}
.button::before,
button::before {
	content: '';
	position: absolute;
	background-color: var(--colour-primary);
	transition: all 0.3s var(--transition-alt), background-position 1.5s var(--transition);
	transform: skewX(-10deg);
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
	z-index: -2;
}
.button::after,
button::after {
	content: '';
	position: absolute;
	background-color: #fff;
	transition: transform 0.3s var(--transition);
	transform-origin: right center;
	transform: scale(0,1);
	bottom: 0;
	left: 25px;
	height: 4px;
	right: 25px;
	z-index: -1;
}
.button:hover::before,
button:hover::before {
	right: -4px;
	left: -4px;
	/*transform: skewX(0deg);*/
}
.button:hover::after,
button:hover::after {
	transform-origin: left center;
	transform: scale(1,1);
}
.button:hover,
button:hover {
	background: none;
	color: #fff;
}

.button i.fa-chevron-right {
	float: right;
	font-weight: 600;
	margin-left: 10px;
	font-size: 80%;
	position: relative;
	top: 7px;
}

.button.btn-deep-blue::before {
	background-color: var(--colour-secondary);
}
.button.btn-turqiose::before {
	background-color: var(--colour-tertiary);
}

.button.btn-clear {
	color: var(--colour-dark);
}
.button.btn-clear::before {
	background-color: transparent;
}
.button.btn-clear::after {
	background-color: var(--colour-dark);
}
.section-colour-light-blue .button.btn-clear,
.section-colour-deep-blue .button.btn-clear,
.section-colour-turqiose .button.btn-clear,
.section-colour-dark .button.btn-clear {
	color: #fff;
}
.section-colour-light-blue .button.btn-clear::after,
.section-colour-deep-blue .button.btn-clear::after,
.section-colour-turqiose .button.btn-clear::after,
.section-colour-dark .button.btn-clear::after {
	background-color: #fff;
}

.button.btn-line,
.button.btn-line::before {
	background: none;
}
.button.btn-line::before {
	left: 50%;
	top: auto;
	right: auto;
	width: 60%;
	height: 4px;
	min-width: 50px;
	transform: translateX(-50%);
	background-color: var(--colour-dark);
	transition: all 0.6s var(--transition) 0.2s;
}
.button.btn-line:hover::before {
	transition: all 0.3s var(--transition) 0s;
	width: calc(100% - 50px);
	min-width: 60px;
}
.button.btn-line::after {
	background-color: var(--colour-primary);
	right: 24px;
}
.button.btn-line:hover::after {
	transition-delay: 0.2s;
}

.button.btn-line.line-turqiose::before {
	background-color: var(--colour-tertiary);
}
.button.btn-line.line-turqiose::after {
	background-color: var(--colour-secondary);
}
.bottom-right-align .button-wrapper{
	position: relative;
	text-align: right;
	bottom: 150px;
}
.btn-visit-site{
	font-size: 18px;
}
.btn-visit-site::before{
	transform: none;
}

.pb-block-type-text .button-wrapper:last-child {
	margin-top: 40px;
}

/*.blob-button {
	background: none;
	position: relative;
	border: none !important;
	padding: 14px 25px 15px;
	transition: all 0.3s var(--transition);
	color: #fff;
	z-index: 2;
	top: 0px;
}
.blob-button span.drop {
	position: absolute;
	z-index: -1;
	top: -50px;
	left: -50px;
	right: -50px;
	bottom: -50px;
	filter: blur(8px) contrast(30);
	background-color: white;
	pointer-events: none;
}
.blob-button span.drop::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 50px;
	left: 50px;
	right: 50px;
	bottom: 50px;
	background-color: var(--colour-secondary);
	transition: all 0.35s ease;
}
.blob-button span.drop::after {
	content: '';
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	height: 40px;
	width: 85px;
	border-radius: 100%;
	transform: translate(-50%, -50%);
	background-color: var(--colour-secondary);
	transition: all 0.35s ease;
}
.blob-button:hover span.drop::before {
	left: 55px;
	right: 55px;
}
.blob-button:hover span.drop::after {
	height: 85px;
	width: 85px;
}*/

/*Misc Defaults*/
.pb-block-type-text ul:not([class]) {
	margin: 30px 0;
}
.pb-block-type-text ul:not([class]) > li {
	list-style: none;
	position: relative;
	padding-left: 30px;
}
.pb-block-type-text ul:not([class]) > li:not(:last-child) {
	margin-bottom: 15px;
}
.pb-block-type-text ul:not([class]) > li::before {
	content: "\f00c";
	font-family: var(--font-awesome);
	position: absolute;
	font-weight: 900;
	left: 0px;
}


/**--- Logo ---**/
.logo {
	height: 44px;
	background-position: left;
	background-image: url(images/logo/logo-light.svg);
	width: 190px;
}
svg.razor-logo {
	width: 190px;
	vertical-align: middle;
	overflow: visible;
}
svg.razor-logo path,
svg.razor-logo polygon {
	transform-origin: 230px 50px;
	transition: all 0.15s ease;
}
svg.razor-logo .white {fill:#fff;}
svg.razor-logo .white.razor-a {fill:transparent; transition: all 0.2s ease 0.5s;}
svg.razor-logo .colour-primary   {fill:var(--colour-primary);}
svg.razor-logo .colour-secondary {fill:var(--colour-secondary);}
svg.razor-logo .colour-tertiary  {fill:var(--colour-tertiary);}

/**Festive**/
svg.razor-logo .colour-white-festive {fill:var(--colour-white);}
svg.razor-logo .colour-red-festive-1, svg.razor-logo .colour-red-festive-2 {fill:var(--colour-red);}

svg.razor-logo:hover .white.razor-a,
.fancy-menu-open svg.razor-logo .white.razor-a {
	transition: all 0.2s ease;
	fill:#fff;
}


svg.razor-logo:hover .colour-primary,
svg.razor-logo:hover .colour-tertiary,
svg.razor-logo:hover .colour-secondary {
	fill:transparent;
}

/**Festive**/
svg.razor-logo:hover .colour-white-festive,
svg.razor-logo:hover .colour-red-festive-1, svg.razor-logo:hover .colour-red-festive-2 {
	fill:transparent;
}


svg.razor-logo .colour-primary   {animation: razor-a-anim-1 0.45s cubic-bezier(0.42, 0, 0.57999, 1) 1;}
svg.razor-logo .colour-tertiary  {animation: razor-a-anim-2 0.45s cubic-bezier(0.42, 0, 0.57999, 1) 1;}
svg.razor-logo .colour-secondary {animation: razor-a-anim-3 0.45s cubic-bezier(0.42, 0, 0.57999, 1) 1;}

/**Festive**/
svg.razor-logo .colour-red-festive-1 {animation: razor-a-anim-1 0.45s cubic-bezier(0.42, 0, 0.57999, 1) 1;}
svg.razor-logo .colour-red-festive-2 {animation: razor-a-anim-2 0.45s cubic-bezier(0.42, 0, 0.57999, 1) 1;}
svg.razor-logo .colour-white-festive {animation: razor-a-anim-3 0.45s cubic-bezier(0.42, 0, 0.57999, 1) 1;}


@keyframes razor-a-anim-1 {
	0% {clip-path: inset(200px 0px 0px 0px);}
	0% {clip-path: inset(200px 0px 0px 0px);}
	35% {clip-path: inset(0px 0px 0px 0px);}
	100% {clip-path: inset(0px 0px 0px 0px);}
}
@keyframes razor-a-anim-2 {
	0% {clip-path: inset(0 0 230px 0px);}
	35% {clip-path: inset(0 0 230px 0px);}
	65% {clip-path: inset(0px 0px 0px 0px);}
	100% {clip-path: inset(0px 0px 0px 0px);}
}
@keyframes razor-a-anim-3 {
	0% {clip-path: inset(0 0 0 230px);}
	65% {clip-path: inset(0 0 0 230px);}
	100% {clip-path: inset(0px 0px 0px 0px);}
	100% {clip-path: inset(0px 0px 0px 0px);}
}

svg.razor-logo:hover .colour-primary, .fancy-menu-open svg.razor-logo .colour-primary     {animation: razor-a-hover-1 0.45s forwards cubic-bezier(0.11, 0.78, 0.28999, 0.97) 1;}
svg.razor-logo:hover .colour-tertiary, .fancy-menu-open svg.razor-logo .colour-tertiary   {animation: razor-a-hover-2 0.45s forwards cubic-bezier(0.11, 0.78, 0.28999, 0.97) 1;}
svg.razor-logo:hover .colour-secondary, .fancy-menu-open svg.razor-logo .colour-secondary {animation: razor-a-hover-3 0.45s forwards cubic-bezier(0.11, 0.78, 0.28999, 0.97) 1;}

/**Festive**/
svg.razor-logo:hover .colour-red-festive-1, .fancy-menu-open svg.razor-logo .colour-red-festive-1 {animation: razor-a-hover-festive-1 0.45s forwards cubic-bezier(0.11, 0.78, 0.28999, 0.97) 1;}
svg.razor-logo:hover .colour-red-festive-2, .fancy-menu-open svg.razor-logo .colour-red-festive-2 {animation: razor-a-hover-festive-2 0.45s forwards cubic-bezier(0.11, 0.78, 0.28999, 0.97) 1;}
svg.razor-logo:hover .colour-white-festive, .fancy-menu-open svg.razor-logo .colour-white-festive {animation: razor-a-hover-festive-3 0.45s forwards cubic-bezier(0.11, 0.78, 0.28999, 0.97) 1;}

@keyframes razor-a-hover-1 {
	0% {clip-path: inset(0 0 0 0); fill:var(--colour-primary);}
	60% {clip-path: inset(0 0 0 0); fill:var(--colour-primary);}
	100% {clip-path: inset(200px 0 0 0); fill:var(--colour-primary);}
	100% {clip-path: inset(200px 0 0 0); fill:var(--colour-primary);}
}
@keyframes razor-a-hover-2 {
	0% {clip-path: inset(0 0 0 0); fill:var(--colour-tertiary);}
	30% {clip-path: inset(0 0 0 0); fill:var(--colour-tertiary);}
	70% {clip-path: inset( 0 0 230px 0); fill:var(--colour-tertiary);}
	100% {clip-path: inset( 0 0 230px 0); fill:var(--colour-tertiary);}
}
@keyframes razor-a-hover-3 {
	0% {clip-path: inset(0 0 0 0); fill:var(--colour-secondary);}
	0% {clip-path: inset(0 0 0 0); fill:var(--colour-secondary);}
	40% {clip-path: inset(0 0 0 230px); fill:var(--colour-secondary);}
	100% {clip-path: inset(0 0 0 230px); fill:var(--colour-secondary);}
}

/**Festive**/
@keyframes razor-a-hover-festive-1 {
	0% {clip-path: inset(0 0 0 0); fill:var(--colour-red);}
	60% {clip-path: inset(0 0 0 0); fill:var(--colour-red);}
	100% {clip-path: inset(200px 0 0 0); fill:var(--colour-red);}
	100% {clip-path: inset(200px 0 0 0); fill:var(--colour-red);}
}
@keyframes razor-a-hover-festive-2 {
	0% {clip-path: inset(0 0 0 0); fill:var(--colour-red);}
	30% {clip-path: inset(0 0 0 0); fill:var(--colour-red);}
	70% {clip-path: inset( 0 0 230px 0); fill:var(--colour-red);}
	100% {clip-path: inset( 0 0 230px 0); fill:var(--colour-red);}
}
@keyframes razor-a-hover-festive-3 {
	0% {clip-path: inset(0 0 0 0); fill:var(--colour-white);}
	0% {clip-path: inset(0 0 0 0); fill:var(--colour-white);}
	40% {clip-path: inset(0 0 0 230px); fill:var(--colour-white);}
	100% {clip-path: inset(0 0 0 230px); fill:var(--colour-white);}
}


/*
svg.razor-logo > .white {
	opacity: 0;
	animation: razor-fadein 1s forwards 1000ms cubic-bezier(0.31, 0.87, 0.32, 1);
}
@keyframes razor-fadein {
	0%   {transform: scale(1) translate3d(20px,0,0); opacity: 0;}
	100% {transform: scale(1) translate3d(0,0,0); opacity: 1;}
}
svg.razor-logo > .white:nth-child(2) {animation-delay: 1200ms;}
svg.razor-logo > .white:nth-child(3) {animation-delay: 1400ms;}
svg.razor-logo > .white:nth-child(4) {animation-delay: 1600ms;}
svg.razor-logo > .white:nth-child(5) {animation-delay: 1800ms;}
*/


/*Header*/
.header,
.body.header-overlay .header {
	padding: 0;
	position: absolute;
	background: none;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100 !important;
}
body.header-overlay.fixed .header{
	background-color: var(--colour-dark);
	padding: 0 0 20px;
	position: relative;
}
.head-frame {
	display: flex;
	align-items: flex-end;;
}
.head-frame > .head-main {
	width: 100%;
	padding-right: 35px;
}
.head-frame > .head-contact {
	width: var(--frame-expad);
	min-width: 170px;
}

.top-menu {
	padding: 10px 0;
	padding-left: var(--frame-pad);
	position: relative;
}
.top-menu::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	left: 0;
	bottom: -2px;
	background: linear-gradient(to right, var(--colour-tertiary), var(--colour-secondary));
	/*animation: topmenu-linein 1s forwards 0ms cubic-bezier(0.31, 0.87, 0.32, 1);*/
}

/*.fancy-menu-option-1 .top-menu::after {background: var(--colour-secondary);}
.fancy-menu-option-2 .top-menu::after {background: var(--colour-tertiary);}
.fancy-menu-option-3 .top-menu::after {background: var(--colour-primary-alt);}*/
.fancy-menu-open .top-menu::after {
	background: #fff;
	opacity: 0.15;
}
.fancy-menu-open .top-menu ul.menu {
	opacity: 0.5;
}
@keyframes topmenu-linein {
	0% 	 {width: calc(100% - 200px);}
	100% {width: calc(100%);}
}

/*Topmenu*/
.top-menu ul.menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.top-menu ul.menu > li {
	list-style: none;
	display: block;
	padding-left: 30px;
}
.top-menu ul.menu > li a.menulink {
	text-transform: none;
	font-size: 13px;
	line-height: 15px;
	padding: 4px 0;
	color: #fff;
	opacity: 0.7;
	font-family: var(--font-heading);
}
.top-menu ul.menu > li.open a.menulink,
.top-menu ul.menu > li a.menulink:hover {
	text-decoration: none;
	color: #fff;
	opacity: 1;
}
.top-menu ul.menu > li a.menulink span.fa-chevron-down {
	font-size: 11px;
	font-weight: 500;
	margin-left: 2px;
}
.top-menu ul.menu > li.open a.menulink span.fa-chevron-down::before {
	content: "\f077";
}

/*Topmenu Dropdown*/
.top-menu.navigation ul.menu li ul.menu-dropdown {
	top: 33px;
	left: 5px;
	padding: 0 15px;
	background-color: var(--colour-secondary);
	transition: all 0s var(--transition);
	pointer-events: none;
	visibility: hidden;
	display: block;
	opacity: 0;
	z-index: 1;
}
.top-menu.navigation ul.menu li.open ul.menu-dropdown {
	transition: all 0.4s var(--transition);
	pointer-events: all;
	visibility: visible;
	padding: 14px 15px 18px;
	opacity: 1;
}
.top-menu.navigation ul.menu li ul.menu-dropdown li {
	background: none;
}
.top-menu.navigation ul.menu li ul.menu-dropdown li a {
	text-transform: none;
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	color: #fff;
	opacity: 0;
	padding: 12px 10px;
	display: table;
	background: none;
	position: relative;
	font-family: var(--font-heading);
}
.top-menu.navigation ul.menu li ul.menu-dropdown li a::after,
.fixed-nav.top-menu ul.menu > li a.menulink::after {
	content: '';
	position: absolute;
	height: 2px;
	bottom: 8px;
	left: 10px;
	right: 10px;
	background-color: #fff;
	transform: scale(0,1);
	transform-origin: right center;
	transition: transform 0.2s var(--transition);
}
.top-menu.navigation ul.menu li ul.menu-dropdown li a:hover::after,
.fixed-nav.top-menu ul.menu > li a.menulink:hover::after,
.fixed-nav.top-menu ul.menu > li.open a.menulink::after {
	transform: scale(1,1);
	transform-origin: left center;
}
.top-menu.navigation ul.menu li.open ul.menu-dropdown li a {
	animation: fadeInDown 0.3s forwards 0ms var(--transition-alt);
}
.top-menu.navigation ul.menu li.open ul.menu-dropdown li:nth-child(2) a {animation-delay: 30ms;}
.top-menu.navigation ul.menu li.open ul.menu-dropdown li:nth-child(3) a {animation-delay: 60ms;}
.top-menu.navigation ul.menu li.open ul.menu-dropdown li:nth-child(4) a {animation-delay: 90ms;}
.top-menu.navigation ul.menu li.open ul.menu-dropdown li:nth-child(5) a {animation-delay: 120ms;}
.top-menu.navigation ul.menu li.open ul.menu-dropdown li:nth-child(6) a {animation-delay: 150ms;}
.top-menu.navigation ul.menu li.open ul.menu-dropdown li:nth-child(7) a {animation-delay: 180ms;}
.top-menu.navigation ul.menu li.open ul.menu-dropdown li:nth-child(8) a {animation-delay: 210ms;}
.top-menu.navigation ul.menu li.open ul.menu-dropdown li:nth-child(9) a {animation-delay: 240ms;}
.top-menu.navigation ul.menu li.open ul.menu-dropdown li:nth-child(10) a {animation-delay: 270ms;}

@keyframes menulink-fadein {
	0% {transform: scale(1) translate3d(-20px,0,0); opacity: 0;}
	100% {transform: scale(1) translate3d(0,0,0); opacity: 1;}
}
.top-menu ul.menu > li:nth-child(2) {animation-delay: 800ms;}
.top-menu ul.menu > li:nth-child(3) {animation-delay: 600ms;}
.top-menu ul.menu > li:nth-child(4) {animation-delay: 400ms;}
.top-menu ul.menu > li:nth-child(5) {animation-delay: 200ms;}

/*MAIN NAVIGATION*/
.nav .navigation > ul.menu {
	margin-right: -10px;
}
.nav .navigation > ul.menu > li {
	padding-left: 20px;
	position: relative;
}
.nav .navigation > ul.menu > li > a.menulink {
	font-size: 24px;
	line-height: 26px;
	font-weight: 600;
	text-transform: none;
	letter-spacing: -1px;
	font-family: var(--font-heading);
	color: #fff;
	position: relative;
	padding: 10px 10px;
}
.nav .navigation > ul.menu > li > a.menulink::after,
.nav .navigation > ul.menu > li > a.menulink::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 10px;
	right: 10px;
	height: 4px;
	transform: scale(0,1);
	transform-origin: right center;
	transition: transform 0.3s cubic-bezier(0.31, 0.87, 0.32, 1);
}
.nav .navigation > ul.menu > li > a.menulink:hover::after,
.nav .navigation > ul.menu > li.open > a.menulink::before {
	transform: scale(1,1);
	transform-origin: left center;
}
.nav .navigation > ul.menu > li > a.menulink::before {
	background-color: #fff !important;
	z-index: 2;
}
.nav .navigation > ul.menu > li:nth-child(1) > a.menulink::after {background-color: var(--colour-primary);}
.nav .navigation > ul.menu > li:nth-child(2) > a.menulink::after {background-color: var(--colour-secondary);}
.nav .navigation > ul.menu > li:nth-child(3) > a.menulink::after {background-color: var(--colour-tertiary);}
.nav .navigation > ul.menu > li > a.menulink span {
	display: none;
}

/*Main Nav Dropdown*/
body.fancy-menu-open {
	overflow: hidden;
	position: relative;
}
body::before {
	top: 0;
	content: "";
	z-index: 10;
	width: 100%;
	opacity: 0;
	height: 100%;
	min-height: 100vh;
	position: absolute;
	pointer-events: none;
	transition: all 0.5s var(--transition);
	background: linear-gradient(to bottom, var(--colour-dark), var(--colour-dark) calc(0% + 100px), rgba(23, 34, 51, 0.9) calc(0% + 300px), rgba(23, 34, 51, 0.9));
}
body.fancy-menu-open::before {
	pointer-events: all;
	opacity: 0.95;
}
body.fancy-menu-open.fancy-menu-option-1::before {	background: var(--colour-primary);
	/*linear-gradient(to bottom, var(--colour-primary), var(--colour-primary) calc(0% + 100px), rgba(29, 161, 222, 0.9) calc(0% + 300px), rgba(29, 161, 222, 0.9))*/;
}
body.fancy-menu-open.fancy-menu-option-2::before {	background: var(--colour-secondary);
	/*linear-gradient(to bottom, var(--colour-secondary), var(--colour-secondary) calc(0% + 100px), rgba(40, 70, 186, 0.9) calc(0% + 300px), rgba(40, 70, 186, 0.9))*/;
}
body.fancy-menu-open.fancy-menu-option-3::before {	background: var(--colour-tertiary);
	/*linear-gradient(to bottom, var(--colour-tertiary), var(--colour-tertiary) calc(0% + 100px), rgba(41, 191, 177, 0.9) calc(0% + 300px), rgba(41, 191, 177, 0.9))*/;
}

/*body::after {
	content: "";
	position: fixed;
	width: 500px;
	height: 500px;
	bottom: 10px;
	left: -45px;
	z-index: 11;
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s cubic-bezier(0,0,0.1,0.9) 0.2s;
}
body.fancy-menu-open.fancy-menu-option-1::after {
	background: url(/template/profile/c9phLISwdeRLl67RaKAE0VSb/images/graphics/web-icon.svg) bottom left / 500px auto no-repeat;
	bottom: -40px;
	opacity: 1;
}
body.fancy-menu-open.fancy-menu-option-2::after {
	background: url(/template/profile/c9phLISwdeRLl67RaKAE0VSb/images/graphics/design-icon.svg) bottom left / 500px auto no-repeat;
	bottom: -40px;
	opacity: 1;
}
body.fancy-menu-open.fancy-menu-option-3::after {
	background: url(/template/profile/c9phLISwdeRLl67RaKAE0VSb/images/graphics/market-icon.svg) bottom left / 500px auto no-repeat;
	bottom: -40px;
	opacity: 1;
}*/

.nav .navigation > ul.menu > li ul.menu-dropdown {
	top: 70px;
	left: auto;
	right: 5px;
}
.nav .navigation > ul.menu > li ul.menu-dropdown > li {
	background: none;
	padding: 2px 0;
	opacity: 0;
	min-width: 300px;
	animation: fadeInDown 0.3s forwards 0ms var(--transition-alt);
}
.nav .navigation > ul.menu > li ul.menu-dropdown > li:nth-child(2) {animation-delay: 30ms;}
.nav .navigation > ul.menu > li ul.menu-dropdown > li:nth-child(3) {animation-delay: 60ms;}
.nav .navigation > ul.menu > li ul.menu-dropdown > li:nth-child(4) {animation-delay: 90ms;}
.nav .navigation > ul.menu > li ul.menu-dropdown > li:nth-child(5) {animation-delay: 120ms;}
.nav .navigation > ul.menu > li ul.menu-dropdown > li:nth-child(6) {animation-delay: 150ms;}
.nav .navigation > ul.menu > li ul.menu-dropdown > li:nth-child(7) {animation-delay: 180ms;}
.nav .navigation > ul.menu > li ul.menu-dropdown > li:nth-child(8) {animation-delay: 210ms;}
.nav .navigation > ul.menu > li ul.menu-dropdown > li:nth-child(9) {animation-delay: 240ms;}
.nav .navigation > ul.menu > li ul.menu-dropdown > li:nth-child(10) {animation-delay: 270ms;}

.nav .navigation > ul.menu > li ul.menu-dropdown > li a {
	padding: 10px 5px;
	text-transform: none;
	text-align: right;
	font-size: 20px;
	line-height: 24px;
	font-weight: 500;
	display: table;
	letter-spacing: -0.5px;
	position: relative;
	color: #fff;
	margin: 0 0 0 auto;
	font-family: var(--font-heading);
}
.nav .navigation > ul.menu > li ul.menu-dropdown > li a::after {
	content: "";
	position: absolute;
	bottom: 6px;
	left: 5px;
	right: 5px;
	height: 2px;
	background-color: #fff;
	transform: scale(0,1);
	transform-origin: right center;
	transition: transform 0.3s var(--transition);
}
.nav .navigation > ul.menu > li ul.menu-dropdown > li a:hover::after {
	transform: scale(1,1);
	transform-origin: left center;
}


/*Header (continued)*/
.head-main > .coltable {
	padding-left: var(--frame-pad);
	padding-top: 30px;
}
.head-main > .coltable > .col {
	vertical-align: middle;
	padding: 0;
}
.head-main > .coltable > .col.nav {
	position: static;
}

.head-contact > p {
	margin: 0;
}
.head-contact > p a.button {
	border: none;
	font-size: 14px;
	font-weight: 500;
	padding: 12px 28px 12px;
	font-family: var(--font-heading);
	background-color: var(--colour-secondary);
	color: #fff;
	transition: all 1s ease;
	clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
	/*background: linear-gradient(to right, var(--colour-tertiary) 0%, var(--colour-tertiary) 20%, var(--colour-primary) 40%, var(--colour-primary) 60%, var(--colour-secondary) 80%, var(--colour-secondary) 100%);
	background-position: center right;
	background-size: 600% 100%;*/
	background: linear-gradient(to right, var(--colour-secondary), var(--colour-secondary), var(--colour-primary), var(--colour-primary), var(--colour-tertiary), var(--colour-tertiary), var(--colour-primary), var(--colour-primary), var(--colour-secondary), var(--colour-secondary));
	background-position: center left;
	background-size: 2000% 100%;
	animation: head-contact-anim 2s infinite linear;
	animation-play-state: paused;
}
.head-contact > p a.button::before,
.head-contact > p a.button::after {
	display: none;
}
.head-contact > p a.button:hover {
	/*background-position: center left;*/
	animation-play-state: running;
	color: #fff;
}
@keyframes head-contact-anim {
	0%   {background-position: center left;}
	100% {background-position: center right;}
}

.fancy-menu-option-1 .head-contact > p a.button {background: var(--colour-secondary);}
.fancy-menu-option-2 .head-contact > p a.button {background: var(--colour-tertiary);}
.fancy-menu-option-3 .head-contact > p a.button {background: var(--colour-primary-alt);}




/***Header - Overlay Selected***/
body:not(.header-overlay) svg.razor-logo .white {
	fill: var(--colour-heading);
}
body:not(.header-overlay) svg.razor-logo .white.razor-a {
	fill: transparent;
}
body:not(.header-overlay) svg.razor-logo:hover .white.razor-a {
	fill: var(--colour-heading);
}
body:not(.header-overlay) .top-menu ul.menu > li a.menulink,
body:not(.header-overlay) .nav .navigation > ul.menu > li > a.menulink {
	color: var(--colour-heading);
}

body.fancy-menu-open:not(.header-overlay) svg.razor-logo .white,
body.fancy-menu-open:not(.header-overlay) svg.razor-logo .white.razor-a {
	fill: #fff;
}
body.fancy-menu-open:not(.header-overlay) .top-menu ul.menu > li a.menulink,
body.fancy-menu-open:not(.header-overlay) .nav .navigation > ul.menu > li > a.menulink {
	color: #fff;
}

/***Fixed Header***/
.fixed-nav.navigation {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	padding: 22px 0;
	transform: translateY(calc(-100% - 3px));
	transition: all 0.5s var(--transition);
	background-color: rgba(23, 34, 51, 0.95);
	/*background-color: rgba(39, 71, 185,0.95);
	background-color: rgba(19, 29, 46, 0.8);*/
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
/*.fixed-nav.navigation::before {
	content: '';
	display: block !important;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.1;
	background-image: url('/template/profile/c9phLISwdeRLl67RaKAE0VSb/images/backgrounds/noise.png');
	background-repeat: repeat;
	background-size: 70px;
}*/
body.fancy-menu-open .fixed-nav.navigation{
	background-color: transparent;
}
.fixed-nav.navigation::after,
.fixed-nav.navigation::before {
	display: none;
}
.fixed-nav.navigation.active {
	display: block !important;
	transform: translateY(0%);
}

.fixed-nav.navigation > .frame {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.fixed-nav.navigation svg.razor-logo {
	width: 120px;
}
.fixed-nav.navigation svg.razor-logo .white,
.fixed-nav.navigation svg.razor-logo .white.razor-a {
	fill: #fff;
	opacity: 0.6;
}
/** Festive **/
/* .fixed-nav.navigation svg.razor-logo:hover .white.razor-a {
	fill: var(--colour-red);
}

.fixed-nav.navigation svg.razor-logo:hover .white,
.fixed-nav.navigation svg.razor-logo:hover .white.razor-a,
body.fancy-menu-open .fixed-nav.navigation svg.razor-logo .white,
body.fancy-menu-open .fixed-nav.navigation svg.razor-logo .white.razor-a {
	opacity: 1;
}


.fixed-nav.navigation svg.razor-logo .white:nth-child(1) {transition-delay: 0ms;}
.fixed-nav.navigation svg.razor-logo .white.razor-a	     {transition-delay: 50ms;}
.fixed-nav.navigation svg.razor-logo .white:nth-child(3) {transition-delay: 100ms;}
.fixed-nav.navigation svg.razor-logo .white:nth-child(4) {transition-delay: 150ms;}
.fixed-nav.navigation svg.razor-logo .white:nth-child(5) {transition-delay: 200ms;} */
/** End Festive **/


.fixed-nav.top-menu ul.menu {
	opacity: 1;
}
.fixed-nav.top-menu ul.menu > li a.menulink {
	font-size: 16px;
	font-weight: 500;
	line-height: 18px;
	position: relative;
	color: #fff !important;
	opacity: 0.6;
}
.fixed-nav.top-menu ul.menu > li a.menulink:hover,
body.fancy-menu-open .fixed-nav.top-menu ul.menu > li a.menulink:hover {
	opacity: 1;
}
.fixed-nav.top-menu ul.menu > li a.menulink::after {
	left: 0;
	right: 0;
	bottom: 0px;
}

.fixed-nav.top-menu ul.menu > li.fixed-phone {
	margin-left: 30px;
	border-left: 2px solid rgba(255,255,255,0.1);
}
.fixed-nav.top-menu ul.menu > li.fixed-phone a.menulink {
	color: #fff;
}

body.fancy-menu-open .fixed-nav.top-menu ul.menu > li a.menulink {
	opacity: 0.5;
	color: #fff;
}
body.fancy-menu-open .fixed-nav.top-menu ul.menu > li.open a.menulink {
	opacity: 1;
}
.fixed-nav.top-menu ul.menu > li.open a.menulink {
	color: var(--colour-primary);
}
.fixed-nav.top-menu ul.menu > li a.menulink span.fa-chevron-down {
	font-weight: 600;
	margin-left: 0px;
	display: none;
}
.fixed-nav.top-menu.navigation ul.menu li ul.menu-dropdown {
	top: 44px;
	left: auto;
	right: -25px;
	background-color: transparent;
}
.fixed-nav.top-menu.navigation ul.menu li.open ul.menu-dropdown {
	padding-top: 0;
	padding-bottom: 0;
}
.fixed-nav.top-menu.navigation ul.menu li ul.menu-dropdown li {
	min-width: 300px;
}
.fixed-nav.top-menu.navigation ul.menu li ul.menu-dropdown li a {
	padding: 10px 10px;
	text-align: right;
	margin: 0 0 0 auto;
	font-size: 18px;
	line-height: 22px;
	font-weight: 500;
}

/*Easing*/
.ease-in,
.ease-left,
.load-in,
.load-left {
	opacity: 0;
}

.animate-up {
	animation: fadeInUp 1s forwards calc(var(--animation-order, 1) * 200ms) var(--transition-alt);
}
.animate-left {
	animation: fadeInLeft 1s forwards 0ms var(--transition-alt);
}
.animate-down {
	animation: fadeInDown 1s forwards calc(var(--animation-order, 1) * 200ms) var(--transition-alt);
}

.load-in,
.load-in.ease-in {
	animation: loadInUp 1s forwards calc(var(--animation-order) * 150ms) var(--transition-alt);
}
.load-left {
	animation: fadeInLeft 1s forwards calc(var(--animation-order) * 150ms) var(--transition-alt);
}

.load-in.ease-in:not(.animate-up) {
	animation: none;
	opacity: 0;
}
.load-in.ease-in:not(.animate-up).animate-down {
	animation: fadeInDown 1s forwards calc(1 * 200ms) var(--transition-alt);
	opacity: 0;
}

.ease-delay-1 {
	animation-delay: 20ms
}

@keyframes loadInUp {
	0% {
	  transform: scale(1) translate3d(0,100px,0);
	  opacity: 0;
	}
	100% {
	  transform: scale(1) translate3d(0,0,0);
	  opacity: 1;
	}
}
@keyframes fadeInUp {
	0% {
	  transform: scale(1) translate3d(0,75px,0);
	  opacity: 0;
	}
	100% {
	  transform: scale(1) translate3d(0,0,0);
	  opacity: 1;
	}
}
@keyframes fadeInDown {
	0% {
	  transform: scale(1) translate3d(0,-75px,0);
	  opacity: 0;
	}
	100% {
	  transform: scale(1) translate3d(0,0,0);
	  opacity: 1;
	}
}
@keyframes fadeInLeft {
	0% {
	  transform: scale(1) translate3d(100px,0,0);
	  opacity: 0;
	}
	100% {
	  transform: scale(1) translate3d(0,0,0);
	  opacity: 1;
	}
}

@keyframes fadeDownMini {
	0% {
	  transform: scale(1) translate3d(0,-35px,0);
	  opacity: 0;
	}
	100% {
	  transform: scale(1) translate3d(0,0,0);
	  opacity: 1;
	}
}

/*Slider Defaults*/
.sssnext, .sssprev {
    width: 50px !important;
    height: 100%;
    margin: 0;
    position: absolute;
    top: 0;
    background-image: url('/web/template/default/assets/sss/images/brr.png') !important;
    z-index: 1000;
	transition: all 0.2s ease-out 0s;
}
.sssprev {
    left: 3%;
    background-position: 0 50% !important;
}
.sssnext {
    right: 3%;
    background-position: -50px 50% !important;
}
.sssprev:hover {
    left: 2.7%;
}
.sssnext:hover {
    right: 2.7%;
}
.sssprev:active {
    left: 2%;
}
.sssnext:active {
    right: 2%;
}

/*Default Overrides*/
.row:not(.no-gutters) {
	margin-right: calc( -1 * (var(--frame-ex) / 2));
	margin-left: calc( -1 * (var(--frame-ex) / 2));
}
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto,
.col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-2-4, .col-lg-3, .col-lg-4, .col-lg-4-8, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-7-2, .col-lg-8, .col-lg-9, .col-lg-9-6, .col-lg-auto,
.col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-2-4, .col-md-3, .col-md-4, .col-md-4-8, .col-md-5, .col-md-6, .col-md-7, .col-md-7-2, .col-md-8, .col-md-9, .col-md-9-6, .col-md-auto,
.col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-2-4, .col-sm-3, .col-sm-4, .col-sm-4-8, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-7-2, .col-sm-8, .col-sm-9, .col-sm-9-6, .col-sm-auto,
.col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-2-4, .col-xl-3, .col-xl-4, .col-xl-4-8, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-7-2, .col-xl-8, .col-xl-9, .col-xl-9-6, .col-xl-auto,
.col-xs-2-4, .col-xs-4-8, .col-xs-7-2, .col-xs-9-6 {
  	padding-right: calc(var(--frame-ex) / 2);
  	padding-left: calc(var(--frame-ex) / 2);
}

/*Elements*/
.html-style ul li::before, ul.bullet li::before, ul.bullet-list li::before {
	color: #CCC;
}
.faq:hover {
	border-color:#068ed0;
}
.faq:hover h3,
.faq:hover h3::before {
	color:#068ed0;
}

.faq-wrapper .pb-container {
	max-width: 900px;
	margin: 0 auto;
}
.faq-wrapper .box.faq {
	padding: 0;
	border: none;
	border-radius: 10px;
	background-color: var(--colour-white-greyish);
}
.faq-wrapper .box.faq h3 {
	font-size: 22px;
	line-height: 1.2em;
	padding: 30px;
}
.faq-wrapper .box.faq h3 i {
	margin-right: 5px;
}
.faq-wrapper .box.faq .faq-inner {
	padding: 30px;
	padding-top: 0px;
}
.faq-wrapper .box.faq .faq-inner p {
	font-size: 16px;
	line-height: 1.8em;
	font-weight: 400;
}
.faq-wrapper .box.faq .faq-inner ol,
.faq-wrapper .box.faq .faq-inner ul {
	margin-left: 15px;
}
.faq-wrapper .box.faq .faq-inner ol li:not(:last-child) ,
.faq-wrapper .box.faq .faq-inner ul li:not(:last-child) {
	margin-bottom: 5px;
}

.faq-wrapper .box.faq:hover {
	background-color: #fff;
	box-shadow: 0 5px 25px rgba(61, 64, 85, 0.1), 0 0 0 2px var(--colour-primary);
}

/* FAQ Section */

.faq-section .pb-block-type-text h2 {
	padding-bottom: 20px;
	border-bottom: 4px solid var(--colour-turqiose);
	width: fit-content;
}
.faq-section .pb-column {
	display: flex;
	flex-direction: column;
	row-gap: 80px;
}
.faq-accordian .pb-block-content {
	max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}
.box {
	border: none;
	border-bottom:1px solid #BEBEBE;
	padding:20px 0 15px;
	transition:all 0.2s ease-in-out 0s;
}
.box h3 {
	color: var(--colour-dark);
	font-size: 22px;
	line-height: 1.2em;
	padding: 30px;
	display: flex;
	align-items: center;
}
.box h3::before {
	content: "\f059";
	font-family: var(--font-awesome);
	font-size: 26px;
	margin-right: 30px;
	font-weight: 400;
	color: var(--colour-turqiose);
}
.accordion {
	transition: var(--transition);
}
.accordion:hover {
	border-color: var(--colour-turqiose);
	transition: var(--transition);
}
.accordion:hover h3,
.accordion:hover h3::before {
	color: var(--colour-turqiose);
}
.accordion > .accordion-inner {
	padding: 10px 0;
	padding-left: 28px;
    border-left: var(--colour-turqiose) 1px solid;
    margin-left: 84px;
	margin-bottom: 20px;
	transition: var(--transition);
}
.box-container > .box {
	margin: 0;
}

@media screen and (max-width:1050px) {
	.faq-section .pb-column {
		row-gap: 40px;
	}
	.box h3 {
		font-size: 18px;
		padding: 20px;
	}
	.box h3::before {
		font-size: 18px;
		margin-right: 20px;
	}
	.accordion > .accordion-inner {
		margin-left: 52px;
	}
}
@media screen and (max-width:800px) {
	.faq-section .pb-column {
		row-gap: 30px;
	}
	.box h3 {
		padding: 15px;
	}
	.accordion > .accordion-inner {
		margin-left: 0px
	}
}

/* Footer */
.footer {
	background: linear-gradient(70deg, #101722 50%, var(--colour-dark));
	padding:200px 0 100px;
	color: #FFF;
	position: relative;
}

/*.footer::before{
	content: '';
	animation: divider-anim 13s linear infinite;
	background-position: top left 0px;
	background-repeat: repeat-x;
	background-size: 2000px auto;
	position: absolute;
	height: 35px;
	top: -35px;
	left: 0;
	right: 0;
	z-index: 2;
	background-image: url(images/dividers/divider-footer.svg);
}*/
.foot-coltable {
	width: auto;
	min-width: 100%;
	display: flex;
	align-items: flex-start;
	margin-left: -20px;
	margin-right: -20px;
}
.foot-coltable > .col {
	padding-left: 20px;
	padding-right: 20px;
	width: 22.5%;
	flex: 22.5% 1 1;
}
.foot-coltable > .col.foot-logo-col {
	width: 30%;
	flex: 30% 1 1;
}

.foot-logo-col .foot-logo img {
	max-width: 160px;
}
.foot-logo-col .foot-social-links {
	font-size: 26px;
	line-height: 30px;
	display: flex;
	align-items: center;
	margin-left: -8px;
	margin-right: -8px;
}
.foot-logo-col .foot-social-links a {
	color: #fff;
	display: block;
	padding: 5px 8px;
}
.foot-logo-col .foot-social-links a:hover {
	color: var(--colour-primary);
}
.foot-logo-col .foot-social-links a i.fa-facebook-f {
	font-size: 24px;
	position: relative;
	top: -2px;
}
.foot-logo-col .foot-social-links a i.fa-soundcloud {
	font-size: 28px;
}

.footer .h4 {
	font-weight: 600;
	font-size: 22px;
	letter-spacing: -0.5px;
	text-transform: none;
	margin: 0 0 15px;
	color: #fff;
}
.footer .foot-menu {
	border: none;
	padding-top: 0;
}
.footer .foot-menu > li {
	margin-bottom: 2px;
}
.footer .foot-menu > li a {
	border-color: transparent !important;
	font-weight: 300;
	color: #6D849E;
}
.footer .foot-menu > li a:hover {
	border-color: transparent !important;
	color: #fff !important;
}

.footer ul.contact-menu > li {
	list-style: none;
	margin-bottom: 10px;
}
.footer ul.contact-menu > li a {
	padding: 5px 0;
	display: block;
	font-weight: 300;
	color: var(--colour-primary);
	display: flex;
	align-items: center;
}
.footer ul.contact-menu > li a > i {
	font-size: 26px;
	margin-right: 10px;
	font-weight: 300;
}
.footer ul.contact-menu > li a:hover {
	text-decoration: none;
	color: #fff;
}

.foot-lower {
	margin-top: 100px;
	padding-top: 30px;
	position: relative;
}
.foot-lower::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(to right, var(--colour-tertiary), var(--colour-secondary));
}
.foot-lower p {
	font-size: 14px;
	display: flex;
	justify-content: space-between;
	color: var(--colour-tertiary);
}
.foot-lower p a {
	opacity: 1;
	color: var(--colour-secondary);
}
.foot-lower p a:hover {
	color: #fff;
	text-decoration: none;
}


/*Form Defaults*/
.form-block,
.form-block.float {
	overflow: visible;
	border: none;
	background: transparent;
	margin: 0 -15px 0;
	width: auto;
	min-width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.form-block .field,
.form-block.float .field {
	float: none;
	display: block;
	padding: 15px;
}
.form-block .field label {
	font-size: 14px;
	line-height: 16px;
	color: var(--colour-heading);
	margin-bottom: 6px;
}
.form-block .field label em {
	font-weight: 400;
	color: var(--colour-red);
}
.form-block p.form-caption {
	color: var(--colour-heading);
}
input[type="text"],
input[type="number"],
input[type="password"],
input[type="email"],
input[type="tel"],
textarea,
select {
	transition: all 0.2s var(--transition);
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: var(--colour-heading);

	padding: 0 0 10px;
	padding-right: 10px;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid var(--colour-light);
	background-color: transparent;
}
input[type="text"]:hover,
input[type="number"]:hover,
input[type="password"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
textarea:hover,
select:hover {
	color: var(--colour-secondary);
	border-color: #adc6dd;
}
input[type="text"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
	outline: none;
	padding-right: 0px;
	padding-left: 10px;
	color: var(--colour-secondary);
	border-color: var(--colour-secondary);
	box-shadow: 0 1px 0 var(--colour-secondary);
}

textarea {
	padding-top: 3px;
	padding-bottom: 13px;
	max-width: 100%;
	scrollbar-color: rgba(0,0,0,0.3) transparent;
}


/*Contact Forms*/
.contact-form-heading {
	padding-bottom: 20px;
	border: none;
	width: fit-content;
	position: relative;
}

.contact-form-heading hr {
	background: linear-gradient(90deg, #2EC6BA 71.39%, #172233 100%);
	border: none;
	height: 2px;
	margin-top: 30px;
	margin-bottom: 0px;
}

.contact-form-info .pb-block-content {
	display: flex;
}
.contact-form-info .pb-block-content h3 {
	color: var(--colour-turqiose);
	font-size: 24px;
	width: 25px;
	text-align: center;
}
.contact-form-info .pb-block-content ul li a {
	color: var(--colour-turqiose);
	text-decoration: underline;
	transition: 0.3s ease;
}
.contact-form-info .pb-block-content ul li a:hover {
	color: var(--colour-white);
	transition: 0.3s ease;
}
.contact-form-info .pb-block-content ul li::before {
	display: none;
}
.contact-form-info .pb-block-content ul li {
	padding-left: 25px;
}
.contact-form-info .pb-block-content ul {
	margin-top: 8px;
	margin-bottom: 0px
}
@media screen and (max-width: 800px) {
    .contact-form-info {
        background-color: var(--colour-dark-blue);
        border-left: none;
        margin-bottom: 10px;
        padding: 30px;
    }
	.contact-form-info .pb-block-content ul {
		margin: 0px;
	}
}

.contact-form-testimonial {
	padding-top: 10px;
}
.contact-form-testimonial p {
    font-size: 22px;
}
.contact-form-testimonial h6 {
	color: var(--colour-white);
	display: flex;
    font-size: 16px;
    align-items: center;
}
.contact-form-testimonial h6::before {
	content: '';
	width: 55px;
	height: 55px;
	border-radius: 1000px;
	margin-right: 15px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: inline-block;
	border: 1px solid var(--colour-turqiose);
}
.contact-form-testimonial.heliworx-profile h6::before {
	background-image: url(images/logos/Profile_Heliworx.png);
}
.contact-form-testimonial.hitech-profile h6::before {
	background-image: url(images/logos/Profile_HiTech.png);
}
.contact-form-testimonial.cuttingedge-profile h6::before {
	background-image: url(images/logos/Profile_Cuttingedge.png);
}
.contact-form-testimonial h6 a {
	color: var(--colour-turqiose) !important;
	text-decoration: underline;
	margin-right: 10px;
	padding-right: 10px;
	border-right: 1px solid var(--colour-white);
	position: relative;
}
.contact-form-testimonial h6 a:hover {
	color: var(--colour-white) !important;
}
@media screen and (max-width: 800px) {
    .contact-form-testimonial {
		padding-top: 0;
	}
}
@media screen and (max-width: 500px) {
    .contact-form-testimonial p {
    	font-size: 16px;
	}
}

/* .contact-form-testimonial h6 a::after {
	content: "\e09f";
	font-family: "Font Awesome 6 Pro";
	color: var(--colour-turqiose);
	display: inline-block;
	margin-left: 10px;

	opacity: 0;
	transform: translateX(-5px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.contact-form-testimonial h6 a:hover::after {
	opacity: 1;
	transform: translateX(0);
} */

	table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }
    th, td {
      border: 1px solid #ccc;
      padding: 10px;
      text-align: left;
    }
    th {
      background-color: #f9f9f9;
      font-weight: bold;
    }
    td:first-child {
      font-weight: bold;
    }

/*Get In Touch Form*/
.contact-wrapper .form-variant-3 .pb-block-type-form .form-block .field:not(.submit) {
	background-color: var(--colour-white);
}

.contact-wrapper .pb-block-type-form {
	background-color: var(--colour-white);
	color: var(--colour-dark);
	padding: 50px;
}
.contact-wrapper .pb-column:has(.pb-block-type-form) {
	padding: 0px;
}
.contact-wrapper .pb-block-type-form h2,
.contact-wrapper .pb-block-type-form p {
	color: var(--colour-dark);
}
.form-title-h5 h2 {
	font-family: Poppins;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.contact-heading {
	max-width: 750px;
	padding-bottom: 20px;
	border: none;
	width: fit-content;
}
.get-in-touch-heading {
	border-bottom: 2px solid var(--colour-turqiose);
	width: fit-content;
}
.contact-bg {
	position: relative;
}
.coontact-bg::after {
	background-image: url(images/dividers/divider-white.svg);
	transform: scale(1,-1);
	bottom: 0;
}
.contact-bg::before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
    background-image: url("/template/profile/c9phLISwdeRLl67RaKAE0VSb/images/graphics/paper-plane-flying.svg");
    background-position: top 10% right -10%;
    background-size: 35% auto;
    background-repeat: no-repeat;
}

.contact-info-wrapper {
	padding-bottom: 40px;
}
.contact-info-wrapper .pb-column.col-sm-4 {
	padding-right: 0px;
}
.contact-info-block {
	padding: 0 50px 0 70px;
	border: none;
	border-left: 2px solid var(--colour-turqiose);
	height: 100%;
}
.contact-info-block ul li a:hover {
	color: var(--colour-turqiose);
}
.contact-info-block h3 {
	color: var(--colour-turqiose) !important;
	font-size: 24px;
	margin-bottom: 10px;

}
.contact-info-block p strong {
	font-weight: 700;

}
.contact-info-block li::before {
	display: none;
}
.contact-info-block li a {
	color: var(--colour-white);
	text-decoration: underline;
}
.contact-info-block .pb-block-content li {
	padding-left: 0px !important;
}
.contact-info-block .pb-block-type-text ul:not([class]) > li {
    list-style: none;
    position: relative;
    padding-left: 0px;
}

.map-100 .pb-block-type-map,
.map-100 .pb-block-content:has(.map-wrapper),
.map-100 .map-wrapper {
	height: 100%;
}

@media screen and (max-width:1000px) {
.contact-bg::before {
    background-position: top 5% right -15%;
}
.contact-info-block {
	padding: 0 20px 0 40px;
}
}
@media screen and (max-width:800px) {
	.contact-wrapper .pb-column:has(.pb-block-type-form) {
	padding-right: calc(var(--frame-ex) / 2);
    padding-left: calc(var(--frame-ex) / 2);
}
.contact-heading {
	padding-top: 50px;
}
}
@media screen and (max-width:600px) {
.contact-info-block {
	padding: 0 10px 0 25px;
}
.map-100 .pb-block-type-map,
.map-100 .pb-block-content:has(.map-wrapper),
.map-100 .map-wrapper {
	height: 400px;
}
}
@media screen and (max-width:575px) {
.contact-info-block {
	background-color: var(--colour-dark-blue);
	border-left: none;
	margin-bottom: 10px;
	padding: 30px;
}
.contact-info-wrapper .pb-column.col-sm-4 {
	padding-right: calc(var(--frame-ex) / 2);
	margin-bottom: 10px;
}
.contact-info-block ul:not([class]) {
    margin: 0px;
}
}
@media screen and (max-width:500px) {
.contact-wrapper .pb-block-type-form {
	padding: 30px;
}
}

/*Padding Variants*/
.pb-section.section-pad-1 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.pb-section.section-pad-2 {
	padding-top: 60px;
	padding-bottom: 60px;
}
.pb-section.section-pad-3 {
	padding-top: 90px;
	padding-bottom: 90px;
}
.pb-section.section-pad-4 {
	padding-top: 120px;
	padding-bottom: 120px;
}
.section.section-pad-5,
.pb-section.section-pad-5 {
	padding-top: 150px;
	padding-bottom: 150px;
}

@media screen and (min-width: 2000px) {
	/*Padding Variants*/
	.pb-section.section-pad-1 {
		padding-top: 45px;
		padding-bottom: 45px;
	}
	.pb-section.section-pad-2 {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.pb-section.section-pad-3 {
		padding-top: 110px;
		padding-bottom: 110px;
	}
	.pb-section.section-pad-4 {
		padding-top: 150px;
		padding-bottom: 150px;
	}
	.section.section-pad-5,
	.pb-section.section-pad-5 {
		padding-top: 180px;
		padding-bottom: 180px;
	}
}

/*Colour Themes*/
.section-colour-dark,
.section-colour-white,
.section-colour-light-blue,
.section-colour-deep-blue,
.section-colour-turqiose,
.section-colour-light-grey {
	position: relative;
}
.section-colour-dark::after,
.section-colour-white::after,
.section-colour-light-blue::after,
.section-colour-deep-blue::after,
.section-colour-turqiose::after,
.section-colour-light-grey::after {
	content: "";
	animation: divider-anim 13s linear infinite;
	background-position: top left 0px;
	background-repeat: repeat-x;
	background-size: 2000px auto;
	position: absolute;
	height: 35px;
	bottom: -34px;
	left: 0;
	right: 0;
	z-index: 2;
}
.wave-flip::before,
.section-colour-dark:nth-child(even)::after,
.section-colour-white:nth-child(even)::after,
.section-colour-light-blue:nth-child(even)::after,
.section-colour-deep-blue:nth-child(even)::after,
.section-colour-turqiose:nth-child(even)::after,
.section-colour-light-grey:nth-child(even)::after {
	transform: scale(-1, 1);
}

.section-colour-dark + .pb-section .pb-container,
.section-colour-white + .pb-section .pb-container,
.section-colour-light-blue + .pb-section .pb-container,
.section-colour-deep-blue + .pb-section .pb-container,
.section-colour-turqiose + .pb-section .pb-container,
.section-colour-light-grey + .pb-section .pb-container {
	padding-top: 30px;
}

@keyframes divider-anim {
	0% {background-position: top left 0px;}
	100% {background-position: top left 2000px;}
}

.no-divider::after {
	content: none;
}

.section-colour-dark {
	background-color: var(--colour-dark);
}
.section-colour-white {
	background-color: #fff;
}
.section-colour-light-blue {
	background-color: var(--colour-primary);
}
.section-colour-deep-blue {
	background-color: var(--colour-secondary);
}
.section-colour-turqiose {
	background-color: var(--colour-tertiary);
}
.section-colour-light-grey {
	background-color: #e8eced;
}

.section-colour-dark::after {
	background-image: url(images/dividers/divider-dark.svg);
}
.section-colour-white::after {
	background-image: url(images/dividers/divider-white.svg);
}
.section-colour-light-blue::after {
	background-image: url(images/dividers/divider-primary.svg);
}
.section-colour-deep-blue::after {
	background-image: url(images/dividers/divider-secondary.svg);
}
.section-colour-turqiose::after {
	background-image: url(images/dividers/divider-tertiary.svg);
}
.section-colour-light-grey::after {
	background-image: url(images/dividers/divider-grey.svg);
}

.wave-top::before {
	content: "";
	animation: divider-anim 13s linear infinite;
	background-image: url(images/dividers/divider-white.svg);
	background-position: top left 0px;
	background-repeat: repeat-x;
	background-size: 2000px auto;
	position: absolute;
	height: 35px;
	top: -1px;
	left: 0;
	right: 0;
	z-index: 2;
}
.wave-top.wave-deep-blue::before {
	background-image: url(images/dividers/divider-secondary.svg);
}

.section-colour-dark h1,
.section-colour-light-blue h1,
.section-colour-deep-blue h1 {
	color: #fff;
}
.section-colour-dark h2,
.section-colour-light-blue h2,
.section-colour-deep-blue h2 {
	color: #fff;
}
.section-colour-dark h3,
.section-colour-light-blue h3,
.section-colour-deep-blue h3 {
	color: #fff;
}
.section-colour-dark h4,
.section-colour-light-blue h4,
.section-colour-deep-blue h4 {
	color: #fff;
}
.section-colour-dark h5,
.section-colour-light-blue h5,
.section-colour-deep-blue h5 {
	color: #fff;
}
.section-colour-dark p,
.section-colour-light-blue p,
.section-colour-deep-blue p {
	color: #fff;
}

.section-colour-deep-blue h1 mark::after, .section-colour-deep-blue h2 mark::after, .section-colour-deep-blue h3 mark::after {
	background-color: var(--colour-primary);
}
.section-colour-dark h1 mark::after, .section-colour-dark h2 mark::after, .section-colour-dark h3 mark::after {
	background-color: var(--colour-secondary);
}

.section-colour-white .button.btn-clear,
.section-colour-white .button.btn-line {
	color: var(--colour-heading);
	font-weight: 500;
}

.section-container > .pb-section:first-child .pb-container {
	padding-top: 120px;
}


/**--- TEMPLATE THEMES ---**/

/*Section overlap banner*/
.section-overlap-banner > .frame {
	overflow: hidden;
}
.section-overlap-banner .pb-row {
	align-items: stretch;
	margin-left: 0;
	margin-right: 0;
}
.section-overlap-banner .pb-row .col-sm-4-8 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 50px 0;
	padding-left: var(--frame-ex);
	z-index: 2;

	width: 50%;
	flex: 50% 1 1;
	max-width: unset;
	position: relative;
	pointer-events: none;
}
.section-overlap-banner .pb-row .col-sm-7-2 {
	padding: 0;
	width: 50%;
	z-index: 1;
	flex: 50% 1 1;
	max-width: unset;
	position: relative;
	margin-left: -150px;
}

.section-overlap-banner .pb-block-type-text h1 {
	margin-bottom: 40px;
	min-width: 690px;
	pointer-events: all;
	position: relative;
	z-index: 2;
}
.section-overlap-banner .pb-block-type-text h2 {
	margin-bottom: 35px;
}
.section-overlap-banner .pb-block-type-text p {
	max-width: 450px;
}
.section-overlap-banner .pb-block-type-text h2,
.section-overlap-banner .pb-block-type-text h3,
.section-overlap-banner .pb-block-type-text h4,
.section-overlap-banner .pb-block-type-text p {
	pointer-events: all;
}
.section-overlap-banner .pb-block-type-text h1 small,
.section-overlap-banner .pb-block-type-text h2 small,
.section-overlap-banner .pb-block-type-text h3 small {
	display: block;
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: -0.025em;
	margin-bottom: 20px;
}
.section-overlap-banner .pb-block-type-button .button-wrapper {
	/* margin-top: 50px; */
	pointer-events: all;
}

.section-overlap-banner .pb-block-type-image,
.section-overlap-banner .pb-block-type-image .pb-block-content {
	height: 100%;
}
.section-overlap-banner .pb-block-type-image .pb-block-content img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.section-overlap-banner .pb-block-type-slider .tns-ovh {
    overflow: visible;
}
.section-overlap-banner .pb-block-type-slider .slider > .tns-item {
	padding-right: 0px !important;
	border-right: 5px solid transparent;
}
.section-overlap-banner .pb-block-type-slider .slider .slide {
	height: calc(300px + 15vw);
	position: relative;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	transition: 0.5s ease;
}
.section-overlap-banner .pb-block-type-slider .slider .slide > img {
	object-fit: cover;
    font-family: "object-fit: cover";
    left: 50%;
    vertical-align: middle;
    max-height: 101%;
    max-width: none;
    min-height: 101%;
    min-width: 101%;
    position: absolute;
    top: 50%;
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 101%;
    z-index: 1;
}

.section-overlap-banner .pb-block-type-slider .slider .slide.tns-slide-active + .slide,
.section-overlap-banner .pb-block-type-slider .slider .slide.tns-slide-active + .slide + .slide {
	opacity: 0.4;
	pointer-events: all;
}
.section-overlap-banner .pb-block-type-slider .slider .slide.tns-slide-active {
	opacity: 1 !important;
	pointer-events: all;
}

.tns-outer .tns-controls,
.section-overlap-banner .tns-outer .tns-controls {
	top: auto;
	left: auto;
	right: 5px;
	transform: none;
	overflow: visible;
	bottom: 0px;
}
.tns-outer .tns-controls button[disabled=""] {
	filter: grayscale(1);
}
.tns-outer .tns-controls button,
.section-overlap-banner .tns-outer .tns-controls button {
	width: 50px;
	height: 50px;
	padding: 5px;
	font-size: 0px;
	opacity: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--colour-dark);
	box-shadow: 0 0 0 -1px var(--colour-secondary);
	transition: all 0.3s var(--transition), box-shadow 0s;
}
.tns-outer .tns-controls button::before,
.section-overlap-banner .tns-outer .tns-controls button::before {
	font-weight: 300;
	font-size: 17px;
	display: block;
	left: auto;
	right: auto;
}
.tns-outer .tns-controls button::after,
.section-overlap-banner .tns-outer .tns-controls button::after {
	display: none;
}
.tns-outer .tns-controls button:first-of-type::before,
.section-overlap-banner .tns-outer .tns-controls button:first-of-type::before {
	content: '\f060';
}
.tns-outer .tns-controls button:last-of-type::before,
.section-overlap-banner .tns-outer .tns-controls button:last-of-type::before {
	content: '\f061';
}
.tns-outer .tns-controls button:first-of-type,
.tns-outer .tns-controls button:last-of-type,
.section-overlap-banner .tns-outer .tns-controls button:first-of-type,
.section-overlap-banner .tns-outer .tns-controls button:last-of-type {
	background: var(--colour-dark);
	transform: none;
	z-index: 2;
}
.tns-outer .tns-controls button:first-of-type,
.section-overlap-banner .tns-outer .tns-controls button:first-of-type {
	position: relative;
	right: -50px;
	z-index: 1;
}
.tns-outer .tns-controls:hover button:first-of-type,
.section-overlap-banner .tns-outer .tns-controls:hover button:first-of-type {
	right: 0;
}
.tns-outer .tns-controls button:hover:first-of-type,
.tns-outer .tns-controls button:hover:last-of-type,
.section-overlap-banner .tns-outer .tns-controls button:hover:first-of-type,
.section-overlap-banner .tns-outer .tns-controls button:hover:last-of-type {
	background: var(--colour-secondary);
}
.tns-outer .tns-controls button:active,
.section-overlap-banner .tns-outer .tns-controls button:active {
	transition: all 0.3s var(--transition), width 0.05s var(--transition);
	width: 45px;
}


/*Content Banner*/
.content-slider.section-overlap-banner .pb-row .col-sm-4-8 {
	padding-right: var(--pad-huge);
	padding-left: 0;
}
.content-slider.section-overlap-banner .pb-row .col-sm-7-2 {
	margin-left: 0;
}
.content-slider.section-overlap-banner .pb-block-type-slider .slider .slide {
	height: unset !important;
}
.content-slider.section-overlap-banner .pb-block-type-slider .slider .slide a.overlay-link {
	color: var(--colour-dark);
	text-decoration: none;
}
.content-slider.section-overlap-banner .pb-block-type-slider .slider .slide.tns-slide-active + .slide,
.content-slider.section-overlap-banner .pb-block-type-slider .slider .slide.tns-slide-active + .slide + .slide {
  	opacity: 0.7;
	filter: grayscale(1);
}
.content-slider.section-overlap-banner .pb-block-type-slider .slider .slide img {
	position: relative;
	transform: none;
	top: 0;
	left: 0;
	height: auto;
	min-height: 250px;
	max-height: 500px;
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	object-fit: cover;
	object-position: center;
}
.content-slider.section-overlap-banner .pb-block-type-slider .slider-wrapper .slide-inner {
	height: auto;
}
.content-slider.section-overlap-banner .pb-block-type-slider .slider-wrapper .slide-cell {
	padding: 30px 30px 0;
	text-align: left;
	background-color: #fff;
	/*box-shadow: 0 15px 35px rgba(0,0,0,0.1);*/
}
.content-slider.section-overlap-banner .pb-block-type-slider .slider-wrapper .slide-cell a.button {
	font-weight: 500;
	font-size: 16px;
}
.content-slider.section-overlap-banner .pb-block-type-slider .slider-wrapper .slide-cell a.button::after {
	left: 0;
	right: 0;
}

.content-slider.section-overlap-banner .pb-block-type-text p {
	max-width: unset;
}
.content-slider.section-overlap-banner .pb-block-type-slider .tns-outer .tns-controls, .section-overlap-banner .tns-outer .tns-controls {
	top: 0;
	bottom: auto;
}
.content-slider.cs-web.section-overlap-banner .pb-block-type-slider .slider-wrapper .slide-cell h3,
.content-slider.cs-web.section-overlap-banner .pb-block-type-slider .slider-wrapper .slide-cell h5,
.content-slider.cs-web.section-overlap-banner .pb-block-type-slider .slider-wrapper .slide-cell a.button {
	color: var(--colour-primary);
}


/** Landing Page Banner **/
.section-landing-banner {
	position: relative;
	overflow: hidden;
}
.section-landing-banner .pb-row {
	min-height: calc(100vh + 35px);
	padding: 200px 0 250px;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.section-landing-banner .pb-column {
	position: static;
	padding: 0;
}
.section-landing-banner .pb-block-type-image img {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.1);
	animation: landing-image 3s forwards cubic-bezier(0,0,0.1,0.9);
	/* animation: landing-image-repeat 12s infinite cubic-bezier(0.5, 0, 0.5, 1); */
}

@keyframes landing-image {
	0% {transform: scale(1.1);}
	100% {transform: scale(1);}
}
@keyframes landing-image-repeat {
	0% {transform: scale(1);}
	35% {transform: scale(1.05);}
	100% {transform: scale(1);}
}

.section-landing-banner .pb-block-type-text {
	position: relative;
	text-align: center;
	z-index: 2;
}
.section-landing-banner .pb-block-type-text h1 {
	display: table;
	margin: 0 auto;
	color: #fff;
	font-size: 100px;
	line-height: 1;
	position: relative;
	/*opacity: 0;
	transform: scale(0.8);
	animation: landing-text 1.5s forwards cubic-bezier(0,0,0.1,0.9) 0.5s;*/
}

@keyframes landing-text {
	0% {transform: scale(0.8); opacity: 0;}
	100% {transform: scale(1); opacity: 1;}
}

.section-landing-banner .pb-block-type-button .button-wrapper {
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 85px;
	display: flex;
	align-items: center;
	justify-content: center;

}
.section-landing-banner .pb-block-type-button a.button {
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	padding: 0;
	font-family: var(--font-heading);
	color: var(--colour-whiteish);
	letter-spacing: -0.03em;
	font-size: 16px;
	opacity: 0;
	transform: translateY(40px);
	animation: landing-button 1s forwards cubic-bezier(0,0,0.1,0.9) 2s;
}

.section-landing-banner .pb-block-type-button a.button:hover {
	color: #fff;
}
/* .section-landing-banner .pb-block-type-button a.button i.fas {
	margin-top: 10px;
	font-weight: 600;
	font-size: 200%;
} */
.section-landing-banner .pb-block-type-button a.button i.fas {
	margin-top: 10px;
	display: flex;
	width: 40px;
	height: 40px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 100%;
	border-radius: 1000px;
	background: rgba(255, 255, 255, 0.50);
}
.section-landing-banner .pb-block-type-button a.button i.fas:hover {
	background: rgba(255, 255, 255, 0.80);
	scale: 1.05;
}
.section-landing-banner .pb-block-type-button a.button::before,
.section-landing-banner .pb-block-type-button a.button::after {
	display: none;
}

@keyframes landing-button {
	0% {transform: translateY(40px); opacity: 0;}
	100% {transform: translateY(0px); opacity: 1;}
}

.section-landing-banner.section-colour-dark::after,
.section-landing-banner.section-colour-white::after,
.section-landing-banner.section-colour-light-blue::after,
.section-landing-banner.section-colour-deep-blue::after,
.section-landing-banner.section-colour-turqiose::after,
.section-landing-banner.section-colour-light-grey::after {
	bottom: -1px;
	transform: scale(1,-1);
}

/*Landing Specific*/
/* .landing-websites.section-landing-banner .pb-block-type-text h1 {
	text-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.landing-websites.section-landing-banner .pb-block-type-text.laptop {
	position: static;
}
.landing-websites.section-landing-banner .pb-block-type-text.laptop .pb-block-content{
	width: 590px;
	height: 400px;
	position: absolute;
	top: calc(50% - 220px);
	left: calc(50% - 295px);
	background-image: url('/template/profile/c9phLISwdeRLl67RaKAE0VSb/images/graphics/laptop-skew-screen.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	z-index: 2;
}
.landing-websites.section-landing-banner .pb-block-type-text.laptop .pb-block-content::after {
	content: "";
	position: absolute;
	bottom: -22px;
	left: 8%;
	right: -25%;
	height: 30px;
	background-image: url('/template/profile/c9phLISwdeRLl67RaKAE0VSb/images/graphics/laptop-skew-base.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.landing-websites.section-landing-banner .pb-block-type-text.laptop::before {
	content: "";
	position: absolute;
	z-index: 1;
	width: 590px;
	height: 400px;
	top: calc(50% - 220px);
	left: calc(50% - 295px);
	background-color: #59ac21;
	transform: skewX(5deg) scale(0.92,0.99);
	mix-blend-mode: difference;
}
.landing-websites.section-landing-banner .pb-block-type-image img {
	display: none;
}
.landing-websites.section-landing-banner .pb-block-type-image .pb-block-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-position: center;
	background-repeat: repeat-x;
	background-size: 2400px auto;
	background-image: url("/template/profile/c9phLISwdeRLl67RaKAE0VSb/images/backgrounds/waves-repeat.jpg");
	animation: wave-repeat 50s infinite linear, landing-image-repeat 8s infinite cubic-bezier(0.5, 0, 0.5, 1);
}
@keyframes wave-repeat {
	0% 	 {background-position: center left 0px;}
	100% {background-position: center left 2400px;}
}
.landing-websites.section-landing-banner .pb-block-type-button a.button {
	color: var(--colour-heading);
}
.landing-websites.section-landing-banner .pb-block-type-button a.button i {
	color: var(--colour-primary);
}
.landing-websites.section-landing-banner .pb-block-type-button a.button:hover {
	color: var(--colour-primary);
} */


.landing-marketing.section-landing-banner .pb-block-type-image::after {
	content:"";
	position: absolute;
	background-color: rgba(0,0,0,0.2);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.landing-marketing.section-landing-banner .pb-block-type-text h1::after {
	content: "";
	position: absolute;
	top: -25px;
	left: -50px;
	right: -50px;
	bottom: -25px;
	pointer-events: none;
	background-image: url("/template/profile/c9phLISwdeRLl67RaKAE0VSb/images/graphics/scribble-circle.svg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

/* LANDING WEB */

.landing-web.section-landing-banner .pb-block-type-image::after {
	content:"";
	position: absolute;
	background-color: rgba(0,0,0,0.2);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.landing-web.section-landing-banner .pb-block-type-text h1::after {
	content: "";
	position: absolute;
	top: -25px;
	left: -50px;
	right: -50px;
	bottom: -25px;
	pointer-events: none;
	background-image: url("/template/profile/c9phLISwdeRLl67RaKAE0VSb/images/graphics/scribble-web.svg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}


.landing-design.section-landing-banner {
	background: var(--colour-dark);
}
.landing-design.section-landing-banner .pb-block-type-image img {
	object-fit: contain;
	object-position: center;
}
.landing-design.section-landing-banner .pb-block-type-button a.button {
	color: #fff;
}
.landing-design.section-landing-banner .pb-block-type-button a.button i {
	color: var(--colour-secondary);
	transition: all 0.2s ease;
}
.landing-design.section-landing-banner .pb-block-type-button a.button:hover i {
	color: #fff;
}
.landing-design.section-landing-banner .pb-block-type-text h1::after {
	content: "";
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: -70px;
	height: 80px;
	pointer-events: none;
	background-image: url("/template/profile/c9phLISwdeRLl67RaKAE0VSb/images/graphics/scribble-underline.svg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

/** Section Horizontal List **/
.section-horizontal-list {
	display: flex;
	align-items: flex-start;
	min-height: calc(100vh + 70px);
	position: relative;
	overflow: hidden;
}
/*.section-horizontal-list::before {
	content: "";
	position: absolute;
	left: 0;
	top: 30px;
	bottom: 0;
	z-index: 3;
	pointer-events: none;
	width: var(--frame-pad);
	background: linear-gradient(to right, var(--colour-secondary) 5%, transparent);
}*/
.section-horizontal-list .pb-container {
	padding-left: var(--frame-pad) !important;
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	top: 0px;
	left: 0px;
	min-height: 100vh;
	padding-top: 150px !important;
	padding-bottom: 150px !important;
	/*transition: transform 0.15s var(--transition-alt);*/
}


.section-horizontal-list.fixed .pb-container {
	position: fixed;
}
.section-horizontal-list .pb-container .row {
	margin-left: 0;
	margin-right: 0;
}
.section-horizontal-list .pb-container .pb-row-column-1:not(:only-child):first-child {
	min-width: 770px;
	padding-right: 100px;
}
.section-horizontal-list .pb-container .pb-row-column-1:not(:only-child):first-child h2 {
	margin-bottom: 30px;
}
.section-horizontal-list .pb-container .pb-row-column-1:not(:only-child):first-child .button-wrapper {
	margin-top: 60px;
}
.section-horizontal-list .pb-container .pb-row-column-1 .svg-logo + .pb-block-type-text {
	margin-top: 40px;
}
.section-horizontal-list .pb-container .pb-row-column-1 .svg-logo svg {
	max-width: 350px;
}
.section-horizontal-list .pb-container .pb-row-column-1:not(:only-child):first-child .ease-in.animate-up,
.section-horizontal-list .pb-container .pb-row-column-1:not(:only-child):first-child .ease-in.animate-down {
	animation-delay: 0ms;
}

.horizontal-slider {
	flex-wrap: nowrap;
}
.horizontal-slider .pb-column {
	padding-left: 30px;
	min-width: 500px;
	width: 33vw;
}
.horizontal-slider .pb-column .pb-block-type-image {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: calc(250px + 15vw);
	/*aspect-ratio: 1.1/1;*/
	background-color: #040228;
	z-index: 1;
}
.horizontal-slider .pb-column .pb-block-type-image img {
	object-fit: cover;
    font-family: "object-fit: cover";
    left: 50%;
    vertical-align: middle;
    max-height: 101%;
    max-width: none;
    min-height: 101%;
    min-width: 101%;
    position: absolute;
    top: 50%;
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
	transition: all 0.3s ease-in-out 0s;
    width: 101%;
    z-index: 1;
	opacity: 0.9;
}
.horizontal-slider .pb-column:hover .pb-block-type-image img {
	opacity: 1;
}

@media screen and (max-height:900px) {
	.horizontal-slider .pb-column .pb-block-type-image {
		height: calc(100vh - 450px) !important;
	}
}
@media screen and (max-width: 767px) {
	.horizontal-slider .pb-column .pb-block-type-image {
		height: calc(180px + 20vw) !important;
	}
}

.horizontal-slider .pb-column .pb-block-type-text {
	padding: 0 30px;
	position: relative;
	z-index: 2;
}
.horizontal-slider .pb-column .pb-block-type-text h3 {
	font-size: 50px;
	line-height: 55px;
	margin: -20px 0 10px;
}
.horizontal-slider .pb-column .pb-block-type-text p {
	margin-bottom: 0;
}
.horizontal-slider .pb-column .pb-block-type-text p a,
.horizontal-slider .pb-column .pb-block-type-text h3 a {
	color: var(--colour-white);
}
.horizontal-slider .pb-column .pb-block-type-text p a:not([class]){
	color: inherit;
}
.horizontal-slider .ease-in.animate-up,
.horizontal-slider .ease-in.animate-down {
	animation-delay: 400ms;
}
.horizontal-slider .pb-block-type-image.ease-in.animate-up,
.horizontal-slider .pb-block-type-image.ease-in.animate-down {
	animation-delay: 200ms;
}
.horizontal-slider .pb-block-type-text.ease-in.animate-up,
.horizontal-slider .pb-block-type-text.ease-in.animate-down {
	animation-delay: 400ms;
}

/*Small Slider Content*/
.ls-small-content.section-horizontal-list .pb-container .pb-row-column-1:not(:only-child):first-child {
	min-width: 700px;
}

.hs-small-content.horizontal-slider .pb-column .pb-block-type-image img {
	opacity: 1;
}
.hs-small-content.horizontal-slider .pb-column {
	position: relative;
	transition: all 0.5s cubic-bezier(0, 0, 0.1, 0.9);
}
.hs-small-content.horizontal-slider .pb-column:hover {
	/*transform: translateY(-8px);*/
	transform: scale(1.04);
	transition: all 0.4s cubic-bezier(0.23, 1.78, 0.04, 1.05);
}
.hs-small-content.horizontal-slider .pb-column::before {
	content: "";
	position: absolute;
	top: 0;
	left: 30px;
	right: 0;
	bottom: 0;
	background-color: #fff;
	box-shadow: 0 20px 40px -20px rgba(0,0,0,0);
	transition: all 0.3s cubic-bezier(0,0,0.1,0.9);
}
.hs-small-content.horizontal-slider .pb-column:hover::before {
	box-shadow: 0 25px 50px -10px rgba(0,0,0,0.2);
}

.hs-small-content.horizontal-slider .pb-column .pb-block-type-image {
	height: calc(200px + 10vw);
}
.hs-small-content.horizontal-slider .pb-column .pb-block {
	padding: 0 30px 0;
}
.hs-small-content.horizontal-slider .pb-column .pb-block:nth-child(2) {
	padding-top: 30px;
}
.hs-small-content.horizontal-slider .pb-column .pb-block:last-child {
	padding-bottom: 30px;
}
.hs-small-content.horizontal-slider .pb-column .pb-block-type-text h3,
.content-slider.section-overlap-banner .pb-block-type-slider .slider-wrapper .slide-cell h3 {
	font-size: 28px;
	line-height: 1;
	margin: 0 0 20px;
	color: var(--colour-heading);
}
.hs-small-content.horizontal-slider .pb-column .pb-block-type-text h5,
.content-slider.section-overlap-banner .pb-block-type-slider .slider-wrapper .slide-cell h5 {
	font-size: 18px;
	font-weight: 400;
	margin: 0;
	color: var(--colour-tertiary);
}
.hs-small-content.horizontal-slider .pb-column .pb-block-type-text p,
.content-slider.section-overlap-banner .pb-block-type-slider .slider-wrapper .slide-cell p {
	font-size: 14px;
}
.hs-small-content.horizontal-slider .pb-column .pb-block-type-button .button-wrapper {
	margin: 15px -25px 0;
}
.hs-small-content.horizontal-slider .pb-column .pb-block-type-button .button-wrapper a.button,
.content-slider.section-overlap-banner .pb-block-type-slider .slider-wrapper .slide-cell a.button {
	padding: 10px 25px 11px;
	color: var(--colour-heading);
}
.hs-small-content.horizontal-slider .pb-column .pb-block-type-button .button-wrapper a.button::before,
.content-slider.section-overlap-banner .pb-block-type-slider .slider-wrapper .slide-cell a.button::before {
	display: none;
}
.hs-small-content.horizontal-slider .pb-column .pb-block-type-button .button-wrapper a.button::after,
.content-slider.section-overlap-banner .pb-block-type-slider .slider-wrapper .slide-cell a.button::after {
	background-color: var(--colour-tertiary);
}
.hs-small-content.horizontal-slider .pb-column .pb-block-type-button .button-wrapper a.button:hover,
.content-slider.section-overlap-banner .pb-block-type-slider .slider-wrapper .slide-cell a.button:hover {
	color: var(--colour-tertiary);
}

.content-slider.section-overlap-banner .pb-block-type-slider .slider-wrapper .slide-cell a.button {
	padding-left: 0;
	padding-right: 0;
}
.content-slider.section-overlap-banner .pb-block-type-slider .slider-wrapper .slide-cell a.button::before {
	display: block;
	top: auto;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	transform: none;
	background-color: var(--colour-light);
}

/*Team Slider*/
.hs-full.horizontal-slider .pb-column.col-sm-12 {
	padding-left: 0;
	display: flex;
	width: auto;
	min-width: unset;
}
.hs-full.horizontal-slider .pb-column.col-sm-12 > .pb-block {
	width: 33vw;
	max-width: 800px;
	min-width: 500px;
	padding-right: 0;
}
.hs-full.horizontal-slider .pb-column.col-sm-12 > .pb-block .pb-block-content {
	position: relative;
}

/*.hs-full.horizontal-slider .pb-column.col-sm-12 > .pb-block.hs-title {
	min-width: 20vw;
	padding: 30px;
	position: relative;
	z-index: 2;
}*/
.hs-full.horizontal-slider .pb-column.col-sm-12 > .pb-block.hs-title {
	position: relative;
}
.hs-full.horizontal-slider .pb-column.col-sm-12 > .pb-block.hs-title h2 {
	position: absolute;
	bottom: calc(100% + 5px);
	/*font-size: 50px;
	font-weight: 300;*/
	font-family: var(--font-body);
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 1px;
	top: -40px;
	left: 20px;
	margin: 0;
	line-height: 1.4;
}
.hs-full.horizontal-slider .pb-column.col-sm-12 > .pb-block.hs-title:not(:first-child) {
	margin-left: 80px;
}

/*.hs-full.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text figure {
	position: relative;
	overflow: hidden;
}*/
.hs-full.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text img {
	height: calc(250px + 15vw);
	object-position: top center;
	object-fit: cover;
	width: 100%;
	vertical-align: top;
}
.hs-full.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text img:not(:first-child) {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transform: scale(0.97);
	pointer-events: none;
	filter: grayscale(0);
	transition: all 0.6s var(--transition) 0.4s;
}
.hs-full.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text figure:hover img:not(:first-child) {
	opacity: 1;
	transform: none;
	transition: all 0.5s var(--transition);
}
.hs-full:not(.hs-team).horizontal-slider .pb-column.col-sm-12 .pb-block-type-text h1,
.hs-full:not(.hs-team).horizontal-slider .pb-column.col-sm-12 .pb-block-type-text h2,
.hs-full:not(.hs-team).horizontal-slider .pb-column.col-sm-12 .pb-block-type-text h3,
.hs-full:not(.hs-team).horizontal-slider .pb-column.col-sm-12 .pb-block-type-text h4,
.hs-full:not(.hs-team).horizontal-slider .pb-column.col-sm-12 .pb-block-type-text h5,
.hs-full:not(.hs-team).horizontal-slider .pb-column.col-sm-12 .pb-block-type-text ul,
.hs-full:not(.hs-team).horizontal-slider .pb-column.col-sm-12 .pb-block-type-text ol,
.hs-full:not(.hs-team).horizontal-slider .pb-column.col-sm-12 .pb-block-type-text p {
	padding: 0 30px;
}

.hs-team.hs-full.horizontal-slider .pb-column.col-sm-12 > .pb-block {
	width: 33vw;
	padding-left: 0px;
	padding-right: 40px;
	max-width: 500px;
	min-width: 400px;
}
.hs-team.hs-full.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text figure {
	transition: all 0.5s var(--transition);
}
.hs-team.hs-full.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text figure:hover {
	transform: scale(1.03);
}
.hs-team.hs-full.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text img {
	height: calc(100vh - (150px * 2) - 20px);
	object-position: top center;
	object-fit: cover;
	width: 100%;
	vertical-align: top;
}
.hs-team.hs-full.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text img:not(:first-child) {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transform: scale(0.97);
	pointer-events: none;
	filter: grayscale(0);
	transition: all 0.6s var(--transition) 0.4s;
}
.hs-team.hs-full.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text figure:hover img:not(:first-child) {
	opacity: 1;
	transform: none;
	transition: all 0.5s var(--transition);
}

.hs-team.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text .text {
	position: relative;
	max-width: calc(100% - 40px);
	left: 20px;
	top: -50px;
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
}
.hs-team.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text h3 {
	/*position: relative;
	left: 20px;
	top: -10px;
	display: inline;*/
	position: relative;
	left: 10px;
	margin: 0;
	padding: 10px 10px;
	display: inline-block;
	font-size: 38px;
	line-height: 42px;
	background-color: var(--colour-secondary);
	animation-delay: 0.1s;
}
.hs-team.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text h4 {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
	padding: 5px 10px;
	background-color: #fff;
	color: var(--colour-dark);
	display: table;
	/*position: relative;
	left: 20px;*/
	margin: 0;
	animation-delay: 0s;
}
.hs-team.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text.hs-1 h3 {
	background-color: var(--colour-primary);
}
.hs-team.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text.hs-3 h3 {
	background-color: var(--colour-tertiary);
}

/* Section CTA */
.section-cta2 h2 {
	color:var(--colour-dark);
}

/*Section Brands*/
.section-brands {
	text-align: center;
}

.section-brands .pb-block-type-text h5 {
	max-width: 500px;
	display: table;
	margin: 0 auto;
	width: 100%;
}

.section-brands .logo-list {
	padding-top: 60px;
	padding-bottom: 60px;
}
.section-brands .logo-list .col-sm-12 {
	/*min-height: calc(200px + 15vw);*/
	display: flex;
	flex-wrap: wrap;
}
.section-brands .logo-list .col-sm-12 > .pb-block {
	width: calc(20% - 2px);
	flex: calc(20% - 2px) 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.25s var(--transition);
	padding: 30px 15px;
	margin: 1px;
}
.section-brands .logo-list .col-sm-12 > .pb-block:hover {
	background-color: #f3f3f3;
}
.section-brands .logo-list .col-sm-12 > .pb-block img {
	max-width: 220px;
	max-height: 120px;
	filter: grayscale(1) brightness(0.9);
}
.section-brands .logo-list .col-sm-12 > .pb-block:hover img,
.section-brands .logo-list .col-sm-12 > .pb-block img:hover {
	filter: grayscale(0) brightness(1);
	transform: scale(1.05);
	transition: all 0.4s cubic-bezier(0.23, 1.78, 0.04, 1.05);
}

/*Section Background Tab*/
.pb-section.section-background-tab {
	padding-top: 200px;
	padding-bottom: 240px;
	min-height: 85vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.section-background-tab::after {
	transform: scale(1,-1);
	bottom: 0;
}
.section-background-tab:nth-child(2n)::after {
	transform: scale(-1,-1);
	bottom: 0;
}
.section-background-tab .pb-container {
	padding-top: 0 !important;
}

.section-background-tab .pb-row .col-sm-4-8 {
	width: 45%;
	flex: 45% 1 1;
	max-width: unset;
}
.section-background-tab .pb-row .col-sm-7-2 {
	width: 55%;
	flex: 55% 1 1;
	max-width: unset;
}
.section-background-tab .pb-row .col-sm-7-2 .pb-block-type-code,
.section-background-tab .pb-row .col-sm-7-2 .pb-block-type-slider,
.section-background-tab .pb-row .col-sm-7-2 .pb-block-type-text {
	padding: var(--frame-ex);
	position: relative;
}
.section-background-tab.stack2 .pb-row .col-sm-7-2 .pb-block:first-child {
	padding-bottom: 1px; /* >=1 stops glitching out */
}
.section-background-tab .pb-row .col-sm-7-2 .pb-block-type-code::before,
.section-background-tab .pb-row .col-sm-7-2 .pb-block-type-slider::before,
.section-background-tab .pb-row .col-sm-7-2 .pb-block-type-text::before {
	content: "";
	position: absolute;
	background-color: var(--colour-secondary);
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
}
.section-background-tab .pb-row .col-sm-7-2 .pb-block-type-code.ease-left.animate-left,
.section-background-tab .pb-row .col-sm-7-2 .pb-block-type-slider.ease-left.animate-left,
.section-background-tab .pb-row .col-sm-7-2 .pb-block-type-text.ease-left.animate-left {
	animation: none;
	opacity: 1;
}
.section-background-tab .pb-row .col-sm-7-2 .pb-block-type-text.ease-left.animate-left::before {
	animation: wipeLeft 1.5s forwards 0ms cubic-bezier(0.31, 0.87, 0.32, 1);
	transform-origin: center right;
	transform: scale(0,1);
}
@keyframes wipeLeft {
	0%   {transform: scale(0,1);}
	100% {transform: scale(1,1);}
}

.section-background-tab .pb-row .col-sm-7-2 .pb-block-type-text .ease-in.animate-up,
.section-background-tab .pb-row .col-sm-7-2 .pb-block-type-text .ease-in.animate-down {
	animation-delay: 400ms;
}
.section-background-tab .pb-row .col-sm-7-2 .pb-block-type-button.ease-in {
	opacity: 1;
	animation: none;
}
.section-background-tab .pb-row .col-sm-7-2 .pb-block-type-button.ease-in.animate-up .pb-block-content,
.section-background-tab .pb-row .col-sm-7-2 .pb-block-type-button.ease-in.animate-down .pb-block-content {
	animation: clipLeft 1s forwards 800ms cubic-bezier(0.31, 0.87, 0.32, 1);
	clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
	-webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
	padding: 0 5px;
	display: table;
}
@keyframes clipLeft {
	0%   {clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);-webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);}
	100% {clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);}
}

.section-background-tab .pb-row .col-sm-7-2 .pb-block-type-button:last-child {
	padding: 0 calc(var(--frame-ex) - 5px) 0;
	/*padding-top: calc(var(--frame-ex) - 10px);*/
	margin-top: -28px;
}

.section-background-tab .pb-block-type-text h2 {
	color: #fff;
}
.section-background-tab .pb-block-type-text p {
	color: #fff;
}
.section-background-tab .pb-block-type-button .button-wrapper {
	display: flex;

}

/**--- Section Inset ---**/
.section-background-inset .pb-container {
	position: relative;
}
.section-background-inset .pb-container::after {
	content: "";
	animation: divider-anim 13s linear infinite;
	background-position: top left 0px;
	background-repeat: repeat-x;
	background-size: 2000px auto;
	position: absolute;
	height: 35px;
	top: -1px;
	left: 0;
	right: 0;
	z-index: 2;
	background-image: url(images/dividers/divider-white.svg);
}
.section-background-inset.section-colour-turqiose .pb-container::after {
	background-image: url(images/dividers/divider-tertiary.svg);
}
.section-background-inset.section-colour-dark .pb-container::after {
	background-image: url(images/dividers/divider-dark.svg);
}
.section-background-inset.section-colour-deep-blue .pb-container::after {
	background-image: url(images/dividers/divider-secondary.svg);
}

.section-background-inset .pb-row-column-1:first-child .pb-column {
	position: static;
}
.section-background-inset .pb-row-column-1:first-child .pb-block-type-image img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: calc(100% - 55px);
	object-fit: cover;
	object-position: center;
}

.section-background-inset .pb-row-column-2 {
	padding: var(--pad-huge) var(--pad-big) 0;
	margin: 0;
}
.section-background-inset .col-sm-6:empty {
	display: none;
}
.section-background-inset .col-sm-6:not(:empty) {
	flex: 100% 1 1;
	width: 100%;
	max-width: 600px;
	background-color: #fff;
	padding: var(--pad-mid);
	box-shadow: 0 20px 35px -15px rgba(0,0,0,0.2);
	position: relative;
	z-index: 3;
}
.section-background-inset .col-sm-6:not(:empty):last-child {
	margin: 0 0 0 auto;
}
.section-background-inset .col-sm-6:not(:empty) .pb-block-type-text p:last-child {
	margin: 0;
}
.section-background-inset .col-sm-6:not(:empty) .pb-block-type-text blockquote {
	font-size: 24px;
	letter-spacing: -0.02em;
	font-family: var(--font-heading);
	line-height: 1.6em;
	margin-bottom: 30px;
}
.section-background-inset .col-sm-6:not(:empty) .pb-block-type-text h3 em {
	font-size: 60px;
}
.section-background-inset.section-colour-deep-blue h4 {
	color: var(--colour-dark);
}
.section-background-inset.section-colour-deep-blue .block-list ul:not([class]) li strong,
.section-background-inset.section-colour-deep-blue .block-list ul:not([class]) li b,
.section-background-inset.section-colour-deep-blue ul.block-list li strong,
.section-background-inset.section-colour-deep-blue ul.block-list li b {
	color: var(--colour-secondary);
}
.section-background-inset.section-colour-deep-blue .block-list ul:not([class]) li span,
.section-background-inset.section-colour-deep-blue .block-list ul:not([class]) li em,
.section-background-inset.section-colour-deep-blue ul.block-list li span,
.section-background-inset.section-colour-deep-blue ul.block-list li em {
	color: var(--colour-secondary);
}

.inset-overlay.section-background-inset .pb-block-type-image .pb-block-content::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: calc(100% - 55px);
	background-color: var(--colour-secondary);
	background: linear-gradient(to right, rgba(29, 161, 222, 0.5), var(--colour-secondary));
	opacity: 0.85;
}

/*Inset Alternate*/
.inset-alt.section-background-inset .pb-container::after {
	top: auto;
	bottom: 0;
	transform: scale(1,-1);
}
.inset-alt.section-background-inset.section-colour-deep-blue .pb-container::after {
	background-image: url(images/dividers/divider-secondary.svg);
}
.inset-alt.section-background-inset .pb-row-column-2 {
  	padding: 0 var(--pad-big) calc(var(--pad-big) + 35px);
  	margin: 0;
}
.inset-alt.section-background-inset .pb-row-column-1:first-child .pb-block-type-image img {
	top: auto;
	bottom: 0;
}
.inset-alt.section-background-inset .pb-row-column-1:first-child .pb-block-type-image::before {
	content: "";
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	top: 55px;
	bottom: 0;
	opacity: 0.85;
	background-color: var(--colour-tertiary);
}
.inset-alt.ia-blue.section-background-inset .pb-row-column-1:first-child .pb-block-type-image::before {
	background-color: var(--colour-primary);
}
.inset-alt.ia-violet.section-background-inset .pb-row-column-1:first-child .pb-block-type-image::before {
	background-color: var(--colour-secondary);
}
.inset-alt.ia-light.section-background-inset .pb-row-column-1:first-child .pb-block-type-image::before {
	background-color: var(--colour-white);
}

.inset-alt.section-background-inset .row {
	align-items: center;
}
.inset-alt.section-background-inset .col-sm-6:not(:empty) {
	flex: 50% 1 1;
	width: 50%;
	max-width: 50%;
	background-color: var(--colour-dark);
	box-shadow: none;
}
.inset-alt.section-background-inset .col-sm-6:not(:empty):first-child {
	min-height: calc(200px + 15vw);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.inset-alt.section-background-inset .col-sm-6:not(:empty):last-child {
	background: transparent;
	padding: calc(var(--pad-big) + 55px) 0 0 var(--pad-big);
}

.inset-alt.section-background-inset:not(.section-colour-dark) .col-sm-6:not(:empty) h1,
.inset-alt.section-background-inset:not(.section-colour-dark) .col-sm-6:not(:empty) h2,
.inset-alt.section-background-inset:not(.section-colour-dark) .col-sm-6:not(:empty) h3,
.inset-alt.section-background-inset:not(.section-colour-dark) .col-sm-6:not(:empty) h4,
.inset-alt.section-background-inset:not(.section-colour-dark) .col-sm-6:not(:empty) h5 {
	color: #fff;
}
.inset-alt.section-background-inset .col-sm-6:not(:empty) h3.h2 {
	color: #fff;
	line-height: 1;
	margin-bottom: 35px;
}
.inset-alt.section-background-inset .col-sm-6:not(:empty) a.button.btn-clear {
	color: #fff;
}
.inset-alt.section-background-inset .col-sm-6:not(:empty) a.button.btn-clear::after {
	background-color: #fff;
}

.inset-alt.section-background-inset .pb-block-type-form h2 {
	display: none;
}
.inset-alt.section-background-inset:not(.section-colour-dark) .pb-block-type-form .form-block .field label {
	color: #fff;
}
.inset-alt.section-background-inset:not(.section-colour-dark) .pb-block-type-form .form-block .field input,
.inset-alt.section-background-inset:not(.section-colour-dark) .pb-block-type-form .form-block .field select,
.inset-alt.section-background-inset:not(.section-colour-dark) .pb-block-type-form .form-block .field textarea {
	color: #fff;
}
.inset-alt.section-background-inset:not(.section-colour-dark) .pb-block-type-form .form-block .field input:hover,
.inset-alt.section-background-inset:not(.section-colour-dark) .pb-block-type-form .form-block .field input:focus,
.inset-alt.section-background-inset:not(.section-colour-dark) .pb-block-type-form .form-block .field select:hover,
.inset-alt.section-background-inset:not(.section-colour-dark) .pb-block-type-form .form-block .field select:focus,
.inset-alt.section-background-inset:not(.section-colour-dark) .pb-block-type-form .form-block .field textarea:hover,
.inset-alt.section-background-inset:not(.section-colour-dark) .pb-block-type-form .form-block .field textarea:focus {
	color: var(--colour-tertiary);
}
.inset-alt.section-background-inset:not(.section-colour-dark) .pb-block-type-form .form-block .field input:focus,
.inset-alt.section-background-inset:not(.section-colour-dark) .pb-block-type-form .form-block .field select:focus,
.inset-alt.section-background-inset:not(.section-colour-dark) .pb-block-type-form .form-block .field textarea:focus {
	border-color: var(--colour-tertiary);
	box-shadow: 0 1px 0 var(--colour-tertiary);
}

/*inset alt flip*/
.ia-right.inset-alt.section-background-inset .col-sm-6:not(:empty):first-child {
	min-height: unset;
	display: block;
	background: transparent;
	padding: calc(var(--pad-big) + 55px) var(--pad-big) 0 0;
}
.ia-right.inset-alt.section-background-inset .col-sm-6:not(:empty):last-child {
	min-height: calc(200px + 15vw);
	padding: var(--pad-mid);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background-color: #fff;
}
.ia-right.inset-alt.section-background-inset:not(.section-colour-dark) .col-sm-6:not(:empty):last-child {
	background-color: var(--colour-dark);
}
.inset-alt.ia-right.section-background-inset.section-colour-dark .col-sm-6:not(:empty):last-child h1,
.inset-alt.ia-right.section-background-inset.section-colour-dark .col-sm-6:not(:empty):last-child h2,
.inset-alt.ia-right.section-background-inset.section-colour-dark .col-sm-6:not(:empty):last-child h3,
.inset-alt.ia-right.section-background-inset.section-colour-dark .col-sm-6:not(:empty):last-child h4,
.inset-alt.ia-right.section-background-inset.section-colour-dark .col-sm-6:not(:empty):last-child h5 {
	color: var(--colour-heading);
}

/*inset review*/
.inset-review .pb-block-content > p {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	font-family: var(--font-heading);
	font-style: italic;
}
.inset-review .author {
	margin-top: 35px;
}
.inset-review .author h5 {
	display: flex;
	flex-direction: column;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
}
.inset-review .author h5 strong {
	font-size: 18px;
	font-weight: 600;
}
.inset-review .author h5 .fa-star {
	margin-top: 6px;
}
.inset-review .author h5 .fa-star::before {
	content:"\f005 \f005 \f005 \f005 \f005";
}

/* Team Block */
.team-block {
	overflow: hidden;
}
.team-block h2 {
	margin-bottom: 40px;
}
.team-block .pb-block-content:has(p) .pb-block-content h2 {
	margin-bottom: 10px !important;
}

.team-list .tns-outer .tns-controls {
	right: 15px;
}
.team-list .pb-block-type-slider .tns-ovh {
  overflow: visible;
}
.team-list .pb-block-type-slider .slider .slide {
  	/*height: calc(300px + 15vw);*/
  	position: relative;
  	overflow: hidden;
  	opacity: 0.3;
	padding-right: 15px;
  	transition: 0.5s ease;
	filter: grayscale(1);
}
.team-list .pb-block-type-slider .slider .slide img {
  	vertical-align: top;
}
.team-list .pb-block-type-slider .slider .slide.tns-slide-active {
	filter: grayscale(0);
  	opacity: 1;
	background-size: contain; /* for content slider where image becomes bg-image */
}
.team-list .pb-block-type-slider .slider .slide-overlay{
	position: absolute;
	z-index: 9999999;
	bottom: 0;
	width: 100%;
}
.team-list .pb-block-type-slider .slider h4{
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
	padding: 5px 10px;
	background-color: #fff;
	color: var(--colour-dark);
	display: table;
	margin: 0;
	animation-delay: 0s;
}
.team-list .pb-block-type-slider .slider h3{
	color: #fff;
	position: relative;
	left: 20px;
	margin: 0;
	padding: 10px 10px;
	display: inline-block;
	font-size: 38px;
	line-height: 42px;
	background-color: var(--colour-secondary);
	animation-delay: 0.1s;
}
.team-list.hs-2 .pb-block-type-slider .slider h3{
	background-color: var(--colour-primary);
}
.team-list.hs-3 .pb-block-type-slider .slider h3{
	background-color: var(--colour-tertiary);
}
.team-list .pb-block-type-slider .slider .text{
	position: relative;
	max-width: calc(100% - 40px);
	left: 40px;
	top: -50px;
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
}
.team-list .slider-wrapper .slide-cell{
	padding: 0;
}
.team-list .slider-wrapper .slide-inner{
	text-align: left;
}
.team-list .pb-block-type-slider .slider .slide.tns-slide-active + .slide:not(.tns-slide-active) {
  	opacity: 0.4;
}

/*Section Vertical Overset*/
.section-vertover .pb-container {
	padding-top: 0 !important;
}
.section-vertover .pb-row .col-sm-4-8 {
	width: 45%;
	flex: 45% 1 1;
	max-width: unset;
	padding-left: var(--frame-ex);
	padding-right: calc(var(--frame-ex) / 2);
}
.section-vertover .pb-row .col-sm-7-2 {
	width: 55%;
	flex: 55% 1 1;
	max-width: unset;
	padding-left: calc(var(--frame-ex) / 2);
	padding-right: calc(var(--frame-ex) / 2);
}
.section-vertover .pb-row-column-1 .col-sm-12 .pb-block-type-form,
.section-vertover .pb-row .col-sm-7-2 .pb-block-type-form {
	background: #fff;
	padding: 60px;
	z-index: 3;
	position: relative;
	box-shadow: 0 5px 30px rgba(0,0,0,0.15);
	margin-top: -80px;
	margin-bottom: -60px;
}
.vo-top.section-vertover .pb-row .col-sm-7-2 .pb-block-type-form {
	margin-top: 0px;
}

.section-vertover .pb-row-column-1 .col-sm-12 .pb-block-type-form {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.vo-top.section-vertover .pb-row-column-1 .col-sm-12 .pb-block-type-form {
	margin-top: 80px;
}

.section-vertover .pb-block-type-form h2 {
	font-size: 45px;
	margin: 0 0 5px;
	color: var(--colour-dark);
}
.section-vertover .pb-block-type-form p {
	color: var(--colour-dark);
}
.section-vertover .pb-block-type-form .form-block {
	margin-top: 20px;
}
.section-vertover .pb-block-type-form .form-block .field.submit {
	padding-bottom: 0;
}
.section-cta .pb-block-type-form .form-block .field.submit button,
.section-vertover .pb-block-type-form .form-block .field.submit button {
	width: 100%;
	padding: 16px 25px 17px;
}
.section-cta .pb-block-type-form .form-block .field.submit button::before,
.section-vertover .pb-block-type-form .form-block .field.submit button::before {
	background: linear-gradient(to right, var(--colour-primary), var(--colour-tertiary) 50%, #6bdabc);
	transition: all 0.4s var(--transition);
	background-position: top left;
	background-size: 200% 100%;
	transform: none;
}
.section-cta .pb-block-type-form .form-block .field.submit button:hover::before,
.section-vertover .pb-block-type-form .form-block .field.submit button:hover::before {
	background-position: top right;
}
.section-cta .pb-block-type-form .form-block .field.submit button::after,
.section-vertover .pb-block-type-form .form-block .field.submit button::after {
	background: var(--colour-primary);
	bottom: -4px;
	right: -4px;
	left: -4px;
}

/**--- Section Image Header ---**/
.section-image-banner {
	min-height: 65vh;
	display: flex;
	align-items: flex-end;
}
.section-image-banner:not(.no-overlay)::before {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
	background-color: rgba(23, 34, 51, 0.33);
}
.section-image-banner.section-colour-deep-blue::after,
.section-image-banner.section-colour-dark::after,
.section-image-banner.section-colour-light-blue::after,
.section-image-banner.section-colour-turqiose::after,
.section-image-banner.section-colour-white::after {
	transform: scale(1,-1);
	bottom: 0;
}

/*.section-image-banner + .pb-section .pb-container {
	padding-top: 0;
}*/

.section-image-banner .pb-block-type-text {
	max-width: 900px;
	/*text-align: center;
	margin: 0 auto;*/
	color: #fff;
}
.section-image-banner .pb-block-type-text h1,
.section-image-banner .pb-block-type-text h2,
.section-image-banner .pb-block-type-text h3,
.section-image-banner .pb-block-type-text h4,
.section-image-banner .pb-block-type-text h5 {
	color: #fff;
}
.section-image-banner .pb-block-type-text h4,
.section-image-banner .pb-block-type-text .h4,
.section-overlap-banner .pb-block-type-text h4,
.section-overlap-banner .pb-block-type-text .h4 {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.4;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}
.section-image-banner .pb-block-type-text h4:first-child,
.section-image-banner .pb-block-type-text .h4:first-child,
.section-overlap-banner .pb-block-type-text h4:first-child,
.section-overlap-banner .pb-block-type-text .h4:first-child {
	margin-bottom: 8px;
}

.section-image-banner.no-overlay .pb-block-type-text h1,
.section-image-banner.no-overlay .pb-block-type-text h2,
.section-image-banner.no-overlay .pb-block-type-text h3,
.section-image-banner.no-overlay .pb-block-type-text h4,
.section-image-banner.no-overlay .pb-block-type-text h5 {
	color:white;
}

/*Tall Banner*/
.tall-banner.section-image-banner {
	min-height: 80vh;
}

/*Capsules*/
.banner-capsules .pb-block-content {
	display: flex;
	margin-bottom: 20px;
}
.banner-capsules .pb-block-content h4 {
	padding: 6px 16px;
	border-radius: 30px;
	border: 1px solid rgba(0,0,0,0.1);
	font-size: 13px;
	font-weight: 400;
	margin-right: 6px;
	margin-bottom: 0 !important;
}
.banner-capsules .pb-block-content h4.blue {
	border-color: var(--colour-primary);
}
.banner-capsules .pb-block-content h4.deep-blue {
	border-color: var(--colour-secondary);
}
.banner-capsules .pb-block-content h4.teal {
	border-color: var(--colour-tertiary);
}

/*Banner Video*/
.video-header {
	position: relative;
	z-index: 1;
}
.video-header .pb-column {
	position: unset;
}
.banner-video {
	position: absolute;
	max-width: unset !important;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}
.banner-video video{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

/*Section Fit Content*/
.section-match-content .row {
	position: relative;
	align-items: stretch !important;
	padding-bottom: var(--pad-huge);
}
.section-match-content .row::after {
	content: "";
	position: absolute;
	left: calc(var(--frame-ex) / 2);
	right: calc(var(--frame-ex) / 2);
	bottom: calc(var(--pad-huge) / 2);
	border-bottom: 2px solid rgba(0,0,0,0.2);
}
.section-colour-dark.section-match-content .row::after {
	border-color: rgba(255,255,255,0.2);
}
.section-match-content .row:last-child {
	padding-bottom: 0;
}
.section-match-content .row:last-child::after {
	display: none;
}
.section-match-content .pb-column .pb-block-type-image,
.section-match-content .pb-column .pb-block-type-image .pb-block-content,
.section-match-content .pb-column .pb-block-type-image .pb-block-content img {
	height: 100%;
}
.section-match-content .pb-column .pb-block-type-image .pb-block-content img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: top left;
}
.section-match-content .pb-column .pb-block-type-text hr {
	margin: calc(var(--pad-huge) / 2) 0;
	border-bottom: 2px solid rgba(0,0,0,0.2);
}
.section-colour-dark.section-match-content .pb-column .pb-block-type-text hr {
	border-color: rgba(255,255,255,0.2);
}

.section-match-content .row:only-child .pb-block-type-text {
	padding-top: var(--pad-big);
	padding-bottom: var(--pad-big);
}
.section-match-content .row:only-child .pb-column:first-child {
	padding-right: var(--frame-ex);
}
.section-match-content .row:only-child .pb-column:last-child{
	padding-left: var(--frame-ex);
}

.match-overlap.section-match-content .row:only-child .pb-column:first-child {
	padding-right: 0;
}
.match-overlap.section-match-content .row:only-child .pb-column:last-child{
	padding-left: 0;
}
.section-match-content .row:only-child .pb-column:first-child .pb-block-type-text {
	width: auto;
	min-width: 100%;
	margin-right: -30px;
}
.section-match-content .row:only-child .pb-column:last-child .pb-block-type-text {
	width: auto;
	min-width: 100%;
	margin-left: -30px;
}

/*Section basic content*/
.section-basic-content .pb-row-column-2 .pb-column:first-child .pb-block-type-text {
	padding-right: calc(var(--frame-ex) / 2);
}
.section-basic-content .pb-row-column-2 .pb-column:last-child .pb-block-type-text {
	padding-left: calc(var(--frame-ex) / 2);
}
.section-basic-content .pb-row-column-2 .pb-column:first-child .pb-block-type-image {
	width: auto;
	min-width: 100%;
	margin-right: calc((var(--frame-ex) / 2) * -1);
}
.section-basic-content .pb-row-column-2 .pb-column:last-child .pb-block-type-image {
	width: auto;
	min-width: 100%;
	margin-left: calc((var(--frame-ex) / 2) * -1);
}

/*Patterns / Scribbles*/
.patterns {
	position: relative;
}
.patterns::before {
	content: "";
	position: absolute;
	top: calc(55% - 250px);
	right: calc(50% - 250px);
	height: 500px;
	width: 500px;
	opacity: 0.3;
	background-image: url("/template/profile/c9phLISwdeRLl67RaKAE0VSb/images/graphics/scribble-spline.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.patterns::after {
	position: absolute;
	top: 15%;
	left: 20%;
	height: 150px;
	width: 150px;
	border-radius: 100%;
	background-color: var(--colour-tertiary);
}
.patterns .pb-container {
	position: relative;
	z-index: 2;
}
.patterns .text-center {
	max-width: 750px;
	text-align: center;
	margin: 0 auto;
}

.scribble-bg.pb-block-type-image {
	position: relative;
	z-index: 1;
}
.scribble-bg.pb-block-type-image::before {
	content: "";
	position: absolute;
	top: -60px;
	left: -80px;
	right: 0;
	bottom: -60px;
	background-image: url("/template/profile/c9phLISwdeRLl67RaKAE0VSb/images/graphics/scribble-spline.png");
	background-repeat: no-repeat;
	background-position: center left;
	background-size: contain;
	/*mix-blend-mode: color;*/
	z-index: -1;
}

/*Stack Content*/
.stack-content {

}

.stickybox {
	position: sticky;
	top: var(--pad-big);
}
.stack-content .stickybox {
	top: calc(10vh + var(--pad-mid));
	/*min-height: calc(100vh - (var(--frame-pad) * 2));*/
}

/*Border Image*/
.border-image.pb-block-type-image {
	position: relative;
	z-index: 2;
}
.border-image.pb-block-type-image::after {
	content: '';
	z-index: 3;
	position: absolute;
	top: -20px;
	left: 20px;
	right: -20px;
	bottom: 20px;
	border: 2px solid var(--colour-tertiary);
}
.border-image.pb-block-type-image::before {
	content: '';
	z-index: -1;
	position: absolute;
	top: -10px;
	left: 10px;
	right: -10px;
	bottom: 10px;
	border: 2px solid #8908bf;
}

/*Overset Wrapper*/

/*Block List*/
ul.block-list {
	list-style: none;
	padding: 30px 0;
}
ul.block-list:last-child {
	padding-bottom: 0px;
}
.block-list ul:not([class]),
ul.block-list {
	margin: 0;
}
.block-list ul:not([class]) li,
ul.block-list li {
	position: relative;
	padding-left: 60px;
	font-weight: 400;
}
.block-list ul:not([class]) li:not(:last-child),
ul.block-list li:not(:last-child) {
	margin-bottom: 35px;
}
.block-list ul:not([class]) li::before,
ul.block-list li::before {
	display: none !important;
}
.block-list ul:not([class]) li strong,
.block-list ul:not([class]) li b,
ul.block-list li strong,
ul.block-list li b {
	display: block;
	margin-bottom: 5px;
	color: var(--colour-primary);

	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 600;
}
.block-list ul:not([class]) li span,
.block-list ul:not([class]) li em,
ul.block-list li span,
ul.block-list li em {
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	text-align: center;
	font-size: 30px;
	color: var(--colour-primary);
}

.section-colour-dark .block-list ul:not([class]) li,
.section-colour-dark ul.block-list li {
	color: #fff;
}
.section-colour-turqiose .block-list ul:not([class]) li strong,
.section-colour-turqiose .block-list ul:not([class]) li b,
.section-colour-turqiose ul.block-list li strong,
.section-colour-turqiose ul.block-list li b,
.section-colour-turqiose .block-list ul:not([class]) li span,
.section-colour-turqiose .block-list ul:not([class]) li em,
.section-colour-turqiose ul.block-list li span,
.section-colour-turqiose ul.block-list li em {
	color: var(--colour-secondary);
}

.block-list:not(ul) {
	padding: calc(var(--pad-small) + 15px) var(--pad-small);
	background-color: #c1ebff;
	background: linear-gradient(to top, #c1ebff 20%, #fac1ff 80%);
	background-attachment: fixed;
}
.block-list:not(ul) ul li,
.block-list:not(ul) ul li span,
.block-list:not(ul) ul li em {
	color: var(--colour-heading) !important;
}
.block-list.blue:not(ul) {
	background: var(--colour-primary);
}
.block-list.blue:not(ul) ul li strong{
	color: var(--colour-white) !important;
}
/*Check List*/
div.check-list {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.check-list ul:not([class]) li,
ul.check-list li {
	list-style: none;
	padding: 30px 0;
	padding-left: 50px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.3);
	text-align: left;
	color: var(--colour-white);
}
.check-list ul:not([class]) li:last-child,
ul.check-list li:last-child {
	border-bottom: none;
}
.check-list ul:not([class]) li::before,
ul.check-list li::before {
	content: "\f00c";
	font-family: var(--font-awesome);
	font-size: 26px;
	position: absolute;
	padding: 16px 0px;
	left: 0px;
	top: 10px;
	height: calc(100% - 20px);
	font-weight: 400;
}
.check-list ul:not([class]) li:not(:last-child),
ul.check-list li:not(:last-child) {
	margin-bottom: 0px;
}

/*Box List*/
.box-list ul:not([class]) li,
ul.box-list li {
	list-style: none;
	border-radius: 15px;
	background-color: #fff;
	overflow: hidden;
	padding: 25px;
	padding-left: 80px;
	text-align: left;
	color: var(--colour-heading);
}
.box-list ul:not([class]) li::before,
ul.box-list li::before {
	content: "\f00c";
	font-family: var(--font-awesome);
	font-size: 22px;
	position: absolute;
	padding: 10px 20px;
	left: 0px;
	top: 10px;
	display: flex;
	align-items: center;
	height: calc(100% - 20px);
	border-right: 1px solid rgba(0,0,0,0.1);
}
.box-list ul:not([class]) li:not(:last-child),
ul.box-list li:not(:last-child) {
	margin-bottom: 8px;
}

/*Benefit List*/
.benefit-list-wrapper .pb-container {
	display: flex;
	flex-direction: column;
	row-gap: 100px;
}
.benefit-list-wrapper .pb-row-column-2:has(.pb-block-type-image) {
	height: 100%;
	margin: 0;
}
.benefit-list {
	display: flex;
}
.benefit-list .pb-block-content {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
	width: 100%;
}
.benefit-list li p,
.benefit-list li h4 {
	color: var(--colour-white) !important;
}
/* .benefit-list li h4::before {
	content: "\f00c";
	font-family: var(--font-awesome);
	font-size: 22px;
	display: flex;
	align-items: center;
} */
.benefit-list li p {
	margin-bottom: 0px;
}
.benefit-list .pb-block-content ul li h3 {
  	margin-top: 0;
	color: var(--colour-white);
}
.benefit-list ul:not([class]) li,
ul.benefit-list li {
	list-style: none;
	overflow: hidden;
	padding: 40px;
	text-align: left;
	color: var(--colour-white);
	height: 100%;
	display: flex;
    align-content: flex-start;
    flex-direction: column;
}
.blue-bg.benefit-list ul:not([class]) li,
ul.benefit-list li {
	background-color: #5D78D7;
}
.turq-bg.benefit-list ul:not([class]) li,
ul.benefit-list li {
	background-color: #23B2A6;
}
.light-blue-bg.benefit-list ul:not([class]) li,
ul.benefit-list li {
	background-color: #41C0F3;
}
.white-bg.benefit-list ul:not([class]) li,
ul.benefit-list li {
	background-color: var(--colour-blue);
}

.benefit-list ul:not([class]) {
	display: flex;
	column-gap: 10px;
	margin: 0;
}
.benefit-list ul:not([class]) li::before,
ul.benefit-list li::before {
	display: none;
}
.benefit-list .pb-block-type-text ul:not([class]) {
	margin: 0
}
@media screen and (max-width:1200px) {
	.benefit-list ul:not([class]) {
		flex-direction: column;
		row-gap: 10px;
	}
	.benefit-list .pb-block-content {
		row-gap: 10px;
	}
	.benefit-list ul:not([class]) li,
	ul.benefit-list li {
    align-content: center;
}
}

/*Location Banner*/
.location-banner h5 {
	color: var(--colour-turqiose) !important;
	font-weight: 500;
}
.location-banner .h3 {
	font-size: 48px;
    line-height: 65px;
	margin-bottom: 30px;
}
.button-pad-0 {
	padding: 0 20px 20px 0px !important;
}
.button-pad-0::after {
	content: '';
	position: absolute;
	transition: transform 0.3s var(--transition);
	transform-origin: right center;
	transform: scale(0,1);
	bottom: 0;
	left: 25px;
	height: 0px;
	right: 25px;
	z-index: -1;
}

.img-grow .pb-block-content img {
	transition: transform 0.3s ease;
}
.img-grow .pb-block-content img:hover {
	transform: scale(1.04);
}

@media screen and (max-width:1200px) {
	.location-banner h3 {
		font-size: 40px;
		line-height: 50px;
	}
}
@media screen and (max-width:800px) {
	.location-banner h3 {
		font-size: 30px;
		line-height: 40px;
		margin-bottom: 20px;
	}
	.location-banner .pb-row {
		row-gap: 30px;
	}
}

/*Shopify Specific*/
.shopify-bg {
	position: relative;
	background-color: var(--colour-primary);
}
.shopify-bg::after {
	background-image: url(images/dividers/divider-white.svg);
	transform: scale(1,-1);
	bottom: 0;
}
.shopify-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0.15;
	background-image: url("/template/profile/c9phLISwdeRLl67RaKAE0VSb/images/icons/shopify.svg");
	background-position: top left -15%;
	background-size: 60% auto;
	background-repeat: no-repeat;
}
.shopify-bg .pb-block-type-text h3, .shopify-bg .pb-block-type-text p {
	color: #fff;
}
.shopify-bg .check-list ul:not([class]) li {
	color: #fff;
	border-color: rgba(255,255,255,0.3);
}
.shopify-bg .box-list ul:not([class]) {
	margin: 5px 0;
}
.shopify-bg .box-list ul:not([class]) li {
	background-color: var(--colour-secondary);
	color: #fff;
}

/* Landing Pages */
body.landing-page .top-menu.navigation ul {
	display: none;
}
body.landing-page .foot-coltable {
	align-items: center;
}
body.landing-page .navigation .head-contact {
    width: auto;
    text-wrap: nowrap;
}

/**---Fixed Image---**/
.section-fixed-image > .frame {
	width: 100%;
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.section-fixed-image > .frame .row {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.section-fixed-image .row .pb-column:first-child {
	padding: var(--frame-pad);
	padding-right: var(--frame-pad);
}
.section-fixed-image:not(.section-pad-0) .row .pb-column:first-child {
	padding-top: 0;
	padding-bottom: 0;
}
.section-fixed-image .row .pb-column:last-child {
	padding: 0;
}
.section-fixed-image .row .pb-column:last-child .pb-block-type-image {
	position: sticky;
	top: 0;
}
.section-fixed-image .row .pb-column:last-child .pb-block-type-image img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	object-position: center;
	max-height: 100%;
}

/* Key Benefits */
.row-key-benefits {
	margin: 50px 0;
}
.row-key-benefits .icon .far  {
	font-size: 48px;
}
@media screen and (max-width:570px) {
	.row-key-benefits {
		margin: 0;
	}
	.row-key-benefits .pb-column.col-sm-2-4 {
		margin: 25px 0;
	}
	.row-key-benefits .icon .far  {
		font-size: 36px;
	}
	.row-key-benefits h3  {
		font-size: 36px;
	}
}

/* Default image fancybox */
.image-wrap img:hover {
	border-color: var(--colour-primary);
}

/*Mini Divides*/
.mini-divide .pb-row,
.pb-row.mini-divide {
	margin-right: -10px;
	margin-left: -10px;
}
.mini-divide .pb-row .pb-column,
.pb-row.mini-divide .pb-column {
	padding-right: 10px;
	padding-left: 10px;
}

/*Feature Testimonial*/
.feature-testimonial h4 {
	font-size: 33px;
	line-height: 1.5em;
	font-weight: 400;
	margin-bottom: 45px;
}
.feature-testimonial p {
	display: flex;
	align-items: center;
	margin: 0;
}
.feature-testimonial p::before {
	content: "";
	width: 50px;
	height: 50px;
	display: block;
	border-radius: 100%;
	background-color: #d5dfe0;
	background-image: url(images/graphics/web-icon.svg);
	background-size: 70% auto;
	background-position: center;
	background-repeat: no-repeat;
}
.feature-testimonial p.ft-hulk::before {
	background-image: url(images/logos/logo-hulk-electrical.jpg);
	background-size: cover;
}
.feature-testimonial p.ft-amp::before {
	background-image: url(images/logos/logo-amp.jpeg);
	background-size: cover;
}
.feature-testimonial p strong {
	display: flex;
	flex-direction: column;
	font-size: 18px;
	line-height: 1.3;
	padding-left: 15px;
}
.feature-testimonial p strong small {
	font-size: 80%;
}
.feature-testimonial.variant-2{
	padding-left: 120px;
}
.feature-testimonial.variant-2 h4 {
	font-weight: 600;
	font-size: 48px;
	line-height: 58px;
	letter-spacing: -0.03em;
	margin-bottom: 45px;
	color: var(--colour-white);
	position: relative;
	z-index: 1;
}
.feature-testimonial.variant-2 h4::before {
	content: "\f10d";
	font-family: "Font Awesome 5 Pro";
	position: absolute;
	height: 160px;
	width: 160px;
	left: -120px;
	font-size: 120px;
	color: var(--colour-turqiose);
	mix-blend-mode: hard-light;
	z-index: -1;
}

/* FEATURE DESCRIPTION */
/*.feature-desc.variant-2 h2 {
	font-size: 48px;
}*/
.feature-desc.variant-2 h2::before {
	content: "\f10d";
	font-family: "Font Awesome 5 Pro";
	position: absolute;
	height: 160px;
	width: 160px;
	left: -80px;
	top: -20px;
	font-size: 120px;
	color: #6E80A4;
	mix-blend-mode: normal;
	opacity: 0.1;
	z-index: -1;

}

/**--- Logo List ---**/
.logo-list .pb-row-column-1 {
	max-width: 1000px;
	margin: 0 auto;
}
.logo-list .pb-row {
	padding-bottom: 35px;
}
.logo-list .pb-block-type-image img {
	position: relative;
	border-radius: 5px;
	transition: all 0.5s cubic-bezier(0, 0, 0.1, 0.9);
}
.logo-list .pb-block-type-image img:hover {
	transform: scale(1.05);
	transition: all 0.4s cubic-bezier(0.23, 1.78, 0.04, 1.05);
}
.logo-list .pb-row-column-4 .pb-column {
	padding-left: calc(var(--frame-ex) / 4);
	padding-right: calc(var(--frame-ex) / 4);
}

/* FORMS CLASSES */
.hide-form-title .pb-block-type-form h2 {
	display: none;
}

/* USED IN - GET A QUOTE PAGE */
.form-variant-2 .pb-block-type-form{
	background: var(--colour-blue);
	padding: 60px;
}
.form-variant-2 .pb-block-type-form .form-block .field.submit button,
.form-variant-3 .pb-block-type-form .form-block .field.submit button {
  width: 100%;
  padding: 16px 25px 17px;
}
.form-variant-2 .pb-block-type-form .form-block .field.submit button::before {
  background: linear-gradient(to right, var(--colour-primary), var(--colour-tertiary) 50%, #6bdabc);
  transition: all 0.4s var(--transition);
  background-position: top left;
  background-size: 200% 100%;
  transform: none;
}
.form-variant-2 .pb-block-type-form .form-block .field.submit button::after {
  background: var(--colour-primary);
  bottom: -4px;
  right: -4px;
  left: -4px;
}
.form-variant-2 .pb-block-type-form .form-block .field label:not(.inline-input){
	color: var(--colour-white);
	opacity: 0.5;
	font-size: 12px;
	line-height: 21px;
}
.form-variant-2 .pb-block-type-form .form-block .field label,
.form-variant-2 .pb-block-type-form .form-block .field p.caption,
.form-variant-2 .pb-block-type-form .form-block .field input,
.form-variant-2 .pb-block-type-form .form-block .field select,
.form-variant-2 .pb-block-type-form .form-block .field textarea{
	color: var(--colour-white);
	font-size: 16px;
}

/* USED IN - GET IN TOUCH PAGE */
.form-variant-3 .pb-block-type-form .form-block .field:not(.submit){
	background-color: var(--colour-white-greyish);
	margin-bottom: 5px;
}
.form-variant-3 .pb-block-type-form .form-block{
	margin: 0;
}
.form-variant-3 .pb-block-type-form .form-block .field label,
.form-variant-3 .pb-block-type-form .form-block .field p.caption,
.form-variant-3 .pb-block-type-form .form-block .field input,
.form-variant-3 .pb-block-type-form .form-block .field select,
.form-variant-3 .pb-block-type-form .form-block .field textarea{
	padding: 0px;
	border: none;
}
.form-variant-3 .pb-block-type-form .form-block .field.submit{
	padding: 0;
	margin: 0;
}
.form-variant-3 .pb-block-type-form .form-block .field.submit button::before{
	transform: none;
	background-color: var(--colour-blue);
}

.form-variant-3 p.form-caption{
	color: var(--colour-white);
}
/* MAP STYLE */
.bw-map iframe{
	filter: grayscale(1);
}

/* ALTERNATE SLIDER CONTROLS */
.slider-alt-controls .tns-outer .tns-controls {
	top: calc(50% - 30px);
	right: 0;
	left: 0;
}
.slider-alt-controls .tns-outer .tns-controls button {
	width: 60px;
	height: 60px;
	left: 0;
	right: 0;
	opacity: 0;
}
.slider-alt-controls .tns-outer .tns-controls button:first-of-type {
	transform: translateX(-15px);
}
.slider-alt-controls .tns-outer .tns-controls button:last-of-type {
	transform: translateX(15px);
}
.slider-alt-controls:hover .tns-outer .tns-controls button {
	transform: none !important;
	opacity: 1;
}

/* BOX STYLE */
.box.bg-white{
	border: none;
	background-color: var(--colour-white);
	padding: 32px 36px;
}
.box.contact-info{
	padding-left: 90px;
}
.box.contact-info h4 em{
	position: absolute;
	left: 60px;
	top: 38px;
	font-size: 28px;
}
.box.bg-light-grey{
	border:none;
	background-color: var(--colour-whiteish);
	padding: 46px 44px;
}

.box.testimonial {
	background-color: var(--colour-white);
	box-shadow: 0 15px 55px rgba(19, 24, 62, 0.1);
}
.box.testimonial p:not(.author){
	font-weight: 400;
}
.box.bg-light-grey.testimonial .star-rating {
	color: var(--colour-turqiose);
	font-size: 20px;
}
.box.bg-light-grey.testimonial .star-rating em {
	margin-right: 3px;
}
.box.bg-light-grey.testimonial .author {
	color: var(--colour-turqiose);
	font-weight: 400;
	font-size: 16px;
	font-family: var(--font-heading);
}

/**--- Testimonial Banner ---**/
.testimonial-banner .pb-block-type-text figure {
	width: 100%;
	aspect-ratio: 16/9;
	background-color: var(--colour-heading);
	position: relative;
}
.testimonial-banner .pb-block-type-text figure::before {
	content: "";
	position: absolute;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	width: 60px;
	height: 60px;
	background-image: url("/template/profile/c9phLISwdeRLl67RaKAE0VSb/images/icons/spinner-alt.png");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	animation: spin 1s infinite linear;
}
.testimonial-banner .pb-block-type-text figure::after {
	content: "";
	position: absolute;
	top: -60px;
	left: -80px;
	right: 0;
	bottom: -60px;
	background-image: url("/template/profile/c9phLISwdeRLl67RaKAE0VSb/images/graphics/scribble-spline.png");
	background-repeat: no-repeat;
	background-position: center left;
	background-size: contain;
	mix-blend-mode: color;
	z-index: -1;
}
@keyframes spin {
	0% {transform:rotate(0deg);}
	100% {transform:rotate(360deg);}
}

/* SLIDER - TESTIMONIAL */
.slider-testimonial.variant-1 .star-rating{
	color: var(--colour-yellow);
	font-size: 25px;
}

.slider-testimonial {
	width: auto;
	min-width: 100%;
	margin-left: -30px;
	margin-right: -30px;
}
.slider-testimonial .slider .slide:not(.tns-slide-active) {
	opacity: 0;
	transform: translateY(-20px);
	transition: all 1s var(--transition) 0s;
}
.slider-testimonial .slider .slide.tns-slide-active {
	opacity: 1;
	transform: none;
	transition: all 1s var(--transition);
}

.slider-testimonial .star-rating em{
	margin-right: 5px;
}
.slider-testimonial .testimonial-title{
	display: none;
}
.slider-testimonial .testimonial-content{
	max-height: 300px;
	overflow: hidden;
	padding-bottom: 40px;
	position: relative;
}
.slider-testimonial .testimonial-content::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 45px;
	pointer-events: none;
	background: linear-gradient(to bottom, transparent, #fff 50%);
}

.slider-testimonial p:not(.star-rating) {
	margin: 0;
}
.slider-testimonial .testimonial-author {
	color: var(--colour-turqiose);
	font-weight: 400;
	font-size: 16px;
}
.slider-testimonial .slide-content-wrap {
	padding: 0 30px;
	color: var(--colour-dark-blue);
	font-weight: 400;
	font-size: 14px;
}

/**--- PROJECTS ---**/
/*Project Slider*/
.project-slider.section-overlap-banner .frame {
	padding-bottom: 30px !important;
	position: relative;
}
.project-slider.section-overlap-banner .pb-row .col-sm-4-8 {
	padding-left: 0;
	padding-right: var(--pad-big);
	width: 40%;
	flex: 40% 0 0;
	z-index: 1;
}
.project-slider.section-overlap-banner .pb-row .col-sm-7-2 {
	margin-left: 0;
	width: 60%;
	flex: 60% 0 0;
	position: static;
}

.project-slider .slider-wrapper,
.project-slider .slider-wrapper .tns-outer {
	position: static;
}
.project-slider.section-overlap-banner .tns-outer .tns-controls {
	bottom: 30px;
	right: 0;
	left: 0;
	top: 30px;
}
.project-slider.section-overlap-banner .tns-outer .tns-controls button {
	width: var(--frame-pad) !important;
	height: 100%;
	background: transparent !important;
}
.project-slider.section-overlap-banner .tns-outer .tns-controls button::before {
  	/*font-size: 40px;*/
	font-size: 32px;
	width: 60px;
	height: 60px;
	border: 2px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
}
.project-slider.section-overlap-banner .tns-outer .tns-controls button:first-of-type {
	right: 0;
	opacity: 1;
}
.project-slider.section-overlap-banner .tns-outer .tns-controls:hover button:first-of-type {
	opacity: 1;
}

.project-slider.section-overlap-banner .pb-block-type-slider .slider {
	background-color: #fff;
}
.section-colour-dark.project-slider.section-overlap-banner .pb-block-type-slider .slider {
	background-color: var(--colour-dark);
}

.project-slider.section-overlap-banner .pb-block-type-slider .slider > .tns-item {
	border-right-width: 25px;
}
.project-slider.section-overlap-banner .pb-block-type-slider .slider .slide {
	opacity: 1;
	overflow: visible;
	filter: grayscale(1) brightness(0.8);
	/*height: calc(100vh - 250px);*/
	height: calc(300px + 15vw);
}
.project-slider.section-overlap-banner .pb-block-type-slider .slider .slide:hover {
	filter: none;
}
.project-slider.section-overlap-banner .pb-block-type-slider .slider .slide.tns-slide-active {
  	opacity: 1;
	filter: none;
}
.project-slider.section-overlap-banner .pb-block-type-slider .slider .slide.tns-slide-active + .slide {
  	opacity: 1;
	filter: none;
}

.project-slider .pb-block-type-slider .post-wrap .post-item {
  	border: none;
	position: relative;
}
.project-slider .pb-block-type-slider .post-wrap .post-item .post-image {
	overflow: hidden;
}
.project-slider .pb-block-type-slider .post-wrap .post-item .post-image img {
	/*height: calc(100vh - 250px);*/
	height: calc(300px + 15vw);
	filter: brightness(1);
	object-fit: cover;
	object-position: center;
	transition: all 1s cubic-bezier(0.18, 0, 0.3, 0.99);
}
.project-slider .pb-block-type-slider .post-wrap .post-item:hover .post-image img {
	filter: brightness(1.08);
	transform: scale(1.05);
}
.project-slider .pb-block-type-slider .post-wrap .post-item .post-body {
	position: absolute;
	bottom: -22px;
	left: 30px;
	right: 30px;
	padding: 0;
	max-width: 500px;
}
.project-slider .pb-block-type-slider .post-wrap .post-item .post-body h3 {
	font-size: 36px;
	line-height: 1;
	opacity: 1;
	color: #fff;
	display: inline;
	padding: 0 10px;
	transform: none;
	background-color: var(--colour-secondary);
	transition: all 0.4s var(--transition) 0.4s;
}
.project-slider .pb-block-type-slider .post-wrap .slide.tns-slide-active + .slide .post-item .post-body h3,
.project-slider .pb-block-type-slider .post-wrap .slide.tns-slide-active + .slide + .slide .post-item .post-body h3 {
	opacity: 0;
	transform: translateY(-15px);
	transition: all 0.4s var(--transition) 0s;
	padding: 0 0px;
}

/*Project Page*/

/*Case Studies*/
.case-studies-heading {
	padding-top: clamp(20px, 10vw, 100px);
	padding-bottom: 0px;
	max-width: 900px !important;
}
.case-studies-heading h1 {
	font-size: clamp(52px, 5vw, 82px) !important;
	line-height: 1.1em !important;
}
.case-studies-heading h1 br {
	display: none !important;
}
.categories {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 12px;
	margin-top: -63px;
    padding-left: 20px;
    margin-bottom: 10px;
	position: absolute;
	z-index: 0;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s var(--transition);
}
.post-type-case-studies .col .post-item:hover .categories  {
	opacity: 1;
	z-index: 2;
	transform: translateY(-0px);
}
.categories span {
	position: relative;
	z-index: 2;
	padding: 10px 16px;
}
.categories span::after {
	content: '';
	position: absolute;
	background-color: var(--colour-white);
	transition: all 0.3s var(--transition-alt), background-position 1.5s var(--transition);
	transform: skewX(-10deg);
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
	z-index: -1;
}
.categories span.web {
	color: var(--colour-primary);
}
.categories span.design {
	color: var(--colour-secondary);
}
.categories span.marketing {
	color: var(--colour-tertiary);
}
.pb-section:has(.case-studies-heading) {
	padding-bottom: 0px;
}
.case-studies-heading .pb-column {
	padding: 0px;
}
.filter-container {
	padding: 15px 0px 20px 0px;
	column-gap: 8px !important;
	width: 105%;
	justify-self: center;
}
.filter-container a:nth-of-type(1) {
	color: var(--colour-dark) !important;
}
a.filter-button {
	color: var(--colour-white);
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-content: center;
	flex-direction: row;
	padding: 16px 25px 16px 16px;
	font-size: 14px;
	transition: all 0.3s var(--transition);
}
a.filter-button::before {
	background-color: var(--colour-white);
	border: 1px solid var(--colour-dark);
	transition: all 0.3s var(--transition-alt), background-position 1.5s var(--transition);
}
a.filter-button::after {
	content: "";
	font-family: var(--font-awesome);
	display: flex;
	align-items: center;
	position: relative;
	bottom: unset;
	left: unset;
	height: unset;
	right: unset;
	font-size: 15px;
	order: -1;
	background-color: transparent;
	transition: transform 0.3s var(--transition);
	transform: scale(0);
}
a.filter-button:hover {
	color: var(--colour-white);
}
a.filter-button:hover::after {
	display: flex;
	transform: scale(1);
}
a.filter-button.filter-1::before {
	background-color: var(--colour-primary);
	border: none;
}
a.filter-button.filter-1:hover::after {
	content: "\f121";
}
a.filter-button.filter-2::before {
	background-color: var(--colour-secondary);
	border: none;
}
a.filter-button.filter-2:hover::after {
	content: "\f5ad";
}
a.filter-button.filter-3::before {
	background-color: var(--colour-tertiary);
	border: none;
}
a.filter-button.filter-3:hover::after {
	content: "\f083";
}
.filter-container {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .clear-filter {
            display: flex;
            align-items: center;
            column-gap: 10px;
            color: var(--colour-dark);
            font-size: 14px;
            cursor: pointer;
            transition: color 0.2s ease;
            margin-left: auto;
        }

        .clear-filter:hover {
            color: var(--colour-primary);
        }

        .clear-icon {
            width: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .clear-icon::before {
            content: "\f364";
	        font-family: var(--font-awesome);
            font-size: 16px;
            transform: rotate(0deg);
        }

        @media (max-width: 1100px) {
            .filter-container {
                flex-direction: column;
                align-items: stretch;
            }

            .filter-button {
                justify-content: center;
            }

            .clear-filter {
                margin-left: 0;
                justify-content: center;
            }
        }
        @media (max-width: 1000px) {
            .pb-section:has(.post-type-case-studies) {
    			padding-top: 0px !important;
			}
        }
        @media (max-width: 500px) {
			.case-studies-heading h1 br {
				display: block !important;
			}
            .frame:has(.post-type-case-studies) {
    			padding-left: 0px !important;
				padding-right: 0px !important;
			}
			.post-type-case-studies .col .post-item .post-image, .post-type-case-studies .col .post-item .post-image img {
				max-height: 220px !important;
				min-height: 130px !important;
			}
        }
.pb-section:has(.post-type-case-studies) {
	padding: 0px;
}
.post-type-case-studies {
	display: flex;
	flex-wrap: wrap;
	row-gap: 50px;
	column-gap: 40px;
}
.post-type-case-studies.post-wrap .col {
	padding: 0px;
	flex: 0 1 calc(50% - 20px);
	max-width: calc(50% - 20px);
}
.pb-column:has(.post-type-case-studies) {
	padding: 35px 0px 0px 0px !important;
	border-top: 1.5px solid #18263A4D;
}
.post-type-case-studies .col .post-item {
	border: none;
	overflow: hidden;
}
.post-type-case-studies .col .post-item .post-image {
	position: relative;
	overflow: hidden;
}
.post-type-case-studies .col .post-item .post-image::before {
	content: '';
	position: absolute;
	height: 5px;
    width: 100%;
    left: 0;
	bottom: 0;
	background-color: var(--colour-primary);
    z-index: 2;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}
.post-type-case-studies .col .post-item .post-image,
.post-type-case-studies .col .post-item .post-image img {
	max-height: 380px;
	min-height: 380px;
	object-fit: cover;
	overflow: hidden;
	transition: transform 0.5s ease;
}
.post-type-case-studies .col .post-item:hover img {
	transform: scale(1.05);
}
.post-type-case-studies .col .post-item:hover .post-image::before {
	transform: translateX(0%);
}
.post-type-case-studies .col .post-item .post-body {
	padding: 15px 0px 5px 0px;
}
.post-type-case-studies .col .post-item .post-body h3 {
	font-weight: 600 !important;
	font-size: clamp(24px, 2vw + 1rem, 30px);
	margin-bottom: 5px;
}
.post-type-case-studies .col .post-item .post-body p {
	font-size: 14px;
	color: var(--colour-dark);
	opacity: 0.7;
}
.post-type-case-studies .col .post-item p.date {
	display: none;
}

@media screen and (max-width:1000px) {
	.post-type-case-studies {
		flex-direction: column;
		row-gap: 50px;
	}
	.post-type-case-studies.post-wrap .col {
		padding: 0px;
		flex: 1;
		max-width: 100%;
		width: 100% !important;
	}
}
@media screen and (max-width:500px) {
	.post-type-case-studies .col .post-item .post-body h3 {
	margin-bottom: 10px;
}
}

/*Portfolio*/
.portfolio-wrapper {
	padding-top: 250px !important;
}
.portfolio-wrapper .pb-container > .button-wrapper {
	display: flex;
	gap: 5px;
	justify-content: center;
	padding: 5px;
	border-radius: 35px;
	border: 1px solid #e3e3e3;
	margin: 25px auto 0;
	width: max-content;
}
.portfolio-wrapper .pb-container > .button-wrapper .button {
	color: var(--colour-dark);
	padding: 12px 26px 13px;
	border-radius: 35px;
}
.portfolio-wrapper .pb-container > .button-wrapper .button:hover {
	background-color: var(--colour-light);
}
.portfolio-wrapper .pb-container > .button-wrapper .button.selected {
	background-color: var(--colour-dark);
	color: var(--colour-light);
}
.portfolio-wrapper .pb-container > .button-wrapper .button.selected:hover {
	background-color: var(--colour-secondary);
	color:#fff;
}
.portfolio-wrapper .pb-container > .button-wrapper .button::before,
.portfolio-wrapper .pb-container > .button-wrapper .button::after {
	display: none;
}


.portfolio-wrapper .pb-section.gallery {
	margin-left: calc((var(--frame-pad) * -1) + 15px);
  	margin-right: calc((var(--frame-pad) * -1) + 15px);
}
.portfolio-wrapper .pb-section.gallery .image-container .col {
	border-radius: 0;
	padding: 2px;
}
.portfolio-wrapper .content_img .iw-card .h3 {
	margin: 0 0 8px;
	font-size: 28px;
	line-height: 1.1;
}
.portfolio-wrapper .content_img .iw-card .h4 {
	margin: 0 0 25px;
	font-size: 18px;
	line-height: 1.1;
	font-weight: 400;
}
.portfolio-wrapper .content_img .iw-card .iw-bt {
	margin: 0;
}
.portfolio-wrapper .content_img .iw-card .button {
	padding: 10px 30px 12px;
	font-size: 14px;
}

/*Link Slider*/
.section-overlap-banner .pb-block-type-slider .slider.slider-content > .tns-item {
	overflow: visible;
}
.section-overlap-banner.section-colour-dark .pb-block-type-slider .slider.slider-content > .tns-item {
	border-right-color: var(--colour-dark);
}

.section-overlap-banner .pb-block-type-slider .slider.slider-content .slide-overlay,
.section-overlap-banner .pb-block-type-slider .slider.slider-content .slide-inner,
.section-overlap-banner .pb-block-type-slider .slider.slider-content .slide-cell {
	height: 100%;
}
.section-overlap-banner .pb-block-type-slider .slider.slider-content .slide-cell {
	padding: 0;
}
.section-overlap-banner .pb-block-type-slider .slider.slider-content .slide-cell h3 {
	text-align: left;
	height: 100%;
	font-size: 18px;
	line-height: 1.2;
	font-family: var(--font-body);
}
.section-overlap-banner .pb-block-type-slider .slider.slider-content .slide-cell h3 a {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 100%;
	color: #fff;
	text-decoration: none;
	padding: 20px 25px;
}

/* PADDING STYLES */
 .pad-120{
	 padding-top: 120px !important;
	 padding-bottom: 120px !important;
 }
 .pad-top-100{
	 padding-top: 100px !important;
}
 .pad-top-60{
	 padding-top: 60px !important;
}
 .pad-top-0{
	 padding-top: 0px !important;
}
 .pad-right-60{
	 padding-right: 60px;
 }
 .pad-right-120{
	 padding-right: 120px;
 }
 .pad-right-160{
	 padding-right: 160px;
 }
 .pad-right-200{
	 padding-right: 200px;
 }
 .pad-bottom-0{
	 padding-bottom: 0 !important;
 }
.pad-bottom-90{
	 padding-bottom: 90px;
 }
.pad-bottom-160{
	 padding-bottom: 160px;
 }

 /* OVERLAP STYLES */
 .overlap-top-80,
 .overlap-top-120{
	 position: relative;
	 z-index: 100;
 }
 .overlap-top-80{
	margin-top: -80px;
}
.overlap-top-120{
   margin-top: -120px;
}
.overlap-bottom{
	position: relative;
	z-index: 3;
}
.overlap-bottom-20{
	margin-bottom: -20px;
}
.section-colour-deep-blue.overlap-bottom-20::after{
	bottom: 0;
	z-index: 1;
}

 /*OVERLAY STYLES*/
 .bg-overlay{
	 position: relative;
 }
 .bg-overlay::before{
	 content: '';
	 position: absolute;
	 width: 100%;
	 height: 100%;
	 background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(.jpg);

 }

 /*BACKGROUND STYLES*/
.bg-rocket {
	background-image: url('images/rocket.svg');
    background-repeat: no-repeat;
	background-size: auto calc(100% - 45%);
    background-position: 60vw calc(100% - 25%);
 }
.bg-footer{
	background: linear-gradient(70deg, #101722 50%, var(--colour-dark));
}
.bg-half-block-colour{
	position: relative;
}
.bg-half-block-colour > *{
	position: relative;
	z-index: 1;
}
.bg-half-block-colour::after{
	content: '';
	bottom: 0;
	height: 50%;
	width: 100%;
	position: absolute;
	background: linear-gradient(100deg, #101722 50%, var(--colour-dark));
/*	background: linear-gradient(transparent 0%, transparent 50%, var(--colour-dark) 50%, var(--colour-dark) 100%);*/
}

/*MAP STYLES*/
.map-wrapper{
 height: auto;
}

/*ROCKET ICON*/
.rocket-icon{
 position: relative;
}
.rocket-icon::after{
 content: '';
 background-image: url(images/graphics/rocket-colour.png);
 width: 125px;
 height:126px;
 background-size: contain;
 background-repeat: no-repeat;
}
.rocket-icon.top-right-corner::after{
 position: absolute;
 right: -70px;
 top: -30px;
}

/*Timeline Slider*/
.bg-gradient {
	background: linear-gradient(to bottom, var(--colour-secondary), var(--colour-primary));
}
.timeline-slider {

}
.timeline-slider.horizontal-slider .pb-column {

}
.timeline-slider.horizontal-slider .pb-column .pb-block-type-text {
  	padding: 50px;
	height: 100%;
  	background-color: #1937ad;
}
/*.timeline-slider.horizontal-slider .pb-column .pb-block-type-text i.fad::after,
.timeline-slider.horizontal-slider .pb-column .pb-block-type-text i.fa-duotone::after,
.timeline-slider.horizontal-slider .pb-column .pb-block-type-text em.fad::after,
.timeline-slider.horizontal-slider .pb-column .pb-block-type-text em.fa-duotone::after {
  	color: var(--colour-tertiary) !important;
	opacity: 1 !important;
}*/
.timeline-slider.horizontal-slider .pb-column .pb-block-type-text h3 {
  	margin-bottom: 60px;
	margin-top: 0;
}
.timeline-slider.horizontal-slider .pb-column .pb-block-type-text h4 {
	 font-size: 30px;
}

/*.timeline-slider.horizontal-slider .pb-column:nth-child(2) .pb-block-type-text {
  	background-color: rgba(29, 161, 222, 0.3);
}
.timeline-slider.horizontal-slider .pb-column:nth-child(3) .pb-block-type-text {
  	background-color: rgba(29, 161, 222, 0.45);
}
.timeline-slider.horizontal-slider .pb-column:nth-child(4) .pb-block-type-text {
  	background-color: rgba(29, 161, 222, 0.6);
}
.timeline-slider.horizontal-slider .pb-column:nth-child(5) .pb-block-type-text {
  	background-color: rgba(29, 161, 222, 0.75);
}
.timeline-slider.horizontal-slider .pb-column:nth-child(6) .pb-block-type-text {
  	background-color: rgba(29, 161, 222, 0.9);
}*/

/*Override Bootstrap / Defaults*/
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
	padding-left: 0;
	padding-right: 0;
}

.mob-show {
	display: none;
}

/* Testing Phase CSS */
.content-statistic-highlight {
	text-align: center;
	min-height: 100vh;
}
.content-statistic-highlight .tri-colour-text:nth-child(1) { color: var(--colour-tertiary); }
.content-statistic-highlight .tri-colour-text:nth-child(2) { color: var(--colour-primary); }

.content-statistic-highlight .tri-colour-text {
	font-size: 220px;
	line-height: 220px;
	grid-column: 1;
	grid-row: 1;
}
.content-statistic-highlight .tri-text-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
}
/* CUSTOM CSS */
.pad-top-120{
	padding-top: 120px;
}

/* NEWS ARTICLES PAGE */
.section-news-header {
	padding: 120px 0;
}
.post-content.news {
	max-width: 900px;
	margin: 0 auto;
}
.post-content.news img {
	padding: 0;
	border: none;
	margin: 30px 0;
	max-height: 350px;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
	width: 100%;
	display: block;
	float: none;
}
.post-content.news img:first-child {
	margin-top: 0;
}
.post-wrap.post-type-news .post-item h3 {
	height: auto;
	min-height: unset;
	display: block !important;
	line-height: 1.3em;
	font-size: 22px !important;
}
.post-content.news ol:not([class]),.post-content.news h1:not(:first-child),
.post-content.news ol:not([class]),.post-content.news h2:not(:first-child),
.post-content.news ol:not([class]),.post-content.news h3:not(:first-child),
.post-content.news ol:not([class]),.post-content.news h4:not(:first-child) {
	margin-top: 50px;
}
.post-content.news ol:not([class]),.post-content.news p {
	font-weight: 400;
	line-height: 1.8em;
}
.post-content.news ol:not([class]),.post-content.news p:not(:last-child) {
	margin-bottom: 25px;
}
.post-content.news ol:not([class]),.post-content.news ul:not([class]) {
	margin: 25px 0;
}
.post-content.news ol:not([class]) > li,.post-content.news ul:not([class]) > li {
	font-size: inherit;
	font-weight: 300;
	margin-bottom: 10px;
}

body.post-type-news  .breadcrumb {
	color: var(--colour-white);
	margin-bottom: 20px;
}
body.post-type-news  .breadcrumb a {
	color: var(--colour-tertiary);
}
body.post-type-news .section-news-header .wrap {
	margin: 30px 0 0;
}
body.post-type-news .capsule {
	border: none;
	font-size: 13px;
	line-height: 1.2em;
	font-weight: 400;
	background-color: var(--colour-primary-alt);
	border-radius: 30px;
	padding: 12px 20px;
	margin: 3px;
}
body.post-type-news .capsule:nth-child(2) {
	background-color: var(--colour-primary);
}

body.post-type-news .capsule.profile{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 8px 16px;
	width: fit-content;
	max-width: 100%;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
}
body.post-type-news .capsule.profile img{
	width: 24px;
	height: 24px;
	border-radius: 50%;
	object-fit: cover;
}
body.post-type-news .section-news-header .wrap{
	display: flex;
	justify-content: center;
}

.post-item .post-image.date-label .date {
	top: 12px;
	left: 12px;
	z-index: 2;
	border-radius: 20px;
	font-size: 11px;
	padding: 6px 12px;
	font-weight: 400;
	color: var(--colour-dark);
	transition: all 0.5s var(--transition);
}
.body .post-type-news {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	row-gap: 40px;
	column-gap: 40px;
	overflow: visible;
}
.body .post-type-news.coltable.col3 > .col {
	width: 100%;
	padding: 0px;
}
.body .post-type-news .post-item {
	height: 100%;
	border: none !important;
}
.body .post-type-news .post-item .post-body {
	padding: 20px 20px 50px;
}
.body .post-type-news .post-item .post-image {
	overflow: hidden;
	border-radius: 10px;
	transition: all 0.5s var(--transition);
}
.body .post-type-news .post-item .post-image img {
	transition: all 0.5s var(--transition);
}

.body .post-type-news .post-item:hover .post-image {
	box-shadow: 0 0 0 2px var(--colour-secondary);
}
.body .post-type-news .post-item:hover .post-image img {
	transform: scale(1.05);
}
.body .post-type-news .post-item:hover .post-body h3 {
	color: var(--colour-secondary);
}
.post-item:hover .post-image.date-label .date {
	opacity: 0;
	top: 5px;
}

@media screen and (max-width:1300px) {
	.body .post-type-news {
		row-gap: 30px;
		column-gap: 30px;
	}
	.body .post-type-news .post-item .post-body {
		padding: 20px 15px 40px;
	}
}
@media screen and (max-width:1000px) {
	.body .post-type-news {
		grid-template-columns: repeat(2, 1fr);
	}
	.post-wrap.post-type-news .post-item h3 {
		font-size: 18px !important;
	}

	body.post-type-news .post-content.news {
		margin-top: -200px;
		position: relative;
		z-index: 3;
	}
}
@media screen and (max-width:800px) {
	.section-news-header {
		padding: 50px 0 120px;
	}
}
@media screen and (max-width:600px) {
	body.post-type-news .page-wrapper > * {
		width: 100%;
	}
	.body .post-type-news .post-item .post-body {
		padding: 15px 15px 30px;
	}
	.post-wrap.post-type-news .post-item h3 {
		font-size: 16px !important;
	}

	.news-footer {
		padding: 30px 0;
	}
	.news-footer .coltable .col {
		display: block;
		width: 100% !important;
		text-align: center;
	}
	.news-footer .coltable .col:not(:last-child) {
		margin-bottom: 30px;
	}

	.post-content.news ol:not([class]),.post-content.news h1:not(:first-child),
	.post-content.news ol:not([class]),.post-content.news h2:not(:first-child),
	.post-content.news ol:not([class]),.post-content.news h3:not(:first-child),
	.post-content.news ol:not([class]),.post-content.news h4:not(:first-child) {
		margin-top: 40px;
	}
}
@media screen and (max-width:450px) {
	.body .post-type-news {
		grid-template-columns: repeat(1, 1fr);
	}
	.post-wrap.post-type-news .post-item h3 {
		font-size: 18px !important;
	}
	.body .post-type-news .post-item .post-image img {
		max-height: 150px;
		object-fit: cover;
	}

	body.post-type-news .post-content.news {
		margin-top: -250px;
	}
	body.post-type-news .post-content.news img {
		margin: 30px 0 !important;
	}
}

/* PODCASTS PAGE */
.fill-white{
	fill: var(--colour-white);
}
.section-pod h1{
	font-size: 42px;
	line-height: 42px;
}
.section-pod .capsule {
  background: #fafafa;
  border-radius: 5px;
  border: 1px solid #e3e3e3;
  padding: 10px 15px;
  font-weight: 300;
  margin-top: 6px;
}
.section-pod hr{
	background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
	height: 1px;
	width: 100%;
	border: none;
}
/* GALLERY PAGE */
.gallery .pb-row {
	display: flex;
	justify-content: center;
}
.gallery .pb-col {
	display: flex;
	margin-top: 50px;
}
.gallery-menus {
	display: flex;
	list-style: none;
	justify-content: center;
	gap: 5px;
}
.gallery-menus li {
	padding: 20px;
	border: 1px solid;
}

/* CTA */
.cta-phone-now {
	text-align: center;
	padding:40px 0;
}
.cta-phone-now .h3 {
	color:var(--colour-tertiary);
}
.cta-phone-now .h2 {
	margin: 0;
}
.cta-phone-now .h2,
.cta-phone-now .h2 a {
	color:var(--colour-white);
}
.cta-phone-now .footnote {
	color:var(--colour-whiteish);
}

/* HELP PAGE */
.post-type-help{
	display: flex;
	flex-wrap: wrap;
	column-gap:20px;
}
.post-type-help .box.help{
	width: 49%;
	display: flex;
	flex-direction: column;
	row-gap: 10px;
	padding: 0;
}
.post-type-help .box.help .capsule{
	border:1px solid var(--colour-white-greyish);
	background-color: var(--colour-white-greyish);
	padding: 5px 10px;
	border-radius: 40px;
	margin: 0;
	font-size: 13px;
}
.post-type-help .box.help h3{
	font-size: 25px;
	margin: 0;
}
.post-type-help .box.help a{
	pointer-events: cursor;
	padding: 15px;
}
.post-type-help .box.help:hover{
	box-shadow: 0 10px 20px rgba(0,10,30,.2),0 0 10px rgba(0,10,30,.2);
}
.sat-in {
	background: linear-gradient(30deg, var(--colour-primary-alt), var(--colour-secondary), var(--colour-tertiary));
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	text-align: center;
	padding: 40px 0;
	animation: sat-shift 20s linear infinite;
	transition: all 0.7s ease-out 0s;
}
.sat-in .label {
	margin: 0 20px;
	display: inline-block;
	vertical-align: middle;
	color: #fff;
}
.sat-in .col:first-child {
	text-align: left;
}
.panel {
  overflow: hidden;
  border-radius: 5px;
  padding: 0;
  margin: 0 0 30px !important;
  background-color: #fff;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.15), 0 8px 15px rgba(0, 0, 0, 0.05);
}
.panel .panel-heading {
  padding: 25px;
  font-size: 18px;
}
.panel .panel-heading.head-alt {
  	background: linear-gradient(120deg, var(--colour-primary-alt), var(--colour-secondary));
}
.panel .panel-heading.head-alt h3 {
  color: #fff;
  margin: 0;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: -1px;
}
.step {
  padding: 12.5px 0;
  border-bottom: 1px solid #eee;
}
@keyframes sat-shift {
	0% {
		filter: hue-rotate(0);
	}
	100% {
		filter: hue-rotate(360deg);
	}
}

/**-- CASE STUDIES --**/
/** CS BANNER **/
.section-cs-banner {
	padding-bottom: 0 !important;
}
.section-cs-banner .frame {
	width: 100%;
	max-width: unset;
	padding-left: var(--frame-pad);
	padding-right: 0 !important;
}
.section-cs-banner .pb-row {
	margin-left: 0;
	margin-right: 0;
	flex-wrap: nowrap;
}
.section-cs-banner .pb-row .pb-column {
	padding-left: 0;
	padding-right: 0;
}
.section-cs-banner .pb-row .col-sm-3 {
	position: relative;
	width: calc(10vw + 330px);
	flex: calc(10vw + 330px) 0 0;
	max-width: calc(10vw + 330px);
	padding-right: 100px;
}
.section-cs-banner .pb-row .col-sm-9 {
	width: auto;
	flex: auto 1 1;
	max-width: unset;
	position: relative;
}

/*Left*/
.section-cs-banner .col-sm-3 {
	display: flex;
	flex-direction: column;
}
.section-cs-banner .col-sm-3 .pb-block .pb-block-content {
	animation: loadInUp 1.5s forwards 0ms var(--transition-alt);
	position: relative;
	opacity: 0;
}
.section-cs-banner .col-sm-3 .pb-block:nth-child(2) .pb-block-content {
	animation-delay: 250ms;
}
.section-cs-banner .col-sm-3 .pb-block:nth-child(3) .pb-block-content {
	animation-delay: 500ms;
}
.section-cs-banner .col-sm-3 .pb-block:nth-child(4) .pb-block-content {
	animation-delay: 750ms;
}
.section-cs-banner .pb-block-type-button .button {
	padding: 5px;
	color: var(--colour-dark);
}
.section-cs-banner .pb-block-type-button .button::before {
	display: none;
}
.section-cs-banner .pb-block-type-button .button::after {
	display: none;
}

.section-cs-banner .cs-breadcrumb.pb-block-type-button .button-wrapper {
	margin: -5px;
	display: flex;
	margin-bottom: 40px;
}
.section-cs-banner .cs-breadcrumb.pb-block-type-button .button {
	font-size: 14px;
	letter-spacing: 0;
	display: flex;
}
.section-cs-banner .cs-breadcrumb.pb-block-type-button .button:hover {
	color: var(--colour-primary);
}
.section-cs-banner .cs-breadcrumb.pb-block-type-button .button.btn-clear {
	color: rgba(23, 34, 51, 0.25);
}
.section-cs-banner .cs-breadcrumb.pb-block-type-button .button:not(:first-child)::before {
	position: static;
	display: block;
	width: 1px;
	height: 100%;
	background-color: rgba(23, 34, 51, 0.15);
	margin-right: 10px;
}

.section-cs-banner .col-sm-3 .pb-block-type-image img {
	max-width: 200px;
	max-height: 150px;
	object-fit: contain;
	object-position: left top;
	margin-bottom: 40px;
}
.section-cs-banner .col-sm-3 .pb-block-type-text h1 {
	font-size: 50px;
	line-height: 1.1em;
	font-weight: 800;
}

.section-cs-banner .cs-service {
	margin-top: auto;
}
.section-cs-banner .cs-service .pb-block-content {
	display: flex;
	margin: 40px -16px 0;
}
.section-cs-banner .cs-service .button-wrapper {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}
.section-cs-banner .cs-service .pb-block-content::before,
.section-cs-banner .cs-service .button-wrapper .button {
	font-size: 14px;
	font-weight: 300;
	padding: 6px 16px;
}
.section-cs-banner .cs-service .pb-block-content::before {
	content: "Our Activity:";
	letter-spacing: -0.02em;
	font-weight: 600;
}
.section-cs-banner .cs-service .button-wrapper .button::before {
	width: 2px;
	display: block;
	transform: none;
	left: 0;
}
.section-cs-banner .cs-service .button-wrapper .button:hover::before {
	width: 4px;
}

/*Right*/
.section-cs-banner .col-sm-9 {
	min-height: 70vh;
	overflow: hidden;
}
.section-cs-banner .col-sm-9::after {
	content: "";
	animation: divider-anim 13s linear infinite;
	background-position: top left 0px;
	background-repeat: repeat-x;
	background-size: 2000px auto;
	position: absolute;
	height: 35px;
	top: -1px;
	left: 0;
	right: 0;
	z-index: 2;
	transform-origin: top left;
	transform: scaleX(-1) rotate(90deg);
	background-image: url(images/dividers/divider-white.svg);
}
.section-cs-banner .col-sm-9 .pb-block-type-image:not(.cs-overlay) img {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
	vertical-align: top;
}
.section-cs-banner .cs-overlay {
	pointer-events: none;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
	z-index: 2;
}
.section-cs-banner .cs-overlay .pb-block-content,
.section-cs-banner .cs-overlay .pb-block-content figure {
	height: 100%;
}
.section-cs-banner .cs-overlay img,
.section-cs-banner .cs-overlay svg {
	position: absolute;
	max-height: 80%;
	max-width: 400px;
	width: auto;
	bottom: 0;
	right: 0;
	left: auto;
	top: auto;
	object-fit: contain;
	object-position: bottom right;
}

.section-cs-banner .cs-overlay.cs-overlay-full-left img {
	max-height: 100%;
	max-width: unset;
	width: auto;
	right: auto;
	left: 0;
	object-fit: contain;
	object-position: bottom left;
}


/** CS CONTENT **/
.section-cs-content .pb-block-type-text h1,
.section-cs-content .pb-block-type-text h2 {
	font-size: 36px;
	line-height: 1.1em;
	margin-bottom: 25px;
}
.section-cs-content .pb-block-type-text h4 {
	font-family: var(--font-body);
	font-size: 26px;
	line-height: 1.5em;
	letter-spacing: -0.01em;
	font-weight: 400;
}
.section-cs-content .pb-block-type-text p {
	line-height: 1.8em;
}
.section-cs-content .pb-block-type-text .pb-block-content > *:last-child {
	margin-bottom: 0;
}

.section-cs-content .pb-block-type-image + .pb-block-type-button {
	margin-top: auto;
	position: absolute;
	left: 20px;
	bottom: 20px;
}
.section-cs-content .pb-block-type-image + .pb-block-type-button .button i {
	margin-right: 6px;
}

/*cs-fit*/
.cs-fit.section-cs-content .pb-column {
	padding-top: 50px;
	padding-bottom: 50px;
	display: flex;
	flex-direction: column;
}
.cs-fit.section-cs-content .pb-block-type-image img {
	position: absolute;
	top: 0;
	right: 0;
	left: calc(var(--frame-ex) / 2);
	width: calc(100% - var(--frame-ex));
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/*cs-break*/
.cs-break .frame {
	padding-right: 0 !important;
}
.cs-break .pb-row {
	margin-right: 0;
	margin-left: 0;
}
.cs-break .pb-row .pb-column {
	padding-right: 0;
	padding-left: 0;
}
.cs-break hr {
	border:none;
	height: 2px;
	/*margin: 0 auto;*/
	background: linear-gradient(to right, var(--colour-secondary), var(--colour-tertiary));
}

/** CS SLIDER **/
.section-cs-slider {
	overflow: hidden;
	position: relative;
}
.section-cs-slider .pb-row {
	position: static;
	margin: 0;
}
.section-cs-slider .pb-column {
	position: static;
	padding: 0;
}
.section-cs-slider .pb-block-type-text svg,
.section-cs-slider .pb-block-type-image img {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: auto;
	object-fit: contain;
	object-position: left bottom;
}
.section-cs-slider .pb-block-type-image.cs-slider-background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.section-cs-slider .pb-block-type-slider {
	position: relative;
	z-index: 2;
}
.section-cs-slider .pb-block-type-slider .pb-block-content {
	max-width: 1200px;
	margin: 0 auto;
}
.section-cs-slider .pb-block-type-slider .tns-ovh {
	overflow: visible;
}
.section-cs-slider .pb-block-type-slider .slider-wrapper .slide-cell {
	padding: 0;
}
.section-cs-slider .pb-block-type-slider .slider .slide {
	padding: 0 20px !important;
	transition: all 0.5s var(--transition);
	filter: contrast(0.5) brightness(0.5);
}
.section-cs-slider .pb-block-type-slider .slider .slide.tns-slide-active {
	filter: none;
}

.section-cs-slider .pb-block-type-slider .slider .slide .slide-content {
	display: none;
}

.section-cs-slider .slider-wrapper,
.section-cs-slider .tns-outer {
	position: static;
}
.section-cs-slider .tns-outer .tns-controls {
	right: -35px;
	left: -35px;
	top: calc(50% - 30px);
}
.section-cs-slider .tns-outer .tns-controls button:first-of-type {
	right: 0;
}
.section-cs-slider .tns-outer .tns-controls button {
	width: 60px;
	height: 60px;
	/*border-radius: 100%;*/
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.section-cs-slider .tns-outer .tns-controls button::before {
	font-size: 20px;
	color: var(--colour-dark);
}
.section-cs-slider .tns-outer .tns-controls button:hover::before {
	color: var(--colour-white);
}
.section-cs-slider .tns-outer .tns-controls button[disabled=""] {
	opacity: 0;
}

@media screen and (max-width:1700px) {
	.section-cs-slider .tns-outer .tns-controls {
		right: -80px;
		left: -80px;
	}
}
@media screen and (max-width:1200px) {
	.section-cs-slider .tns-outer .tns-controls {
		right: -50px;
		left: -50px;
		top: calc(50% - 25px);
	}
	.section-cs-slider .tns-outer .tns-controls button {
		width: 50px;
		height: 50px;
	}
}
@media screen and (max-width:1000px) {
	.section-cs-slider .tns-outer .tns-controls {
		right: -25px;
		left: -25px;
		top: calc(50% - (var(--frame-pad) / 2));
	}
	.section-cs-slider .tns-outer .tns-controls button {
		width: var(--frame-pad);
		height: var(--frame-pad);
	}
	.section-cs-slider .tns-outer .tns-controls button::before {
		font-size: 18px;
		font-weight: 400;
	}
}
@media screen and (max-width:580px) {
	.section-cs-slider .pb-container {
		padding-bottom: 40px;
	}
	.section-cs-slider .tns-outer .tns-controls {
		right: 0;
		left: 0;
		bottom: -45px;
		top: auto;
	}
	.section-cs-slider .tns-outer .tns-controls button {
		width: calc(50% - 10px);
		margin: 0 5px;
		height: 35px;
	}
	.section-cs-slider .tns-outer .tns-controls button[disabled=""] {
		opacity: 0.25;
	}
}
@media screen and (max-width:400px) {
	.section-cs-slider .pb-container {
		padding-bottom: 28px;
	}
	.section-cs-slider .tns-outer .tns-controls {
		bottom: -36px;
	}
	.section-cs-slider .tns-outer .tns-controls button {
		height: 28px;
	}
	.section-cs-slider .tns-outer .tns-controls button::before {
		font-size: 16px;
	}
}


/** OUR CLIENT IMAGE GRID **/

.client-image-grid.pb-row {
	column-gap: 10px;
	padding: 0 20px 0 20px;
}
.client-image-grid.pb-row .pb-column {
	padding: 20px 0 0 0;
    flex: 1 1;
	justify-content: center;
}
.client-image-grid.pb-row .pb-column img {
	width: 100%;
	height: 100%;
}

@media screen and (max-width:1400px) {
	.client-image-grid.pb-row .pb-column {
		flex: 0 0 25%;
		justify-content: center;
	}
}

/** TEXT ICON BLOCKS **/

.text-block-wrapper {
	height: 100%;
}
.text-block-wrapper.pb-row {
	padding: 100px 0;
}
.text-block-wrapper h3 {
	max-width: 80%;
    display: flex;
    justify-self: center;
	margin-bottom: 80px;
}
.text-block-wrapper strong,
.text-block-wrapper p {
	color: var(--colour-blue) !important;
}
.text-block-wrapper .pb-row-column-4 {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	column-gap: 20px;
	margin: 0;
}
.text-block-wrapper .pb-column.col-sm-3 {
	padding-left: 0px;
	padding-right: 0px;
	flex: 1;
}
.text-block {
	padding: 40px;
	background-color: var(--colour-white);
	height: 100%;
	width: 100%;
}

.client-image-grid.pb-row .pb-column img {
	width: 100%;
	height: 100%;
}

@media screen and (max-width:1400px) {
	.client-image-grid.pb-row .pb-column {
		flex: 0 0 25%;
		justify-content: center;
	}
}

/** PAGE TEMPLATE UPDATES **/
/*Photo Slider*/
.slider-photo.section-cs-slider .pb-block-type-slider .pb-block-content {
	max-width: unset;
	margin: 0 -15px;
	width: auto;
	min-width: 100%;
}
.slider-photo.section-cs-slider .pb-block-type-slider .tns-ovh {
	margin-left: calc((var(--frame-pad) * -1) / 2);
}
.slider-photo.section-cs-slider .pb-block-type-slider .slider .slide {
	padding: 0 15px !important;
}
.slider-photo.section-cs-slider .slider.slider-image .slide img {
	width: 100%;
	object-fit: cover;
	object-position: center;
	/*height: calc(25vw + 250px);*/
	aspect-ratio: 10/8;
}
.slider-photo.section-cs-slider .pb-block-type-slider .slider .slide .slide-content {
	display: block;
}
.slider-photo.section-cs-slider .pb-block-type-slider .slider .slide .slide-content .slide-cell p {
	text-align: right;
	padding: 6px 25px;
	font-family: var(--font-heading);
	margin: 0;
}

.slider-photo.section-cs-slider .tns-outer .tns-controls {
	right: calc((var(--frame-pad) * -1) / 1.42);
  	left: calc((var(--frame-pad) * -1) / 1.42);
}

.slider-photo .pb-row-column-1:first-child .pb-block-type-text {
	margin-bottom: 65px;
}
.slider-photo .pb-row-column-1 .pb-block-type-text h2 {
	display: table;
	position: relative;
	margin: 0;
}
.slider-photo .pb-row-column-1 .pb-block-type-text h2::after {
	content: "";
	display: block;
	top: 50%;
	height: 2px;
	width: 100vw;
	position: absolute;
	background-color: #fff;
	left: calc(100% + 35px);
}

/*Video Slider*/
.slider-video.section-cs-slider .pb-block-type-slider .slider .slide {
	position: relative;
}
.slider-video.section-cs-slider .pb-block-type-slider .slider .slide .slide-content .slide-cell p {
	position: absolute;
	top: 100%;
	width: calc(100% - 30px);
}
.slider-video.section-cs-slider .pb-block-type-slider .slider .slide .slide-content .slide-cell a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.35s var(--transition);
	color: #fff;
}
.slider-video.section-cs-slider .pb-block-type-slider .slider .slide .slide-content .slide-cell a i,
.slider-video.section-cs-slider .pb-block-type-slider .slider .slide .slide-content .slide-cell a em {
	font-size: 50px;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 90px;
	width: 90px;
}
.slider-video.section-cs-slider .pb-block-type-slider .slider .slide .slide-content .slide-cell a i::before,
.slider-video.section-cs-slider .pb-block-type-slider .slider .slide .slide-content .slide-cell a em::before {
	z-index: 2;
	transform: scale(1) translateX(8%);
	transition: all 0.5s var(--transition);
}
.slider-video.section-cs-slider .pb-block-type-slider .slider .slide .slide-content .slide-cell a i::after,
.slider-video.section-cs-slider .pb-block-type-slider .slider .slide .slide-content .slide-cell a em::after {
	content: "";
	z-index: 1;
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	background-color: var(--colour-tertiary);
	transition: all 0.35s var(--transition);
	transform: scale(0);
}
.slider-video.section-cs-slider .slider.slider-image .slide img {
	transition: all 0.5s var(--transition);
	aspect-ratio: 8/10;
	opacity: 0.85;
}
.slider-video.section-cs-slider .pb-block-type-slider .slider .slide:hover .slide-content .slide-cell a,
.slider-video.section-cs-slider .pb-block-type-slider .slider .slide .slide-content .slide-cell a:hover {
	opacity: 1;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}
.slider-video.section-cs-slider .pb-block-type-slider .slider .slide:hover .slide-content .slide-cell a i::before,
.slider-video.section-cs-slider .pb-block-type-slider .slider .slide:hover .slide-content .slide-cell a em::before {
	transform: scale(0.8) translateX(8%);
}
.slider-video.section-cs-slider .pb-block-type-slider .slider .slide:hover .slide-content .slide-cell a i::after,
.slider-video.section-cs-slider .pb-block-type-slider .slider .slide:hover .slide-content .slide-cell a em::after {
	transform: scale(1);
}
.slider-video.section-cs-slider .slider.slider-image .slide:hover img {
	opacity: 1;
}

@media screen and (max-width:1300px) {
	.slider-photo.section-cs-slider .pb-block-type-slider .pb-block-content {
		margin: 0 -5px;
	}
	.slider-photo.section-cs-slider .pb-block-type-slider .tns-ovh {
		margin-left: unset;
	}
	.slider-photo.section-cs-slider .pb-block-type-slider .slider .slide {
		padding: 0 5px !important;
	}
	.slider-photo.section-cs-slider .slider.slider-image .slide img,
	.slider-video.section-cs-slider .slider.slider-image .slide img {
		aspect-ratio: 9/10;
	}
}
@media screen and (max-width:1100px) {
	.slider-photo.section-cs-slider .slider.slider-image .slide img,
	.slider-video.section-cs-slider .slider.slider-image .slide img {
		aspect-ratio: 8/10;
	}
}
@media screen and (max-width:800px) {
	.mobile-adjust .pb-container,
	.mobile-adjust .pb-row:first-child {
		padding-top: 0 !important;
	}
	.mobile-adjust .pb-block-type-text h4 {
		font-size: 20px;
		font-weight: 500;
		line-height: 1.5em;
	}
}
@media screen and (max-width:600px) {
	.tall-banner.section-image-banner {
		min-height: 50vh;
	}
	.slider-photo.section-cs-slider .slider.slider-image .slide img,
	.slider-video.section-cs-slider .slider.slider-image .slide img {
		aspect-ratio: 1/1;
	}
	.slider-photo.section-cs-slider .pb-block-type-slider .slider .slide .slide-content .slide-cell p {
		display: none;
	}
	.slider-photo.section-cs-slider .pb-block-type-slider .pb-block-content {
		margin: 0;
	}
	.slider-photo.section-cs-slider .tns-outer .tns-controls {
		right: 0;
		left: 0;
	}
}
@media screen and (max-width:580px) {
	.slider-photo .pb-row-column-1:first-child .pb-block-type-text {
		display: block;
		margin-bottom: 35px;
		padding: 0 15px;
	}
	.slider-photo .pb-row-column-1 .pb-block-type-text h2 {
		font-size: 22px;
		line-height: 1.4em;
	}
	.slider-photo .pb-row-column-1 .pb-block-type-text h2::after {
		left: calc(100% + 20px);
	}
}
@media screen and (max-width:450px) {
	.slider-photo .pb-row-column-1:first-child .pb-block-type-text {
		padding: 0;
	}
}


/* TRIPLE IMAGE CONTENT */
.triple-image .row .pb-column:first-child {
	display: flex;
	gap: 10px;
}
.triple-image .row .pb-column:first-child .pb-block-type-image {
	position: relative;
	min-width: unset;
	flex: auto 1 1;
	margin: 0;
	min-height: 500px;
}
.triple-image .row .pb-column:first-child .pb-block-type-image img {
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
}

@media screen and (max-width:1600px) {
	.triple-image .row .pb-column:first-child {
		flex-direction: column;
	}
	.triple-image .row .pb-column:first-child .pb-block-type-image {
		min-height: 250px;
	}
}
@media screen and (max-width:1000px) {
	.triple-image .pb-row-column-2 .pb-column {
		width: 50%;
		flex: 50% 0 0;
		max-width: 50%;
	}
	.triple-image .row .pb-column:first-child {
		flex-direction: column;
	}
	.triple-image .row .pb-column:first-child .pb-block-type-image {
		min-height: 200px;
	}
}

/* SECTION CALL TO ACTION */
.section-cta .pb-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	padding: 0 !important;
}
.section-cta .pb-container::before {
	content: "";
	position: absolute;
	right: calc(100% + 100px);
	top: 30px;
	height: 2px;
	background-color: #fff;
	width: 100%;
}
.section-cta .pb-container::after {
	content: "";
	position: absolute;
	right: calc(100% + 104px);
	top: 16px;
	height: 30px;
	width: 30px;
	transform: rotate(45deg);
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}
.section-cta .pb-row-column-2 .pb-column:first-child {
	width: 45%;
	flex: 45% 0 0;
	max-width: 45%;
}
.section-cta .pb-row-column-2 .pb-column:last-child {
	width: 55%;
	flex: 55% 0 0;
	max-width: 55%;
}

.section-cta .row .pb-column:first-child > .pb-block {
	padding-right: calc(var(--frame-ex) / 2);
}
.section-cta .row .pb-column:first-child .pb-block-type-text .pb-block-content > * {
	color: #fff;
}
.section-cta .row .pb-column:first-child .pb-block-type-text h2 {
	line-height: 1.1em;
	font-weight: 700;
}
.section-cta .row .pb-column:last-child {
	padding: 50px;
	background-color: #fff;
	box-shadow: 0 30px 45px rgba(0,0,0,0.15);
}
.section-cta .row .pb-column:last-child .pb-block-type-form .pb-block-content > h2,
.section-cta .row .pb-column:last-child .pb-block-type-form .pb-block-content > p {
	display: none;
}
.section-cta .row .pb-column:last-child .pb-block-type-form .form-caption {
	font-size: 12px;
}

@media screen and (max-width:1000px) {
	.section-cta .pb-row-column-2 .pb-column:last-child,
	.section-cta .pb-row-column-2 .pb-column:first-child {
		width: 100%;
		flex: 100% 1 1;
		max-width: 100%;
	}
	.section-cta .row .pb-column:first-child > .pb-block {
		padding: 0;
	}
	.section-cta .row .pb-column:first-child > .pb-block:last-child {
		padding-bottom: 30px;
	}
}
@media screen and (max-width:450px) {
	.section-cta .row .pb-column:last-child {
		padding: 25px;
	}
}

/** CS FOOTER **/
.section-cs-footer {
	text-align: center;
	position: relative;
}
.section-cs-footer:not(.scs-footer-nobg)::before {
	content: "";
	position: absolute;
	background-image: url('/template/profile/c9phLISwdeRLl67RaKAE0VSb/images/backgrounds/cs-footer-curve(in).png');
	background-size: 100% 80px;
	background-repeat: no-repeat;
	background-position: center bottom;
	width: 100%;
	height: 80px;
	top: -1px;
	left: 0;
}

.section-cs-footer .pb-block-type-button .button-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.section-cs-footer .pb-block-type-button .button-wrapper .button {
	margin: 2px;
}

/*CS OVERSIZE*/
@media screen and (min-width: 2000px) {
	.section-background-inset .pb-row-column-2 {
		padding: calc(var(--pad-huge) * 1.5) calc(var(--pad-huge) * 1.5) 0;
		margin: 0;
	}
	.inset-alt.section-background-inset .col-sm-6:not(:empty):first-child {
		min-height: calc(200px + 10vw);
	}

	.section-cs-banner .col-sm-9 {
		min-height: 75vh;
	}
}

/*CS RESPONSIVE*/
@media screen and (max-width: 1400px) {
	.section-cs-banner .pb-row .col-sm-3 {
		padding-right: calc(var(--frame-ex));
		width: calc(10vw + 250px);
		flex: calc(10vw + 250px) 0 0;
		max-width: calc(10vw + 250px);
	}
	.section-cs-banner .cs-breadcrumb.pb-block-type-button .button,
	.section-cs-banner .cs-service .pb-block-content::before,
	.section-cs-banner .cs-service .button-wrapper .button {
		font-size: 12px;
	}
	.section-cs-banner .col-sm-3 .pb-block-type-image img {
		max-width: 160px;
		max-height: 120px;
		margin-bottom: 25px;
	}
	.section-cs-banner .col-sm-3 .pb-block-type-text h1 {
		font-size: 40px;
	}
	.section-cs-banner .col-sm-3 .pb-block-type-text p {
		font-size: 14px;
	}
	.section-cs-banner .col-sm-9 {
		min-height: 500px;
	}
}

@media screen and (max-width: 1000px) {
	.section-cs-banner .col-sm-9::after {
		display: none;
	}
	.section-cs-banner .col-sm-3 .pb-block-type-text h1 {
		font-size: 35px;
	}

	.section-cs-content .pb-row .pb-column {
		width: 100%;
		flex: 100% 1 1;
		max-width: unset;
	}
	.cs-fit.section-cs-content .pb-row .pb-column .pb-block-type-image {
		min-height: calc(25vw + 100px);
	}

	.inset-overlay.section-background-inset .pb-block-type-image .pb-block-content::after {
		display: none;
	}

	.section-cs-slider .pb-block-type-slider .slider .slide {
		padding: 0 10px !important;
	}

	.section-cs-footer::before {
		background-size: 1200px 80px;
	}

	.section-cs-content .pb-column {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.cs-fit.section-cs-content .pb-column {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.section-cs-content .pb-column:first-child,
	.cs-fit.section-cs-content .pb-column:first-child {
		padding-top: 0;
	}
	.section-cs-content .pb-column:last-child,
	.cs-fit.section-cs-content .pb-column:last-child {
		padding-bottom: 0;
	}
}

@media screen and (max-width: 800px) {
	.section-cs-banner .frame {
		padding-left: 0 !important;
	}
	.section-cs-banner .pb-row {
		padding-top: 25px;
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
	.section-cs-banner .pb-row .col-sm-3,
	.section-cs-banner .pb-row .col-sm-9 {
		width: 100%;
		flex: 100% 1 1;
		max-width: unset;
	}
	.section-cs-banner .pb-row .col-sm-3 {
		padding-left: var(--frame-pad);
		padding-top: 20px;
	}
	.section-cs-banner .pb-row .col-sm-9 {
		min-height: calc(20vw + 150px);
	}
	.section-cs-banner .cs-breadcrumb.pb-block-type-button {
		padding-bottom: 15px;
		margin-bottom: 25px;
		border-bottom: 1px solid rgba(0,0,0,0.15);
	}
	.section-cs-banner .cs-breadcrumb.pb-block-type-button .button-wrapper {
		margin-bottom: 0;
	}
	.section-cs-banner .col-sm-3 .pb-block-type-image img {
		max-width: 140px;
		max-height: 100px;
		margin-bottom: 30px;
	}
	.section-cs-banner .cs-service {
		margin: 50px calc(var(--frame-pad) * -1) 0;
		padding: 15px var(--frame-pad);
		background-color: var(--colour-white-greyish);
		width: 100vw;
	}
	.section-cs-banner .cs-service .pb-block-content {
		margin: 0 -15px;
	}
	.section-cs-banner .cs-service .pb-block-content::before,
	.section-cs-banner .cs-service .button-wrapper .button {
		padding: 5px 15px;
	}

	.section-cs-banner .cs-overlay img,
	.section-cs-banner .cs-overlay svg {
		max-width: 50%;
	}

	.section-cs-banner + .pb-section {
		padding-top: 80px !important;
	}
	.section-cs-content .pb-block-type-text h1,
	.section-cs-content .pb-block-type-text h2 {
		font-size: 24px;
		margin-bottom: 20px;
	}
	.section-cs-content .pb-block-type-text h4 {
		font-size: 22px;
		line-height: 1.4em;
	}
	.section-cs-content .pb-block-type-text p {
		font-size: 13px;
		line-height: 1.7em;
	}
}

@media screen and (max-width: 580px) {
	.section-cs-banner .pb-row {
		padding-top: 0;
	}
	.section-cs-banner + .pb-section {
		padding-top: 60px !important;
	}

	.section-cs-content.pb-section.section-pad-3 {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.section-cs-content.pb-section.section-pad-4,
	.section-cs-content.pb-section.section-pad-5 {
		padding-top: 50px;
		padding-bottom: 50px;
	}
    .section-cs-content .pb-block-type-image + .pb-block-type-button {
		position: static;
		text-align: center;
		margin-bottom: 0px;
		margin-top: 15px;
	}

	.section-cs-slider {
		padding: 20px 0 !important
	}
	.section-cs-slider .frame {
		padding: 0 15px !important;
	}
	.section-cs-slider .pb-block-type-text,
	.section-cs-slider .pb-block-type-image {
		display: none;
	}
	.section-cs-slider .pb-block-type-slider .slider .slide {
		padding: 0 5px !important;
	}
}

@media screen and (max-width: 500px) {
	.section-cs-banner .pb-row .col-sm-9 {
		min-height: calc(15vw + 150px)
	}
	.section-cs-banner .pb-row .col-sm-3 {
		padding-top: 15px;
	}
	.section-cs-banner .cs-breadcrumb.pb-block-type-button .button,
	.section-cs-banner .cs-service .pb-block-content::before,
	.section-cs-banner .cs-service .button-wrapper .button {
		font-size: 10px;
	}
	.section-cs-banner .cs-breadcrumb.pb-block-type-button {
		padding-bottom: 10px;
		margin-bottom: 20px;
	}
	.section-cs-banner .col-sm-3 .pb-block-type-image img {
		max-width: 120px;
		max-height: 70px;
	}
	.section-cs-banner .col-sm-3 .pb-block-type-text h1 {
		font-size: 30px;
		margin-bottom: 15px;
	}
	.section-cs-banner .col-sm-3 .pb-block-type-text p {
		font-size: 13px;
	}
	.section-cs-banner .cs-service {
		margin-top: 40px;
	}

	.cs-fit.section-cs-content .pb-row .pb-column .pb-block-type-image {
		min-height: calc(15vw + 100px);
	}

	.section-cs-footer .pb-block-type-button .button-wrapper .button {
		width: 100%;
	}
	.section-cs-footer .pb-block-type-button .button-wrapper .button::before {
		transform: none;
	}

	.section-cs-content .pb-column {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.cs-fit.section-cs-content .pb-column {
		padding-top: 45px;
		padding-bottom: 45px;
	}
	.section-cs-content .pb-column:first-child,
	.cs-fit.section-cs-content .pb-column:first-child {
		padding-top: 0;
	}
	.section-cs-content .pb-column:last-child,
	.cs-fit.section-cs-content .pb-column:last-child {
		padding-bottom: 0;
	}
	.section-cs-content .pb-block-type-text h1,
	.section-cs-content .pb-block-type-text h2 {
		font-size: 20px;
	}
	.section-cs-content .pb-block-type-text h4 {
		font-size: 18px;
		line-height: 1.4em;
	}
	.section-cs-content .pb-block-type-text p {
		font-size: 12px;
	}
}


/*-----------------------------*/
/*--------- OVERSIZE ----------*/
/*-----------------------------*/


/*-----------------------------*/
/*-------- RESPONSIVE ---------*/
/*-----------------------------*/
@media screen and (max-width:1800px) {
	/*Sections*/
	.section-background-inset .pb-container {
		position: relative;
		width: auto;
		min-width: 100%;
		margin: 0 calc(var(--pad-big) * -1);
	}
	.feature-testimonial h4 {
		font-size: 30px;
		line-height: 1.5;
	}
}
@media screen and (max-width:1600px) {
	.section-brands .logo-list .col-sm-12 {
		padding-left: 0;
		padding-right: 0;
	}
}
@media screen and (max-width:1500px) {
	.landing-websites + .section-horizontal-list .pb-container {
		padding-top: 50px !important;
		padding-bottom: 50px !important;
	}

	.section-image-banner {
		padding-bottom: 100px !important;
	}
}
@media screen and (max-width:1400px) {
	:root {
		--frame-ex: 60px;
		--frame-pad: 5vw;
		--frame-expad: calc(5vw + var(--frame-ex));
		--frame-width: calc(100% - 10vw);
		--frame-exwidth: calc((100% - 10vw) - var(--frame-ex));
	}

	h1, .h1 {
		font-size: 60px;
		line-height: 65px;
		letter-spacing: -0.033em;
	}
	h2, .h2 {
		font-size: 50px;
		line-height: 55px;
		letter-spacing: -0.033em;
	}

	h2:not(.h1) mark::after {
		bottom: 12px;
		height: 10px;
	}

	/*Horizontal Slider*/
	.section-horizontal-list .pb-container .pb-row-column-1:not(:only-child):first-child {
		min-width: 650px;
		padding-right: 80px;
	}
	.horizontal-slider .pb-column {
		min-width: 380px;
		width: 30vw;
	}
	.horizontal-slider .pb-column .pb-block-type-image {
  		height: calc(100vh - 350px);
	}
	.horizontal-slider .pb-column .pb-block-type-text h3 {
		font-size: 40px;
		line-height: 45px;
		margin: -15px 0 10px;
	}

	.hs-small-content.horizontal-slider .pb-column {
		min-width: 450px;
	}
}
@media screen and (max-width:1300px) {
	.frame {
		width:100%;
	}
	.header .frame {
		padding: 0 10px;
	}

	/*Team*/
	.team-list .pb-block-type-slider .slider .text,
	.hs-team.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text .text {
		top: -44px;
	}
	.team-list.hs-2 .pb-block-type-slider .slider h4,
	.hs-team.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text h4 {
		font-size: 14px;
	}
	.team-list.hs-2 .pb-block-type-slider .slider h3,
	.hs-team.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text h3 {
		font-size: 30px;
		line-height: 32px;
	}

	.section-image-banner {
		padding-bottom: 80px !important;
	}

	/*Content Slider*/
	.content-slider.section-overlap-banner .pb-row .col-sm-4-8 {
		padding-top: 0;
		padding-bottom: 0;
	}
}
@media screen and (max-width:1200px) {
	:root {
		--frame-ex: 60px;
		--frame-pad: 6vw;
		--frame-expad: calc(6vw + var(--frame-ex));
		--frame-width: calc(100% - 12vw);
		--frame-exwidth: calc((100% - 12vw) - var(--frame-ex));
	}

	h1, .h1 {
		font-size: 50px;
		line-height: 55px;
	}
	h2, .h2 {
		font-size: 40px;
		line-height: 45px;
	}

	p {
		font-size: 14px;
		line-height: 1.5;
		letter-spacing: 0.1px;
		font-weight: 400;
	}

	h2:not(.h1) mark::after {
		bottom: 9px;
		height: 8px;
	}

	.pb-section {
		padding-left: 0;
		padding-right: 0;
	}
	iframe {
		width:100% !important;
	}

	/*Header*/
	svg.razor-logo {
		width: 160px;
	}

	.nav .navigation > ul.menu > li {
		padding-left: 10px;
		position: relative;
	}
	.nav .navigation > ul.menu > li > a.menulink {
		font-size: 20px;
		line-height: 22px;
		letter-spacing: -0.5px;
		padding: 8px 10px;
	}
	.head-contact > p a.button {
		font-size: 12px;
		padding: 10px 25px 10px;
	}
	.nav .navigation > ul.menu > li ul.menu-dropdown {
		top:60px;
	}

	.fixed-nav.top-menu ul.menu > li a.menulink {
		font-size: 14px;
		line-height: 1em;
	}
	.fixed-nav.top-menu.navigation ul.menu li ul.menu-dropdown {
		top: 36px;
	}

	/*Overlap Banner*/
	.section-overlap-banner .pb-row .col-sm-4-8 {
		padding-left: 0;
	}
	.section-overlap-banner .pb-block-type-text h1 {
		margin-bottom: 20px;
	}
	.section-overlap-banner .pb-block-type-slider .slider .slide {
		height: calc(280px + 15vw);
	}

	/*Horizontal Slider*/
	.section-horizontal-list .pb-container .pb-row-column-1:not(:only-child):first-child {
		min-width: 600px;
	}
	.horizontal-slider .pb-column {
		padding-left: 40px;
	}
	.horizontal-slider .pb-column .pb-block-type-image {
  		height: calc(100vh - 330px);
	}
	.horizontal-slider .pb-column .pb-block-type-text h3 {
		font-size: 35px;
		line-height: 40px;
		margin: -13px 0 10px;
	}

	.hs-small-content.horizontal-slider .pb-column {
		padding-left: 30px;
	}
	.ls-small-content.section-horizontal-list .pb-container .pb-row-column-1:not(:only-child):first-child {
		min-width: 500px;
	}

	/*Form*/
	.section-vertover .pb-block-type-form h2 {
		font-size: 30px;
		margin-bottom: 10px;
	}

	/*Feature testimonial*/
	.feature-testimonial h4 {
		font-size: 28px;
	}

	/*Overview Headers*/
	.landing-websites.section-landing-banner .pb-block-type-image .pb-block-content {
		background-size: 1900px auto;
		animation: wave-repeat 50s infinite linear, landing-image-repeat 8s infinite cubic-bezier(0.5, 0, 0.5, 1);
	}
	@keyframes wave-repeat {
		0% 	 {background-position: center left 0px;}
		100% {background-position: center left 1900px;}
	}
	.landing-websites.section-landing-banner .pb-block-type-text.laptop .pb-block-content {
		width: 400px;
		height: 270px;
		top: calc(50% - 150px);
		left: calc(50% - 190px);
	}
	.landing-websites.section-landing-banner .pb-block-type-text.laptop .pb-block-content::after {
		bottom: -11px;
		left: 8%;
		right: -25%;
		height: 15px;
	}
	.landing-websites.section-landing-banner .pb-block-type-text.laptop::before {
		width: 400px;
		height: 270px;
		top: calc(50% - 150px);
		left: calc(50% - 190px);
		transform: skewX(5deg) scale(0.92,0.99);
	}

	/*Inset*/
	.section-background-inset .pb-container {
		margin: 0 calc(var(--frame-pad) * -1);
	}

	/*Footer*/
	.foot-coltable {
		flex-wrap: wrap;
	}
	.foot-coltable > .col.foot-logo-col {
	    width: 100%;
	    flex: 100% 1 1;
		display: flex;
		align-items: center;
		padding-bottom: 35px;
	}
	.foot-coltable > .col.foot-logo-col .foot-logo {
		min-width: 200px;
		padding-right: 60px;
	}
	.foot-coltable > .col.foot-logo-col .foot-logo p {
		margin-bottom: 0;
	}
	.foot-coltable > .col.foot-logo-col .foot-logo p img {
		vertical-align: top;
	}
	.foot-logo-col .foot-social-links {
		margin-bottom: 0;
		font-size: 22px;
	}
	.foot-logo-col .foot-social-links a {
		padding: 3px 8px;
	}
	.foot-logo-col .foot-social-links a i {
		vertical-align: middle;
	}

	/*Inset Alt*/
	.inset-alt.section-background-inset .row {
		align-items: stretch;
	}

	/*Logo List*/
	.logo-list .pb-row-column-4 {
		padding-bottom: 0;
		justify-content: center;
	}
	.logo-list .pb-row-column-4 .pb-column {
	  	width: 33.333%;
		flex: 33.333% 0 0;
		max-width: 33.333%;
		padding-bottom: 25px;
	}

	/*project slider*/
	.project-slider.section-overlap-banner .tns-outer .tns-controls button::before {
		width: 35px;
		height: 35px;
		font-size: 28px;
		font-weight: 500;
		border: none;
	}
	.project-slider.section-overlap-banner .pb-block-type-slider .slider > .tns-item {
		border-right-width: 10px;
	}
	.project-slider .pb-block-type-slider .post-wrap .post-item .post-body h3 {
		font-size: 28px;
	}
	.project-slider .pb-block-type-slider .post-wrap .post-item .post-body {
		bottom: -13px;
	}
}
@media screen and (max-width:1100px) {
	.portfolio-wrapper {
		padding-top: 200px !important;
	}
	.portfolio-wrapper .pb-container > .button-wrapper {
		border-radius: 25px;
		flex-wrap: wrap;
		width: 100%;
		padding: 10px;
	}
	.portfolio-wrapper .pb-container > .button-wrapper .button {
		padding: 10px 18px 11px;
		font-size: 13px;
	}

	.portfolio-wrapper .gallery {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}

	.gallery .image-container {
	    grid-template-columns: repeat(2, 1fr);
	}
	.gallery .image-container .col {
	    min-height: 250px;
	}
	.gallery .image-container .col:nth-child(9n+8) {
	    grid-column: span 1;
	}
}
@media screen and (max-width:1050px) {
	.fixed-nav.top-menu ul.menu > li.fixed-phone {
		display: none;
	}
}
@media screen and (max-width:1000px) {
	:root {
		--frame-ex: 50px;
	}

	h1, .h1 {
		font-size: 45px;
		line-height: 50px;
	}
	h2, .h2 {
		font-size: 35px;
		line-height: 40px;
	}

	.section-container > .pb-section:first-child .pb-container {
		padding-top: 100px;
	}

	/*Horizontal Slider*/
	.section-horizontal-list .pb-container .pb-row-column-1:not(:only-child):first-child {
		min-width: 55vw;
	}
	.horizontal-slider .pb-column {
		padding-left: 40px;
	}
	.horizontal-slider .pb-column .pb-block-type-text h3 {
		font-size: 35px;
		line-height: 40px;
		margin: -13px 0 10px;
	}

	/*Overlap Banner*/
	.section-overlap-banner .pb-row .col-sm-7-2 {
		margin-left: -80px;
	}
	.section-overlap-banner .pb-block-type-text h1 {
		min-width: unset;
	}

	.section-overlap-banner .pb-row .col-sm-7-2 .pb-block,
	.section-overlap-banner .pb-row .col-sm-7-2 .pb-block-content {
		height: 100%;
		margin: 0;
	}
	.section-overlap-banner .slider-wrapper,
	.section-overlap-banner .slider-wrapper .tns-outer,
	.section-overlap-banner .slider-wrapper .tns-ovh,
	.section-overlap-banner .slider-wrapper .tns-inner,
	.section-overlap-banner .slider-wrapper .tns-slider,
	.section-overlap-banner .slider-wrapper .tns-slider .slide {
		height: 100%;
	}
	.section-overlap-banner .pb-block-type-slider .slider .slide.tns-slide-active + .slide {
		opacity: 0.5;
	}

	/*Horizontal List*/
	.section-horizontal-list .pb-container {
		padding-top: 120px !important;
		padding-bottom: 120px !important;
		align-items: start;
	}

	/*Padding*/
	.pb-section.section-pad-5 {
		padding-top: 120px;
		padding-bottom: 120px;
	}
	.pb-section.section-pad-4 {
		padding-top: 90px;
		padding-bottom: 90px;
	}
	.pb-section.section-pad-3 {
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.pb-section.section-pad-2 {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.pb-section.section-pad-1 {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	/*Background Tab*/
	.section-vertover .pb-row .col-sm-7-2 .pb-block-type-form {
		padding: var(--frame-ex);
	}

	/*Footer*/
	.footer {
		padding: 150px 0 80px;
	}

	.foot-coltable > .col.foot-logo-col {
		padding-bottom: 60px;
	}
	.foot-coltable > .col.foot-contact-col {
		width: 100%;
		flex: 100% 1 1;
		display: flex;
		align-items: center;
		padding-top: 60px;
	}
	.foot-coltable > .col.foot-contact-col .h4 {
		color: var(--colour-tertiary);
	}
	.foot-coltable > .col.foot-contact-col ul.contact-menu {
		display: flex;
		align-items: center;
	}
	.foot-coltable > .col.foot-contact-col ul.contact-menu > li {
		padding-left: 30px;
	}
	.footer ul.contact-menu > li a > i {
		font-size: 20px;
		margin-right: 8px;
		font-weight: 600;
	}

	.foot-lower {
		margin-top: 10px;
		padding-top: 35px;
	}

	/*Brands*/
	.section-brands .logo-list .col-sm-12 > .pb-block {
		width: calc(33.333% - 2px);
		flex: calc(33.333% - 2px) 0 0;
		padding: 20px 15px;
	}

	/*Inset Alt*/
	.inset-alt.section-background-inset .pb-row-column-1:first-child .pb-block-type-image::before {
		top: 0px;
	}
	.inset-alt.section-background-inset .pb-row-column-1:first-child .pb-block-type-image img {
		height: 100%;
	}
	.inset-alt.section-background-inset .pb-row-column-2 {
		padding: var(--pad-big) var(--pad-big) 0;
		margin: 0;
	}
	.inset-alt.section-background-inset .col-sm-6:not(:empty):first-child,
	.inset-alt.section-background-inset .col-sm-6:not(:empty):last-child {
		width: 100%;
		max-width: 600px;
		margin-left: auto;
		margin-right: auto;
		flex: 100% 1 1;
	}
	.inset-alt.section-background-inset .col-sm-6:not(:empty):first-child {
		min-height: unset;
	}
	.inset-alt.section-background-inset .col-sm-6:not(:empty):last-child {
		order: -1;
		padding: 0 0 50px;
	}

	/*Inset*/
	.section-background-inset:not(.inset-alt) .col-sm-6:not(:empty) {
		max-width: 100%;
	}
	.section-background-inset .pb-row-column-2 {
		padding: 0 var(--pad-big) 0;
		margin-top: -50px;
	}
	.section-background-inset:not(.inset-alt) .pb-row-column-1:first-child .pb-block-type-image img {
		position: static;
		max-height: 65vh;
	}

	.section-background-inset .pb-container .pb-row-column-1 {
		margin-left: 0;
		margin-right: 0;
	}
	.section-background-inset .pb-container .pb-row-column-1 .pb-column {
		padding-left: 0;
		padding-right: 0;
	}

	.ia-right.inset-alt.section-background-inset .pb-row-column-2 {
		padding-top: 0;
	}
	.ia-right.inset-alt.section-background-inset .col-sm-6:not(:empty):first-child {
		padding-right: 0;
		padding-top: 0;
		padding-bottom: var(--pad-mid);
		order: -1;
	}

	/*Match*/
	.section-match-content .row:only-child .pb-block-type-text {
		padding-top: var(--pad-mid);
		padding-bottom: var(--pad-mid);
	}

	/*Content Slider*/
	.content-slider {
		padding-top: 0 !important;
	}
}
@media screen and (max-width:900px) {
	/*Horizontal List*/
	.section-horizontal-list .pb-container .pb-row-column-1:not(:only-child):first-child {
		padding-right: 50px;
	}

	/*Logo List*/
	.logo-list .pb-row-column-4,
	.logo-list .pb-row-column-3 {
		padding-bottom: 0;
		justify-content: center;
	}
	.logo-list .pb-row-column-4 .pb-column,
	.logo-list .pb-row-column-3 .pb-column {
	  	width: 50%;
		flex: 50% 0 0;
		max-width: 50%;
		padding-bottom: 25px;
	}

	/*Content Slider*/
	.content-slider.section-overlap-banner .pb-row .col-sm-4-8,
	.content-slider.section-overlap-banner .pb-row .col-sm-7-2 {
		width: 100%;
		flex: 100% 1 1;
		max-width: 100%;
	}
	.content-slider.section-overlap-banner .pb-row .col-sm-4-8 {
		padding-right: 0;
		padding-bottom: 50px;
	}
	.content-slider.section-overlap-banner .pb-block-type-button .button-wrapper {
		margin-top: 25px;
	}
	.content-slider.section-overlap-banner .pb-block-type-slider .slider {
		align-items: stretch;
	}
	.content-slider.section-overlap-banner .pb-block-type-slider .slider .slide img {
		min-height: 200px;
		max-height: 350px;
	}

	.content-slider.section-overlap-banner .slider-wrapper,
	.content-slider.section-overlap-banner .slider-wrapper .tns-outer,
	.content-slider.section-overlap-banner .slider-wrapper .tns-ovh,
	.content-slider.section-overlap-banner .slider-wrapper .tns-inner,
	.content-slider.section-overlap-banner .slider-wrapper .tns-slider,
	.content-slider.section-overlap-banner .slider-wrapper .tns-slider .slide {
	  	height: unset !important;
	}
	.content-slider.section-overlap-banner .pb-row .col-sm-7-2 .pb-block-type-slider {
		margin: 0;
	}
	.content-slider.section-overlap-banner .pb-block-type-slider .slider-wrapper .slide-cell a.button::after {
		transform: scale(1);
	}
	.content-slider.cs-web.section-overlap-banner .pb-block-type-slider .slider-wrapper .slide-cell a.button:not(:hover)::after {
		background-color: var(--colour-primary);
	}
}
@media screen and (max-width:800px) {
	.section-container > .pb-section:first-child .pb-container {
		padding-top: 30px;
	}

	/*Overlap Banner*/
	.section-overlap-banner .pb-row .col-sm-7-2 {
		margin-left: -120px;
	}

	/*Mobile Restructure*/
	.section-background-tab .pb-row .col-sm-4-8,
	.section-background-tab .pb-row .col-sm-7-2,
	.section-vertover .pb-row .col-sm-4-8,
	.section-vertover .pb-row .col-sm-7-2 {
		width: 100%;
		flex: 100% 1 1;
		max-width: unset;
		padding-bottom: 60px;
	}

	.section-vertover .pb-row .col-sm-4-8 {
		padding-top: 60px;
	  	padding-left: calc(var(--frame-ex) / 2);
	  	padding-right: calc(var(--frame-ex) / 2);
	}
	.section-vertover .pb-row .col-sm-7-2 .pb-block-type-form {
		margin-top: 0;
		margin-bottom: 0;
	}

	.feature-testimonial {
	  	max-width: 500px;
		margin: 0 auto;
		text-align: center;
	}
	.feature-testimonial h4 {
	  	font-size: 26px;
	}
	.feature-testimonial p {
	  	justify-content: center;
		text-align: left;
	}

	/*Inset*/
	.inset-alt.section-background-inset .row {
		flex-direction: column;
	}
	.inset-alt.section-background-inset .col-sm-6:not(:empty) {
		max-width: 100%;
		width: 100%;
	}
	.inset-alt.section-background-inset .col-sm-6:not(:empty):last-child,
	.section-background-inset .col-sm-6:not(:empty):last-child {
		margin: 0;
		padding: 50px;
	}
	.inset-alt.section-background-inset .col-sm-6:not(:empty):last-child {
		padding-top: 0;
	}

	/*Horizontal Slider*/
	.hs-full.horizontal-slider .pb-column.col-sm-12 {
		flex-wrap: wrap;
	}
	.hs-full.horizontal-slider .pb-column.col-sm-12 > .pb-block {
		width: 100%;
		padding-left: 0;
		padding-top: 40px;
		min-width: unset;
	}
	.hs-full.horizontal-slider .pb-column.col-sm-12 > .pb-block:first-child {
		padding-top: 0px;
	}
	.hs-full.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text img {
		object-position: center;
	}
	.hs-full.horizontal-slider .pb-column .pb-block-type-text h3 {
		font-size: 30px;
		line-height: 35px;
	}

	/*Project Slider*/
	.project-slider + .project-slider {
		padding-top: 0 !important;
	}
	.project-slider.section-overlap-banner .pb-row .col-sm-4-8,
	.pb-section.pb-section-row-1.project-slider .pb-row.row.pb-row-column-2 {
		width: 100%;
    	flex: 100% 0 0;
		padding: 0;
	}
	.project-slider.section-overlap-banner .pb-row .col-sm-4-8 p {
		margin-right: 0;
		max-width: 100%;
	}
	.project-slider.section-overlap-banner .pb-row .col-sm-7-2 {
		width: 100%;
    	flex: 100% 0 0;
		position: relative;
		margin-top: 25px;
	}
	.project-slider.section-overlap-banner .tns-outer .tns-controls {
		top: 0;
		left: calc(var(--frame-pad) * -1);
		right: calc(var(--frame-pad) * -1);
		bottom: 0;
	}
	.project-slider.section-overlap-banner .pb-block-type-text h2 {
		margin-bottom: 15px;
	}
	.project-slider.section-overlap-banner .pb-row .col-sm-7-2 .pb-block-type-slider {
		margin-left: 0;
		margin-bottom: 0;
	}
	.project-slider.section-overlap-banner .slider-wrapper,
	.project-slider.section-overlap-banner .slider-wrapper .tns-outer,
	.project-slider.section-overlap-banner .slider-wrapper .tns-ovh,
	.project-slider.section-overlap-banner .slider-wrapper .tns-inner,
	.project-slider.section-overlap-banner .slider-wrapper .tns-slider,
	.project-slider.section-overlap-banner .slider-wrapper .tns-slider .slide,
	.project-slider.section-overlap-banner .pb-block-type-slider .slider .slide.tns-slide-active,
	.project-slider .pb-block-type-slider .post-wrap .post-item .post-image img {
		height: calc(150px + 35vw);
	}
	.project-slider .pb-block-type-slider .post-wrap .post-item .post-body {
		display: none;
	}

	/*Match*/
	.section-match-content .row:only-child .pb-column {
		width: 100%;
		max-width: 100%;
		flex: 100% 1 1;
	}
	.section-match-content .row:only-child .pb-column:first-child {
	  	padding-left: 0;
	}
	.section-match-content .row:only-child .pb-column:last-child {
	  	padding-left: calc(var(--frame-ex) / 2);
	}
	.section-match-content .pb-column .pb-block-type-image,
	.section-match-content .pb-column .pb-block-type-image .pb-block-content,
	.section-match-content .pb-column .pb-block-type-image .pb-block-content img {
		min-height: 350px;
	}
	.section-match-content .row:only-child .pb-column:first-child .pb-block-type-text {
		padding-right: calc(var(--frame-ex) / 2);
		padding-left: calc(var(--frame-ex) / 2);
		margin-right: 0;
		padding-top: 0;
	}
	.section-match-content .row:only-child .pb-column:last-child .pb-block-type-text {
		margin-left: 0px;
	}

	/*Basic*/
	.section-basic-content .pb-row-column-2 .pb-column {
		width: 100%;
		max-width: 100%;
		flex: 100% 1 1;
	}
	.section-basic-content .pb-row-column-2 .pb-column:first-child {
		padding-bottom: var(--pad-mid);
	}
	.section-basic-content .pb-row-column-2 .pb-column:first-child .pb-block-type-text {
		padding-right: 0;
	}
	.section-basic-content .pb-row-column-2 .pb-column:last-child .pb-block-type-text {
		padding-left: 0;
	}
	.section-basic-content .pb-row-column-2 .pb-column:first-child .pb-block-type-image,
	.section-basic-content .pb-row-column-2 .pb-column:last-child .pb-block-type-image {
		margin-left: 0;
		margin-right: 0;
	}

	.section-image-banner {
		padding-bottom: 60px !important;
	}

	/*Gallery*/
	.portfolio-wrapper {
		padding-top: 135px !important;
	}
	.portfolio-wrapper .pb-container.text-center > h2 {
		margin-bottom: 10px;
	}
	.portfolio-wrapper .pb-container.text-center > h2 + p {
		opacity: 0.5;
	}

	.portfolio-wrapper .gallery {
		padding-top: 30px !important;
		padding-bottom: 60px !important;
	}

	.gallery .image-container {
	    grid-template-columns: repeat(2, 1fr);
	}
	.gallery .image-container .col {
	    min-height: 250px;
	}
	.gallery .image-container .col:nth-child(9n+8) {
	    grid-column: span 1;
	}

	.gallery .image-wrap .iw-card {
		padding: 25px;
		text-align: center;
	}
	.portfolio-wrapper .content_img .iw-card .h3 {
		margin: 0 0 6px;
  		font-size: 20px;
	}
	.portfolio-wrapper .content_img .iw-card .h4 {
		margin: 0 0 20px;
		font-size: 14px;
	}
	.portfolio-wrapper .content_img .iw-card .button {
		padding: 8px 20px 10px;
  		font-size: 13px;
	}
}
@media screen and (max-width:767px) {
	.pb-block > .pb-block-content {
		margin-top: 0px;
		margin-bottom: 0px;
	}

	/*Lock Scroll (override)*/
	.lock-scroll {
		height: auto !important;
	}
	.lock-scroll > .pb-container {
		transform: none !important;
	}
	.section-horizontal-list.fixed .pb-container {
	  	position: static;
		/*transition: transform 0.15s var(--transition);*/
	}

	.section-horizontal-list .pb-container {
		flex-direction: column;
		min-height: unset;
	}
	.section-horizontal-list .pb-container .pb-row-column-1:not(:only-child):first-child {
		padding-right: var(--frame-pad);
		padding-bottom: 30px;
		min-width: unset;
	}
	.section-horizontal-list .pb-container .pb-row-column-1:not(:only-child):first-child .button-wrapper {
	  	margin-top: 30px;
	}

	.horizontal-slider {
		flex-wrap: wrap;
	}
	.horizontal-slider .pb-column {
		min-width: unset;
		max-width: unset;
		flex: 100% 1 1;
		width: 100%;

		padding-left: 0;
		padding-top: 40px;
	}
	.horizontal-slider .pb-column .pb-block-type-text {
		padding-right: var(--frame-pad);
		max-width: 500px;
	}
	.horizontal-slider .pb-block-type-text.ease-in.animate-up,
	.horizontal-slider .pb-block-type-text.ease-in.animate-down {
		animation: fadeInLeft 1.5s forwards calc(1 * 300ms) cubic-bezier(0.31, 0.87, 0.32, 1);
	}
	.horizontal-slider .pb-column .pb-block-type-image {
		height: calc(150px + 20vw);
	}
	.horizontal-slider .pb-block-type-image.ease-in.animate-up,
	.horizontal-slider .pb-block-type-image.ease-in.animate-down {
		animation: fadeInLeft 1.5s forwards calc(1 * 150ms) cubic-bezier(0.31, 0.87, 0.32, 1);
	}

	/*Alt Slider*/
	.ls-small-content.section-horizontal-list .pb-container .pb-row-column-1:not(:only-child):first-child {
		min-width: unset;
	}
	.hs-small-content.horizontal-slider .pb-column {
		padding-left: 0px;
		padding-right: var(--frame-pad);
	}
	.hs-small-content.horizontal-slider .pb-column:hover {
		transform: none;
	}
	.hs-small-content.horizontal-slider .pb-column::before {
		display: none;
	}

	/*Team Slider*/
	.hs-full.horizontal-slider .pb-column.col-sm-12 > .pb-block.hs-title h2 {
		font-size: 15px;
		left: 0;
	}

	.team-list.section-horizontal-list .pb-container {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}
	.hs-team.hs-full.horizontal-slider .pb-column.col-sm-12 {
		flex-wrap: wrap;
	}
	.hs-team.hs-full.horizontal-slider .pb-column.col-sm-12 > .pb-block {
		width: 50%;
		padding-right: var(--frame-pad);
		max-width: 50%;
		min-width: unset;
	}
	.hs-team.hs-full.horizontal-slider .pb-column.col-sm-12 > .pb-block.hs-title:not(:first-child) {
		margin-left: 1px;
		margin-top: 80px;
	}
	.hs-team.hs-full.horizontal-slider .pb-column.col-sm-12 > .pb-block.hs-title:not(:first-child) + .pb-block {
		margin-left: -1px;
		margin-top: 80px;
	}

	.hs-team.hs-full.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text img {
  		height: 350px;
	}

	.team-list .pb-block-type-slider .slider .text,
	.hs-team.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text .text {
		top: -40px;
		left: 10px;
	}
	.team-list.hs-2 .pb-block-type-slider .slider h4,
	.hs-team.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text h4 {
		font-size: 12px;
	}
	.team-list.hs-2 .pb-block-type-slider .slider h3,
	.hs-team.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text h3 {
		font-size: 20px;
		line-height: 22px;
	}
}
@media screen and (max-width:700px) {
	.section-vertover .pb-row-column-1 .col-sm-12 .pb-block-type-form .form-block .field {
		width: 100%;
	}

	.section-background-inset .pb-row-column-2 {
		padding: 0 var(--frame-pad) 0;
	}
	.section-background-inset .col-sm-6:not(:empty) .pb-block-type-text blockquote {
		font-size: 18px;
	}
}
@media screen and (max-width:650px) {
	.ease-in {
		animation-delay: 0ms !important;
	}

	.mob-hide {
		display: none;
	}
	.mob-show {
		display: block !important;
	}

	h1, .h1 {
		font-size: 40px;
		line-height: 45px;
	}
	h5, .h5 {
		font-size: 18px;
	}

	h1 mark::after,
	h2 mark::after,
	h2:not(.h1) mark::after,
	h3 mark::after,
	h4 mark::after {
		width: calc(100% + 10px);
		left: -5px;
		bottom: 10px;
		height: 10px;
		z-index: -1;
	}

	h2:not(.h1) mark::after {
	  bottom: 8px;
	  height: 8px;
	}

	/*Overlap Banner*/
	.section-overlap-banner .pb-row {
		flex-direction: column;
	}
	.section-overlap-banner .pb-row .col-sm-4-8,
	.section-overlap-banner .pb-row .col-sm-7-2,
	.section-overlap-banner .pb-row .pb-column {
		width: 100%;
		flex: 100% 1 1;
		max-width: unset;
	}

	.section-overlap-banner .pb-row .col-sm-4-8 {
		padding-top: 20px;
		padding-bottom: 0;
		margin-bottom: -5px;
	}
	.section-overlap-banner .pb-row .col-sm-7-2 {
	  	margin-left: 0px;
	}
	.section-overlap-banner .pb-row .col-sm-7-2 .pb-block-type-slider {
		margin-left: -40px;
		margin-bottom: 40px;
	}

	.section-overlap-banner:not(.content-slider) .pb-block-type-text h1 {
		margin: 0;
		text-align: left;
		max-width: 400px;
	}
	.section-overlap-banner:not(.content-slider) .pb-block-type-text p {
		margin: 0;
		text-align: left;
		max-width: 400px;
	}
	.section-overlap-banner:not(.content-slider) .pb-block-type-button .button-wrapper {
	  	margin-top: 30px;
		text-align: left;
	}

	.section-overlap-banner .slider-wrapper,
	.section-overlap-banner .slider-wrapper .tns-outer,
	.section-overlap-banner .slider-wrapper .tns-ovh,
	.section-overlap-banner .slider-wrapper .tns-inner,
	.section-overlap-banner .slider-wrapper .tns-slider,
	.section-overlap-banner .slider-wrapper .tns-slider .slide {
		height: 260px;
	}
	.section-overlap-banner .pb-block-type-slider .slider {
		display: flex;
		align-items: center;
	}
	.section-overlap-banner .pb-block-type-slider .slider .slide.tns-slide-active + .slide,
	.section-overlap-banner .pb-block-type-slider .slider .slide {
		transition-delay: 0.4s;
		filter: grayscale(1);
		opacity: 0.4;
	}
	.section-overlap-banner .pb-block-type-slider .slider .slide.tns-slide-active {
	  	opacity: 1;
		height: 280px;
		filter: grayscale(0);
	}

	/*Overview Header*/
	.landing-websites.section-landing-banner .pb-block-type-text.laptop .pb-block-content {
		width: 320px;
		height: 220px;
		top: calc(50% - 130px);
		left: calc(50% - 160px);
	}
	.landing-websites.section-landing-banner .pb-block-type-text.laptop .pb-block-content::after {
		bottom: -9px;
		left: 8%;
		right: -25%;
		height: 12px;
	}
	.landing-websites.section-landing-banner .pb-block-type-text.laptop::before {
		width: 320px;
		height: 220px;
		top: calc(50% - 130px);
		left: calc(50% - 160px);
	}
	.section-landing-banner .pb-block-type-text h1 {
		font-size: 80px;
	}
	.landing-websites.section-landing-banner .pb-block-type-button a.button {
		color: var(--colour-primary);
	}

	.landing-design.section-landing-banner .pb-block-type-image img {
		min-width: 800px;
		left: calc(50% - 450px);
	}
	.landing-design.section-landing-banner .pb-block-type-text h1::after {
		display: none;
	}

	/*Footer*/
	.footer .h4 {
		font-size: 20px;
		line-height: 22px;
	}
	.foot-coltable > .col.foot-contact-col {
		display: block;
	}
	.foot-coltable > .col.foot-contact-col ul.contact-menu > li {
		padding-left: 0px;
		padding-right: 20px;
	}
	.footer ul.contact-menu > li a {
		color: var(--colour-tertiary);
	}
	.foot-lower {
  		margin-top: 15px;
	}

	/*projects slider*/
	.project-slider.section-overlap-banner .frame {
		padding-bottom: 45px !important
	}
	.project-slider.section-overlap-banner .tns-outer .tns-controls {
		width: 100%;
		top: auto;
		left: 0;
		right: 0;
		bottom: 0;
		padding-top: 12px;
		justify-content: center;
		position: relative;
	}
	.project-slider.section-overlap-banner .tns-outer .tns-controls button {
		width: 60px !important;
		margin: 0 3px;
		height: 30px;
		border-radius: 30px;
		border: 1px solid var(--colour-dark) !important;
	}
	.project-slider.section-overlap-banner .tns-outer .tns-controls button[disabled=""] {
		opacity: 0.25 !important;
	}
	.project-slider.section-overlap-banner .tns-outer .tns-controls button::before {
		font-size: 18px;
		font-weight: 400;
		width: unset;
		height: unset;
		color: var(--colour-dark);
	}
}
@media screen and (max-width:580px) {
	/*svg.razor-logo {
		width: 140px;
		position: relative;
		z-index: 102;
	}*/
	.head-main > .coltable {
		padding-top: 10px;
	}
	.header .head-main > .coltable > .col {
		display: table-cell;
		width: auto !important;
	}

	/*Brands*/
	.section-brands .logo-list .col-sm-12 {
		padding-left: 15px;
		padding-right: 15px;
	}

	/*testimonial*/
	.feature-testimonial h4 {
		font-size: 20px;
	}

	/*Gallery*/
	.portfolio-wrapper {
		padding-top: 120px !important;
	}
	.portfolio-wrapper .pb-container > .button-wrapper {
		border-radius: 25px;
		flex-wrap: wrap;
		width: 100%;
		padding: 10px;
	}
	.portfolio-wrapper .pb-container > .button-wrapper .button {
		width: 100%;
		padding: 10px 18px 11px;
		font-size: 13px;
	}

	.portfolio-wrapper .gallery {
		padding-top: 30px !important;
		padding-bottom: 60px !important;
	}

	.gallery .image-container {
	    grid-template-columns: repeat(2, 1fr);
	}
	.gallery .image-container .col {
	    min-height: 250px;
	}
	.gallery .image-container .col:nth-child(9n+1),
	.gallery .image-container .col:nth-child(9n+7) {
		grid-row: span 1;
		grid-column: span 2;
	}
}
@media screen and (max-width:575px) {

}
@media screen and (max-width:500px) {
	.section-overlap-banner .slider-wrapper,
	.section-overlap-banner .slider-wrapper .tns-outer,
	.section-overlap-banner .slider-wrapper .tns-ovh,
	.section-overlap-banner .slider-wrapper .tns-inner,
	.section-overlap-banner .slider-wrapper .tns-slider,
	.section-overlap-banner .slider-wrapper .tns-slider .slide {
		height: 200px;
	}
	.section-overlap-banner .pb-block-type-slider .slider .slide.tns-slide-active {
		height: 230px;
	}

	.section-horizontal-list .pb-container {
		padding-top: 80px !important;
		padding-bottom: 80px !important;
	}

	.h3, h3,
	.h4, h4 {
		line-height: 1.3;
	}

	/*Padding*/
	.pb-section.section-pad-5 {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.pb-section.section-pad-4 {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.pb-section.section-pad-3 {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.pb-section.section-pad-2 {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.pb-section.section-pad-1 {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	/*Footer*/
	.foot-coltable > .col.foot-logo-col {
		display: block;
		text-align: center;
		padding-bottom: 25px;
	}
	.foot-coltable > .col.foot-logo-col .foot-logo {
	  	min-width: 140px;
	  	padding-right: 0px;
	}
	.foot-logo-col .foot-social-links {
		padding-top: 20px;
		justify-content: center;
	}

	.foot-coltable > .col {
		padding-left: 0px;
		padding-right: 0px;
		padding-top: 25px;
		padding-bottom: 25px;
		width: 100%;
		flex: 100% 1 1;
		text-align: center;
	}

	.foot-coltable > .col.foot-contact-col {
		padding-top: 25px;
	}
	.foot-coltable > .col.foot-contact-col ul.contact-menu {
		flex-direction: column;
		align-items: center;
	}
	.foot-coltable > .col.foot-contact-col ul.contact-menu > li {
		padding-right: 0;
	}

	.foot-logo-col .foot-social-links {
		margin-left: 0;
		margin-right: 0;
	}

	.foot-lower p {
		display: block;
		text-align: center;
		padding-top: 25px;
		color: #fff;
	}
	.foot-lower p a {
		display: block;
		padding-top: 10px;
		color: var(--colour-tertiary);
	}

	/*Brands*/
	.section-brands .logo-list .col-sm-12 > .pb-block {
		width: calc(50% - 2px);
		flex: calc(50% - 2px) 1 1;
		padding: 20px 15px;
	}
	.section-brands .logo-list .col-sm-12 > .pb-block img {
		max-height: 90px;
	}

	/*Alt Slider*/
	.hs-small-content.horizontal-slider .pb-column {
		min-width: unset;
	}
	.hs-small-content.horizontal-slider .pb-column .pb-block {
		padding: 0 15px 0;
	}
	.hs-small-content.horizontal-slider .pb-column .pb-block:nth-child(2) {
	  	padding-top: 25px;
	}
	.hs-small-content.horizontal-slider .pb-column .pb-block:last-child {
	  	padding-bottom: 20px;
	}
	.hs-small-content.horizontal-slider .pb-column .pb-block-type-text h5 {
		line-height: 1.1;
		margin-bottom: 5px;
	}

	/*Inset*/
	.section-background-inset .col-sm-6:not(:empty):last-child,
	.ia-right.inset-alt.section-background-inset .col-sm-6:not(:empty):last-child,
	.inset-alt.section-background-inset .col-sm-6:not(:empty):first-child {
		padding: 35px;
	}

	.ia-right.inset-alt.section-background-inset .col-sm-6:not(:empty):first-child {
		padding-right: 0;
		padding-top: var(--pad-big);
	}

	.inset-alt.section-background-inset .col-sm-6:not(:empty):first-child {
		text-align: center;
	}
	.inset-alt.section-background-inset .col-sm-6:not(:empty):last-child {
		text-align: center;
		padding-left: 0;
		padding-right: 0;
	}

	/*Form*/
	.section-vertover .pb-row-column-1 .col-sm-12 .pb-block-type-form,
	.section-vertover .pb-row .col-sm-7-2 .pb-block-type-form {
		padding: 35px;
	}

	/*Inset Alt*/
	.section-background-inset .pb-row-column-2,
	.inset-alt.section-background-inset .pb-row-column-2 {
		padding-left: var(--frame-pad);
		padding-right: var(--frame-pad);
	}

	/*Content Slider*/
	.content-slider.section-overlap-banner .pb-block-type-slider .slider .slide img {
		min-height: 150px;
		max-height: 200px;
	}
	.content-slider.section-overlap-banner .pb-block-type-slider .slider-wrapper .slide-cell {
		padding-left: 0;
	}
	.content-slider.section-overlap-banner .pb-block-type-slider .slider-wrapper .slide-cell h3 {
		font-size: 24px;
	}
	.content-slider.section-overlap-banner .pb-block-type-slider .slider-wrapper .slide-cell h5 {
		font-size: 16px;
	}
	.content-slider.section-overlap-banner .pb-block-type-slider .slider-wrapper .slide-cell p {
		font-size: 13px;
	}

	.section-image-banner .pb-block-type-text h4,
	.section-image-banner .pb-block-type-text .h4,
	.section-overlap-banner .pb-block-type-text h4,
	.section-overlap-banner .pb-block-type-text .h4 {
		font-size: 13px;
	}

	/*Project*/
	.project-index-header.section-overlap-banner {
		padding-bottom: 40px !important;
	}
	.project-index-header.section-overlap-banner .pb-block-type-text h2 {
		margin-bottom: 20px;
	}
	.project-index-header.section-overlap-banner .pb-row .col-sm-7-2 .pb-block-type-slider {
		margin-left: 0;
	}
	.project-index-header.section-overlap-banner .pb-row .col-sm-4-8 {
		margin-bottom: 50px;
	}
	.project-index-header.section-overlap-banner .pb-block-type-slider .slider.slider-content .slide-cell h3 {
		font-size: 16px;
	}
	.project-index-header.section-overlap-banner .pb-block-type-slider .slider.slider-content .slide-cell h3 a {
		padding: 15px 15px;
	}

	.project-slider.pb-section.section-pad-5 {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}
@media screen and (max-width:450px) {
	:root {
		--frame-ex: 35px;
	}

	h1, .h1 {
		font-size: 32px;
		line-height: 1.1em;
	}
	h2, .h2,
	h3, .h3 {
		font-size: 28px;
		line-height: 1.1em;
	}

	.section-background-tab .pb-block-type-button .button-wrapper {
		flex-wrap: wrap;
	}
	.section-background-tab .pb-block-type-button .button-wrapper .button {
		flex: auto 1 1;
  		text-align: center;
	}
	.section-background-tab .pb-block-type-button .button-wrapper .button::before {
		transform: none;
	}

	/*Overview Header*/
	.landing-websites.section-landing-banner .pb-block-type-image .pb-block-content {
		background-size: 1600px auto;
	}
	@keyframes wave-repeat {
		0% 	 {background-position: center left 0px;}
		100% {background-position: center left 1600px;}
	}
	.landing-websites.section-landing-banner .pb-block-type-text.laptop .pb-block-content {
		width: 280px;
		height: 190px;
		top: calc(50% - 120px);
		left: calc(50% - 142px);
	}
	.landing-websites.section-landing-banner .pb-block-type-text.laptop .pb-block-content::after {
		bottom: -8px;
		left: 8%;
		right: -25%;
		height: 10px;
	}
	.landing-websites.section-landing-banner .pb-block-type-text.laptop::before {
		width: 280px;
		height: 190px;
		top: calc(50% - 120px);
		left: calc(50% - 142px);
	}
	.section-landing-banner .pb-block-type-text h1 {
		font-size: 55px;
	}
	.landing-design.section-landing-banner .pb-block-type-text h1 {
	  font-size: 65px;
	}

	/*Team*/
	.hs-team.hs-full.horizontal-slider .pb-column.col-sm-12 > .pb-block {
		width: 100%;
		padding-right: var(--frame-pad);
		max-width: 100%;
		min-width: unset;
	}
	.hs-team.hs-full.horizontal-slider .pb-column.col-sm-12 > .pb-block.hs-title:not(:first-child) {
		margin-left: 0px;
	}
	.hs-team.hs-full.horizontal-slider .pb-column.col-sm-12 > .pb-block.hs-title:not(:first-child) + .pb-block {
		margin-left: 0px;
		margin-top: 0px;
	}
	.hs-team.hs-full.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text img {
		height: 400px;
	}
	.post-content.news figure{
		float: none !important;
		margin: 0 !important;
	}
	.post-content.news img{
		margin: 0 !important;
	}
}
@media screen and (max-width:400px) {
	h1, .h1 {
		font-size: 35px;
		line-height: 40px;
	}
	h2, .h2 {
		font-size: 30px;
		line-height: 35px;
	}

	.section-vertover .pb-row .col-sm-7-2 .pb-block-type-form {
	  	padding: 35px;
		margin-left: -10px;
		margin-right: -10px;
	}
	.section-vertover .pb-block-type-form .form-block {
		margin: 20px -25px 0;
	}
	.section-vertover .pb-block-type-form .pb-block-content > h2
	.section-vertover .pb-block-type-form .pb-block-content > p {
		text-align: center;
	}

	.section-background-inset .col-sm-6:not(:empty) .pb-block-type-text blockquote {
		font-size: 15px;
	}

	.section-landing-banner .pb-row {
		padding: 150px 0 200px;
		min-height: calc(100vh + -15px);
	}

	.form-block .field label.inline,
	.form-block .field label.inline-input {
		margin-bottom: 0;
	}
	.form-block .field label.inline,
	.form-block .field label.inline-input,
	.form-block .field input[type="radio"],
	.form-block .field input[type="checkbox"] {
		display: inline-block;
		width: auto !important;
	}

	/*testimonial*/
	.feature-testimonial h4 {
		font-size: 18px;
	}

	/*gallery*/
	.gallery .image-container .col,
	.gallery .image-container .col:nth-child(9n+8) {
		grid-row: span 1;
		grid-column: span 2;
	}
}
@media screen and (max-width:350px) {
	/*Brands*/
	.section-brands .logo-list .col-sm-12 > .pb-block {
		padding: 15px 10px;
	}

	/*Team*/
	.hs-team.hs-full.horizontal-slider .pb-column.col-sm-12 .pb-block-type-text img {
		height: 320px;
	}

	.section-background-inset .col-sm-6:not(:empty):last-child,
	.ia-right.inset-alt.section-background-inset .col-sm-6:not(:empty):last-child,
	.inset-alt.section-background-inset .col-sm-6:not(:empty):first-child {
		padding: 25px;
	}
}


/*------------------------------*/
/*-------- MOBILE MENU ---------*/
/*------------------------------*/
@media screen and (min-width: 800px) {
    .navigation {
        background: none;
        border: none;
    }
    .navigation ul.menu ul.menu-dropdown {
        top: 52px;
    }
    .navigation ul.menu ul.menu-dropdown li {
        border-color: #444;
    }
    .navigation ul.menu li a {
        color: #bbb;
    }
}
@media screen and (max-width:800px) {
	/*temp*/
	.head-frame > .head-contact {
		display: none;
	}
	.head-frame > .head-main {
		padding-right: var(--frame-pad);
	}

	/*MOBILE MENU BUTTON*/
    .header .head-main .col.nav .mobile-menu-trigger {
        z-index: 9999;
        font-size: 0px;
        color: var(--colour-primary);
        width: 40px;
        height: 40px;
        display: flex;
        cursor: pointer;
        flex-direction: column;
        justify-content: center;
    }
    .header .head-main .col.nav .mobile-menu-trigger i.fa-bars {
        display: flex;
        flex-direction: column;
        justify-content: center;
		align-items: flex-end;
		transform: none;
    }
    .header .head-main .col.nav .mobile-menu-trigger i.fa-bars::before,
    .header .head-main .col.nav .mobile-menu-trigger i.fa-bars::after {
        content: "";
        width: 30px;
        height: 4px;
        top: 2px;
        position: relative;
        background-color: var(--colour-primary);
        transition: all 0.2s cubic-bezier(0,0,0.1,0.9) 0.3s, transform 0.2s cubic-bezier(0,0,0.1,0.9) 0s, background-color 0.2s cubic-bezier(0,0,0.1,0.9) 0s;
    }
    .header .head-main .col.nav .mobile-menu-trigger i.fa-bars::after {
        top: -14px;
		width: 40px;
        box-shadow: 0px 24px 0 var(--colour-primary);
    }
    .header .head-main .col.nav .mobile-menu-trigger.open i.fa-bars::before {
        top: 2px;
		width: 40px;
        background-color: #fff;
        transform: rotate(45deg);
        transition: all 0.2s cubic-bezier(0,0,0.1,0.9), transform 0.2s cubic-bezier(0,0,0.1,0.9) 0.3s, background-color 0.2s cubic-bezier(0,0,0.1,0.9) 0s;
    }
    .header .head-main .col.nav .mobile-menu-trigger.open i.fa-bars::after {
        top: -2px;
        background-color: #fff;
        box-shadow: 0 0px 0 #fff;
        transform: rotate(-45deg);
        transition: all 0.2s cubic-bezier(0,0,0.1,0.9), transform 0.2s cubic-bezier(0,0,0.1,0.9) 0.3s, background-color 0.2s cubic-bezier(0,0,0.1,0.9) 0s;
    }

	/*Alternate Menu Button*/
	body.header-overlay .header .head-main .col.nav .mobile-menu-trigger {
		color: #fff;
	}
	body.header-overlay .header .head-main .col.nav .mobile-menu-trigger i.fa-bars::before,
    body.header-overlay .header .head-main .col.nav .mobile-menu-trigger i.fa-bars::after {
		background-color: #fff;
	}
    body.header-overlay .header .head-main .col.nav .mobile-menu-trigger:not(.open) i.fa-bars::after {
		box-shadow: 0 24px 0 #fff;
	}

	/*Menu*/
	.header .head-main .coltable > .nav {
		flex: 60px 0 0;
		padding-left: 0;
		justify-content: flex-start;
	}
	.header > .frame .logo-wrap {
		width: auto;
	}
	.header .head-col > .col.mobile-nav {
		display: block !important;
		position: static;
		order: 2;
	}
	.header .coltable.head-col > .head-sub {
		min-width: 110px;
		max-width: 110px;
		flex: 110px 0 0;
	}
	.header .head-main .col.nav .mobile-menu-trigger {
		margin-left: auto;
		position: relative;
		z-index: 101;
	}

	body:not(.header-overlay) .top-menu ul.menu > li a.menulink,
	body:not(.header-overlay) .nav .navigation > ul.menu > li > a.menulink {
		color: #fff;
	}

	.navigation {
		top: 0;
		width: 100%;
		padding: 45px;
		max-width: 380px;
		min-height: 100vh;
		padding-top: 110px;
		box-shadow: 0 0 0 500px rgba(0,0,0,0);
		background-color: rgba(46, 79, 194, 0.95) !important;
		-webkit-backdrop-filter: blur(50px);
		backdrop-filter: blur(50px);
		border-radius: 0;
		position: absolute;
		z-index: 100;
	}
	body.mobile-menu-active .navigation {
		box-shadow: 0 0 0 500px rgba(0,0,0,0.35);
	}
	/*.navigation::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		opacity: 0.1;
		background-image: url("/template/profile/c9phLISwdeRLl67RaKAE0VSb/images/backgrounds/noise-inverted.png");
		background-repeat: repeat;
		background-size: 100px;
	}
	body.fancy-menu-open .navigation::before {
		opacity: 0;
	}*/
	.navigation ul.menu {
		margin-left: 0;
		width: 100% !important;
	}
	.nav .navigation > ul.menu > li {
		padding-left: 0;
	}
	.nav .navigation > ul.menu > li > a.menulink {
		width: auto;
		text-align: right;
		padding: 8px 0;
		font-size: 36px;
		font-weight: 600;
		line-height: 1;
		opacity: 1;
		margin: 0 0 0 auto;
		display: table;
	}
	.nav .navigation > ul.menu > li > a.menulink::after,
	.nav .navigation > ul.menu > li > a.menulink::before {
		left: 0;
		right: 0;
	}
	.navigation ul.menu > li > a:hover {
		color: #fff;
		opacity: 0.5;
	}
	.nav .navigation > ul.menu > li ul.menu-dropdown {
		padding: 10px 0;
	}
	.nav .navigation > ul.menu > li ul.menu-dropdown > li {
		min-width: unset;
		padding: 1px 0;
		animation: fadeInLeft 0.3s forwards 0ms var(--transition);
	}
	.nav .navigation > ul.menu > li ul.menu-dropdown > li a {
		padding: 12px 12px;
		border: none !important;
		border-radius: 0 !important;
		background-color: rgba(0,0,0,0.2);
		font-size: 16px;
		width: 100%;
	}
	.nav .navigation > ul.menu > li ul.menu-dropdown > li a::after {
		bottom: 0px;
		left: 0px;
		right: 0px;
	}

	body.fancy-menu-option-1 .nav .navigation > ul.menu > li ul.menu-dropdown > li a {
		background-color: var(--colour-secondary);
	}
	body.fancy-menu-option-2 .nav .navigation > ul.menu > li ul.menu-dropdown > li a {
		background-color: var(--colour-primary);
	}
	body.fancy-menu-option-3 .nav .navigation > ul.menu > li ul.menu-dropdown > li a {
		background-color: var(--colour-secondary);
	}

	/*Submenu*/
	.nav .navigation > ul.menu > .sub-menu {
		display: block !important;
		text-align: right;
		padding-top: 15px;
	}

	.nav .navigation > ul.menu > .sub-menu li a {
		font-size: 16px;
	}
	.nav .navigation > ul.menu > .sub-menu li {
		opacity: 0;
		font-size: 16px;
		padding-bottom: 2px;
		animation: fadeInLeft 0.3s forwards 0ms var(--transition);
	}
	.nav .navigation > ul.menu > .sub-menu li:nth-child(2) {
		animation-delay: 30ms;
	}
	.nav .navigation > ul.menu > .sub-menu li:nth-child(3) {
		animation-delay: 60ms;
	}
	.nav .navigation > ul.menu > .sub-menu li:nth-child(4) {
		animation-delay: 90ms;
	}
	.nav .navigation > ul.menu > .sub-menu li:nth-child(5) {
		animation-delay: 120ms;
	}
	.nav .navigation > ul.menu > .sub-menu li:nth-child(6) {
		animation-delay: 150ms;
	}

	.nav .navigation > ul.menu > .sub-menu > li > a {
		padding: 6px 0;
		font-weight: 400;
		text-transform: none;
	}
	.nav .navigation > ul.menu > .sub-menu > li > a .fas {
		font-weight: 400;
	}
	.nav .navigation > ul.menu > .sub-menu > li ul.menu-dropdown li a {
		border-radius: 0 !important;
		border: none !important;
		background-color: #fff;
		padding: 12px 12px;
		text-align: right;
		line-height: 18px;
		font-size: 14px;
		font-weight: 400;
		text-transform: none;
		color: var(--colour-dark);
	}

	body.fancy-menu-open .navigation {
		background-color: rgba(0,0,0,0) !important;
	}

	.top-menu::after {
		display: none;
	}
	.top-menu.navigation {
		visibility: none !important;
		opacity: 0 !important;
		pointer-events: none !important;
	}
	.fixed-nav.top-menu.navigation {
		visibility: none !important;
		opacity: 0 !important;
		pointer-events: none !important;
	}
}

@media screen and (max-width:580px) {
	.navigation {
		padding: 30px;
		padding-top: 90px;
		max-width: 300px;
	}
}
/** Banner - Background Fadded Right **/

.section-right-fadded-banner {
	margin-top: 100px;
	position: relative;
	overflow: hidden;
}
.section-right-fadded-banner .frame {
	padding-right: 0px !important;
	padding-left: 0px !important;
}
.section-right-fadded-banner .pb-container.container-fluid {
	padding-top: 0px !important;
}
.section-right-fadded-banner .pb-column {
	padding: 0px;
}
.section-right-fadded-banner.section-colour-dark .pb-column:first-child {
	box-shadow: 60px 0px 100px 140px var(--colour-dark);
}
.section-right-fadded-banner.section-colour-deep-blue .pb-column:first-child {
	box-shadow: 60px 0px 100px 140px var(--colour-secondary);
}
.section-right-fadded-banner .pb-column:first-child {
	z-index: 1;
	padding-top: 20px;
}
.section-right-fadded-banner .pb-column:first-child .pb-block-content {
	width: 85%;
}
.section-right-fadded-banner .pb-block-type-image, .section-right-fadded-banner .pb-block-content, .section-right-fadded-banner .pb-block-type-image img  {
	height: 100%;
}
.section-right-fadded-banner.section-colour-dark .pb-block-type-image img {
	border-left: 5px solid var(--colour-dark);
}
.section-right-fadded-banner.section-colour-deep-blue .pb-block-type-image img {
	border-left: 5px solid var(--colour-secondary);
}
.section-right-fadded-banner .pb-block-type-text .pb-block-content {
	padding: 5em 0 2em var(--frame-pad);
}
.section-right-fadded-banner.section-colour-dark::after {
	display: none;
}

@media screen and (max-width:950px) {
	.section-right-fadded-banner .pb-block-type-text .pb-block-content {
		padding: 5em 0em 2em var(--frame-pad);
	}
	.section-right-fadded-banner .pb-column:first-child .pb-block-content {
  		width: 100%;
}
}
@media screen and (max-width: 800px){
	.section-right-fadded-banner .pb-column {
		width: 100%;
		max-width: 100%;
		flex: 100% 1 1;
	}
	.section-right-fadded-banner .pb-block-type-text .pb-block-content {
		padding: 2em 4em;
	}
	.section-right-fadded-banner .pb-block-type-text .pb-block-content h3 {
		word-break: break-all;
	}
}
@media screen and (max-width:576px) {
	.section-right-fadded-banner .pb-block-type-text .pb-block-content {
		padding: 5em 4em 2em 5em;
	}
	.section-right-fadded-banner .frame {
		padding-left: 0px !important;
	}
	.section-right-fadded-banner .pb-block-type-image img {
		border-left: 0px;
	}
}
@media screen and (max-width:600px) {
	.mobile-hide {
		display: none !important;
	}
}
@media screen and (max-width:500px) {
	body .header {
		padding: 15px 0;
	}
	.head-main > .coltable {
		padding-top: 0;
		padding-left: 25px;
	}
	.head-frame > .head-main {
		padding-right: 25px;
	}
	svg.razor-logo {
		width: 120px;
	}

	.section-container > .pb-section:first-child .pb-container {
		padding-top: 10px;
	}

	.header .head-main .col.nav .mobile-menu-trigger i.fa-bars::before,
	.header .head-main .col.nav .mobile-menu-trigger i.fa-bars::after {
		height: 3px
	}
	.header .head-main .col.nav .mobile-menu-trigger:not(.open) i.fa-bars::after {
		top: -12px;
		width: 35px;
	}
	.header .head-main .col.nav .mobile-menu-trigger:not(.open) i.fa-bars::after {
		box-shadow: 0px 22px 0 var(--colour-primary);
	}
	body.header-overlay .header .head-main .col.nav .mobile-menu-trigger:not(.open) i.fa-bars::after {
		box-shadow: 0 22px 0 #fff;
	}

}

/** Festive snowflake **/

@-webkit-keyframes snowflakes-fall {
	0% {
		top: -10%
	}

	100% {
		top: 100%
	}
}

@-webkit-keyframes snowflakes-shake {
	0% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px)
	}

	50% {
		-webkit-transform: translateX(80px);
		transform: translateX(80px)
	}

	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px)
	}
}

@keyframes snowflakes-fall {
	0% {
		top: -10%
	}

	100% {
		top: 100%
	}
}

@keyframes snowflakes-shake {
	0% {
		transform: translateX(0px)
	}

	50% {
		transform: translateX(80px)
	}

	100% {
		transform: translateX(0px)
	}
}

.snowflake {
	position: fixed;
	top: -10%;
	z-index: 9999;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: default;
	-webkit-animation-name: snowflakes-fall, snowflakes-shake;
	-webkit-animation-duration: 10s, 3s;
	-webkit-animation-timing-function: linear, ease-in-out;
	-webkit-animation-iteration-count: infinite, infinite;
	-webkit-animation-play-state: running, running;
	animation-name: snowflakes-fall, snowflakes-shake;
	animation-duration: 10s, 3s;
	animation-timing-function: linear, ease-in-out;
	animation-iteration-count: infinite, infinite;
	animation-play-state: running, running
}

.snowflake:nth-of-type(0) {
	left: 1%;
	-webkit-animation-delay: 0s, 0s;
	animation-delay: 0s, 0s
}

.snowflake:nth-of-type(1) {
	left: 10%;
	-webkit-animation-delay: 1s, 1s;
	animation-delay: 1s, 1s
}

.snowflake:nth-of-type(2) {
	left: 20%;
	-webkit-animation-delay: 6s, .5s;
	animation-delay: 6s, .5s
}

.snowflake:nth-of-type(3) {
	left: 30%;
	-webkit-animation-delay: 4s, 2s;
	animation-delay: 4s, 2s
}

.snowflake:nth-of-type(4) {
	left: 40%;
	-webkit-animation-delay: 2s, 2s;
	animation-delay: 2s, 2s
}

.snowflake:nth-of-type(5) {
	left: 50%;
	-webkit-animation-delay: 8s, 3s;
	animation-delay: 8s, 3s
}

.snowflake:nth-of-type(6) {
	left: 60%;
	-webkit-animation-delay: 6s, 2s;
	animation-delay: 6s, 2s
}

.snowflake:nth-of-type(7) {
	left: 70%;
	-webkit-animation-delay: 2.5s, 1s;
	animation-delay: 2.5s, 1s
}

.snowflake:nth-of-type(8) {
	left: 80%;
	-webkit-animation-delay: 1s, 0s;
	animation-delay: 1s, 0s
}

.snowflake:nth-of-type(9) {
	left: 90%;
	-webkit-animation-delay: 3s, 1.5s;
	animation-delay: 3s, 1.5s
}

.snowflake {
	color: white;
	font-size: 1em;
	font-family: Arial;
	text-shadow: 0 0 1px #000;
}

/** Note Banner **/
.note-banner {
	background-color: var(--colour-red);
	padding: 10px 0;
}

.note-banner p {
	font-family: var(var--font-body);
	margin: 0;
	font-size: 14px;
	font-weight: 300;
	text-align: center;
	color: var(--colour-white);
}

@media screen and (max-width: 500px) {
    .section-container > .pb-section:first-child .pb-container {
        padding-top: 70px;
    }
}

/** MISC **/
.pb-row.gif-row .pb-column {
	justify-content: center;
}
.pb-row.gif-row .pb-column:has(.pb-block-type-image) {
	min-height: 480px;
}


.pb-row.list-yes-no .pb-column:nth-child(1) h2 span {
	color: var(--colour-green) !important;
}
.pb-row.list-yes-no .pb-column:nth-child(2) h2 span {
	color: var(--colour-red) !important;
}
.pb-row.list-yes-no .pb-column ul li {
	display: flex;
	column-gap: 12px;
	padding-left: 0px !important;
}
.pb-row.list-yes-no .pb-column ul li::before {
	display: none;
}



.pb-column:has(.value-box),
.pb-block.value-box {
	display: flex;
}
.value-box .pb-block-content {
	align-self: center;
}
.value-box .pb-block-content:has(em) p:not(:last-of-type) {
	padding-bottom: 30px;
	border-bottom: 1px solid var(--colour-white);
}
.value-box h4:has(em) {
	padding-top: 20px;
	margin-bottom: 5px !important;
	font-size: 22px;
	display: flex;
	column-gap: 15px;
	align-items: center;
}
.section-colour-white .value-box .pb-block-content:has(em) p:not(:last-of-type) {
	border-bottom: 1px solid var(--colour-dark) !important;
}

.price-list .h4 {
	margin-bottom: 5px;
}
.price-list ul {
	display: flex;
	column-gap: 30px;
	row-gap: 20px;
}
.price-list ul li::before {
	display: none;
}
.price-list ul li {
	border-left: 1px solid var(--colour-white);
}
@media screen and (max-width:800px) {
		.price-list ul {
			flex-direction: column;
		}
}