@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;900&display=swap);
@charset "UTF-8";

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
	padding: 0 0;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: #fff;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
}

.hamburger:hover {
	opacity: 1;
}

.hamburger-box {
	width: 40px;
	height: 24px;
	display: inline-block;
	position: relative;
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 40px;
	height: 4px;
	background-color: #fff;
	border-radius: 5px;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
	content: "";
	display: block;
}

.hamburger-inner::before {
	top: -10px;
}

.hamburger-inner::after {
	bottom: -10px;
}

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
	top: 2px;
}

.hamburger--slider .hamburger-inner::before {
	top: 10px;
	transition-property: transform, opacity;
	transition-timing-function: ease;
	transition-duration: 0.2s;
}

.hamburger--slider .hamburger-inner::after {
	top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
	transform: rotate(-45deg) translate3d(-5.71428571px, -6px, 0);
	opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
	transform: translate3d(0, -20px, 0) rotate(-90deg);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 62.5%;
}

body {
	font-family: 'Inter';
	font-size: 1.6rem;
	line-height: 2.4rem;
	color: #333;
	font-weight: 400;
}

body.no-scroll {
	overflow: hidden;
}

ul {
	padding-left: 2rem;
}

a:hover {
	text-decoration: none;
}

p {
	margin: 0;
	font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

.post,
.page {
	margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins';
}

h5,
h6 {
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	color: #333333;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	/* 1 */
	font-size: 100%;
	/* 1 */
	line-height: 1.15;
	/* 1 */
	margin: 0;
	/* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	/* 1 */
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	/* 1 */
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	/* 1 */
	color: inherit;
	/* 2 */
	display: table;
	/* 1 */
	max-width: 100%;
	/* 1 */
	padding: 0;
	/* 3 */
	white-space: normal;
	/* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	outline-offset: -2px;
	/* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	/* 1 */
	font: inherit;
	/* 2 */
}

input {
	-webkit-appearance: none;
	-webkit-border-radius: 0px;
}

select {
	-moz-appearance: none;
}

@-moz-document url-prefix() {
	select.home__input {
		color: #000;
		padding-top: 10px;
	}

	select.home__input::placeholder {
		color: #f0f0f0;
	}
}

.header {
	background-color: #125960;
	position: relative;
	width: 100%;
	padding: 7px 0;
}

.header.sticky {
	width: 100%;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 8;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
	animation-name: header-sticky;
	animation-duration: 0.5s;
	animation-iteration-count: 1;
}

.header__bottom {
	padding: 1rem 0;
}

.header__bottom-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.header__top {
	background-color: #213c44;
	padding: 2px 0;
}

.header__top ul {
	display: flex;
	justify-content: flex-end;
	list-style: none;
	margin: 0;
	padding: 0;
}

.header__top ul li {
	position: relative;
}

.header__top ul li a {
	font-size: 1.2rem;
	line-height: 1.6rem;
	color: #fff;
	font-weight: 300;
	font-family: "Poppins";
	text-decoration: none;
	letter-spacing: 0.4px;
	transition: color 0.3s ease-in-out;
}

.header__top ul li a:hover {
	color: #109aa9;
}

.header__top ul li::after {
	content: "|";
	font-size: 1.2rem;
	line-height: 1.6rem;
	color: #fff;
	font-weight: 300;
	font-family: "Poppins";
	color: #fff;
	display: inline-block;
	margin: 0 1.5rem;
}

.header__top ul li:last-child a {
	font-weight: 700;
}

.header__top ul li:last-child::after {
	display: none;
}

.header__container {
	max-width: 1440px;
	width: 100%;
	padding: 0 2rem;
	margin: 0 auto;
}

.header__logo img {
	width: 9rem;
}

.header__menu {
	justify-content: center;
	padding-left: 8rem;
}

.header__menu-logo,
.header__menu-close {
	display: none;
}

.header__menu ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
	align-items: center;
}

.header__menu ul li {
	margin-right: 4rem;
}

.header__menu ul li.menu-item-has-children {
	position: relative;
}

.header__menu ul li.menu-item-has-children .sec-child {
	display: none;
}

.header__menu ul li.menu-item-has-children>a {
	display: flex;
	position: relative;
}

.header__menu ul li.menu-item-has-children>a::after {
	content: url("../images/chevron-down.svg");
	display: block;
	width: 10px;
	margin-left: 5px;
}

.header__menu ul li.menu-item-has-children:hover ul.sub-menu {
	display: flex;
}

.header__menu ul li a {
	font-size: 1.4rem;
	line-height: 1.6rem;
	color: #fff;
	font-weight: 600;
	letter-spacing: 0.15px;
	text-transform: uppercase;
	padding: 0 10px;
	text-decoration: none;
	position: relative;
}

.header__menu ul li:last-child {
	margin-right: 0;
}

.header__menu ul li ul.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	width: 20rem;
	flex-direction: column;
	background-color: #bacbd3;
	word-wrap: break-word;
	z-index: 99;
}

.header__menu ul li ul.sub-menu .sub-menu-title {
	display: none;
}

.header__menu ul li ul.sub-menu li {
	width: 100%;
	margin-right: 0;
}

.header__menu ul li ul.sub-menu li:hover a {
	background-color: #326d73;
	color: #ffffff;
}

.header__menu ul li ul.sub-menu li a {
	display: flex;
	align-items: center;
	background-color: #bacbd3;
	color: #125960;
	padding: 1rem;
	transition: all 0.3s ease-in-out;
	height: auto;
	font-size: 1.4rem;
	position: relative;
}

.header__menu ul li ul.sub-menu li.menu-item-has-children:hover ul.sub-menu {
	display: block;
}

.header__menu ul li ul.sub-menu li.menu-item-has-children:hover a::after {
	content: url("../images/chevron-down.svg");
	display: block;
	width: 10px;
	margin-left: 5px;
}

.header__menu ul li ul.sub-menu li.menu-item-has-children a::after {
	content: url("../images/chevron-down-bluegreen.svg");
	display: block;
	width: 10px;
	margin-left: 5px;
}

.header__menu ul li ul.sub-menu li.menu-item-has-children ul.sub-menu {
	display: none;
	left: auto;
	right: -260px;
	top: 0px;
	width: 260px;
}

.header__menu ul li ul.sub-menu li.menu-item-has-children ul.sub-menu li a {
	background-color: #bacbd3;
	color: #125960;
}

.header__menu ul li ul.sub-menu li.menu-item-has-children ul.sub-menu li a::after {
	display: none;
}

.header__menu ul li ul.sub-menu li.menu-item-has-children ul.sub-menu li:hover a {
	background-color: #326d73;
	color: #ffffff;
}

.header__search-enquire {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-left: 1rem;
}

.header__search {
	border-left: 1px solid #fff;
	padding-left: 2rem;
	padding-right: 1.5rem;
	height: 2.6rem;
}

.header__search i {
	font-size: 24px;
	color: #fff;
	cursor: pointer;
}

.header__burger-menu {
	display: none;
	width: 11.7rem;
}

.header__burger-menu .hamburger-box {
	width: 2.8rem;
	height: 1.6rem;
}

.header__burger-menu .hamburger-inner,
.header__burger-menu .hamburger-inner::before,
.header__burger-menu .hamburger-inner::after {
	width: 28px;
	height: 2.8px;
}

.header__burger-menu .hamburger--slider .hamburger-inner::after {
	top: 1.4rem;
}

.header__burger-menu .hamburger--slider.is-active .hamburger-inner::after {
	top: 2rem;
}

.header__burger-menu .hamburger--slider .hamburger-inner::before {
	top: 7px;
}

.header__search-dropdown {
	background-color: #125960;
	border-top: 4px solid #fff;
	display: none;
	position: absolute;
	width: 100%;
	top: 100%;
	box-shadow: 1px 1px 10px #00000080;
	z-index: 9;
}

.header__search-dropdown-container {
	width: 100%;
	max-width: 100rem;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	align-content: center;
	height: 105px;
}

.header__search-dropdown-container form {
	width: 100%;
}

@media screen and (max-width: 1024px) {
	.header__menu {
		padding-left: 3rem;
	}
}

