<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*! HTML5 Boilerplate v5.0 | MIT License | https://h5bp.com/ */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/*
	Grid lover
*/

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75em;
  line-height: 1.5833333333333333em;
}
h1 {
  font-family: inherit;
  font-weight: 600;
  font-style: inherit;
  font-size: 3em;
  line-height: 1em;
  margin-top: 0.7307692307692308em;
  margin-bottom: 0em;
}
h2 {
  font-family: inherit;
  font-weight: 600;
  font-style: inherit;
  font-size: 2em;
  line-height: 1.9em;
  margin-top: 0.95em;
  margin-bottom: 0.95em;
}
h3 {
  font-family: inherit;
  font-weight: 600;
  font-style: inherit;
  font-size: 1.3333333333333333em;
  line-height: 1.1875em;
  margin-top: 1.1875em;
  margin-bottom: 0em;
}
h4 {
  font-family: inherit;
  font-weight: 600;
  font-style: inherit;
  font-size: 1em;
  line-height: 1.5833333333333333em;
  margin-top: 1.5833333333333333em;
  margin-bottom: 0em;
}
h5 {
  font-family: inherit;
  font-weight: 400;
  font-style: italic;
  font-size: 1em;
  line-height: 1.5833333333333333em;
  margin-top: 1.5833333333333333em;
  margin-bottom: 0em;
}
p, ul, ol, pre, table, blockquote {
  margin-top: 0em;
  margin-bottom: 1.5833333333333333em;
}
ul ul, ol ol, ul ol, ol ul {
  margin-top: 0;
  margin-bottom: 0;
}
hr {
  border: 1px solid;
  margin: -1px 0;
}
b, strong, em, small, code {
  line-height: 1;
}
sup {
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
a {
  color: #268ED9;
}


/* ===== Initializr Styles ==================================================
   Author: Jonathan Verrecchia - verekia.com/initializr/responsive-template
   ========================================================================== */

.wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==============
    MOBILE: Menu
   ============== */



/* ==============
    MOBILE: Main
   ============== */

header.primary {
	position: relative;

	height: auto;
	margin-top: 60px;

	-webkit-box-shadow:0 1px 3px #ccc;
	-moz-box-shadow:0 1px 3px #ccc;
	-ms-box-shadow:0 1px 3px #ccc;
	box-shadow:0 1px 3px #ccc;
}
header.primary .half {
	height: 90px;
}
header.primary .half.last .clearfix {
	width: auto;
	float: right;
}
header.primary .logo {
	height: 100%;
	max-height: 90px;
	width: auto;
}
header.primary .half {
	display: none;
}
header.primary .half .three {
	position: relative;
	float: none;

	display: inline-block;
	width: auto;
}
header.primary .half .three i {
	position: absolute;
	top: 0;
	left: .3em;

	line-height: 90px;
	font-size: 4em;
	color: #ddd;
}
header.primary .half .three ul {
	padding-left: 5em;
	margin-top: 24px;
	margin-bottom: 15px;
	height: 42px;

	list-style: none;
}
header.primary .half .three ul strong {
	font-size: 1.3em;
}
header.primary .half .three ul a,
.contact-info a {
	color: #222;
	text-decoration: none;
}
header.primary .half .three ul a:hover,
.contact-info a:hover {
	color: #ee1b2e;
}

nav.primary {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;

	width: 100%;
	height: 60px;

	overflow: hidden;

	-webkit-transition: all 350ms ease-out;
	-moz-transition: all 350ms ease-out;
	-ms-transition: all 350ms ease-out;
	transition: all 350ms ease-out;
}
nav.primary.active {
	height: 100%;
}
nav.primary ul {
	width: 100%;
	max-width: 1200px;
	height: 100%;
	padding: 0;
	margin: 0 auto;

	background-color: #333;

	list-style: none;
}
nav.primary ul li {
	position: relative;
	z-index: -1;

	display: block;
	height: 20%;

	text-align: center;

	opacity: 0;
	-webkit-transition: z-index 0ms linear, opacity 220ms ease-out 300ms;
	-moz-transition: z-index 0ms linear, opacity 220ms ease-out 300ms;
	-ms-transition: z-index 0ms linear, opacity 220ms ease-out 300ms;
	transition: z-index 0ms linear, opacity 220ms ease-out 300ms;
}
nav.primary.active ul li {
	z-index: 0;

	opacity: 1;
}
nav.primary ul li a {
	display: block;
	padding-left: 2em;
	padding-right: 2em;
	height: 100%;

	line-height: 60px;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	font-weight: 700;

	-webkit-transition: color 220ms ease-out;
	-moz-transition: color 220ms ease-out;
	-ms-transition: color 220ms ease-out;
	transition: color 220ms ease-out;
}
nav.primary ul li a.active,
nav.primary ul li a:hover {
	color: #ee1b2e;
}
nav.primary ul li.cta a {
	padding-left: 4em;
	padding-right: 4em;
	background-color: #ee1b2e;

	-webkit-transition: transform 220ms ease-out;
	-moz-transition: transform 220ms ease-out;
	-ms-transition: transform 220ms ease-out;
	transition: transform 220ms ease-out;
}
nav.primary ul li.cta a:hover {
	color: #fff;

	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
nav.primary .toggle {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 100;

	width: 60px;

	line-height: 60px;
	color: #fff;
	font-size: 3em;
	text-align: center;

	cursor: pointer;
}
nav.primary .logo {
	position: absolute;
	left: 0;
	top: 0;
}
nav.primary.active .logo {
	display: none;
}

.hero {
	min-height: 540px;
	padding-top: 30px;

	background: url( '../img/solent-fire-bg.jpg' ) no-repeat center center;
	background-size: cover;

	text-align: center;
	color: #fff;
}
.hero h1 {
	margin-top: 0;
	margin-bottom: 1em;
}
a.cta,
input[type="submit"].cta {
	display: inline-block;
	margin-top: 2em;
	padding: 1em 2em;
	border: 0;
	border-radius: 2em;

	color: #222;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 700;

	background-color: #ee1b2e;

	-webkit-transition: all 220ms ease-out;
	-moz-transition: all 220ms ease-out;
	-ms-transition: all 220ms ease-out;
	transition: all 220ms ease-out;
}
.hero a.cta:hover,
.text a.cta:hover,
input[type="submit"].cta:hover {
	color: #fff;

	-webkit-transform: scale(.95);
	-moz-transform: scale(.95);
	-ms-transform: scale(.95);
	transform: scale(.95);
}

.services .wrapper {
	position: relative;
	top: -105px;
	z-index: 1;

	margin-bottom: -105px;
}
.services .box {
	height: 210px;
	padding-left: 2em;
	padding-right: 2em;
	padding-top: 1em;
	padding-bottom: 1em;

	color: #fff;

	background-color: #333;

	-webkit-transition: transform 220ms ease-out;
	-moz-transition: transform 220ms ease-out;
	-ms-transition: transform 220ms ease-out;
	transition: transform 220ms ease-out;
}
.services a {
	text-decoration: none;
}
.services a:nth-child(1) .box {
	background-color: #ee1b2e;
}
.services a:nth-child(2) .box {
	background-color: #222;
}
.services a:nth-child(3) .box {
	background-color: #3a3333;
}
.services a:nth-child(4) .box {
	background-color: #464343;
}
.services .box:hover {
	-webkit-transform: scale(.95);
	-moz-transform: scale(.95);
	-ms-transform: scale(.95);
	transform: scale(.95);
}

.text {
	position: relative;
	top:-105px;

	margin-bottom: -105px;
	padding-top: 105px;
	border-bottom: 1px solid #ddd;
}
.text.health-and-safety {
	top: 0;

	margin-bottom: 0;
	padding-top: 0;
}
.text .left-image {
	position: absolute;
	top: 0;
	left: 0;

	display: none;
	width: 50%;
	height: 100%;

	background: url( '../img/fire-sprinkler.jpg' ) no-repeat center center;
	background-size: cover;
}
.text.health-and-safety .left-image {
	background: url( '../img/health-and-safety-left-image.jpg' ) no-repeat center center;
	background-size: cover;
}
.text .half {
	padding: 4em 2em;

	text-align: center;
}
.text .half.first {
	display: none;
}
.text a.cta {
	padding: .5em 1em;
	margin-top: 0;

	color: #fff;
}

.testimonials {
	padding-top: 5em;
	padding-bottom: 5em;

	text-align: center;
}
span.speech-mark {
	height: .7em;
	display: block;

	font-size: 10em;
	line-height: 1em;
	font-family: 'Kanit', sans-serif;
}
.testimonial blockquote {
	padding-right: 1em;
	padding-left: 1em;

	font-size: 1.1em;
	line-height: 1.8em;
}
p.author {
	font-weight: 700;
	color: #aaa;
	text-transform: uppercase;
	font-size: .8em;
}
button.slick-prev,
button.slick-next {
	position: absolute;
	top: 50%;
	z-index: 2;

	border: 0;
	margin-top: -25px;

	color: #fff;

	background-color: #333;

	-webkit-transition: transform 220ms ease-out;
	-moz-transition: transform 220ms ease-out;
	-ms-transition: transform 220ms ease-out;
	transition: transform 220ms ease-out;
}
button.slick-prev:hover,
button.slick-next:hover {
	-webkit-transform: scale(.9);
	-moz-transform: scale(.9);
	-ms-transform: scale(.9);
	transform: scale(.9);
}
button.slick-prev {
	left: 0;
}
button.slick-next {
	right: 0;

	background-color: #ee1b2e;
}
button.slick-prev i,
button.slick-next i {
	display: block;
	padding: .5em;

	font-size: 1.4em;
}

.logos {
	border-top: 1px solid #ddd;

	text-align: center;
}
.logos .four {
	border-right: 1px solid #ddd;
	border-left: 1px solid #ddd;
	border-top: 1px solid #ddd;
	padding-top: 2em;
	padding-bottom: 2em;
}
.logos .four.first {
	border-top: 0;
}

.misc-info {
	color: #fff;

	background-color: #333;
}
.misc-info img {
	width: 100%;
	max-width: 150px;
}
.misc-info .four {
	padding-top: 2em;
	padding-bottom: 2em;
	padding-right: 2em;
	padding-left: 2em;
}
.misc-info .heading {
	margin-bottom: 1.4em;
	height: 70px;
}
.misc-info .heading h3 {
	margin-top: 0;
	padding-top: 1em;

	text-transform: uppercase;
}
.misc-info ul {
	margin: 0;
	padding: 0;

	list-style: none;
}
.misc-info ul a {
	display: block;
	padding-bottom: 1em;

	text-decoration: none;
	color: #999;

	-webkit-transition: color 220ms ease-out;
	-moz-transition: color 220ms ease-out;
	-ms-transition: color 220ms ease-out;
	transition: color 220ms ease-out;
}
.misc-info ul a.active,
.misc-info ul a:hover {
	color: #ee1b2e;
}
.misc-info .four.last p {
	color: #999;
}
.misc-info .four.last p a {
	text-decoration: none;
	color: #999;
}
.misc-info .four.last p a:hover {
	color: #ee1b2e;
}
.copyright {
	padding-top: 2em;
	padding-bottom: 2em;

	color: #888;

	background-color: #222;
}
.copyright p {
	margin: 0;
}

.intro {
	padding-top: 6em;
	padding-bottom: 6em;

	text-align: center;
	text-transform: uppercase;
	color: #fff;

	background: url( '../img/about-header-bg.jpg' ) no-repeat center center;
	background-size: cover;
}
#services .intro {
	background: url( '../img/services-header-bg.jpg' ) no-repeat center center;
	background-size: cover;
}
#contact .intro {
	background: url( '../img/builder-holding-hardhat-looking-over-city.jpg' ) no-repeat left center;
	background-size: cover;
}
.accreditor {
	text-align: center;
}
.accreditor .first.half {
	width: 100%;
}
.accreditor .last.half {
	width: 0%;
}
.accreditor:nth-child(2) .first.half {
    width: 0%;
}
.accreditor:nth-child(2) .last.half {
    width: 100%;
}
.accreditor:nth-child(2) {
	color: #fff;

	background-color: #333;
}
.accreditation {
	border-bottom: 1px solid #ddd;
}
.accreditor .wrapper {
	padding-top: 4em;
	padding-bottom: 4em;
}
.accreditor img {
	position: relative;
	bottom: -1em;

	display: none;
	max-width: 300px;
	width: 100%;
	margin-bottom: -7em;
}
.accreditor:nth-child(2) img,
.accreditor:nth-child(3) img {
	-webkit-box-shadow: 0px 30px 20px -20px #999;
	-moz-box-shadow: 0px 30px 20px -20px #999;
	-ms-box-shadow: 0px 30px 20px -20px #999;
	box-shadow: 0px 30px 20px -20px #999;
}

