<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;600;700;800&amp;display=swap');

/* Defaults */
body{
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
}
*:focus{outline: none;}
a{text-decoration: none;color: inherit;}
ul,ol{list-style: none; margin: 0; padding: 0;}
.tal{text-align: left;}
.tar{text-align: right;}
.tac{text-align: center;}
.mobileNav {display: none;}

/* Colors
Primary - 15568a
Secondary - e5c72c
*/

/* Topbar */

.topBar {
    padding: 20px 0px;
    background-color: #15568a;
}
nav ul li {
    display: inline-block;
    padding-left: 30px;
    position: relative;
    z-index: 1;
}
nav ul li a {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    transition: opacity 0.4s ease;
}
nav ul li &gt; a:after {
	content: '\f078';
	color: #e5c72c;
	font-size: 14px;
	margin-left: 6px;
	text-align: center;
	font-family: 'Font Awesome 5 Pro';
	font-weight: 600;
}
nav ul li &gt; a:only-child:after { content: ''; } 
.subMenu {
	position: absolute;
	left: 0;
	text-align: left;
	display: none;
	padding: 5px 0px;
}
.subMenu::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #15568a;
	z-index: -1;
}
.subMenu li {
	display: block;
	margin: 0;
	text-align: left;
	white-space: nowrap;
	clear: both;
	line-height: 20px;
	transition: ease 0.4s;
    padding-right: 25px;
}
.subMenu li:hover:before {
    opacity: 0;
}
.subMenu li a {
    line-height: 30px;
}
.subMenu li:hover:before {
    opacity: 0;
}
nav ul li:hover .subMenu, nav ul li .subMenu .active {
    display: block;
}
.homeDeets {
    width: 100%;
    background-color: #eeedf3;
    padding: 10px 0px;
}
.homeDeets a {
    font-weight: 600;
    padding-left: 30px;
}
.homeDeets i {
    padding-right: 15px;
    font-size: 14px;
    color: #e5c72c;
}
.homeDeets p {
    margin: 0;
    padding: 0;
    font-weight: 600;
}

/* Slider */

.homeSlider {
    position: relative;
    z-index: 0;
}
.homeSlider:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 150px #15568a;
    z-index: 2;
}
.homeSlider div img {
    width: 100%;
}

/* Other Page Header */

.otherPages {
    padding: 100px 0px;
    position: relative;
    z-index: 0;
    background-image: url(../images/counters.jpg);
    background-size: cover;
    background-position: center center;
}
.otherPages:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: 0.7;
    z-index: -1;
}
.otherPages h2 {
    color: #15568a;
    font-size: 40px;
    margin: 0;
    padding: 0;
    line-height: 40px;
}

/* About Us */

