/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here... */ 

:root {

	/* Main Colours */

		--primaryColour: #D0262D;
		--secondaryColour: #00467D;
		--secondaryColourLight: #ebf1f5;
		--secondaryColourDark: #002D50;
		--shadow: #002D50; 			

	/* Main Colours - RGBA */

		--primaryColour-rgb: 208, 38, 45;
		--secondaryColour-rgb: 0, 70, 125;
		--shadow-rgb: 0, 45, 80;

	/* Monochromes */

		--black: #121212;
		--grey: #333333;
		--white: #ffffff;

	/* Monochromes - RGBA*/

		--black-rgb: 12, 12, 12;
		--white-rgb: 255, 255, 255;
		
	/* Radius */

		--rad-00: 0px;
		--rad-03: 3px;
		--rad-10: 10px;
		--rad-20: 20px;
		--rad-30: 30px;
		--rad-40: 40px;
		--rad-60: 60px;
		--rad-100: 100%;
		
	}

/* WORDPRESS */

	#wp-admin-bar-wpseo-menu {
		display: none !important;
	}


/* BEAVER BUILDER */

	/* Hidden Global Elements */

		.fl-builder-saved-rows .fl-builder-block-global,
		.fl-builder-saved-modules .fl-builder-block-global {
			display: none;
		}


