/*
Theme Name: Yet2 Theme
Theme URI: elephantdigital.co.uk
Description: Wordpress theme for Yet2, Developed by elephantdigital.co.uk
Version: 1.0
Author: Elephant Digital
Author URI: elephantdigital.co.uk
Tags: elephantdigital, yet2
*/

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/*-webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;*/
}

html,
html a {
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
	/*text-rendering: optimizeLegibility !important;*/
	-webkit-font-smoothing: antialiased !important;
}

a {
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

p {
	margin: 0 0 15px;
}

.wow {
	visibility: hidden;
}

::-moz-selection {
	color: #464646;
	background: #E2E2E2;
}

::selection {
	color: #464646;
	background: #E2E2E2;
}


/*::-webkit-scrollbar-track
{
	border-radius: 0px;
	background-color: #E3E3E3;
}
::-webkit-scrollbar
{
	width: 10px;
	background-color: rgba(0,0,0,.3);
}
::-webkit-scrollbar-thumb
{
	border-radius: 0px;
	background-color: #3F4145;
}
::-webkit-scrollbar-thumb:hover
{
	background-color: #353638;
}*/

body {
	padding: 0;
	margin: 0;
	background: #ebebeb;
	font-family: 'AktivGrotesk', sans-serif;
	font-size: 18px;
	/*letter-spacing: 0.02em;*/
	font-weight: 400;
	color: #53565b;
	overflow-x: hidden;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	width: 100%;
}

a {
	color: #18d9fc;
}

a:hover {
	text-decoration: none;
}

a.white-link {
	color: #fff;
}

a.white-link:hover {
	color: #18d9fc;
}

h1 {
	font-family: 'DIN', sans-serif;
	font-size: 44px;
	text-transform: uppercase;
}

h2 {
	font-size: 36px;
	font-weight: bold;
	margin-top: 5px;
}

h3 {
	font-size: 28px;
	font-weight: bold;
	color: #18d9fc;
	margin-bottom: 20px;
	margin-top: 10px;
}

h4 {
	font-size: 24px;
	font-weight: bold;
	margin-top: 5px;
}

.inline {
	display: inline !important;
}

.container-holder-white {
	background-color: #fff;
}

.container-fluid {
	width: 100%;
	max-width: 1180px;
}

.container-white {
	background-color: #fff;
}

.container-pad {
	padding-top: 25px;
	padding-bottom: 25px;
}

.row-nopad {
	margin: 0;
}

.row-nopad>div {
	padding: 0;
}

.header {
	background-color: #515054;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	min-height: 130px;
	z-index: 999;
}

.header .top {
	height: 33px;
	background-color: #3f4145;
}

.header .bottom {
	height: 96px;
	background-color: rgb(83, 86, 91);
}

.header .bottom>div.container-fluid {
	position: relative;
}

.header .logo {
	float: left;
	margin: 10px 0;
	width: 123px;
	height: 65px;
	background: url(imgs/logo.svg) no-repeat left center;
	background-size: contain;
	display: block;
	-moz-transition: all 900ms ease-in-out;
	-o-transition: all 900ms ease-in-out;
	-webkit-transition: all 900ms ease-in-out;
	transition: all 900ms ease-in-out;
}

.header-menu {
	display: inline-block;
	float: right;
	margin: 30px 45px 25px 0;
	-moz-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	-webkit-transition: all 400ms cubic-bezier(0, 0, 0, 1);
	transition: all 400ms cubic-bezier(0, 0, 0, 1);
}

.header-menu>ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.header-menu>ul>li {
	/*display:inline-block;*/
	float: left;
	position: relative;
}

.header-menu>ul>li>a {
	display: inline-block;
	font-family: 'DIN', sans-serif;
	font-size: 18px;
	color: #fff;
	/*height:60px;
	line-height:60px;*/
	padding: 5px 17px;
	position: relative;
	text-decoration: none;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.0);
	-moz-transition: all 900ms ease-out;
	-o-transition: all 900ms ease-out;
	-webkit-transition: all 900ms cubic-bezier(0, 0, 0, 1);
	transition: all 900ms cubic-bezier(0, 0, 0, 1);
	text-transform: uppercase;
}

.header-menu>ul>li:hover>a,
.header-menu>ul>li>a:hover,
.header-menu>ul>li>a:focus {
	color: #18d9fc;
	text-decoration: none;
	background-color: rgba(0, 0, 0, 0);
	-moz-transition: all 600ms ease-out;
	-o-transition: all 600ms ease-out;
	-webkit-transition: all 600ms cubic-bezier(0, 0, 0, 1);
	transition: all 600ms cubic-bezier(0, 0, 0, 1);
}

.header-menu>ul>li>a:before {
	content: "";
	position: absolute;
	left: 51%;
	right: 50%;
	bottom: 0;
	background-color: #18d9fc;
	height: 2px;
	-webkit-transition-property: left, right;
	transition-property: left, right;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.header-menu>ul>li:hover>a:before {
	left: 17px;
	right: 17px;
}

.header-menu>ul ul {
	position: absolute;
	top: 0;
	left: 100%;
	background-color: rgba(0, 0, 0, 1);
	min-width: 160px;
	padding: 0;
	margin: 0;
	list-style: none;
	opacity: 0;
	transform: scale(0);
	transform-origin: top left;
	-moz-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	-webkit-transition: all 400ms cubic-bezier(0, 0, 0, 1);
	transition: all 400ms cubic-bezier(0, 0, 0, 1);
}

.header-menu>ul>li>ul {
	top: 100%;
	left: -25%;
	right: -25%;
	width: 160px;
	display: block;
	margin: auto;
	margin-top: 1px;
	background-color: transparent;
	text-align: center;
	transform-origin: top center;
	z-index: 9999999;
}

.header-menu>ul>li>ul:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 15px 12px 15px;
	border-color: transparent transparent #ccccca transparent;
	/*position:absolute;
	top:12px;*/
	left: 0;
	right: 0;
	margin: auto;
}

.header-menu ul>li:hover>ul {
	opacity: 1;
	transform: scale(1);
}

.header-menu>ul ul>li {
	position: relative;
	width: 100%;
	background-color: #ccccca;
	text-align: left
}

.header-menu>ul ul>li>a {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: #52565b;
	padding: 8px 15px;
	width: 100%;
	border-bottom: 1px solid rgba(82, 86, 91, 0.2);
	text-decoration: none;
	-moz-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	-webkit-transition: all 400ms cubic-bezier(0, 0, 0, 1);
	transition: all 400ms cubic-bezier(0, 0, 0, 1);
	text-transform: uppercase;
	text-align: center;
}

.header-menu>ul ul>li:last-child>a {
	border-bottom: none;
}

.header-menu>ul ul>li>a:hover,
.header-menu>ul ul>li>a:focus {
	background-color: #18d9fc;
}

.header-menu>ul>li>ul li {
	/*border-left:1px solid rgba(250,250,250,0.1);*/
}

.header-menu>ul>li li.nav-dropdown:after {
	content: "\f054";
	display: inline-block;
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	top: 11px;
	right: 7px;
	font-size: 16px;
}

.header-menu>ul>li li:hover.nav-dropdown:after {
	color: #fff;
}

.header-search-box {
	position: absolute;
	top: 26px;
	right: 15px;
	background-color: rgba(225, 225, 225, 0);
	-moz-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	-webkit-transition: all 400ms cubic-bezier(0, 0, 0, 1);
	transition: all 400ms cubic-bezier(0, 0, 0, 1);
}

.header-search-input {
	width: 0px;
	border: 0;
	background: transparent;
	font-size: 17px;
	font-style: italic;
	font-weight: 500;
	height: 45px;
	line-height: 45px;
	padding: 0 5px;
	vertical-align: middle;
	text-align: center;
	float: left;
	-moz-transition: all 900ms ease-out;
	-o-transition: all 900ms ease-out;
	-webkit-transition: all 900ms cubic-bezier(0, 0, 0, 1);
	transition: all 900ms cubic-bezier(0, 0, 0, 1);
	border-bottom: 2px solid rgba(198, 198, 198, 0);
	transform: scale(0);
	opacity: 0;
}

.header-search-input:focus {
	outline: 0;
	border-bottom: 2px solid rgba(198, 198, 198, 1);
}

.header-search-btn,
.header-search-close {
	display: inline-block;
	border: 0;
	background: transparent;
	font-size: 40px;
	width: 40px;
	height: 45px;
	line-height: 45px;
	margin: 0;
	padding: 0;
	float: left;
	-moz-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	-webkit-transition: all 400ms cubic-bezier(0, 0, 0, 1);
	transition: all 400ms cubic-bezier(0, 0, 0, 1);
	color: #fff;
	cursor: pointer;
	text-align: center;
}

.header-search-close {
	transform: scale(0);
	opacity: 0;
	color: #53565b;
	width: 0;
}

