/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
    ## Margin, padding, gaps
		## Posts and pages
		## Background and font colours
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family:'Open Sans', Helvetica, Arial, sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
	min-width:320px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover,
a:focus,
area:active,
area:hover,
area:focus,
button:active,
button:hover,
button:focus{
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0 0 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/*input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}*/

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}


.row{
	max-width: none;
}

/*--------------------------------------------------------------
# ALLOW FOR CENTRE VERTICAL ALIGN
--------------------------------------------------------------*/

.center-outer{
                display:table;
                height:100%;
                width:100%;
}

.center-inner{
                display:table-cell;
                vertical-align:middle;
}


/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #67686B;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	float:left;
	width:100%;
	clear: both;
	font-weight: 400;
}

p {
	float:left;
	width:100%;
	margin-bottom: 1.5em;
	font-weight: 100;
}

a {
	color: #1B95AB;
	text-decoration:none;
	cursor:pointer;
}

a:hover,
a:focus,
a:active {
	text-decoration:underline;
}

a:hover,
a:focus,
a:active {
	outline: 0;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-size: 15px;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	border: 0;
	height: 1px;
	margin: 0.625em;
}

ul,
ol {
	float:left;
	width:100%;
	margin: 0 0 1.5em 1.25em;
}

ul {
	list-style: disc;
}

main ul{
	font-weight:100;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	float:left;
	width:100%;
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	display:block;
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}



/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

.form-row {
	margin: 1em 0;
}

label {
	display: block;
}

form button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	float: right;
	padding: 3px 15px 3px 15px;
	border: none;
	text-transform: uppercase;
	font-size: 0.9rem;
	font-weight: bold;
	background: #7EB2CB;
	color: #fff;
}

form button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	
}

form button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
form button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="password"],
/*input[type="search"],*/
textarea {
	width: 100%;
	padding:5px 10px;
	margin:0 0 10px;
	border:none;
	font-size:0.9rem;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="date"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	
}

textarea {
	float:left;
	min-width: 100%;
	max-width: 100%;
	height:100px;
	min-height:100px;
	max-height:300px;
}

p.sensitive-data{
	font-size: 0.70rem;
	margin-bottom: 7px !important;
}

/***** OVERRIDES FROM CONTACT FORM PLUGIN *****/

.wpcf7-form{
	float:left;
	width:100%;
}

span.wpcf7-form-control-wrap{
	float:left;
	width:100%;
}

input[type="text"].wpcf7-not-valid,
input[type="email"].wpcf7-not-valid,
input[type="tel"].wpcf7-not-valid,
input[type="url"].wpcf7-not-valid,
input[type="date"].wpcf7-not-valid,
input[type="password"].wpcf7-not-valid,
input[type="search"].wpcf7-not-valid,
textarea.wpcf7-not-valid{
	margin:0;
}

span.wpcf7-not-valid-tip{
	float:left;
	width:100%;
	margin:0 0 10px;
}

div.wpcf7-validation-errors{
	float:left;
	padding:0;
	margin:10px 0;
	color:#f00;
	border:none;
	font-size:0.9rem;
}





/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}





/*--------------------------------------------------------------
# APPEAR ON START OR SCROLL
--------------------------------------------------------------*/

.appear{
	position:relative;
	top:-30px;
	opacity:0;
	transition:opacity .5s linear;
	-moz-transition:opacity .5s linear;
	-webkit-transition:opacity .5s linear;
}





/*--------------------------------------------------------------
# EXTRA CLASSES
--------------------------------------------------------------*/

.margin-20{margin-bottom:20px;}
.margin-30{/*margin-bottom:30px;*/margin-bottom: 0px;
padding: 0 10px;}
.margin-50{margin-bottom:50px;}
.margin-70{margin-bottom:70px;}





/*--------------------------------------------------------------
# Structural
--------------------------------------------------------------*/

main{
	float:left;
	width:100%;
	/*padding-top:30px;*/
}

.full-width{
	float:left;
	width:100%;
}

.content-width{
	display:block;
	margin:0 auto;
}

.content-width-inner{
	max-width:920px;
}

.content-width-outer{
	max-width:1024px;
}

.left-content{
	float:left;
	width:20%;
}

.right-content{
	float:right;
	width:75%;
}

/*@media screen and (max-width:939px){
	main .content-width-inner,
	main .content-width-outer{
		padding:0 2%;
	}
}*/

@media screen and (max-width:767px){
	.left-content{
		width:100%;
		margin:0 0 50px;
	}
	
	.right-content{
		width:100%;
	}
}





/*--------------------------------------------------------------
# RE-USED ELEMENTS THAT ARE OVERRIDDEN INDIVUDALLY
--------------------------------------------------------------*/

/*--------------------------
# SOCIAL ICONS
---------------------------*/

.social-wrapper ul{
	margin:0;
	list-style:none;
}

.social-wrapper ul li a{
	float:left;
	width:23px;
	height:22px;
	margin:0 3px;
	background-image:url(../img/icons/social-icons.png);
	background-repeat:no-repeat;
	text-indent:-5000px;
}

.social-wrapper ul li a.social-linkedin{
	background-position:0 0;
}
.social-wrapper ul li a.social-twitter{
	background-position:-29px 0;
}
.social-wrapper ul li a.social-facebook{
	background-position:-57px 0;
}



/*--------------------------
# BREADCRUMB TRAIL
---------------------------*/

#breadcrumb-wrapper{
	float:left;
	width:100%;
}

#breadcrumb-wrapper li{
	width:auto;
}

#breadcrumb-wrapper .trail-end{
	color:#e0144c;
}

/* Needs the .trail-items class as well to override the default */
#breadcrumb-wrapper .trail-items li::after{
	content:">";
}





/*--------------------------
# SIDEBAR
---------------------------*/

.sidebar{
	/*width:20%;*/
}

.sidebar ul{
	float:left;
	width:100%;
	list-style:none;
	margin:0;
}

.sidebar ul li{
	width:auto;
	padding:0 0 0 20px;
	margin:0 0 8px;
	clear:both;
}

.sidebar ul li a{
	float:left;
	padding:1px 0;
	font-size:0.9rem;
	font-weight:bold;
	text-transform:uppercase;
	letter-spacing:1px;
}

.sidebar ul li.current-menu-item{
	background:url(../img/assets/sidebar-menu-item-left.jpg) no-repeat 0 0 #e0144c;
	background-size:contain;
}

.sidebar ul li.current-menu-item a{
	padding:1px 23px 1px 0;
	background:url(../img/assets/sidebar-menu-item-right.jpg) no-repeat 100% 0 #e0144c;
	background-size:contain;
	color:#fff;
}

@media screen and (max-width:767px){
	.sidebar ul li{
		clear:none;
		min-width:15%;
		margin:0 0 15px;
		text-align:center;
	}
	
	.sidebar ul li a{
		width:100%;
	}
}




/*--------------------------------------------------------------
# HEADER
--------------------------------------------------------------*/

/*----------------------------------------------
# TOP BAR
----------------------------------------------*/


.top-bar{
	width: 100%;
	height: 65px;
	background:url(../img/assets/topbar.png);
}

.top-bar-info{
	float: right;
	width: 90%;
	margin: 19px 10% 0 0;
}

.top-email{
	float: right;
}

.top-email h3 a{
	color: #fff;
	font-size: 1rem;
}

.top-email h3 a:hover{
	color: #77A6BE;
	text-decoration: none;
}

.top-tele{
	float: right;
	margin-right: 40px;
}

.top-tele h3{
	color: #fff;
	font-size: 1rem;
	margin-left: 40px;
	margin-top: 3px;
}

.top-section{
	position: relative;
	height: 789px;
	overflow:hidden;
}

.hero-video{
	position: absolute;
	z-index: -1;
}

.hero-video img{
	width: 100%;
}

.head-logo{
	width:100%;
	height: 100%;
	background: url(../img/icons/main-banner-logo.png)no-repeat 50% 50%;
}

.trans-tri-1{
	background: url(../img/assets/trianglebigtop.png)no-repeat;
	height: 777px;
	width:386px;
	position: absolute;
	top: 0px;
	left: 0px;
}

.trans-tri-2{
	background: url(../img/assets/trianglebigbottom.png)no-repeat;
	height: 736px;
	width:316px;
	position: absolute;
	bottom: 0px;
	right: 0px;
}

.head-duller{
	width: 100%;
	height: 100%;
	background: url(../img/assets/imageduller.png);
}

.mainTitle h1{
	margin: 300px auto;
	color: rgb(255, 255, 255);
	font-size: 5.5rem;
	text-transform: uppercase;
	font-weight: 700;
	width: 88%;
	line-height: 87px;
}

@media screen and (min-width:800px){
	.hero-video img{
		min-height: 790px;
		max-height: 970px; /******This may need changing******/
	}
}

/*--------------HOME PAGE VIDEO---------------*/

video{
	margin-left: 0;
	background:transparent url(../img/content/videoimage.jpg) no-repeat 0 0; 
	-webkit-background-size:cover; 
   -moz-background-size:cover; 
   -o-background-size:cover; 
   background-size:cover; 
}

#bgVideo{
	position: absolute;
	top: 0px;
	height: auto;
	width: 100%;
	min-height: 500px;
}

*::-webkit-media-controls-panel {
  display: none!important;
  -webkit-appearance: none;
}

*::--webkit-media-controls-play-button {
  display: none!important;
  -webkit-appearance: none;
}

*::-webkit-media-controls-start-playback-button {
  display: none!important;
  -webkit-appearance: none
}

@media screen and (max-width:1600px){
	.mainTitle h1{
		padding-left: 280px;
	}
}

@media screen and (max-width:1531px){
	#bgVideo{
		width: auto;
		height: 861px;
	}
}

@media screen and (max-width:1300px){
	.head-logo{
		background: url(../img/icons/main-banner-logo.png)no-repeat 60% 50%;
	}
}

@media screen and (max-height:667px, max-width:1300px){
	.head-logo{
		background: url(../img/icons/main-banner-logo.png)no-repeat 60% 30%;
	}
}

@media screen and (max-width:950px){
	.head-logo{
		background: url(../img/icons/main-banner-logo.png)no-repeat 70% 50%;
	}
}

@media screen and (max-width:800px){
	#bgVideo{
		height: 100%;
		/*width: 890px;*/
	}
	
	.top-tele{
		display: none;
	}
	
	.search-form{
		display: none;
	}
	
	.top-bar{
		height: 48px;
		position: absolute;
		z-index: 300;
	}
	
	.top-bar-info{
		height: 48px;
		padding: 9px 20px;
		width: 50%;
		margin: 0;
	}
	
	.search-field-active{
		width: 100px;
	}
	
	.mainTitle h1{
		width: 100%;
		line-height: 51px;
		float: none;
		padding: 100px 30px;
		font-size: 2.5rem;
		margin: 50px auto;
	}
	
	.trans-tri-1{
		height: 450px;
		width: 200px;
		background-size: 100%;
	}
	
	.trans-tri-2{
		height: 403px;
		width: 200px;
		background-size: 100%;
	}
	
	.head-duller{
		top: 0px;
		position: absolute;
		z-index: 100;
	}
	
	.top-section{
		height: 530px;
	}
	
	.hero-video{
		height: 101%;
	}
	
	.hero-video img{
		height: 100%;
	}
	
	#pictureHeads{
		height: 301px;
	}
	
	.page-id-5 #pictureHeads{
		display: none;
	}
	
	.head-logo{
		height: 450px;
		background: url(../img/icons/main-banner-logo.png)no-repeat 50% 70%;
		background-size: 250px;
	}
}

