<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
	box-sizing: border-box;
}

html, body
{
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 15px;
	color: #000;	
	margin:0px; 
	padding:0px;
	height: 100%;
	width: 100%;
	line-height: 1.5rem;
}

div, table, tr, td
{
	font-size: 1em;
	color: #000;	
	margin:0px; 
	padding:0px;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

::-webkit-scrollbar {
    width: 10px;
	height: 10px;
}
 
::-webkit-scrollbar-thumb {
    background: #666;
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0);
    border-radius: 5px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0);
    background: #ccc;
}

a
{
	font-style:normal;
	color:#000;
	text-decoration:none;
	font-size: 1em;	
	
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

input, textarea, select
{
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 1em;
    color: #000;
    background: #fff;
    border: 0px;
    margin: 0px;
    visibility: visible;
    float: left;
    padding: 1rem 0.5rem;
    line-height: 1.5em;
    width: 100%;
    margin-bottom: 0.5rem;
	clear: both;
	
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
input:focus, textarea:focus , select:focus
{ 
    outline:none;
	color: #000;
    background: #f6f6f6;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #aaa;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #aaa;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #aaa;
}
:-moz-placeholder { /* Firefox 18- */
  color: #aaa;
}

.green-text
{
    color: #20B720 !important;
}
.black-text
{
    color: #000 !important;
}
.white-text
{
    color: #fff !important;
}
.grey-text
{
    color: #e5e5e5 !important;
}
.center
{
	text-align: center;
}
.large
{
	font-size: 3rem;
}
.no-margin
{
	margin: 0px;
}

.uppercase
{
	text-transform: uppercase;
	letter-spacing: 1px;
}

input[type='checkbox']
{
	width: 20px;
	margin-top: 5px;
}

select
{
    width: 100%(100% - 128px);
    padding-bottom: 9px;
    padding-top: 9px;
}

.submitButton
{
	width: 100%;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    float: left;
    line-height: 3em;
    text-align: center;
    margin-top: 50px;
	line-height: 60px;
	box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
	cursor: pointer;
	opacity: 0.8;
	
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.submitButton:hover{
	opacity: 1;
}

label
{
    float: left;
    width: 100%;
	clear: both;
    color: #fff;
    letter-spacing: 0.5px;
    font-weight: 600;
    padding-left: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
}

.option
{
	float: left;
	clear: both;
	width: 100%;
}

ul {
    list-style-position: outside;
    margin: auto auto;
    list-style-type: none;
    padding: 0px;
    margin-bottom: 100px;
    display: inline-block;
    vertical-align: middle;
    max-width: 500px;
}
ul li 
{
    margin: 0px;
    padding: 0px;
    margin-left: -1em;
    text-align: center;
	line-height: 1.5em;
    font-size: 1em;
    color: #222;
}

img
{
	border: 0px;
	max-width: 100%;
}

h1
{
	color: #000;
	font-size: 1.1em;
	margin: 0px;
	font-weight: 300;
	clear: both;	
	padding-top: 20px;
}

h2
{
    color: #fff;
    font-size: 2em;
    margin: 0px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    padding: 50px 0px 10px 0px;
    font-weight: 700;
    letter-spacing: 2px;
    float: left;
    width: 100%;
    position: relative;
	line-height: normal;
}

h3
{
	font-size: 1.2em;
	font-weight: 500;
	color: #000;
}

i
{
	font-family: "Ionicons";
}

.formDesc
{
	float: left;
	width: 180px;
	padding: 10px;
	clear: left;
	text-transform: uppercase;
	text-align: left;
}

nav
{
	position:fixed;
	top: 1rem;
	left: 0px;
	width: 100%;
	z-index: 1000;
    background: #525252;
    box-shadow: 0 10px 40px #000;
	
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
nav .nav-container{
	max-width: 1280px;
	margin: auto;
}
nav a
{
    float: left;
    line-height: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: 0.5rem;
    margin-right: 10px;
    font-size: 0.9em;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
	
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
nav a img
{
    height: 100px;
    margin-top: -20px;
	
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
nav a:first-child
{
    margin-right: 2rem;
    height: 30px;
    display: block;
}
nav a:last-child
{
    color: #fff;
    font-size: 1.5em;
    text-align: Center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0px;
    line-height: 30px;
    padding: 0.5rem;
    width: 500px;
    position: fixed;
    top: 1rem;
    right: 0px;
    box-sizing: border-box;
}
nav a:hover{
	background: #ca2c30;
}
nav a:first-child:hover{
	background: transparent;
}

.scrollMenu a
{
	text-shadow: 0px 0px 0px;
}
.scrollMenu a:last-child
{
	background: #ca2c30;
}
.scrollMenu a img
{
    height: 40px;
    margin-top: -5px;
}

section
{
    float: left;
    width: 100%;
    position: relative;
    background: #000;
    padding: 3rem 1rem;
	box-sizing: border-box;
}
section .container{
	width: 100%;
	max-width: 1280px;
	margin: auto;
}


.hidden{
	display: none;
}

footer
{
	float: left;
	background: #000;
	color: #fff;
	width: 100%;
    font-size: 0.9em;
	border-top: 1px solid #111;
}
footer .halfSection
{
	background: #000;
    color: #fff;
    display: block;
}
footer .halfSection span
{
	display: initial;
	color: #fff;
}
footer .halfSection a
{
	color: #fff;
    width: 100%;
}
footer .miniFooter{
	background: #111;
}
footer .container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
}

.border-top
{
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.slider
{
	height: 100vh;
	max-height: 600px;
}
.slide
{
	width: 100%;
	height: 100%;
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
}
.slide h1 {
    clear: both;
    padding: 0px;
    float: left;
    margin: 0px;
    margin-top: 15%;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 600;
    font-size: 2.5rem;
    text-align: left;
    width: 100%;
    text-transform: uppercase;
    text-shadow: 0px 2px rgba(0, 0, 0, 0.3);
	line-height: normal;
	max-width: 600px;
	width: 100%;
}
.slide h1 b
{
	font-weight: 600;
}
.slide h2 {
    clear: both;
    padding: 0px;
    float: left;
    margin: 0px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 300;
    font-size: 1.2rem;
    margin-top: 0px;
    text-align: left;
    width: auto;
    background: transparent;
    text-transform: none;
    width: 100%;
    text-shadow: 0px 1px rgba(0, 0, 0, 0.3);
	line-height: normal;
	max-width: 500px;
	width: 100%;
}
.slide h2 i
{
    color: green;
    border-radius: 50%;
    font-size: 20px;
    width: 18px;
    height: 18px;
    padding: 2px;
    line-height: 0px;
}
.slide span
{
    clear: both;
    padding: 0px;
    float: left;
    margin: 0px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 300;
    font-size: 16px;
    padding-left: 20px;
    margin-top: 0px;
    text-align: left;
    width: auto;
    background: transparent;
    max-width: 500px;
    text-transform: none;
    width: 100%;
    margin-top: 26px;
}
.slide span i
{
    color: green;
    border-radius: 50%;
    font-size: 20px;
    width: 18px;
    height: 18px;
    padding: 2px;
    line-height: 0px;
}
.slide h1 i
{
    color: rgba(255, 255, 255, 0.5);
    padding-right: 10px;
    font-size: 2.5em;
}
.slide h2:after
{
	width: 0px;
}
.slide h2 a
{
    color: white;
    text-decoration: underline;
}
.slide .arrow
{
    float: left;
    margin-top: 15%;
    padding: 10px;
    position: relative;
}

.contactForm {
    z-index: 999;
    width: 100vw;
    position: absolute;
    top: 0px;
    right: 0px;
    max-width: 500px;
    background: #ca2c30;
    height: 100vh;
    max-height: 600px;
    padding: 1rem;
	box-sizing: border-box;
}
.contactForm h2
{
	color: #fff;
    font-size: 1.5em;
    text-align: Center;
    padding: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0px;
    width: 100%;
	line-height: 30px;
}

.contactForm .half-width{
	float: left;
	width: 50%;
	padding-right: 0.5rem;
	padding-bottom: 0.5rem;
}
.contactForm .full-width{
	float: left;
	width: 100%;
	padding-right: 0.5rem;
	padding-bottom: 0.5rem;
}

.button
{
    float: left;
    background: #fff;
    color: #000;
    padding: 10px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
    margin: auto;
	float: none;
    text-align: center;
	cursor: pointer;
}

.greenButton
{
	background: #20B720;
}

.green-text
{
	color: #20B720;
}

.info
{
	float: left;
    font-size: 0.8em;
    padding: 1rem 0;
	margin: 2rem 0px;
    text-align: center;
	width: 100%;
	color: #fff;
	position: relative;
	line-height: normal;
}

.redBack
{
	background: #cf142e;
	color: #fff;
	margin-bottom: 10px;
}
.redBack:after
{
	display: none;
}

.halfSection
{
    padding: 100px;
    width: 50%;
    float: left;
    text-align: center;
    color: #222;
    background: #fff;
    height: auto;
    display: table;
	box-sizing: border-box;
}
.halfSection h3
{
	font-size: 1.5em;
	color: #222;
}
.halfSection h2 {
    font-size: 2.5em;
    display: table-cell;
    vertical-align: middle;
    padding: 0px;
    width: 100%;
    float: none;
    text-shadow: 0px 2px rgba(0, 0, 0, 0.3);
}
.halfSection span
{
    font-size: 1em;
    color: #222;
    display: table-cell;
    vertical-align: middle;
}
.halfSection .tr
{
    display: table-row;
}

.circleImage
{
	border-radius: 50%;
    border: 2px solid #ccc;
    width: 100px;
	max-width: 80%;
}

.greenTick
{
    font-size: 20px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border: 2px solid #000;
    border-radius: 50%;
    float: left;
    margin-left: 100%(50% - 35px);
    margin-right: 100%(50% - 35px);
    clear: both;
    margin-bottom: 10px;
    margin-bottom: 75px;
    z-index: 2;
    position: relative;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.bigIcon {
    font-size: 60px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border: 2px solid #000;
    border-radius: 50%;
    float: left;
    margin-left: 100%(50% - 35px);
    margin-right: 100%(50% - 35px);
    clear: both;
    margin-bottom: 10px;
    margin-bottom: 75px;
    z-index: 2;
    position: relative;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
 

.CTA
{
	padding: 50px;
	width: 100%;
}
.CTA a
{
	color: #fff;
}

.lightGreyBackground
{
	background: #f6f6f6;
}


.testimonials {
  height: 500px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.testimonials__nav {
  width: 12px;
  height: 12px;
  margin: 2rem 12px;
  border-radius: 50%;
  z-index: 10;
  outline: 6px solid #ccc;
  outline-offset: -6px;
  box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.testimonials__nav:checked {
  -webkit-animation: check 0.4s linear forwards;
          animation: check 0.4s linear forwards;
}
.testimonials__nav:checked:nth-of-type(1) ~ .testimonials__inner {
  left: 0%;
}
.testimonials__nav:checked:nth-of-type(2) ~ .testimonials__inner {
  left: -100%;
}
.testimonials__nav:checked:nth-of-type(3) ~ .testimonials__inner {
  left: -200%;
}
.testimonials__nav:checked:nth-of-type(4) ~ .testimonials__inner {
  left: -300%;
}
.testimonials__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 350px;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
.testimonials__contents {
  height: 100%;
  padding: 2rem;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.testimonials__image {
  font-size: 2.7rem;
      color: #2196F3;
}
.testimonials__caption {
  font-weight: 500;
  margin: 2rem 0 1rem;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
}
.testimonials__txt {
  color: #999;
  margin-bottom: 3rem;
  max-width: 300px;
}

@-webkit-keyframes check {
  50% {
    outline-color: #333;
    box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
  }
  100% {
    outline-color: #333;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  }
}

@keyframes check {
  50% {
    outline-color: #333;
    box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
  }
  100% {
    outline-color: #333;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  }
}

.quarterSection
{
    float: left;
    width: calc(25% - 1rem);
    margin: 0.5rem;
    text-align: center;
	margin-bottom: 100px;
    font-size: 1rem;
	box-sizing: border-box;
}
.quarterSection img
{
	border-radius: 50%;
    width: 175px;
    height: 175px;
    border: 5px solid #ccc;
}
.quarterSection span {
    max-width: 300px;
}

.thirdSection
{
    float: left;
    width: calc(33.333% - 1rem);
    margin: 0.5rem;
    text-align: center;
	margin-bottom: 100px;
    font-size: 1rem;
	box-sizing: border-box;
}
.thirdSection .imageBackground
{
    width: 100%;
    height: 200px;
}
.thirdSection span {
    max-width: 300px;
}

.fullSection {
    padding: 20px;
    width: 100%;
    float: left;
    text-align: center;
	box-sizing: border-box;
}
.fullSection span {
    max-width: 500px;
	display: inline-block;
}

.maxWidth{
	max-width: 600px;
	display: block;
	margin: auto auto;
}

.halfWidth {
	width: 50%;
	padding: 50px 1rem;
}
.halfWidth .container{
	width: 100%;
	max-width: 640px;
	margin: auto 0px auto auto;
}
.halfWidth .container h3{
	font-weight: 600;
    font-size: 3rem;
    line-height: 1.2em;
    margin: 0px;
	padding-right: 2rem;
}
.halfWidth .container h4{
	font-weight: 600;
    font-size: 2rem;
    line-height: 1.2em;
    margin-bottom: 0px;
	padding-right: 2rem;
}
.halfWidth .container p{
	padding-right: 2rem;
}

.flex{
	display: flex;
}

.card{
	background: #111;
	height: 275px;
	padding: 2rem 1rem;
	font-size: 0.9rem;
}

.imgBackground
{
	height: auto;
	width: 50%;
	padding: 50px;
	background: none !important;
}
.imgBackground h3
{
    color: #000;
    padding: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.5em;
    font-weight: 500;
    margin: 0px;
    /* border-bottom: 2px solid #fff; */
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.imgBackground span
{
    float: left;
    color: #000;
    text-align: center;
    margin: 0px;
    border: 0px;
}

.greyBackground
{
	background: #1f1c27;
}
.greyBackground h2
{
	color: #fff;
}
.greyBackground h3
{
	color: #fff;
}
.greyBackground span
{
	color: #fff;
}
.greyBackground .quarterSection
{
	color: #fff;
}
.greyBackground .halfSection span
{
	color: #fff;
}

.redBackground{
	background: #ca2c30;
}

.imageBackground
{
    background: url(../images/img24.jpg);
    background-position: center center !important;
    background-size: cover !important;
}
.imageBackground h2
{
	padding: 0px;
}

.newsletter
{
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}
.newsletterBlock
{
	background: #fff;
    width: 500px;
    height: 300px;
    padding: 20px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -270px;
    margin-top: -170px;
}

.closeNewsletter
{
	position: fixed;
	top: 10px;
	right: 10px;
	font-size: 2em;
	color: #fff;
	cursor: pointer;
}

.success
{
    background: #20B720;
    color: #fff;
    font-size: 1em;
}

.mobileOpen{
    float: right;
    line-height: 40px;
    color: #fff;
    margin: 10px;
    font-size: 2rem;
    position: fixed;
    top: 10px;
    right: 0px;
	display: none !important;
}</pre></body></html>