/* GENERAL */

	html {
/* 		font-family: 'Nunito Sans', sans-serif; */
		font-size: 18px;
	}

	.fl-page {
		display: flex;
		flex-direction: column;
		min-height: 100vh;
		font-family: 'Nunito Sans', sans-serif;
		background-color: var(--white);
	}

	.fl-builder-content-393 {
		margin-top: auto;
	}

	.bb-row {
		margin-top: 40px;
		margin-bottom: 40px;
	}

	h1, h2, h3, h4, h5, h6 {
		color: var(--black);
		font-family: 'Nunito Sans', sans-serif;
		font-weight: 900;
	}

	h1 {
		font-size: 3rem;
	}

	h2 {
		font-size: 2.222rem;
	}

	h3 {
		font-size: 1.222rem;
	}

	h4 {
		font-size: 1.2rem;
	}

	h5 {
		font-size: 1rem;
	}

	h6 {
		font-size: .9rem;
	}

	.fl-module:not(.subheading) .fl-heading {
		margin-bottom: 20px !important;
	}

	p, li {
		color: var(--grey);
		font-size: 1rem;
		font-weight: 500;
		line-height: 1.6;
		margin-bottom: 16px;
	}

	.fl-rich-text ul li {
		margin-bottom: 0px;
	}

	.fl-rich-text ul li::marker {
		color: var(--primaryColour);
	}

	a, a:visited {
		color: var(--primaryColour);
		font-weight: 700;
		text-decoration: underline;
		transition: 650ms;
	}

	a:hover {
		color: var(--primaryColour);
	}

	.big,
	.big .fl-heading span,
	.big .fl-rich-text p {
		font-size: 3.611rem;
	}

	.small,
	.small .fl-heading span,
	.small .fl-rich-text p {
		font-size: 0.778rem;
	}

	.limited-width,
	.limited-width .fl-heading span,
	.limited-width .fl-rich-text p {
		max-width: 750px;
		margin: auto;
	}

	.limited-width-2,
	.limited-width-2 .fl-heading span,
	.limited-width-2 .fl-rich-text p {
		max-width: 350px;
		margin: auto;
	}

	.subheading,
	.subheading .fl-heading span {
		font-size: 0.778rem;
		font-weight: 600;
		text-transform: uppercase;
		margin: 0;
		transition: 650ms;
	}

	.bold, .bold span, b {
		font-weight: 700;
	}

	.pink,
	.pink span {
		color: var(--primaryColour);
	}

	.white,
	.white span,
	.white p {
		color: var(--white);
	}

	.grey-background {
		background-color: var(--secondaryColourLight);
	}

	.material-symbols-outlined {
		color: var(--primaryColour);
		font-size: 1rem;
		font-variation-settings:
			'FILL' 0,
			'wght' 400,
			'GRAD' 0,
			'opsz' 48;
	}

	/* Buttons */

		.fl-button,
		.fl-button:visited {
			background: rgba(var(--primaryColour-rgb), 1) !important;
			border: none !important;
			border-radius: var(--rad-30) !important;
			font-size: 0.9rem !important;
			font-weight: 600 !important;
			margin: 16px 0;
			padding: 15px 25px !important;
			transition: 650ms;
		}

		.fl-button:hover {
			background: rgba(var(--primaryColour-rgb), 0.9) !important;
			border-radius: var(--rad-20) !important;
		}

		.wpcf7 input[type="submit"],
		.wpcf7-submit {
			background: rgba(var(--primaryColour-rgb), 1) !important;
			border: none !important;
			border-radius: var(--rad-30) !important;
			font-size: 0.9rem !important;
			font-weight: 600 !important;
			width: 100%;
			margin: 0;
			padding: 15px 25px !important;
		}

		.wpcf7 input[type="submit"]:hover,
		.wpcf7-submit:hover {
			background: rgba(var(--primaryColour-rgb), 0.9) !important;
			border-radius: var(--rad-20) !important;
		}

		.btn-pink .fl-button {
			background: rgba(var(--primaryColour-rgb), 1) !important;
		}

		.btn-pink .fl-button:hover {
			background: rgba(var(--primaryColour-rgb), 0.9) !important;
			border-radius: var(--rad-20) !important;
		}

		.btn-grey .fl-button {
			background: rgba(var(--secondaryColour-rgb), 1) !important;
		}

		.btn-grey .fl-button:hover {
			background: rgba(var(--secondaryColour-rgb), 0.9) !important;
			border-radius: var(--rad-20) !important;
		}


	/* Image */

		.full-width-image {
			position: relative;
		}

		.full-width-image .fl-photo-content {
			width: 100%;
		}

		.full-width-image .fl-photo-content .fl-photo-img {
			max-height: 400px;
			width: 100%;
			object-fit: cover;
			margin-top: 10px;
			margin-bottom: 25px;
		}

		.fl-photo-img {
			border-radius: var(--rad-20);
		}

	/* Accordion */

		.fl-module-pp-advanced-accordion {
			margin-bottom: 15px;
		}

		.pp-accordion-item .pp-accordion-button {
			border-bottom: 1px solid rgba(var(--black-rgb), .05);
			background: none !important;
			padding: 15px 15px !important;
		}

		.pp-accordion-button-label {
			color: var(--black);
			font-size: 1rem;
			font-weight: 600;
		}

		.pp-accordion-content {
			background: none !important;
		}

		.pp-accordion-item .fa-plus::before,
		.pp-accordion-item .fa-minus::before {
			content: "\e5cf";
			color: var(--primaryColour);
			font-family: 'Material Symbols Outlined';
			font-size: 1.2rem !important;
			font-weight: 500;
		}

		.pp-accordion-item .fa-minus::before {
			content: "\e5ce";
		}

	/* Forms */

		.wpcf7-form {
			display: flex;
			flex-wrap: wrap;
		}
		.wpcf7-form p {
			width: 100%;
			margin-bottom: 8px;
		}

		.wpcf7-form label {
			width: 100%;
		}

		.wpcf7-form input[type="text"],
		.wpcf7-form input[type="number"],
		.wpcf7-form input[type="email"],
		.wpcf7-form input[type="tel"],
		.wpcf7-select,
		.wpcf7-textarea {
			font-size: 1rem;
			font-weight: 400;
			color: var(--black);
			background-color: var(--white) !important;
			outline: 4px solid rgba(var(--primaryColour-rgb), 0);
			border: 1px solid var(--black);
			border-radius: var(--rad-30);
			padding: 10px 15px;
			margin-top: 8px;
			width: 100%;
			-webkit-appearance: none;
			transition: 650ms;
		}

		.wpcf7-select {
			background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDgiIHdpZHRoPSI0OCI+PHBhdGggZD0ibTI0IDMwLjc1LTEyLTEyIDIuMTUtMi4xNUwyNCAyNi41bDkuODUtOS44NUwzNiAxOC44WiIvPjwvc3ZnPg==") no-repeat;
			background-size: 1rem;
			background-position: calc(100% - 10px) center;
		}

		.wpcf7-textarea {
			max-width: 100%;
			min-width: 100%;
		}

		.wpcf7-form input[type="text"]:focus,
		.wpcf7-form input[type="number"]:focus,
		.wpcf7-form input[type="email"]:focus,
		.wpcf7-form input[type="tel"]:focus,
		.wpcf7-select:focus,
		.wpcf7-textarea:focus {
			background-color: var(--white);
			outline: 4px solid rgba(var(--primaryColour-rgb), 0.1);
			border: 1px solid var(--primaryColour);
		}

		.wpcf7 input[type="submit"] {
			background: red;
			border: none;
			border-radius: 10px;
			font-size: 1rem;
			font-weight: 600;
			padding: 1rem 1.5rem;
			transition: 650ms;
		}

		.wpcf7-form .wpcf7-list-item {
			margin-left: 0;
		}

		.wpcf7-form .wpcf7-list-item span {
			font-weight: 400;
			text-transform: none;
		}

		.wpcf7-not-valid-tip {
			color: red !important;
		}

		.wpcf7 span {
			font-weight: 300;
		}

	/* Google Maps (Contact) */

		.google-maps {
			position: relative;
			height: 0;
			border-radius: var(--rad-20);
			padding-bottom: 100%;
			overflow: hidden;
		}

		.google-maps iframe {
			position: absolute;
			top: 0;
			left: 0;
			width: 100% !important;
			height: 100% !important;
		}

	/* Help Text */

		.help-text .fl-rich-text {
			position: relative;
		}

		.help-text .fl-rich-text * {
			font-size: 1rem;
		}

		.help-text .fl-rich-text p {
			background-color: rgba(45, 108, 162, 12%);
			border-radius: 5px;
			padding: 8px 8px 8px 40px;
		}

		.help-text .fl-rich-text::before {
			position: absolute;
			top: 6px;
			left: 8px;
			content: "\e88e";
			font-family: "Material Symbols Outlined";
			font-size: 24px;
			font-variation-settings:
				'FILL' 1;
			color: rgba(45, 108, 162, 100%);
		}

	/* Move reCAPTCHA v3 badge to the left */

		.grecaptcha-badge {
			width: 70px !important;
			overflow: hidden !important;
			transition: all 0.3s ease !important;
			left: -4px !important;
		}

		.grecaptcha-badge:hover {
			width: 256px !important;
		}

	/* BACKGROUND CIRCLES & BADGES */

		/* General */

			.fl-builder-edit .featured-wrapper,
			.fl-builder-edit .tiles-wrapper,
			.fl-builder-edit .testimonials-wrapper,
			.fl-builder-edit .contact-wrapper {
				overflow: visible;
			}

			.featured-wrapper, .tiles-wrapper,
			.testimonials-wrapper,
			.contact-wrapper {
				overflow: hidden;
			}

		/* Big Striped Circle */

			.big-striped-circle::before {
				content: '';
				position: absolute;
				width: 580px;
				height: 580px;
				max-width: 100%;
				-webkit-mask-image: var(--mask);
				mask-image: var(--mask);
				-webkit-mask-repeat: no-repeat;
				mask-repeat: no-repeat;
				mix-blend-mode: multiply;
				transition: 1000ms;
				--mask: url(/wp-content/uploads/scales.svg);
			}

			.big-striped-circle.pink-big-circle::before {
				background-color: rgba(var(--primaryColour-rgb), 0.25);
				transform: rotate(15deg);
			}

			.big-striped-circle.grey-big-circle::before {
				background-color: rgba(var(--secondaryColour-rgb), 0.25);
			}

			.big-striped-circle.blue-big-circle::before {
				background-color: rgba(var(--secondaryColour-rgb), 0.5);
			}

		/* Small Striped Circle */

			.small-striped-circle::after {
				content: '';
				position: absolute;
				width: 220px;
				height: 220px;
				max-width: 100%;
				-webkit-mask-image: var(--mask);
				mask-image: var(--mask);
				-webkit-mask-repeat: no-repeat;
				mask-repeat: no-repeat;
				mix-blend-mode: multiply;
				transition: 1000ms;
				--mask: url(/wp-content/uploads/scales.svg);
			}

			.small-striped-circle.pink-small-circle::after {
				background-color: rgba(var(--primaryColour-rgb), 0.20);
				
			}

			.small-striped-circle.grey-small-circle::after {
				background-color: rgba(var(--secondaryColour-rgb), 0.15);
				transform: rotate(-25deg);
			}

			.small-striped-circle.blue-small-circle::after {
				background-color: rgba(var(--secondaryColour-rgb), 0.75);
			}

		/* Finch Badge */

			.finch-badge::after {
				content: '';
				position: absolute;
				width: 200px;
				height: 200px;
				max-width: 100%;
				background-image: url(/wp-content/uploads/favicon.png);
				background-size: contain;
				background-repeat: no-repeat;
				mix-blend-mode: multiply;
/* 				opacity: 35%; */
				opacity: 100%;
				transform: rotate(-35deg);
				transition: 1000ms;
			}

			/* Animation Keyframes */

				/* Spin */

					@-moz-keyframes spin { 
						100% {
							-moz-transform: rotate(360deg);
						} 
					}

					@-webkit-keyframes spin { 
						100% {
							-webkit-transform: rotate(360deg);
						} 
					}

					@keyframes spin { 
						100% { 
							-webkit-transform: rotate(360deg); 
							transform: rotate(360deg); 
						}
					}

				/* Spin - Limited */

					@-moz-keyframes spinLimited { 
						0% { 
							-moz-transform: rotate(-45deg); 
						}
						50% { 
							-moz-transform: rotate(-35deg); 
						}
						100% { 
							-moz-transform: rotate(-45deg); 
						}
					}

					@-webkit-keyframes spinLimited { 
						0% { 
							-webkit-transform: rotate(-45deg); 
						}
						50% { 
							-webkit-transform: rotate(-35deg); 
						}
						100% { 
							-webkit-transform: rotate(-45deg); 
						}
					}

					@keyframes spinLimited { 
						0% { 
							-webkit-transform: rotate(-45deg); 
							transform: rotate(-45deg); 
						}
						50% { 
							-webkit-transform: rotate(-35deg); 
							transform: rotate(-35deg); 
						}
						100% { 
							-webkit-transform: rotate(-45deg); 
							transform: rotate(-45deg); 
						}
					}

				/* Grow */

					@-moz-keyframes growCenter { 
						0% {
							-moz-transform: scale(0, 1);
						}
						100% { 
							-moz-transform: scale(1, 1);
						}
					}

					@-webkit-keyframes growCenter { 
						0% {
							-webkit-transform: scale(0, 1);
						}
						100% { 
							-webkit-transform: scale(1, 1);
						}
					}

					@keyframes growCenter { 
						0% {
							-webkit-transform: scale(0, 1);
							transform: scale(0, 1);
						}
						100% { 
							-webkit-transform: scale(1, 1);
							transform: scale(1, 1); 
						}
					}

		/* Sections */

			/* Image Module */

				.full-width-image::before {
					width: 320px;
					height: 320px;
					top: calc(50% - 165px);
					left: calc(0% - 250px);
				}

				/*.full-width-image.reverse::before {
					top: calc(50% - 165px);
					left: auto;
					right: -160px;
				}*/

			/* Featured Services */

				.featured-wrapper .fl-col-content .fl-module:first-child {
					z-index: 2;
				}

				.featured-wrapper .fl-module {
					position: relative;
					z-index: 1;
				}

				.featured.finch-badge::after {
					top: calc(100% - 100px);
					left: -120px;					
					-webkit-animation: spinLimited 3.5s linear infinite;
					-moz-animation: spinLimited 3.5s linear infinite;
					animation: spinLimited 3.5s linear infinite;
					z-index: -1;
				}

				.featured.big-striped-circle::before {
					top: calc(50% - 290px);
					right: calc(0% - 400px);
					-webkit-animation: spin 120s linear infinite;
					-moz-animation: spin 120s linear infinite;
					animation: spin 120s linear infinite;
				}

			/* Content & Media */

				.content-media-section::after {
					bottom: -50px;
					right: -160px;
				}

				.content-media-section.reverse::after {
					bottom: -50px;
					left: -160px;
				}

			/* Testimonials */

				.testimonials-wrapper.big-striped-circle::before {
					top: -180px;
					right: -180px;
				}

			/* Contact Form */

				.contact-wrapper .fl-module {
					position: relative;
					z-index: 1;
				}

				.contact-wrapper .big-striped-circle::before {
					top: 0;
					right: calc(0% - 450px);
				}

				.contact-wrapper .small-striped-circle::after,
				.contact-wrapper .finch-badge::after {
					bottom: 120px;
					left: calc(0% - 180px);
					z-index: -1;
				}

				.contact-wrapper .finch-badge::after {
					transform: rotate(0deg);
				}