.aboutUs {
    padding: 100px 0px;
}
.aboutUs h1 {
    color: #15568a;
    font-size: 36px;
    margin: 0;
    padding: 0;
    line-height: 40px;
    margin-bottom: 30px;
}
.aboutUs h1 span {
    color: #e5c72c;
}
.aboutUs p {
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}
.aboutUs p:last-of-type {
    margin-bottom: 50px;
}
.accreds {
    margin: 40px 0px;
}
.boxesBG {
    position: relative;
    z-index: 1;
}
.accreds img {
    border-radius: 10px;
    filter: drop-shadow(2px 2px 10px rgba(0,0,0,0.3));
}
/* .boxesBG:before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 3000px;
    height: 30%;
    background-color: #15568a;
    z-index: -1;
} */
.boxesContainer {
    margin-top: 50px;
    padding: 0px 50px;
}
.boxesContainer a {
    position: relative;
    z-index: 1;
    font-size: 18px;
    display: block;
    color: #ffffff;
    background-color: #15568a;
    font-weight: 700;
    padding: 10px;
    margin-top: 20px;
    overflow: hidden;
}
.boxesContainer a:before {
    content: '';
    position: absolute;
    left: -300px;
    top: -50px;
    background-color: #ffffff;
    opacity: 0.2;
    width: 250px;
    height: 155px;
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.boxesContainer a:hover:before {
    left: 120%;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Main */

.mainContent {
    padding: 125px 0px;
    position: relative;
    z-index: 1;
    background-color: #eeedf3;
}
.mainContent:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: url(../images/main.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}
.mainInner {
    padding-left: 50px;
}
.mainContent h2 {
    color: #15568a;
    font-size: 36px;
    margin: 0;
    padding: 0;
    line-height: 40px;
    margin-bottom: 30px;
}
.mainContent h3 {
    color: #e5c72c;
}
.mainContent h4 {
    color: #15568a;
    letter-spacing: 2px;
    font-size: 18px;
}
.mainContent button {
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #15568a;
    color: #ffffff;
    font-weight: 600;
}

/* Editable Area - Other */

.otherContent {
    padding: 100px 0px;
}
.otherContent h3 {
    color: #15568a;
    font-size: 28px;
}
.otherContent h4 {
    color: #e5c72c;
    font-size: 24px;
}
.padLeft {
    padding-left: 50px;
}
.editableArea ul {
    margin-top: 10px;
    display: inline-block;
}
.editableArea ul li {
	display: inline-block;
	background-color: #15568a;
    color: #ffffff;
	padding: 2.5px 15px;
	margin-right: 10px;
    line-height: 30px;
	margin-bottom: 10px;
    font-weight: 600;
}

/* Service Cards */

.serviceCard {
    background-color: #eeedf3;
    padding: 40px;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    margin: 30px 0px;
}
.serviceCard i {
    color: #15568a;
    font-size: 24px;
}
.serviceCard h4 {
    margin: 0;
    padding: 0;
    margin: 15px 0px;
}
.serviceCard p {
    margin: 0;
    padding: 0;
}
.imageCard {
    background-size: cover;
    background-position: center center;
    height: 200px;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}
.imageOne {
    background-image: url(../images/servicecard1.jpg);
}
.imageTwo {
    background-image: url(../images/servicecard2.jpg);
}
.imageThree {
    background-image: url(../images/servicecard3.jpg);
}

/* Gallery Page */

.gallery{
	position: relative;
	z-index: 1;
}
.gallery .columns a{
	width: 100%;
	height: 100%;
	position: relative;
}
.gallery .columns img{
	margin: 0;
	width: 100%!important;
	height: 100%;
	opacity: 0;
}
.gallery .columns{
	overflow: hidden;
	position: relative;
	background-size: cover;
	width: calc(25% - 24px);
	margin: 12px;
	background-position: center center;
	overflow: hidden;
	float: left;
	z-index: 0;
	-webkit-transition: all .15s ease-out;
	-moz-transition: all .15s ease-out;
	transition: all .15s ease-out;
}
.gallery .columns:hover {
	-webkit-transform: scale(1.015);
	-ms-transform: scale(1.015);
	-o-transform: scale(1.015);
	transform: scale(1.015);
}
.gallery .columns:nth-child(14n + 7),.gallery .columns:nth-child(14n + 8){
	width: calc(50% - 24px);
}
.fancybox-image {
}

/* Testimonials Page */

blockquote {
    margin: 0;
    background-color: #eeedf3;
    padding: 30px;
    margin-bottom: 30px;
}
blockquote:last-of-type {
    margin-bottom: 0px;
}
blockquote h5 {
    margin: 0;
    padding: 0;
    color: #15568a;
    font-size: 20px;
}
blockquote h6 {
    margin: 0;
    padding: 0;
    color: #e5c72c;
    font-size: 16px;
}
blockquote i {
    color: #15568a;
    font-size: 30px;
}

/* Find Us Page */

.addressCard {
    background-color: #eeedf3;
    padding: 40px;
}
.addressCard h3 {
    margin: 0;
    padding: 0;
}
.addressCard h4 {
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}
address {
    font-style: normal;
}
address p {
    font-weight: 600;
    margin: 0;
    padding: 0;
}
.map {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
	overflow: hidden;
}
.map iframe {
    position: absolute;
    width: 100%;
    height: calc(100% + 300px);
    z-index: -1;
	left: 0;
	opacity: 0.9;
    top: -150px;
}

/* Benefits */

.benefits {
    padding: 50px 0px 100px 0px;
    position: relative;
    z-index: 1;
    background-color: #15568a;
}
.benefits:before {
    background-image: url(../images/benefits.png);
    background-size: cover;
    background-position: center center;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.025;
    z-index: -1;
}
.benefits h2 {
    font-size: 30px;
    color: #ffffff;
    text-shadow: 1px 1px 3px #111;
    margin-bottom: 50px;
}
.benefits h3 {
    color: #ffffff;
    font-size: 20px;
    margin: 0;
    padding: 0;
}
.benefitBox {
    background-color: rgba(255,255,255,0.1);
    padding: 20px 0px;
    position: relative;
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1); 
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1); 
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1);
    transition: all 200ms ease-in;
    transform: scale(1);  
}
.benefitBox:hover {
    box-shadow: 0px 0px 5px #333333;
    z-index: 2;
    -webkit-transition: all 50ms ease-in;
    -webkit-transform: scale(1.05);
    -ms-transition: all 50ms ease-in;
    -ms-transform: scale(1.05);   
    -moz-transition: all 50ms ease-in;
    -moz-transform: scale(1.05);
    transition: all 50ms ease-in;
    transform: scale(1.05);
}
.benefits i {
    font-size: 20px;
    color: #e5c72c;
    margin-bottom: 10px;
}

/* Home Gallery */