.header-search-btn:hover,
.header-search-btn:focus {
	transform: scale(0.8) rotate(30deg);
	outline: none;
	color: #18d9fc;
	text-decoration: none;
}

.header-search-close:hover,
.header-search-close:focus {
	transform: rotate(90deg);
	outline: none;
	color: #18d9fc;
	text-decoration: none;
}

.header-search-box.active {
	background-color: rgba(225, 225, 225, 1);
}

.header-search-box.active .header-search-input {
	width: 350px;
	transform: scale(1);
	opacity: 1;
}

.header-search-box.active .header-search-close {
	width: 40px;
	transform: scale(1);
	opacity: 1;
}

.header-search-box.active .header-search-close:hover {
	transform: scale(1) rotate(90deg);
}

.header-search-box.active .header-search-close,
.header-search-box.active .header-search-btn {
	color: #53565b;
}

.refine-search-box {
	margin-bottom: 26px;
	clear: both;
}

.refine-search-input {
	background-color: #e1e1e1;
	border: 0;
	padding: 2px 12px;
	width: 260px;
	text-align: center;
	font-style: italic;
	font-size: 20px;
	height: 46px;
	line-height: 46px;
	margin: 0;
	margin-left: -4px;
	float: left;
}

.refine-search-input:focus {
	outline: none;
}

.refine-search-btn {
	width: 48px;
	height: 46px;
	border: 0;
	color: #FFFFFF;
	font-size: 32px;
	background-color: #c2c2c2;
	float: left;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.refine-search-btn:hover {
	background-color: #18d9fc;
}

.refine-search-box>form {
	display: inline-block;
}

.refine-search-box label {
	background-color: #c2c2c2;
	display: inline-block;
	float: left;
	height: 46px;
	line-height: 46px;
	padding: 0px 45px;
	font-size: 20px;
	font-weight: 500;
}

.search-cont .main-content {
	padding: 0;
}

.header-title-holder {
	min-height: 293px;
	clear: both;
	/*padding-top:47px;*/
	padding-top: 77px;
	padding-bottom: 55px;
}

ul.breadcrumbs {
	padding: 0px 13px 3px 28px;
	list-style: none;
	margin: 0px;
	display: inline-block;
	background-color: #18d9fc;
	position: relative;
	float: left;
	clear: both;
}

ul.breadcrumbs:before {
	content: "";
	display: inline-block;
	background-color: #18d9fc;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -2000px;
	width: 2000px;
}

ul.breadcrumbs>li {
	display: inline-block;
}

ul.breadcrumbs>li:after {
	content: ">";
	display: inline-block;
	font-size: 15px;
	font-weight: normal;
	color: #53565b;
	margin-left: 2px;
}

ul.breadcrumbs>li:last-child:after {
	display: none;
}

ul.breadcrumbs>li>a,
ul.breadcrumbs>li>strong {
	font-size: 15px;
	font-weight: normal;
	color: #53565b;
	margin: 0 4px;
}

ul.breadcrumbs>li>a:hover,
ul.breadcrumbs>li>a:focus {
	color: #fff;
	text-decoration: none;
}

.header-title-holder .page-title {
	position: relative;
	background: #fff;
	display: inline-block;
	width: auto;
	padding: 16px 30px 22px 30px;
	padding: 32px 30px;
	line-height: 1;
	float: left;
	clear: both;
	margin-top: 0;
}

.header-title-holder .page-title:before {
	content: "";
	display: inline-block;
	background-color: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -2000px;
	width: 2000px;
}

#mobile-menu-toggle {
	display: none;
	position: fixed;
	top: 22px;
	right: 15px;
	z-index: 999999;
}

#mobile-menu-toggle>span {
	display: inline-block;
	float: right;
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	width: 60px;
	height: 60px;
	font-size: 0;
	text-indent: -9999px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border-radius: none;
	border: none;
	cursor: pointer;
	-webkit-transition: background .3s;
	transition: background .3s;
}

#mobile-menu-toggle>span>span {
	display: block;
	position: absolute;
	top: 26px;
	left: 10px;
	right: 10px;
	height: 5px;
	background: #FFF;
	transition: background 0s 0.3s;
}

#mobile-menu-toggle>span>span::before,
#mobile-menu-toggle>span>span::after {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 5px;
	background-color: #FFF;
	content: "";
	transition-duration: 0.3s, 0.3s;
	transition-delay: 0.3s, 0s;
}

#mobile-menu-toggle>span>span::before {
	top: -14px;
	transition-property: top, transform;
}

#mobile-menu-toggle>span>span::after {
	bottom: -14px;
	transition-property: bottom, transform;
}


/* active state, i.e. menu open */

#mobile-menu-toggle.is-active>span {
	/*background-color: #000;*/
}

#mobile-menu-toggle.is-active>span span {
	background: none;
}

#mobile-menu-toggle.is-active>span span::before {
	top: 0;
	transform: rotate(45deg);
}

#mobile-menu-toggle.is-active>span span::after {
	bottom: 0;
	transform: rotate(-45deg);
}

#mobile-menu-toggle.is-active>span span::before,
#mobile-menu-toggle.is-active>span span::after {
	transition-delay: 0s, 0.3s;
}

.mobile-nav-holder {
	display: none;
	position: fixed;
	top: -100%;
	bottom: 100%;
	left: 0;
	right: 0;
	width: 100%;
	color: #fff;
	background-color: #53565b;
	padding: 15px 30px;
	z-index: 99999;
	overflow-x: hidden;
	overflow-y: auto;
}

.mobile-nav-holder h2 {
	font-family: 'DIN', sans-serif;
	color: #18d9fc;
	font-size: 36px;
	text-transform: uppercase;
	margin-top: 15px;
}

.mobile-nav-holder ul {
	padding: 0 10px;
	list-style: none;
	margin: 0;
	margin-top: 30px;
}

.mobile-nav-holder ul ul {
	max-height: 0px;
	height: auto;
	overflow: hidden;
	list-style: none;
	margin: 0;
	-moz-transition: all 600ms ease-out;
	-o-transition: all 600ms ease-out;
	-webkit-transition: all 600ms cubic-bezier(0, 0, 0, 1);
	transition: all 600ms cubic-bezier(0, 0, 0, 1);
	opacity: 0;
}

.mobile-nav-holder li.active>ul {
	max-height: 1000px;
	opacity: 1;
	padding: 0;
	padding-left: 0px;
	padding-top: 5px;
}

.mobile-nav-holder ul>li>a {
	color: #fff;
	font-size: 30px;
	font-family: 'DIN', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-block;
	width: 100%;
	padding: 7px 0px;
	border-bottom: 1px solid #898989;
	text-decoration: none;
	-moz-transition: all 600ms ease-out;
	-o-transition: all 600ms ease-out;
	-webkit-transition: all 600ms cubic-bezier(0, 0, 0, 1);
	transition: all 600ms cubic-bezier(0, 0, 0, 1);
	transform: translateX(0%);
	opacity: 1;
}

.mobile-nav-holder ul ul>li>a,
.mobile-nav-holder ul ul>li>a>a {
	color: #18d9fc;
}

.mobile-nav-holder ul>li>a.hideeffect {
	-moz-transition: all 0ms ease-out;
	-o-transition: all 0ms ease-out;
	-webkit-transition: all 0ms ease-out;
	transition: all 0ms ease-out;
	transform: translateX(70%);
	opacity: 0;
}

.mobile-nav-holder ul>li>a:hover {
	background-color: #37b2e6;
	text-decoration: none;
}

.mobile-nav-holder ul>li>a:focus {
	background-color: transparent;
	text-decoration: none;
}

.mobile-nav-holder ul>li>a>.mcaret {
	width: 30px;
	display: inline-block;
	text-align: center;
	float: right;
	margin-top: 5px;
	-moz-transition: all 600ms ease-out;
	-o-transition: all 600ms ease-out;
	-webkit-transition: all 600ms cubic-bezier(0, 0, 0, 1);
	transition: all 600ms cubic-bezier(0, 0, 0, 1);
}

.mobile-nav-holder ul>li.active>a>.mcaret {
	transform: rotate(-90deg);
}

.mobile-nav-holder ul>li>a>a {
	color: #fff;
	text-decoration: none;
}

.mobile-nav-holder ul ul>li>a {
	padding: 11px 0px;
	padding-left: 22px;
	font-size: 18px;
}

.row-withfixed {
	display: table;
	/* width:100%;*/
}

.row-withfixed>.main-content-holder,
.row-withfixed>.sidebar-content {
	display: table-cell;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	vertical-align: top;
}

.row-withfixed>.sidebar-content {
	width: 340px;
}

.main-content {
	background-color: #fff;
	/*padding:38px 60px;*/
	padding: 60px 60px;
}

.main-content p {
	margin-bottom: 30px;
}

.sidebar-content {
	/*margin-top:-160px;*/
}

.margtop {
	margin-top: -40px;
	margin-bottom: 20px;
}