/* HEADER */

	/* General */

		.fl-builder-content-397 {
			position: -webkit-sticky;
			position: sticky;
			top: 0px;
			z-index: 99;
		}

		.fl-builder-content-1973 {
			position: -webkit-sticky;
			position: sticky;
			top: 40px;
			z-index: 99;
			background: var(--white);
			border-bottom: 1px solid rgba(var(--secondaryColour-rgb), 0.1);
		}

	/* Top Header */

		/* General */

			.top-header {
				background: var(--secondaryColourLight);
				color: var(--black);
				height: 40px;
				transition: 650ms;
			}

			.top-header .fl-row-content-wrap {
				display: flex;
				align-items: center;
				height: 100%;
			}

			.top-header .fl-row-content {
				width: 100%;
			}

			.top-header .fl-html div>* {
				display: flex;
				align-items: center;
			}

			.top-header .fl-html .material-symbols-outlined {
				margin-right: 5px;
				font-size: 1rem;
			}

		/* Contact Details */

			.top-header .fl-html .contact-details {
				display: flex;
				justify-content: flex-end;
			}

			.top-header .fl-html .contact-details div:nth-child(1) {
				margin-right: 30px;
			}

			.top-header .fl-html .contact-details a {
				color: var(--black);
				margin-left: 5px;
			}

	/* Main Header */

		/* General*/

			.main-header {
				display: flex;
				justify-content: space-between;
				align-items: center;
				height: 120px !important;
				transition: 650ms;
			}

			.main-header .fl-row-content-wrap {
				width: 100%;
				margin: 0 20px;
			}

		/* Logo */

			.main-header #logo {
				transition: 650ms;
			}

			.main-header .logo {
				width: 100%;
				min-width: 150px;
			}

		/* Menu */

			.main-header .menu > .menu-item:not(:nth-last-child(1), :nth-last-child(2)) {
				border-right: 1px solid rgba(var(--secondaryColour-rgb), 0.5);
			}

			.main-header #menu-main-menu .menu-item a:not(.client-login-btn a) {
				color: var(--black);
				font-size: 1rem;
				line-height: 1.1rem;
				padding: 0 15px;
			}

			.main-header .fl-menu-horizontal.fl-toggle-arrows .fl-has-submenu-container a {
				padding-right: 28px !important;
			}

			.fl-menu .fl-menu-toggle:before {
				width: 6px !important;
				height: 6px !important;
				margin: -2px -2px 0 0 !important;
				border-right: 2px solid var(--secondaryColourDark) !important;
				border-bottom: 2px solid var(--secondaryColourDark) !important;
			}

		/* Submenu */

			.main-header #menu-main-menu .sub-menu {
				min-width: 300px;
				border-radius: var(--rad-30);
				padding: 10px !important;
			}

			.main-header #menu-main-menu .sub-menu .menu-item a {
				border-radius: var(--rad-30);
				padding: 15px 30px 15px 15px !important;
				margin-bottom: 5px;
			}

			.main-header #menu-main-menu .sub-menu .menu-item a:hover {
				color: var(--white);
				background-color: rgba(var(--secondaryColour-rgb), 1);
			}

/* 			.sub-menu .fl-menu-toggle:before {
				margin: -2px 0 0 0 !important;
			} */

		/* Client Login Button */

			.main-header .client-login-btn a,
			.main-header .client-login-btn a:active {
				display: flex;
				align-items: center;
				background: rgba(var(--primaryColour-rgb), 1);
				border-radius: var(--rad-30);
				color: var(--white);
				font-size: 0.889rem;
				margin: 1px 0;
				padding: 15px 22px !important;
				margin-left: 5px;
			}

			.main-header .client-login-btn a:hover {
				background: rgba(var(--primaryColour-rgb), 0.9) !important;
				border-radius: var(--rad-20);
			}

			.main-header .client-login-btn span {
				margin-right: 5px;
			}

			.main-header .client-login-btn a::after {
				content: "\e158";
				font-family: 'Material Symbols Outlined';
				font-size: 1.2rem;
				font-weight: 300;
			}


