:root {

	/* Colours */
	--brand-blue: #0095D0;
	--brand-orange: #FB7C42;
	--brand-yellow: #FEBE42;

	--brand-blue-faded: #D4EEF8;
	--brand-orange-faded: #fcf1e4;
	/*#F4DCC3;*/
	/*#F9EFE5;*/
	--brand-yellow-faded: #FDE5B8;

	--brand-pri: var(--brand-orange);
	--brand-sec: var(--brand-blue);
	--brand-ter: var(--brand-yellow);
	--brand-pri-faded: var(--brand-orange-faded);
	--brand-sec-faded: var(--brand-blue-faded);
	--brand-ter-faded: var(--brand-yellow-faded);


	--white: #FFFFFF;
	--grey-lighter: #E0E0E0;
	--grey-light: #B2B2B2;
	--grey-mid: #787878;
	--grey-dark: #4C4C4C;
	--grey-darker: #1F1F1F;
	--black: #000000;


	--success: #5CB85C;
	--danger: #F23F43;


	/* Universal Properties */

}




/* universal styles */
* {
	box-sizing: border-box;
}

html {
	margin: 0;
	padding: 0;

	background: var(--white);
	color: var(--grey-darker);

	font-family: 'PrimaryFont', Verdana, sans-serif;
	/* from fonts.css */
	font-weight: 500;
	font-size: 16px;

	overflow-x: hidden;

	scroll-behavior: smooth;
}
@media only screen and (max-width: 1400px) {
	html {
		zoom: 0.85;
	}
}

body {
	margin: 0;
	padding: 0;
}

h1,
.h1 {
	font-size: 3em;
}

h2,
.h2 {
	font-size: 2.25em;
}

h3,
.h3 {
	font-size: 1.75em;
}

h4,
.h4 {
	font-size: 1.5em;
}

h5,
.h5 {
	font-size: 1.25em;
}

h6,
.h6 {
	font-size: 1em;
}

h1,
h2,
.h1,
.h2 {
	font-weight: 800;
}

h3,
h4,
h5,
h6,
.h3,
.h4,
.h5,
.h6 {
	font-weight: 700;
}

p {
	line-height: 1.5;
}

h1 > p,
.h1 > p,
h2 > p,
.h2 > p,
h3 > p,
.h3 > p {
	line-height: inherit;
}

p+p {
	margin-top: 20px;
}

.ql-output p {
	margin: 0 !important;
}

@media only screen and (max-width: 768px) {
	h1 {
		font-size: 2em;
	}

	h2 {
		font-size: 1.75em;
	}

	h3 {
		font-size: 1.5em;
	}

	h4 {
		font-size: 1.25em;
	}

	h5 {
		font-size: 1.1em;
	}

	h6 {
		font-size: 1em;
	}
}

section img {
	border-radius: 36px;
}

.break {
	margin: 36px 0;
	border-top: 1px solid var(--brand-pri);
}

a {
	color: inherit;
	text-decoration: none;
}

a:visited {
	/*color: inherit;*/
}

.anchor {
	transform: translateY(-120px);
}


/* display classes */
.d-none {
	display: none !important;
}

.d-block {
	display: block !important;
}

.d-inline {
	display: inline !important;
}

.d-inline-block {
	display: inline-block !important;
}

.d-flex {
	display: flex !important;
}


/*  */
.m-0 {
	margin: 0 !important;
}

.p-0 {
	margin: 0 !important;
}

.w-100 {
	width: 100% !important;
}

.h-100 {
	height: 100% !important;
}




/* responsive/mobile */
@media only screen and (max-width: 660px) {
	.hide-sm {
		display: none !important;
	}
}

@media only screen and (max-width: 1080px) {
	.hide-md {
		display: none !important;
	}
}

@media only screen and (max-width: 1400px) {
	.hide-lg {
		display: none !important;
	}
}





/* colours */
.bg-pri {
	background: var(--brand-pri);
	color: var(--white);
}
.bg-pri-faded {
	background: var(--brand-pri-faded);
	color: var(--black);
}
.bg-sec {
	background: var(--brand-sec);
	color: var(--white);
}
.bg-sec-faded {
	background: var(--brand-sec-faded);
	color: var(--black);
}
.bg-ter {
	background: var(--brand-ter);
	color: var(--white);
}
.bg-ter-faded {
	background: var(--brand-ter-faded);
	color: var(--black);
}


.bg-orange {
	background: var(--brand-orange);
	color: var(--white);
}
.bg-orange-faded {
	background: var(--brand-orange-faded);
	color: var(--black);
}

.bg-blue {
	background: var(--brand-blue);
	color: var(--black);
}