@media screen and (max-width:480px){
	#bgVideo{
		height: 100%;
		width: 889px;
	}
	
	.top-email h3 a{
		font-size: 0.75rem;
	}
	
	.mainTitle h1{
		width: 100%;
		line-height: 30px;
		float: none;
		padding: 100px 30px;
		font-size: 1.5rem;
		margin: 50px auto;
	}
	
	.top-section{
		height: 341px;
	}
	
	.hero-video{
		height: 101%;
	}
	
	.hero-video img{
		height: 100%;
	}
	
	.head-logo{
		background: url(../img/icons/main-banner-logo-grey.png)no-repeat 50% 64%;
		background-size: 180px;
	}
	
	.trans-tri-1{
		width: 130px;
	}
	
	.trans-tri-2{
		width: 126px;
		height: 253px;
	}
}

/*-------------SECOND MENU RESPONSIVE---------------*/

.second-top-bar{
	display: none;
	width: 100%;
	height: 88px;
	background:url(../img/assets/secondbar.fw.png);
	z-index: 200;
}

.top-tele2{
	width: 50%;
	float: right;
	text-align: right;
	color: #fff;
}

.search-form2{
	right: 20px;
	top: 1px;
	float: left;
}

.second-top-bar-info{
	height: 40px;
	padding: 53px 20px 5px;
}

@media screen and (max-width:800px){
	.second-top-bar{
		display: block;
		position: absolute;
	}
}


/*-------Search Bar-------*/

.search-form {
	/*position: absolute;*/
	right: 20px;
	top: 1px;
	float: right;
	margin-right: 50px;
}

.search-field {
	background-color: transparent;
	background-image: url(../img/icons/search-icon.png);
	background-position: 5px center;
	background-repeat: no-repeat;
	background-size: 24px 24px;
	border: none;
	cursor: pointer;
	height: 27px;
	margin: 0px 0 0 0;
	padding: 0 0 0 34px;
	position: relative;
	-webkit-transition: width 400ms ease, background 400ms ease;
	transition:         width 400ms ease, background 400ms ease;
	width: 50px;
	border: 1px solid #67CC9E;
	color: #fff !important;
}

.search-field-active {
	background-color: #fff;
	/*border: 2px solid black;*/
	cursor: text;
	outline: 0;
	width: 200px;
	color: #000 !important;
	border: none;
	margin-top: 1px;
}

.search-submit {
  display: none;
}

input[type="search"] {
  	-webkit-appearance: textfield;
  	box-sizing: content-box;
	color: #000;
	font-size: 0.8rem;
}

@media screen and (max-width:480px){
	.search-field-active{
		width: 100px;
	}
}

/*--------------------------------------------------------------
# FRONT PAGE 
--------------------------------------------------------------*/
/*----------------------------------------------
# FRONT PAGE SECTIONS
----------------------------------------------*/

/*-----Intro Section-----*/
.intro-section{
	float: left;
	width: 100%;
	background-color: #7DB1CA;
	min-height: 502px;
}

#specialise{
	background: url(../img/assets/section2-blue.fw.png) !important;
}


.intro-part{
	margin: 50px auto 0;
	padding: 0 40px;
	border-left: solid #fff 1px;
	overflow: hidden;
}

.into-header h1{
	color: #fff;
}

.into-text{
	width: 100%;
	float:left;
}

.into-text p{
	color: #fff;
	font-size: 1.1rem;
}

@media screen and (max-width:1600px){
	.intro-section{
		min-height: 502px;
		height:100%;
		padding-left: 280px;
	}
	
	.home-button{
		margin: 30px auto;
	}
}

@media screen and (max-width:800px){
	.intro-section{
		height: 100%;
		padding-bottom: 50px;
		padding-left: 0;
	}
	
	.into-text p{
		font-size: 1rem;
		line-height: 28px;
	}
	
	.intro-part{
		border-left: none;
	}
}

@media screen and (max-width:480px){
	.intro-section{
		height: 100%;
		padding-bottom: 50px;
	}
	
	.intro-part{
		padding: 0 40px;
	}
	
	.into-text p{
		font-size: 0.8rem;
		line-height: 22px;
	}
}

/*-----Home Page Enquire and Newsletter Buttons-----*/
.enquire-button{
	width: 164px;
	text-transform: uppercase;
	font-size: 1.2rem;
	text-align: center;
	background: #002f53 none repeat scroll 0% 0%;
	margin: 40px 0px 40px 40px;
	line-height: 20px;
	height: 62px;
	/*padding: 10px;*/
}

.button-link{
	width: 100%;
	height: 100%;
	padding: 10px;
}

.enquire-button:hover{
	background: #415C69;
}

.enquire-button a{
	color: #fff;
}

.enquire-button a:hover{
	text-decoration: none;
}

#newsletter{
	/*padding: 7px;*/
	margin: 40px auto;
	padding-top: 7px;
	color: #fff;
	cursor: pointer;
	float: left;
}

#newsletter-position-single{
	width: 164px;
	display: block;
	margin: 0 auto;
	transition: width .7s;
}

.newsletter-position-change{
	width: 464px !important;
	transition: width .7s;
}

#newsletter-home{
	/*padding: 7px;*/
	margin: 20px 0 20px 47px;
	float: left;
	cursor: pointer;
}

#newsletter-single{
	float: none;
	margin: 40px auto;
	padding: 0;
}

#newsletter-form-single{
	margin: 40px 0 !important;
}

.newsletter-form{
	background: #002f53;
	width: 90%;
	float:left;
	/*height: 62px;*/
	margin: 20px 5%;
	overflow: hidden;
}

.newsletter-expand{
	width: 300px;
}

.newsletter-expand-single{
	width: 300px;
	margin: 40px 0;
}

.newsletter-form input[type="submit"]{
	padding: 10px 19px 10px 20px;
	float:left;
}

.newsletter-form input[type="email"]{
	width: 100%;
	margin: 10px 0px 10px;
	height: 42px;
}

.newsletter-form p{
	width: 90%;
	color: #fff !important;
	margin-bottom: 10px;
}

.newsletter-form .wpcf7-form{
	border-left: 1px solid #fff;
	padding-left: 30px;
}

#sensData{
	font-size: 10px;
}

.wpcf7-mail-sent-ok{
	float: left;
	color: #fff;
}

.newsletter-form p span.wpcf7-list-item{
	color: #fff;
	float: left;
	width: 50%;
}

#newsletter-send{
	width: 26%;
	float: left;
	margin: 10px 0px;
}

.button-link-newsletter{
	color: #fff;
}

.button-link-newsletter{
	width: 100%;
	height: 100%;
	padding: 7px;
}

#newsletter-but{
	font-size: 0.85rem;
}

.fullscreenMask .signUpBox{
	position: fixed;
	top: 20%;
	left: 5%;
	width: 90%;
	min-width: 235px;
	background: #002f53;
	/*display: none;*/
}


@media screen and (min-width:480px){
	.fullscreenMask .signUpBox{	
		width: 400px;
		left: 50%;
		margin-left: -220px;
	}
	
	.fullscreenMask .signUpBox{	
		top: 20%;
		width: 450px;
		margin-left: -230px;
	}
}

/*-----News Section-----*/
.news-section{
	float: left;
	width: 100%;
	background: url(../img/assets/section2.png);

}

.page-id-5 .news-section{
	/*height: 643px;*/
}

.news-wrapper{
	position: relative;
	min-width: 230px;
	max-width: 250px;
	margin: 0 auto;
}

.news-part{
	margin: 40px auto 0;
	padding: 0 50px;
	overflow: hidden;
}

.news-header h1{
	color: #666;
	border-bottom: solid #666 1px;
}

.news-text p{
	color: #666;
	font-size: 1.1rem;
}

.news-slider{
	width:100%;
	margin: 30px auto;
	float: left;
	position: relative;
	left: -32px; /*-49*/
}

#news-slider-holder{
	margin: 0px auto;
	float: left;
}

.news-item{
	/*width: 160px;*/ width: 27%;
	height: 260px;
	float: left;
	margin: 0 3%;
	position: relative;
}

.news-snippet-info{
	position: absolute;
	float: left;
	top: 0px;
	width: 100%;
	height: 100%;
	padding: 10px 20px;
	background: #7DB1CA;
	display: none;
}

.news-snippet-info h3{
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	font-size: 1rem;
	font-weight: 700;
	line-height: 23px;
	margin-top: 10px;
	white-space: normal;

}

.news-snippet-info p{
	color: #002F53;
	text-align: center;
	text-transform: uppercase;
	font-size: 0.8rem;
	font-weight: 700;
	/*bottom: 40px;*/
	position: absolute;
	left: 0px;	
	top: 152px;
}

.news-share{
	/*background: url(../img/icons/share-news.png);*/
	position: absolute;
	bottom: -3px;
	right: 0px;
	width: 72px;
	height: 95px;
	display: block;
}

.news-snippet-image img{
	width: 100%;
	height: 260px;
}

.news-share:hover{
	/*background: url(../img/icons/share-news-hover.png);*/
}

.news-item:hover .news-snippet-info{
	display: block;	
}

.slider-nav{
	float: left;
	width: 19px;
	height: 43px;
}

.nextRight{
	background: url(../img/icons/green-arrow-left.png) no-repeat;
	position: absolute;
	width: 19px;
	text-indent: -4000px;
	height: 43px;
	margin-top: 112px;
}

.prevLeft{
	background: transparent url(../img/icons/green-arrow-right.png) no-repeat;
	position: absolute;
	width: 19px;
	text-indent: -4000px;
	height: 43px;
	margin-top: 112px;
}

@media screen and (max-width:1600px){
	.news-section{
		padding-left:280px;
		/*min-height: 643px;*/
		height: 100%;
	}
}

@media screen and (max-width:1100px){
	#news-slider-holder{
		width: 440px !important;
	}
	
	.news-item{
		width: 50%;
		margin-bottom: 50px !important;
		margin: 0;
	}
}

@media screen and (max-width:940px){
	.news-item{
		width:100%;
	}
}

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

	.news-section{
		height: 100%;
		padding-left: 0;
	}
	
	.news-slider{
		width: 100%;
		float: none;
		left: 0px;
	}
	
	.news-item{
		margin-top: 20px;
	}
	
	#news-slider-holder{
		width: 440px !important;
	}
	
	#newsletter-home{
		margin: 50px auto;
	}
	
	.respo-but{
		float: none !important;
		margin: 25px auto;
	}
}

@media screen and (max-width:570px){
	.news-slider{
		width: 258px;
	}
	
	#news-slider-holder{
		width: 220px !important;
	}
}

/*@media screen and (max-width:357px){
	.news-slider{
		left: -20px;
	}
}*/

/*-----News sliders-----*/




/*-----Testimonial Section-----*/
.testimonial-section{
	float: left;
	width: 100%;
	background-color: #fff;
	height: 402px;
}

.testimonial-part{
	margin: 40px auto 0;
	padding: 0 40px;
	overflow: hidden;
}

.speech-bubble{
	background: url(../img/assets/testimonial-bubble.png) no-repeat;
	height: 305px;
	width: 727px;
	float: right;
}

.testimonial-quote{
	width: 80%;
	margin: 30px 10%;
}

.testimonial-quote a{
	color: #67CC9E;
}

.testimonial_body{
	font-size: 1.2rem;
}

.testimonial_body p{
	margin-bottom: 10px;
}

.testimonial_author{
	float: right;
    font-weight: 400;
	color: #002F53;
}

.cycle-slide{
	width: 90%;
}

@media screen and (max-width:1024px){
	.speech-bubble{
		width: 100%;
		padding-left: 280px;
		background:none;
	}
}