@media screen and (max-width: 1199px) {
	.header__menu {
		position: fixed;
		max-width: 44rem;
		width: 100%;
		height: 100vh;
		background-color: #213C44;
		right: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		top: 0;
		-webkit-transition-property: -webkit-transform;
		transition-property: -webkit-transform;
		-o-transition-property: transform;
		transition-property: transform;
		transition-property: transform, -webkit-transform;
		-webkit-transition-duration: .3s;
		-o-transition-duration: .3s;
		transition-duration: .3s;
		-webkit-transition-timing-function: ease;
		-o-transition-timing-function: ease;
		transition-timing-function: ease;
		padding: 0;
		z-index: 99;
	}

	.header__menu-logo {
		display: block;
		padding: 0 2rem;
		margin-bottom: 2rem;
	}

	.header__menu-close {
		display: block;
		padding: 1.3rem 2rem;
	}

	.header__menu-close SVG {
		width: 5.5rem;
	}

	.header__menu-close SVG path {
		fill: #fff;
	}

	.header__menu.active {
		right: 0;
		webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	.header__menu ul {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}

	.header__menu ul li {
		margin-right: 0;
		width: 100%;
	}

	.header__menu ul li a {
		color: #ddd !important;
		min-height: 5rem;
		align-items: center;
	}

	.header__menu ul li a:hover {
		color: #109aa9 !important;
	}

	.header__menu ul li.menu-item-has-children {
		display: flex;
		justify-content: space-between;
	}

	.header__menu ul li.menu-item-has-children>a::after {
		display: none;
	}

	.header__menu ul li.menu-item-has-children .sec-child {
		display: flex;
	}

	.header__menu ul li.menu-item-has-children ul.sub-menu {
		position: fixed;
		max-width: 44rem;
		width: 100%;
		height: 100vh;
		background-color: #213C44;
		right: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		top: 0;
		-webkit-transition-property: -webkit-transform;
		transition-property: -webkit-transform;
		-o-transition-property: transform;
		transition-property: transform;
		transition-property: transform, -webkit-transform;
		-webkit-transition-duration: .3s;
		-o-transition-duration: .3s;
		transition-duration: .3s;
		-webkit-transition-timing-function: ease;
		-o-transition-timing-function: ease;
		transition-timing-function: ease;
		padding: 0;
		z-index: 99;
		display: flex;
		flex-direction: column;
	}

	.header__menu ul li.menu-item-has-children ul.sub-menu.active {
		right: 0;
		webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	.header__menu ul li.menu-item-has-children ul.sub-menu.active .sec-child {
		display: flex;
	}

	.header__menu ul li.menu-item-has-children ul.sub-menu li {
		order: 2;
	}

	.header__menu ul li.menu-item-has-children ul.sub-menu li a {
		background-color: transparent;
	}

	.header__menu ul li.menu-item-has-children ul.sub-menu li.menu-item-has-children a::after {
		display: none;
	}

	.header__menu ul li.menu-item-has-children ul.sub-menu li.menu-item-has-children ul.sub-menu {
		display: flex;
		right: 0;
		width: 100%;
		top: 0;
	}

	.header__menu ul li.menu-item-has-children ul.sub-menu li.menu-item-has-children ul.sub-menu li a {
		width: 100%;
		background-color: #213C44;
		line-height: 120%;
	}

	.header__menu ul li.menu-item-has-children ul.sub-menu .sub-menu-title {
		order: 0;
		width: 100%;
		text-align: center;
		color: #ddd;
		height: 50px;
		display: flex;
		align-items: center;
		cursor: pointer;
		position: relative;
		z-index: 9;
	}

	.header__menu ul li.menu-item-has-children ul.sub-menu .sub-menu-title-text {
		text-align: center;
		width: calc(100% - 50px);
	}

	.header__menu ul li.menu-item-has-children ul.sub-menu .sub-menu-title-text p {
		padding-right: 50px;
		color: #ddd;
	}

	.header__menu ul li.menu-item-has-children ul.sub-menu .sub-menu-back {
		width: 5rem;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
	}

	.header__menu ul li.menu-item-has-children ul.sub-menu .sub-menu-back svg {
		width: 14px;
		transform: rotate(90deg);
		opacity: 0.4;
	}

	.header__menu ul li span {
		width: 5rem;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
	}

	.header__menu ul li span svg {
		width: 14px;
		transform: rotate(-90deg);
		opacity: 0.4;
	}

	.header__menu ul li a {
		width: calc(100% - 50px);
		text-transform: uppercase;
		font-family: 'Poppins';
		letter-spacing: 0.15px;
		font-size: 2.4rem;
		line-height: 1.6rem;
		color: #fff;
		font-weight: 600;
		padding: 1.3rem 2rem;
		display: flex;
	}

	.header__burger-menu {
		display: block;
	}

	.header__search {
		display: none;
	}

	.header__search-enquire {
		padding-left: 0;
	}

	.header__search-enquire a.button {
		font-size: 1.3rem;
		width: 100%;
		max-width: 12rem;
		padding: 1.3rem;
		letter-spacing: 0.15px;
	}

	.header__top {
		display: none;
	}

	.header__bottom {
		padding: 3rem 0;
	}

	.header__bottom-wrapper {
		position: relative;
	}

	.header__logo {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}
}

@media screen and (max-width: 680px) {
	.header__search-enquire a.button {
		max-width: 7rem;
		text-align: center;
		line-height: 1;
		font-size: 12px;
		font-weight: 600;
		height: 35px;
	}

	.header__burger-menu {
		width: 7rem;
	}
}

.footer {
	background-color: #213c44;
	padding: 19.5px 0;
}

.footer__container {
	max-width: 1210px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	padding: 0 20px;
}

.footer__content {
	display: flex;
	align-items: center;
}

.footer__copy {
	display: flex;
}

.footer__copy p {
	font-size: 1.2rem;
	line-height: 1.9rem;
	color: #fff;
	font-weight: 300;
	letter-spacing: 0.15px;
	font-family: 'Poppins';
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.footer__copy p:first-child {
	margin-right: 5px;
}

.footer__copy a {
	font-size: 1.2rem;
	line-height: 1.9rem;
	color: #fff;
	font-weight: 300;
	text-decoration: none;
	font-family: 'Poppins';
}

.footer__menu {
	list-style: none;
	padding: 0;
	margin: 0 0 0 10px;
	display: flex;
	align-items: center;
}

.footer__menu li {
	position: relative;
	display: flex;
	align-items: center;
}

.footer__menu li::before {
	content: "|";
	display: block;
	color: #fff;
}

.footer__menu li a {
	font-size: 1.2rem;
	line-height: 1.9rem;
	color: #fff;
	font-weight: 300;
	text-decoration: none;
	margin: 0 10px;
	display: inline-block;
}

.footer__created {
	margin-left: auto;
}

.footer__created img {
	margin-left: 6px;
	filter: invert(100%) sepia(29%) saturate(100%) hue-rotate(36deg) brightness(118%) contrast(119%);
}

.footer__created a {
	font-size: 1.2rem;
	line-height: 1.9rem;
	color: #fff;
	font-weight: 300;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: start;
}

@media screen and (max-width: 840px) {
	.footer {
		padding-top: 40px;
		padding-bottom: 20px;
	}

	.footer__content {
		flex-direction: column;
	}

	.footer__created {
		margin: 20px 0 0 0;
	}

	.footer__copy p {
		margin: 0;
	}

	.footer__menu li:first-child::before {
		display: none;
	}
}

@media screen and (max-width: 680px) {
	.footer__copy {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
}

.button {
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	line-height: 1.9rem;
	color: #293F42;
	font-weight: 600;
	letter-spacing: 0.56px;
	text-transform: uppercase;
	background-color: #FBA82D;
	padding: 13px 25px;
	text-decoration: none;
	font-family: "Poppins";
	transition: background-color 0.3s ease-in-out;
}

.button:hover {
	background-color: #bacbd3;
}

.button:visited {
	color: #293F42;
}

.page p {
	margin: 16px 0;
}

/* MAIN BANNER */
.banner,
.resources-post-banner {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 300px;
}

.banner__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 1;
}

.banner__flex {
	position: relative;
	z-index: 2;
}

.banner .container-max,
.resources-post-banner .container-max {
	width: 100%;
	max-width: 1436px;
	margin: 0 auto;
	padding: 0 20px;
}

h1 {
	font-family: 'Poppins', sans-serif;
	font-size: 50px;
	font-weight: 600;
	color: #ffffff;
	line-height: 50px;
}

h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 24px;
	font-weight: 600;
	color: #ffffff;
	line-height: 35px;
}

h6 {
	font-family: 'Poppins';
	font-size: 16px;
	text-decoration: none;
	letter-spacing: 0.15px;
	line-height: 24px;
	text-transform: uppercase;
	font-weight: 600;
	color: #fff;
}

.resources-post-banner .banner__flex h1 {
	font-family: 'Poppins';
	font-weight: 600;
	line-height: 56px;
	width: 100%;
	text-transform: uppercase;
	font-style: normal;
	font-size: 48px;
	color: #f2f2f2;
	margin-bottom: 13px;
	max-width: 72%;
}

.resources-post-banner .banner__flex .banner__terms {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.resources-post-banner .banner__flex .banner__terms ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
}

.resources-post-banner .banner__flex .banner__terms ul.resource__tag {
	margin-left: 0;
}

.resources-post-banner .banner__flex .banner__terms ul.resource__tag li a {
	background-color: #109aa9;
	border: 1px solid #109aa9;
}

.resources-post-banner .banner__flex .banner__terms ul li a {
	display: inline-block;
	font-size: 10px;
	text-align: center;
	text-transform: uppercase;
	line-height: 12px;
	letter-spacing: 1.5px;
	color: #f2f2f2;
	font-family: 'Poppins';
	font-weight: 500;
	font-style: normal;
	max-width: 100%;
	border-radius: 3px;
	min-width: 95px;
	text-decoration: none;
	background-color: #125960;
	border: 1px solid #125960;
	padding: 8px 12.8px;
	margin-right: 15px;
}

/* BODY CONTENT and FORM */
.body-content {
	background: #fff;
	padding-top: 60px;
	padding-bottom: 60px;
}

.body-content .container-max {
	max-width: 1080px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.body-content__flex {
	display: flex;
	justify-content: space-between;
}

.body-content .content {
	width: 731px;
	padding-right: 40px;
}

.body-content .content .desc {
	padding-right: 15px;
}

.body-content .content .desc p {
	font-weight: 300;
	color: #333333;
}

.body-content .content .desc p strong {
	font-weight: 700;
}

.body-content .content h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 19px;
	font-weight: 600;
	color: #109AA9;
	line-height: 30px;
	letter-spacing: 1.9px;
	text-transform: uppercase;
}

.body-content .content h2 span {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	color: #333333;
	line-height: 24px;
	text-transform: none;
}

.body-content .indent {
	padding-left: 31px;
}

.body-content .indent h2 {
	margin: 35px 0 18px;
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #109AA9;
	line-height: 30px;
	text-transform: uppercase;
}

.body-content .indent p {
	margin-bottom: 25px;
}

.body-content .indent ul {
	margin-left: 16px;
}

.body-content .indent ul li {
	font-size: 16px;
	color: #333333;
	margin-bottom: 12px;
	list-style-type: circle;
	line-height: 24px;
}

.body-content .form {
	position: relative;
	width: 388px;
	background: #F2F2F2;
	padding: 22px 18px 36px 22px;
}

.body-content .form .mktoField {
	height: 30px;
	font-size: 14px;
	margin-bottom: 0;
}

.body-content .form .mktoLabel {
	padding-top: 0;
}

.body-content .form .mktoButton {
	height: 33px;
	width: 100% !important;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	line-height: 32px;
}

.body-content .form:after {
	content: '';
	position: absolute;
	top: 7px;
	right: -7px;
	width: 7px;
	height: 100%;
	background: #109AA9;
}

.body-content .form:before {
	content: '';
	position: absolute;
	bottom: -7px;
	right: -7px;
	width: 100%;
	height: 7px;
	background: #109AA9;
}

.body-content .form .mktoForm {
	width: 100% !important;
}

.body-content .form .mktoForm button {
	border-radius: 0px;
	margin-bottom: 0 !important;
}

.body-content .form .mktoForm textarea {
	height: 96px;
}

.body-content .form h2 {
	margin-bottom: 8px;
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #109AA9;
	line-height: 30px;
	text-transform: uppercase;
}

.body-content .form label {
	display: block;
	font-family: 'Inter', sans-serif;
	color: #333333;
	margin-bottom: 5px;
	text-transform: capitalize !important;
}

/* SMALL BANNER */
.mid-banner {
	width: 100%;
	height: 91px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin-top: 60px;
}

/* BROCHURE */
.brochure .container-max {
	width: 100%;
	max-width: 1099px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 2;
}

.brochure {
	background: #145960;
	padding: 69px 20px 50px;
	position: relative;
}

.brochure__video-background {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.brochure__video-background video {
	object-fit: cover;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.brochure .content {
	width: 100%;
	max-width: 1003px;
	margin: 0 auto;
}

.brochure h3 {
	font-size: 20px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #fff;
	line-height: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-align: center;
}

.brochure p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	line-height: 24px;
	text-align: center;
}

.brochure .list {
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 20px auto 0;
}

.brochure .list .item {
	width: 100%;
	background: #F2F2F2;
	padding: 15px 10px;
	margin: 0 0 10px;
	text-align: center;
}

.brochure .list .owl-stage {
	display: flex;
	justify-content: center;
	margin: 0 auto;
}

.brochure .list .owl-item {
	background: #F2F2F2;
	border-radius: 6px;
	overflow: hidden;
	margin: 0 6px;
}

.brochure .list .item img {
	display: block;
	width: auto;
	margin: 0 auto;
}

.brochure .list .item p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	color: #333333;
	line-height: 24px;
	text-align: center;
}

.brochure .download-btn {
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 255px;
	height: 49px;
	margin: 38px auto 0;
	background: #FBA82D;
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #293F42;
	letter-spacing: 1.4px;
	transition: color 0.4s ease-out, background 0.4s ease-out;
}

.brochure .download-btn:hover {
	background: #109AA9;
	color: #fff;
	text-decoration: none;
}

.brochure .download-btn span {
	display: block;
	line-height: 21px;
	letter-spacing: 0.56px;
}

.brochure .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	margin-top: -59px !important;
}

.brochure .owl-nav button {
	position: absolute;
	top: 24px;
	font-size: 50px !important;
	color: #fff !important;
}

.brochure .owl-nav .owl-prev {
	left: -26px;
}

.brochure .owl-nav .owl-next {
	right: -26px;
}

.brochure .owl-nav .owl-prev.disabled,
.brochure .owl-nav .owl-next.disabled {
	opacity: .2;
}

/* CASE STUDY */
.casestudy .container-max {
	width: 100%;
	max-width: 1020px;
	margin: 0 auto;
	padding: 0 20px;
}

.casestudy {
	background: #fff;
	padding: 67px 0 88px;
}

.casestudy-box {
	display: flex;
	justify-content: space-between;
}

.casestudy-box .content {
	width: 53%;
	padding-right: 10px;
}

.casestudy-box .content h3 {
	font-size: 20px;
	font-family: 'Poppins', sans-serif;
	color: #109AA9;
	margin-bottom: 20px;
	line-height: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.casestudy-box .content p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	color: #333333;
	line-height: 24px;
}

.casestudy-box .content p:not(:last-of-type) {
	margin-bottom: 25px;
}

.casestudy-box .frame {
	border-radius: 6px;
	position: relative;
	width: 445px;
	background: #F2F2F2;
	padding: 20px 15px 36px 15px;
	box-shadow: 0px 3px 6px #00000007;
}

.casestudy.casestudy--2 .casestudy-box .frame {
	background: transparent;
	box-shadow: none;
}

.casestudy.casestudy--2 .btn {
	display: inline-block;
	background: #FBA82D;
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	/*color: #293F42;*/
	color: #FFFFFF;
	letter-spacing: 1.4px;
	transition: color 0.4s ease-out, background 0.4s ease-out;
	padding: 11px 20px;
	margin-top: 20px;
	text-decoration: none;
}

.casestudy.casestudy--2 .btn:hover {
	background: #109AA9;
	color: #fff;
	text-decoration: none;
}

.casestudy-box .frame .play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.casestudy-box .frame .play img {
	width: 60px;
	height: auto;
}

.casestudy-box .frame-video {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
}

.casestudy-box .frame-video iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.casestudy-box .frame img {
	display: block;
	width: 100%;
	height: auto;
}

.casestudy-box .frame .btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 255px;
	height: 33px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	letter-spacing: 1.4px;
	background: #4AC6DF;
	border-radius: 2px;
}

.case-study__button {
	position: absolute;
	bottom: 19px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.casestudy-box .frame .btn:hover {
	background: #109AA9;
	color: #fff;
	text-decoration: none;
}

.casestudy-box .frame .btn span {
	display: block;
}

/* AWARDS */
.awards .container-max {
	width: 100%;
	max-width: 1082px;
	margin: 0 auto;
	padding: 0 20px;
}

.awards {
	position: relative;
	padding-bottom: 100px;
	background: #fff;
}

.awards h3 {
	font-size: 20px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #109AA9;
	line-height: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-align: center;
}

.awards-carousel {
	position: relative;
	margin-top: 20px;
}

.awards-carousel .owl-stage {
	display: flex;
	align-items: center;
}

.awards-carousel .owl-item img {
	width: auto !important;
	margin: 0 auto !important;
}

.caption {
	font-size: 12px;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	color: #333333;
	line-height: 14px;
	text-align: center;
}

.awards-carousel .owl-nav {
	position: absolute;
	top: 0;
	width: 100%;
}

.awards-carousel .owl-nav button {
	position: absolute;
	top: 24px;
	font-size: 40px !important;
}

.awards-carousel .owl-nav .owl-prev {
	left: -26px;
}

.awards-carousel .owl-nav .owl-next {
	right: -26px;
}

/* SERVICES */
.services .container-max {
	width: 100%;
	max-width: 1319px;
	margin: 0 auto;
	padding: 0 20px;
}

.services {
	position: relative;
	padding: 52px 0 42px;
}

.services-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 40%;
	z-index: 1;
}

.services-box {
	position: relative;
	display: flex;
	justify-content: flex-start;
	z-index: 2;
}

@media screen and (max-width: 768px) {
	.services-box .content {
		width: 100% !important;
	}

	.services-box .img {
		width: 100% !important;
	}
}

@media (min-width: 871px) {
	.services.services--inverse .services-box {
		flex-direction: row-reverse;
		justify-content: flex-end;
	}
}

.services-box .img {
	width: 493px;
}

.services-box .img img {
	border-radius: 6px;
	display: block;
	width: 100%;
	height: auto;
}

.services-box .content {
	width: 46.25%;
	margin: 25px 0 0 45px;
}