.bg-blue-faded {
	background: var(--brand-blue-faded);
	color: var(--black);
}

.bg-yellow {
	background: var(--brand-yellow);
	color: var(--white);
}

.bg-yellow-faded {
	background: var(--brand-yellow-faded);
	color: var(--black);
}


.bg-white {
	background: var(--white);
	color: var(--grey-darker);
}

.bg-grey-lighter {
	background: var(--grey-lighter);
	color: var(--grey-darker);
}

.bg-grey-light {
	background: var(--grey-light);
	color: var(--grey-darker);
}

.bg-grey-mid {
	background: var(--grey-mid);
	color: var(--white);
}

.bg-grey-dark {
	background: var(--grey-dark);
	color: var(--white);
}

.bg-grey-darker {
	background: var(--grey-darker);
	color: var(--white);
}

.bg-black {
	background: var(--black);
	color: var(--white);
}


.text-pri, pri {
	color: var(--brand-pri) !important;
}

.text-sec, sec {
	color: var(--brand-sec) !important;
}
.text-ter, ter {
	color: var(--brand-ter) !important;
}

.text-orange, orange {
	color: var(--brand-orange) !important;
}

.text-blue, blue {
	color: var(--brand-blue) !important;
}

.text-yellow, yellow {
	color: var(--brand-yellow) !important;
}

.text-white, white {
	color: var(--white) !important;
}

.text-grey-lighter {
	color: var(--grey-lighter) !important;
}

.text-grey-light {
	color: var(--grey-light) !important;
}

.text-grey-mid, grey {
	color: var(--grey-mid) !important;
}

.text-grey-dark {
	color: var(--grey-dark) !important;
}

.text-grey-darker {
	color: var(--grey-darker) !important;
}

.text-black, black {
	color: var(--black) !important;
}





*[class*="bd-"] {
	border-width: 1px !important;
	border-style: solid;
}

input.btn[class*="bd-"] {
	border-width: 2px !important;
	border-style: solid;
}

.bd-pri {
	border-color: var(--brand-pri);
}

.bd-sec {
	border-color: var(--brand-sec);
}


.bd-white {
	border-color: var(--white);
}

.bd-grey-lighter {
	border-color: var(--grey-lighter);
}

.bd-grey-light {
	border-color: var(--grey-light);
}

.bd-grey-mid {
	border-color: var(--grey-mid);
}

.bd-grey-dark {
	border-color: var(--grey-dark);
}

.bd-grey-darker {
	border-color: var(--grey-darker);
}

.bd-black {
	border-color: var(--black);
}








/* buttons */

.btn {
	display: inline-block;
	cursor: pointer;

	padding: 14px 24px;
	border-radius: 1000px;

	font-weight: 600;

	/* iOS */
	-webkit-appearance: none;

	/* to counter input/button defaults */
	font-family: inherit;
	font-size: inherit;
	border-width: 0;
	outline: 0;

	transition: 0.2s;
}

/*input.btn:not(input.btn[class~=bd-]) {
	border: 0;
}*/
.btn:hover {
	box-shadow: inset 0 0 1000px rgba(0, 0, 0, 0.15);
	transition: 0.2s;
}

.btn[class*="bd-"] {
	padding: 11px 23px;
}

.btn i+span,
.btn span+i {
	padding-left: 8px;
}

.btn.icon-only {
	padding: 12px 16px;
}

.btn.big {
	padding: 24px 36px;
	font-size: 1.2em;
	font-weight: 700;
}

.btn.big[class*="bd-"] {
	padding: 23px 35px;
}

.btn+.btn:not(.btn-container .btn) {
	margin-left: 8px;
}

.btn.underline {
	text-decoration: underline;
}