@media screen and (max-width:800px){
	.testimonial-section{
		min-height: 402px;
		height: 100%;
	}
	
	.testimonial-part{
		margin: 40px auto;
	}
	
	.speech-bubble{
		padding-left: 0;
		height: 100%;
	}
	
	
}

/*--------------------------------------------------------------
## Main nav
--------------------------------------------------------------*/
.menu-toggle{
	float:right;
	width:32px;
	height:32px;
	margin:4px 0.75rem;
	padding:0;
	border:none;
	background:url(../img/assets/main-nav-controls.png) no-repeat 50% 0;
	border-radius:0;
	text-indent:-5000px;
}

.menu-toggle-open{
	background-position:50% 100%;
}

.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 246px;
	/*height: 646px;*/
	position: fixed;
	z-index: 2000;
	background: #fff url(../img/assets/menu-logo.png) no-repeat 50% 95%;
	margin-top: 115px;
	margin-left: -8px;
	background: ;
	border-radius: 0 8px 8px 0;
	box-shadow: 3px 3px 3px #ccc, 3px -3px 3px #ccc;
	padding-bottom: 150px;
}

.main-navigation-sticky{
	float:left;
	width:245px;
	margin-top:20px;
}

.main-navigation-sticky-stuck{
	position:fixed;
	top:0;
	left:0;
}

.main-navigation ul {
	display: none;
	float:left;
	width:100%;
	list-style: none;
	margin: 0;
	padding-left: 0;
	z-index:10001;
	position:absolute;
	top:40px;
	left:0;
}

.main-navigation ul li {
	float: left;
	width:100%;
	position: relative;
}

.main-navigation ul li a {
	float:left;
	width:100%;
	padding:10px 0 10px 66px !important;
	display: block;
	color: #666;
	font-size: 0.9rem;
	text-align: left;
	text-decoration: none;
	transition:background .1s linear;
	-moz-transition:background .1s linear;
	-webkit-transition:background .1s linear;
}

.main-navigation ul li a:hover{
	background-color: #F7F7F7;
	color: #7EB2CB;
}

.main-navigation ul li.current_page_item a{
	
}

.main-navigation ul ul {
	display: none;
	color: #666;
	padding: 5px 0;
	position: absolute;
	top: -5px;
	left: 100%;
	background: #fff;
	border-radius: 0 8px 8px 0;
}

.main-navigation ul li:hover ul{
	display: block;
	box-shadow:	3px 3px 3px #ccc, 3px -3px 3px #ccc;
}

.main-navigation ul li ul li{
	
}

.main-navigation ul li ul li a{
	text-align:left;
}

.main-navigation ul li.current_page_item ul li a{
	text-transform:none;
}

.main-navigation ul li ul li ul {
	
}

.main-navigation ul li ul li a {
	width: 240px;
	padding: 10px 10px 10px 50px !important;
}

@media screen and (max-height: 667px, max-width: 800px) {
	.head-logo{
		background: url(../img/icons/main-banner-logo.png)no-repeat 50% 70%;
		background-size: 250px;
	}
}

@media screen and (max-height: 667px){
	.main-navigation{
		margin-top: 0px !important;
		border-radius: 0;
	}
}

@media screen and (max-height: 691px) {
	.main-navigation{
		margin-top: 50px;
	}
}

@media screen and (max-height: 750px) {
	.main-navigation{
		margin-top: 65px;
	}
}

@media screen and (min-width: 800px) {
	.menu-toggle {
		display: none;
	}
	
	.main-navigation ul {
		display: block;
		float:right;
		width:auto;
		position:relative;
		top:auto;
	}
	
	.main-navigation ul li{
		/*width:auto;*/
	}
	
	.main-navigation ul li a{
		padding:5px 1rem;
		/*text-align:center;*/
	}
}

@media screen and (min-width: 940px) {
	.main-navigation ul li a{
		padding:8px 1.6rem;
	}
}

@media all and (max-width: 800px) {
	#site-navigation{
		display:none;
	}
	
	.top-bar .active{
		background: url(../img/assets/main-nav-controls.png) no-repeat 50% 100%;
	}
	
	.main-navigation-sticky{
		width: 100%;
	}
	
	
	.top-section {
    	height: auto;
    	min-height: 300px;
	}
	
	.hero-video {
    	position: relative;
    	z-index: -1;
	}
	
	.main-navigation{
		clear: none;
		width: 100%;
		height: 454px;
		position: relative; /**/
		margin-top: 0;
		margin-left: 0;
		background:url(../img/icons/menu-logo.png) no-repeat 85% 91% #fff;
		margin-bottom: 88px;
		top: 88px;
	}
	
	.main-navigation ul{
		top: 0px;
		display: block;
		position:relative;
	}
	
	.menu-toggle{
		float: left;
		margin: 8px 22px;
		display: block;
	}

	.main-navigation ul li a{
		width: 80%;
		padding: 8px 0 8px 20px !important;
		margin: 0 10%;
		border-bottom: 1px solid #ccc;
	}
	
	.main-navigation ul li:nth-child(8) a,
	.main-navigation ul li:nth-child(9) a,
	.main-navigation ul li:nth-child(10) a{
		width: 55%;
	}
	
	.main-navigation ul li:nth-child(11) a{
		width: 55%;
		border-bottom: none;
	}	
}

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

	.main-navigation ul li:nth-child(8) a,
	.main-navigation ul li:nth-child(9) a,
	.main-navigation ul li:nth-child(10) a{
		width: 40%;
	}
	
	.main-navigation ul li:nth-child(11) a{
		width: 40%;
	}	

}

/*--------------------------------------------------------------
# CATEGORY PAGE
--------------------------------------------------------------*/

.category-product{
	background: #fff;
	height: 374px;
	padding: 40px 0;
}

.category-product:nth-of-type(2n){
	background: url(../img/assets/section2.png);
}

.product-snippet{

}

.snippet-image{
	max-width: 266px;
	float: left;
}

.snippet-header{
	float: left;
	width: 60%;
	margin-left: 50px;
}

.snippet-header h4{
	font-size: 2rem;
}

.snippet-text{
	float: left;
	width: 60%;
	margin: 20px 0 0 50px;
}

.snippet-text p{
	margin-bottom: 1em;
}

.snippet-more{
	float: left;
	width: 60%;
	margin: 20px 0 0 50px;
}

.snippet-more a{
	text-transform: uppercase;
	color: #7DB1CA;
	font-size: 0.9rem;
	font-weight: 600;
}

@media screen and (max-width: 1600px) {
	.category-product{
		padding: 40px 0px 40px 280px;
		height: 290px;
	}
	
	.snippet-image{
		margin-top: 31px;
		max-width: 185px;
	}
	
	.snippet-header h4{
		font-size: 1.5rem;
	}
	
	.snippet-text p{
		font-size: 0.8rem;
	}
}

@media screen and (max-width: 800px) {
	.category-product{
		height: 100%;
		padding: 40px 50px;
	}
	
	.snippet-image{
		float: none;
		margin: 0 auto;
	}
	
	.snippet-header{
		width: 100%;
		text-align: center;
		margin: 20px 0 0;
	}
	
	.snippet-text{
		width: 100%;
		margin: 20px 0;
	}
	
	.snippet-text p{
		font-size: 0.9rem;
		line-height: 28px;
	}
		
	.snippet-more{
		width: 100%;
		margin: 0 0 20px;
		text-align: center;
	}
}

/*---------IDs for the buttons---------*/


#cat-button-outer{
	height: 140px;
	padding: 0px;
}

#cat-button{
	background: #67CC9E;
	margin: 39px auto;
}

#cat-button:hover{
	background: #7e7e7e;
}

@media screen and (max-width: 1600px) {
	#cat-button-outer{
		padding-left: 280px;
	}
}


/*---------ALSO INTERESTED section---------*/

#also-interested{
	font-size: 2rem;
	color: #fff;
	text-align: center;
}


#interested-inner{
	border-left: none;
}

.interest-header{
	float: left;
	width: 100%;
	margin-bottom: 40px;
}

.interest-part{
	width: 100%;
	float: left;
}

#related-image{
	display: block;
	width: 176px;
	height: 163px;
	margin: 0 auto;
}
.blueSquareWrapper{
	height: 70px;
}

.blueSquare{
	background: #002f53 url(../img/assets/blue-arrow-right.fw.png) 90% 50% no-repeat;
	float: left;
	width: 100%;
	padding: 0px 50px 10px 15px;
	min-height: 70px;
}

.related-product h3{
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-top: 10px;
	font-weight: 600;
	letter-spacing: 0.5px;
	
	width: 100%;
}

.related-link:hover .blueSquare{
	background: #415C69 url(../img/assets/blue-arrow-right.fw.png) 90% 50% no-repeat;
}

.related-link{
	width: 176px;
	height: 163px;
	margin: 0px auto;
}


.but-center{
	float: none !important;
	margin: 35px auto !important;
	padding-top: 2px !important;
}

@media screen and (max-width: 1600px) {
	/*#interested-inner{
		padding-left: 280px;
	}*/
	
	.related-link{
		width: 140px;
		height: 140px;
	}
	
	#related-image{
		height: 140px;
	}
	
	.blueSquare{
		padding: 0px 30px 10px 15px;
	}
	
	.blueSquareWrapper{
		height: 81px;
	}
}

@media screen and (max-width: 800px) {
	#interested-inner{
		padding: 0 20px;
	}
	
	#cat-button-outer{
		padding: 0;
	}
}



/*--------------------------------------------------------------
# PRODUCT PAGE
--------------------------------------------------------------*/

#product-info{
	margin-bottom: 40px;
	border-left: 1px solid #002F53;
}

#product-info h1{
	color: #002F53;
}

#product-info p{
	color: #666;
}

#product-info img{
	float: none;
	margin: 30px auto 0;
}

#key-facts{
	height: 100%;
}

#facts-part{
	margin-bottom: 40px;
}

.fact-list ul{
	width: 47%;
	float: left;
}


.fact-list ul li{
	width: 100%;
	float: left;
	list-style: none;
	margin: 8px 0;
	padding: 0 20px;
	background: url(../img/icons/bulletpoint.png) no-repeat 0 8px;
}

@media screen and (max-width: 1600px) {
	.fact-list ul{
		width: 46%;
	}
	
	#product-info{
		margin-left: 280px;
	}
	
	/*#facts-part{
		margin-left: 280px;
	}*/
	
	#facts-part h1{
		margin-left: 15px;
	}
	
	.rural-protect .quotebutton{
		margin-left: 280px;
	}
}

@media screen and (max-width: 800px) {
	#product-info{
		margin-left: 0;
		border-left: none;
	}
	
	.rural-protect .quotebutton{
		margin-left: 0px;
	}
	
	#facts-part{
		margin-left: 0;
	}
	
	#facts-part h1{
		margin-left: 0;
		text-align: center;
	}
	
	.fact-list ul{
		width: 100%;
	}

	#product-info p{
		font-size: 0.9rem;
		line-height: 28px;
	}
}

@media screen and (max-width: 480px) {
	.news-part{
		padding: 0 25px;
	}
}

/*--------------------------------------------------------------
# MEET THE TEAM
--------------------------------------------------------------*/

.mtt-product{
	background: #fff;
	min-height: 374px;
	height: 100%;
	padding: 40px 0;
}

.mtt-product:nth-of-type(2n){
	background: #F2F7FA;
}

.employee-info{
	float: left;
	width: 50%;
}

.employee-info h2{
	font-weight: 400;
	color: rgb(0, 47, 83);
	margin-bottom: 5px;
}

.employee-info h3{
	color: rgb(125, 177, 203);
	margin-bottom: 30px;
}

.employee-right{
	float: left;
	width: 50%;
}