/* SERVICES */

	/* Featured */

		/* General */

			.services.featured .pp-content-post {
				border-radius: var(--rad-20);
				margin-bottom: 0;
				transition: 650ms;
			}

			.services.featured .pp-content-post a.pp-post-link {
				z-index: 2;
			}

		/* Content */

			.services.featured .content-wrapper {
				background-size: cover !important;
				background-repeat: no-repeat !important;
				background-position: center center !important;
				padding: 80px;
			}

			.services.featured .content-wrapper * {
				position: relative;
				z-index: 1;
			}

			.services.featured .material-symbols-outlined {
				display: flex;
				align-items: center;
				justify-content: center;
				color: rgba(var(--white-rgb), 1);
				border: 1px solid rgba(var(--white-rgb), 0.5);
				border-radius: var(--rad-100);
				font-size: 1.6rem;
				width: 48px;
				height: 48px;
				transition: 650ms;
			}

			.services.featured .material-symbols-outlined:first-child {
				color: var(--primaryColour);
				background-color: var(--white);
			}

			.services.featured h3 {
				color: var(--white);
				font-size: 1.8rem;
			}

			.services.featured .content-wrapper div {
				margin-bottom: 30px;
			}

			.services.featured .content-wrapper div p {
				color: var(--white);
			}

		/* Hover Effect */

			.zoom-in::after {
				content: "";
				position: absolute;
				top: 0;
				right: 0;
				bottom: 0;
				left: 0;				
				background: inherit;
				background-color: rgba(var(--secondaryColour-rgb), 85%);
				background-blend-mode: multiply;
				transform-origin: center;
				transition: transform 600ms ease-in-out;
			}

			.services.featured .pp-content-post:hover .zoom-in::after {
				transform: scale(1.05);
			}

			.services.featured .pp-content-post:hover .material-symbols-outlined:not(:first-child) {
				color: var(--primaryColour);
				background-color: rgba(var(--white-rgb), 1);
			}

	/* Tiles */

		/* General */

			.tiles-wrapper {
				position: relative;
				z-index: 1;
			}

			.services.tiles {
				margin-top: 40px;
			}

			.services.tiles .pp-content-post-grid {
				border-radius: var(--rad-30);
				background-color: var(--white);
				box-shadow: 0px 0px 35px rgba(var(--shadow-rgb), 0.4);
				overflow: hidden;
			}

			.services.tiles .pp-content-grid-content {
				margin: 0;
			}

			.services.tiles .pp-content-grid-inner {
				padding: 40px;
			}

			.services.tiles .pp-content-post {
				margin-bottom: 0;
			}

			.services.tiles .pp-content-post:hover {
				background-color: rgba(var(--primaryColour-rgb), 0.05);
			}

			.services.tiles .pp-content-post:hover .subheading {
				margin-left: 3px;
			}

			.services.tiles .pp-content-post:hover .subheading::after {
				transform: rotate(0deg);
			}

		/* Image */

			.services.tiles .pp-content-grid-content .attachment-post-thumbnail {
				display: none;
			}

		/* Icons */

			.services.tiles .pp-content-post .material-symbols-outlined {
				font-size: 2.222rem;
				font-variation-settings:
					'FILL' 0,
					'wght' 400,
					'GRAD' 0,
					'opsz' 48;
			}

			.services.tiles .pp-content-post .material-symbols-outlined img {
				width: 38px;
				height: 38px;
				margin-top: -10px;
			}

		/* Content */

			.services.tiles .pp-content-grid-content p {
				margin-bottom: 30px;
			}

			.services.tiles .pp-content-grid-content .subheading {
				display: flex;
				align-items: center;
			}

			.services.tiles .pp-content-grid-content .subheading::after {
				content: "\e5c8";
				display: inline-block;
				font-family: 'Material Symbols Outlined';
				font-size: 1rem;
				font-weight: 400;
				margin-left: 8px;
				transform: rotate(-45deg);
				transition: 650ms;
			}

		/* Alt. with numbers instead of icons */

			.services.numbers .material-symbols-outlined {
				display: none;
			}

			.services.numbers {
				counter-reset: posts 0;
			}

			.services.numbers .pp-content-post-grid .pp-content-post h3 {
				counter-increment: posts;
			}

			.services.numbers .pp-content-post-grid .pp-content-post h3::before {
				content: counter(posts) '.';
				display: block;
				color: var(--primaryColour);
				margin-bottom: 20px;
			}

	/* List */

		/* General */

			.services.list {
				margin-top: 40px;
			}

			.services.list .pp-content-grid-inner {
				padding: 40px;
			}

			.services.list .pp-content-post-grid {
				transition: 650ms;
			}

			.services.list .pp-content-post-grid .pp-content-post:hover {
				background-color: rgba(var(--primaryColour-rgb), 0.05);
			}

			.services.list .pp-content-post:hover .pp-post-title {
				margin-left: 4px !important;
			}

			.services.list .pp-content-post {
				border-right: 1px solid rgba(var(--secondaryColour-rgb), 0.2);
				border-top: 1px solid rgba(var(--secondaryColour-rgb), 0.2);
			}

			.services.list .pp-content-post:nth-child(-n + 3) {
				border-top: none;
			}

			.services.list .pp-content-post:nth-child(3n) {
				border-right: none;
			}

		/* Title */

			.services.list .pp-content-post-grid .pp-content-post .pp-post-title {
				display: flex;
				align-items: center;
				font-weight: 600;
				margin: 0;
				transition: 650ms;
			}

			.services.list .pp-content-post-grid .pp-content-post .pp-post-title::before {
				content: counter(posts) '.';
				display: inline-block;
				color: var(--primaryColour);
				margin-right: 20px;
			}

			.services.list .pp-content-post-grid .pp-content-post .pp-post-title::after {
				content: "\e5c8";
				display: inline-block;
				font-family: 'Material Symbols Outlined';
				font-weight: 400 !important;
				color: var(--primaryColour);
				transform: rotate(-45deg);
				margin-left: auto;
				transition: 650ms;
			}

			.services.list .pp-content-post-grid .pp-content-post:hover .pp-post-title::after {
				transform: rotate(0);
			}

		/* Numbers */

			.services.list {
				counter-reset: posts 0;
			}

			.services.list .pp-content-post-grid .pp-content-post .pp-post-title {
				counter-increment: posts;
			}


/* CARDS */

	/* General */

		.cards .pp-content-grid-content {
			margin: 0 !important;
		}

		.cards .content-wrapper {
			padding: 30px;
			transition: 650ms;
		}

	/* Filter */

		.cards .pp-post-filters .pp-post-filter {
			background-color: rgba(var(--secondaryColour-rgb), 0.1);
			border-radius: var(--rad-30);
			font-size: 0.889rem;
			font-weight: 600;
			padding: 6px 18px;
			margin-right: 12px;
			margin-bottom: 12px;
			transition: 650ms;
		}

		.cards .pp-post-filters .pp-filter-active,
		.cards .pp-post-filters .pp-post-filter:hover {
			background-color: rgba(var(--primaryColour-rgb), 1);
			border-radius: var(--rad-20);
			color: var(--white) !important;
		}

	/* Hover */

		.cards .pp-content-post {
			border-radius: var(--rad-30);
			background-color: var(--white);
			transition: 650ms;
		}

/* 		.cards .pp-content-post:hover .content-wrapper {
			background-color: rgba(var(--primaryColour-rgb), 0.05);
		} */

		.cards .pp-content-post:hover {
/* 			border-radius: var(--rad-20); */
			background-color: rgba(var(--primaryColour-rgb), 0.05);
		}

		.cards .pp-content-post:hover .image-wrapper {
/* 			border-radius: var(--rad-20); */
		}

		.cards .pp-content-post:hover img {
			transform: scale(1.05);
		}

		.cards .pp-content-post:hover .subheading {
			margin-left: 3px;
		}

		.cards .pp-content-post:hover .subheading::after {
			transform: rotate(0deg);
		}

	/* Image */

		.cards .content-wrapper .image-wrapper {
			border-radius: var(--rad-20);
			margin-bottom: 20px;
			transition: 650ms;
			overflow: hidden;
		}

		.cards .content-wrapper img {
			height: 250px;
			width: 100%;
			object-fit: cover;
			transition: 650ms;

		}

	/* Content */

		.cards .content-wrapper .categories,
		.cards .content-wrapper .date {
			display: none;
			font-weight: 600;
			margin-bottom: 10px;
		}