.services-box .content h3 {
	font-size: 20px;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	color: #FBA82D;
	line-height: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.services-box .content p {
	font-weight: 300;
}

.services-box .content p strong,
.services-box .content p b {
	font-weight: 700;
}

.services-box .content ul {
	padding: 0;
	margin-left: 19px;
}

.services-box .content ul li {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	color: #fff;
	margin-bottom: 15px;
	line-height: 24px;
	list-style-type: circle;
}

/* RESOURCE */
.resources .container-max {
	width: 100%;
	max-width: 1319px;
	margin: 0 auto;
	padding: 0 20px;
}

.resources {
	position: relative;
	background: #F2F2F2;
	padding: 70px 0 58px;
}

.resources .content {
	text-align: center;
}

.resources .content h3 {
	font-size: 20px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #109AA9;
	line-height: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.resources .content p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	color: #333333;
	line-height: 24px;
	font-weight: 400;
}

.resources-carousel {
	margin-top: 50px;
}

.resources-carousel * {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*.resources-carousel .owl-item {
	width: calc( 33.33% - 108px ) !important;
	margin-right: 36px;
}*/
.resources .item {
	width: 100%;
}

.resources .item .thumbnail {
	position: relative;
	width: 100%;
	height: 259px;
}

.resources .item .thumbnail img {
	display: block;
	width: 100%;
	height: auto;
}

.resources .item .thumbnail .img {
	border-radius: 6px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.resources .item .content {
	border-radius: 6px;
	position: relative;
	background: #fff;
	width: 278px;
	min-height: 251px;
	margin-top: -56px;
	text-align: left;
}

.resources .content .head {
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #145960;
	background: #BACBD3;
	line-height: 21px;
	text-transform: uppercase;
	padding: 5px 15px;
}

.resources .content .body {
	position: relative;
	padding: 20px 15px 84px;
}

.date span {
	display: block;
	font-size: 10px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #333333;
	line-height: 12px;
	text-transform: uppercase;
}

.name {
	font-size: 20px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #333333;
	margin: 10px 0;
	line-height: 24px;
}

.readmore {
	position: absolute;
	bottom: 60px;
	left: 15px;
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #F55841;
	line-height: 21px;
	text-transform: uppercase;
	text-decoration: none;
}

.resources-btn {
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 175px;
	height: 49px;
	margin: 35px auto 0;
	background: #FBA82D;
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #293F42;
	text-transform: uppercase;
	transition: color 0.4s ease-out, background 0.4s ease-out;
}

.resources-btn:visited {
	color: #293F42;
}

.resources-btn:hover {
	background: #109AA9;
	color: #fff;
	text-decoration: none;
}

.resources-btn span {
	display: block;
	line-height: 21px;
	letter-spacing: 0.56px;
}

.resources .owl-dots {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.resources .owl-dots .owl-dot {
	width: 14px;
	height: 14px;
	background: #109AA9;
	border-radius: 100%;
	margin: 0 5px;
	opacity: 50%;
}

.resources .owl-dots .owl-dot.active {
	opacity: 100%;
}

/* ENQUIRE */
.enquire .container-max {
	width: 100%;
	max-width: 1436px;
	margin: 0 auto;
	padding: 0 20px;
}

.enquire {
	position: relative;
	height: 322px;
	padding: 78px 0 20px;
}

.enquire-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	z-index: 1;
}

.enquire-box {
	position: relative;
	text-align: center;
	z-index: 2;
}

.enquire-box h2 {
	font-size: 40px;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	line-height: 54px;
}

.enquire-box p {
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	color: #fff;
}

.enquire-box h6 {
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	color: #fff;
	text-transform: none;
}

.enquire-box p a {
	font-weight: 700;
	color: #fff;
	text-decoration: none;
}

.enuire-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 143px;
	height: 46px;
	margin: 35px auto 0;
	background: #FBA82D;
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #293F42;
	transition: color 0.4s ease-out, background 0.4s ease-out;
}

.enuire-btn:visited {
	color: #293F42;
}

.enuire-btn:hover {
	background: #109AA9;
	color: #fff;
	text-decoration: none;
}

.enuire-btn span {
	display: block;
	line-height: 21px;
	letter-spacing: 0.56px;
}

/* Testimonials */
.testmonials {
	padding: 62px 0 36px;
}

.testmonials .container-max {
	width: 100%;
	max-width: 670px;
	margin: 0 auto;
	padding: 0 20px;
}

.testmonials-carousel {
	position: relative;
}

.testmonials-carousel:before {
	content: '\201C';
	position: absolute;
	top: -22px;
	left: -66px;
	font-size: 90px;
	font-family: sans-serif;
	font-weight: 600;
	color: #fff;
	letter-spacing: 9px;
	line-height: 136px;
	opacity: 41%;
}

.testmonials-carousel:after {
	content: '\201C';
	position: absolute;
	top: -28px;
	right: -73px;
	font-size: 90px;
	font-family: sans-serif;
	font-weight: 600;
	color: #fff;
	letter-spacing: 9px;
	line-height: 67px;
	opacity: 41%;
	transform: rotate(180deg);
}

.testmonials .title {
	font-size: 20px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	margin-bottom: 10px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.testmonials .item {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	text-align: center;
}

.testmonials .item .author {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	margin-top: 22px;
}

.testmonials .owl-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 18px;
}

.testmonials .owl-dot {
	width: 9px;
	height: 9px;
	background: #fff !important;
	border-radius: 100%;
	margin: 0 4px;
}

.testmonials .owl-dot.active {
	background: #FBA82D !important;
}

.testmonials .owl-nav button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 40px !important;
}

.testmonials .owl-nav button.owl-prev {
	left: -23px;
	color: #fff !important;
}

.testmonials .owl-nav button.owl-next {
	right: -23px;
	color: #fff !important;
}

/* MOBILE */
@media only screen and (max-width: 768px) {
	.testmonials .owl-nav button.owl-prev {
		left: -35px;
	}

	.testmonials .owl-nav button.owl-next {
		right: -35px;
	}

	h1 {
		font-size: 26px;
		line-height: 30px;
		margin-bottom: 10px;
	}

	h3 {
		font-size: 18px;
		line-height: 25px;
	}

	.body-content {
		padding-top: 30px;
	}

	.body-content__flex {
		flex-direction: column;
	}

	.body-content .content {
		width: 100%;
		padding-right: 0;
	}

	.body-content .content p {
		font-weight: 300;
	}

	.body-content .form {
		width: calc(100% - 7px);
		margin-top: 10px;
		padding: 20px 10px;
	}

	.brochure {
		padding: 30px 20px;
	}

	.brochure h3 br {
		display: none;
	}

	.brochure h3,
	.casestudy-box .content h3,
	.services-box .content h3,
	.resources .content h3,
	.body-content .content h2,
	.body-content .form h2 {
		font-size: 16px;
		line-height: 22px;
	}

	.brochure p,
	.casestudy-box .content p,
	.services-box .content ul li {
		font-size: 14px;
		line-height: 20px;
	}

	.casestudy {
		padding: 30px 0 40px;
	}

	.casestudy-box {
		flex-direction: column;
	}

	.casestudy-box .content {
		width: 100%;
		padding-right: 0;
	}

	.casestudy-box .frame {
		width: 100%;
		margin-top: 40px;
	}

	.services-box {
		flex-direction: column;
	}

	.services-box .img {
		width: 100%;
	}

	.services-box .content {
		width: 100%;
		margin: 25px 0 0 0;
	}

	.awards {
		padding: 0 20px 100px;
	}

	.resources .item .content {
		width: 60%;
	}

	.enquire-box h2 {
		font-size: 25px;
		line-height: 30px;
	}

	.resources {
		padding: 30px 0;
	}

	.resources .content p {
		font-size: 14px;
		line-height: 20px;
	}

	.resources-carousel {
		margin-top: 20px;
	}

	.awards-carousel .owl-item img {
		width: auto;
		height: auto;
	}

	.brochure .list {
		width: 100%;
	}

	.testmonials {
		padding: 62px 40px 36px;
	}

	.testmonials-carousel:after {
		font-size: 60px;
		top: -18px;
		right: -44px;
	}

	.testmonials-carousel:before {
		font-size: 60px;
		top: -22px;
		left: -40px;
	}
}

@media only screen and (max-width: 400px) {
	.brochure .list .item {
		width: 100%;
		margin: 0 0 10px;
	}

	.resources .item .content {
		width: 80%;
		min-height: 170px;
	}

	.resources .content .body {
		padding: 20px 15px 50px;
	}

	.readmore {
		position: relative;
		bottom: 0;
		left: 0;
	}
}

.services .download-btn {
	border-radius: 4px;
	display: inline-block;
	background: #FBA82D;
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #293F42;
	letter-spacing: 1.4px;
	transition: color 0.4s ease-out, background 0.4s ease-out;
	padding: 11px 20px;
	margin-top: 20px;
	text-decoration: none;
}

.services .download-btn:hover {
	background: #109AA9;
	color: #fff;
	text-decoration: none;
}

.body-content .form #confirmform {
	position: absolute;
}

iframe {
	max-width: 100%;
}

.default__content {
	text-align: center;
	margin-bottom: 39px;
}

.default__sub-heading {
	font-weight: 700;
	font-size: 14px;
}

.default__content-text p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	line-height: 24px;
	font-weight: 400;
}

.default__content h2 {
	font-size: 22px;
	line-height: 33px;
	letter-spacing: 2.2px;
	font-weight: 600;
	margin-bottom: 10px;
}

.default__container {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.button--primary {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-family: 'Poppins';
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.15px;
	line-height: 19px;
	text-decoration: none !important;
	color: #213c44 !important;
	background-color: #ffa800;
	padding: 13px 25px;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
	min-height: 45px;
}

.brochure-button,
.resources__button,
.enquire__button,
.slider-image-caption__button,
.animated-icon-slider__button {
	display: flex;
	align-items: center;
	justify-content: center;
}

.button--fix {
	border-radius: 4px;
	display: inline-flex;
	width: auto !important;
	padding: 0 25px !important;
	text-decoration: none;
}

.button--primary:hover {
	background: #109AA9;
	color: #fff !important;
}

.page-id-18 .brochure h3 {
	text-align: left !important;
}

.page-id-18 .brochure .body-text p {
	text-align: left !important;
}

.page-id-18 .brochure .content {
	margin: 0;
}

.page-id-18 .brochure .list {
	justify-content: start;
	margin-top: 40px;
}

.page-id-18 .brochure-carousel .owl-stage-outer {
	width: 100%;
}

.page-id-18 .brochure-carousel .brochure .list .item {
	height: 156px;
}

.brochure .content .body-text iframe {
	max-width: 100%;
}

.brochure .content .body-text p a {
	text-decoration: none !important;
	color: #fff;
}

.iframe-container {
	max-width: 560px;
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 56.25%;
	margin: 0 auto;
}

.iframe-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	max-width: 100%;
	border: none;
}

#code_block-3-1445 {
	padding-left: 0 !important;
}

.resources-carousel {
	padding: 0 35px;
}

.resources-carousel .description {
	font-size: 14px;
	font-family: 'Inter', sans-serif;
	color: #333333;
	line-height: 20px;
	margin-bottom: 10px;
}

.resources-carousel .owl-nav button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 40px !important;
	line-height: 1;
}

.resources-carousel .owl-nav button.owl-prev {
	left: 0;
}

.resources-carousel .owl-nav button.owl-next {
	right: 0;
}

.body-content.body-content--noform .content {
	width: 100%;
}

.body-content.body-content--noform .content p {
	letter-spacing: 0px;
	color: #333333;
	opacity: 1;
	font-weight: 300;
	font-size: 16px;
	line-height: 24px;
}

.body-content.body-content--noform .content p b,
.body-content.body-content--noform .content p strong {
	font-weight: 700;
}

.body-content.body-content--noform .content h6 {
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	color: #333333;
}

.body-content.body-content--noform .content a {
	color: #109aa9;
	text-decoration: none;
}

.brochure-carousel-wrapper .title h6 {
	font-size: 16px;
	line-height: 18px;
	letter-spacing: 0px;
	color: #109AA9;
	text-transform: uppercase;
	margin-top: 11.5px;
	text-align: center;
}

.casestudy-box .content p {
	font-weight: 400;
}

.awards.logo-block-slider {
	padding-top: 60px;
}

.awards.logo-block-slider .awards-carousel .item img {
	max-width: 200px;
	width: 100%;
	margin: 0 auto;
}

.logo-block-slider__content {
	text-align: center;
	margin-bottom: 40px;
}

.logo-block-slider__sub-heading {
	font-weight: 700;
	font-size: 14px;
}

.logo-block-slider__content-text p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	line-height: 24px;
}

.logo-block-slider__content h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.trainer__container {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.horizontal-line {
	width: 100%;
	height: 1px;
	background-color: #109AA9;
	margin-top: 10px;
}

.awards-carousel .owl-dots {
	display: flex;
	justify-content: center;
	padding-top: 44px;
}

.awards-carousel .owl-dots .owl-dot {
	height: 8px;
	width: 8px;
	border-radius: 50%;
	background-color: #707070;
	margin: 0 9px;
}

.awards-carousel .owl-dots .owl-dot.active {
	background-color: #109AA9;
}

@media (min-width: 768px) {
	.carousel-alt-layout {
		margin: 0 auto;
	}

	.carousel-alt-layout .owl-item:not(:last-child) {
		margin-right: 10% !important;
	}

	.carousel-alt-layout .owl-stage-outer,
	.carousel-alt-layout .owl-stage {
		width: 100% !important;
	}
}

/*Update Sep 27 2022 */
/*Three Column Image Components */
.three-image-column-components {
	padding: 60px 0;
}

.three-image-column__content {
	text-align: center;
	margin-bottom: 40px;
}

.three-image-column__sub-heading {
	font-weight: 700;
	font-size: 14px;
}

.three-image-column__content-text p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	line-height: 24px;
}

.three-image-column__content h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.three-image-column__container {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.three-image-column__row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.three-image-column__col {
	max-width: 33.33%;
	width: 100%;
	padding: 0 15px;
	text-align: center;
}

.three-image-column__col h3 {
	font-size: 20px;
	font-weight: 700;
	color: #333333;
	margin: 10px 0;
	line-height: 24px;
}

.three-image-column__col p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	color: #333333;
	line-height: 24px;
}

.three-image-column__col a {
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #109aa9;
	line-height: 21px;
	text-transform: uppercase;
	text-decoration: none;
}

.three-image-column__col img {
	border-radius: 6px;
	max-width: 100%;
	line-height: 0;
}

/*Two Column Image Components */
.two-image-column-components {
	padding: 60px 0;
}

.two-image-column__content {
	text-align: center;
	margin-bottom: 40px;
}

.two-image-column__sub-heading {
	font-weight: 700;
	font-size: 14px;
}

.two-image-column__content-text p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	line-height: 24px;
}

.two-image-column__content h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.two-image-column__container {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.two-image-column__row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.two-image-column__col {
	max-width: 50%;
	width: 100%;
	padding: 0 15px;
}

.two-image-column__col h3 {
	font-size: 20px;
	font-weight: 700;
	color: #333333;
	margin: 10px 0;
	line-height: 24px;
	text-align: center;
}

.two-image-column__col p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	color: #333333;
	line-height: 24px;
}

.two-image-column__col a {
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #109aa9;
	line-height: 21px;
	text-transform: uppercase;
}

.two-image-column__col img {
	border-radius: 6px;
	max-width: 100%;
	line-height: 0;
	min-height: 217px;
	object-fit: cover;
}

/*Two Column Block Components */
.two-column-block-components {
	padding: 60px 0;
}