.margtop .main-content-holder {
	/*margin-top:-40px;*/
}

.margtop .sidebar-content {
	/*margin-top:-160px;*/
	margin-top: -120px;
}

.margtop2 {
	margin-top: -40px;
	margin-bottom: 20px;
}

.margtop2 .main-content-holder,
.margtop2 .sidebar-content {
	margin-top: 0px;
}

.entry-content>ul,
.entry-content>p>ul {
	list-style: none;
	padding: 0;
}

.entry-content>ul>li,
.entry-content>p>ul>li {
	padding-left: 35px;
	position: relative;
	margin-bottom: 4px;
}

.entry-content>ul>li:before,
.entry-content>p>ul>li:before {
	content: "";
	display: inline-block;
	background-color: #54565b;
	width: 12px;
	height: 12px;
	position: absolute;
	top: 4px;
	left: 0;
}

.entry-content>ol,
.entry-content>p>ol {
	counter-reset: li;
	/* Initiate a counter */
	margin-left: 0;
	/* Remove the default left margin */
	padding-left: 0;
	/* Remove the default left padding */
}

.entry-content>ol > li,
.entry-content>p>ol > li {
	position: relative;
	/* Create a positioning context */
	/* Give each list item a left margin to make room for the numbers */
	/* Add some spacing around the content */
	margin-bottom: 8px;
	padding-left: 35px;
	list-style: none;
	/* Disable the normal item numbering */
}

.entry-content>ol > li:before,
.entry-content>p>ol > li:before {
	content: counter(li);
	/* Use the counter as content */
	counter-increment: li;
	/* Increment the counter by 1 */
	/* Position and style the number */
	position: absolute;
	top: 4px;
	left: 0px;
	display: inline-block;
	width: 25px;
	/* Some space between the number and the content in browsers that support
       generated content but not positioning it (Camino 2 is one example) */
	height: 25px;
	line-height: 25px;
	color: #fff;
	background: #54565B;
	font-weight: bold;
	font-size: 16px;
	font-family: "Helvetica Neue", Arial, sans-serif;
	text-align: center;
	vertical-align: middle;
}

.main-content blockquote {
	text-align: center;
	font-size: 24px;
	color: #53565b;
	font-weight: bold;
	font-style: italic;
	position: relative;
	padding: 10px 58px;
	border-width: 0;
}

.main-content blockquote:before,
.main-content blockquote:after {
	content: "";
	display: inline-block;
	position: absolute;
	width: 34px;
	height: 27px;
}

.main-content blockquote:before {
	content: "";
	background: url(imgs/quote-left.png) no-repeat center center;
	top: 15px;
	left: 15px;
	background-size: contain;
}

.main-content blockquote:after {
	content: "";
	background: url(imgs/quote-right.png) no-repeat center center;
	bottom: 15px;
	right: 15px;
	background-size: contain;
}

.button,
.wpcf7-submit {
	display: inline-block;
	border: 0;
	padding: 10px 18px;
	background: #53565B;
	margin: 5px 0;
	font-family: 'DIN', sans-serif;
	font-size: 16px;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	-moz-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	-webkit-transition: all 400ms cubic-bezier(0, 0, 0, 1);
	transition: all 400ms cubic-bezier(0, 0, 0, 1);
	position: relative;
	z-index: 5;
}

.button:hover,
.button:focus,
.wpcf7-submit:hover,
.wpcf7-submit:focus {
	outline: none;
	text-decoration: none;
	color: #fff;
}

.button-plus {}

.button-plus:after,
.wpcf7-submit:after {
	content: "\f218";
	display: inline-block;
	font-family: "Ionicons";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	text-rendering: auto;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-left: 8px;
	margin-right: -5px;
	/* margin-left: 5px; */
	/* transform: rotate(0deg) translate(5px,0); */
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	/*-moz-transition: all 600ms ease-out;
    -o-transition: all 600ms ease-out;
    -webkit-transition: all 600ms cubic-bezier(0, 0, 0, 1);
    transition: all 600ms cubic-bezier(0, 0, 0, 1);*/
	-moz-transition: color 0ms ease-out, transform 600ms cubic-bezier(0, 0, 0, 1);
	-o-transition: color 0ms ease-out, transform 600ms cubic-bezier(0, 0, 0, 1);
	-webkit-transition: color 0ms ease-out, transform 600ms cubic-bezier(0, 0, 0, 1);
	transition: color 0ms ease-out, transform 600ms cubic-bezier(0, 0, 0, 1);
}

.button-plus:hover:after,
.wpcf7-submit:hover:after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.button>i.ion-plus {
	margin-left: 5px;
	margin-right: -5px;
	/*margin-left:5px;*/
	/*transform: rotate(0deg) translate(5px,0);*/
	transform: rotate(0deg);
	display: inline-block;
	-moz-transition: all 600ms ease-out;
	-o-transition: all 600ms ease-out;
	-webkit-transition: all 600ms cubic-bezier(0, 0, 0, 1);
	transition: all 600ms cubic-bezier(0, 0, 0, 1);
}

.button:hover>i.ion-plus {
	/*transform: rotate(90deg) translate(0,-5px);*/
	transform: rotate(180deg);
}

.button-white-outline,
.wpcf7-submit {
	border: 3px solid #fff;
	color: #fff;
	background-color: transparent;
}

.button-white-outline:before,
.wpcf7-submit:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	transform: scaleY(0);
	-moz-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	-webkit-transition: all 200ms cubic-bezier(0, 0, 0, 1);
	transition: all 200ms cubic-bezier(0, 0, 0, 1);
}

.button-white-outline:hover,
.button-white-outline:focus,
.wpcf7-submit:hover,
.wpcf7-submit:focus {
	color: #53565B;
}

.button-white-outline:hover:before,
.button-white-outline:focus:before,
.wpcf7-submit:hover:before,
.wpcf7-submit:focus:before {
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	border: 0;
	font-size: 16px;
	font-weight: bold;
	color: #53565b;
	padding: 10px 16px;
	background-color: #fff;
}

.wpcf7 textarea {
	height: 130px;
	max-height: 100%;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
	outline-color: #18d9fc;
}


/*.h2-title{
	font-family: 'DIN', sans-serif;
	font-size:26px;
	color:#fff;
	text-transform:uppercase;
	margin-top: 0;
	margin-bottom: 20px;
}*/


/*.h2-title:before, .entry-title:before{
	content:"";
	display:block;
	width:50px;
	height:5px;
	background-color:#fff;
	margin-bottom:14px;
}*/

.h2-title {
	font-family: 'DIN', sans-serif;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 20px;
}

.h2-title:before,
.entry-title:before {
	content: "";
	display: block;
	width: 50px;
	height: 5px;
	background-color: #18d9fc;
	margin-bottom: 8px;
	margin-left: 1px;
}

.sidebar-content .h2-title {
	font-size: 26px;
}

.dec-title {}

.dec-title:before {
	content: "";
	display: block;
	width: 50px;
	height: 5px;
	background-color: #fff;
	margin-bottom: 5px;
}

.main-content .dec-title:before {
	background-color: #18d9fc;
}

.main-content .h2-title {
	font-size: 36px;
	color: #53565b;
	margin-top: 0;
	margin-bottom: 20px;
}

.main-content .entry-title {
	color: #53565b;
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 36px;
	font-weight: bold;
	text-transform: none;
}

.main-content .h2-title:before,
.main-content .entry-title:before {
	background-color: #18d9fc;
}

.box {
	padding: 46px 46px;
	margin-bottom: 25px;
	color: #fff;
	z-index: 2;
	background-size: cover;
	background-position: center center;
	font-size: 16px;
}

.box .h2-title {
	font-size: 26px;
}

.box .h2-title:before {
	background-color: #fff;
}

.box h1,
.box h2,
.box h3,
.box h4 {
	color: #fff;
}

.box-grey-blue,
.box-dgrey-orange {
	background-color: #53565b;
	font-size: 24px;
}

.box-grey-orange {
	background-color: #757a7f;
}

.box-grey-green {
	background-color: #959595;
}

.box-lgrey-green {
	background-color: #ccc;
}

.box-cyan {
	background-color: #18d9fc;
}

.box-orange {
	background-color: #fbb317;
}

.box-lgrey-grey {
	background-color: #efefef;
	color: #53565b;
}

.box-grey-white {
	background-color: #898989;
	color: #fff;
}

.box-grey-blue .h2-title {
	font-size: 36px;
}

.box-grey-blue .h2-title:before {
	background-color: #18d9fc;
	height: 6px;
}

.box-grey-blue p a {
	color: #fff;
}

.box-grey-blue p a:hover {
	color: #18d9fc;
}

.box-grey-orange .h2-title:before,
.box-dgrey-orange .h2-title:before {
	background-color: #fcb318;
}

.box-grey-green .h2-title:before,
.box-lgrey-green .h2-title:before,
.box-orange .h2-title:before {
	background-color: #d9fc18;
}