.employeeWrapper{
	position: relative;
}

.employee-img{
	width: 24%;
	margin: 1px;
	height: 100%;
	float: left;
	position:relative;
	/*margin-bottom: 50px;*/
}

.employee-img img{
	width: 100%;
}

.employee-contact p{
	text-align: right;
	margin-bottom: 5px;
}

.teamHover{
	position: absolute;
	float: left;
	top: 0px;
	width: 100%;
	height: 100%;
	background: #7DB1CA;
	display: none;
	opacity: 0.92;
	padding: 10px 30px;
}

.teamHover:hover{
	cursor: pointer;
}


.teamHover h2,
.teamHover h3{
	color: #fff;
	text-align: center;
	margin: 10px 0;
	font-weight: 700;
}

.teamHover p{
	color: #002F53;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 0.8rem;
	margin-top: 10px;
}

.employee-img:hover .teamHover{
	display: block;	
}

@media screen and (max-width: 1600px) {
	.employee-info{
		padding-left: 280px;
		width: 75%;
	}
	
	.employee-right{
		width: 25%;
		padding-right: 20px;
	}
	
	.page-id-82 .product-snippet{
		margin-right: 40px;
		margin-left: 295px;
	}
}

@media screen and (max-width: 1100px) {
	/*.employeeWrapper .employee-img .teamHover h3,*/
	.employeeWrapper .employee-img .teamHover p{
		display: none;
	}
	
	.employeeWrapper .employee-img .teamHover h3{}
	
	.teamHover h2{
		font-size: 1rem;
	}
	
}

@media screen and (max-width: 800px) {
	.employee-info{
		width: 70%;
		padding: 0 20px;
	}
	
	.employee-right{
		width: 30%;
		padding-right: 20px;
	}
	
	.page-id-82 .product-snippet{
		margin-left: 40px;
	}
	
	.employeeWrapper .employee-img .teamHover h2,
	.employeeWrapper .employee-img .teamHover h3{
		line-height: 19px !important;
	}
}

@media screen and (max-width: 768px) {
	.employee-img{
		width: 32%;
	}
	
}

@media screen and (max-width: 480px) {
	.employee-img{
		width: 49%;
	}

}

@media screen and (max-width: 330px) {
	.employee-img{
		width: 100%;
	}
	
	.employeeWrapper .employee-img .teamHover h3,
	.employeeWrapper .employee-img .teamHover p{
		display: block;
	}
}

/*--------------------------------------------------------------
# NEWS PAGE
--------------------------------------------------------------*/

#news-articles img{
	width: 266px;
	height: 246px;
}

.widget-title{
	color: #002F53;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 1.8rem;
}

.archive{
	min-height:190px !important;
}

.archives{
	list-style: none;
	float: left;
	width: 100%;
	margin: 10px 0;
}

.archives li{
	float: left;
	width: 25%;
}

.archives li a{
	color: rgb(125, 177, 203);
	font-size: 1.1rem;
	font-weight: 600;
}



.entry-title a{
	color: #002F53;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 1.8rem;
}

.more-link{
	color: rgb(125, 177, 203);
	font-weight: 600;
}

#blog-header{
	color: #002F53;
}

.news-entry{
	overflow: hidden;
	border-bottom: 1px solid rgb(102, 102, 102);
	padding-bottom: 25px;
	margin: 50px auto 20px;
}

.news-entry-header h1{
	color: rgb(0, 47, 83);
	text-transform: uppercase;
	width: 45%;
	line-height: 37px;
}

.news-entry-content p:first-of-type{
	font-weight: 400;
}

.news-entry-content p{
	line-height: 28px;
}

.share-story{
	margin-bottom: 120px;
}

.story-newsletter{
	background: #F2F7FA;
	height: 178px;
	padding: 20px 0;
}

@media screen and (max-width: 1600px) {
	#news-articles {
    	padding-left: 280px;
	}
	
	#news-articles img{
		width: 185px;
		height: 171px;
		margin-top: 20px;
	}
	
	.news-entry{
		border-bottom: none;
	}
	
	.mtt-product{
		height: 100%;
	}
	
	.news-entry-content{
		padding-left: 280px;
	}
	
	.entry-title a{
		font-size: 1.4rem;
	}
	
	/*.entry-header{
		padding-left: 280px;
	}*/
	
	.entry-content{
		font-size: 0.9rem;
	}
	
	#blog-header{
		padding-left: 280px;
	}
	
	.share-story{
		padding-left: 280px;
	}
	
	.story-newsletter{
	padding-left: 280px;
	}
}

@media screen and (max-width: 800px) {
	.entry-header{
		padding: 0 20px;
	}
	
	.news-entry-content{
		padding: 0 20px;
	}
	
	#news-articles{
		padding-left: 0;
	}
	
	#news-articles img{
		margin: 0 auto;
	}
	
	.entry-content{
		/*padding: 0px 20px;*/
		line-height: 28px;
	}
	
	.blog .entry-content{
		padding: 0;
	}
	
	.blog .entry-content .entry-content{
		padding: 0 20px;
	}
	
	.blog .archive{
		padding: 30px 30px !important;
	}
	
	#blog-header{
		padding-left: 0;
	}
	
	.share-story{
		padding-left: 0px;
	}
	.story-newsletter{
		padding-left: 0px;
	}
}

/*--------------------------------------------------------------
# CONTACT US PAGE
--------------------------------------------------------------*/
/*div.wpcf7-mail-sent-ok{
	display: none !important;
}*/

.contact-left-content{
	width: 50%;
	float: left;
}

.contact-right-content{
	width: 50%;
	float: right;
}

.contact-form{
	padding: 0.1em 1em 0px;
	background: rgb(225, 226, 225) none repeat scroll 0% 0%;
	color: rgb(0, 0, 0);
	width: 316px;
	float: right;
}

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

#enquiry-form{
	float: left;
	width: 65%;
}

.contact-form h2{
	color: rgb(88, 88, 91);
	margin: 10px 0px;
	font-size: 1.25rem;
}

.form-row{
	margin: 1em 0px;
}

.contact-form p{
	margin-bottom: 0.5px;
}

.contact-intro p{
	font-size: 1.5rem;
	margin-top: 50px;
}

.contact-details p{
	color: rgb(0, 170, 202) !important;
	font-size: 1.5rem;
	margin-bottom: 0.5em;
}

.contact-address p{
	font-size: 1.2rem;
	margin-top: 1.5rem;
}

#newsletter-contact{
	/*padding: 7px;*/
	margin: 20px 0px;
	float: left;
	cursor: pointer;
}

@media screen and (max-width: 1600px) {
	#fosstate{
		padding-left: 273px;
	}
}


@media screen and (max-width: 1074px) {
	
	.contact-left-content{
		width: 100%;
	}
	
	.contact-intro p{
		margin-top: 0px;
	}
	
	.contact-right-content{
		width: 100%;
	}
	
	.contact-form{
		width: 100%;
	}
	
	#enquiry-form{
		width: 100%;
	}
}

@media screen and (max-width: 800px) {
	#fosstate{
		padding-left: 40px;
	}
}

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

	#product-info{
		padding: 0 20px;	/**/
	}

}

/*--------------------------------------------------------------
# 	DEFAULT TEMPLATE
--------------------------------------------------------------*/

.default-page-content{
	padding: 0 40px;
	float: left;
	border-left: 1px solid #002F53;
	margin: 50px 0;
}

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

	
	.default-page-content{
		margin: 50px 0px 50px 280px;
	}
	
	.page-id-82 .default-page-content{
		margin: 50px 0px 50px 0px;
	}
	

}

@media screen and (max-width: 800px) {
	
	.default-page-content{
		padding: 50px 0px;
		border-left: none;
		margin: 0;
	}
	
	.default-page-content p{
		padding: 0px 20px;
	}
	
	.default-page-content h4{
		padding: 0px 20px;
	}
	
	.default-page-content ul{
		margin: 0 0 1.5em 2.25em;
	}
}

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

	.default-page-content{
		padding: 0 !important;
		border-left: none;
		width: 100%;
		margin: 0;
		
	}
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/

footer{
	padding:30px 0;
	background:#002F53;
	color:#fff;
	font-size:0.8rem;
}

footer a{
	float:left;
	color:#fff;
}

#middleFCA{
	margin-bottom: 5px;
}

#middleFCA a{
	float: none;
	text-decoration: underline;
}

footer h4{
	padding:0 0 20px;
}

footer #footer-column-links h4{
	text-transform:uppercase;
	font-size: 1.2rem;
}

footer ul{
	list-style:none;
	float:left;
}

footer ul li{
	width:45%;
	float:left;
}

/***** LINKS COLUMN *****/

#footer-column-links ul{
	margin:0 40px 0 0;
}

#footer-column-links ul li{
	margin:0 0 3px;
	/*clear:both;*/
}

/***** NEWSLETTER COLUMN *****/

footer #newsletterForm{
	
}

footer #newsletterForm input[type=text]{
	float:left;
	width:70%;
	height:33px;
	padding:3px 15px;
	margin:0;
	background:none;
	border:3px solid #fff;
	border-radius:10px;
	-o-border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
}

footer #newsletterForm input[type=submit]{
	float:right;
	width:28%;
	height:33px;
	padding:3px 5px;
	color:#58595b;
	text-transform:uppercase;
	border-radius:10px;
	-o-border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
}

/***** SOCIAL COLUMN *****/

#footer-column-social ul{
	float:right;
	margin:0;
}

#footer-column-social ul li{
	width:auto;
	margin-bottom:10px;
}

#footer-column-social ul li a{
	float:left;
	width:30px;
	height:30px;
	margin:0 0 0 15px;
	background-image:url(../img/icons/linkedin-icon.png);
	background-repeat:no-repeat;
	text-indent:-5000px;
}

#footer-column-social ul li a.social-linkedin{
	background-position: -2px -2px;
}

#footer-column-social ul li a.social-twitter{
	background-image:url(../img/icons/twitter-icon.jpg);
	background-position: 0 0;
}

#footer-column-social .social-media-footer ul li a{
	margin-left:0;
}

#biba{
	margin: 0;
}

.partner-logos a{
	float:left;
	margin:0 0 0 30px;
}

.partner-logos a.broker-network-logo{
	margin-top:17px;
}

.company-info{
	width: 100%;
	float: left;
}

.company-info #phone{
	font-size: 1.2rem;
	margin-bottom: 0;
}

.company-info #email-address{
	font-size: 1rem;
}

@media screen and (max-width:1234px){
	.company-info #email-address{
		font-size: 0.6rem;
	}
}

@media screen and (max-width:957px){
	.company-info #email-address{
		font-size: 1rem;
	}
}


.company-address{
	width: 75%;
	float: left;
}

.company-address .address{
	margin-bottom: 0;
}

.social-media{
	width: 25%;
	float: left;
}

.footer-legal{
	text-align: center;
	margin-top: 20px;

}

.footer-legal p{
	font-size: 0.6rem;
}

/*-------------------------------*/
/*--------SEARCH PAGE------------*/
/*-------------------------------*/

.search-results article footer{
	background: #fff;
}

.search-results article .entry-footer, .posted-on, .byline{
	display: none;
}

.search-results .widget-area{
	display: none;
}

@media screen and (max-width:1600px){
	.search-results .cute-12-desktop{
		padding-left: 280px;
	}
}

@media screen and (max-width:800px){
	.search-results .entry-header{
		padding: 0;
	}
	.search-results .cute-12-desktop{
		padding: 20px 10px;
	}
}

/************************ RESPONSIVE **************************/

@media screen and (max-width:1600px){
	footer{
		padding: 30px 0 30px 244px;
	}
}