/* 		.cards .content-wrapper .categories {
			color: rgba(var(--secondaryColour-rgb), 0.3);
			font-weight: 400;
			margin-bottom: 15px;
		} */

		.categories a,
		.cards .content-wrapper .categories a {
			color: var(--white);
			background-color: var(--primaryColour);
			border-radius: var(--rad-20);
			cursor: default;
			pointer-events: none;        
			text-decoration: none;
			padding: 5px 10px;
			margin-right: 10px;
			margin-bottom: 10px;
		}

		.cards .content-wrapper .date {
			color: var(--secondaryColourDark);
		}

		.cards .content-wrapper h3 {
			margin-top: 0px;
		}

		.cards .subheading {
			display: flex;
			align-items: center;
			margin-top: 20px;
		}

		.cards .subheading::after {
			content: "\e5c8";
			display: inline-block;
			font-family: 'Material Symbols Outlined';
			font-size: 1rem;
			font-weight: 400;
			margin-left: 8px;
			transform: rotate(-45deg);
			transition: 650ms;
		}


/* CONTENT & MEDIA SECTION */

	/* General */

		.content-media-section .fl-row-content-wrap {
			padding: 60px 0;
			transition: 650ms;
		}

	/* Image */

		.content-media-section .fl-bg-slideshow {
			border-radius: var(--rad-20);
			width: 65%;
			left: auto;
			right: 0;
			z-index: 1;
		}

		.content-media-section.reverse .fl-bg-slideshow {
			left: 0;
			right: auto;
		}

	/* Content */

		.content-media-section .content {
			max-width: 50%;
			border-radius: var(--rad-20);
			background-color: var(--white);
			box-shadow: 0px 10px 45px rgba(var(--shadow-rgb), 0.5);
			padding: 15px 30px;
			z-index: 2;
		}

		.content-media-section.reverse .fl-col-group {
			justify-content: flex-end;
		}


/* CONTENT & FORM SECTION */

	/* Content */

		.content-form-section .fl-photo-img {
			width: 100%;
		}

	/* Form */

		.content-form-section .form-wrapper .fl-col-content {
			background-color: rgba(var(--secondaryColour-rgb), 1);
			border-radius: var(--rad-20);
			padding: 20px;
		}

		.content-form-section .form-wrapper .fl-col-content label,
		.content-form-section .form-wrapper .fl-col-content a {
			color: var(--white);
		}

/* TESTIMONIALS */

	/* General */

		.testimonials-wrapper {
			padding-top: 200px;
			padding-bottom: 50px;
			margin-top: -250px;
			position: relative;
		}

		.testimonials-wrapper .fl-row-content {
			position: relative;
		}

		.testimonials .pp-content-posts {
			width: 100%;
			max-width: 950px;
		}

		.testimonials .pp-posts-wrapper {
			display: flex;
			justify-content: center;
		}

		.testimonials-wrapper.no-clip {
			padding-top: 30px;
			padding-bottom: 50px;
			margin-top: 0px;
			position: relative;
		}

	/* Content */

		.testimonials .pp-content-posts .content-wrapper {
			text-align: center;
		}

		.testimonials .pp-content-posts .content-wrapper div {
			color: var(--black);
			font-size: 1rem;
			font-weight: 600;
		}

		.testimonials .pp-content-posts .content-wrapper div p {
			font-size: 1.111rem;
			margin-bottom: 15px;
		}

		.testimonials .pp-content-posts .content-wrapper div p::before,
		.testimonials .pp-content-posts .content-wrapper div p::after {
			content: '"';
		}

	/* Navigation Dots */

		.testimonials .owl-theme .owl-dots .owl-dot span {
			background: rgba(var(--primaryColour-rgb), 20%) !important;
			margin: 5px;
		}

		.testimonials .owl-theme .owl-dots .owl-dot.active span {
			background: rgba(var(--primaryColour-rgb), 1) !important;
		}

	/* Quote Mark Icons */

		.testimonials-wrapper .fl-col-content::before,
		.testimonials-wrapper .fl-col-content::after {
			content: "\e244";
			position: absolute;
			font-family: 'Material Symbols Outlined';
			font-variation-settings:
				'FILL' 1,
				'wght' 400,
				'GRAD' 0,
				'opsz' 48;
			color: var(--primaryColour);
			font-size: 9rem;
		}

		.testimonials-wrapper .fl-col-content::before {
			top: -100px;
			-moz-transform: scale(-1, -1);
			-o-transform: scale(-1, -1);
			-webkit-transform: scale(-1, -1);
			transform: scale(-1, -1)
		}

		.testimonials-wrapper .fl-col-content::after {
			right: 0;
			bottom: -100px;
		}


/* BASIC PAGE */

	/* General */


	/* Hero Banner */

		/* Image */

			.home .hero-wrapper .image-wrapper {
				height: 550px !important;
			}

			.hero-wrapper:not(.no-overlay-homepage) .image-wrapper {
				height: 300px;
			}

			.hero-wrapper .image-wrapper img {
				width: 100%;
				height: 100%;
				object-fit: cover;
			}

			.hero-wrapper:not(.no-overlay-homepage) .fl-bg-embed-code::before {
				content: "";
				position: absolute;
				width: 100%;
				height: 100%;
				background: rgba(var(--secondaryColour-rgb), 0.5);
				mix-blend-mode: multiply;
			}

		/* Content */

			.hero-wrapper:not(.no-overlay-homepage) .fl-heading,
			.hero-wrapper:not(.no-overlay-homepage) .fl-html {
				display: flex;
				justify-content: center;
				color: var(--white);
				text-align: center;
				margin-bottom: 0px !important;
			}

			.hero-wrapper:not(.no-overlay-homepage) .fl-heading-text {
				position: relative;
				display: flex;
				flex-wrap: wrap;
				justify-content: center;
			}

			.hero-wrapper:not(.no-overlay-homepage) .fl-heading-text::after {
				content: "";
				display: block;
				height: 10px;
				width: 50%;
				max-width: 250px;
				background-color: var(--primaryColour);
				margin-top: 10px;
				-webkit-animation: growCenter 1s ease-out 1;
				-moz-animation: growCenter 1s ease-out 1;
				animation: growCenter 1s ease-out 1;
			}

	/* Content */

		/* Breadcrumbs */

			.breadcrumbs-wrapper {
				border-bottom: 1px solid rgba(var(--secondaryColour-rgb), 0.1);
			}

			.breadcrumbs-wrapper .fl-rich-text p {
				margin-bottom: 0;
			}

			.breadcrumbs-wrapper .fl-rich-text p span *,
			.breadcrumbs-wrapper .fl-rich-text .breadcrumb_last {
				margin: 0 10px;
				font-weight: 600;
			}

			.breadcrumbs-wrapper .fl-rich-text p span:first-child {
				margin-left: 0;
			}


/* CASE STUDIES */

	/* General */

		.cards.case-studies .content-wrapper .categories {
			display: block;
		}

	/* Hero Banner */

			.hero-wrapper.case-studies .fl-heading-text {
				max-width: 75%;
			}

			.hero-wrapper.case-studies .categories {
				margin-bottom: 10px;
			}

	/* Client Details (NOT IN USE) */

			.basic-details-wrapper {
				display: none;
				border-bottom: 1px solid rgba(var(--secondaryColour-rgb), 0.1);
			}

			.content-wrapper.case-studies_details {
				display: flex;
			/* 	flex-wrap: wrap; */
				align-items: center;
			}

			.content-wrapper.case-studies_details .image-wrapper {
				display: flex;
				align-items: center;
				width: 120px;
				height: 120px;
				border: 1px solid rgba(var(--secondaryColour-rgb), 0.1);
				border-radius: var(--rad-100);
				padding: 15px;
				margin-right: 30px;
				overflow: hidden;
				transition: 400ms;
			}

			.content-wrapper.case-studies_details .image-wrapper img {
				width: 100%;
			}

			.content-wrapper.case-studies_details h3 {
				margin-bottom: 10px;
			}

			.content-wrapper.case-studies_details .categories {
				display: flex;
				flex-wrap: wrap;
			}