.btn-container {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

@media only screen and (max-width: 768px) {
	.btn-container {
		flex-direction: column;
	}
	.btn-container .btn{
		text-align: center;
	}
}







.form {
	width: 100%;
}

.input-row {
	width: 100%;
	margin-bottom: 12px;

	display: flex;
	gap: 12px;
}

.input-row>* {
	flex: 1;
	/*flex-grow: 1;
	flex-basis: auto;*/
}


.input-group label {
	margin: 12px 0;
	font-family: inherit;
	font-size: 1.25em;
	font-weight: 600;
}
.input-group .input {
	margin: 12px 0;
}

.input-row .input {

	width: 100%;
	padding: 18px 24px;
	border-radius: 18px;
	border: none;
	outline: none;

	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

.form textarea.input {
	resize: vertical;
}
@media only screen and (max-width: 992px) {
	.input-row {
		flex-direction: column;
	}
}



.btn.split-icon {
	display: flex;
	gap: 12px;
	align-items: stretch;
	padding: 0;

	line-height: 52px;
	background-color: transparent;
}

.btn.split-icon:hover {
	box-shadow: none;
}

.btn.split-icon span {
	flex: 1;
	border-radius: 1000px;
	/*padding: 0 24px;*/
	padding: 4px 32px;
}

.btn.split-icon i {
	border-radius: 1000px;
	width: 60px;
	height: 60px;
	line-height: 60px;
	font-size: 24px;
	padding: 0;

	display: flex;
	justify-content: center;
}

.btn.split-icon i::before {
	width: 52px;
	height: 52px;
	line-height: 52px;
	align-self: center;
	justify-self: center;
	transform: rotateZ(-45deg);

	transition: 0.2s;
}

.btn.split-icon:hover i::before {
	transform: rotateZ(0);
}






.section-width {
	width: 88%;
	max-width: 1400px;

	margin: auto;
	padding: 12px;
}

.section-width-extruded {
	margin: 0 -48px;
	padding: 48px;
	border-radius: 48px;
}

.section-width-extruded .section-width {}

.section-padding {
	padding-top: 40px;
	padding-bottom: 40px;
}

@media (max-width: 992px) {
	.section-width {
		width: 92%;
	}
}






/* navbar */
.nav-container {
	position: fixed;
	top: 0;
	z-index: 1000;
	width: 100%;

	transition: 0.4s;
	transition: background-color 0.2s;
}

.nav-container .section-width {
	transition: 0.2s;
}

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	/*padding: 12px;*/
	padding-right: 16px;
	border-radius: 1000px;
	background-color: var(--brand-pri-faded);

	transition: 0.2s;
}

.navbar-offset {
	display: block;
	width: 100%;
	height: 100px;
}

.nav-links {
	margin: 0;
}

.nav-links li {
	border-radius: 1000px;
}

.nav-links a {
	font-weight: 600;
	display: block;
	padding: 14px 24px;
}

/* LOGO */
.navbar .logo {
	padding: 6px 0px;
	margin-left: 28px;

	transition: 0.35s;
}

.logo img {
	display: flex;
	max-height: 64px;
}

/* NAVBAR MENU */
.menu {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 16px;
}

.menu li:not(.cta):hover {
	box-shadow: 0px 0px 1000px 1000px rgba(255, 255, 255, 0.5) inset;
	transition: 0.3s;
}

.menu li.cta:hover {
	box-shadow: 0px 0px 1000px 1000px rgba(0, 0, 0, 0.15) inset;
	transition: 0.3s;
}

.menu li {
	list-style: none;
	/*padding: 5px 14px;*/
	margin: 0 -6px;

}

.menu li a {
	cursor: pointer;
}


.menu li a i.drop-icon {
	display: inline;
	margin-left: 8px;
	padding-top: 3px;
	vertical-align: bottom;
}

/* DROPDOWN MENU */
.dropdown-parent {
	position: relative;
}

.dropdown {
	padding: 0;
	padding-top: 24px;
	position: absolute;
	/*WITH RESPECT TO PARENT*/
	display: none;
}

.dropdown-inner {
	background-color: var(--brand-ter-faded);
	border-radius: 8px;
	overflow: hidden;
	padding: 12px 0;
}

.dropdown li+li {}

.dropdown li {
	min-width: 260px;
	text-align: left;
	border-radius: 0;
}

.dropdown li a {
	padding: 12px 32px;
}

.dropdown li:hover {}

.dropdown-parent:hover .dropdown {
	display: block;
}


.menu .cta {
	background-color: var(--brand-pri);
	margin-left: 18px;
	margin-right: 6px;
}


/* RESPONSIVE NAVBAR MENU STARTS */

/* CHECKBOX HACK */

.navbar input[type="checkbox"] {
	display: none;
}

/* HAMBURGER MENU */
.hamburger {
	cursor: pointer;
	display: none;
	font-size: 28px;
	text-align: center;
	padding: 12px;
	margin-right: -4px;
	border-radius: 1000px;
	user-select: none;
	color: white;
	background-color: var(--brand-pri);

	transition: 0.2s;
}

.nav-container.scrolled .hamburger {
	margin-right: 4px;
}

.hamburger i {
	width: 1em;
	height: 1em;
}

.navbar input[type="checkbox"]+.hamburger>.menu-open-icon {
	display: block;
}

.navbar input[type="checkbox"]+.hamburger>.menu-close-icon {
	display: none;
}

.navbar input[type="checkbox"]:checked+.hamburger>.menu-open-icon {
	display: none;
}

.navbar input[type="checkbox"]:checked+.hamburger>.menu-close-icon {
	display: block;
}



/* APPLYING MEDIA QUERIES */
@media (max-width: 1260px) {
	.nav-container:not(.scrolled)>.section-width {
		width: 98%;
	}

	.menu {
		display: none;
		position: absolute;
		background-color: var(--brand-pri-faded);
		right: 0;
		left: 0;
		text-align: center;
		padding: 16px;
		/*margin: 12px;
		margin-top: 18px;*/
		width: 92%;
		margin: 18px auto;
		border-radius: 32px;

		max-height: 80vh;
		overflow-y: auto;
	}

	.menu li {
		display: block;
		margin: 0;
	}

	.menu li:hover {
		box-shadow: none;
	}

	.menu li:not(.cta) {
		/*text-align: left;*/
	}

	.menu li+li {
		margin-top: 12px;
	}

	input[type="checkbox"]:checked~.menu {
		display: block;


	}

	.navbar .logo {
		padding: 6px 0px;
		margin-left: 18px;
	}

	.hamburger {
		display: block;
	}

	.dropdown {
		display: none;
	}

	.dropdown.active {
		display: block;
		position: relative;
	}

	/* annoying overwrite for mobile niceness */
	.dropdown-parent:hover .dropdown:not(.active) {
		display: none;
	}

	.dropdown-parent:hover {
		box-shadow: none !important;
	}

	.dropdown-inner {
		padding: 12px;
	}

	.dropdown li a {
		padding: 12px;
		text-align: center;
	}

	.dropdown li:hover {
		display: block;
		width: 100%;

	}

	.menu .cta {
		margin: 0;
		margin-top: 12px;
	}
}

.nav-container.scrolled {
	border-bottom-left-radius: 36px;
	border-bottom-right-radius: 36px;
	background-color: var(--brand-pri-faded);
}

.nav-container.scrolled .section-width {
	padding: 0;
}

.nav-container.scrolled .navbar {
	padding: 0;
}

.nav-container.scrolled .logo {
	margin: 0;
}





/* FOOTER */


#footer {
	font-weight: 600;
	border-top-right-radius: 48px;
	border-top-left-radius: 48px;

	margin-top: 60px;
}