@media screen and (max-width:800px){
	footer{
		padding:30px 2%;
	}
	
	#footer-column-newsletter{
		margin:0 0 30px;
	}
	
	.partner-logos{
		float:none;
		display:block;
		width:100%;
		margin:0 auto;
	}
	
	.partner-logos a:last-of-type{
		margin-left:71px;
	}
}

	.social-media-footer{
		display:none;
	}

@media screen and (max-width:550px){
	#footer-column-links{
		margin: 0 0 25px;
		border-bottom: 1px solid #ccc;
		padding-bottom: 30px;
		width: 100%;
	}
	
	footer ul li{
		width: 50%;
	}
	
	.partner-logos{
		width: 100%;
	}
	
	.partner-logos a:last-of-type{
		margin-left: 30px;
		float: right;
	}
	
	#footer-column-social{
		float:none;
		display:block;
		width:100%;
		margin:0 auto;
	}
	
	.social-media{
		display:none;
	}
	
	.social-media-footer{
		display:block;
		width: 12%;
		float: left;
	}
	
	.company-info{
		width: 88%;
		float: right;
	}
	
	.company-info #phone{
		font-size: 1.5rem;
		text-align: right !important;
		font-weight: 400;
	}
	
	.company-info #phone a{
		float: right;
	}
	
	.company-info #email-address{
		font-size: 0.9rem;
		margin-top: 10px;
		text-align: right;
	}
	
	.company-info #email-address a{
		text-align: right;
		width: 100%;
	}
	
	.company-address{
		width: 75%;
		float: right;
		text-align: right;
	}
	
	#footer-column-social ul li a.social-linkedin:first-of-type{
		margin-left:0;
	}
}

#blueHeader{color: #002F53;}

@media screen and (max-width:800px){
	#blueHeader{
		padding-left: 20px;
	}
}


/*----------------MEET THE TEAM POP UP-------------------*/

.fullscreenMask{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background: url(../img/assets/bg-dark-grey.png) repeat 0 0;*/
	background-color: rgba(0,0,0, 0.75);
	z-index: 100000;
	display: none;
}

.fullscreenMaskExpand{display:block;}

.fullscreenMask .fullscreenMaskContent{
	position: fixed;
	top: 20%;
	left: 5%;
	width: 90%;
	min-width: 235px;
	background: #fff;
	display:none;
	height: 355px;
	overflow-y: scroll;
}

.teamMemberDetailsWrapper{
	float: left;
	width: 100%;
	padding: 30px 3%;
}

.teamMember, .teamMemberBlank{
	float: left;
	width: 46%;
	height: 280px;
	margin: 0 2% 30px;
	max-width: 196px;
	cursor: pointer;
}

.teamMemberDetailsWrapper .teamMember{
	width: 100%;
	max-width: none;
	margin: 0;
	height: auto;
	cursor: default;
}

.teamMemberImage{
	float: left;
	width: 150px;
	height: 150px;
	background-repeat: no-repeat;
	background-position: -149px -199px;
}

.teamMemberImage img{
	width: 150px;
	height: 150px;
}

.teamMemberText{
	float: left;
	width: 100%;
	padding: 5px 0 0;
}

.teamMemberText h2{
	color: #002F53;
}

.teamMemberText h3{
	margin-bottom: 10px;
}

.teamMemberText p{
	margin-bottom: 0;
}

.teamMemberText .teamMemberTextDesc p{
	margin-top: 10px;
}

@media screen and (min-width:1050px){
	
	.fullscreenMask .fullscreenMaskContent{
		width: 400px;
		left: 50%;
		margin-left: -220px;
	}

	.fullscreenMask .fullscreenMaskContent{
		top: 20%;
		width: 847px;
		margin-left: -451px;
	}
	
	.teamMemberDetailsWrapper .teamMember .teamMemberImage{
		float: left;
	}
	
	.teamMemberDetailsWrapper .teamMember .teamMemberText{
		float: right;
		width: 75%;
	}
	
}

@media screen and (max-width:600px){
	.fullscreenMask .fullscreenMaskContent{
		top: 10%;
	}
	
	.teamMemberImage{
		display: none;
	}
	
	.teamMemberTextDesc{
		font-size: 0.8rem;
	}
}


/*----------------------*/

.homeNewsItemShareBox{
	position:absolute;
	top:96px;
	right:-28px;
	width: 132px;
	display: none;
}

.homeNewsItemShareBox ul{
	float: left;
	list-style: none;
	margin: 0px;
}

.homeNewsItemShareBox ul li{
	float:left;
	margin:0 10px 0 0;
}

.homeNewsItemShareBox ul li:last-of-type{
	margin:0;
}

.homeNewsItemShareBox ul li a{
	float:left;
	width:27px;
	height:26px;
	background-image:url("../img/icons/social-media-blue.png");
	text-indent:-5000px;
	opacity:0.8;
}

.homeNewsItemShareBox ul li a.homeNewsItemShareBoxItemFacebook{
	background-position:-72px 0;
}
.homeNewsItemShareBox ul li a.homeNewsItemShareBoxItemTwitter{
	background-position:-37px 0;
}
.homeNewsItemShareBox ul li a.homeNewsItemShareBoxItemLinkedin{
	background-position:0 0;
}

.homeNewsItemShareBox ul li a:hover{
	opacity:1;
}

.homeNewsItemWrapper .homeNewsItemShareImage{
	position:absolute;
	bottom:0;
	right:0;
	width:72px;
	height:92px;
}

.homeNewsItemWrapper .homeNewsItemShare{
	position:absolute;
	bottom:0;
	right:0;
	width:72px;
	height:92px;
	background-image:url(../img/assets/share.png);
}

.homeNewsItemWrapper .homeNewsItemShare area{
	display:block;
	visibility:visible !important;
}

.homeNewsItemWrapper .homeNewsItemShare:hover{
	background-image:url(../img/assets/share-active.png);
}

#singlePageShares{
	position:relative;
	display:block;
	top: 0;
	left: 0;
}

/*////////////TESTIMONIAL PAGE//////////*/


.page-template-template-testimonials .testimonial-quote{
	margin: 0;
	width: 100%;
}

.page-template-template-testimonials .testimonial-quote p{
	margin-bottom: 1em;
}

.page-template-template-testimonials .testimonial_author{
	margin-bottom: 3.5em;
	float: left;
}

@media screen and (max-width:800px){
	#singlePageShares{
		margin: 0 20px;
	}
	
	.page-template-template-testimonials .testimonial_author{
		padding-left: 20px;
	}
}

@media screen and (max-width:800px){
	#googlemap{
		padding-left: 0 !important;
	}
}

/*------------*/

.error404 .row{
	padding: 80px 0px;
}






/*------------------------------------------------------------------------------------*/
/*---------------------------------MCCLARRON AFFINITY---------------------------------*/
/*------------------------------------------------------------------------------------*/


#mcc-affinity-section p{
	/*font-family: 'Khula', sans-serif;*/
	/*font-family: 'Comfortaa', cursive;*/
	font-family: 'Raleway', sans-serif;
}

#mcc-affinity-section h2{
	color: #fff;
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	font-size: 5rem;
	width: 100%;
	line-height: 100%;
}

#mcc-affinity-section .home-tile-content-centered .affinity-tile-intro{
	max-width: 40%;
	margin: 60px auto;
	float: none;
	overflow: hidden;
	text-align: center;
	padding-left: 0;
}

#mcc-affinity-section h3{
	text-transform: uppercase;
	color: #fff;
	font-size: 0.85rem;
	letter-spacing: 2px;
	margin-top: 6px;
	font-family: 'Comfortaa', cursive;
}

#mcc-affinity-section video{
	min-height: 100%;
	width: 100%;
	object-fit: cover;
	background: transparent url(../img/older/content/affinity-video-holder.png) no-repeat 0 0;
	position: initial;
}

/*#product-wrapper-9 #mcc-affinity-section h2{
	width: 55%;
}*/

#mcc-affinity-section li a{
	color: #fff;
	text-transform: uppercase;
	font-size: 0.65rem;
	letter-spacing: 1px;
}

#mcc-affinity-section li a:hover{
	text-decoration: none;
}

.margin-auto{
	margin: 0 auto;
}

/*----LEFT STICKY NAV----*/

#mcc-affinity-section .left-nav-sticky{
	position: fixed;
	height: 100vh;
	width: 120px;
	z-index: 5000;
}

#mcc-affinity-section .left-nav-sticky .sticky-nav-logo{
	width: 58px;
	height: 40px;
	position: absolute;
	background: url('../img/affinity/smaller-mcclarrons-logo.png');
	left: 30px;
	top: 5%;
	z-index: 50000;
}

.menu-toggle-affinity{
	position: absolute;
	top: 20%;
	
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
    border-radius: 0;
    color: #fff;
    float: right;
    padding: 22px 13px;
	left: 18px;
}

.main-menu-toggle-line-wrapper{
	float: left;
    height: 20px;
    position: relative;
    width: 40px;
}

.main-menu-toggle-line{
	background-color: #fff;
    height: 1px;
    left: 0;
    position: absolute;
    transition: all 1s ease 0s;
}

#main-menu-toggle-line-top{
	top: 0;
    width: 65%;
}
#main-menu-toggle-line-middle{
	top: 8px;
    width: 75%;
}
#main-menu-toggle-line-bottom{
	top: 16px;
    width: 60%;
}

@media screen and (min-width:1025px){
	#main-menu-toggle:hover #main-menu-toggle-line-top{width:100%/*60%*/;}
	#main-menu-toggle:hover #main-menu-toggle-line-middle{width:100%/*90%*/;}
	#main-menu-toggle:hover #main-menu-toggle-line-bottom{width:40%/*80%*/;}
}


.menu-toggle-affinity-close #main-menu-toggle-line-top{
	/*transform: rotate(-45deg);
	top: 5px;*/
	width: 100%;
	/*height: 2px*/
}

.menu-toggle-affinity-close #main-menu-toggle-line-middle{
	/*opacity: 0;*/
	width: 100%;
}

.menu-toggle-affinity-close #main-menu-toggle-line-bottom{
	/*transform: rotate(45deg);
	top: 5px;*/
	width: 40%;
	/*height: 2px;*/
}

@media screen and (min-width:1025px){
	.menu-toggle-affinity-close:hover #main-menu-toggle-line-top{width:65% !important;}
	.menu-toggle-affinity-close:hover #main-menu-toggle-line-middle{width:75% !important;}
	.menu-toggle-affinity-close:hover #main-menu-toggle-line-bottom{width:60% !important;}
}

.sign-up-nav-fixed{
	position: absolute;
	top: 14%;
	left: 30px;
}

.sign-up-nav-fixed a{
	text-transform: uppercase;
	color: #fff;
	font-size: 0.68rem;
	letter-spacing: 1px;
}

.sign-up-nav-fixed a:hover{
	text-decoration: none;
}

.sign-up-toggle-line{
	background-color: #fff;
    height: 1px;
    left: 0;
    position: absolute;
    transition: width 1s ease 0s;
	top: 25px;
    width: 30%;
}

.next-bookmark-fixed a:hover{
	text-decoration: none;
}

@media screen and (min-width:1025px){
	.sign-up-nav-fixed:hover .sign-up-toggle-line{width:95%;}
}

.next-bookmark-fixed{
	position: absolute;
	bottom: 10%;
	transform: rotate(-90deg);
	left: 0px;
	/*-added-*/
	left: -28px;
	width: 125px;
}

.next-bookmark-fixed a{
	color: #fff;
	text-transform: uppercase;
	font-size: 0.65rem;
	letter-spacing: 2px;
}