.two-column-block__content {
	text-align: center;
	margin-bottom: 40px;
}

.two-column-block__sub-heading {
	font-weight: 700;
	font-size: 14px;
}

.two-column-block__content-text p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	line-height: 24px;
}

.two-column-block__content-text a {
	color: #fff;
	text-transform: uppercase;
	text-decoration: underline;
}

.two-column-block__content h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.two-column-block__container {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.two-column-block__row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.two-column-block__col {
	max-width: 50%;
	width: 100%;
	padding: 0 15px;
}

.two-column-block__col h3 {
	font-size: 20px;
	font-weight: 700;
	color: #109aa9;
	margin: 10px 0;
	line-height: 24px;
}

.two-column-block__col p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	color: #333333;
	line-height: 24px;
}

.two-column-block__col-inner {
	border-radius: 6px;
	padding: 20px;
	background-color: #F2F2F2;
}

.two-column-block__col-inner ul {
	margin: 0;
}

/*Trainer Components */
.trainer-components {
	padding: 60px 0;
}

.trainer__content {
	text-align: center;
	margin-bottom: 40px;
}

.trainer__sub-heading {
	font-weight: 700;
	font-size: 14px;
}

.trainer__content-text p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	line-height: 24px;
}

.trainer__content h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.trainer__container {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.trainer__row {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}

.trainer__col {
	max-width: 100%;
	width: 100%;
	margin-bottom: 20px;
}

.trainer__col h3 {
	font-size: 20px;
	font-weight: 700;
	color: #333333;
	margin: 10px 0;
	line-height: 24px;
}

.trainer__col p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	color: #333333;
	line-height: 24px;
	font-weight: 300;
}

.trainer__col img {
	border-radius: 6px;
	max-width: 300px;
	line-height: 0;
	margin-right: 20px;
}

.trainer__col .col-inner {
	display: flex;
	align-items: center;
}

/*Slider Image Caption Components */
.slider-image-caption-components {
	padding: 60px 0;
}

.slider-image-caption__content {
	text-align: center;
	margin-bottom: 40px;
}

.slider-image-caption__sub-heading {
	font-weight: 700;
	font-size: 14px;
}

.slider-image-caption__content-text p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	line-height: 24px;
}

.slider-image-caption__content h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.slider-image-caption__container {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.slider-image-caption__row {
	display: flex;
	flex-wrap: wrap;
	padding: 0 20px;
}

.slider-image-caption__col {
	max-width: 100%;
	width: 100%;
	padding: 0 15px;
	text-align: center;
}

.slider-image-caption__col a {
	text-decoration: none;
}

.slider-image-caption__col h3 {
	font-size: 20px;
	font-weight: 700;
	color: #333333;
	margin: 10px 0;
	line-height: 24px;
	min-height: 48px;
}

.slider-image-caption__col p {
	font-size: 14px;
	font-family: 'Inter', sans-serif;
	color: #333333;
	line-height: 20px;
	margin: 0;
	font-weight: 300;
}

.slider-image-caption__text {
	margin: 15px 0;
	min-height: 100px;
}

.slider-image-caption__image {
	height: 200px;
}

.slider-image-caption__image img {
	max-height: 200px;
	object-fit: contain;
}

.slider-image-caption__col img {
	border-radius: 6px;
	max-width: 100%;
	line-height: 0;
}

.slider-image-caption__row .owl-nav button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 40px !important;
}

.slider-image-caption__row .owl-nav button.owl-prev {
	left: 0;
}

.slider-image-caption__row .owl-nav button.owl-next {
	right: 0;
}

/*Block Slider Components */
.block-slider-components {
	padding: 60px 0;
}

.block-slider__content {
	text-align: center;
	margin-bottom: 40px;
}

.block-slider__sub-heading {
	font-weight: 700;
	font-size: 14px;
}

.block-slider__content-text p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	line-height: 24px;
}

.block-slider__content h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.block-slider__container {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.block-slider__row {
	display: flex;
	flex-wrap: wrap;
	padding: 0 20px;
}

.block-slider__row.owl-carousel .owl-stage {
	display: flex;
}

.block-slider__col {
	max-width: 100%;
	width: 100%;
	padding: 0 15px;
	height: 100%;
}

.block-slider__col h3 {
	font-size: 20px;
	font-weight: 700;
	color: #333333;
	margin: 10px 0;
	line-height: 24px;
	text-transform: uppercase;
	max-width: calc(100% - 100px);
	min-height: 72px;
}

.block-slider__col p {
	font-size: 14px;
	font-family: 'Inter', sans-serif;
	color: #333333;
	line-height: 20px;
}

.block-slider__col a {
	text-decoration: none;
}

.block-slider__col img {
	max-width: 100%;
	line-height: 0;
	position: absolute;
	top: 0;
	right: 10px;
	width: auto !important;
}

.block-slider__inner {
	background-color: #f2f2f2;
	border-radius: 6px;
	position: relative;
	padding: 50px 10px 25px;
	min-height: 250px;
	height: 100%;
}

.block-slider__inner span {
	font-size: 12px;
	text-transform: uppercase;
	font-family: 'Inter', sans-serif;
	color: #333333;
	position: absolute;
	bottom: 0;
	left: 10px;
}

.block-slider__duration {
	background-color: #213c44;
	padding: 2px 5px;
	position: absolute;
	bottom: 0;
	right: 0;
	text-align: center;
}

.block-slider__duration p {
	color: #fff;
	margin: 0;
	text-transform: uppercase;
	font-size: 12px;
	font-family: 'Inter', sans-serif;
}

.block-slider__row .owl-nav button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 40px !important;
}

.block-slider__row .owl-nav button.owl-prev {
	left: 0;
}

.block-slider__row .owl-nav button.owl-next {
	right: 0;
}

.form-embed__container form {
	display: flex;
	flex-wrap: wrap;
}

.form-embed__container.one-col .mktoFormRow {
	max-width: 100%;
	width: 100%;
}

.form-embed__container.two-col .mktoFormRow {
	max-width: 50%;
	width: 100%;
	padding: 0 5px;
}

.form-embed__container.two-col form {
	margin: 0 -5px;
	max-width: 100%;
}

/*Form Embed Components */
.form-embed-components {
	padding: 60px 0;
}

.form-embed__content {
	text-align: center;
	padding-top: 30px;
}

.form-embed__sub-heading {
	font-weight: 700;
	font-size: 14px;
}

.form-embed__content-text p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	line-height: 24px;
}

.form-embed__content h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.form-embed__container {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	background: #F2F2F2;
}

.form-embed__form {
	padding: 22px 40px 0;
}

.form-embed__form .mktoForm .mktoLabel {
	display: block;
	text-transform: uppercase;
}

.form-embed__form .mktoForm .mktoField {
	border-radius: 0 !important;
}

.form-embed__form .mktoButtonRow .mktoButton {
	border-radius: 0 !important;
	width: 100% !important;
}

.form--embed__form div.mktoButtonRow {
	max-width: 50% !important;
	width: 100% !important;
	margin: 0 auto !important;
	display: block !important;
}

.form--embed__form .mktoButtonRow span.mktoButtonWrap {
	display: block !important;
}

.wyiswyg-components {
	padding-top: 60px;
	margin-bottom: -30px;
}

.wyiswyg__content {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.wyiswyg__content iframe {
	max-width: 100%;
}

.wyiswyg__content-text p {
	text-align: center;
	margin: 0;
}

.resources.resources--landing-page .item .content {
	min-height: 170px;
}

/*Two Column Block Floating Components */
.two-column-floating-content-components {
	padding: 60px 0 90px;
}

.two-column-floating-content__content {
	text-align: center;
	margin-bottom: 40px;
}

.two-column-floating-content__sub-heading {
	font-weight: 700;
	font-size: 14px;
}

.two-column-floating-content__content-text p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	line-height: 24px;
}

.two-column-floating-content__content-text a {
	color: #fff;
	text-transform: uppercase;
	text-decoration: underline;
}

.two-column-floating-content__content h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.two-column-floating-content__container {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

/* .two-column-floating-content__row {
	padding-top: 60px;
} */

.two-column-floating-content__hidden {
	opacity: 0;
	padding: 34px 24px 0px 64px;
}

.two-column-floating-content__col {
	display: flex;
	position: relative;
	margin-bottom: 90px;
}

.two-column-floating-content__col:last-child {
	margin-bottom: 0;
}

.two-column-floating-content__col.right-col .two-column-floating-content__col-image,
.two-column-floating-content__col.right-col .two-column-floating-content__col-video,
.two-column-floating-content__col.right-col .two-column-floating-content__col-iframe {
	order: 2;
}

.two-column-floating-content__col.right-col .two-column-floating-content__col-video iframe {
	max-width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.two-column-floating-content__col.left-col .two-column-floating-content__col-video,
.two-column-floating-content__col.left-col .two-column-floating-content__col-image {
	order: 1;
}

.two-column-floating-content__col.left-col .two-column-floating-content__col-content {
	order: 2;
	z-index: 2;
}

.two-column-floating-content__col.right-col .two-column-floating-content__col-content {
	order: 1;
	left: 0;
	right: auto;
	z-index: 2;
}

.two-column-floating-content__col.right-col .two-column-floating-content__col-inner {
	left: 0;
	top: -22px;
	right: auto;
	padding-left: 48px;
	padding-right: 23px;
}

.two-column-floating-content__col-image {
	height: 375px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 6px;
	max-width: 52.869;
	width: 100%;
	top: -19px;
}

.two-column-floating-content__video-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 2;
}

.two-column-floating-content__video-placeholder svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
}

.two-column-floating-content__video-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.two-column-floating-content__col-video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
}