#page-tabs {
	padding-top: 4em;
	padding-bottom: 4em;
}
#page-tabs .tab-content .content {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;

	width: 100%;
	min-height: 100%;

	opacity: 0;
}
#page-tabs .tab-content .content.active {
	position: relative;
	z-index: 0;

	opacity: 1;
}
#page-tabs ul.tab-links {
	margin-left: 0;
	margin-bottom: 4em;
	padding: 0;

	list-style: none;
}
#page-tabs ul.tab-links li a {
	display: block;
	border-right: 1px solid #ddd;
	border-left: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding-left: 21px;
	padding-right: 21px;
	padding-top: 1em;
	padding-bottom: 1em;

	color: #fff;
	text-decoration: none;
	line-height: 2em;

	background-color: #333;

	-webkit-transition: all 220ms ease-out;
	-moz-transition: all 220ms ease-out;
	-ms-transition: all 220ms ease-out;
	transition: all 220ms ease-out;
}
#page-tabs ul.tab-links li a:hover {
	-webkit-transform: scale(.95);
	-moz-transform: scale(.95);
	-ms-transform: scale(.95);
	transform: scale(.95);
}
#page-tabs ul.tab-links li:first-child a {
	border-top: 1px solid #ddd;
}
#page-tabs ul.tab-links li a.active {
	border-right: 1px solid #fff;
	border-left: 6px solid #ee1b2e;

	color: #333;
	font-weight: 700;

	background-color: #fff;
}
#page-tabs ul.tab-links li:first-child a.active {
	border-top: 1px solid #fff;
}
#page-tabs ul.tab-links li:last-child a.active {
	border-bottom: 1px solid #fff;
}
.tab-content article header h2,
.contact-form h2 {
   line-height: 1em;
}
.tab-content article header img,
.contact-form img {
   float: left;

   margin-right: 21px;
}
.tab-img img {
	width: 100%;
}
.tab-img {
	margin-bottom: 21px;
}
.cta-bar {
	padding-top: 2em;
	padding-bottom: 2em;

	color: #fff;
	text-align: center;

	background: url( '../img/consultation-bg.jpg' ) no-repeat center center;
	background-size: cover;
}
.cta-bar p {
	font-size: 2em;
	line-height: 2em;
	margin: 0;
}
.cta-bar a {
	color: #fff;

	-webkit-transition: transform 220ms ease-out;
	-moz-transition: transform 220ms ease-out;
	-ms-transition: transform 220ms ease-out;
	transition: transform 220ms ease-out;
}
.cta-bar a:hover {
	-webkit-transform: scale(.95);
	-moz-transform: scale(.95);
	-ms-transform: scale(.95);
	transform: scale(.95);
}
.contact-form {
	padding-top: 4em;
	padding-bottom: 4em;
}
.field.three input,
.message textarea {
	width: 100%;
	border: 0;
	padding: 14px 21px;

	background-color: #ebe7e7;
}
#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
	border: 1px solid #fff;

	-webkit-transition: border 220ms ease-out;
	-moz-transition: border 220ms ease-out;
	-ms-transition: border 220ms ease-out;
	transition: border 220ms ease-out;
}
#contact-form input.error,
#contact-form textarea.error {
	border: 1px solid red;
}
.message textarea {
	min-height: 210px;
}
.message {
	margin-top: 2em;
}
.contact-info {
    margin-top: 4em;
}
.contact-info h3 {
	margin-top: 0;
	margin-bottom: .5em;
	padding-bottom: .5em;
}
.contact-info ul {
	padding: 0;
	margin-left: 0;

	list-style: none;
}
.contact-info ul li {
	margin-bottom: 2em;
	font-weight: 400;
}
.contact-info ul li i {
	font-size: 2em;
	margin-right: .5em;
	float: left;
}
#google-map {
	min-height: 480px;
}
.form {
	position: relative;

	overflow: hidden;
}
.form.success #contact-form {
	opacity: 0.25;
}
.form.success #form-messages {
	left: 0;

	display: block;
	width: 100%;
	padding-top: 5em;

	font-size: 1.5em;
	color: green;

	opacity: 1;
}
#contact-form {
	opacity: 1;

	-webkit-transition: opacity 650ms ease-out;
	-moz-transition: opacity 650ms ease-out;
	-ms-transition: opacity 650ms ease-out;
	transition: opacity 650ms ease-out;
}
#form-messages {
	position: absolute;
	left: 100%;
	top: 0;
	bottom: 0;
	z-index: 1;

	text-align: center;

	opacity: 0;
	-webkit-transition: opacity 450ms ease-out 100ms, left 550ms ease-out;
	-moz-transition: opacity 450ms ease-out 100ms, left 550ms ease-out;
	-ms-transition: opacity 450ms ease-out 100ms, left 550ms ease-out;
	transition: opacity 450ms ease-out 100ms, left 550ms ease-out;
}
#form-messages i {
	font-size: 4em;
}