.next-bookmark-toggle-line{
	background-color: #fff;
    height: 1px;
    left: 0;
    position: absolute;
    transition: width 1s ease 0s;
	top: 30px;
    width: 10%;
}

.next-bookmark-fixed a:hover{
	text-decoration: none;
}

@media screen and (min-width:1025px){
	.next-bookmark-fixed:hover .next-bookmark-toggle-line{width:95%;}
}


.product-blobs-wrapper{
	width: 50px;
	top: 42%;
	position: absolute;
	left: 10px;
}

.product-blobs-item{
	list-style: none;
	position: relative;
	float: left;
	width: 100%;
	clear: both;
}

.product-blobs-item a{
	float: left;
	width: 100%;
	height: 35px;
}

.product-blobs-blob{
	position: absolute;
	left: calc(50% - 9px);
	width: 18px;
	height: 18px;
	border-radius: 50%;
	list-style: none;
	margin: 18px 0;
	
	-webkit-transition: -webkit-transform .5s;
	-moz-transition: -moz-transform .5s;
	transition: transform .5s;
	border: 1px solid #fff;
	-webkit-transform: scale(0.6);
	-moz-transform: scale(0.6);
	-ms-transform: scale(0.6);
	-o-transform: scale(0.6);
	transform: scale(0.6);
}

.product-blobs-text{
	position: absolute;
	left: 50px;
	width: 149px;
	top: 21px;
	transition: opacity 0.3s;
	opacity: 0;
	font-family: 'Comfortaa', cursive;
	font-size: 0.6rem;
}

.product-blobs-text-menu-active{
	opacity: 1;
	transition: left 0.3s, opacity 0.3s;
	
}

.product-blobs-item:hover .product-blobs-text{
	opacity: 1;
}

.product-blobs-text-menu-active:hover{
	left: 55px;
}


/*.product-blobs-text:hover{
	font-size: 0.75rem;;
}

.product-blobs-blob:nth-of-type(1){top: 0px;}
.product-blobs-blob:nth-of-type(2){top: 35px;}
.product-blobs-blob:nth-of-type(3){top: 75px;}
.product-blobs-blob:nth-of-type(4){top: 110px;}
.product-blobs-blob:nth-of-type(5){top: 145px;}
.product-blobs-blob:nth-of-type(6){top: 180px;}
.product-blobs-blob:nth-of-type(7){top: 215px;}
.product-blobs-blob:nth-of-type(8){top: 250px;}
.product-blobs-blob:nth-of-type(9){top: 285px;}*/


.product-blobs-item a:hover .product-blobs-blob{
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.product-blob-active{
	transform: scale(1);
	background-color: #fff;
}

/*.product-blobs-item a:hover .product-blobs-text{
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	-o-transform: scale(0.7);
	transform: scale(0.7);
}*/





/*----FIRST HERO BACKGROUND SECTION----*/

.hero-wrapper.home-tile{
	background: rgba(0,0,0,0.3);
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.hero-wrapper.home-tile-mobile{
	width: 100%;
	height: 85vh; /***TEMP FIX***/
	max-height: 100vh;
	overflow: hidden;
}

.hero-image-full{
	width: 100%;
	height: 100vh;
}

.home-tile-sticky{
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
}

.home-tile-sticky-mobile{
	position: absolute !important;
	top: 0;
	height: 100%;
}

/*----FIRST HERO BACKGROUND SECTION CONTENT----*/

.home-tile-content{
	width: 100%;
	height: 100%;
}

.home-tile-content-centered{
	position: relative;
}

.main-affinity-logo{
	width: 590px;
	height: 310px;
	/*width: 397px;
	height: 195px;*/
	margin: 0 auto;
	/*margin-bottom: 30px;*/
	background: url('../img/affinity/main-affinity-logo.png');
	background-size: 100%;
	background-repeat: no-repeat;
}

.affinity-cta-button{
	/*width: 165px;*/
	margin: 0 auto;
	overflow: hidden;
	/*height: 40px;
	padding-top: 6px;*/
	
	width:auto;
	display:table;
	padding:0;
	height:auto;
}

.affinity-more-info-text .affinity-cta-button{
	margin-top:50px;
}

.affinity-cta-button a{
	border: 0.5px solid rgba(255,255,255, 0.25);
	/*padding: 10px 20px;*/
	background: rgba(255,255,255, 0.05);
	color: #fff;
	text-transform: uppercase;
	/*font-size: 0.65rem;*/
	letter-spacing: 2px;
	transition: ease 1s;
	
	display: block;
	padding: 15px 40px;
	font-size: 0.8rem;
}

.affinity-cta-button a:hover{
	/*background: rgba(255,255,255, 0.2);*/
	text-decoration: none;
	
	background-color: rgba(239,200,78,0.2);
}

.affinity-sign-up .affinity-cta-button{
	width: auto;
	margin: 0;
}

/*.home-tile-image{
	min-height: 100vh;
}*/

/*-----SECTIONS------*/

.affinity-tile-intro,
.affinity-tile-more-info{
	color: #fff;
	text-transform: uppercase;
	font-size: 1.1rem;
	letter-spacing: 7px;
	padding-left: 55px;
}

.affinity-tile-intro{
	margin-bottom: 80px;
}

.affinity-tile-more-info{
	font-size: 1rem;
}

.affinity-tile-wrapper{
	height: 100vh;
	position: relative;
	overflow: hidden;
}

/*.affinity-tile-wrapper:nth-of-type(1){z-index:1;}
.affinity-tile-wrapper:nth-of-type(2){z-index:2;}
.affinity-tile-wrapper:nth-of-type(3){z-index:3;}
.affinity-tile-wrapper:nth-of-type(4){z-index:4;}
.affinity-tile-wrapper:nth-of-type(5){z-index:5;}
.affinity-tile-wrapper:nth-of-type(6){z-index:6;}
.affinity-tile-wrapper:nth-of-type(7){z-index:7;}
.affinity-tile-wrapper:nth-of-type(8){z-index:8;}
.affinity-tile-wrapper:nth-of-type(9){z-index:9;}*/

.affinity-tile-image{
	height: 100%;
	top: 0;
	z-index: -1;
	background-attachment: fixed;
}

.affinity-tile-image-mobile{
	height: 100%;
	top: 0;
	z-index: -1;
}

/*.affinity-tile-image-stuck{
	position: fixed;
	top: 0;
}*/

.affinity-tile-content{
	position: absolute;
	width: 100%;
	height: 100%;
}

.affinity-content-holder{
	position: relative;
	overflow: hidden;
}

.affinity-tile-wrapper:last-of-type .affinity-content-holder{
	position: inherit;
}

/*-----Animating Line------*/

.animating-line-holder{
	position: absolute;
	width: 40px;
	height: 50px;
	top: -6px;
	left: 0;
}

.affinity-tile-wrapper:last-of-type .animating-line-holder{
	position: relative;
	top: 45px;
}

.animating-line{
	background-color: #fff;
	height: 1px;
	/*left: 0;
	position: absolute;*/
	transition: width 1s ease 0s;
	margin-top: 19px;
	width: 50%;
	float: left;
}

.affinity-content-holder:hover .animating-line{
	animation-name: caterpillarLine;
	animation-duration: 0.65s;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
}

@keyframes caterpillarLine{
    0%	{float: left; width: 50%; }
	33.33%	{float: left; width: 100%; }
	33.34%	{float: right; width: 100%;  }
	66.66%	{float: right; width: 0%;  }
	66.67%	{float: left; width: 0%;  }
	100% {float: left; width: 50%; }
}

/*--end of animating line--*/

/*------MORE INFO SECTION-------*/

.affinity-more-info{
	float: left;
	width: 100%;
	position: relative;
	margin-top: 25px;
	margin-left: 50px;
}

.affinity-more-info{
	float: left;
	width: 75%;
	position: relative;
	/*margin-top: 50px;*/
	margin-left: 0px;
	
	margin-top: 0;
}

.affinity-sign-up{
	width: 100%;
	float: left;
	margin-top: 50px;
	margin-bottom: 15px;
}

.affinity-more-info-holder{
	float: left;
	width: 70%;
}

.affinity-more-info-holder .affinity-more-info-text{
	float: left;
	width: 100%;
	/*height: 0px;
	opacity: 0;*/
	margin-top: 15px;
	transition: all 1s;	
}

/*.affinity-more-info-holder:hover .affinity-more-info-text{
	height: 150px;
	opacity: 1;
}*/

.affinity-more-info-holder-expand{
	height: 150px !important;
	opacity: 1 !important;
}

.affinity-more-info-text p{
	color: #fff;
	font-size: 1.1rem;
	line-height: 175%;
	font-family: 'Comfortaa', cursive;
}

.affinity-contact-form-holder{
	float: left;
	/*width: 55%;*/
	width: 100%;
	/*margin-left: 30px;*/
	padding-top: 10px;
}

.affinity-contact-form-holder input[type="text"],
.affinity-contact-form-holder input[type="email"],
.affinity-contact-form-holder input[type="tel"],
.affinity-contact-form-holder input[type="url"],
.affinity-contact-form-holder input[type="date"],
.affinity-contact-form-holder input[type="password"],
.affinity-contact-form-holder textarea{
	background: rgba(255,255,255, 0.1);
	color: #fff;
	float: left;
}

.affinity-contact-form-holder input[type="text"]::placeholder,
.affinity-contact-form-holder input[type="email"]::placeholder,
.affinity-contact-form-holder textarea::placeholder
{
  color: #fff;
}

.affinity-contact-form-holder input[type="text"]:focus,
.affinity-contact-form-holder input[type="email"]:focus,
.affinity-contact-form-holder textarea:focus
{
	outline: none;
	background: rgba(255,255,255, 0.2);
}

.affinity-contact-form-holder p .sensitive-data{
	color: #fff;
	font-size: 0.8rem;
	padding-left: 11px;
}

.affinity-contact-form-holder form button,
.affinity-contact-form-holder input[type="button"],
.affinity-contact-form-holder input[type="reset"],
.affinity-contact-form-holder input[type="submit"]{
	border: 0.5px solid rgba(255,255,255, 0.25);
	/*padding: 8px 15px;*/
	/*background: rgba(255,255,255, 0.05);*/
	color: #fff;
	text-transform: uppercase;
	/*font-size: 0.65rem;*/
	letter-spacing: 2px;
	transition: ease 1s;
	font-weight: normal;
	line-height: normal;
	background: rgba(255,255,255, 0.05);
	font-size: 0.8rem;
	padding: 15px 40px;
}

.affinity-contact-form-holder form button:hover,
.affinity-contact-form-holder input[type="button"]:hover,
.affinity-contact-form-holder input[type="reset"]:hover,
.affinity-contact-form-holder input[type="submit"]:hover{
	/*background: rgba(255,255,255, 0.2);*/
	text-decoration: none;
	background-color: rgba(239,200,78,0.2);
}


/*------CONTACT SECTION-------*/

.contact-extra-info-holder{
	float: left;
	/*width: 70%;*/
	width: 60%;
	margin-top: 30px;
}

.contact-extra-info-holder p,
.contact-extra-info-holder a{
	color: #fff;
	font-size: 1.1rem;
	line-height: 175%;
}

.contact-extra-info-holder .contact-employee-image{
	float: left;
	width: 50%;
	max-width: 180px;
}

.contact-extra-info-holder .contact-employee-image img{
	border-radius: 50%;
	width: 180px;
}

.contact-extra-info-holder .contact-employee-details{
	float: left;
	width: 50%;
	margin-left: 30px;
	padding-top: 56px;
}

.contact-extra-info-holder .contact-employee-details p,
.contact-extra-info-holder .contact-employee-details a{
	color: #fff;
	font-size: 0.77rem;
	line-height: 175%;
}


/*------BLOG SECTION-------*/


.affinity-blog-holder{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.affinity-blog-item{
	position: absolute;
	height: auto;
	width: 500px;
	-webkit-transition: filter 2s;
	-moz-transition: filter 2s;
	transition: filter 2s;
}



/* THE PULSING ANIMATION */
@keyframes statCirclePulse{
    0%	{-webkit-transform:scale(1);-moz-transform:scale(1);transform:scale(1);}
	50%	{-webkit-transform:scale(0.9);-moz-transform:scale(0.9);transform:scale(0.9);}
	100%{-webkit-transform:scale(1);-moz-transform:scale(1);transform:scale(1);}
}

@keyframes statCirclePulseLarge{
    0%	{-webkit-transform:scale(1);-moz-transform:scale(1);transform:scale(1);}
	50%	{-webkit-transform:scale(0.8);-moz-transform:scale(0.8);transform:scale(0.8);}
	100%{-webkit-transform:scale(1);-moz-transform:scale(1);transform:scale(1);}
}

.circle-pulse-wrapper{
	float: left;
	height: 50px;
	margin-bottom: 0;
	position: absolute;
	left: -35px;
	top: -10px;
}

.circle-pulse{
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	border: 1px solid #fff;
	background: rgba(255,255,255,0.2);
	opacity: 0.5;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	-webkit-animation: statCirclePulseLarge 3s infinite;
	-moz-animation: statCirclePulseLarge 3s infinite;
	animation: statCirclePulseLarge 3s infinite;
}

.circle-pulse-inner{
	width: 16px;
	height: 16px;
	margin: -8px 0 0 -8px;
	-webkit-animation-delay: 0.7s;
	-moz-animation-delay: 0.7s;
	animation-delay: 0.7s;
	cursor: pointer;
	z-index: 1;
}

.circle-pulse-outer{
	width: 36px;
	height: 36px;
	margin: -18px 0 0 -18px;
	-webkit-animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

.circle-pulse-outer:hover{
	cursor: pointer;
}

/*---End of pulsing circles--*/

/*--------SCALING ANIMATION----------*/
.scalable-object-50{
	/*transform: scale(0.80) translateY(0);*/
	transition: all 2s;
	filter: blur(25px);
}

.scalable-object-70{
	transform: scale(0.50) translateY(0);
	transition: all 3s;
	opacity: 0;
}

.delay-1s{ transition-delay: 1s; }
.delay-15s{ transition-delay: 1.5s; }
.delay-2s{ transition-delay: 2s; }

.scaled-faded-in{
	/*transform: scale(1) translateY(0);*/
	filter: blur(0px);
}

/*.scalable-object-90{
	transform: scale(0.90) translateY(0);
	transition: all 0.45s;
	width: auto;
}
.scalable-object-95{
	transform: scale(0.95) translateY(0);
	transition: all 0.45s;
	width: auto;
}

.fully-scaled{
	transform: scale(1);
}

.delay-scale-4{ transition-delay: .4s; }
.delay-scale-8{ transition-delay: .8s; }



/*----End of scale animation -----*/

#affinity-blog-post-1{top: 10%; left: 19%;}
#affinity-blog-post-2{top: 25%; left: auto; right: 14%;}
#affinity-blog-post-3{top: 54%; left: auto; right: 8%;}
#affinity-blog-post-4{top: 74%; left: 20%;}

.affinity-blog-holder a{
	text-transform: uppercase;
	color: #fff;
	font-size: 0.85rem;
	letter-spacing: 2px;
	font-family: 'Comfortaa', cursive;
}

.affinity-blog-holder a:hover{
	text-decoration: none;
}

.affinity-blog-holder .affinity-blog-dropdown-text{
	float: left;
	width: 100%;
	padding-top: 15px;
	opacity: 0;
	-webkit-filter: blur(1px);
	filter: blur(1px);
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
}

.affinity-blog-item:hover .affinity-blog-dropdown-text{
	opacity: 1;
	-webkit-filter: blur(0px);
	filter: blur(0px);
}

.affinity-blog-holder .affinity-blog-dropdown-text p{
	color: #fff;
	font-size: 0.77rem;
}

.affinity-blog-holder .affinity-blog-dropdown-text .more-link{
	text-transform: uppercase;
	letter-spacing: 3px;
	float: left;
	clear: both;
	width: 100%;
	font-size: 0.77rem;
	padding-top: 10px;
}




.go-to-mcclarrons{
	position: absolute;
	bottom: 70px;
	right: 40px;
}

.to-to-mcclarrons{
	position: absolute;
	bottom: 40px;
	right: 40px;
}

.go-to-mcclarrons a,
.to-to-mcclarrons a{
	color: #fff;
	text-transform: uppercase;
	font-size: 0.7rem;
	letter-spacing: 2px;
	padding: 10px 0;
}

/*-- Affinity Amends 21st June --*/


.affinity-footer{
	position: relative;	
	float: left;
	width: 100%;
	/*height: 0px;*/
	transition: height 2s;
	background-color: #fff;
	overflow: hidden;
}

.affinity-footer-open{
	height: 150px;
}

.affinity-footer-column-30{ float: left; width: 30%; }
.affinity-footer-column-40{ float: left; width: 40%; }

#affinity-footer-logo img{ width: 190px; margin: 0 auto; padding: 23px 0; }
#affinity-footer-fca p{ text-align: center; font-size: 0.9rem; padding-top: 43px; margin: 0;  }
#affinity-footer-contact{ padding-top: 23px; }
#affinity-footer-contact p{ text-align: center; margin-bottom: 5px; font-size: 0.9rem; }
#affinity-footer-contact p img{ display: inline-block; margin-right: 10px; width: 15px; margin-top: 6px; }

/*---------RESPONSIVE----------*/

/*---Width--*/

@media screen and (max-width: 1500px) {
	.affinity-content-holder{
		margin-left: 250px;
	}
	
	#affinity-blog-post-2{
		top: 30%;
		right: 5%;
	}
}

@media screen and (max-width: 1300px) {
	#mcc-affinity-section h2{
		font-size: 4rem;
	}
}

@media screen and (max-width: 1245px) {
	#mcc-affinity-section .home-tile-content-centered .affinity-tile-intro{
		max-width: 60% !important;
	}
}

@media screen and (max-width: 1175px) {
	/*-Blog-*/
	
	.affinity-blog-holder{
		position: relative;
		width: auto;
		height: auto;
		top: auto;
		left: auto;
	}
	.affinity-blog-item{
		position: relative;
		float: left;
	}
	.affinity-blog-item{
		width: 75%;
		margin-top: 50px;
	}
	#affinity-blog-post-1,
	#affinity-blog-post-2,
	#affinity-blog-post-3,
	#affinity-blog-post-4{
		left: 50px;
		top: auto;
	}
	.affinity-blog-holder .affinity-blog-dropdown-text{
		height: 0;
		transition: all 1s, opacity 0.3s;
		width: 100%;
	}
	.affinity-blog-item:hover .affinity-blog-dropdown-text{
		height: 115px;
		transition: all 1s, opacity 2s;
	}
}