.two-column-floating-content__col-embed {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 56.25%;
	/* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.two-column-floating-content__col-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.two-column-floating-content__col-video,
.two-column-floating-content__col-iframe {
	height: 375px;
	max-width: 52.869%;
	width: 100%;
	top: -19px;
	position: relative;
}

.two-column-floating-content__col-content {
	max-width: 47.131%;
	width: 100%;
}

.two-column-floating-content__col-inner {
	background-color: #F2F2F2;
	border-radius: 6px;
	padding: 49px 24px 47px 64px;
	min-height: 361px;
	position: absolute;
	right: 0;
	top: 42px;
	width: 100%;
	max-width: calc(47.131% + 53px);
}

.two-column-floating-content__col h3 {
	font-size: 22px;
	font-weight: 700;
	color: #109aa9;
	margin: 0 0 18px;
	line-height: 33px;
	letter-spacing: 2.2px;
}

.two-column-floating-content__col-content p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	color: #333333;
	line-height: 24px;
	font-weight: 400;
}

.two-column-floating-content__col-content ul {
	list-style: none;
	margin: 0 0 30px;
	padding: 0;
}

.two-column-floating-content__col-content ul li {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	color: #333333;
	line-height: 24px;
	letter-spacing: 0px;
	display: flex;
	font-weight: 400;
}

.two-column-floating-content__col-content ul li p {
	max-width: calc(100% - 23px);
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	color: #333333;
	line-height: 24px;
	letter-spacing: 0px;
	margin: 0;
	font-weight: 400;
	margin-left: 15px;
}

.two-column-floating-content__col-content ul li::before {
	display: block;
	content: "";
	width: 8px;
	height: 8px;
	border: 1px solid #109AA9;
	border-radius: 50%;
	position: relative;
	top: 10px;
}

.two-column-floating-content__col-content .resources-btn {
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.56px;
	width: auto;
	display: inline-flex;
	font-weight: 600;
	padding: 15px 50px 14px 50px;
	text-decoration: none;
}

.two-column-floating-content-components.two-column-floating-content-components--about {
	padding-bottom: 73px;
}

.two-column-floating-content-components.two-column-floating-content-components--about .two-column-floating-content__col-inner {
	background-color: #109AA9;
	padding-left: 60px;
	padding-top: 88px;
	padding-right: 62px;
	padding-bottom: 68px;
	max-width: calc(49.012% + 41.01px);
	top: -42px;
}

.two-column-floating-content-components.two-column-floating-content-components--about .two-column-floating-content__row {
	padding-top: 13px;
}

.two-column-floating-content-components.two-column-floating-content-components--about .two-column-floating-content__col h3 {
	color: #fff;
	margin-bottom: 21px;
}

.two-column-floating-content-components.two-column-floating-content-components--about .two-column-floating-content__col p {
	color: #fff;
	margin-top: 0;
}

.two-column-floating-content-components.two-column-floating-content-components--about .two-column-floating-content__col p {
	color: #fff;
	margin-top: 0;
}

.two-column-floating-content-components.two-column-floating-content-components--about .two-column-floating-content__col-image {
	max-width: 50.988%;
	height: 360px;
}

.two-column-floating-content-components.two-column-floating-content-components--about .two-column-floating-content__col-content {
	max-width: 49.012%;
}

.two-column-floating-content-components.two-column-floating-content-components--about .two-column-floating-content__content {
	margin-bottom: 63px;
}

.why-work__listing {
	padding-top: 54px;
}

@media screen and (max-width: 768px) {
	.why-work__listing {
		padding-top: 20px;
	}
}

.why-work__listing ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.why-work__listing ul::before {
	content: "";
	background-image: url("https://www.asi.com.au/wp-content/uploads/2022/10/rectangle-bg.png");
	width: 100%;
	height: 7px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 1;
}

.why-work__listing ul li {
	width: 169px;
	height: 93px;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 47px;
	background-color: #fff;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.why-work__listing ul li p {
	font-size: 16px;
	line-height: 20px;
	color: #333333;
	text-transform: capitalize;
	letter-spacing: 0px;
	font-weight: 400;
	margin: 0;
	max-width: 125px;
}

.our-people-components {
	padding: 97px 0 73px;
}

.our-people__content {
	text-align: center;
	margin-bottom: 39px;
}

.our-people__sub-heading {
	font-weight: 700;
	font-size: 14px;
}

.our-people__content-text p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	line-height: 24px;
	font-weight: 400;
}

.our-people__content h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.our-people__container {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.our-people__row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12.5px;
}

.our-people__col {
	max-width: 33.33%;
	width: 100%;
	padding: 0 12.5px;
}

.our-people__col-inner {
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 43px;
	display: flex;
	max-height: 193px;
}

.our-people__thumbnail {
	max-width: 50%;
	width: 100%;
}

.our-people__thumbnail img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.our-people__info {
	text-align: center;
	max-width: 50%;
	width: 100%;
	background-color: #F2F2F2;
	padding: 12px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.our-people__info h6 {
	font-family: 'Poppins', sans-serif;
	font-weighT: 600;
	font-size: 17px;
	letter-spacing: 1.7px;
	color: #333333;
	text-transform: uppercase;
	margin: 2px 0 0;
	line-height: 26px;
}

.our-people__info p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	color: #333333;
	line-height: 24px;
	letter-spacing: 0px;
	margin: 0;
}

.our-people__info ul {
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.our-people__info ul li {
	margin: 0 4px;
}

.our-people__col img {
	max-width: 300px;
	line-height: 0;
	margin-right: 20px;
}

.our-people__col .col-inner {
	display: flex;
	align-items: center;
}

.history-components {
	padding: 47px 0 113px;
	position: relative;
	background-position: center;
}

.history-components__content {
	text-align: center;
	margin-bottom: 39px;
}

.history-components__sub-heading {
	font-weight: 700;
	font-size: 14px;
}

.history-components__content-text p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	line-height: 24px;
	font-weight: 400;
}

.history-components__content {
	max-width: 586px;
	margin: 0 auto;
}

.history-components__content h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.history-components__container {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 2;
}

.history-components__row {
	display: flex;
	flex-wrap: wrap;
}

.history-components__row .owl-stage-outer {
	padding: 0 5px;
}

.history-components__col-inner {
	padding-left: 20px;
}

.history-components__col-inner h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	letter-spacing: 1px;
	color: #FFFFFF;
	text-transform: uppercase;
	font-size: 20px;
	line-height: 30px;
}

.history-components__col-inner p {
	letter-spacing: 0px;
	color: #FFFFFF;
	font-size: 16px;
	line-height: 18px;
	font-weight: 400;
}

.history-components__col-inner.has-icon {
	position: relative;
}

.history-components__col-inner.has-icon::after {
	content: "";
	position: absolute;
	height: calc(100% - 48.5px);
	width: 30px;
	border-bottom-left-radius: 15px;
	border-left: 2px solid #109aa9;
	border-bottom: 2px solid #109aa9;
	top: 17.5px;
	left: 0;
}

.history-components__col-inner.has-icon::before {
	content: "";
	position: absolute;
	border: 1px solid #109aa9;
	width: 9px;
	height: 9px;
	border-radius: 50px;
	top: 9px;
	left: -4.5px;
}

.history-components__description {
	max-width: 125px;
	padding-top: 8px;
}

.history-components__icon {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	border: 2px solid #109AA9;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #213C44;
	margin-left: 10px;
}

.history-components__icon img {
	max-width: 25px;
}

.history-components__listing {
	position: relative;
	margin-top: 54px;
}

.history-components__bar {
	position: absolute;
	left: 0;
	top: 29px;
	margin: 0 5px;
	width: 100%;
	overflow: hidden;
}

.history-components__bar-box {
	width: 100%;
	background: repeating-linear-gradient(to right, #109AA9, #48D261, #FBA82D);
	background-position: 0 100%;
	background-repeat: no-repeat;
	height: 7px;
}

.history-components__row .owl-nav button span {
	color: #fff;
	font-size: 40px;
}

.history-components__row .owl-nav {
	width: calc(100% + 74px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	top: 65px;
	left: -37px;
}

.two-column-floating-content-components.two-column-floating-content-components--video .two-column-floating-content__row {
	padding-top: 13px;
}

.two-column-floating-content-components.two-column-floating-content-components--video {
	padding: 20px 0 40px;
}

@media screen and (max-width: 768px) {
	.two-column-floating-content-components.two-column-floating-content-components--video {
		padding: 40px 0 40px;
	}
}

.two-column-floating-content-components.two-column-floating-content-components--video .two-column-floating-content__col-inner {
	z-index: 3;
	top: 40px;
	padding-right: 50px;
}

.two-column-floating-content-components.two-column-floating-content-components--video .two-column-floating-content__col-inner a {
	width: 151px;
	height: 33px;
	font-size: 14px;
	letter-spacing: 1.4px;
	font-family: 'Poppins';
	padding: 0;
	margin-top: 10px;
	font-weight: 600;
	color: #333333;
}

.two-column-floating-content-components.two-column-floating-content-components--video .two-column-floating-content__col-inner h5 {
	font-size: 24px;
	font-weight: 600;
	line-height: 24px;
	color: #109aa9;
}

.contact-information-components {
	padding: 44px 0 37px;
}

.contact-information__content {
	text-align: center;
	margin-bottom: 39px;
}

.contact-information__sub-heading {
	font-weight: 700;
	font-size: 14px;
}

.contact-information__content-text p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	line-height: 24px;
	font-weight: 400;
}

.contact-information__content h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.contact-information__container {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.contact-information__row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.contact-information__col:first-child {
	max-width: 36.75%;
	width: 100%;
}

.contact-information__col:nth-child(2) {
	max-width: 36.75%;
	width: 100%;
}

.contact-information__col:nth-child(3) {
	max-width: 26.50%;
	width: 100%;
}

.contact-information__col-inner {
	padding-bottom: 10px;
	padding-right: 20px;
	padding-left: 20px;
}

.contact-information__col-inner h6 {
	line-height: 16px;
	color: #213c44;
	font-size: 16px;
	padding-bottom: 10px;
	text-transform: uppercase;
}

.contact-information__col-inner a {
	font-weight: 600;
	color: #109AA9;
	font-size: 20px;
	line-height: 20px;
	margin-bottom: 20px;
	display: block;
	text-decoration: none;
}

.contact-form-components {
	padding: 75px 0px 58px;
}

.contact-form__content {
	text-align: center;
	margin-bottom: 15px;
}

.contact-form__sub-heading {
	font-weight: 700;
	font-size: 14px;
}

.contact-form__content-text p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	line-height: 24px;
	font-weight: 400;
}

.contact-form__content h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	padding-bottom: 0;
	text-transform: uppercase;
}

.contact-form__container {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.contact-form__form-container .mktoForm {
	display: flex;
	flex-wrap: wrap;
	flex-direction: initial;
	max-width: 100%;
}

.contact-form__form-container .mktoForm .mktoLabel {
	text-transform: uppercase;
}

.contact-form__form-container .mktoForm .mktoFormRow {
	width: 100%;
	flex: 1 50%;
	max-width: 100%;
}

.contact-form__form-container .mktoForm .mktoFormRow:nth-child(10),
.contact-form__form-container .mktoForm .mktoFormRow:nth-child(11) {
	flex: 1 100% !important;
}

@media screen and (max-width: 1080px) {
	.history-components__row .owl-stage-outer {
		padding: 0 37px;
	}

	.history-components__row .owl-nav {
		max-width: 100%;
		left: 0;
	}
}

@media screen and (max-width: 1024px) {
	.our-people__col {
		max-width: 50%;
	}
}

@media screen and (max-width: 991px) {
	.slider-image-caption__image {
		height: auto;
	}
}

@media screen and (max-width: 920px) {
	.why-work__listing ul {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.why-work__listing ul::before {
		background-image: none;
		width: 7px;
		height: calc(100% - 20px);
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		background: linear-gradient(to bottom, #109AA9, #48D261, #FBA82D);
	}

	.why-work__listing ul li {
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 900px) {
	.three-image-column__col {
		max-width: 50%;
		margin-bottom: 30px;
	}

	.three-image-column__col:last-child {
		margin-bottom: 0;
	}

	.contact-information__col {
		max-width: 100% !important;
		margin-bottom: 30px;
	}

	.contact-information__col-inner {
		padding-left: 0;
	}
}

@media screen and (max-width: 768px) {
	.two-column-floating-content__hidden {
		display: none;
	}

	.contact-form__form-container .mktoForm .mktoFormRow {
		flex: 1 100%;
	}

	.two-column-floating-content__row {
		padding-top: 0;
	}

	.two-column-floating-content__col {
		flex-wrap: wrap;
		margin-bottom: 0;
	}

	.two-column-floating-content__col.right-col .two-column-floating-content__col-content {
		order: 2;
		left: auto;
		right: auto;
		padding: 0;
	}

	.two-column-floating-content__col.right-col .two-column-floating-content__col-inner {
		top: auto;
		padding: 45px 20px;
	}

	.two-column-floating-content__container {
		padding: 0;
	}

	.two-column-floating-content__col-image {
		max-width: 100% !important;
		top: auto;
	}

	.two-column-floating-content__col-content {
		max-width: 100% !important;
	}

	.two-column-floating-content__col-inner {
		position: relative;
		right: auto;
		top: auto;
		max-width: 100% !important;
		padding: 45px 20px;
		min-height: 360px;
	}

	.two-column-floating-content-components.two-column-floating-content-components--about .two-column-floating-content__col-inner {
		height: auto;
		padding: 45px 20px;
		min-height: auto;
	}

	.our-people__col {
		max-width: 100%;
	}

	.our-people__col img {
		max-width: auto;
	}

	.our-people__thumbnail {
		max-width: 40%;
	}

	.our-people__info {
		max-width: 60%;
	}

	.two-column-floating-content__col-video,
	.two-column-floating-content__col-iframe {
		max-width: 100%;
		top: 0;
	}

	.two-column-floating-content__col-iframe {
		height: auto;
	}

	.two-column-floating-content-components.two-column-floating-content-components--video .two-column-floating-content__col-inner {
		top: 0;
		height: auto;
	}
}

@media screen and (max-width: 680px) {
	.trainer__col .col-inner {
		flex-direction: column;
		text-align: center;
	}

	.slider-image-caption__image {
		height: auto;
	}

	.contact-information__col {
		max-width: 100% !important;
		margin-bottom: 30px;
	}

	.trainer__col img {
		margin: 0 auto;
	}

	.two-image-column__col {
		max-width: 100%;
		margin-bottom: 30px;
	}

	.two-image-column__col:last-child {
		margin-bottom: 0;
	}

	.three-image-column__col {
		max-width: 100%;
	}

	.three-image-column__col:last-child {
		margin-bottom: 0;
	}

	.three-image-column-components,
	.two-image-column-components,
	.trainer-components,
	.slider-image-caption-components,
	.block-slider-components {
		padding: 40px 0;
	}

	.two-column-block__col {
		max-width: 100%;
		width: 100%;
		margin-bottom: 30px;
	}

	.two-column-block__col:last-child {
		margin-bottom: 0;
	}
}

.map-block-components {
	padding: 75px 0px;
}

.map-block__content {
	text-align: center;
}

.map-block__sub-heading {
	font-weight: 700;
	font-size: 14px;
}

.map-block__content-text p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	line-height: 24px;
	font-weight: 400;
}

.map-block__content h2 {
	font-size: 34px;
	padding-bottom: 15px;
	line-height: 1.5;
	letter-spacing: -0.5px;
	font-weight: 700;
	margin-bottom: 25px;
}

.map-block__container {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.map-block {
	list-style-type: none;
	overflow: hidden;
	align-items: stretch;
	grid-template-columns: repeat(3, minmax(200px, 1fr));
	grid-column-gap: 55px;
	grid-row-gap: 55px;
	display: grid;
}

.map-block .map-box {
	background: #F2F2F2;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.map-block .content-area {
	padding: 20px;
	text-align: left;
}

.map-block .map-cont {
	height: 200px;
}

.map-block .map-cont p {
	padding: 0;
	margin: 0;
}

.map-block .content-area .location {
	font-size: 16px;
	line-height: 24px;
	color: #213C44;
	padding-bottom: 0;
	margin-bottom: 5px;
}

.map-block .content-area .address {
	margin: 0 0 5px;
	min-height: 50px;
}

.map-block .content-area p {
	font-size: 16px;
}

.map-block .content-area .view-link {
	margin-bottom: 15px;
}

.map-block .content-area .view-link a {
	color: #F5492F;
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: none;
}

.map-block .content-area .address-row {
	margin-bottom: 20px;
}

.map-block .content-area .address-row p {
	padding: 0;
	margin: 0;
}

.map-block .content-area .address-row p a {
	font-weight: 700;
	color: #000;
	text-decoration: none;
}

.animated-icon-slider {
	padding: 80px 0 81px;
}

.animated-icon-slider__col {
	margin: 0 16px;
}

.animated-icon-slider__inner {
	height: 225px;
	background-color: #F2F2F2;
	padding-top: 60.82px;
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.animated-icon-slider__inner a {
	position: absolute;
	text-decoration: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.animated-icon-slider__inner p {
	letter-spacing: 0px;
	color: #333333;
	font-size: 20px;
	line-height: 26px;
	margin: 0;
	font-weight: 400;
}

.animated-icon-slider__icon {
	max-width: 55px;
	margin: 0 auto 18px;
}

.animated-icon-slider__video {
	padding: 0 15px;
}

.animated-icon-slider__video video {
	max-width: 100%;
	margin-top: -18px;
}

.animated-icon-slider__icon img {
	max-width: 100%;
}

.animated-icon-slider__row {
	margin-bottom: 43.8px;
}

.animated-icon-slider__row .owl-stage {
	display: flex;
}

.animated-icon-slider__row .owl-nav button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 40px !important;
}

.animated-icon-slider__row .owl-nav button.owl-prev {
	left: -23px;
}

.animated-icon-slider__row .owl-nav button.owl-next {
	right: -23px;
}

.tile-hover {
	padding: 46px 0 63px;
}

.tile-hover__row {
	display: flex;
	/* margin: 0 -9px; */
}

.tile-hover__row .owl-stage {
	/* margin: 0 -9px; */
}

.tile-hover__image img {
	max-width: 100%;
	width: 100%;
	object-fit: cover;
}

.tile-hover__col {
	/* max-width: 20%;
	   width: 100%; */
	padding: 0 9px;
}

.tile-hover__inner {
	border-radius: 6px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	height: 327px;
}