/* ===============
    ALL: IE Fixes
   =============== */



/* ==========================================================================
   Author's custom styles - Tidy Design
   ========================================================================== */

body {
	margin-top: 0;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;

	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body * {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	-ms-box-sizing: inherit;
	box-sizing: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Kanit', sans-serif;
}
.red {
	color: #ee1b2e;
}













/* ==========================================================================
   Media Queries
   ========================================================================== */

@media only screen and (min-width: 480px) {

/* ====================
    INTERMEDIATE: Menu
   ==================== */



   .four {
	   float: left;
	   width: 50%;
   }
   .logos .four:nth-child(2) {
	   border-left: 0;
	   border-top: 0;
   }
   .logos .four.last {
	   border-left: 0;
   }
   .testimonial blockquote {
	   padding-right: 2em;
	   padding-left: 2em;
   }
   .tab-img .three {
	   float: left;
	   width: 50%;
   }


}

@media only screen and (min-width: 850px) {

/* ====================
    WIDE: CSS3 Effects
   ==================== */



/* ============
    WIDE: Menu
   ============ */



/* ============
    WIDE: Main
   ============ */

   body { font-size: .85em; }
   header.primary {
   	   margin-top: 0;
   	   height: 120px;
   }
   .hero {
   	   min-height: 660px;
   	   padding-top: 180px;
   }
   .half {
	   float: left;
	   width: 50%;
   }
   .three {
	   float: left;
	   width: 33.333333%;
   }
   .four {
	   width: 25%;
   }
   header.primary .half.first { width: 20%; }
   header.primary .half.last { width: 80%; }
   header.primary .half .three.first ul {
	   border-right: 1px solid #ddd;
   }
   header.primary .half .three.last ul {
	   border-left: 1px solid #ddd;
	   padding-right: 0;
   }
   header.primary .half .three ul {
	   padding-right: 1em;
   }
   nav.primary {
	   position: absolute;
	   top: 100%;

	   margin-top: -15px;

	   overflow: visible;
   }
   nav.primary.active {
	   height: auto;
   }
   nav.primary ul {
	   width: 90%;

	   transition: max-width 330ms ease-out, width 330ms ease-out;
   }
   nav.primary ul.active {
   	   position: fixed;
   	   top: 0;
   	   left: 0;

	   max-width: 100%;
	   width: 100%;
	   height: auto;
   }
   nav.primary ul li {
	   display: inline-block;
	   width: auto;
	   z-index: 0;
	   opacity: 1;
   }
   nav.primary ul li.cta {
	   float: right;
   }
   nav.primary ul li a {
	   height: auto;
   }
   nav.primary .toggle,
   nav.primary .logo {
	   display: none;
   }
   header.primary .half,
   .text .left-image,
   .text .half.first {
	   display: block;
   }

   .hero p {
	   max-width: 660px;
	   margin: 0 auto;
   }

   .logos .four {
	   border-top: 0;
   }
   .logos .four:nth-child(3) {
	   border-left: 0;
   }
   .misc-info .four {
	   padding-top: 4em;
	   padding-bottom: 4em;
   }
   .text .half {
	   padding: 4em;
   }
   .testimonial blockquote {
	   padding-right: 5em;
	   padding-left: 5em;
   }
   .accreditor {
	   text-align: left;
   }
   .accreditor .first.half {
	   width: 70%;
	   padding-right: 4em;
   }
   .accreditor .last.half {
       width: 30%;
   }
   .accreditor:nth-child(2) .first.half {
	   width: 30%;
   }
   .accreditor:nth-child(2) .last.half {
       width: 70%;
	   padding-left: 4em;
   }
   .accreditor img {
	   display: block;
   }
   #page-tabs ul.tab-links,
   #page-tabs .tab-content {
	   float: left;
   }
   #page-tabs ul.tab-links {
	   width: 25%;
   }
   #page-tabs .tab-content {
	   width: 75%;
	   padding-left: 5%;
   }
   #page-tabs ul.tab-links {
	   margin-bottom: 0;
   }
   .tab-img .three {
	   width: 33.333333%;
   }
   .cta-bar {
	   text-align: left;
   }
   .cta-bar p {
	   float: left;
	   max-width: 90%;
   }
   .cta-bar a {
	   float: right;

	   margin-top: 0;
   }
   .contact-form .form,
   .contact-form .contact-info {
	   float: left;
   }
   .contact-form .form {
	   width: 75%;
	   padding-right: 5%;
   }
   .contact-form .contact-info {
	  width: 25%;
   }
   .field.three:first-child {
	   padding-right: 14px;
   }
   .field.three:last-child {
	   padding-left: 14px;
   }
   .field.three:nth-child(2) {
	   padding-left: 7px;
	   padding-right: 7px;
   }
   .contact-info {
	   margin-top: 0;
   }

}