@media screen and (max-width: 1050px) {
	#mcc-affinity-section h2{
		font-size: 3.5rem;
	}
}

@media screen and (max-width: 900px) {
	.contact-extra-info-holder{
		width: 100%;
	}
	#affinity-footer-logo{ width: 30%; }
	#affinity-footer-fca{ width: 65%; }
	#affinity-footer-contact{ width: 100%; padding: 0 0 30px; }
}

@media screen and (max-width: 850px) {
	#mcc-affinity-section h2{
		font-size: 3rem;
	}
	.affinity-tile-intro, .affinity-tile-more-info{
		font-size: 0.9rem;
		letter-spacing: 6px;
	}
}

@media screen and (max-width: 768px) {
	.main-affinity-logo{
		width: 400px;
		height: 195px;
	}
	
	.sign-up-nav-fixed,
	.next-bookmark-fixed,/*,
	.product-blobs-wrapper*/.product-blobs-blob{
		display: none;
	}
	
	.menu-toggle-affinity{
		z-index: 50000;
	}
	.product-blobs-wrapper{
		height: 0vh;
		overflow: hidden;
		background: rgba(0,0,0,0.85);
		width: 100%;
		top: auto;
		left:auto;
		position: absolute;
		transition: all 0.5s;
	}	
	.product-blobs-wrapper-dark-bg{
		height: 100vh;
	}
	.product-blobs-item{
		width: 270px;
		float: none;
		overflow: hidden;
		margin: 2% auto;
	}
	#mcc-affinity-section li a{
		text-align: center;
	}
	.product-blobs-item:nth-of-type(1){
		margin-top: 80px;
	}
	.product-blobs-text{
		position: relative;
		left:auto;
		width:100%;
		top:auto;
		font-size: 1.3rem;
		font-family: 'Playfair Display', serif;
		text-transform: none;
		
		opacity: 1;
		transition: left 0.3s, opacity 0.3s;
	}
	.product-blobs-text-menu-active:hover{
		left: auto;
		text-decoration: underline;
	}
	
	#mcc-affinity-section .left-nav-sticky{
		width: 100vw;
		height: 65px;
	}
	
	#mcc-affinity-section .left-nav-sticky .sticky-nav-logo{
		top: 19px;
	}
	.menu-toggle-affinity{
		left: auto;
		right: 18px;
	}
	
	.affinity-content-holder{
		margin-left: 0;
		padding: 0 115px;
	}
	#mcc-affinity-section h2{
		font-size: 2.5rem;
		width: 100%;
		line-height: 125%;
	}
	.affinity-more-info-holder{
		width: 91%;
	}
	.affinity-tile-intro{
		padding-left: 0px;
	}
	.affinity-more-info{
		margin-top: 20px;
	}
	.affinity-contact-form-holder{
		width: 100%;
		margin-left: 0px;
		padding-top: 38px;
	}
	.animating-line{
		display: none;
	}
	
	.affinity-tile-intro,
	.affinity-more-info,
	#mcc-affinity-section h2{
		text-align: center;
		width: 100%;
	}
	
	#mcc-affinity-section h2{
		max-width: 100% !important;
	}
	
	.affinity-sign-up .affinity-cta-button{
		width: 140px;
		margin: 0 auto;
	}
	
	/*-CONTACT-*/
	
	.contact-extra-info-holder .contact-employee-image{
		float: none;
		margin: 0 auto;
	}
	.contact-extra-info-holder .contact-employee-details{
		float: left;
		width: 100%;
		padding-top: 20px;
		text-align: center;
		margin-left: 0;
	}
	
	
	/*-Blog-*/
	
	.affinity-blog-holder{
		position: relative;
		width: auto;
		height: auto;
		top: auto;
		left: auto;
	}
	.affinity-blog-item{
		position: relative;
		float: left;
	}
	.affinity-blog-item{
		width: calc(100% - 50px);
		margin-top: 5px;
	}

	
	#affinity-footer-logo{ width:100%; padding:0 20px; }
	#affinity-footer-logo p{ margin-bottom:0; }
	#affinity-footer-fca{ width:100%; padding:0 20px; }
	#affinity-footer-fca p{ padding:0 0 30px; }
	#affinity-footer-contact{ width:100%; padding:0 20px 30px; }

}