/* ARTICLES */

	/* General */

		.cards.articles .content-wrapper .date {
			display: block;
		}

	/* Hero Banner */

		/* Content */

			.hero-wrapper.news .date {
				font-size: 1rem;
				font-weight: 600;
			}

			.hero-wrapper.news .fl-heading-text {
				max-width: 75%;
			}


/* TEAM PAGE */

	/* General */

		.content-wrapper.team .subheading.pink {
			display: none;
		}

		.cards.team .content-wrapper.team .contact-details {
			display: none;
		}

		.cards.team .content-wrapper.team .subheading.pink {
			display: inline-flex;
		}

		.page-id-103 .cards .pp-content-post:hover {
			background-color: var(--white) !important;
		}

	/* Image */

		.content-wrapper.team .image-wrapper {
			position: relative;
		}

		.page-id-103 .content-wrapper.team .image-wrapper:hover {
			cursor: pointer;
		}

		.content-wrapper.team .image-wrapper img {
			height: 300px;
			width: 100%;
			object-fit: contain;
			border-radius: var(--rad-20);
		}

		.cards .pp-content-post:hover .content-wrapper.team img {
			transform: scale(1);
		}

	/* Image (Secondary) */

		.content-wrapper.team .image-wrapper img:nth-child(2) {
			position: absolute;
			top: 0;
			left: 0;
			opacity: 0%;
			transition: 250ms;
		}

/* 		.cards .pp-content-post:hover .content-wrapper.team .image-wrapper img:nth-child(2) {
			opacity: 100%;
		} */

	/* Content */

		.content-wrapper.team h3 {
			margin-bottom: 0;
		}

		.content-wrapper.team .contact-details div {
			display: flex;
			align-items: center;
			margin-bottom: 5px;
		}

		.content-wrapper.team .contact-details a {
			font-size: 0.889rem;
			margin-left: 5px;
		}

		.content-wrapper.team .contact-details .material-symbols-outlined {
			font-size: 1rem;
		}

		.page-id-103 .content-wrapper.team a {
			display: inline-block;
			width: 100%;
			text-decoration: auto;
		}

		.cards .pp-content-post:hover .content-wrapper.team .subheading {
			margin-left: 0px;
		}

		.cards .pp-content-post:hover .content-wrapper.team .subheading::after {
			transform: rotate(-45deg);
		}

		.cards .content-wrapper.team a:hover .subheading {
			margin-left: 3px !important;
		}

		.cards .content-wrapper.team a:hover .subheading::after {
			transform: rotate(0deg) !important;
		}

/* FOOTER */

	/* General */

		#global-footer, .fl-page-footer {
			background-color: var(--secondaryColour);
		}

	/* Main Footer */

		#global-footer {
			padding: 40px 0;
		}

		#global-footer h4 {
			color: var(--white);
			font-size: 1.222rem;
		}

		#global-footer .fl-rich-text p,
		#global-footer .menu-item a {
			color: var(--white) !important;
			font-size: 1rem;
			font-weight: 500 !important;
			text-decoration: none;
		}

		#global-footer .menu-item a {
			padding: 0 !important;
			padding-bottom: 10px !important;
		}

		#global-footer a {
			font-weight: 600 !important;
			color: var(--white);
		}

		#global-footer h4::after {
			content: "";
			display: block;
			width: 40px;
			height: 3px;
			background-color: var(--primaryColour);
			margin-top: 3px;
		}

	/* Social Media Icons */

		.social-media-links {
			display: flex;
		}

		.social-media-links a,
		.social-media-links a:visited {
			display: inherit;
			align-items: center;
			justify-content: center;
			background: rgba(var(--white-rgb), 1);
			border-radius: var(--rad-30);
			fill: rgba(var(--primaryColour-rgb), 1);
			height: 45px;
			width: 45px;
		}

		.social-media-links a:first-child {
			margin-right: 15px;
		}

		.social-media-links a:hover {
			background: rgba(var(--primaryColour-rgb), 1);
			fill: rgba(var(--white-rgb), 1);
		}

		.sm-icon {
			width: 14px;
			aspect-ratio: 1;
		}

	/* Copyright Footer */

		.fl-page-footer {
			border-top: solid 1px rgba(var(--white-rgb), 25%);
		}

		.fl-page-footer .fl-page-footer-text,
		.fl-page-footer .fl-page-footer-text a {
			color: var(--white);
			font-size: 0.778rem;
			font-weight: 500;
			text-decoration: none;
		}

		.fl-page-footer-text-2 .copyright-links {
			color: rgba(var(--white-rgb), 25%);
		}

		.fl-page-footer-text-2 .copyright-links a {
			margin: 0 10px;
		}


@media (max-width: 1250px) {
	
	/* BACKGROUND CIRCLES & BADGES */

		/* Sections */

			/* Content & Media */

				.content-media-section::after {
					bottom: -20px;
					right: -0px;
				}

				.content-media-section.reverse::after {
					bottom: -20px;
					left: -0px;
				}
	
	/* HEADER */

		/* Main Header */

			/* Menu */

				.main-header #menu-main-menu .menu-item a:not(.client-login-btn a) {
					color: var(--black);
					font-size: 0.889rem;
					padding: 0 10px;
				}

				.main-header .fl-menu-horizontal.fl-toggle-arrows .fl-has-submenu-container a {
					padding-right: 26px !important;
				}

				.main-header .client-login-btn span {
					display: none;
				}

			/* Submenu */

				.main-header #menu-main-menu .sub-menu {
					min-width: 220px;
				}

			/* Client Login Button */

				.main-header .client-login-btn a,
				.main-header .client-login-btn a:active {
					display: flex;
					justify-content: center;
					height: 50px !important;
					width: 50px;
					margin-left: 0px;
				}

}


@media (max-width: 1200px) {
	
	/* BACKGROUND CIRCLES & BADGES */

		/* Sections */

			/* Featured Services */

				.featured.finch-badge::after {
					width: 150px;
					height: 150px;
					top: calc(100% - 90px);
					left: -75px;
				}

				.featured.big-striped-circle::before {
					width: 520px;
					height: 520px;
					top: calc(50% - 260px);
					right: calc(0% - 200px);
				}

			/* Testimonials */

				.testimonials-wrapper.big-striped-circle::before {
					top: -220px;
					right: -180px;
				}
	
	
	/* BASIC PAGE */

		/* Hero Banner */

			/* Image */

				.home .hero-wrapper .image-wrapper {
					height: 450px !important;
				}
	
				.hero-wrapper:not(.no-overlay-homepage) .image-wrapper {
					height: 280px;
				}
	
	
	/* SERVICES */
	
		/* Featured */

			/* Content */

				.services.featured .content-wrapper {
					padding: 40px;
				}

		/* Tiles */

			/* General */

				.services.tiles .pp-content-grid-inner {
					padding: 30px;
				}

		/* List */

			/* General */

				.services.list {
					margin-top: 30px;
				}

				.services.list .pp-content-grid-inner {
					padding: 30px;
				}

			/* Title */

				.services.list .pp-content-post-grid .pp-content-post .pp-post-title {
					font-size: 1rem;
				}

	
	/* TESTIMONIALS */

		/* Quote Mark Icons */

			.testimonials-wrapper .fl-col-content::before,
			.testimonials-wrapper .fl-col-content::after {
				font-size: 7rem;
			}

			.testimonials-wrapper .fl-col-content::before {
				top: -100px;
			}

			.testimonials-wrapper .fl-col-content::after {
				bottom: -100px;
			}
	
}