.box-cyan .h2-title,
.box-lgrey-green .h2-title {
	color: #53565b;
}

.box-cyan .h2-title:before {
	background-color: #fff;
}

.box-lgrey-grey .h2-title {
	color: #53565b;
}

.box-lgrey-grey .h2-title:before {
	background-color: #53565b;
}

.box-grey-white .h2-title {
	color: #fff;
}

.box-grey-white .h2-title:before {
	color: #fff;
}

.box-grey-blue .button-white-outline,
.box-grey-blue .wpcf7-submit {
	color: #18d9fc;
}

.box-grey-orange .button-white-outline,
.box-grey-orange .wpcf7-submit,
.box-dgrey-orange .button-white-outline {
	color: #fcb318;
}

.box-grey-green .button-white-outline,
.box-grey-green .wpcf7-submit,
.box-lgrey-green .button-white-outline {
	color: #d9fc18;
}

.sidebar-content .box {
	padding: 32px 28px;
}

.sidebar-content div.wpcf7 img.ajax-loader {
	float: left;
}

.box-min {
	font-size: 14px;
	padding: 26px 26px;
}

.box-min .h2-title {
	font-size: 22px;
}

.entry-meta {
	color: #18d9fc;
	font-size: 16px;
	margin-bottom: 20px;
}

.single-post .entry-title {
	margin-bottom: 8px;
}

.entry-subheading {
	margin-bottom: 9px;
}

.footer {
	background-color: #53565b;
	padding-top: 44px;
	padding-bottom: 65px;
	color: #fff;
}

.footer .h2-title {
	font-size: 24px;
}

.footer .h2-title a{
	color: #FFF;
}

.footer .h2-title a:hover{
	color: #18d9fc;
}

.footer .h2-title:before {
	background-color: #18d9fc;
}

.footer .widget_nav_menu ul {
	list-style: none;
	padding: 0;
}

.footer .widget_nav_menu ul>li>a {
	display: block;
	color: #fff;
	font-size: 17px;
	font-weight: 400;
	/*margin-left: -9px; turned off to offset removing the before symbol in footer nav rjl 052919*/
}

.footer .widget_nav_menu ul>li>a:hover {
	color: #18d9fc;
	text-decoration: none;
}

/*.footer .widget_nav_menu ul>li>a:before {
	content: "\f125";
	display: inline-block;
	font-family: "Ionicons";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	text-rendering: auto;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 10px;
	float: left;
	margin-top: 7px;
	padding-right: 5px;
	-moz-transition: all 1200ms ease-out;
	-o-transition: all 1200ms ease-out;
	-webkit-transition: all 1200ms cubic-bezier(0, 0, 0, 1);
	transition: all 1200ms cubic-bezier(0, 0, 0, 1);
	transform: scaleY(0) translateX(-15px);
	transform-origin: center left;
} turned off 052919 rjl to fix alignment on Japan footers */

.footer .widget_nav_menu ul>li>a:hover:before {
	/*transform:scaleY(1) translateX(0px);
	-moz-transition: 	all 300ms ease-out;
	-o-transition: 		all 300ms ease-out;
	-webkit-transition: all 300ms cubic-bezier(0, 0, 0, 1);
  	transition:         all 300ms cubic-bezier(0, 0, 0, 1);*/
}

ul.social-menu {
	padding: 0;
	list-style: none;
}

ul.social-menu>li {
	display: inline-block;
}

ul.social-menu>li>a {
	display: inline-block;
	width: 32px;
	height: 32px;
	line-height: 32px;
	font-size: 17px;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	position: relative;
}

ul.social-menu>li>a:hover {
	color: #18d9fc;
}

ul.social-menu>li>a:before {
	content: "";
	display: inline-block;
	border: 2px solid #fff;
	border-radius: 50%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	-moz-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	-webkit-transition: all 400ms cubic-bezier(0, 0, 0, 1);
	transition: all 400ms cubic-bezier(0, 0, 0, 1);
}

ul.social-menu>li>a:hover:before {
	/*transform:scale(1.2);*/
}

.team-box-entry {
	padding: 0;
	background-color: #707070;
	overflow: hidden;
}

.team-box-entry .thumb {
	width: 100%;
	height: 225px;
	background-color: #fff;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}

.team-box-entry .content {
	padding: 25px 28px;
	color: #18d9fc;
	font-size: 16px;
	font-weight: bold;
	background-color: #707070;
	-webkit-transform: translate3d(0, -225px, 0);
	transform: translate3d(0, -225px, 0);
	/*min-height:225px;*/
}

.team-box-entry .inner {
	min-height: 80px;
}

.team-box-entry .h2-title {
	font-size: 24px;
	margin-bottom: 5px;
}

.post-box-entry {
	padding: 0 !important;
	background-color: #707070;
	overflow: hidden;
}

.post-box-entry .thumb {
	width: 100%;
	height: 225px;
	background-color: #fff;
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
}

.post-box-entry .content {
	padding: 25px 28px;
	color: #fff;
	font-size: 16px;
	font-weight: normal;
	background-color: #707070;
	height: 290px;
	-webkit-transform: translate3d(0, -225px, 0);
	transform: translate3d(0, -225px, 0);
}

.post-box-entry .content>.inner {}

.post-box-entry .content>.inner .excrept {
	letter-spacing: -0.03em;
}

.post-box-entry time {
	color: #18d9fc;
	font-weight: bold;
}

.post-box-entry .h2-title {
	font-size: 24px;
	margin-bottom: 5px;
	text-transform: none;
}

.cs-box-holder {
	margin: 0;
}

.cs-box-holder .post {
	padding: 0;
}

.cs-box-entry {
	width: 100%;
	height: 257px;
	color: #fff;
	font-size: 14px;
	padding: 23px 23px;
	position: relative;
	z-index: 8;
	background-size: cover;
	background-position: center center;
}

.cs-box-entry:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(83, 86, 91, 0.5);
	z-index: -1;
}

.cs-box-entry>.content {
	height: 170px;
	overflow: hidden;
}

.cs-box-entry .h2-title {
	font-size: 18px;
	width: 50%;
	margin-bottom: 14px;
}

.cs-box-entry .h2-title:before {
	background-color: #d9fc18;
	height: 5px;
}

.cs-box-grey {
	background-color: #53565b;
	background-image: none !important;
}

.cs-box-grey:before {
	display: none;
}

.cs-box-cyan {
	background-color: #19d6f8;
	background-image: none !important;
}

.cs-box-cyan:before {
	display: none;
}

.cs-box-orange {
	background-color: #fcb318;
	background-image: none !important;
}

.cs-box-orange:before {
	display: none;
}

.list-custom-taxonomy-widget h2 {
	margin-bottom: 11px;
}

.list-custom-taxonomy-widget ul,
.widget_categories ul,
.widget_archive ul {
	list-style: none;
	padding: 0;
	padding-left: 20px;
}

.list-custom-taxonomy-widget ul>li,
.widget_categories ul>li,
.widget_archive ul>li {
	padding-left: 20px;
	position: relative;
	display: inline-block;
	width: 100%;
	/* vertical-align: top; */
	line-height: 1;
	color: #fff;
	font-size: 20px;
}

.list-custom-taxonomy-widget ul>li:before,
.widget_categories ul>li:before,
.widget_archive ul>li:before {
	content: "\f125";
	display: inline-block;
	font-family: "Ionicons";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	text-rendering: auto;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 12px;
	position: absolute;
	top: 4px;
	left: 5px;
	transition: all 300ms ease-out;
}

.list-custom-taxonomy-widget ul>li>a,
.widget_categories ul>li>a,
.widget_archive ul>li>a {
	/*color:#fff;*/
	color: inherit;
	font-size: 20px;
	display: inline-block;
	width: 100%;
	vertical-align: top;
	line-height: 1.2;
}


/*.list-custom-taxonomy-widget ul>li:hover:before,.list-custom-taxonomy-widget ul>li:hover>a, .widget_categories ul>li:hover>a, .widget_categories ul>li:hover:before, .widget_archive ul>li:hover>a, .widget_archive ul>li:hover:before{
    color: #FCB318;*/

.list-custom-taxonomy-widget ul>li:hover:before,
.widget_categories ul>li:hover:before,
.widget_archive ul>li:hover:before {
	left: 7px;
}

.list-custom-taxonomy-widget ul>li:hover>a,
.widget_categories ul>li:hover>a,
.widget_archive ul>li:hover>a {
	text-decoration: none;
	color: inherit;
}

.list-custom-taxonomy-widget ul>li:hover,
.widget_categories ul>li:hover,
.widget_archive ul>li:hover {
	color: #18d9fc;
}

.box-grey-blue .list-custom-taxonomy-widget ul>li:hover,
.box-grey-blue.list-custom-taxonomy-widget ul>li:hover,
.box-grey-blue .widget_categories ul>li:hover,
.box-grey-blue.widget_categories ul>li:hover,
.box-grey-blue .widget_archive ul>li:hover,
.box-grey-blue.widget_archive ul>li:hover {
	color: #18d9fc;
}