@media only screen and (min-width: 1140px) {

/* ===============
    Maximal Width
   =============== */

   body { font-size: .9em; }
   .hero { min-height: 720px; }

}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden {
    display: none !important;
    visibility: hidden;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.invisible {
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}
.no-margin-bottom {
	margin-bottom: 0;
}
.no-margin-top {
	margin-top: 0;
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}



/* =======================================================
COOKIE NOTIFICATION
   ======================================================= */
    #cookie-notification {
        box-sizing: border-box;
        font-size: 19px;
        position: fixed;
        bottom: 0;
        width: 100%;
        padding: .75em 1em;
        background: #ee1b2e;
        border-top: 4px solid rgba(47, 27, 52, .5);
        z-index: 999999999999999999999999;
    }
    #cookie-notification #notification-content {
        display: flex;
        align-items: center;
        max-width: 1000px;
        margin: 0 auto;
    }
    #cookie-notification #left,
    #cookie-notification #right {
        display: inline-block;
        margin: 0;
        padding: 0;
    }
    #cookie-notification #left {
        width: 70%;
        margin-right: 5%;
    }
    #cookie-notification #right {
        width: 17.5%;
        margin-left: 7.5%;
    }
    #cookie-notification p {
        font-size: .8rem;
        margin: 0;
        color: #fff;
        letter-spacing: 1px;
    }
    #cookie-notification a {
        position: relative;
        height: initial;

        text-decoration: none;
        transition: all .35s ease-in-out;
        z-index: 10;

        display: block;
        width: 130px;
        margin: 0;
        margin-left: auto;
        padding: 6px 16px;
        background-color: #333;
        border: 1px solid #2a1b34;
        border-radius: 2px;
        color: #fff;
        font-size: 14px;
        text-align: center;
    }

    #cookie-notification .cont-btn {
        width: 130px;
        margin-bottom: .5em;
        font-weight: 700;
        letter-spacing: 1px;
    }
    #cookie-notification .find-out-btn {
        /* width: 100px; */
        font-size: .7rem;
    }
    #cookie-notification a:hover {
        background-color: rgba(47, 47, 47, 0.5);
    }
    @media screen and (max-width: 1000px) {
        #cookie-notification {
            padding: .75em 1em;
        }
        #cookie-notification #notification-content {
            flex-direction: column;
        }
        #cookie-notification #left,
        #cookie-notification #right {
            margin: 0;
            width: 100%;
            text-align: center;
        }
        #cookie-notification #right {
            margin-top: .75em;
        }
        #cookie-notification a {
            display: inline-flex;
            justify-content: center;
            width: 150px;
            margin: 0 .75em;
        }
    }
    @media screen and (max-width: 600px) {
        #cookie-notification {
            font-size: .8rem;
        }
        #cookie-notification a {
            width: 130px;
            font-size: .8rem;
        }
    }
    @media screen and (max-width: 350px) {
        #cookie-notification a {
            width: 120px;
            font-size: .75rem;
            margin: 0 .5em;
        }
    }


/*==================================
PRIVACY POLICY
==================================*/

#privacy-policy {padding:3em;}
</pre></body></html>