@media (min-width: 993px) {

	/* MENU */
	
	.fl-menu .sub-menu .fl-menu-toggle:before {
		display: none !important;
	}

	.main-header #menu-main-menu .sub-menu .menu-item .fl-has-submenu-container a::after {
		content: "";
		position: absolute;
		top: 16px;
		right: 12px;
		height: 18px;
		width: 18px;
		background: var(--secondaryColour);
		-webkit-mask-image: var(--mask);
		mask-image: var(--mask);
		mask-repeat: no-repeat;
		mask-size: 100%;
		--mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%2300000'%3E%3Cpath d='M472-480 288-664l88-88 272 272-272 272-88-88 184-184Z'/%3E%3C/svg%3E");
	}

	.main-header #menu-main-menu .sub-menu .menu-item .fl-has-submenu-container a:hover::after {
		background: var(--white);
	}

}


@media (max-width: 992px) {

	/* GENERAL */

		html {
			font-size: 16px;
		}

		h1 {
			font-size: 2.5rem;
		}
	
		.bb-row {
			margin-top: 20px;
			margin-bottom: 20px;
		}
		
		.limited-width,
		.limited-width .fl-heading span,
		.limited-width .fl-rich-text p,
		.limited-width-2,
		.limited-width-2 .fl-heading span,
		.limited-width-2 .fl-rich-text p {
			max-width: 100%;
		}
	
	
	/* BACKGROUND CIRCLES & BADGES */
	
		/* Sections */

			/* Featured Services */

				.featured.finch-badge::after,
				.content-media-section::after {
					display: none;
				}

				.featured.big-striped-circle::before {
					width: 500px;
					height: 500px;
					top: calc(50% - 250px);
					right: calc(50% - 250px);
				}

			/* Content & Media */

				.content-media-section::after {
					bottom: 0px;
					right: -110px;
				}
	
				.content-media-section.reverse::after {
					bottom: 0px;
					left: -110px;
				}
	
			/* Testimonials */

				.testimonials-wrapper.big-striped-circle::before {
					top: -260px;
					right: -180px;

				}
	
	
	/* BASIC PAGE */

		/* Hero Banner */

			/* Image */
	
				.home .hero-wrapper .image-wrapper,
				.hero-wrapper:not(.no-overlay-homepage) .image-wrapper {
					height: 250px !important;
				}
	
	
	/* HEADER */
	
		/* Main Header */

			/* General */

				.fl-builder-content-1973 {
					top: 40px;
				}

				.main-header {
					height: 85px !important;
				}

			/* Menu */

				/* General */

					.main-header .fl-menu-mobile-flyout {
						padding: 0 10px !important;
						-webkit-box-shadow: 0px 0px 35px rgba(var(--shadow-rgb), 0.4) !important;
						box-shadow: 0px 0px 35px rgba(var(--shadow-rgb), 0.4) !important;
					}

				/* Burger Toggle */

					.main-header .fl-menu .fl-menu-mobile-toggle.hamburger .svg-container,
					.main-header .fl-menu .fl-menu-mobile-toggle.hamburger-label .svg-container {
						display: none !important;
					}

					.main-header .fl-menu-mobile-toggle-label {
						display: flex !important;
						align-items: center;
						font-weight: 600;
						margin-left: 0 !important;
					}

					.main-header .fl-menu-mobile-toggle-label::before {
						content: "\e5d2";
						color: var(--primaryColour);
						font-family: 'Material Symbols Outlined';
						font-size: 1.222rem;
						margin-right: 6px;
					}

				/* Close Icon */

					.main-header .fl-menu-mobile-close,
					.main-header .fl-menu-mobile-close:hover {
						font-size: 1rem;
						padding: 0;
						margin-top: 20px;
						margin-bottom: 10px;
					}

					.main-header .fl-menu-mobile-close .fa-times {
						display: flex;
						align-items: center;
						justify-content: center;
						width: 30px;
						height: 30px;
						background-color: rgba(var(--secondaryColour-rgb), 0.05);
						border-radius: var(--rad-30);
					}

					.main-header .fl-menu-mobile-close .fa-times::before {
						content: "\e5cd";
						font-family: 'Material Symbols Outlined';
						font-weight: 600;
						font-style: normal;
						color: var(--secondaryColourDark);
					}

				/* Icons */
	
					#menu-main-menu li a:not(.client-login-btn a)::before {
						font-family: 'Material Symbols Outlined';
						font-size: 1.1rem;
						font-weight: 300;
						color: var(--primaryColour);
						margin-right: 6px;
					}

					#menu-main-menu .sub-menu a {
						margin-left: 12px;
					}

					#menu-main-menu .sub-menu a::before {
						display: none;
					}

					#menu-main-menu #menu-item-206 a::before {
						content: "\e88a";
					}

					#menu-main-menu #menu-item-4299 a::before {
						content: "\eb3f";
					}

					#menu-main-menu #menu-item-4300 a::before {
						content: "\e7fd";
					}

					#menu-main-menu #menu-item-3554 a::before {
						content: "";
						width: 15px;
						height: 15px;
						background-image: url(/wp-content/uploads/icon-fallback.png);
						background-size: contain;
						background-repeat: no-repeat;
						margin-right: 9px;
					}

					#menu-main-menu #menu-item-2187 a::before {
						content: "\e335";
					}

					#menu-main-menu #menu-item-29250 a::before {
						content: "\f0e2";
					}
	
					#menu-main-menu #menu-item-29253 a::before {
						content: "\e7ef";
					}
	
				/* Main Menu */

						.main-header .fl-menu-mobile-flyout .menu > .menu-item:not(:nth-last-child(1), :nth-last-child(2)) {
							border-right: none;
						}

						.main-header #menu-main-menu .menu-item a:not(.client-login-btn a) {
							display: flex;
							align-items: center;
							color: var(--black);
							border-radius: 0;
							font-size: 1rem;
							line-height: 1.2rem;
							padding: 10px 30px 10px 10px !important;
						}

/* 						.fl-node-vpt4bmghe2wn .fl-menu .fl-menu-toggle:before {
							right: 10px !important;
						} */

					/* Submenu */

						.main-header #menu-main-menu .sub-menu {
							padding: 0px !important;
							padding-left: 10px !important;
						}

						.main-header #menu-main-menu .sub-menu .menu-item a {
							font-weight: 400;
							margin-bottom: 0px;
						}

						.main-header #menu-main-menu .sub-menu .menu-item a:hover {
							color: var(--black);
							background-color: var(--white);
						}