.tile-hover__inner a {
	position: absolute;
	text-decoration: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.tile-hover__inner:hover .tile-hover__content {
	bottom: 0;
}

.tile-hover__inner:hover .tile-hover__content p {
	opacity: 1;
}

.tile-hover__inner:hover .tile-hover__content h6 {
	text-decoration: underline;
}

.tile-hover__content {
	position: absolute;
	background-color: rgba(16, 154, 169, 0.8);
	bottom: -78px;
	left: 0;
	height: 165px;
	padding-top: 31.5px;
	padding-bottom: 8px;
	transition: bottom 0.3s ease-in-out;
}

.tile-hover__content h6 {
	font-size: 16px;
	line-height: 18px;
	letter-spacing: 0px;
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
	transition: all 0.3s ease-in-out;
	font-family: 'Inter';
}

.tile-hover__content-text {
	padding-left: 17px;
	padding-right: 8px;
}

.tile-hover__content p {
	font-size: 14px;
	line-height: 16px;
	letter-spacing: 0px;
	color: #FFFFFF;
	font-weight: 400;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.home-banner {
	position: relative;
	height: 404px;
	overflow: hidden;
}

.home-banner::after {
	content: "";
	width: 100%;
	height: 6px;
	background: repeating-linear-gradient(to right, #109AA9, #48D261, #FBA82D);
	background-position: 0 100%;
	background-repeat: no-repeat;
	display: block;
	position: absolute;
	bottom: 0;
}

.home-banner__video-background {
	/* padding-bottom: 56.25%; 16:9 */
	/* height: 0; */
	position: absolute;
	width: 100%;
	height: 100%;
	/* top: 50%;
	   left: 0;
	   transform: translateY(-50%); */
}

.home-banner__video-background video {
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	height: 400px;
	width: 100%;
}

.home-banner__container {
	max-width: 1440px;
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
}

.home-banner__content {
	z-index: 2;
	position: relative;
	padding: 94px 0 96px;
}

.home-banner__content h1 {
	letter-spacing: 0px;
	color: #109AA9;
	font-family: 'Poppins';
	font-weight: 800;
	font-size: 70px;
	line-height: 100%;
	margin-bottom: 11px;
}

.home-banner__content h2 {
	letter-spacing: 0px;
	color: #fff;
	font-family: 'Poppins';
	font-weight: 600;
	font-size: 35px;
	line-height: 40px;
}

.home-banner__text-listing {
	background-color: #F2F2F2;
	position: relative;
	padding: 16px 20px 11px;
}

.home-banner__text-listing ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	align-items: center;
}

.home-banner__text-listing li {
	margin-right: 103px;
}

.home-banner__text-listing li:last-child {
	margin-right: 0;
}

.home-banner__text-listing li p {
	font: normal normal 600 16px/25px Poppins;
	letter-spacing: 0.96px;
	color: #213C44;
	text-transform: uppercase;
	margin: 0;
}

.home-banner__rotating-text .owl-item {
	--animate-duration: 1s;
}

.home-banner__rotating-text .owl-item h1 {
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.home-banner__rotating-text .owl-item a {
	text-decoration: none;
}

.home-banner__rotating-text .owl-item.active h1 {
	opacity: 1;
}

.home-banner__rotating-text .owl-nav,
.home-banner__rotating-text .owl-dots {
	display: none;
}

@media screen and (max-width: 1311px) {
	.home-banner__text-listing li {
		justify-content: space-between;
	}

	.home-banner__text-listing li {
		margin: 0;
		max-width: 25%;
		width: 100%;
	}
}

@media screen and (max-width: 1220px) {
	.home-banner__text-listing li {
		justify-content: space-between;
	}

	.home-banner__text-listing li {
		margin: 0;
		max-width: 50%;
		width: 100%;
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 1180px) {
	.animated-icon-slider__row .owl-nav button.owl-prev {
		left: 0px;
	}

	.animated-icon-slider__row .owl-nav button.owl-next {
		right: 0px;
	}
}

@media screen and (max-width: 991px) {
	.map-block {
		grid-template-columns: repeat(2, minmax(200px, 1fr));
		grid-column-gap: 30px;
		grid-row-gap: 30px;
	}

	.contact-form-outer .gform_wrapper.gravity-theme .gfield.gfield--width-half {
		grid-column: span 12;
	}
}

@media screen and (max-width: 767px) {
	.map-block {
		grid-column-gap: 15px;
		grid-row-gap: 15px;
	}

	.home-banner__content {
		padding: 60px 0 60px;
	}

	.home-banner__content h2 {
		font-size: 32px;
	}

	.home-banner__content h2 br {
		display: none;
	}

	.home-banner__content h1 {
		font-size: 48px;
	}

	.home-banner__text-listing {
		padding-left: 0;
		padding-right: 0;
	}

	.home-banner__text-listing ul {
		justify-content: center;
		align-items: center;
	}

	.home-banner__text-listing li {
		margin: 0;
		max-width: 100%;
		width: 100%;
		text-align: center;
	}
}

@media screen and (max-width: 600px) {
	.map-block {
		grid-template-columns: repeat(1, minmax(200px, 1fr));
	}
}

.enquiry-form {
	display: none;
	max-width: 600px;
	width: 100%;
	padding-top: 75px;
	padding-bottom: 75px;
}

.enquiry-form h2 {
	color: #125960;
	font-size: 24px;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
}

.enquiryForm .fancybox-content .mktoForm .mktoLabel {
	text-transform: uppercase;
}

.enquiryForm .fancybox-bg {
	background: rgba(0, 0, 0, 0.5);
}

.form-group-button {
	display: flex;
}

.form-group-button input[type="text"] {
	width: calc(100% - 105px);
	height: 60px;
	border: 0;
	outline: none;
	padding: 5px 25px;
	border-radius: 3px 0 0 3px;
	font-family: 'Poppins';
	font-weight: 400;
	font-style: normal;
	font-size: 20px;
	letter-spacing: 0.4px;
}

.form-group-button input[type="submit"] {
	outline: none;
	cursor: pointer;
	border-radius: 0 3px 3px 0;
	font-family: 'Poppins';
	font-weight: 600;
	font-style: normal;
	font-size: 14px;
	letter-spacing: 0.15px;
	text-transform: uppercase;
	width: 105px;
	background-color: #FBA82D;
	border: 0;
}

input[type="checkbox"] {
	-webkit-appearance: auto;
	appearance: auto;
}

.mktoOffset {
	display: none !important;
}

.resources-listing .resources {
	background-color: #fff;
}

.resources-listing .resources .item .thumbnail {
	height: 300px;
}

.resources-listing .resources .content .body {
	padding: 20px 15px 40px;
}

.resources-listing .resources .content .body .item {
	padding: absolute;
	bottom: 0;
}

.resources-listing .resources .item .content {
	background-color: #F2F2F2;
	min-height: 205px;
	margin-top: -31px;
}

.resources-listing .resources .date span {
	font-family: 'Poppins';
	color: #333333;
	letter-spacing: 1.5px;
	font-size: 10px;
	font-weight: 500;
	line-height: 12px;
	text-transform: uppercase;
}

.resources-listing .resources .readmore {
	position: relative;
	left: auto;
	bottom: auto;
}

.resources-listing .resources .readmore:visited {
	color: #F55841;
}

.resources-listing__container {
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.resources-listing__filter {
	background: #F2F2F2;
	padding: 25px 0;
}

.resources-listing__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.resources-listing__content p {
	text-transform: uppercase;
	color: #125960;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.5px;
	font-style: normal;
	margin-right: 25px;
	margin-bottom: 0;
	margin-top: 0;
}

.resources-listing__form {
	flex-grow: 1;
}

.resources-listing__form form {
	display: flex;
	align-items: center;
}

.resources-listing__form select {
	width: 100%;
	font-family: 'Poppins';
	font-weight: 400;
	text-align: center;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	height: 40px;
	padding: 0 12px;
	border-radius: 3px;
	border-color: #767676;
}

.resources-listing__form button.button {
	width: 100%;
	max-width: 180px;
	margin-left: 10px;
	height: 45px;
	border-radius: 0;
	border: none;
}

.resources-listing__form button.button:hover {
	background-color: #0e5861;
	color: #fff;
}

.resources-listing__select-wrapper {
	position: relative;
	width: 100%;
	max-width: 260px;
	margin: 0 10px;
}

.resources-listing__select-wrapper::after {
	content: '>';
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	font-size: 16px;
	color: #F5492F;
	font-family: 'Poppins';
}

.resources-listing__row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.resources-listing__column {
	max-width: 33.33%;
	width: 100%;
	padding: 0 10px;
	margin-bottom: 20px;
}

.resources-listing__column .content .name span {
	text-transform: uppercase;
}

.resources-listing__column .content .head {
	color: #fff;
}

.resources-listing__column .content .head.blog {
	background-color: #109AA9;
}

.resources-listing__column .content .head.blog.event {
	background-color: #109AA9;
}

.resources-listing__column .content .head.case.study {
	background-color: #4BC6DF;
}

.resources-listing__column .content .head.e-book {
	background-color: #213C44;
}

.resources-listing__column .content .head.media,
.resources-listing__column .content .head.event,
.resources-listing__column .content .head.news {
	background-color: #000;
}

.resources-listing__loader {
	display: none;
}

.resources-listing__loader.loading {
	display: block;
}

.resources-listing__mobile-button {
	display: none;
	position: absolute;
	top: -6px;
	right: 0;
	cursor: pointer;
}

.resources-listing__mobile-button span {
	color: #FFA800;
	line-height: 1;
	font-size: 35px;
}

@media screen and (max-width: 991px) {
	.resources-listing__column {
		max-width: 50%;
	}

	.resources-listing__mobile-button {
		display: block;
	}

	.resources-listing__content {
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}

	.resources-listing__form {
		width: 100%;
		padding-top: 25px;
		display: none;
	}

	.resources-listing__form form {
		flex-wrap: wrap;
	}

	.resources-listing__form button.button {
		max-width: 100%;
		margin: 0;
	}

	.resources-listing__select-wrapper {
		max-width: 100%;
		margin: 0 0 15px 0;
	}
}

@media screen and (max-width: 768px) {
	.resources-listing__column {
		max-width: 100%;
	}
}

.page-id-18 .brochure .owl-nav button,
.page-id-849 .brochure .owl-nav button {
	color: #333 !important;
}

.page-id-742 .banner .container-max {
	max-width: 1210px;
	margin-left: auto;
	margin-right: auto;
}

.page--resources .banner__bg {
	background-position: center top;
}

.page--resources .banner__flex h1 {
	font-size: 48px;
}

.page--resources .banner .container-max {
	max-width: 1210px;
}

.search-result {
	padding-bottom: 30px;
	min-height: 82vh;
}

.search-result__header {
	padding: 40px 0;
	background-color: #f9f9f9;
}

.search-result__container {
	max-width: 1440px;
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
}

.search-result__container h1 {
	letter-spacing: -0.5px;
	font-weight: 600;
	font-family: 'Poppins';
	font-size: 34px;
	line-height: 54px;
	color: #109aa9;
	font-style: normal;
	padding-bottom: 15px;
	text-transform: uppercase;
	text-align: center;
}

.search-result__header-form {
	max-width: 560px;
	width: 100%;
	margin: 0 auto;
}

.search-result__header-form .form-group-button input[type="text"] {
	outline: none;
	border: 1px solid #515151;
	float: left;
	border-right: 1px solid #ffa800;
	padding: 9px;
	width: 80%;
	border-radius: 5px 0 0 5px;
	height: 38px;
	font-size: 16px;
	color: #000;
	letter-spacing: 0;
}

.search-result__list {
	padding-top: 30px;
}

.search-result__list article {
	max-width: 70%;
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
}

.search-result ul.page-numbers {
	display: flex;
	list-style: none;
	justify-content: center;
	padding-left: 0;
	margin: 0;
}

.search-result ul.page-numbers li {
	margin: 0 5px;
}

.search-result ul.page-numbers li a {
	color: #109aa9;
	text-decoration: none;
}

.search-result ul.page-numbers li span.current {
	text-decoration: underline;
	color: #109aa9;
}

@media screen and (max-width: 768px) {
	.search-result__list article {
		max-width: 100%;
		padding: 0;
	}
}

.search-post {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #c4c8cb;
	width: 100%;
	max-width: 100%;
	display: flex;
	align-items: center;
}

.search-post__thumbnail {
	margin-right: 32px;
	width: 137px;
}

.search-post__thumbnail img {
	width: 99px;
	height: 99px;
	object-fit: cover;
}

.search-post__description {
	max-width: calc(100% - 137px);
	width: 100%;
}

.search-post__description h2 {
	line-height: 1.2em;
	font-weight: 700;
	color: #333333;
	font-size: 20px;
}

.search-post__description h2 a {
	text-decoration: none;
	color: #333333;
}

.search-post__description h2 a:hover {
	color: #125960;
	text-decoration: underline;
}

.search-post__description p {
	color: #333;
	margin-bottom: 15px;
	font-size: 15px;
}

@media screen and (max-width: 420px) {
	.search-post {
		flex-direction: column;
		align-items: start;
	}

	.search-post__description {
		max-width: 100%;
	}
}

.resources-post__container {
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
	padding-right: 20px;
	padding-left: 20px;
}

.resources-post h1 {
	font-family: 'Poppins';
	font-size: 48px;
	font-weight: 600;
	line-height: 56px;
	color: #109aa9;
}

.resources-post h4 {
	font-size: 34px;
	font-weight: 600;
	line-height: 36px;
	color: #109aa9;
}

.resources-post h5,
.resources-post h6 {
	font-size: 24px;
	font-weight: 600;
	line-height: 24px;
	color: #125960;
}

.resources-post a {
	color: #125960;
	font-weight: 300;
	text-decoration: none;
	word-break: break-word;
}

.resources-post a.readmore {
	position: absolute;
	bottom: 40px;
	left: 15px;
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #F55841;
	line-height: 21px;
	text-transform: uppercase;
	text-decoration: none;
}

.resources-post b,
.resources-post strong {
	font-weight: 700;
}

.resources-post .resources {
	background-color: #fff;
}

.resources-post .resources .item .content {
	background-color: #f2f2f2;
}

.resources-post .resources .content .name {
	font-family: 'Poppins';
	font-weight: 600;
	font-style: normal;
	font-size: 20px;
	line-height: 24px;
	letter-spacing: 0.5px;
	color: #333333;
	margin-bottom: 15px;
}

.resources-post .resources-btn {
	font-weight: 600;
	color: #293F42;
}

.resources-post.has-case-study .resources-post-banner {
	min-height: 350px;
	padding-bottom: 50px;
}

#main-content iframe {
	max-width: 100%;
}

/* Quote Block */
#quote-block .qb--heading-content p:first-child::before {
	content: '\201C';
}

#quote-block .qb--heading-content p:last-child::after {
	content: '\201D';
}

#quote-block.quote-block {
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
	text-align: center;
	flex-direction: column;
}

.quote-block {
	width: 100%;
	max-width: 740px;
	margin-left: auto;
	margin-right: auto;
}

.qb--heading-content p {
	font-family: 'Inter';
	font-weight: 700;
	color: #109aa9;
	text-transform: uppercase;
	font-size: 20px;
	line-height: 24.2px;
	letter-spacing: 0.25px;
	margin: 20px 0;
}

.qb--name-company p,
.qb--name-company span {
	font-weight: 600;
	letter-spacing: 0.15px;
	text-transform: uppercase;
	text-align: center;
	width: 100%;
	color: #333333;
	margin-bottom: 0px;
}

/* Content & Image */
#content-image .content-container .content p:first-child {
	margin-top: 0;
}