.box-grey-orange .list-custom-taxonomy-widget ul>li:hover,
.box-grey-orange.list-custom-taxonomy-widget ul>li:hover,
.box-grey-orange .widget_categories ul>li:hover,
.box-grey-orange.widget_categories ul>li:hover,
.box-grey-orange .widget_archive ul>li:hover,
.box-grey-orange.widget_archive ul>li:hover,
.box-dgrey-orange .list-custom-taxonomy-widget ul>li:hover,
.box-dgrey-orange.list-custom-taxonomy-widget ul>li:hover,
.box-dgrey-orange .widget_categories ul>li:hover,
.box-dgrey-orange.widget_categories ul>li:hover,
.box-dgrey-orange .widget_archive ul>li:hover,
.box-dgrey-orange.widget_archive ul>li:hover {
	color: #fcb318;
}

.box-grey-green .list-custom-taxonomy-widget ul>li:hover,
.box-grey-green.list-custom-taxonomy-widget ul>li:hover,
.box-grey-green .widget_categories ul>li:hover,
.box-grey-green.widget_categories ul>li:hover,
.box-grey-green .widget_archive ul>li:hover,
.box-grey-green.widget_archive ul>li:hover,
.box-lgrey-green .list-custom-taxonomy-widget ul>li:hover,
.box-lgrey-green.list-custom-taxonomy-widget ul>li:hover,
.box-lgrey-green .widget_categories ul>li:hover,
.box-lgrey-green.widget_categories ul>li:hover,
.box-lgrey-green .widget_archive ul>li:hover,
.box-lgrey-green.widget_archive ul>li:hover {
	color: #d9fc18;
}

.service-holder {
	margin: 0;
}

.service-entry {
	float: left;
	width: 100%;
}

.service-entry>.box {
	float: left;
	width: 46%;
	margin-bottom: 0;
	overflow: hidden;
}

.service-entry>.box .content {
	height: 123px;
}

.service-entry>.box .h2-title {
	font-size: 33px;
}

.service-entry>.thumb {
	float: left;
	display: inline-block;
	width: 54%;
	background-size: cover;
	background-position: center center;
}

.service-entry>.box,
.service-entry>.thumb {
	height: 255px;
}

.services-holder {
	background-color: #fff;
}

.services-holder .service-entry:nth-child(6n+2) {
	width: 43%;
}

.services-holder .service-entry:nth-child(6n+2)>.box {
	width: 100%;
	padding: 30px 28px 20px;
	height: 215px;
}

.services-holder .service-entry:nth-child(6n+2)>.box .h2-title {
	font-size: 24px;
}

.services-holder .service-entry:nth-child(6n+2)>.box .content {
	height: 114px;
}

.services-holder .service-entry:nth-child(6n+2)>.thumb {
	display: none;
	height: 215px;
}

.services-holder .service-entry:nth-child(6n+3) {
	width: 57%;
}

.services-holder .service-entry:nth-child(6n+3)>.box {
	width: 57%;
	padding: 30px 28px 20px;
	height: 215px;
}

.services-holder .service-entry:nth-child(6n+3)>.box .h2-title {
	font-size: 24px;
	word-spacing: 10000px;
}

.services-holder .service-entry:nth-child(6n+3)>.box .content {
	height: 114px;
}

.services-holder .service-entry:nth-child(6n+3)>.thumb {
	width: 43%;
	height: 215px;
}

.services-holder .service-entry:nth-child(6n+4) {
	width: 100%;
	padding-right: 1px;
}

.services-holder .service-entry:nth-child(6n+4)>.box {
	width: 50%;
}

.services-holder .service-entry:nth-child(6n+4)>.box .h2-title {
	font-size: 28px;
}

.services-holder .service-entry:nth-child(6n+4)>.thumb {
	width: 50%;
}

.services-holder .service-entry:nth-child(6n+5) {
	width: 33%;
}

.services-holder .service-entry:nth-child(6n+5)>.box {
	width: 100%;
	padding: 30px 28px 20px;
	height: 215px;
}

.services-holder .service-entry:nth-child(6n+5)>.box .h2-title {
	font-size: 24px;
	word-spacing: 10000px;
}

.services-holder .service-entry:nth-child(6n+5)>.box .content {
	height: 114px;
}

.services-holder .service-entry:nth-child(6n+5)>.thumb {
	display: none;
	height: 215px;
}

.services-holder .service-entry:nth-child(6n+6) {
	width: 67%;
}

.services-holder .service-entry:nth-child(6n+6)>.box {
	width: 48.5%;
	padding: 30px 28px 20px;
	height: 215px;
}

.services-holder .service-entry:nth-child(6n+6)>.box .h2-title {
	font-size: 24px;
	word-spacing: 10000px;
}

.services-holder .service-entry:nth-child(6n+6)>.box .content {
	height: 114px;
}

.services-holder .service-entry:nth-child(6n+6)>.thumb {
	width: 51.5%;
	height: 215px;
}


/**
 * 6.14 Comments
 * -----------------------------------------------------------------------------
 */

.comments-area {
	/* margin: 48px auto; */
	/* max-width: 474px; */
	/* padding: 0 10px; */
}

.comment-reply-title,
.comments-title {
	font: 700 30px/1.5 'AktivGrotesk', sans-serif;
	text-transform: none;
	color: #53565B;
}

.comment-list {
	list-style: none;
	margin: 0 0 48px 0;
}

.comment-author {
	font-size: 14px;
	line-height: 1.7142857142;
}

.comment-list .reply,
.comment-metadata {
	font-size: 10px;
	line-height: 1;
	text-transform: uppercase;
}

.comment-list .reply {
	margin-top: 9px;
	font-size: 12px;
}

.comment-author .fn {
	font-weight: 900;
	text-transform: Capitalize;
}

.comment-author a {
	color: #2b2b2b;
}

.comment-list .trackback a,
.comment-list .pingback a,
.comment-metadata a {
	color: #767676;
}

.comment-author a:hover,
.comment-list .pingback a:hover,
.comment-list .trackback a:hover,
.comment-metadata a:hover {
	color: #18d9fc;
}

.comment-list article,
.comment-list .pingback,
.comment-list .trackback {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 11px;
	padding-top: 11px;
}

.comment-list > li:first-child > article,
.comment-list > .pingback:first-child,
.comment-list > .trackback:first-child {
	border-top: 0;
}

.comment-author {
	position: relative;
}

.comment-author .avatar {
	border: 1px solid rgba(0, 0, 0, 0.1);
	/* height: 18px; */
	padding: 2px;
	position: absolute;
	top: 5px;
	left: 0;
	/* width: 18px; */
}

.bypostauthor > article .fn:before {
	/* content: "\f408"; */
	margin: 0 2px 0 -2px;
	position: relative;
	top: -1px;
}

.says {
	display: none;
}

.comment-author,
.comment-awaiting-moderation,
.comment-content,
.comment-list .reply,
.comment-metadata {
	padding-left: 44px;
}

.comment-edit-link {
	margin-left: 10px;
}

.comment-edit-link:before {
	/* content: "\f411"; */
}

.comment-reply-link:before,
.comment-reply-login:before {
	/* content: "\f412"; */
	margin-right: 2px;
	font-family: "Ionicons";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	text-rendering: auto;
}

.comment-content {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	word-wrap: break-word;
	font-size: 17px;
}

.comment-content ul,
.comment-content ol {
	margin: 0 0 24px 22px;
}

.comment-content li > ul,
.comment-content li > ol {
	margin-bottom: 0;
}

.comment-content >:last-child {
	margin-bottom: 0;
}

.comment-list .children {
	list-style: none;
	margin-left: 15px;
}

.comment-respond {
	margin-bottom: 24px;
	padding: 0;
}

.comment .comment-respond {
	margin-top: 24px;
}

.comment-respond h3 {
	margin-top: 0;
	margin-bottom: 8px;
}

.comment-notes,
.comment-awaiting-moderation,
.logged-in-as,
.no-comments,
.form-allowed-tags,
.form-allowed-tags code {
	color: #767676;
}

.comment-notes,
.comment-awaiting-moderation,
.logged-in-as {
	font-size: 14px;
	line-height: 1.7142857142;
}

.no-comments {
	font-size: 16px;
	font-weight: 900;
	line-height: 1.5;
	margin-top: 24px;
	text-transform: uppercase;
}

.comment-form label {
	display: block;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
	width: 100%;
}

.form-allowed-tags,
.form-allowed-tags code {
	font-size: 12px;
	line-height: 1.5;
}

.required {
	color: #c0392b;
}

.comment-reply-title small a {
	color: #2b2b2b;
	float: right;
	height: 24px;
	overflow: hidden;
	width: 24px;
}