#footer-contact {
	border-top-right-radius: 48px;
	border-top-left-radius: 48px;
}

.footer-contact-inner {
	display: flex;
	gap: 64px;
}

.footer-contact-col {
	flex: 1;
}

.footer-contact-primary-heading {}

.footer-contact-secondary-heading {
	font-weight: 500;
	font-size: 1.25em;
	max-width: 460px;
}

.footer-contact-col .form {
	padding-top: 24px;
}

#footer-menu {
	border-top-right-radius: 48px;
	border-top-left-radius: 48px;
}


#footer-nav {
	display: flex;
	padding: 36px 0;
}

.footer-nav-col {
	padding-right: 18px;
}

.footer-nav-col.contact {
	flex: 2;
}

#footer .logo {
	max-width: 260px;
}

.footer-nav-col.links {
	flex: 1;
}

#footer-nav .heading {
	font-size: 1.2em;
}

#footer-nav ul {
	list-style-type: none;
	margin: 12px 0;
	padding: 0;
}

#footer-nav li {
	margin: 8px 0;
}

#footer-nav a:not(.social) {
	transition: 0.2s;
}

#footer-nav a:hover {
	color: var(--grey-mid);
	transition: 0.2s;
}

#footer-nav a:not(.social):hover {
	color: var(--brand-pri);
	/*padding-left: 4px;*/
}

#footer-nav a.social {
	display: inline-block;
	font-size: 36px;
	margin-top: 12px;
}

#footer-nav a.social+a.social {
	margin-left: 18px;
}


#footer-info {

}



#footer-copy {
	display: flex;
	justify-content: space-between;

	color: var(--grey-mid);
	font-weight: 600;
	/*border-top: 1px solid var(--grey-mid);*/
	padding-top: 18px;
}

.footer-copy-item {}

#footer-copy a:hover {
	/*text-decoration: underline 2px;*/
	transition: 0.2s;
}

@media only screen and (max-width: 992px) {
	.footer-contact-inner {
		flex-direction: column;
		gap: 0;
	}
}

@media only screen and (max-width: 1260px) {

	#footer-nav {
		flex-direction: column;
		text-align: center;
	}

	.footer-nav-col {
		padding: 0;
	}

	#footer-info {
		text-align: center;
	}

	#footer-copy {
		flex-direction: column;
		text-align: center;
	}
}