/*
Theme Name: Toast
Description:  The Toast Theme. Lightweight, tasty and totally awesome.
Author: David Foreman // Charlotte Brown
Copyright: David Foreman & Charlotte Brown 2018 All rights reserved. // DO NOT REMOVE THIS COPYRIGHT NOTICE
Date: March 2018
Version: 6.0-2019
Theme URI: http://www.toastwebsites.co.uk
Author URI: http://www.toastdesign.co.uk
Text Domain: Toast
Tags: one-column, two-columns, right-sidebar
License: None
License URI: LICENSE
*/

.site-header .search-column, .site-header .cta-column {width: 35% !important; margin-left: 0 !important; text-align: center;}
.site-header .social-column {width: 25% !important; margin-left: 0 !important; text-align: center;}

/**Team module**/

.profile-image img {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.profile-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
	font-size: 2rem;
}

.profile-content h5 {
    font-weight: 400;
    color: #57b3e0;
	font-size: 1.5rem;
}

.profile-content p {
	font-size: 80%;
}

.profile-contacts p {
	font-size: 90%;
	margin-bottom: 0.5rem
}

.profile-contacts p a {
    color: #444444;
	font-size: 90%;
}

.profile-contacts p a:hover {
    opacity: 0.6;
}

/**latest news module**/
h4.news-title {
    font-size: 1.5rem;
    line-height: 1.4;
}

.post-wrapper.latest-news {
    background: #fff;
}

section.test-columns p {color:#fff;}

li.toast-support a { background: #ff8f2b; }
li.toast-support a:hover { background: #666; }
/* .container .container { background: red; }
.container { border: 1px solid yellow;  }
.row { border: 1px solid pink; background: pink; }
.wrapper { border: 1px solid orange; background: orange; padding: 2rem 0; }
section { border: 3px solid grey; clear: both; }*/
section{position:relative;}
body #wprmenu_bar span.wpr-logo-wrap { position: relative; top: -3px; line-height: inherit; display: inline-block; float: right; } /* Floats the logo to the right on the WPR Menu */

/**Search Bar Header**/
.search-bar {
    display: inline-block;
    margin-right: 1rem;
}

form#searchform {
	    margin-bottom: 0rem;
}

input#sh {
    margin-bottom: 0;
    padding: 2rem 2rem;
    border: none;
    border-radius: 0px;
    width: 200px;
}

input#ss {
	padding: 1.25rem 3rem;
    border: none;
    border-radius: 0;
    background-color: #0b457a!important;
    color: #fff!important;
}

input#ss:hover {
    background-color: #57b3e0!important;
    color: #fff!important;
}

/**Archives**/
.archive-listing:first-child{margin-top:5rem;}
.archive-listing{margin-bottom:5rem;}

.six.columns.post-wrapper:nth-child(3n+1) {
    margin-left: 0;
}

.related-categories span:after{content:',';}
.related-categories span:last-child:after{display:none;}