.comment-reply-title small a:hover {
	color: #41a62a;
}

.comment-reply-title small a:before {
	content: "\f405";
	font-size: 32px;
}

.comment-navigation {
	font-size: 12px;
	line-height: 2;
	margin-bottom: 48px;
	text-transform: uppercase;
}

.comment-navigation .nav-next,
.comment-navigation .nav-previous {
	display: inline-block;
}

.comment-navigation .nav-previous a {
	margin-right: 10px;
}

#comment-nav-above {
	margin-top: 36px;
	margin-bottom: 0;
}

.comment-form-comment textarea {
	border-radius: 5px;
	width: 100%;
	height: 86px;
	border: 1px solid #ddd;
	font-size: 18px;
	padding: 5px 12px;
}

.comment-respond .form-submit {
	text-align: right;
}

.comment-respond .form-submit input#submit {
	border: 0;
	background-color: #53565B;
	color: #fff;
	font-size: 17px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 5px 16px;
}

.search-cont article {
	margin-bottom: 20px;
	padding-bottom: 20px;
	/*border-bottom: 1px solid #ddd;*/
}

.search-cont article h1.entry-title,
.search-cont article h1.entry-title>a {
	font-size: 24px;
	color: #53565b !important;
	padding-bottom: 12px;
	margin-bottom: 20px;
}

.search-cont article h1.entry-title>a {
	border-bottom: 2px solid #18D9FC;
}

.search-cont article h1.entry-title>a:hover,
.search-cont article h1.entry-title>a:focus {
	text-decoration: none;
	color: #18D9FC !important;
}

.search-cont article h1.entry-title:before {
	display: none;
}

.search-cont .entry-summary {
	font-size: 24px;
}

.contact-tab>li>a {
	background-color: #53565B;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	border-radius: 0;
	border: 0;
	margin: 0;
	padding: 23px 40px;
	transition: all 300ms ease-out;
	text-align: center;
}

.contact-tab>li>a:hover,
.contact-tab>li.active>a,
.contact-tab>li.active>a:hover,
.contact-tab>li>a:focus {
	background-color: #18D9FC;
	color: #53565B;
	text-decoration: none;
	border: 0;
}

.nemus-slider {
	margin-bottom: 50px !important;
}

.nemus-slider .slides>li .caption {
	font-size: 12px;
	width: 50%;
	padding: 5px 12px;
	background-color: #53565b;
}

.nemus-slider .slides>li .caption.bl {
	left: 0px;
	bottom: 0px;
}

.nemus-slider .slides>li .caption.tl {
	left: 0px;
	top: 0px;
}

.nemus-slider .slides>li .caption.tr {
	right: 0px;
	top: 0px;
}

.nemus-slider .slides>li .caption.br {
	right: 0px;
	bottom: 0px;
}

.nemus-slider .nemus-direction-nav a {
	background-color: #53565B;
	opacity: 1;
	color: #fff;
	width: 46px;
	height: 46px;
	margin-top: -23px;
	text-align: center;
}

.nemus-slider .nemus-direction-nav a:hover {
	background-color: #18d9fc;
}

.nemus-slider .nemus-direction-nav a:before {
	width: 46px;
	height: 46px;
	line-height: 46px;
	font-size: 41px;
}

.nemus-slider .nemus-direction-nav a.nemus-prev {
	left: -23px;
}

.nemus-slider .nemus-direction-nav a.nemus-next {
	right: -23px;
}

.nemus-slider .nemus-control-paging li a {
	background: transparent;
}

.nemus-slider .nemus-control-paging li a.nemus-active {
	background-color: #18D9FC;
	border-color: #18D9FC;
}



.history-container {
	padding-top: 150px;
}

.history-row {
	clear: both;
	position: relative;
	z-index: 7;
	display: inline-block;
	width: 100%;
}

.history-row:before {
	content: "";
	position: absolute;
	top: -2px;
	left: 9%;
	right: 9%;
	bottom: -6px;
	border: 4px solid #18d9fc;
	border-left-width: 0;
	border-bottom-width: 0;
	z-index: -1;
}

.history-row:after {
	content: "\f078";
	content: "\f107";
	font: normal normal normal 14px/1 FontAwesome;
	color: #18d9fc;
	position: absolute;
	top: 46px;
	right: 9%;
	width: 33px;
	bottom: -10px;
	/*background-color:#18d9fc;*/
	z-index: -1;
	text-align: center;
	font-size: 47px;
	transform: translateX(14px);
}

.history-entry {
	padding: 25px 0;
	transform: translateY(-50%);
}

.history-entry>div.box {
	padding: 21px 22px;
	color: #fff;
	font-size: 14px;
	margin-bottom: 0;
}

.history-entry .h2-title {
	color: #fff;
	font-size: 20px;
	text-transform: none;
}

.history-entry .h2-title:before {
	margin-bottom: 6px;
	width: 40px;
}

.history-row>.history-entry {
	width: 36%;
	float: left;
	margin-left: 9%;
	/*opacity: 0.1;*/
}

.history-row>.history-entry:first-child {
	margin-left: 0%;
}

.history-container>.history-row:first-child:before {
	left: 18%;
}

.history-container>.history-row:nth-child(even)>.history-entry {
	float: right;
	margin-left: 0%;
	margin-right: 9%;
}

.history-container>.history-row:nth-child(even)>.history-entry:first-child {
	margin-right: 0%;
}

.history-container>.history-row:nth-child(even):before {
	left: 9%;
	right: 9%;
	border-right-width: 0;
	border-left-width: 4px;
}

.history-container>.history-row:nth-child(even):after {
	left: 9%;
	transform: translateX(-15px);
	right: auto;
}

.history-container>.history-row:nth-child(odd):last-child:before {
	right: 37%;
	border-right-width: 0;
	border-left-width: 0px;
}

.history-container>.history-row:nth-child(even):last-child:before {
	left: 37%;
	border-right-width: 0;
	border-left-width: 0px;
}

.history-container>.history-row:last-child:after {
	display: none;
}

.history-container>.history-row:last-child {
	margin-bottom: -25%;
}

.hp-box-holder .box,
.hp-box-holder .thumb {
	height: 232px;
	margin-bottom: 0;
	overflow: hidden;
}

.hp-box-holder-big .box,
.hp-box-holder-big .thumb {
	height: 370px;
	font-size: 24px;
}