@media screen and (max-width: 480px) {
	.main-affinity-logo{
		background-size: 100%;
		background-repeat: no-repeat;
		background-position: 50% 0%;
		width: 300px;
		height: 150px;
	}
	
	#mcc-affinity-section .left-nav-sticky{
		height: 50px;
		background: rgba(0,0,0,0.4);
	}
	
	.menu-toggle-affinity{
		top: 10px;
		padding: 5px 5px;
	}
	
	#mcc-affinity-section .left-nav-sticky .sticky-nav-logo{
		width: 45px;
		height: 35px;
		top: 10px;
		background-repeat: no-repeat;
		background-size: 100%;
	}
	
	#mcc-affinity-section .home-tile-content-centered .affinity-tile-intro{
		margin: 35px auto;
	}
	
	.affinity-content-holder{
		padding: 0 25px;
	}
	
	#mcc-affinity-section h2{
		font-size: 1.5rem;
	}
	
	#mcc-affinity-section h3{
		font-size: 0.65rem;
	}
	
	.affinity-tile-intro, .affinity-tile-more-info{
		font-size: 0.8rem;
		letter-spacing: 2px;
	}
	
	.affinity-more-info-text p{
		font-size: 0.9rem;
	}
	
	.affinity-tile-intro{
		margin-bottom: 60px;
	}
	
	/*.affinity-more-info{
		margin-top: 40px;
	}
	
	.contact-extra-info-holder{
		margin-top: 0px;
	}*/
	
	.affinity-contact-form-holder{
		padding-top: 10px;
	}
	
	/*-BLOG-*/
	
	.circle-pulse-wrapper{ display: none; }
	
	#affinity-blog-post-1, #affinity-blog-post-2, #affinity-blog-post-3, #affinity-blog-post-4{ left: 0; }
	
	.affinity-blog-item{
		margin-top: 10px;
		width: 100%;
	}
	
	.affinity-blog-holder a{
		font-size: 0.7rem;
		letter-spacing: 1px;
	}
	
	.affinity-blog-item .affinity-blog-dropdown-text{
		display: none;
	}
	
	.to-to-mcclarrons{ display: none; }
	.go-to-mcclarrons{ bottom: 10px; right: 20px; }
}


/*--Height---*/


@media screen and (max-height: 768px) and (min-width: 768px){
	.product-blobs-wrapper{
		top: 37%;
	}
	
	.main-affinity-logo{
		width: 450px;
		height: 230px;
	}
	
	#mcc-affinity-section h2{
		font-size: 3rem;
	}
	
	.affinity-more-info{
		margin-top: 10px;
	}
	
		.affinity-blog-holder{
		position: relative;
		width: auto;
		height: auto;
		top: auto;
		left: auto;
	}
	.affinity-blog-item{
		position: relative;
		float: left;
	}
	.affinity-blog-item{
		width: 75%;
		margin-top: 5px;
	}
	#affinity-blog-post-1,
	#affinity-blog-post-2,
	#affinity-blog-post-3,
	#affinity-blog-post-4{
		left: 54px;
		top: auto;
	}
	.affinity-blog-holder .affinity-blog-dropdown-text{
		height: 0;
		transition: all 1s, opacity 0.3s;
		width: 100%;
	}
	.affinity-blog-item:hover .affinity-blog-dropdown-text{
		height: 115px;
		transition: all 1s, opacity 2s;
	}
}

@media screen and (max-height: 650px) and (min-width: 1175px){
	.contact-extra-info-holder{
		margin-top:0;
	}
	
	.affinity-contact-form-holder{
		padding-top: 0;
	}
	
	.affinity-blog-item{
		margin-top: 5px;
	}
	
	.affinity-blog-holder{
		position: relative;
		width: auto;
		height: auto;
		top: auto;
		left: auto;
	}
	
	#affinity-blog-post-1, #affinity-blog-post-2,
	#affinity-blog-post-3, #affinity-blog-post-4{
		left: 54px;
		top: auto;
	}
}

@media screen and (max-height: 350px) and (max-width: 580px){
	.main-affinity-logo{
		width: 225px;
		height: 115px;
		margin-top: 70px;
	}
	
	.home-tile-content .affinity-tile-intro{
		margin: 20px auto !important;
	}
	
	.affinity-cta-button{
		width: 145px;
	}
	
	.affinity-cta-button a{
		font-size: 0.5rem;
	}
	
	#mcc-affinity-section h2{
		max-width: 85%;
		font-size: 1.5rem;
	}
	
	.affinity-more-info-text p{
		font-size: 0.8rem;
	}
	
	.affinity-tile-intro, .affinity-tile-more-info{
		font-size: 0.8rem;
		letter-spacing: 3px;
	}
	
}


















/*--Split Line--*/

.split-line .split-line-contents{
	position:relative;
	bottom:-120%;
}

.appear-from-below-done, .split-line.appear-from-below-done .split-line-contents{bottom:0;}

.split-line.animation-custom .split-line-contents{
	position:relative;
	bottom:-150%;
	-webkit-transition:bottom 1s;
	-moz-transition:bottom 1s;
	-o-transition:bottom 1s;
	transition:bottom 1s;
}
.split-line.animation-custom-done .split-line-contents{bottom:0;}

.split-line.cancel-split-lines{  }
.split-line.cancel-split-lines .split-line-wrapper{ float:left; height:auto !important; width:auto; position:unset; }
.split-line.cancel-split-lines .split-line-contents{ float:none; height:auto !important; width:auto; position:unset; bottom:auto; }

.cancel-split-lines{ height:auto !important; }


.overflow-hidden-override{overflow: hidden;}

.section-heading{
	float: left;
	width: 100%;
	line-height: 100%;
}




/*--------------------------------------------------------------
# ANIMATION CLASSES
--------------------------------------------------------------*/

/***** YOU MUST ADD ONE OF THE SCROLL-ANIMATION CLASSES *****/
.scroll-animation{
	-webkit-transition-property:all;
	-moz-transition-property:all;
	-o-transition-property:all;
	transition-property:all;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.animation-speed-05s{
	-webkit-transition-duration:0.5s;
	-moz-transition-duration:0.5s;
	-o-transition-duration:0.5s;
	transition-duration:0.5s;
}
.animation-speed-1s{
	-webkit-transition-duration:1s;
	-moz-transition-duration:1s;
	-o-transition-duration:1s;
	transition-duration:1s;
}
.animation-speed-2s{
	-webkit-transition-duration:2s;
	-moz-transition-duration:2s;
	-o-transition-duration:2s;
	transition-duration:2s;
}
.animation-speed-3s{
	-webkit-transition-duration:3s;
	-moz-transition-duration:3s;
	-o-transition-duration:3s;
	transition-duration:3s;
}
.animation-speed-4s{
	-webkit-transition-duration:4s;
	-moz-transition-duration:4s;
	-o-transition-duration:4s;
	transition-duration:4s;
}
.animation-speed-5s{
	-webkit-transition-duration:5s;
	-moz-transition-duration:5s;
	-o-transition-duration:5s;
	transition-duration:5s;
}

.appear{
	position:relative;
	opacity:0;
}

.scale-in{
	-webkit-transform:scale(0.8);
	-moz-transform:scale(0.8);
	transform:scale(0.8);
}

.appear-from-left{
	position:relative;
	left:-200px;
}

.appear-from-right{
	position:relative;
	right:-200px;
}

.appear-from-above{
	position:relative;
	top:-200px;
}

.appear-from-below{
	position:relative;
	bottom:-200px;
}

.blur{
	-webkit-filter:blur(20px);
	filter:blur(20px);
}

.appear-done{opacity:1;}
.scale-in-done{-webkit-transform:scale(1);-moz-transform:scale(1);transform:scale(1);}
.appear-from-left-done{left:0;}
.appear-from-right-done{right:0;}
.appear-from-above-done{top:0;}
.appear-from-below-done{bottom:0;}
.blur-done{-webkit-filter:blur(0);filter:blur(0);}



/* amends on 28/10/19 */

.grecaptcha-badge { display: none !important; }

/***** STICKY SIDE NAV *****/

#sticky-side-menu{
	top:20%;
	z-index:10;
	-webkit-transition:all .5s;
	-moz-transition:all .5s;
	-o-transition:all .5s;
	transition:all .5s;
}

#sticky-side-menu nav{
	float:left;
	-webkit-transition:all .5s;
	-moz-transition:all .5s;
	-o-transition:all .5s;
	transition:all .5s;
}

#sticky-side-menu nav ul{
	float:left;
	width:50px;
	margin:0;
	list-style:none;
	-webkit-transition:all .5s;
	-moz-transition:all .5s;
	-o-transition:all .5s;
	transition:all .5s;
}

#sticky-side-menu nav ul li{
	float:right;
	clear:both;
	-webkit-transition:all .5s;
	-moz-transition:all .5s;
	-o-transition:all .5s;
	transition:all .5s;
}

#sticky-side-menu nav ul li a{
	float:right;
	width:50px;
	position:relative;
	color:#fff;
	font-size:0.8rem;
	text-transform:uppercase;
	letter-spacing:2px;
	background-color:#002d51;
	-webkit-transition:all .5s;
	-moz-transition:all .5s;
	-o-transition:all .5s;
	transition:all .5s;
}

#sticky-side-menu nav ul li:last-of-type a{
	border-bottom:none;
}

.sticky-side-menu-item-text{
	float:left;
	position:absolute;
	left:0;
	top:0;
	width:270px;
	padding:15px 25px;
	overflow:hidden;
}

.sticky-side-menu-item-icon{
	float:right;
	position:relative;
	width:50px;
	height:50px;
	background-repeat:no-repeat;
	background-position:right 15px top 50%;
	background-color:#002d51;
	-webkit-transition:all .5s;
	-moz-transition:all .5s;
	-o-transition:all .5s;
	transition:all .5s;
}

#sticky-side-menu nav ul.top-of-page li a,
#sticky-side-menu nav ul.active li a{
	width:270px;
	text-decoration:none;
}

.sticky-side-menu-item-social{
	position:relative;
	width:50px;
}

.sticky-side-menu-item-social-wrapper{
	float:right;
	width:50px;
	height:50px;
	position:relative;
	background-color:#001928;
	-webkit-transition:all .5s;
	-moz-transition:all .5s;
	-o-transition:all .5s;
	transition:all .5s;
}

.sticky-side-menu-item-social .sticky-side-menu-item-text{
	position:relative;
	float:left;
	width:170px;
	height:auto;
	color:#fff;
	font-size:0.8rem;
	text-transform:uppercase;
	letter-spacing:2px;
	background-color:#001928;
	
}

#sticky-side-menu nav ul .sticky-side-menu-item-social .sticky-side-menu-item-social-link{
	float:left;
	position:absolute;
	top:0;
	width:50px;
	height:50px;
	background-repeat:no-repeat;
	background-position:50% 50%;
	text-indent:-5000px;
	-webkit-transition:all .5s;
	-moz-transition:all .5s;
	-o-transition:all .5s;
	transition:all .5s;
}

#sticky-side-menu nav ul .sticky-side-menu-item-social #sticky-side-menu-item-social-link-twitter{
	right:0;
}
#sticky-side-menu nav ul .sticky-side-menu-item-social #sticky-side-menu-item-social-link-linkedin{
	left:170px;
}

.top-of-page .sticky-side-menu-item-social-wrapper,
.active .sticky-side-menu-item-social-wrapper{
	width:270px;
}

@media screen and (min-width:1025px){
	#sticky-side-menu nav ul li a:hover,
	#sticky-side-menu nav ul li a:hover .sticky-side-menu-item-icon{
		text-decoration:none;
		background-color:#002E48;
	}
}

@media screen and (max-width:939px){
	#sticky-side-menu{ display:none; }
}

.content-right {
    right: 0;
}

.content-fixed {
    position: fixed;
}

aside {
    display: block;
}

/* form amends  11/11/19 */
div.wpcf7-mail-sent-ok {
    border: 2px solid #002d51;
    background: #002d51;
}