/* 						.sub-menu .fl-menu-toggle:before {
							margin: -2px 0 0 0 !important;
						} */

					/* Client Login Button */

						.main-header .client-login-btn {
							border-top: 1px solid rgba(var(--secondaryColour-rgb), 0.1) !important;
							padding-top: 20px;
							margin-top: 10px;
						}

						.main-header .client-login-btn a,
						.main-header .client-login-btn a:active {
							width: 100%;
						}

						.main-header .client-login-btn span {
							display: block;
						}
	
	
	/* SERVICES */
	
		/* Featured */
	
			/* General */
	
				.services.featured .pp-content-post:not(.pp-content-post:nth-last-child(2)) {
					margin-bottom: 20px !important;
				}

			/* Content */

				.services.featured .content-wrapper {
					padding: 20px;
				}

		/* Tiles */

			/* General */

				.services.tiles {
					margin-top: 20px;
				}

				.services.tiles .pp-content-post:not(.pp-content-post:nth-last-child(2)) {
					border-bottom: 1px solid rgba(var(--secondaryColour-rgb), 0.1);
				}
	
				.services.tiles .pp-content-post-grid {
					box-shadow: 0px 0px 15px rgba(var(--shadow-rgb), 0.4);
				}

			/* Image */

				.services.tiles .pp-content-post .material-symbols-outlined img {
					width: 35px;
					height: 35px;
				}
	
		/* List */

			/* General */
	
				.services.list .pp-content-grid-inner {
					padding: 30px;
				}

				.services.list .pp-content-post {
					border-right: 1px solid rgba(var(--secondaryColour-rgb), 0.2) !important;
					border-top: 1px solid rgba(var(--secondaryColour-rgb), 0.2) !important;
				}

				.services.list .pp-content-post:nth-child(-n + 2) {
					border-top: none !important;
				}
	
				.services.list .pp-content-post:nth-child(2n) {
					border-right: none !important;
				}
	
	
	/* CARDS */

		/* General */

			.cards .content-wrapper {
				padding: 15px;
			}
	
	
	/* CONTENT & MEDIA SECTION */

		/* General */

			.content-media-section .fl-row-content-wrap {
				padding-top: 280px !important;
				padding: 40px 0;
			}

			.content-media-section .fl-row-content-wrap .fl-bg-slideshow .fl-slideshow {
				border-radius: var(--rad-20);
				overflow: hidden;
			}
	
		/* Image */

			.content-media-section .fl-bg-slideshow {
				width: 100% !important;
				max-height: 60%;
			}

		/* Content */

			.content-media-section .content {
				max-width: 100% !important;
				padding: 5px 20px;
				margin: 0 40px;
			}
		
	
	/* TESTIMONIALS */
	
		/* General */

			.testimonials-wrapper {
				padding-top: 200px;
				padding-bottom: 50px;
				margin-top: -250px;
			}

		/* Quote Mark Icons */

			.testimonials-wrapper .fl-col-content::before,
			.testimonials-wrapper .fl-col-content::after {
				font-size: 4rem;
			}

			.testimonials-wrapper .fl-col-content::before {
				top: -30px;
			}

			.testimonials-wrapper .fl-col-content::after {
				bottom: -70px;
			}
	
	
	/* BASIC PAGE */
	
		/* Content */

			.hero-wrapper:not(.no-overlay-homepage) .fl-heading-text::after {
				height: 8px;
				margin-top: 0px;
			}
	
			/* Breadcrumbs */

				.breadcrumbs-wrapper {
					display: none;
				}
	
	
	/* CASE STUDIES */

		/* General */

			.cards.case-studies .content-wrapper .categories {
				display: block;
			}

		/* Hero Banner */

			.hero-wrapper.case-studies .fl-heading-text {
				max-width: 100%;
			}

		/* Client Details */

			.content-wrapper.case-studies_details .image-wrapper {
				width: 80px;
				min-width: 80px;
				height: 80px;
				padding: 10px;
				margin-right: 20px;
			}
	
	
	/* ARTICLES */

		/* Hero Banner */

			/* Content */

				.hero-wrapper.news .fl-heading-text {
					max-width: 100%;
				}
	
	
	/* TEAM PAGE */

		/* General */

			.content-wrapper.team {
				border-bottom: 1px solid rgba(var(--secondaryColour-rgb), 0.1);
				padding-bottom: 20px;
			}
	
/* 			.page-id-103 .content-wrapper.team .image-wrapper img:nth-child(2) {
				opacity: 100%;
			} */
	
			.cards .pp-content-post:hover .content-wrapper.team .image-wrapper img:nth-child(2) {
				opacity: 0%;
			}
	
}


@media (min-width: 768px) {
	
	/* TEAM PAGE */

		/* Image (Secondary) */

			.cards .pp-content-post:hover .content-wrapper.team .image-wrapper img:nth-child(2) {
				opacity: 100%;
			}
	
}


@media (max-width: 768px) {
	
	/* GENERAL */

		h1 {
			font-size: 2rem;
		}	

	/* BACKGROUND CIRCLES & BADGES */

		/* Sections */

			/* Disabled */
	
				.featured.big-striped-circle::before,
				.content-media-section::after,
				.contact-wrapper .big-striped-circle::before,
				.contact-wrapper .small-striped-circle::after {
					display: none;
				}

			/* Testimonials */

				.testimonials-wrapper.big-striped-circle::before {
					top: calc(50% - 290px);
					right: calc(0% - 290px);
					opacity: 20%;
				}
	
	
	/* BASIC PAGE */

		/* Hero Banner */

			/* Image */

				.home .hero-wrapper .image-wrapper,
				.hero-wrapper:not(.no-overlay-homepage) .image-wrapper {
					height: 200px !important;
				}
	
	
	/* HEADER */

		/* Top Header */

			/* General */
	
				.top-header {
					height: 30px;
				}

				.top-header .fl-col-group .fl-node-7x293iwjvdcy {
					display: none;
				}

			/* Contact Details */

				.top-header .contact-details {
					justify-content: center !important;
					font-size: 0.778rem;
				}

				.top-header .fl-html .contact-details div:nth-child(1) {
					margin-right: 20px;
				}

				.top-header .contact-details div span:not(.material-symbols-outlined) {
					display: none;
				}

				.top-header .fl-html .contact-details a {
					margin-left: 0;
				}	

		/* Main Header */

			/* General */

				.fl-builder-content-1973 {
					top: 30px;
				}
	
	
	/* SERVICES */
	
		/* Tiles */

			/* General */

				.services.tiles {
					margin-top: 20px;
				}

				.services.tiles .pp-content-grid-inner {
					padding: 20px;
				}

		/* List */

			/* General */

				.services.list .pp-content-grid-inner {
					padding: 25px 15px;
				}

				.services.list .pp-content-post {
					border-right: none !important;
					border-top: none !important;
				}

				.services.list .pp-content-post:not(.pp-content-post:nth-last-child(2)) {
					border-bottom: 1px solid rgba(var(--secondaryColour-rgb), 0.2);
				}

	
	/* CONTENT & MEDIA SECTION */

		/* General */

			.content-media-section .fl-row-content-wrap {
				padding-top: 250px !important;
				padding: 20px 0;
			}

		/* Content */

			.content-media-section .content {
				margin: 0 20px;
			}
	
	
	/* TESTIMONIALS */

		/* General */

			.testimonials-wrapper {
				padding-top: 0px;
				padding-bottom: 0px;
				margin-top: 0px;
			}

		/* Quote Mark Icons */

			.testimonials-wrapper .fl-col-content::before,
			.testimonials-wrapper .fl-col-content::after {
				display: none;
			}	

	
		/* ARTICLES */

			/* Image */

				.articles .fl-photo-img {
					height: 200px !important;
				}
	
	
	/* FOOTER */

		/* General */

			#global-footer .fl-col {
				margin-bottom: 30px;
			}

		/* Main Footer */

			#global-footer {
				padding: 20px 0;
			}

			#global-footer .menu-item {
				text-align: left;
			}

		/* Copyright Footer */

			.fl-page-footer .fl-page-footer-row {
				display: flex;
				flex-direction: column-reverse;
			}


}