.hp-box-holder .thumb {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.hp-news-list {
	padding: 0;
	list-style: none;
	margin: 0;
}

.hp-news-list h4 {
	margin-bottom: 3px;
}

.hp-news-list h4>a {
	font-size: 20px;
	color: #53565b;
}

.hp-news-button {
	float: right;
	border-color: #53565b;
	color: #53565b;
	padding-left: 5px;
}

.hp-news-button:before {
	background-color: #53565b;
}

.hp-news-button:hover {
	color: #fff;
}

.hp-news-meta {
	font-size: 14px;
}

.hp-news-author {
	font-size: 14px;
	text-transform: uppercase;
}

.hp-news-author:before {
	content: "__";
	letter-spacing: -0.2px;
	transform: translateY(-7px);
	display: inline-block;
	margin-right: 5px;
}

.hp-projects {
	width: 100%;
	margin-top: 15px;
}

.hp-projects-item {
	width: 100%;
	height: 225px;
	position: relative;
}

.hp-projects-item>a {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: inline-block;
}

.hp-projects-item>.thumb {
	height: 100%;
	background-color: #6C6C6C;
	background-size: cover;
	background-position: center center;
}

.hp-projects-item>.cont {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: #18d9fc;
	color: #fff;
	padding: 24px 32px;
	font-size: 14px;
	overflow: hidden;
	/*opacity:0;
	transform:scale(0,0);*/
	transform: translateY(-100%);
	-moz-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	-webkit-transition: all 400ms cubic-bezier(0, 0, 0, 1);
	transition: all 400ms cubic-bezier(0, 0, 0, 1);
}

.hp-projects-item>.cont .h2-title {
	font-size: 18px;
	color: #fff;
	margin-bottom: 5px;
	width: 50%;
}

.hp-projects-item>.cont .h2-title:before {
	background-color: #d9fc18;
}

.hp-projects-item>.cont>div {
	/*transform:translateY(-100%);*/
	opacity: 0;
	-moz-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	-webkit-transition: all 400ms cubic-bezier(0, 0, 0, 1);
	transition: all 400ms cubic-bezier(0, 0, 0, 1);
	/*transition-delay:0.6s;*/
}

.hp-projects-item:hover>.cont {
	opacity: 1;
	/*transform:scale(1,1);*/
	transform: translateY(0%);
}

.hp-projects-item:hover>.cont>div {
	transform: translateY(0%);
	opacity: 1;
}

.hp-projects .owl-controls .owl-nav {
	position: absolute;
	top: -35px;
	right: 0;
}

.hp-projects .owl-controls .owl-nav [class*=owl-] {
	position: static !important;
	/*margin-left:8px;*/
	background-color: #53565b !important;
	background-image: url(imgs/nav_next.png);
	background-repeat: no-repeat;
	background-position: center center;
	width: 47px;
	height: 51px;
	padding: 0 !important;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	-webkit-transition: all 300ms cubic-bezier(0, 0, 0, 1);
	transition: all 300ms cubic-bezier(0, 0, 0, 1);
}

.hp-projects .owl-controls .owl-nav .owl-prev {
	background-image: url(imgs/nav_prev.png);
}

.hp-projects .owl-controls .owl-nav [class*=owl-]:after {
	display: none;
}

.hp-projects .owl-controls .owl-nav [class*=owl-]:hover {
	background-color: #18d9fc !important;
	background-image: url(imgs/nav_next.png);
	background-repeat: no-repeat;
	background-position: center center;
}

.hp-projects .owl-controls .owl-nav .owl-prev:hover {
	background-image: url(imgs/nav_prev.png);
}

.media-sidebar-box .h2-title {
	font-size: 28px;
}

.media-sidebar-box h4 {
	font-size: 20px;
}

.media-sidebar-box .widget_categories,
.media-sidebar-box .widget_archive {
	padding-left: 32px;
}

.single-team .main-content .entry-title {
	margin-bottom: 5px;
}

.single-team .main-content .entry-job-title {
	margin-bottom: 32px;
}

.single-team .main-content p {
	line-height: 1;
}

.error404 .main-content {
	font-size: 32px;
}

.error404 .main-content h2 {
	font-size: 44px;
}

.error404 .main-content hr {
	max-width: 528px;
	border-width: 2px;
	border-color: #a1a1a1;
	margin-left: 0;
}

.menu-404-menu-container {
	padding-left: 75px;
}

.menu404 {
	padding-left: 0;
	list-style: none;
	margin-top: 20px;
}

.menu404>li {
	padding-left: 57px;
	margin-bottom: 22px;
	background: url(imgs/menu404-bullet.png) no-repeat;
	background-position: left 2px;
	font-size: 28px;
	color: #53565b;
}

.menu404>li>a {
	font-size: 28px;
	color: #53565b;
}

.menu404>li>a:hover,
.menu404>li>a:focus {
	color: #18d9fc;
	text-decoration: none;
}

ul.sitemap-menu {
	padding-left: 0;
	list-style: none;
}

ul.sitemap-menu a,
ul.sitemap-menu li {
	font-size: 24px;
	font-weight: normal;
	color: #53565b;
	text-decoration: none;
}

ul.sitemap-menu li {
	margin-bottom: 8px;
}

ul.sitemap-menu a:hover,
ul.sitemap-menu a:focus {
	color: #18d9fc;
	text-decoration: none;
}

ul.sitemap-menu>li>a {
	font-weight: bold;
}

ul.sitemap-menu ul {
	list-style: none;
	padding-left: 56px;
}

ul.sitemap-menu ul>li {
	position: relative;
}

ul.sitemap-menu ul>li:before {
	content: " ";
	position: absolute;
	background: url(imgs/sitemap-bullet.png) no-repeat center;
	width: 7px;
	height: 10px;
	left: -28px;
	top: 12px;
	-moz-transition: all 700ms ease-out;
	-o-transition: all 700ms ease-out;
	-webkit-transition: all 700ms cubic-bezier(0, 0, 0, 1);
	transition: all 700ms cubic-bezier(0, 0, 0, 1);
}

ul.sitemap-menu ul>li:hover:before {
	background: url(imgs/sitemap-bullet-mask.png) no-repeat center;
	left: -12px;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	-webkit-transition: all 300ms cubic-bezier(0, 0, 0, 1);
	transition: all 300ms cubic-bezier(0, 0, 0, 1);
}

#load-history-ind {
	padding-top: 8px;
	padding-bottom: 8px;
	text-align: center;
	height: 48px;
	display: block;
}

#load-history-ind>a {
	background-image: url(pbd-ajax-load-posts/css/wheel.gif);
	font-size: 0;
	width: 32px;
	height: 32px;
	border: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-color: transparent !important;
	display: inline-block;
	display: none;
}

#load-history-ind.loading>a {
	display: inline-block;
}

#contact-accordion>.panel>.panel-heading {
	background-color: #53565b;
	color: #fff;
	border: 0px solid #53565b;
	padding: 0px;
	border-radius: 0;
}

#contact-accordion>.panel {
	background: #fff;
	border: 0;
	border-radius: 0;
	margin-bottom: 0;
}

#contact-accordion>.panel>.panel-heading>.panel-title>a {
	font-size: 16px;
	font-weight: bold;
	padding: 18px 21px;
	display: block;
	position: relative;
	-moz-transition: all 500ms ease-out;
	-o-transition: all 500ms ease-out;
	-webkit-transition: all 500ms cubic-bezier(0, 0, 0, 1);
	transition: all 500ms cubic-bezier(0, 0, 0, 1);
}

#contact-accordion>.panel>.panel-heading>.panel-title>a:after {
	content: "\f067";
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 18px;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	top: 18px;
	right: 15px;
	-moz-transition: all 700ms ease-out;
	-o-transition: all 700ms ease-out;
	-webkit-transition: all 700ms cubic-bezier(0, 0, 0, 1);
	transition: all 700ms cubic-bezier(0, 0, 0, 1);
	transform: rotate(0deg);
}

#contact-accordion>.panel>.panel-heading.activestate {
	background-color: #18d9fc;
	color: #53565b;
}

#contact-accordion>.panel>.panel-heading.activestate>.panel-title>a {
	color: #53565b;
}

#contact-accordion>.panel>.panel-heading.activestate>.panel-title>a:after {
	content: "\f068";
	transform: rotate(180deg);
	color: #53565b;
}

.team-box-entry .inner {
	min-height: 120px;
}

table.team-info td,
table.team-info td a {
	color: #fff;
}

table.team-info td a:hover {
	color: #18d9fc;
}

body.single-projects h1.page-title {
	font-family: 'DIN', sans-serif;
	font-size: 34px;
	text-transform: uppercase;
	max-width: 810px;
}

.post-box-entry .content {
	height: 220px;
	position: relative;
}

.post-box-entry .content div a {
	position: absolute;
	bottom: 28px;
	right: 28px;
}

.micro-nav-text {
	float: right;
	color: #fff;
	position: relative;
	top: 6px;
	margin: 0;
	font-size: 16px;
	font-weight: 600;
}

.micro-nav-text .mail {
	color: #fff;
	font-weight: 600;
	padding-left: 30px;
	background-image: url(imgs/close-envelope.svg);
	background-position: left -3px;
	background-size: 20px;
	background-repeat: no-repeat;
}

.micro-nav-text a:hover {
	color: #18d9fc;
}

.hp-projects-item>.cont .h2-title {
	width: 100%;
	font-size: 22px;
}

h1.page-title {
	max-width: 810px;
	font-size: 40px;
}

span.wpcf7-not-valid-tip {
	color: #f7e700;
	font-size: 0.8em;
	display: block;
}

.box.box-grey-blue.sidebar-contact-form small {
	font-size: 18px;
	color: #18d9fc;
}

footer.footer .col-md-3 img.img-responsive {
	height: 90px;
}

@media screen and (min-width: 1180px) {
	body {
		padding-top: 400px;
		padding-top: 110px;
	}
	body.page-template-homepage {
		padding-top: 0px;
	}
	header.header .top,
	header.header .bottom {
		position: fixed;
		width: 100%;
		top: 0;
		transition: 0.3s;
		z-index: 10;
	}
	body header.header .bottom {
		transition: 0.3s;
		-webkit-transition: 0.3s;
		top: 33px;
	}
	body.page-scrolled header.header .bottom {
		background-color: rgba(83, 86, 91, 1);
	}
}

@media screen and (max-width: 768px) {
	.main-content {
		background-color: #fff;
		padding: 30px 30px;
	}
}

.main-content-holder img {
	max-width: 100%;
	height: auto;
}

.entry-content img {
	max-width: 100%;
	height: auto;
}

@media screen and (max-width: 500px) {
	.post-box-entry .content div a {
		display: none;
	}
	.main-content,
	.entry-content {
		padding: 0 10px;
	}
}

.lowercase {
	text-transform: none;
}

.sidebar-contact-form .gform_body label {
	display: none!important;
}

.sidebar-contact-form .gform_body input,
.sidebar-contact-form .gform_body textarea {
	width: 100%!important;
	border: 0;
	font-size: 16px!important;
	font-weight: bold;
	color: #53565b;
	padding: 10px !important;
	background-color: #fff;
}

.sidebar-contact-form .gform_body textarea {
	height: 130px;
	max-height: 100%;
}

.sidebar-contact-form .gform_body input,
.sidebar-contact-form .gform_body textarea {
	outline-color: #18d9fc;
}