.image-slider__row .owl-nav {
	display: none;
}

.image-slider__row .owl-dots {
	position: absolute;
	bottom: -55px;
	left: 202px;
	display: block !important;
}

.image-slider__row .owl-dots .owl-dot {
	border-radius: 0px;
	height: 5px;
	width: 57px;
	background-color: #bacbd3;
	margin: 0 8px;
}

.image-slider__row .owl-dots .owl-dot.active {
	background-color: #109aa9;
}

.image-slider__row.owl-carousel .owl-item img {
	height: 585px;
	object-fit: cover;
}

.image-slider__nav {
	padding-top: 35px;
	padding-left: 105px;
}

.image-slider__arrow ul {
	padding: 0;
	margin: 0;
	display: flex;
}

.image-slider__arrow li {
	width: 29px;
	height: 29px;
	border: 1px solid #f5492f;
	color: #f5492f;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin: 0 7.5px;
	position: relative;
	cursor: pointer;
}

.image-slider__arrow-left::before {
	position: absolute;
	content: '<';
	top: 12px;
	left: 50%;
	color: #f5492f;
	font-size: 16px;
	font-weight: 300;
	transform: translate(-50%, -50%);
}

.image-slider__arrow-right::after {
	position: absolute;
	content: '>';
	top: 12px;
	left: 50%;
	transform: translate(-50%, 50%);
	color: #f5492f;
	font-size: 16px;
	font-weight: 300;
	transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
	.image-slider__nav {
		width: 100%;
		padding-left: 0;
	}

	.image-slider__row .owl-dots .owl-dot {
		display: none !important;
	}

	.image-slider__row .owl-dots .owl-dot {
		width: 15px;
		margin: 0px 5px;
	}

	.image-slider__row .owl-dots {
		left: 50%;
		transform: translateX(-50%);
	}

	.image-slider__arrow ul {
		padding: 0 20px 20px;
		width: 100%;
		justify-content: space-between;
	}

	.image-slider__arrow {
		width: 100%;
	}
}

#main-content h2 {
	padding-top: 15px;
	padding-bottom: 15px;
}

#main-content h3 {
	padding-top: 15px;
	padding-bottom: 15px;
}

#main-content h6 {
	padding-top: 15px;
	padding-bottom: 15px;
}

#main-content h5 {
	padding-top: 15px;
	padding-bottom: 15px;
}

#main-content h4 {
	padding-top: 15px;
	padding-bottom: 15px;
}

#main-content ul {
	padding-left: 0;
}

#main-content p {
	font-family: 'Inter';
	letter-spacing: 0.5px;
	font-weight: 300;
	color: #000000;
	font-style: normal;
	padding-top: 15px;
	padding-bottom: 15px;
}

#main-content {
	font-family: 'Inter';
	width: 100%;
	max-width: 875px;
	margin-left: auto;
	margin-right: auto;
}

.resources-post-banner {
	margin-bottom: 44px;
}

.resources-post-banner .banner__flex h6 {
	font-family: 'Poppins';
	font-size: 16px;
	text-decoration: none;
	letter-spacing: 0.15px;
	line-height: 24px;
	text-transform: uppercase;
	font-weight: 600;
	color: #fff;
	margin-right: 35px;
}

@media screen and (max-width: 991px) {
	.resources-post-banner {
		padding: 25px 0;
	}

	.resources-post-banner .banner__flex {
		text-align: center;
	}

	.resources-post-banner .banner__flex h1 {
		margin: 0 auto 13px;
	}

	.resources-post-banner .banner__flex h6 {
		margin-bottom: 10px;
		margin-right: 0;
	}

	.resources-post-banner .banner__flex .banner__terms {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.resources-post-banner .banner__flex .banner__terms ul {
		margin-bottom: 10px;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
	}
}

@media screen and (max-width: 768px) {
	.resources-post-banner .banner__flex h1 {
		font-size: 30px;
		line-height: 40px;
		width: 100%;
		max-width: 100%;
	}
}

@media screen and (max-width: 390px) {
	.resources-post-banner .banner__flex h1 {
		font-size: 30px;
		line-height: 40px;
		width: 100%;
	}

	.resources-post-banner .banner__flex .banner__terms ul li {
		margin-bottom: 10px;
	}

	.resources-post-banner .banner__flex .banner__terms ul li:last-child {
		margin-bottom: 0;
	}
}

.call-to-action {
	margin-top: 44px;
}

.call-to-action__container {
	width: 100%;
	max-width: 875px;
	margin: 0 auto;
}

.call-to-action__content {
	background-color: #f2f2f2;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 40px;
	position: relative;
}

.call-to-action__content::before {
	content: "";
	display: block;
	background-color: #109aa9;
	width: 100%;
	height: 10px;
	max-width: 305px;
	position: absolute;
	top: -10px;
	left: 0;
}

.call-to-action__content p {
	font-size: 24px;
	line-height: 1;
	letter-spacing: 0.18px;
	font-family: 'Poppins';
	font-weight: 600;
	color: #125960;
	text-transform: uppercase;
	font-style: normal;
}

.call-to-action__content a.button {
	margin-left: auto;
	font-weight: 600;
	color: #213c44;
}

.call-to-action__icon {
	width: 66px;
	height: 66px;
	margin-right: 20px;
}

@media screen and (max-width: 880px) {
	.call-to-action__content {
		flex-direction: column;
		text-align: center;
	}

	.call-to-action__content a.button {
		margin-left: 0;
	}

	.call-to-action__content p {
		margin-bottom: 20px;
	}

	.call-to-action__icon {
		margin-right: 0;
		margin-bottom: 20px;
	}
}

.share-section {
	padding: 0 20px;
}

.share-section__container {
	width: 100%;
	max-width: 875px;
	margin: 0 auto;
}

.share-section__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	border-top: 1px solid #bacbd3;
	border-bottom: 1px solid #bacbd3;
	padding: 20px 0;
	margin-bottom: 50px;
}

.share-section__content .a2a_kit .a2a_svg {
	border-radius: 50% !important;
	width: 41px !important;
	height: 41px !important;
	display: flex;
	align-items: center;
	justify-content: center;
}

.share-section__content .a2a_svg svg {
	width: 35px;
}

.share-section__content a.button {
	width: 100px;
	text-decoration: none;
	font-weight: 600;
	color: #f5492f;
	margin-left: 0;
	background-color: transparent;
	border: 1px solid #f5492f;
	padding: 12px 19.8px;
	text-align: center;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 19px;
	font-style: normal;
	letter-spacing: 0.5px;
}

.author {
	padding: 0 20px;
}

.author__container {
	width: 100%;
	max-width: 875px;
	margin: 0 auto;
}

.author__content {
	display: flex;
	align-items: center;
	width: 100%;
	border-top: 1px solid #bacbd3;
	border-bottom: 1px solid #bacbd3;
	padding: 20px 0;
	margin-bottom: 50px;
}

.author__thumbnail {
	margin-right: 15px;
}

.author__thumbnail img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
}

.author__description h6 {
	font-family: 'Poppins';
	font-weight: 600;
	font-size: 16px;
	line-height: 1;
	color: #000000;
	letter-spacing: 0.15px;
	font-style: normal;
	text-transform: uppercase;
}

.author__description p {
	font-weight: 300;
	letter-spacing: 0.25px;
	color: #000000;
}

.case-study-details__container {
	min-height: 100px;
	max-width: 1400px;
	margin: 0 auto;
	background-color: #fff;
	position: relative;
	top: -94px;
	z-index: 2;
}

.case-study-details__row {
	display: flex;
	width: 100%;
	max-width: 1220px;
	margin: 0 auto;
	align-items: center;
	justify-content: space-between;
	padding-top: 24px;
}

.case-study-details__column {
	max-width: 255px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.case-study-details__column .case-study-details__logo img {
	width: auto;
	height: auto;
	margin: 0;
}

.case-study-details__column img {
	width: 66px;
	height: 66px;
	margin-right: 8px;
}

.case-study-details__column h6 {
	font-family: 'Poppins';
	font-size: 14px;
	line-height: 24px;
	color: #333333;
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0.1px;
	text-transform: uppercase;
}

@media screen and (max-width: 1280px) {
	.case-study-details__container {
		padding: 0 25px;
	}
}

@media screen and (max-width: 1080px) {
	.case-study-details {
		margin: 0 -20px;
		padding-bottom: 20px;
	}

	.case-study-details__container {
		padding: 0 25px;
		max-width: 100%;
		top: 0;
	}

	.case-study-details__row {
		flex-direction: column;
		padding-top: 0;
	}

	.case-study-details__column {
		max-width: 350px;
		margin-bottom: 30px;
	}
}

.three-column-text {
	padding-bottom: 44px;
}

.three-column-text__container {
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
}

.three-column-text__content {
	max-width: 1220px;
	width: 100%;
	margin: 0 auto;
}

.three-column-text__row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -35px;
}

.three-column-text__col {
	max-width: 33.33%;
	width: 100%;
	padding: 0 35px;
}

.three-column-text__col:last-child {
	padding-right: 0;
}

.three-column-text__col .three-column-text__inner h6 {
	font-family: 'Inter';
	font-size: 18px;
	line-height: 20px;
	letter-spacing: 0.25px;
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
	color: #109aa9;
	margin-bottom: 10px;
}

.three-column-text__col .three-column-text__inner p {
	font-family: 'Inter';
	font-weight: 300;
	font-style: normal;
	font-size: 16px;
	color: #000000;
	line-height: 24px;
	letter-spacing: 0.5px;
	margin: 16px 0;
}

@media screen and (max-width: 991px) {
	.three-column-text__col {
		max-width: 100%;
		padding: 0;
		margin-top: 20px;
	}

	.three-column-text__row {
		margin: 0;
	}
}

#content-image .content-image .image-container {
	order: 2;
}

#content-image .content-image .content-container {
	padding-left: 110px;
	order: 1;
}

#content-image .image-content .content-container {
	order: 2;
}

#content-image .image-content .image-container {
	order: 1;
}

#content-image .content-container {
	width: 50%;
	padding-top: 50px;
	padding-left: 50px;
	padding-right: 30px;
}

#content-image .image-container img {
	width: 100%;
}

#content-image {
	width: 100%;
	max-width: 1090px;
	margin-left: auto;
	margin-right: auto;
}

#content-image .content-container .content {
	width: 100%;
	max-width: 375px;
}

#content-image .image-container {
	width: 50%;
	font-size: 0px;
	line-height: 0;
}

#content-image .ct-new-columns {
	display: flex;
	flex-direction: row;
}

#content-image .content p {
	font-family: 'Inter';
	font-size: 16px;
	font-weight: 300;
	color: #000000;
	line-height: 24px;
	letter-spacing: 0.5px;
	font-style: normal;
}

@media (max-width: 1120px) {
	#content-image .content-image .content-container {
		padding-left: 50px;
	}
}

@media (max-width: 991px) {
	#content-image .ct-new-columns {
		display: flex;
		flex-direction: column;
	}

	#content-image .image-container {
		width: 100%;
	}

	#content-image .content-container .content {
		padding-left: 20px;
		padding-right: 20px;
		width: 100%;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	#content-image .content-container {
		width: 100%;
		padding-left: 0px;
		padding-right: 0px;
	}

	#content-image .content-image .content-container {
		padding-left: 0px;
		order: 2;
	}
}

@keyframes header-sticky {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.enquiryForm .fancybox-content {
	max-width: 600px;
	width: 100%;
	box-shadow: 10px 10px 0px #125960;
	overflow: unset;
}

.enquiryForm .fancybox-slide--html {
	padding: 50px 20px 20px;
}

.enquiryForm .fancybox-button svg path {
	fill: #FFA800;
}

.enquiryForm .fancybox-button svg {
	width: 40px;
	height: 40px;
}

.enquiryForm .fancybox-button {
	width: 64px;
	height: 64px;
	top: -32px !important;
	right: -32px !important;
	position: absolute;
	border: 4px solid #FFA800;
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
}

/*404 page*/
.error-404.not-found h1 {
	color: #109aa9;
}

.error-404.not-found .page-header,
.error-404.not-found .page-content {
	text-align: left;
	padding-left: 15px;
}

.error-404.not-found .page-content a {
	text-decoration: none;
}

.error-404.not-found .page-header {
	padding-top: 50px;
}

.error-404.not-found .bg {
	height: 80%;
	width: 100%;
	position: absolute;
}

.error404 .footer {
	position: absolute;
	bottom: 0;
	width: 100%;
}

.error404 .cont-link a {
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	color: #F55841;
	line-height: 21px;
	text-transform: uppercase;
}

@media only screen and (max-width: 1025px) {
	.error-404.not-found .bg {
		height: auto;
	}
}

/*end 404 page*/

/***
* BLOCK COLUMNS *
***/

.block-columns {
	justify-content: space-between;
}

.block-columns__col {
	width: calc(100% / 3);
	height: auto;
	margin-bottom: 30px;
}

.block-columns .btn-more {
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
	bottom: 30px;
	max-width: 280px;
	width: 100%;
	margin: 0 auto;
}

.block-slider__inner.block-columns__inner {
	min-height: 330px;
}

.block-columns .block-slider__inner {
	padding-bottom: 81px;
}

.block-columns .btn-more span {
	position: relative;
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #000000;
	letter-spacing: 1.4px;
	background: #fba82d !important;
	padding: 5px 10px;
	margin-bottom: 10px;
	border-radius: 2px;
	transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1) !important;
}