/**Events archive**/
.date-and-title{margin-bottom:2rem;}
.date-and-title h3{margin-bottom:0;padding-right:2rem;}
.date-and-title h3, .date-and-title .date{display:inline-block;vertical-align:bottom;}
.past-events-controls{text-align:right;margin-top:2rem;}
.past-events-controls label, .past-events-controls input{display:inline-block;vertical-align:middle;margin:0 !important;font-weight:400;}
.past-events-controls input{width:20px;height:20px;border:1px solid #000000;appearance:none;-webkit-appearance:none;display:inline-block !important;outline:none !important;text-align:center;border-radius:3px;line-height:18px;}
.past-events-controls input:checked{background:#57b3e0;}
.past-events-controls input:checked:after{content:'\f00c';font-family:fontawesome;color:#ffffff;}
p.no-events-notcie {
    margin: 4rem 0;
}

.widget_text.right-sidebar-widget.widget_custom_html {
    margin-bottom: 6rem;
}

/* Base Styles
*************************************************/
/* NOTE
html is set to 62.5% so that all the REM measurements throughout the theme
are based on 10px sizing. So basically 1.5rem = 15px :) */

html { font-size: 62.5%; }

body {
	
	font-size: 1.75rem; /* currently ems cause chrome bug misinterpreting rems on body element */
	line-height: 1.6;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	color: #444444;
	margin: 0;
	padding: 0; 
	}

.columns.push-right, .column.push-right { float: right; }
.columns.push-left, .column.push-left	{ float: left; }

/**Slider Base**/
.slider-wrapper{position:relative;overflow:hidden;}
.slide{background-size:cover;background-position:center;clear:both;overflow:hidden;position:absolute;transition:all .5s;pointer-events:none;display:none;width:100%;background-color:#ffffff;}
.slide .container{top:50%;left:50%;width:100%;position:static;}
.slide.active{display:block;pointer-events:all;}

.slide.fade{opacity:0;display:block;}
.slide.fade.active{opacity:1;}

.slide-button-navigation{background:#000000;-webkit-border-radius: 100%;-moz-border-radius: 100%;border-radius: 100%;height:50px;width:50px;position:absolute;z-index:100;top:50%;transform: translateY(-50%);opacity:0.4;transition:all .5s;cursor:pointer;}
.slide-button-navigation:hover{opacity:.5;}
.slide-button-navigation i{color:#ffffff;font-family:fontawesome;font-style:normal;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);font-size:2rem;}

.slide-button-navigation.back-button{left:2%}
.slide-button-navigation.next-button{right:2%;}

.slide.sliding{display:block;opacity:0;transition:all 0s;}
.slide.sliding.active{opacity:1;}

.sliding.slide-in-left{animation:toastslideInLeft .5s linear forwards;opacity:1}
@keyframes toastslideInLeft{
	0%{transform:translateX(-100%)}
	100%{transform:translateX(0)}
}

.sliding.slide-in-right{animation:toastslideInRight .5s linear forwards;opacity:1}
@keyframes toastslideInRight{
	0%{transform:translateX(100%)}
	100%{transform:translateX(0)}
}

.sliding.slide-out-right{animation:toastslideOutRight .5s linear forwards;opacity:1}
@keyframes toastslideOutRight{
	0%{transform:translateX(0)} 
	100%{transform:translateX(100%)}
}

.sliding.slide-out-left{animation:toastslideOutLeft .5s linear forwards;opacity:1}
@keyframes toastslideOutLeft{
	0%{transform:translateX(0)}
	100%{transform:translateX(-100%)}
}

/*	Home
*************************************************/

.grey-background {
    background: #EAE9EA;
}

.kad-slider-wrapper, .ksp-slider-wrapper {
    margin-bottom: 8rem;
	border-bottom: 12px solid #eae9ea;
}

.related-categories {
    margin-bottom: 1rem;
	font-size: 85%;
}

.related-categories a {
    color: #0c457a;
    font-weight: 700;
}

i.fa.fa-newspaper-o {
    color: #0c457a;
}

h4.related-title a {
    color: #57B3E0;
}

h4.related-title a:hover {
    color: #0c457a;
}

.orange-background {
    background: #DF5A11;
    color: #fff;
}

.orange-background h3, .orange-background h4, .light-blue-background h3, .light-blue-background h4 {
    color: #fff;
}

.light-blue-background {
    background: #57B3E0;
}

a .highlight-title {
    background: #fff;
    text-align: center;
    padding: 2rem 1rem;
    min-height: 56px;
	margin-top: 1rem;
}

a .highlight-title:hover {
	background:#eee;
}

.light-blue-background h4.related-title a, .light-blue-background .related-categories a, .light-blue-background i.fa.fa-newspaper-o, .light-blue-background .related-excerpt p {
    color: #fff;
}

.light-blue-background h4.related-title a:hover {
    opacity: 0.6;
}

.light-blue-background .button:hover {
    color: #0b457a;
	background: #fff;
}

/*	Default Page
*************************************************/

.page-banner {
    background: #21457a59;
    padding: 4rem 0rem;
    margin-bottom: 6rem;
}

.page-banner h1 {
    margin-bottom: 0rem;
}

p#breadcrumbs {
    font-size: 85%;
}

.container .container {
    margin: 0;
    padding: 0;
    max-width: 100%;
    width: 100%;
}

.child-pages {
    background: #57b3e0;
    padding: 3rem 3rem 1rem;
    font-size: 85%;
}

.child-pages ul {
    list-style: none;
}

.child-pages ul li a {
	color:#fff;
	font-weight:600;
}

.child-pages ul li a:hover {
color: #0b457a;
}

.child-pages h5 {
    margin-bottom: 3rem;
	color: #fff;
}


/*	Header
*************************************************/

a.logo img { width: 80%; height: auto; vertical-align: bottom; }
header ul { padding: 0; margin: 0; list-style-type: none; }
header ul li { display: inline; }
header .contacts {}
.social-icons a { margin-left: 1rem;}

.container.header-main {
    padding: 1rem 0rem;
}

.site-header {
    border-bottom: 4px solid #eae9ea;
}

/* Logo Showcase								*
************************************************/

.wpls-logo-showcase-slider-wrp {
    margin-top: 6rem;
}

.wpls-logo-showcase .slick-dots {
    display: none!important;
}

/* Download monitor 									*
************************************************/

.download-button {
    text-align: left;
    text-decoration: none!important;
    padding: .75em 1em;
    color: #fff;
    display: block;
    font-size: 1.2em;
    line-height: 1.5em;
    background-image: none;
    background-image: none;
    border-radius: 0px;
    text-shadow: none;
    box-shadow: none;
    border: none;
    cursor: pointer;
    background-color: #57b3e0;
}

.download-button:hover {
    color: #fff;
    background-color: #0c457a;
	background-image: none;
}

/* Blog								*
************************************************/

.nine.columns.blog-posts .six:nth-child(3n+1) {
    margin-left: 0;
}

.post-wrapper {
    border: 1px solid #eee;
    padding: 3rem;
    margin-bottom: 4%;
}

.blog-featured-image {
    margin-bottom: 2rem;
}

.clear {
    clear: both;
}

.news-read-more-button {
    padding-top: 2rem;
}

.page-navigation {
    margin: 4rem 0rem 7rem;
}

.widget_text.right-sidebar-widget.widget_custom_html {
    margin-top: 4rem;
}

.widget.right-sidebar-widget.widget_nav_menu.nav_menu-6, .widget.right-sidebar-widget.widget_nav_menu.nav_menu-5 {
    margin-bottom: 4rem;
}

/* Single								*
************************************************/

.blog-featured-image img {
    width: 100%;
    height: auto;
}

.post-banner {
    margin-bottom: 4rem;
}

.post-banner img {
    width: 100%;
    height: auto;
}

.right-sidebar-widget.widget_nav_menu {
    background: #57b3e0;
    padding: 3rem 3rem 1rem 3rem;
}

.right-sidebar-widget.widget_nav_menu h5 {
	color:#fff;
}

body.single-post .right-sidebar-widget.widget_nav_menu {
	    margin-top: 2rem;
}

.right-sidebar-widget.widget_nav_menu ul {
    list-style: none;
    font-size: 85%;
}


.right-sidebar-widget.widget_nav_menu ul li a {
	color:#fff;
	font-weight:600;
}

.right-sidebar-widget.widget_nav_menu ul li a:hover {
	color:#0b457a;
}

body.single-post p#breadcrumbs {
    border-bottom: 1px solid #eee;
    padding-bottom: .5rem;
}

body.single-post .featured-image {
    border: 1px solid #eee;
	margin-bottom: 4rem;
}

p.related-categories {
    margin-bottom: 4rem;
}


.related-excerpt {
    display: none;
}

.background-image {
  background-image: url("/wp-content/uploads/shutterstock_1029851113-720x466-1.jpg"); /* The image used */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}

/* Parliament 									*
************************************************/

.row.category-links .three.columns:nth-child(4n+1) {
    margin-left: 0;
}

.row.category-links a .highlight-title {
    background: #57b3e0;
	color: #fff;
}

.row.category-links a .highlight-title:hover {
    background: #0b457a;
    color: #fff;
}

.row.category-links .three.columns {
    margin-bottom: 4rem;
}

/* Search 									*
************************************************/

span.search-term {
    color: #df5a11;
}

mark.hilite.term-0 {
    background: none;
    color: #df5a11;
}

.right-sidebar-widget.widget_search {
    background: #df5a11;
    padding: 3rem 3rem 1rem;
    margin-bottom: 4rem;
    color: #fff;
}

.right-sidebar-widget.widget_search h5 {
	    color: #fff;
}

span.screen-reader-text {
    display: none;
}

input.search-field {
    border-radius: 0px!important;
    border: none!important;
    width: 100%!important;
}

input[type=submit] {
    background: #fff!important;
    color: #df5a11!important;
	margin-bottom:0rem!important;
}

input[type=submit]:hover {
	background: #0b457a!important;
    color: #fff!important;
}

/* Navbar & Menus 									*
************************************************/

.top-nav 			{ font-size: 1.5rem;   }
.top-nav ul 		{ margin: 0 auto; padding: 0rem 0rem 0rem 1.25rem; text-align: right;  }
.top-nav li 		{ display: inline-block; margin: 0; position: relative; /* this is needed in order to position sub menus */ }
.top-nav li a  		{ display: inline-block; padding: 1rem; color: #444444; line-height: 1; } /* Links on the main nav bar ONLY */
.top-nav ul li.current_page_item ul li a, .nav li.current-page-ancestor ul li a { color: #57B3E0; } /* Links on the dropdowns ONLY */
.top-nav li:hover a, .top-nav li.current_page_item a, .top-nav ul li.current_page_item ul li a:hover, .top-nav ul li.current-page-ancestor ul li a:hover,  .top-nav li.current-page-ancestor a { color: #57B3E0; }
.top-nav li.current_page_item a { }
.top-nav li.menu-item-has-children a::after { content: "\f107"; font-family:fontawesome; padding-left: .5rem;  }
.top-nav li.menu-item-has-children ul li a::after { display: none;  }
.menu-main-navigation-container {
    margin-top: 8%;
}

.social-icons i, .contacts i, .links-section i {
    font-family: fontawesome;
    font-style: normal;
    background: #57B3E0;
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 15px;
    display: inline-block;
    color: #fff;
    margin-right: 5px;
    text-align: center;
	padding: 0.5rem;
}

.contacts i:hover {
    background: #0b457a;
}

.phone, .email, .twitter {
    display: inline-block;
}


/* Submenus Dropdowns
***********************************************/

.top-nav ul ul 				{ visibility: hidden; opacity: 0; zoom: 1; filter: alpha(opacity=50); -khtml-opacity: 0.5; position: absolute;	padding: 0;	top: 3.5rem; left: 0; width: 200px; background: #fff; text-align: left; z-index: 9999999; -moz-transition-property: opacity, visibility; -webkit-transition-duration: .4s, 0s; transition-delay: 0s, .4s; }
.top-nav ul ul ul 			{ position: absolute;	padding: 0; top: 0; left: 200px; width: 200px; background: #999; text-align: left; z-index: 9999999; }
.top-nav ul ul li 			{ display: block; margin: 0;  }
.top-nav ul.sub-menu li a 	{ float: none; padding: 1rem; display: block; margin: 0; line-height: 1.2; color: #444444;  }
.top-nav ul ul li:hover a	{ color: #57b3e0; }
.top-nav ul li:hover > ul 	{ visibility: visible; opacity: 1; zoom: 1; filter: alpha(opacity=100); -khtml-opacity: 1;  }

/* Drop Down Link styling
**************************************************/

/*.nav li.current_page_item a, .top-nav li.current_page_ancestor a, .top-nav ul li ul.sub-menu li.current_page_item a { color: yellow; }
.top-nav ul li.current_page_item ul.sub-menu li a, .top-nav ul li ul.sub-menu li a { color: red; }
.top-nav ul li.current_page_item ul.sub-menu li a:hover, .top-nav ul li ul.sub-menu li a:hover { color: green; }*/

/* Pagination
*************************************************/

/* Previous and Next pagination */
 a.prev.page-numbers, a.next.page-numbers, a.page-numbers, a.page-numbers:hover { 
	font-size: 85%;
    padding: .5em 1em;
    color: #fff;
    clear: both;
    -webkit-appearance: none;
    background: #57b3e0;
    border: none;
}

a.prev.page-numbers:hover, a.next.page-numbers:hover, a.page-numbers:hover 
{ background: #21457a; border: 0px;   }
a.page-numbers:hover { background: #21457a;  }

/* Current pagination link */
span.page-numbers.current { 
    font-size: 85%;
    background: #afaeaf;
    padding: .5em 1em;
    color: #fff;
    clear: both;
}

span.page-numbers.current:hover {
    background: #666;
}

/* General ACF Styles
*************************************************/

.colour-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.wrapper { position: relative; }

.title-section h3 {
    margin-bottom: 1rem;
}

/* Related Content ACF							*
**************************************************/
.row.related-content {}
.related-news-wrapper {}
.related-featured-image img { margin-bottom: 4rem;}
h4.related-title {
    margin-bottom: 4rem;
	    font-size: 2rem;
}
.related-news-content {}
.related-read-more-button { margin-top: 2rem; }
.related-excerpt {
    margin-bottom: 4rem;
}


/* Grid
*************************************************/
.container, .with-sidebar { position: relative; width: 100%; max-width: 1170px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; clear: both; }
.container.full-width { max-width: 100%; width: 100%; }
.column, .columns { width: 100%; float: left; box-sizing: border-box; }
.row, section, .rowtitle { display: block; clear: both; }



/* Margin and Padding Styles
*************************************************/

/* DEFAULTS */
.margin-top { margin-top: 3vw; }
.margin-bottom { margin-bottom: 3vw; }
.margin-both { margin-top: 3vw; margin-bottom: 3vw; }

.padding-top { padding-top: 3vw; }
.padding-bottom { padding-bottom: 3vw; }
.padding-both { padding-top: 3vw; margin-bottom: 3vw; }

/* TOP MARGIN */
.margin-top-1 { margin-top: 1rem; }
.margin-top-2 { margin-top: 2rem; }
.margin-top-3 { margin-top: 3rem; }
.margin-top-4 { margin-top: 4rem; }
.margin-top-5 { margin-top: 5rem; }
.margin-top-6 { margin-top: 6rem; }
.margin-top-8 { margin-top: 8rem; }
.margin-top-10 { margin-top: 10rem; }
.margin-top-15 { margin-top: 15rem; }
.margin-top-20 { margin-top: 20rem; }
.margin-top-25 { margin-top: 25rem; }
.margin-top-30 { margin-top: 30rem; }
.margin-top-35 { margin-top: 35rem; }
.margin-top-40 { margin-top: 40rem; }
.margin-top-45 { margin-top: 45rem; }
.margin-top-50 { margin-top: 50rem; }

/* BOTTOM MARGIN */
.margin-bottom-1 { margin-bottom: 1rem; }
.margin-bottom-2 { margin-bottom: 2rem; }
.margin-bottom-3 { margin-bottom: 3rem; }
.margin-bottom-4 { margin-bottom: 4rem; }
.margin-bottom-5 { margin-bottom: 5rem; }
.margin-bottom-6 { margin-bottom: 6rem; }
.margin-bottom-8 { margin-bottom: 8rem; }
.margin-bottom-10 { margin-bottom: 10rem; }
.margin-bottom-15 { margin-bottom: 15rem; }
.margin-bottom-20 { margin-bottom: 20rem; }
.margin-bottom-25 { margin-bottom: 25rem; }
.margin-bottom-30 { margin-bottom: 30rem; }
.margin-bottom-35 { margin-bottom: 35rem; }
.margin-bottom-40 { margin-bottom: 40rem; }
.margin-bottom-45 { margin-bottom: 45rem; }
.margin-bottom-50 { margin-bottom: 50rem; }

/* BOTH MARGIN */
.margin-both-1 { margin-bottom: 5rem; margin-top: 1rem; }
.margin-both-2 { margin-bottom: 5rem; margin-top: 2rem; }
.margin-both-3 { margin-bottom: 5rem; margin-top: 3rem; }
.margin-both-4 { margin-bottom: 5rem; margin-top: 4rem; }
.margin-both-5 { margin-bottom: 5rem; margin-top: 5rem; }
.margin-both-6 { margin-bottom: 6rem; margin-top: 6rem; }
.margin-both-8 { margin-bottom: 8rem; margin-top: 8rem; }
.margin-both-10 { margin-bottom: 10rem; margin-top: 10rem; }
.margin-both-15 { margin-bottom: 15rem; margin-top: 15rem; }
.margin-both-20 { margin-bottom: 20rem; margin-top: 20rem; }
.margin-both-25 { margin-bottom: 25rem; margin-top: 25rem; }
.margin-both-30 { margin-bottom: 30rem; margin-top: 30rem; }
.margin-both-35 { margin-bottom: 35rem; margin-top: 35rem; }
.margin-both-40 { margin-bottom: 40rem; margin-top: 40rem; }
.margin-both-45 { margin-bottom: 45rem; margin-top: 45rem; }
.margin-both-50 { margin-bottom: 50rem; margin-top: 50rem; }

/* TOP PADDING */
.padding-top-1 { padding-top: 1rem; }
.padding-top-2 { padding-top: 2rem; }
.padding-top-3 { padding-top: 3rem; }
.padding-top-4 { padding-top: 4rem; }
.padding-top-5 { padding-top: 5rem; }
.padding-top-6 { padding-top: 6rem; }
.padding-top-8 { padding-top: 8rem; }
.padding-top-10 { padding-top: 10rem; }
.padding-top-15 { padding-top: 15rem; }
.padding-top-20 { padding-top: 20rem; }
.padding-top-25 { padding-top: 25rem; }
.padding-top-30 { padding-top: 30rem; }
.padding-top-35 { padding-top: 35rem; }
.padding-top-40 { padding-top: 40rem; }
.padding-top-45 { padding-top: 45rem; }
.padding-top-50 { padding-top: 50rem; }

/* BOTTOM PADDING */
.padding-bottom-1 { padding-bottom: 1rem; }
.padding-bottom-2 { padding-bottom: 2rem; }
.padding-bottom-3 { padding-bottom: 3rem; }
.padding-bottom-4 { padding-bottom: 4rem; }
.padding-bottom-5 { padding-bottom: 5rem; }
.padding-bottom-6 { padding-bottom: 6rem; }
.padding-bottom-8 { padding-bottom: 8rem; }
.padding-bottom-10 { padding-bottom: 10rem; }
.padding-bottom-15 { padding-bottom: 15rem; }
.padding-bottom-20 { padding-bottom: 20rem; }
.padding-bottom-25 { padding-bottom: 25rem; }
.padding-bottom-30 { padding-bottom: 30rem; }
.padding-bottom-35 { padding-bottom: 35rem; }
.padding-bottom-40 { padding-bottom: 40rem; }
.padding-bottom-45 { padding-bottom: 45rem; }
.padding-bottom-50 { padding-bottom: 50rem; }

/* BOTH PADDING */
.padding-both-1 { padding-bottom: 5rem; padding-top: 1rem; }
.padding-both-2 { padding-bottom: 5rem; padding-top: 2rem; }
.padding-both-3 { padding-bottom: 5rem; padding-top: 3rem; }
.padding-both-4 { padding-bottom: 5rem; padding-top: 4rem; }
.padding-both-5 { padding-bottom: 5rem; padding-top: 5rem; }
.padding-both-6 { padding-bottom: 6rem; padding-top: 6rem; }
.padding-both-8 { padding-bottom: 8rem; padding-top: 8rem; }
.padding-both-10 { padding-bottom: 10rem; padding-top: 10rem; }
.padding-both-15 { padding-bottom: 15rem; padding-top: 15rem; }
.padding-both-20 { padding-bottom: 20rem; padding-top: 20rem; }
.padding-both-25 { padding-bottom: 25rem; padding-top: 25rem; }
.padding-both-30 { padding-bottom: 30rem; padding-top: 30rem; }
.padding-both-35 { padding-bottom: 35rem; padding-top: 35rem; }
.padding-both-40 { padding-bottom: 40rem; padding-top: 40rem; }
.padding-both-45 { padding-bottom: 45rem; padding-top: 45rem; }
.padding-both-50 { padding-bottom: 50rem; padding-top: 50rem; }

/* All Round Padding */
.padding-025 { padding: .25rem; }
.padding-05 { padding: .5rem; }
.padding-075 { padding: .75rem; }
.padding-1 { padding: 1rem; }
.padding-2 { padding: 2rem; }
.padding-3 { padding: 9rem; }
.padding-4 { padding: 4rem; }
.padding-5 { padding: 5rem; }
.padding-6 { padding: 6rem; }
.padding-7 { padding: 7rem; }
.padding-8 { padding: 8rem; }
.padding-9 { padding: 9rem; }
.padding-10 { padding: 10rem; }


/* All Round Margins */
.margin-025 { margin: .25rem; }
.margin-05 { margin: .5rem; }
.margin-075 { margin: .75rem; }
.margin-1 { margin: 1rem; }
.margin-2 { margin: 2rem; }
.margin-3 { margin: 9rem; }
.margin-4 { margin: 4rem; }
.margin-5 { margin: 5rem; }
.margin-6 { margin: 6rem; }
.margin-7 { margin: 7rem; }
.margin-8 { margin: 8rem; }
.margin-9 { margin: 9rem; }
.margin-10 { margin: 10rem; }



.with-sidebar .container{width:100%;padding:0;}
.right-sidebar.columns, .left-sidebar-content.columns{float:right;margin-left:4%;}
.left-sidebar.columns, .right-sidebar-content.columns{float:left;margin-left:0}

/* For devices larger than 400px
***************************************************************/

@media (min-width: 400px) {
  	.container , .with-sidebar						{ width: 85%; padding: 0; }
	.u-pull-right 									{ float: right; }
	.u-pull-left 									{ float: left; }

} /* End media query */

/* For devices larger than 550px
***************************************************************/

@media (min-width: 550px) {

	.container, .with-sidebar { width: 80%; }
	.column,.columns { margin-left: 4%; }
	.column:first-child, .columns:first-child { margin-left: 0; }

	.one.column,
	.one.columns                    		{ width: 4.66666666667%; 											}
	.two.columns                    		{ width: 13.3333333333%; 											}
	.three.columns							{ width: 22%;            											}
	.four.columns                   		{ width: 30.6666666667%; 											}
	.five.columns                   		{ width: 16.8%; 											}
	.six.columns                    		{ width: 48%;            											}
	.seven.columns                  		{ width: 56.6666666667%; 											}
	.eight.columns                  		{ width: 65.3333333333%; 											}
	.four-fifths.columns,.four-fifths.column { width: 79.2%; 											}
	.nine.columns			          		{ width: 74.0%;          											}
	.ten.columns                    		{ width: 82.6666666667%; 											}
	.eleven.columns                 		{ width: 91.3333333333%; 											}
	.twelve.columns                 		{ width: 100%; margin-left: 0; 										}
	.one-third.column               		{ width: 30.6666666667%; 											}
	.two-thirds.column              		{ width: 65.3333333333%; 											}
	.one-fifth.column, .one-fifth.columns	{ width: 16.8%; /* removes the margin-left when over 2 rows */ 		}
  	.one-half.column                		{ width: 48%; }


  /* Offsets */
	.offset-by-one.column,
	.offset-by-one.columns          { margin-left: 8.66666666667%; }
	.offset-by-two.column,
	.offset-by-two.columns          { margin-left: 17.3333333333%; }
	.offset-by-three.column,
	.offset-by-three.columns        { margin-left: 26%;            }
	.offset-by-four.column,
	.offset-by-four.columns         { margin-left: 34.6666666667%; }
	.offset-by-five.column,
	.offset-by-five.columns         { margin-left: 43.3333333333%; }
	.offset-by-six.column,
	.offset-by-six.columns          { margin-left: 52%;            }
	.offset-by-seven.column,
	.offset-by-seven.columns        { margin-left: 60.6666666667%; }
	.offset-by-eight.column,
	.offset-by-eight.columns        { margin-left: 69.3333333333%; }
	.offset-by-nine.column,
	.offset-by-nine.columns         { margin-left: 78.0%;          }
	.offset-by-ten.column,
	.offset-by-ten.columns          { margin-left: 86.6666666667%; }
	.offset-by-eleven.column,
	.offset-by-eleven.columns       { margin-left: 95.3333333333%; }

	.offset-by-one-third.column,
	.offset-by-one-third.columns    { margin-left: 34.6666666667%; }
	.offset-by-two-thirds.column,
	.offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

	.offset-by-one-half.column,
	.offset-by-one-half.columns     { margin-left: 52%; }

} /* End media query */


/*	Footer
*************************************************/
.footer-main{ padding: 5vw 0; background: #F7F7F7; overflow: hidden; clear: both; }
.footer-sub-wrapper {   padding: 1rem 0; background: #F7F7F7; overflow: hidden; line-height: 2; font-size: 80%;}
.footer-sub-wrapper .container {border-top:1px solid #ccc;}
.footer-sub-wrapper li a { color: #fff; text-decoration: none; padding: 0 1rem; }
.footer-sub-wrapper li a:hover { text-decoration: underline; }
.site-footer { clear: both; }
.site-footer a.logo { float: right; text-align: right; }
.site-footer a.logo img { width: 60%; height: auto; margin-bottom: 2rem; }
.site-footer ul { padding: 0; margin: 0; list-style: none; }
.site-footer ul li { margin: 0; padding: 0;margin-bottom:1rem;}
.site-footer ul li a {
    display: block;
    line-height: 1.5;
    text-decoration: none;
    color: #444444;
	font-size: 75%;
}

.footer-main .phone a {
    font-size: 65%;
}

.footer-main .email a {
    font-size: 70%;
}

.footer-main h5 {
    font-size: 1.5rem;
    margin-bottom: 3rem;
}


.footer-sub-wrapper .container {
    padding: 2rem 0rem;
}

.phone i, .email i, .twitter i {
    font-family: fontawesome;
    font-style: normal;
    background: #57b3e0;
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 15px;
    display: inline-block;
    color: #fff;
    margin-right: 5px;
    text-align: center;
    padding: .5rem;
}

.phone i:hover, .email i:hover, .twitter i:hover {
    background: #0c457a;
}

.phone a {
    font-size: 80%;
    font-weight: 700;
    color: #444444;
}

.phone a:hover {
	color:#57B3E0;
}

.textwidget {
    font-size: 75%;
}


/* Contacts */

.site-footer .contacts { text-align: right; }
.site-footer .contacts span { display: block; }
.address {
    font-size: 75%;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Sub footer */
.bottom-menu ul { padding: 0; margin: 0; list-style: none; }
.bottom-menu ul li { display: inline; padding: 0; margin: 0; }
.bottom-menu ul li a { display: inline-block; line-height: 2; border: none; font-size: 100%; }


/* Parallax
************************************************/

.container.parallax { color: #fff; text-shadow: 0 .25rem 1rem rgba(0,0,0,.5); }
.container.parallax h3 { font-size: 3vw; }

.parallax-background {
    background-image: url('http://placekitten.com/1000/1000');
    background-position: 50% 0;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;

    -moz-transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

/* Typography
*************************************************/

h1, h2, h3, h4, h5, h6 { margin-top: 0; font-weight: 700; line-height: 1.2;  }
h1 { font-size: 4rem; margin-bottom: 3.75rem; color:#0B457A;   }
h2 { font-size: 3.5rem; margin-bottom: 3.5rem; color:#0B457A; font-weight: 400; }
h3 { font-size: 3rem; margin-bottom: 3.25rem; color:#0B457A;  }
h4 { font-size: 2.5rem; margin-bottom: 2.25rem; color:#0B457A; font-weight: 400; }
h5 { font-size: 2rem; margin-bottom: 1.25rem; color:#444444;  }
h6 { font-size: 1.5rem; margin-bottom: 1rem; color:#444444;  }

p { margin-top: 0; }

.centered { text-align: center; }
.alignright { text-align: right; }
.justified { text-align: justify; }

.gform_confirmation_wrapper {
    background: #eee;
    padding: 2rem;
    margin-bottom: 2rem;
    color: #20457a;
    font-weight: bold;
}

/* Links
*************************************************/
a 			{ color: #57B3E0; text-decoration: none; }
a:hover 	{ color: #0B457A; }


/* Buttons
*************************************************/
.button, button, input[type="submit"], input[type="reset"], input[type="button"] {
	display: inline-block;
    padding: 1rem 2rem;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    background-color: #0B457A;
    border: none;
    color: #fff;
    cursor: pointer;
    box-sizing: border-box;
    font-size: 85%;
	text-transform: uppercase;
	letter-spacing: .1rem;
}


.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  background: #57B3E0;
  color: #fff;
  outline: 0; 
}

a.button.grey {
    background-color: #AFAEAE;
	margin-bottom: 0rem;
}

a.button.grey:hover {
    background-color: #666;
}

a.button.orange {
    background-color: #DF5A11;
	margin-bottom: 0rem;
}

a.button.orange:hover {
    background-color: #B54B0B;
}

.orange-background a.button {
    background: #fff;
    color: #df5a11;
}

.orange-background a.button:hover {
    background:#F8DED0;
}
	


/* Forms
*************************************************/
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }

/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }

textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0; }

label, legend { display: block; margin-bottom: .5rem; font-weight: 600; }

fieldset { padding: 0; border-width: 0; }

input[type="checkbox"], input[type="radio"] { display: inline; }

label > .label-body { display: inline-block; margin-left: .5rem;font-weight: normal; }

body .gform_wrapper .gform_footer input[type=submit] {
    background: #57b3e0!important;
    color: #fff!important;
    padding: 1.5rem 2.5rem;
}

body .gform_wrapper .gform_footer input[type=submit]:hover {
    background: #21457a!important;
}


/* Lists
*************************************************/
ul { list-style: square inside; }
ol { list-style: decimal inside; }
ol, ul { padding-left: 0; margin-top: 0; }
ul ul, ul ol, ol ol, ol ul { margin: 1.5rem 0 1.5rem 2rem;  }
li { margin-bottom: 1rem; list-style-position: outside; }


/* Code
*************************************************/
code { padding: .2rem .5rem; margin: 0 .2rem; font-size: 90%; white-space: nowrap; background: #F1F1F1; border: 1px solid #E1E1E1; border-radius: 4px; }
pre > code { display: block; padding: 1rem 1.5rem; white-space: pre; }


/* Tables
*************************************************/
th, td { padding: 12px 15px; text-align: left; border-bottom: 1px solid #E1E1E1; }
th:first-child { padding-left: 0; }
th:last-child, td:last-child { padding-right: 0; }

.member-table tbody {
    font-size: 85%;
}

tr:nth-child(odd) {background: #eee;}


/* Spacing
*************************************************/
button, .button { margin-bottom: 1rem; }
input, textarea, select, fieldset { margin-bottom: 1.5rem; }
pre, blockquote, dl, figure, table, p, ul, ol, form { margin-bottom: 2.5rem; }


/* Utilities
*************************************************/
.u-full-width 		{ width: 100%; box-sizing: border-box; }
.u-max-full-width 	{ max-width: 100%; box-sizing: border-box; }
.u-pull-right 		{ float: right; }
.u-pull-left 		{ float: left; }


/* Misc
*************************************************/
hr { margin-top: 3rem; margin-bottom: 3.5rem; border-width: 0; border-top: 1px solid #E1E1E1; }


/* Clearing
*************************************************/
.container:after, .row:after, .u-cf, .row:after { content: ""; display: table; clear: both; }
.row { clear: both;  }


/* Flexible Content Elements
***************************************************/
.align-centered			{ text-align: center; }
.align-right 			{ text-align: right; }
.align-center 			{ text-align: center; }
.align-justify 			{ text-align: justify; }

/* Below deals with margin-left on the repeater flex content */

.repeating-content-two .columns:nth-child(7) { margin-left: 0; }
.repeating-content-three .columns:nth-child(5) { margin-left: 0; }
.repeating-content-four .columns:nth-child(4) { margin-left: 0; }
.repeating-content-five .columns:nth-child(6) { margin-left: 0; }
.repeating-content-six .columns:nth-child(odd) { margin-left: 0; }


/*	Easing 
*************************************************/
a.button, a.button:hover, a.prev, a.next, a.page-numbers, li:hover a, li a, a, a:hover, img, img:hover, a, a:hover { 

		-webkit-transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750); 
   		-moz-transition: all 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750); 
     		-o-transition: all 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750); 
        	transition: all 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */

		-webkit-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); 
   		-moz-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); 
     		-o-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); 
        	transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
	 } 


/*	WordPress base Styles (content & images)
*************************************************/
.alignnone 								{ margin: 0; }
.aligncenter, div.aligncenter 			{ display: block; margin: 0 auto; }
.alignright 							{ float:right; margin: 0; }
.alignleft 								{ float: left; margin: 0; }
.aligncenter 							{ display: block; margin: 0; }
a img.alignright,
img.alignright 							{ float: right; margin: 0; max-width: 100%; }
a img.alignnone,img.alignnone 			{ margin: 0; max-width: 100%; }
a img.alignleft, img.alignleft			{ float: left; margin: 0; max-width: 100%; }
a img.aligncenter,
img.aligncenter  						{ display: block; margin-left: auto; margin-right: auto; }
.wp-caption 							{ background: #fff; border: 1px solid #f0f0f0; max-width: 100%; /* Image does not overflow the content area */ padding: .25em .25em .75em; text-align: center;}
.wp-caption.alignnone 					{ margin: 0; }
.wp-caption.alignleft 					{ margin: 0; }
.wp-caption.alignright 					{ margin: 0; }
.wp-caption img 						{ border: 0 none; height: auto; margin: 0; padding: 0; width: auto; max-width: 100%; }
.wp-caption p.wp-caption-text 			{ line-height: 1; margin: 1em 0 0 0; padding: 1em; border-top: 1px solid #ff8f2b; border-bottom: 1px solid #ff8f2b; display: block; clear: both; }
p.wp-caption-text:before 				{ margin-right: .25em; content: "\f0aa"; font-family: FontAwesome; color: #ff8f2b; }
img.full-width-image					{ width: 100%; height: auto; margin: 0; padding: 0; }
img										{ max-width: 100%; height: auto; }


/* Media Queries
*************************************************
Note: These have recently been updated to use MAX WIDTHS set to most common sizes - DO NOT use MIN and MAX width declarations or you'll quadruple your CSS.
*/


/* Smallest mobile */
@media (max-width: 320px) {
	
	a .highlight-title {
    font-size: 75%;
}
	
}

/* Medium mobile */
@media (max-width: 375px) {}

/* Large mobile */
@media (max-width: 425px) { 
	
	.six.columns.align-left {
    width: 100%!important;
}

	.links-banner .six.columns.align-right, .site-header .search-column, .site-header .social-column {
    display: none;
}
	
	a.logo img {
    width: 60%;
    height: auto;
}
	
	a.logo {
    margin: 0 20%;
}
	
	h1 {
    font-size: 3rem;
}
	
	.page-banner {
    margin-bottom: 3rem;
}
	
	.page-navigation {
    margin: 2rem .25rem 4rem;
}
	
	.widget_text.right-sidebar-widget.widget_custom_html {
    margin-top: 4rem;
    margin-bottom: 4rem;
}
	
	.footer-main {
    padding: 10vw 0;
}
	
	.widget_nav_menu, .widget_text {
    text-align: center;
}
	
	.site-footer .contacts {
    text-align: center;
    width: 100%;
}
	
	.page-id-198 .site-footer .contacts {
	margin-top: 2rem;
}
	
	.phone, .email, .twitter {
    display: inline-block;
    float: none;
}
	
	.copyright {
    text-align: center;
}
	
	.bottom-menu ul {
    text-align: center;
}
	
	.three.columns.social-links {
    text-align: center;
    margin-top: 1rem;
}
	
	.row.category-links img {
    width: 100%;
    height: auto;
}
	
	.margin-both-8 {
    margin-bottom: 4rem;
    margin-top: 4rem;
}
	
	.padding-both-8 {
    padding-bottom: 4rem;
    padding-top: 4rem;
}
	
	a img.alignright, img.alignright {
    float: none;
    margin: 0 0 2rem;
    max-width: 100%;
}
	
	.four.columns.find-us {
    margin-top: 4rem;
}
	
	
}

/* Phablet (phone tablet) (also point when grid becomes active) */
@media (max-width: 550px) {}

/* Smaller than tablet */
@media (max-width: 768px) {
	
.six.columns.align-left {
    width: 100%;
    text-align: center;
}
	
.six.columns.align-right {
    text-align: center;
    width: 100%;
    margin-left: 0%;
    margin-top: 1rem;
}
	
.contacts {
    float: none;
}
	
.phone, .email, .twitter {
    display: inline-block;
}
	
	.site-header .search-column, .site-header .cta-column, .site-header .social-column {width: 100% !important;}
	.site-header .search-column {padding-top: 1rem; padding-bottom: 1rem;}
	.site-header .social-column {padding-bottom: 1rem;}
	
	.container.header-main .three.columns {
    width: 100%;
}
	
	a.logo img {
    width: 40%;
    height: auto;
    vertical-align: bottom;
}
	
	a.logo {
    margin: 0 30%;
}
	
	.row.highlights .three.columns {
    width: 48%;
	margin-bottom:4rem;
}
	
	.row.highlights .three.columns:nth-child(2n+1) {
    margin-left: 0;
}
	
	.two.columns.widget_nav_menu, .two.columns.widget_text {
    width: 30%;
}
	
	.widget_text.two.columns.widget_custom_html {
	width: 48%;
	margin-left: 0;
	margin-top:4rem;
	}
	
	.footer-main .four.columns {
    width: 48%;
	margin-top:4rem;
}
	
	.two.columns.widget_text.text-2 {
    text-align: right;
}
	
	.two.columns.widget_text.text-3 {
    text-align: center;
}

	
}

/* Smaller than laptop */
@media (max-width: 1024px) {
	
	input#sh {
    width: 150px;
}
	
	input#ss {
		padding: 1.25rem 1rem;}
	
}

/* Smaller than large desktop */
@media (max-width: 1440px) {}

/* Larger than large desktop */
@media (min-width: 1440px) {}