.sidebar-contact-form .gform_footer input {
	float: right;
	padding: 10px 18px;
	background: #53565B;
	margin: 5px 0 20px 0!important;
	font-family: 'DIN', sans-serif!important;
	font-size: 16px!important;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	-moz-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	-webkit-transition: all 400ms cubic-bezier(0, 0, 0, 1);
	transition: all 400ms cubic-bezier(0, 0, 0, 1);
	position: relative;
	z-index: 5;
	text-transform: uppercase;
	-webkit-appearance: button;
	cursor: pointer;
	color: #18d9fc;
	border: 3px solid #fff;
	background-color: transparent;
}

.sidebar-contact-form .gform_footer input:hover {
	background: #FFF;
}

.sidebar-contact-form {
	/*float: left;*/
	width: 100%;
}

.gform_wrapper ul.gform_fields li.gfield {
	padding-right: 0!important;
}

.gform_wrapper div.validation_error {
	color: #ffffff!important;
	border: 0!important;
	background-color: #fbb317;
}

.gform_wrapper li.gfield.gfield_error,
.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
	background-color: transparent!important;
	border: 0!important;
	padding: 0!important;
}

.gform_wrapper .validation_message {
	color: #fbb317!important;
	padding: 4px 0 0 0!important;
	font-size: 14px!important;
}

.gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.gform_wrapper li.gfield_error select,
.gform_wrapper li.gfield_error textarea {
	border: 3px solid #fbb317!important;
}

div#gform_confirmation_message_1 {
	background-color: #fbb317;
	font-size: 16px;
	padding: 16px 0;
	clear: both;
	width: 100%;
	text-align: center;
}


/* Footer newsletter signup form */

.footer-newsletter-signup .ginput_container_email {
	width: 100%!important;
	font-size: 16px!important;
	font-weight: bold;
}

.footer-newsletter-signup .ginput_container_email input {
	background-color: #7c7e82;
	border: 1px solid #20d5f6;
	color: #FFF;
	padding-left: 10px !important;
	padding-right: 10px !important;
}

.footer-newsletter-signup .gfield_label {
	display: none !important;
}

.footer-newsletter-signup .gform_footer.top_label {
	padding: 0;
	font-family: 'DIN', sans-serif;
}

#gform_submit_button_2 {
	float: right;
	text-transform: uppercase;
	margin: 0px;
	transition: all 400ms cubic-bezier(0, 0, 0, 1);
	border: 3px solid #fff;
}

.footer-newsletter-signup #gform_submit_button_2 {
	color: #18d9fc;
}

#gform_submit_button_2:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	transform: scaleY(0);
	-moz-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	-webkit-transition: all 200ms cubic-bezier(0, 0, 0, 1);
	transition: all 200ms cubic-bezier(0, 0, 0, 1);
}

#gform_submit_button_2:hover:before,
#gform_submit_button_2:focus:before {
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}

#gform_submit_button_2:after {
	content: "\f218";
	display: inline-block;
	font-family: "Ionicons";
	font-size: 16px;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	text-rendering: auto;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-left: 8px;
	margin-right: -5px;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	-moz-transition: color 0ms ease-out, transform 600ms cubic-bezier(0, 0, 0, 1);
	-o-transition: color 0ms ease-out, transform 600ms cubic-bezier(0, 0, 0, 1);
	-webkit-transition: color 0ms ease-out, transform 600ms cubic-bezier(0, 0, 0, 1);
	transition: color 0ms ease-out, transform 600ms cubic-bezier(0, 0, 0, 1);
}

.footer-newsletter-signup #gform_submit_button_2:after {
	color: #18d9fc;
}

.sidebar-contact-form {
	padding: 0 0 20px 0;
}

.sidebar-newsletter-form {
	padding: 32px 28px 42px 28px!important;
}

#gform_submit_button_2:hover:after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}


/* Sidebar newsletter signup form */

.sidebar-contact-form.sidebar-newsletter-form #gform_submit_button_2 {
	color: #fcb318;
	background-color: #757a7f;
}

.sidebar-contact-form.sidebar-newsletter-form .ginput_container_email input {
	background-color: #919599;
	border: 1px solid #fcb318;
	color: #FFF;
}

.sidebar-contact-form.sidebar-newsletter-form .ginput_container_email input::-webkit-input-placeholder,
.footer-newsletter-signup .ginput_container_email input::-webkit-input-placeholder {
	color: #FFF;
	font-style: italic;
	font-weight: normal;
}

.sidebar-contact-form.sidebar-newsletter-form .ginput_container_email input:-moz-placeholder,
.footer-newsletter-signup .ginput_container_email input:-moz-placeholder {
	color: #FFF;
	font-style: italic;
	font-weight: normal;
}

.sidebar-contact-form.sidebar-newsletter-form .ginput_container_email input::-moz-placeholder,
.footer-newsletter-signup .ginput_container_email input::-moz-placeholder {
	color: #FFF;
	font-style: italic;
	font-weight: normal;
}

.sidebar-contact-form.sidebar-newsletter-form .ginput_container_email input:-ms-input-placeholder,
.footer-newsletter-signup .ginput_container_email input:-ms-input-placeholder {
	color: #FFF;
	font-style: italic;
	font-weight: normal;
}

.marketplace-sidebar-ap {
    padding: 32px 28px 8px 32px!important;
}
body.single-projects div#lct-widget-project_categories-container {
    display: none;
}

@media screen and (max-width: 450px){
.row.row-nopad.hp-box-holder .col-md-3.col-xs-6 {
    position: relative;
}
.row.row-nopad.hp-box-holder .col-md-3.col-xs-6 a.button.button-white-outline.button-plus {
    position: absolute;
    bottom: 5px;
    right: 10px;
}
.col-md-4.col-xs-6.footer-bottom-link h2 {
    height: 44px!important;
}
}



#gform_3 .button {color:#fff!important;}


/*rjl newsletter template css 030118 */
body.single-newsletter h3 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    margin-top: 10px;
}


body.single-newsletter img {
   vertical-align: top;
}

body.single-newsletter img.alignleft {
   float:left; padding-right:25px; padding-bottom:15px;
}
.newslettersocial {text-align:center; padding:40px 0;}
div.newsletterstory {border-top:9px solid #18D8FC; padding:30px 0;}
.newsletterstory h2 {text-align:center; margin-bottom:30px;}
.newsletterbutton {text-align:center;}
.firstnews .newsletterbutton a {color:#333;}
.firstnews .newsletterbutton {color:#333; border-radius:7px; background-color:#d7fc23; padding:10px; width:33%;margin:0 auto;}
.secondnews .newsletterbutton a {color:#fff;}
.secondnews .newsletterbutton {color:#fff; border-radius:7px; background-color:#feb319; padding:10px; width:33%; margin:0 auto; }


.thirdnews .newsletterbutton a {color:#fff;}
.thirdnews .newsletterbutton {color:#fff; border-radius:7px; background-color:#feb319; padding:10px; width:33%; margin:0 auto; }


.fourthnews .newsletterbutton a {color:#fff;}
.fourthnews .newsletterbutton {color:#fff; border-radius:7px; background-color:#feb319; padding:10px; width:33%; margin:0 auto; }


.fifthnews .newsletterbutton a {color:#fff;}
.fifthnews .newsletterbutton {color:#fff; border-radius:7px; background-color:#feb319; padding:10px; width:33%; margin:0 auto; }

body.single-newsletter td {vertical-align:top;}

body.single-post img.alignleft {float: left; margin-right:25px;}


#gform_submit_button_4 {color:#fff!important;}


body.page-id-3575 img.alignleft {
   float:left; padding-right:25px; padding-bottom:15px;
}
/* KMC */
select#lct-widget-ap_sectors,  select#lct-widget-ap_sectors input[type="submit"]  {
	color:#333 !important;	
}
#archived-content h2 {
	margin-top:80px !important;
}


/* form search filter spacing left fix i hope */
.searchandfilter ul>li>ul:not(.children) {
    margin-left: 0;
    padding-inline-start: 0!important;padding:0!important;
}

#search-filter-form-3564 ul {    padding-inline-start: 0!important;padding:0!important;
}
/* KMC 1-14-2019 */
 .main-content .cs-box-entry .h2-title {
color:#fff !important;
}




#text-9 {min-height:170px;}


body.postid-3990 .secondnews .newsletterbutton {display:none;}

body.single-newsletter .firstnews img {display:block; margin:0 auto!important; text-align:center!important;}


/* form buttons so we can see the text */

input#gform_submit_button_5.gform_button.button {
   
    color: #fff!important;
}



input#gform_submit_button_6.gform_button.button {
   
    color: #fff!important;
}



.gform_footer top_label {
   
    color: #fff!important;
}
.clear {clear:both;}
/* image align fix 101019 rjl */
.manyportallogos{width:100%; display:block; clear:both;}
.manyportallogos img {max-height:125px; width:auto!important; padding:2%; float:left; margin-bottom:20px;}