.block-columns .btn-more span:hover {
	background: #fba82d;
	color: #000000 !important;
}

.block-columns .block-slider__inner {
	transition: background 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.block-columns .block-slider__inner h3,
.block-columns .block-slider__inner span,
.block-columns .block-slider__inner p {
	transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.block-columns .block-slider__inner:hover {
	background: #125960;
}

.block-columns .block-slider__inner span {
	left: 0 !important;
}

.block-columns .block-slider__inner:hover h3,
.block-columns .block-slider__inner:hover span,
.block-columns .block-slider__inner:hover p {
	color: #fff;
}

.block-slider__duration {
	display: none;
}

.block-slider__sub-heading.block-columns__sub-heading {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	line-height: 24px;
	font-weight: 400;
	color: #333333;
}

@media (max-width: 990px) {
	.block-columns__col {
		width: calc(100% / 2);
	}
}

@media (max-width: 767px) {
	.block-columns__col {
		width: 100%;
		padding: 0;
	}
}

/*****************************
Start New Header Overrides
*****************************/
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	background-color: #145960;
}

.header {
	background-color: #fff;
	padding: 0;
}

.header__top {
	background: transparent linear-gradient(270deg, #E8E8E8 0%, #74747400 100%);
	padding: 4px 0;
}

.header__top ul li {
	line-height: 1em;
	margin-left: 34px;
}

.header__top ul li:first-child {
	margin: 0;
}

.header__top ul li::after {
	content: none;
}

.header__top ul li a {
	color: #145960;
	font-weight: 400;
	font-size: 1.3rem;
}

.header__logo img {
	width: auto;
}

.header__menu {
	padding: 0;
}

.header__menu ul li ul.sub-menu li.menu-item-has-children a::after,
.header__menu ul li.menu-item-has-children>a::after {
	border: 2px solid #145960;
	border-left: 0;
	border-top: 0;
	content: '';
	height: 8px;
	transform: rotate(45deg) translateY(-50%);
	transform-origin: right;
	width: 8px;
	-webkit-backface-visibility: hidden;
	position: absolute;
	right: 0;
	top: 50%;
}

.header__menu ul li ul.sub-menu li.menu-item-has-children:hover a::after,
.header__menu ul li ul.sub-menu li.menu-item-has-children a::after,
.header__menu ul li ul.sub-menu li.menu-item-has-children ul.sub-menu > li.menu-item-has-children:hover a::after,
.header__menu ul li ul.sub-menu li.menu-item-has-children ul.sub-menu > li.menu-item-has-children > a::after {
	content: '';
	transform: rotate(-45deg) translateY(-50%);
	right: 10px;
	transform-origin: center;
	height: 8px;
	width: 8px;
}

.header__menu ul li ul.sub-menu li.menu-item-has-children:hover > a::after {
	border-color: #fff;
}

.header__menu ul li a {
	color: #145960;
	font-family: 'Poppins', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
}

.header__search-enquire {
	padding: 0;
}

.header__search {
	border: 0;
	padding: 0 48px;
}

.header__search i {
	color: #11595F;
	font-size: 20px;
}

.button.enquirebtn {
	padding: 11px 25px 10px;
}

header.header:after {
	background: transparent linear-gradient(90deg, #109AA9 0%, #48D261 51%, #FBA82D 100%) 0% 0% no-repeat padding-box;
	content: '';
	height: 6px;
	width: 100%;
	display: block;
}

.header__search-dropdown {
	border: 0;
}

@media (max-width:991px) {
	.header__menu {
		background-color: #fff;
		z-index: 99999;
	}

	.header__menu ul li a {
		color: #145960 !important;
	}

	.header__menu ul li.menu-item-has-children ul.sub-menu .sub-menu-title-text p {
		color: #145960;
		font-family: 'Poppins', sans-serif;
		font-size: 1.8rem;
		font-weight: 700;
	}

	.header__menu ul li.menu-item-has-children ul.sub-menu {
		background-color: #fff;
	}

	.header__menu ul li.menu-item-has-children ul.sub-menu .sub-menu-back svg,
	.header__menu ul li span svg {
		opacity: 1;
	}

	.header__menu ul li.menu-item-has-children ul.sub-menu .sub-menu-back svg path,
	.header__menu ul li span svg path {
		fill: #145960;
	}

	.header__menu ul li ul.sub-menu li.menu-item-has-children a::after,
	.header__menu ul li.menu-item-has-children>a::after {
		display: none !important;
	}

	.header__menu ul li.menu-item-has-children ul.sub-menu li.menu-item-has-children ul.sub-menu li a {
		background-color: #fff;
	}
	
}

@media (min-width:992px) {

	.header__logo {
		margin-right: auto;
	}

	.header__menu .menu>li {
		align-items: center;
		display: flex;
		height: 70px;
		margin-right: 20px;
	}

	.header__menu ul li a {
		padding: 0 20px 0 0;
	}

	.header__search {
		padding: 0 20px;
	}
}

@media (min-width:1200px) {
	.header__bottom-wrapper {
		justify-content: flex-end;
	}
	
    .header__bottom {
		padding: 0;
	}
	
	.header__menu .menu>li {
		margin-right: 30px;
	}

	.header__search {
		padding: 0 30px;
	}
}

@media (min-width:1440px) {
	.header__menu .menu>li {
		margin-right: 50px;
	}

	.header__search {
		padding: 0 50px;
	}
}

/*****************************
End New Header Overrides
*****************************/

/*****************************
Start New Footer Overrides
*****************************/
.footer {
	padding: 32px 0;
}

.footer-top {
	color: #fff;
	margin-bottom: 30px;
}

.footer-top a {
	color: #fff;
}

.footer-about {
	text-align: center;
}

.footer-logo {
	margin-bottom: 30px;
}

.footer-tel {
	font-size: 18px;
	margin-bottom: 12px;
}

.footer-address {
	margin-bottom: 30px;
}

.footer-social {
	align-items: flex-start;
	display: flex;
	justify-content: center;
}

.footer-social a {
	font-size: 42px;
	margin: 0 10px;
}

.footer-menu {
	margin-bottom: 30px;
}

.footer-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu .menu {
	display: flex;
	flex-wrap: wrap;
}

.footer-menu .menu>li {
	text-align: center;
	width: 100%;
}

.footer-menu .menu>li:last-child {
	margin: 0;
}

.footer-menu .menu li a {
	color: #109AA9;
	font-family: 'Poppins';
	font-size: 18px;
	text-decoration: none;
	text-transform: uppercase;
}

.footer-menu .menu .sub-menu {
	margin-top: 16px;
}

.footer-menu .menu .sub-menu li {
	margin-bottom: 16px;
}

.footer-menu .menu .sub-menu li a {
	color: #fff;
	font-family: 'Inter';
	font-size: 14px;
	font-weight: 400;
	line-height: 1em;
	text-transform: none;
}

.footer__content {
	justify-content: center;
}

@media (min-width:768px) {
	.footer-menu .menu>li {
		width: 20%;
	}
}

@media (min-width:1200px) {
	.footer {
		padding: 64px 0 32px;
	}

	.footer-top {
		align-items: flex-start;
		display: flex;
		justify-content: space-between;
		margin-bottom: 100px;
	}

	.footer-menu {
		margin-bottom: 0;
	}

	.footer-menu .menu>li {
		margin-right: 25px;
		text-align: left;
		width: 160px;
	}

	.footer-menu .menu .sub-menu {
		margin-top: 24px;
	}

	.footer-menu .menu .sub-menu li {
		margin-bottom: 24px;
	}

	.footer-about {
		text-align: right;
	}

	.footer-logo {
		margin-bottom: 64px;
	}

	.footer-address {
		margin-bottom: 48px;
	}

	.footer-social {
		justify-content: flex-end;
	}

	.footer-social a {
		margin: 0 0 0 10px;
	}
}

/*****************************
End New Footer Overrides
*****************************/

/*****************************
Start CTA Panel Block
*****************************/
.cta-panel-top-border {
	background: linear-gradient(90deg, #109AA9 0%, #48D261 51%, #FBA82D 100%) 0% 0% no-repeat padding-box;
	height: 6px;
	width: 100%;
}

.cta-panel {
	overflow: hidden;
	padding: 60px 0;
	position: relative;
}

.cta-panel-container {
	margin: 0 auto;
	max-width: 1120px;
	padding: 0 15px;
	position: relative;
	width: 100%;
	z-index: 2;
}

.wide-content .cta-panel-container {
	max-width: 1440px;
}

.cta-panel-content {
	max-width: 490px;
}

.wide-content .cta-panel-content {
	max-width: 660px;
}

.cta-panel-heading {
	color: #109AA9;
	font-size: 30px;
	line-height: 1.2em;
}

.cta-panel-desc p {
	color: #000;
	font-size: 20px;
	line-height: 1.5em;
}

.wide-content .cta-panel-desc p {
	font-size: 16px;
	line-height: 1.5em;
}

.cta-image {
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 1;
}

.cta-image img {
	opacity: .2;
}

.cta-image img {
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%;
}

.cta-btn {
	margin: 0;
	text-transform: uppercase;
}

@media (min-width:1200px) {
	.cta-panel {
		padding: 160px 0 130px;
	}

	.cta-image {
		clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0% 100%);
		width: 46%;
	}

	.cta-image img {
		opacity: 1;
	}
}

/*****************************
End CTA Panel Block
*****************************/

/*****************************
Start Header Block
*****************************/
.headerblock {
	background-color: #11595F;
	position: relative;
}

.headerblock-image {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	;
	z-index: 1;
}

.headerblock-image img {
	height: 150%;
	top: 0;
	object-fit: cover;
	opacity: .1;
	position: absolute;
	right: 0;
	width: 150%;
}

.headerblock-container {
	margin: 0 auto;
	max-width: 1440px;
	padding: 220px 20px 160px;
	position: relative;
	width: 100%;
	z-index: 2;
}

.headerblock-tag {
	left: 20px;
	position: absolute;
	transition: all ease .3s;
	top: 0;
}

a.headerblock-tag:hover {
	color: #fff;
	transform: scale(1.1);
	transform-origin: top center;
}

.headerblock-content-text {
	color: #fff;
	margin-bottom: 30px;
	max-width: 550px;
}

.headerblock-content-text h1 {
	font-size: 35px;
	text-transform: uppercase;
}

.headerblock-content-text ul {
	margin: 0;
	list-style-position: outsisde;
}

.headerblock-content-text a {
	color: #fff;
}

.headerblock-content-text a:hover {
	text-decoration: underline;
}

.headerblock-btn {
	background-color: #F7A940;
	border-radius: 4px;
	color: #333333;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.4px;
	margin: 0 10px 10px 0;
	padding: 15px 40px;
	text-decoration: none;
	text-transform: uppercase;
	transition: all ease .3s;
}

.headerblock-btn:visited {
	color: #333333;
}

.headerblock-btn:hover {
	background-color: #109AA9;
	color: #fff;
}

.headerblock-botborder {
	background: linear-gradient(90deg, #109AA9 0%, #48D261 51%, #FBA82D 100%) 0% 0% no-repeat padding-box;
	height: 10px;
	width: 100%;
}

@media (min-width: 1440px) {
	.headerblock-image img {
		height: 100%;
		object-fit: unset;
		opacity: 1;
		width: auto;
	}
}

/*****************************
End Header Block
*****************************/

/*****************************
Start Testimonial Block
*****************************/
.testiblock {
	position: relative;
}

.testiblock-bg {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.testiblock-bg video,
.testiblock-bg img {
	height: 100%;
	left: 0;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	width: 100%;
}

.testiblock-container {
	margin: 0 auto;
	max-width: 1440px;
	padding: 68px 20px 58px;
	position: relative;
	width: 100%;
	z-index: 2;
}

.testiblock-container h2 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 2px;
	margin-bottom: 48px;
	text-align: center;
	text-transform: uppercase;
}

.testimonial-list {
	margin: 0 auto;
	max-width: 790px;
	width: 100%;
}

.testimonial-item {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 2;
	line-height: 30px;
	text-align: center;
}

.testimonial {
	margin-bottom: 34px;
}

.testimonial-list .owl-stage-outer {
	margin-bottom: 32px;
}

.testimonial-list .owl-dots {
	text-align: center;
}

.testimonial-list .owl-dots .owl-dot {
	background-color: #fff;
	border-radius: 100%;
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
	height: 12px;
	margin: 0 4px;
	transition: all ease .3s;
	width: 12px;
}

.testimonial-list .owl-dots .owl-dot:hover,
.testimonial-list .owl-dots .owl-dot.active {
	background-color: #f7a940;
}

.testiblock-botborder {
	background: linear-gradient(90deg, #109AA9 0%, #48D261 51%, #FBA82D 100%) 0% 0% no-repeat padding-box;
	height: 10px;
	width: 100%;
}

/*****************************
End Testimonial Block
*****************************/

.form-image {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 40px 0;
}

.form-box,
.img-box {
	position: relative;
	width: 100%;
}

.form-box h2 {
	margin-bottom: 30px;
}

.form-box .mktoForm .mktoLabel {
	margin: 0 
}

.form-box .mktoForm .mktoFormCol {
	margin: 0 !important;
}

.form-box .mktoForm .mktoFieldWrap {
	padding: 0 !important;
}

.form-box .mktoForm .mktoRequiredField .mktoAsterix {
	display: inline !important;
	float: none;
}

.form-box .mktoForm .mktoGutter {
	display: none;
}

.img-box {
	display: none;
}

.img-box img {
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%;
}

@media (min-width: 600px) {
	.form-box .mktoForm .mktoFormRow {
		align-items: flex-end;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.form-box .mktoForm .mktoFormRow .mktoFormCol {
		width: 48% !important;
	}
}

@media (min-width: 768px) {
	.form-image.image-content {
		flex-direction: row-reverse;
	}

	.form-box,
	.img-box {
		position: relative;
		width: 48%;
	}

	.img-box {
		display: block;
	}
}