.homeGallery {
    padding: 100px 0px 150px 0px;
}
.homeGallery h2 {
    color: #e5c72c;
    font-size: 36px;
    margin: 0;
    padding: 0;
    line-height: 40px;
    margin-bottom: 60px;
}
.mace{
	height: 850px;
}
.mace .columns{
	height: 100%;
}
.mace .item{
	margin-bottom: 30px;
}
.mace img{
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.mace .columns:nth-of-type(1) &gt; .item:nth-of-type(1){height: 65%}
.mace .columns:nth-of-type(1) &gt; .item:nth-of-type(2){height: 35%}
.mace .columns:nth-of-type(2) &gt; .item:nth-of-type(1){height: 50%}
.mace .columns:nth-of-type(2) &gt; .item:nth-of-type(2){height: 50%}
.mace .columns:nth-of-type(3) &gt; .item:nth-of-type(1){height: 35%}
.mace .columns:nth-of-type(3) &gt; .item:nth-of-type(2){height: 65%}

/* Counters */

.counterSection {
    position: relative;
    z-index: 1;
    background-image: url(../images/counters.jpg);
    background-size: cover;
    background-position: center center;
    padding: 100px 0px;
}
.counterSection:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #15568a;
    opacity: 0.8;
    z-index: -1;
}
.counter {
	margin: 0;
	padding: 0;
	color: #e5c72c;
	font-size: 40px;
	font-weight: 700;
    text-shadow: 1px 1px 2px #111111;
}
.counter:after {
	content: '+';
	padding-left: 5px;
}
.counterSection h2 {
    font-size: 24px;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px #111111;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

/* Home Enquiry */

.homeEnquiry {
    padding: 125px 0px;
}
.enquiryBox {
    background-color: #eeedf3;
    padding: 50px;
}
.enquiryBox h2 {
    margin: 0;
    padding: 0;
    color: #e5c72c;
    font-weight: 700;
    font-size: 30px;
}
.enquiryBox p {
    margin-bottom: 30px;
}
.form-box .columns {
	padding: 0!important;
}
.earl-form .columns input {
	width: 100%;
}
.earl-form input[type='text'], .earl-form select{
	letter-spacing: 1px;
	border-radius: 0px;
	height: 30px;
	font-size: 13px;
	padding-left: 12.5px;
	box-shadow: 0px;
	outline: 0;
	color: #333333;
	font-weight: 500;
	border: none;
	margin-bottom: 20px;
}
.earl-form .columns textarea {
	letter-spacing: 1px;
	color: #333333;
	font-size: 13px;
	width: 100%;
	resize: none;
	padding-top: 15px;
	padding-left: 12.5px;
	border: none;
	height: 200px;
}
#formName, #formContact {
	line-height: 20px;
}
.earl-form button {
    width: 100%;
	margin-top: 10px;
	background-color: transparent;
	padding: 12.5px 10px;
	font-size: 16px;
    font-weight: 600;
	cursor: pointer;
	color: #ffffff;
	background-color: #15568a;
}

/* Footer */

footer {
    background-color: #15568a;
    padding: 75px 0px;
    position: relative;
    z-index: 1;
}
.btt {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    background-color: #15568a;
    border-radius: 50%;
    border: 2px solid #ffffff;
}
.btt i {
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #e5c72c;
    text-align: center!important;
}
footer h2 {
    color: #ffffff;
    margin: 0;
    padding: 0;
}
footer p {
    display: block;
    color: #ffffff;
    margin: 0;
    padding: 0;
    font-weight: 600;
}
footer ul li {
    display: block;
}
footer ul li a {
    color: #ffffff;
    margin: 0;
    padding: 0;
    font-weight: 600;
}
.socialFooter {
    padding-right: 10px;
    color: #e5c72c;
}
footer hr {
    border: none;
    height: 3px;
    width: 25px;
    background-color: #e5c72c;
    margin: 20px 0;
}
.copyright {
    background-color: #15568a;
    padding: 5px 0px;
    position: relative;
    z-index: 1;
}
.copyright:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.3;
    z-index: -1;
}
.copyright a {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

/* Media Queries */

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

.squeeze {
    padding-left: 20px;
    padding-right: 20px;
}

}

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

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

.mobileNav {
    display: inline-block;
    background-color: #15568a;
    padding: 5px 15px;
    color: #ffffff;
}
.mobileNav span {
    font-weight: 600;
}
.mobileNav i {
    padding-left: 10px;
}
nav {
    position: relative;
    z-index: 1000;
}
nav ul {
    margin-top: 30px;
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #15568a;
    padding: 10px 10px 10px 30px;
}
nav ul li {
    display: block;
    padding-left: 0;
}
nav ul li a {
    opacity: 1;
    color: #ffffff;
    line-height: 30px;
}
.subMenu {
    position: relative;
    right: 0;
    padding: 0;
	text-align: right;
}
.subMenu {
    margin-top: 0px;
}
.subMenu li {
    display: block;
    text-align: right;
    padding: 0;
}

}

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

.contactDeets {
    text-align: center;
}
.homeDeets a {
    padding-left: 0px;
}
.quoteTitle {
    display: none;
}

}

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

.accreds .columns {
    margin-bottom: 20px;
}
.mainContent:before {
    display: none;
}
.mainInner {
    padding-left: 0;
}
.boxesContainer {
    padding: 0px;
}
.counterSection .columns {
    margin-bottom: 30px;
}
footer .columns {
    margin-bottom: 30px;
}
.gallery .columns {width: calc(50% - 24px);}
.benefitBox {
    margin-bottom: 20px;
}
.mace{
	height: auto;
}
.homeGallery {
    padding-bottom: 125px;
}
.logo img {
    width: 100%;
}
    
}

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

.emailDeet {
    display: none;
}

}</pre></body></html>