﻿@charset "utf-8";
/* CSS Document */

/*------Global------*/
/*a img{border:none}
body, form{padding:0px; margin:0px}
* {outline:none}
.clear{clear:both; height:0px; overflow:hidden;}
textarea{overflow:auto}*/

/*article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}*/

/*----- mobile swicher ------*/
.mobile-only-inline, .mobile-only-block{
	display:none!important;
}
.desktop-only-inline{
	display:inline!important;
}
.desktop-only-block{
	display:block!important;
}
@media screen and (max-width: 800px) {
	.desktop-only-inline, .desktop-only-block{
		display:none!important;
	}
	.mobile-only-inline{
		display:inline!important;
	}
	.mobile-only-block{
		display:block!important;
	}
}

/*------Typography------*/
body, p, td, th{
	font-family: 'Roboto', sans-serif;
	font-size:15px;
	line-height:1.8;
    color:#000;
	font-weight: 400;
}
p{
	padding:0px;
	margin:0px 0px 16px 0px;
}
/*#content ul{
	margin:0px 0px 16px 0px;
}*/

a{
    color:#000;
	/*text-decoration:underline;*/
}
a:hover {
    color:#d02030;
	/*text-decoration:underline;*/
}

h1{
	font-family: 'Roboto Condensed', sans-serif;
	font-size:25px;
	letter-spacing: 0px;
	line-height: 1.4;
    color:#000;
	padding:0px;
	margin:0px 0px 10px 0px;
	font-weight:300;
	/*text-align:left;*/
	text-transform: uppercase;
}
h1 strong{
    font-weight:700;
}
h2{
	font-family: 'Roboto Condensed', sans-serif;
	font-size:18px;
	letter-spacing: 1px;
	line-height: 1.8;
    color:#000;
	padding:0px;
	margin:12px 0px 0px 0px;
	font-weight:700;
	/*text-align:left;*/
	text-transform: uppercase;
}
.alterHFont h2{
	font-family: 'Roboto Slab', serif;
	text-transform: none;
	font-weight: 400;
	letter-spacing: 0;
}
.iconsWrapper h2{
	font-size:20px;
	text-align: center;
}
h2:first-child{
	margin-top: 0;
}
h3{
	font-family: 'Roboto Condensed', sans-serif;
	font-size:17px;
	line-height:1.4;
	/*line-height:2;*/
	letter-spacing: 1.5px;
    color:#000;
	padding:0px;
	margin:0px 0px 0px 0px;
	font-weight:400;
	text-transform: uppercase;
}
h4{
	font-family: 'Roboto Condensed', sans-serif;
	font-size:16px;
	line-height:25px;
    color:#000;
	padding:0px;
	margin:0px 0px 5px 0px;
	font-weight:400;
}

h3.modal-title {
    line-height: normal;
    text-transform: none !important;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.red{ color:#cc0000;}

/* form elements */
/*input[type='text'],
input[type='password'],
input[type='tel'],
input[type='email'],
input[type='date'],
.input{
	background:#fff;
    color: #333;
	display:inline-block;
	font-family: 'Roboto', sans-serif;
	font-size:14px;
	line-height:32px;
	height:32px;
    text-decoration: none;
	padding:0px 4px;
	border: solid 1px #555;

	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;

	-webkit-appearance: none;
	border-radius: 0;
}*/
textarea{
	background:#fff;
	border:solid 1px #555;
    color: #333;
	display:inline-block;
	font-family: 'Roboto', sans-serif;
	font-size:14px;
	
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
	padding:7px 2px;

	-webkit-appearance: none;
	border-radius: 0;
}
/*select{
	background:#fff;
	color: #333;
	display:inline-block;
	font-family: 'Roboto', sans-serif;
	font-size:14px;
	line-height:32px;
	height:32px;
	text-decoration: none;
	padding:0px 4px;
	border: solid 1px #555;

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;

	-webkit-appearance: none;
	border-radius: 0;
}*/
button, .button, input[type="submit"], input[type="button"]{
	display: inline-block;
	width: auto;
	height: 36px;
	padding: 0 36px;
	color: #fff;
	line-height: 36px;
	background: #d02030;
	text-decoration: none;
	font-size: 13px !important;
	letter-spacing: 1px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 300;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	text-transform: uppercase;
	/*border: solid 2px #ffffff;*/
    cursor: pointer;

	-webkit-appearance: none;
	border-radius: 3px;
	transition: all 0.3s ease;
}
button:hover, .button:hover, input[type="submit"]:hover, input[type="button"]:hover{
	background:#777;
	color:#fff!important;
	/*border: solid 2px #d02030;*/
	text-decoration:none;
}

/* Push */
@-webkit-keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* Pulse Shrink */
@-webkit-keyframes hvr-pulse-shrink {
	to {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}
}
@keyframes hvr-pulse-shrink {
	to {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}
}

/*.button {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}
.button:hover, .button:focus, .button:active {
  -webkit-animation-name: hvr-push;
  animation-name: hvr-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
*/

/*------Layout------*/

.pageWidth{
	width:80%;
	margin:auto;
	position:relative;
}
.footerWidth{
	width:80%;
	margin:auto;
	position:relative;
}

#visual{
	position: relative;
	top:0;
	left:0;
	width:100%;
}
/*#header{
	padding:0;
	position: fixed;
	top:0;
	left:0;
	z-index:2000;
	width:100%;
	background: #ffffff;
}*/
/*body.static #header{
	position: absolute;
}*/

/*.logo{
	display: block;
	float: left;
	padding: 20px 0 20px 0;
	margin-left: 20px;
	z-index: 100;
	width: 240px;
	position: relative;
}
.logo img{
	width: 100%;
	height:auto;
	display:block;
}*/
.mSpacer{
	height: 97px;
	clear: both;
}

@media screen and (min-width: 801px) {
	/*.logo{
		transition: all 0.3s ease;
	}
	body.gateway .logo{
		width: 390px;
	}*/
	.scrl .logo{
		width: 150px;
		padding: 15px 0 15px 0;
	}
	.mSpacer{
		/*height: 77px;*/
		transition: all 0.2s ease;
	}
	.scrl .mSpacer{
		height: 59px;
	}
}

/* nav */
#mainNav{
	float: right;
	position:relative;
	z-index: 100;
	height:30px;
	padding:8px 20px 6px 0;
	width: auto;
	transition: all 0.3s ease;
	clear: right;
}
@media screen and (min-width: 801px) {
	.scrl #mainNav{
		padding:0 20px 0 0;
	}
}

#mainNav>ul{
	margin:0;
	padding:0;
	height:30px;
	position:relative;
}
#mainNav>ul>li{
	height:30px;
	float:left;
	padding:0;
	margin:0;
	list-style:none;
	position:relative;
}
#mainNav>ul>li a{
	display:block;
	color:#d02030;
	float:left;
	font-size:15px;
	height:30px;
	line-height:30px;
	text-transform: uppercase;
	text-decoration:none;
	padding:0 10px 0 10px;
	font-family: 'Roboto Condensed', sans-serif;
	letter-spacing: 1px;
	font-weight:700;
}
#mainNav>ul>li.current-menu-item>a,
#mainNav>ul>li.current-menu-ancestor>a,
#mainNav>ul>li.current-menu-item:hover>a,
#mainNav>ul>li.current-menu-ancestor:hover>a{
	color:#000;
}

#mainNav>ul>li:hover>a{
	color:#000;
}
#mainNav>ul>li.menu-item-has-children:hover>a{
	/*background: url(../../images/tri.png) 50% 100% no-repeat;*/
}
@media screen and (min-width: 801px) {
	#mainNav>ul>li.menu-item-has-children>a::after{
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 10px 5px 0 5px;
		border-color: #e51938 transparent transparent transparent;
		display: inline-block;
		vertical-align: middle;
		margin-left: 3px;
	}
	#mainNav>ul>li.menu-item-has-children:hover>a::after {
		border-color: #000 transparent transparent transparent;
	}
}

#mainNav>ul>li>ul{
	position:absolute;
	right:0;
	top:30px;
	height: auto;
	display:none;
	margin:0;
	padding:0;
	width:210px;
	float:none;
    background:#fff;
	border: solid 1px #d02030;
}
@media screen and (min-width: 801px) and (max-width: 930px) {
	#mainNav>ul>li>ul{
		top:50px;
	}
}

/*mainNav>ul>li:hover>ul*/
#mainNav>ul>li.hover>ul
{
	display:block;
}
#mainNav>ul>li>ul>li{
	float: none;
	padding:0;
	margin:0;
	position: relative;
	list-style:none;
	/*border-bottom:solid 1px #eee;*/
}
#mainNav>ul>li>ul>li:last-child{
	border-bottom:none;
}
#mainNav>ul>li>ul>li a{
	display:block;
	color:#222;
	float: none;
	font-size:14px;
	line-height:15px;
	text-decoration:none;
	padding:10px 10px 10px 10px;
	font-weight:500;
	text-transform: none;
	text-align:right;
    height: auto;
}
#mainNav>ul>li>ul>li.current-menu-item>a, #mainNav>ul>li>ul>li.current-menu-ancestor>a{
	color:#d02030;
}
/* 3rd level */
#mainNav>ul>li>ul>li>ul{
	position:absolute;
	right:209px;
	top:-1px;
	height: auto;
	display:none;
	margin:0px;
	padding:0px;
	width:210px;
	float:none;

	background: #fff;
	border: solid 1px #d02030;
}

@media screen and (min-width: 801px) {
	#mainNav>ul>li>ul>li.menu-item-has-children>a::after{
		content: "";
		position:absolute;
		display:block;
		top:12px;
		left:10px;
		margin: 0;
		padding: 0;

		width: 0;
		height: 0;
		border-top: 5px solid transparent;
		border-bottom: 5px solid transparent;
		border-right:5px solid #777;
	}
}
#mainNav>ul>li>ul>li.hover>ul{
	display:block;
}

#mainNav>ul>li>ul>li>ul>li{
	height:auto;
	float: none;
	padding:0;
	margin:0px;
	position: relative;
	list-style:none;
	/*border-bottom:solid 1px #eee;*/
}
#mainNav>ul>li>ul>li>ul>li:last-child{
	border-bottom:none;
}
#mainNav>ul>li>ul>li>ul>li a{
	display:block;
	color:#222;
	float: none;
	font-size:12px;
	line-height:15px;
	text-decoration:none;
	padding:10px 10px 10px 10px;
	font-weight:500;
	text-transform: none;
	text-align:right;
	height: auto;
}
#mainNav>ul>li>ul>li>ul>li.current-menu-item>a, #mainNav>ul>li>ul>li>ul>li.current-menu-ancestor>a{
	color:#000;
}
/**/

/*.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}*/

/*-------------------------------*/
#visual_in {
    height: calc(70vh - 126px);
    /*height: calc(70vh - 126px);*/
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
/*.homePage #visual {
	height: calc(95vh - 103px);
	position: fixed;
	z-index: -1;
	top: 64px;
}*/

.homePage #visual {
    height: calc(90vh - 118px);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    /*position: fixed;
    z-index: -1;
    top: 0;*/
    /*top: 64px;*/
}

.homePage .mSpacer{
	height: 30px; /*calc(95vh - 65px);*/
}

/*#visual_in::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
    background: linear-gradient(184deg, rgba(255,255,255,0) 48%, rgba(0,0,0,0.6674019949776786) 92%);
}*/

@media screen and (max-width: 800px) {
	#homeRotator{
		width: 150vw;
		position: relative;
		left: -25vw;
	}
	.imgRotated {
		height: 75vw!important;
	}
    #visual_in {
        height: 200px;
        /*height: calc(70vh - 126px);*/
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        position: relative;
        overflow: hidden;
        margin-top: 60px;
    }
}
.bigB{
	position: absolute;
	bottom: -40px;
	right: 40px;
	width: 500px;
	height: 85%;
	background: url("../../images/bb.png") no-repeat top left;
	background-size: 100% auto;
	opacity: 0.9;
	z-index: 11;
}
@media screen and (min-width: 801px) {
	.innerPage .bigB {
		width: 250px;
	}
	#visual2 {
		background: none!important;
	}
}

.visualText{
	display: block;
	position: absolute;
	bottom: 60px;
	left: 60px;
	float: left;
	z-index: 11;
}
.visualText p{
	margin: 0;
	padding: 0;
}
.visualText, .visualText p{
	font-family: 'Roboto Condensed', sans-serif;
	font-size:45px;
	letter-spacing: 0px;
	line-height: 1;
	color:#fff;
	font-weight:300;
	text-align:left;
	text-transform: uppercase;
}
.visualText strong{
	font-weight: 700;
}
@media screen and (max-width: 800px) {
	.visualText, .visualText p{
		font-size:35px;
	}
}

/*aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa*/

/*.homePage #visual{
	height: calc(80vh - 126px);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
}
.homePage #visual {
	height: calc(90vh - 103px);
}*/

.homePage #visual::before, .homePage #visual::after,
.homePage #visual2::before, .homePage #visual2::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
}

.homePage #visual::before {
    background: linear-gradient(184deg, rgba(255,255,255,0) 48%, rgba(0,0,0,0.65) 92%);
}

@media screen and (min-width: 801px) {
	.homePage #visual2 {
		background: none!important;
	}
}

/*.videoBg {
	width: auto;
	height: calc(90vh - 103px);
	position: relative;
	overflow: hidden;
}
.videoFg{
	position: absolute;
	top:0;
	left: 0;
	overflow: hidden;
}
.videoFg iframe {
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.videoFg video {
	overflow: hidden;
	width: 100%;
	height: auto;
	object-fit: cover !important;
	pointer-events: none;
}*/

.videoBg {
    width: auto;
    height: 90vh;
    /*height: 90vh;*/
    /*height: calc(90vh - 118px);*/
    position: relative;
    overflow: hidden;
}

.videoFg {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

    .videoFg iframe {
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .videoFg video {
        overflow: hidden;
        width: 100%;
        height: auto;
        object-fit: cover !important;
        pointer-events: none;
    }

@media (min-aspect-ratio: 16/9) and (min-width: 801px) { /*horizontal*/
    .videoFg {
        width: 100%;
        /*height: 56vw;
        top: calc(45vh - 28vw - 51px);*/
    }
}
@media (max-aspect-ratio: 16/9) and (min-width: 801px) { /*vertical*/
    .videoFg {
        width: 100%;
        /*height: 56vw;*/
    }

    .videoBg {
        width: auto;
        height: 45vw;
    }

    .homePage #visual {
        height: 45vw;
    }
}
@media screen and (max-width: 800px) {
    .homePage #visual::before {
        background: linear-gradient(184deg, rgba(255,255,255,0) 48%, rgba(0,0,0,0.25) 92%);
    }

    .videoFg {
        width: 100%;
        /*height: 56vw;*/
        top: 65px;
        /*top: -20px;*/
    }

    .videoBg {
        width: auto;
        height: 55vw;
    }

    .homePage #visual {
        height: 55vw;
    }
}
/**/

/*bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb*/
/* disabled for now */
#homeRotator button{
	display: none!important;
}
@media (min-aspect-ratio: 16/9) and (min-width: 801px) { /*horizontal*/
	#homeRotator{
		top: calc(50vh - 33vw);
	}
}
@media (max-aspect-ratio: 16/9) and (min-width: 801px) { /*vertical*/
	/*.homePage #visual {
		height: calc(50vw + 20px);
	}*/
	/*.homePage .mSpacer{
		height: calc(50vw + 20px);
	}*/
}
/**/

#contentWraper{
	background: #fff;
}
.contentPadding1{
	padding: 20px 0 5px 0;
}
.homeTopRedNavWrap{
	background: #d02030;
	border-top: solid 1px #fff;
	padding: 0;
}
.homeTopRedNavWrap ul{
	margin: 0!important;
	padding: 0!important;
	width: auto;
	position: relative;
}
.homeTopRedNavWrap ul li{
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}
.homeTopRedNavWrap ul li a {
	color: #fff;
	text-decoration: none;
	width: 100%;
	/*height: 18px;*/
	padding: 20px 5px;
	line-height: 18px;
	font-size: 15px;
	display: block;
	box-sizing: border-box;
}
/*@media screen and (min-width: 801px) and (max-width: 970px) {
	.homeTopRedNavWrap ul li a {
		height: 76px;
	}
}*/

.homeTopRedNavWrap ul li a:hover {
	text-decoration: none;
	background: #fff;
	color: #d02030;
}
@media screen and (min-width: 801px) {
	.homeTopRedNavWrap ul li a {
		border-top: solid 1px #d02030;
		border-bottom: solid 1px #d02030;
	}
	.homeTopRedNavWrap ul{
		display: flex;
		flex-grow: 1;
		flex-wrap: nowrap;
		align-items: stretch;
	}
	.homeTopRedNavWrap ul li{
		flex-basis: 20%;
		border-left: solid 1px #fff;
		text-align: center;
	}
	.homeTopRedNavWrap ul li:last-child{
		border-right: solid 1px #fff;
	}

}
@media screen and (max-width: 800px) {
	.homeTopRedNavWrap{
		padding: 0;
	}
	.homeTopRedNavWrap .pageWidth{
		margin: 0;
	}
        .homeTopRedNavWrap ul li a {
            border-bottom: solid 1px #fff;
            text-align: center;
        }
}

.redBox{
	background: #d02030;
	width: 290px;
	box-sizing: border-box;
	padding: 25px 25px 20px 25px;
	position: relative;
	border: solid 3px #fff;
}
.redBox *{
	color: #fff;
}
.redBox p{
	color: #fff;
	margin-bottom: 15px;
	line-height: 2;
}
.redBox a:hover 
.redBox a:visited 
.redBox a:focus{
	color: #fff;
	text-decoration: none;
}
.redBox a {
    font-size: 14px!important;
}
.redBox a.button{
	white-space: nowrap;
	padding:10px 3px;
	line-height: 16px;
}
.redBox h2, .redBox .rTitle{
	font-family: 'Roboto Condensed', sans-serif;
	text-transform: uppercase;
	font-size: 28px;
	line-height: 33px;
	letter-spacing: 0;
	margin-bottom: 8px;
	font-weight: 300;
}
.redBox h2 strong, .redBox .rTitle strong{
	font-weight: 700;
}
.innerPage .redBox .rTitle{
	margin-bottom: 28px;
}
.tri2{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7.5px 0 7.5px 12px;
    border-color: transparent transparent transparent #ffffff;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -3px;
    margin: 0 0 0 5px;
}

@media (max-width: 767px) {
    .redBox h2, .redBox .rTitle {
        font-family: 'Roboto Condensed', sans-serif;
        text-transform: uppercase;
        font-size: 20px;
        line-height: normal;
        letter-spacing: 0;
        margin-bottom: 0;
        font-weight: 300;
    }
    .innerPage .redBox .rTitle {
        margin-bottom: 8px;
    }
}

    .wbox_contentPadding {
        padding-top: 30px;
    }

    .columnLeftHome .redBox {
        background: #d02030;
        z-index: 11;
    }

    .redBox a.button {
        width: 100%;
        text-align: center !important;
        background-color: #000000;
    }

        .redBox a.button:hover {
            color: #000 !important;
            border-color: #000 !important;
            background-color: #fff !important;
        }

        .redBox a.button:hover i {
            color: #000 !important;
        }

    .wideTop * {
        text-align: center;
    }

    .wideTop p {
        font-size: 17px;
    }

    .wideTop .contentPadding {
        padding-top: 10px;
        padding-bottom: 20px;
    }

    .homeTopGreyBlock {
        background: #eeecec;
        /*margin-top: -3vw;*/
    }

        .homeTopGreyBlock .columnLeft p {
            font-size: 28px;
            font-family: "Roboto Slab", serif;
            font-weight: 400;
            line-height: 1.3;
            text-transform: uppercase;
            color: #423e3e;
        }

            .homeTopGreyBlock .columnLeft p strong {
                font-weight: 700;
            }

    @media screen and (min-width: 801px) {
        .homeTopGreyBlock .columnLeft p {
            max-width: 440px;
        }
    }

    @media screen and (min-width: 801px) {
        .columnLeftHome .redBox {
            margin-top: -150px;
        }

        .columnRightHome {
            width: calc(100% - 330px);
            float: right;
        }

        .columnLeftHome {
            width: 290px;
            float: left;
        }

        .innerPage .columnLeftHome .redBox {
            margin-top: -55px;
            /*margin-top: -110px;*/
        }
    }
    /*
.redBox::before{
	content: "";
	width: 100%;
	height: 5px;
	background: rgba(0,0,0,0.5);
	top: -5px;
	right: -5px;
	position: absolute;
	z-index: 0;
}
.redBox::after{
	content: "";
	width: 5px;
	height: 155px;
	background: rgba(0,0,0,0.5);
	top: -5px;
	right: -5px;
	position: absolute;
	z-index: 0;
}
.innerPage .redBox::after{
	height: 100%;
}
*/
    @media screen and (min-width: 801px) {
        .columnRightHome, .columnRightHome p {
            font-size: 17px;
        }
    }
    /**/
    .twoColumnWrapper {
    }

    .columnLeft {
        position: relative;
    }

    .columnRight {
        position: relative;
    }

    .twoColumnWrapperLeft {
        background: #f3f3f3;
    }

    @media screen and (min-width: 801px) {
        .twoColumnWrapper {
            display: flex;
            flex-grow: 1;
            flex-wrap: nowrap;
            align-items: center;
        }

            .twoColumnWrapper.sizedImages {
                align-items: center;
            }

        .columnLeft {
            flex-basis: 50%;
            width: 50%;
        }

        .columnRight {
            flex-basis: 50%;
            width: 50%;
        }

        .columnLeft .contentPadding {
            width: 80%;
            margin-left: 20%;
            padding-right: 30px;
        }

        .columnRight .contentPadding {
            width: 80%;
            margin-right: 20%;
            padding-left: 30px;
        }

        .columnLeft .contentPaddingin {
            width: 62%;
            margin-left: 37%;
            padding-right: 30px;
        }

        .columnRight .contentPaddingin {
            width: 62%;
            margin-right: 37%;
            padding-left: 30px;
        }

        .sectionImage {
            width: 100%;
            height: auto;
            display: block;
        }

        .columnLeft .imageWrapper {
            margin-right: 20px;
            margin-left: 20%;
        }

        .columnRight .imageWrapper {
            margin-left: 30px;
            margin-right: 20%;
        }
    }

    .columnLeft .imageWrapper, .columnRight .imageWrapper {
        height: 100%;
        width: 80%;
        padding: 3vw 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .columnLeft .imageWrapperin {
        margin-right: 50px;
        margin-left: 37%;
    }

    .columnRight .imageWrapperin {
        margin-left: 30px;
        margin-right: 37%;
    }

    .columnLeft .imageWrapperin, .columnRight .imageWrapperin {
        height: 100%;
        width: 62%;
        padding: 3vw 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .columnLeft .contentPadding, .columnRight .contentPadding {
        padding-top: 56px;
        padding-bottom: 40px;
    }

    .columnLeft .contentPaddingin, .columnRight .contentPaddingin {
        padding-top: 56px;
        padding-bottom: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }

    @media screen and (max-width: 800px) {
        .columnLeft .contentPaddingin, .columnRight .contentPaddingin {
            padding-top: 0;
            padding-bottom: 40px;
        }
    }

    .homeTopGreyBlock .columnLeft .contentPadding,
    .homeTopGreyBlock .columnRight .contentPadding {
        padding-top: 30px;
    }

    .redBackgrndWrapper {
        background: url(../../images/bb.png) no-repeat 5% 50%;
        background-color: #eeecec;
        /*background-color: #d02030;*/
        background-size: auto 140%;
    }

        .redBackgrndWrapper, .redBackgrndWrapper p /*.redBackgrndWrapper **/ {
            color: #000;
            /*color: #fff;*/
        }

    /*#footer{
	width:100%;
	background: #000;
	padding: 70px 0;
}
#footer,#footer p, #footer a{
	color: #fff;
}
#footer a:hover{
    color: #fff;
    text-decoration: underline;
}
#footer p{
	margin: 0;
}
#footer a{
	text-decoration: none;
}
#footer a:hover{
	/*text-decoration: underline;*/
}*/

.socialBox{
}
.socialBox a{
	margin: 0 0 0 25px;
}
#content .socialBox img{
	height: 22px;
}
.legalBlock, .legalBlock p{
	font-size: 10px;
}
.footerAddress, .footerAddress p{
	font-size: 12px;
	line-height: 1.5;
}
.footerNav{
    font-size: 10px;
    text-transform: uppercase;
    padding: 0 20px;
    font-weight: 300;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.3;
}
.footerNav ul{
    padding: 0;
    margin: 0;
}
.footerNav li{
    padding: 6px 0;
    margin: 0;
    list-style: none;
}

.legalBlock, .legalBlock p{
    font-weight: 300;
    font-family: 'Roboto Condensed', sans-serif;

    /*font-weight: 400;
    font-family: 'Roboto', sans-serif;*/
}
.footerAddress, .footerAddress p{
    font-weight: 300;
    font-family: 'Roboto Condensed', sans-serif;

    /*font-weight: 400;
    font-family: 'Roboto', sans-serif;*/
}

@media screen and (min-width: 800px) {
    .footerWidth{
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .legalBlock{
        flex-basis: 33%;
        font-family: 'Roboto', sans-serif;
    }
    .footerSocAddr{
    }
    .footerAddress{
        text-align: right;
	}
	.socialBox {
		text-align: right;
        white-space: nowrap;
	}

    .bbb{
        display: block;
        margin: -20px 0 10px 0;
        width: 40px;
        height: auto;
    }
}

/**/

/*#content{
	width:100%;
}
#content img{
	max-width:100%;
	height:auto;
}*/

.narrowColumn{
	max-width: 1050px;
	margin: auto;
}
/**/

.contentBlock{
	padding: 40px 0 40px 0;
}

.pageMiddlePhoto{
	width: 100%;
	min-height: 34vw;
	background-image: url(../../images/middle.jpg);
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	/*background-size: cover;*/
	background-size: 100% auto;
}
@media screen and (max-width: 800px) {
	.pageMiddlePhoto {
		background-attachment: scroll;
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}
}
.contentMiddlePhoto{
	width: 40%;
	max-width: 400px;
	float: right;
	color: #fff;
}
.contentMiddlePhoto p{
	color: #fff;
	font-size: 13px;
}
.contentMiddlePhoto h3{
	color: #fff;
	font-size: 20px;
	letter-spacing: 1px;
}
.contentMiddlePhoto ul{
	padding: 0 0 0 1em;
	color: #fff;
}
.contentMiddlePhoto li{
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}
@media screen and (min-width: 1000px) {
	.contentMiddlePhoto ul{
		padding: 0 0 0 1em;
		display: flex;
		flex-grow: 1;
		flex-basis: 33%;
		flex-wrap: wrap;
	}
	.contentMiddlePhoto li{
		flex-basis: 30%;
		width: 30%;
	}
}
.contentMiddlePhoto li::before{
	/*content: "\2022  ";*/
}
.pageMiddlePhoto .contentBlock {
	padding: 60px 0 60px 0;
}
/**/
.homeProductsBlock{
	margin: 40px 0 40px 0;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
}
.homeProduct{
	flex-grow: 1;
	flex-basis: 33%;
	padding: 0;
	margin: 0 5px;
	text-align: center;
	position: relative;
	display: block;
	text-decoration: none!important;
}

.homeProduct img{
	display: block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.homeProduct:hover img{
	-webkit-animation-name: hvr-pulse-shrink;
	animation-name: hvr-pulse-shrink;
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
}

.homeProductTitle{
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 600;
	margin-top: 18px;
	font-size: 17px;
	text-transform: uppercase;
}
.homeProductText{
	font-size:13px;
	color: #000;
}
@media screen and (max-width: 800px) {
	.homeProductsBlock{
		flex-wrap: wrap;
		margin-bottom: 0;
	}
	.homeProduct {
		flex-basis: 100%;
		padding-bottom: 40px;
	}
	.homeProduct img{
		margin: auto;
	}
	.homeProductTitle{
		margin-top: 10px;
	}
}
/**/
.greyBox{
	background: #e9e8e8;
}
@media screen and (max-width: 800px) {
	.mobileGreyBox {
		background: #e9e8e8;
	}
}
.homeIconsBlock{
	margin: 30px 0 -30px 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
}
.homeIcon{
	flex-grow: 1;
	flex-basis: 25%;
	padding: 0;
	margin: 0 0 5% 0;
	text-align: center;
	position: relative;
	display: block;
	text-decoration: none!important;

	/*shrink*/
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
}
.homeIcon:hover, .homeIcon:focus, .homeIcon:active {
	/*shrink*/
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
}
.homeIcon img{
	display: block;
	margin: auto;
	max-width: 80%!important;
	width: 125px;
	height: auto;
	background-color: #d1d3d4;
	border-radius: 50%;
	transition: background-color 0.2s ease;
}
.homeIcon:hover img{
	background-color: #cc0000;
}
.homeIconTitle{
	font-weight: 400;
	margin: 5px auto 5px auto;
	max-width: 95%;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 16px;
	line-height: 1.2;
	color: #222;
	text-transform: uppercase;
}
@media screen and (max-width: 800px) {
	.homeIconsBlock{
		flex-wrap: wrap;
	}
	.homeIcon {
		flex-basis: 50%;
		padding-bottom: 20px;
	}
	.homeIcon img{
		margin: auto;
	}
}
/**/
.clientLogosContentBlock{
}
.clientsBlockTitle{
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	font-family: "Roboto Condensed", sans-serif;
	text-transform: uppercase;
	line-height: 1.4;
    padding-bottom: 30px;
}
.clientsBlockText{
    font-size: 12px;
    line-height: 15px;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
    border-top: solid 1px #ddd;
}
.clientsBlock{
	position: relative;
	text-align: center;
}
.clientsBlock img{
	width: 14%;
	margin: 0 1%;
	height: auto;
}
@media screen and (max-width: 800px){
	.pageWidth.contentBlock.clientLogosContentBlock{
		margin: 0;
	}
	.clientsBlock img{
		width: 28%;
	}
}

/**/

.bottomBox{
	text-align: center;
	position: relative;
}
.bottomBoxButton{
	text-align: center;
}
/**/

.apiPadding{
	min-height: calc(100vh - 300px);
}

/**/

#testimonialsBox .slick-prev {
	left: -50px;
	top:0;
	z-index:100;
	width:30px;
	height:30px;
	border: none;
	background: none;
	position: absolute;
	box-sizing: border-box;
	overflow: hidden;
	padding: 0;
}
#testimonialsBox .slick-next {
	right: -50px;
	top:0;
	z-index:100;
	width:30px;
	height:30px;
	border: none;
	background: none;
	position: absolute;
	box-sizing: border-box;
	overflow: hidden;
	padding: 0;
}
#testimonialsBox .slick-prev::before{
	content: '';
	font-size: 40px;
	line-height:40px;
	background:url(../../images/l1.png) no-repeat center center;
	background-size:100% 100%;
	display: block;
	width: 100%;
	height: 100%;
}
#testimonialsBox .slick-next::before {
	content: '';
	font-size: 40px;
	line-height:40px;
	background:url(../../images/r1.png) no-repeat center center;
	background-size:100% 100%;
	display: block;
	width: 100%;
	height: 100%;
}
.logoRotatedItemWrapper{
	padding: 0 0.5vw;
	height: 3vw!important;

	/*width: 20vw!important; /*for fixed width */
}
.logoRotatedItemWrapper img{
	height: 3vw!important;
	width: auto!important;
	margin: auto;
}
@media screen and (max-width: 800px){
    .logoRotatedItemWrapper{
        height: 8vw!important;
    }
    .logoRotatedItemWrapper img{
        height: 8vw!important;
    }
    #testimonialsBox .slick-prev {
        display: none!important;
    }
    #testimonialsBox .slick-next {
        display: none!important;
    }
}
.clientsBlockNew{
	padding: 20px 0 10px 0;
}

/* Team */
.teamList{
	padding: 20px 0 20px 0;
}
.teamListItem{
	position: relative;
}
.successListItem{
	position: relative;
}
a.successListItem{
	display: block;
	text-decoration: none;
}
.teamListItemWidth{
	width: calc(100% - 10px);
	height: calc(100% - 20px);
	margin: 0 auto 20px auto;
	border: solid 1px #000;
	background: #eee;
}
.teamListItemImage{
	width: 100%;
	height: auto;
	display: block;
}
.teamListContent{
	padding: 15px 20px;
	text-align: left;
	line-height: 1.2;
}
.teamListName{
	font-family: 'Roboto Condensed', sans-serif;
	font-size:18px;
	line-height: 1.2;
	color:#000;
	font-weight:700;
	text-align:left;
	text-transform: uppercase;
	padding: 5px 0;
}
.teamListJobTitle{
	font-weight: 700;
	padding: 5px 0;
}
.teamListLinkBox{
	padding: 5px 0;
}
a.teamListLink{
	text-decoration: none;
	color: #d02030;
}
a.teamListLink:hover{
	color: #000;
}
span.teamListLink{
	text-decoration: none;
	color: #d02030;
}
span.teamListLink:hover{
	color: #000;
}
.accrdWrapper{
	margin-bottom: 50px;
}
.accrdItem:after{
	border-bottom: solid 2px #ddd;
	content: "";
	width: calc(100% - 10px);
	display: block;
}
.accrdItemContent{
	display: none;
}
a.accrdItemToggle{
	height: 80px;
	line-height: 80px;
	font-family: 'Roboto', sans-serif;
	font-size:24px;
	position: relative;
	display: block!important;
	text-decoration: none!important;
	padding-left: 5px;
	color: #000;
}
.accrdItemToggle:after{
	content: "+";
	float: right;
	position: absolute;
	right: 10px;
	top:0;
	height: 100%;
	width: 20px;
	text-align: center;
	font-size: 28px;
	font-weight: 700;
	color: #d02030;
}
.accrdItem.active .accrdItemToggle:after{
	content: "-";
}

.columnLeftTeam{
	position: relative;
}
.columnRightTeam{
	position: relative;
}
.columnRightTeam .redBox{
	position: relative;
	width: 350px;
}
.columnRightTeam .redBox .rTitle{
	margin: 0;
}
.teamItemPageContent h1{
	margin: 0;
}
.teamItemPageContent h2{
	font-size: 16px;
	margin: 0 0 12px 0;
}
.teamSearchForm>div{
	margin: 0 5px 15px 5px;
	position: relative;
}
.teamSearchForm input, .teamSearchForm select{
	width: 100%;
	display: block;
}
.teamSearchForm input[type="text"]{ /*teamSearchFormName*/
	text-align: left;
}
.autocomplete-suggestions { border: 1px solid #999; background: #FFF; overflow: auto; }
.autocomplete-suggestion { padding: 2px 5px; white-space: nowrap; overflow: hidden; }
.autocomplete-selected { background: #F0F0F0; }
.autocomplete-suggestions strong { font-weight: normal; color: #d02030; }
.autocomplete-group { padding: 2px 5px; }
.autocomplete-group strong { display: block; border-bottom: 1px solid #000; }


@media screen and (min-width: 801px) {
	.teamSearchForm{
		display: flex;
		justify-content: center;
	}
	.teamSearchForm>div{
		flex-basis: 20%;
	}
	.teamSearchForm>div.teamSearchFormSubmit{
		flex-basis: 16%;
	}
	.teamSearchForm input[type="submit"]{
		border-color: #d02030;
		border-radius: 0;
		height: 32px;
		line-height: 32px;
	}

	.teamList{
		display:flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: stretch;
	}
	.teamListItem{
		flex-grow: 1;
		flex-basis: 20%;
		max-width: 20%;
		display: block;
		text-decoration: none!important;
	}
	.successListItem{
		flex-grow: 1;
		flex-basis: 25%;
		max-width: 25%;
		display: block;
		text-decoration: none!important;
	}

	.columnLeftTeam{
		width: calc(49% - 5px);
		float: left;
	}
	.columnLeftTeam img{
		float:right;
		margin-right: 25px;
	}
	.columnRightTeam{
		width: calc(49% - 5px);
		float: right;
	}
	.columnRightTeam .redBox{
		left: -120px;
		margin: 40px 0 30px 0;
	}
	.teamItemPageContent{
		padding: 20px 0 40px 0;
	}

	.teamSearchForm input[type="text"], .teamSearchForm select[name="state"]{
		text-align: left;
		width: calc(100% - 30px);
		float: left;
	}
	.teamSearchFormOr{
		float: right;
		display: block;
	}
}
@media screen and (max-width: 800px) {
	.accrdItemToggle {
		text-align: left;
		height: auto!important;
		line-height: 1.2!important;
		padding: 20px 40px 20px 0;
	}
	.columnRightTeam .redBox{
		display: none;
	}
	.accrdItemToggle:after {
		line-height: 70px;
	}
}
/**/
.successItemPageContent{
}
.columnLeftSuccess{
	position: relative;
}
.columnRightSuccess{
	position: relative;
}
.columnRightSuccess .redBox{
	position: relative;
}
.columnRightSuccess .redBox .rTitle{
	margin: 0;
}

.successItemPageContent h1{
	margin: 10px 0 3px 0;
	font-weight: 700;
	line-height: 1.2;
	font-size: 34px;
}
.successItemPageContent h2{
	font-family: 'Roboto Condensed', sans-serif;
	font-size:34px;
	letter-spacing: 0;
	line-height: 1.4;
	color:#000;
	padding-top:20px;
	margin:0px 0px 10px 0px;
	font-weight:300;
	text-align:left;
	text-transform: uppercase;
}
.successItemPageContent h3 {
	font-size: 16px;
	margin: 0 0 12px 0;
}
.successSearchForm>div{
	margin: 0 5px 15px 5px;
	position: relative;
}
.successSearchForm input, .successSearchForm select{
	width: 100%;
	display: block;
}
.successSearchForm input[type="text"]{
	text-align: left;
}
.successSubField{
	text-transform: uppercase;
	line-height: 1.6;
	font-size: 14px;
}
.greyBox .successItemPageContent{
	padding: 15px 0 20px 0;
}

.galleryFullBox{
	position: relative;
}
.galleryFullBox img{
	transition: opacity 0.5s ease;
}
.galleryFullBox>img{
	position: relative;
	z-index: 10;
	opacity: 0;
	display: block;
}
.galleryFullBox>img.active{
	opacity: 1;
}
.galleryCropBox{
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	z-index: 20;
	bottom: 0;
	right: 0;
}
.galleryCropBox img{
	position: absolute;
	bottom: 0px;
	right: 0px;
	width: 100%;
	height: auto;
	opacity: 0;
}
.galleryCropBox img.active{
	opacity: 1;
}
.galleryImgThumbnailBox a{
	display: block;
	float: left;
	padding: 5px 5px 0 0;
}
#content .galleryImgThumbnailBox img{
	height: 50px;
	width: auto;
	display: block;
}
.redBoxWrap{
	z-index: 30;
}

@media screen and (min-width: 801px) {

	.successItemPageContent{
		display: flex;
		align-items: center;
	}
	.columnLeftSuccess{
		flex-basis: 70%;
	}
	.columnRightSuccess{
		flex-basis: 30%;
		padding-left: 40px;
	}
	.columnRightSuccess .redBox{
		left: -100px;
		width: 450px;
		position: absolute;
	}
	.columnRightSuccess .redBoxWrap{
		min-height: 83px;
		position: relative;
	}

	.successSearchForm{
		display: flex;
		justify-content: center;
	}
	.successSearchForm>div{
		flex-basis: 20%;
	}
	.successSearchForm>div.successSearchFormSubmit{
		flex-basis: 16%;
	}
	.successSearchForm input[type="submit"]{
		border-color: #d02030;
		border-radius: 0;
		height: 32px;
		line-height: 32px;
	}

	.successSearchForm input[type="text"], .successSearchForm select[name="state"]{
		text-align: left;
		width: calc(100% - 30px);
		float: left;
	}
	.successSearchFormOr{
		float: right;
		display: block;
	}
}

/**/

@media screen and (min-width: 801px) {
	.one_half {
		width: 45%!important;
		padding-right: 5%;
	}
	.one_half.last_column {
		padding-left: 5%;
		padding-right: 0;
	}
}
@media screen and (max-width: 800px) {
	.one_half {
		width: auto!important;
		float: none!important;
	}
}

/**/
.innerPage .redBox.redBoxHorizontal{
	width: auto;
	float: none;
	border: none;
	margin: 0;
	padding: 10px 9% 10px 9%;
}
.innerPage .redBox.redBoxHorizontal .rTitle{
	width: auto;
	float: none;
	border: none;
	margin: 0;
}
/* blog */
/*========== styles for blog ============*/
.containerBlog{
	margin: auto;
	max-width: 1000px;
}
.clear{clear: both;}
.blogContentSingle{
}
.blogContentIndex h1{
	margin-left: 8px;
}
.blogContentSingle h1{
	color: #000;
	font-weight: normal;
	text-align: left;
}

.blogSideWrap{
	float:right;
	width:calc(30% - 20px);
	box-sizing:border-box;
	padding:0px 0px 15px 0px;
	margin:0 10px 0 10px;
}
#columnBlog{
	position:relative;
	padding-bottom: 30px;
	float: left;
}
@media screen and (min-width: 801px) {
	#columnBlog{
		width: 70%;
	}
}

.fullWidthTagline{
	margin-bottom: 40px;
}
/**/
.postItem{
	position:relative;
	box-sizing:border-box;
	margin:0 10px 20px 0;
	float:left;
}
.postItem.mostResent{
	position: relative;
}

.latestMark{
	background:#d02030;
	text-transform:uppercase;
	color:#fff;
	padding:0px 25px;
	font-size:13px;
	line-height:35px;
	float:right;
	position:absolute;
	top:25px;
	left:25px;
	z-index:1;
	letter-spacing: 1px;
}
.postItem.mostResent{
	width:calc(66.6% - 20px);
}
.blogLine{
	width:calc(66.6% - 20px);
	background: #d02030;
	height: 5px;
	margin: 15px 0 35px;
	float: left;
}
@media screen and (max-width: 800px) {
	.blogLine{
		width:auto;
		float: none;
	}
}

.postItem.regular{
	width:calc(100% - 20px);
}
.entryThumbnail{
	position:relative;
}
.entryThumbnail img{
	display:block;
	width:100%;
	height:auto;
}
.postItem.regular{
	align-items: center;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: solid 5px #eee;
	float: none;
}
.postItem.regular:last-child{
	border-bottom: none;
	margin-bottom: 0;
}
.postItem.regular .entryThumbnail{
	flex-basis: 50%;
}
.postItem.regular .expertBox{
	padding-left: 3%;
	flex-basis: 47%;
}
.postItem.regular .expertBox{
	line-height: 1.4;
}
@media screen and (min-width: 801px) {
	.postItem.regular{
		display: flex;
	}
	.mostResent .hideMoreBox {
		position: absolute;
		width: 100%;
		padding: 5px 15px;
		background: rgba(255,255,255,0.8);
		left: 0;
		bottom: 0;
	}
}


.postItem.singlePost{
	width:calc(70% - 20px);
	padding:0px 25px 15px 25px;
	border:none;
}
.postItem h2{
	font-size:18px;
	color:#000;
	text-transform: none;
	margin-bottom: 0;
	line-height: 1.3;
	font-weight: 400;
	text-align: left;
	font-family: "Roboto Slab", serif;
}


.postItem.singlePost .entryThumbnail{
	width: auto;
	display:block;
	float:none;
	margin:0px;
}

.binThumbInfo{
	position:relative;
}

.addthis_sharing_toolbox{
	float:left;
}

.datetagBox a{
	color:#000;
	font-size:12px;
}

.detailBox{
	padding-top:20px;
	line-height:120%;
	text-align: left;
}
.detailBox p{
	line-height:150%;
	text-align: left;

}
.expertBox{
}
.expertBox p{
	line-height:1.4;
}
.blogSideWrap h3{
	font-size:15px;
	line-height: 22px;
	text-align:center;
	color:#000;
	margin-bottom:15px;
}

.searchResultBox{
	width:calc(66.6% - 20px);
	float: left;
}
.searchResultBox .postItem.regular {
	padding: 15px 15px 5px 15px;
	width: calc(50% - 20px);
}

/*tabs*/
.myTab{
	background:#d1d0d0;
	cursor:pointer;
	color:#fff;
	padding:6px 20px 6px;
	float:left;
	line-height:14px;
	font-size:13px;
	text-transform:uppercase;
	font-weight: bolder;
}
.myTab.active, .myTab.active:hover{
	background:#000;
}
.myTabs {
	position: relative;
	top: 1px;
}

.myCont{
	border:solid 1px #000;
	display:none;
	padding:10px 0;
}
.myCont.active{
	display:block;
}

.blogSideWrap h2{
	border-bottom: solid 5px #eee;
	padding: 0 0 15px 0;
	margin: 0 0 15px 0;
}

.myContItem{
	display: flex;
	border-bottom: solid 5px #eee;
	align-items: center;
	padding: 0 0 15px 0;
	margin: 0 0 15px 0;
}
.myContItem:last-child{
	border-bottom:none;
}
.myContPhoto img{
	display:block;
	width:100%;
	height:auto;
}
.myContPhoto{
	flex-basis: 30%;
	width:30%;
}
.myContContent{
	text-align: left;
	padding-left: 8%;
	flex-basis: 70%;
	text-transform: none;
	font-weight: 700;
}
.myContContent a{
	text-decoration:none;
	color:#000;
}
.clearL{
	clear:left;
}
.teamItemDescrText{
	font-size:12px;
	line-height:1.4;
}
.myContItemTitle{
	font-size:12px;
	line-height:1;
	color:#000;
	text-transform:uppercase;
	display:inline-block;
	overflow: hidden;
	text-align: left;
}
.myContItemDate{
	font-weight: bolder;
}
.myElipsis{
	position:absolute;
}
.active.lastTab{
	/*visibility:hidden;*/
}

.search-form{
	display:block;
	width:100%;
	position:relative;
}
.search-form .searchField{
	float:left;
	display:block;

	background:#fff;
	border:solid 1px #000;
	border-right: none;
	color: #333;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:26px;
	height:36px;
	text-decoration: none;
	padding:0px 4px;

	width: calc(100% - 36px);

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
.search-form .searchSubmit, .search-form .searchSubmit:hover{
	display:block;
	float:left;
	height:36px;
	width:36px;
	padding:0;
	border-radius:0;
	border:none;
	cursor:pointer;
}
.search-form .searchSubmit{
	background: url(../../images/lens.png) no-repeat center center #d02030;
}
.search-form .searchSubmit:hover{
	background: url(../../images/lens.png) no-repeat center center #000;
}
.blogSideWrap .search-form label{
	display: block;
	margin: 0;
}

.postNavigation{
	text-align: center;
	padding-bottom: 30px;
}
.mostResent .hideMoreBox{
	box-sizing: border-box;
	line-height: 1.5;
}

.blogNav{
	padding: 20px 0 0 0;
	margin: 20px 20px 0 20px;
	border-top: solid 1px #000;
}
.blogNav .alignleft{
	float: left;
	max-width: calc(40% - 20px);
}
.blogNav .alignright{
	float: right;
	max-width: calc(40% - 20px);
}
.blogNav a{
	text-decoration: none;
	color: #000;
	font-size: 12px;
}
.blogNav a:hover{
	text-decoration: underline;
	color: #000;
}
.youtubeBox{
	position: relative;
}
.youtubeBox iframe{
	width: 100%;
	/*height: 30vw;*/
}

@media screen and (max-width: 800px) {

	.blogNav .alignleft{
		float: none;
		max-width: none;
		display: block;
		clear: both;
		/*text-align: left;*/
		padding-bottom: 20px;
		margin: auto;
	}
	.blogNav .alignright{
		float: none;
		max-width: none;
		display: block;
		clear: both;
		margin: auto;
		/*text-align: right;*/
	}

	.datetagBox{
		text-align: center;
	}
	.blogSideWrap {
		display: none;

		float: none;
		width: auto;
		margin: 0 0 20px 0;
	}

	.blogSideWrap.mobileSearchForm {
		display: block;
	}

	.postItem {
		margin: 0 0 20px 0;
		float: none;
	}

	.postItem.mostResent, .postItem.regular, .postItem.singlePost {
		width: auto;
	}

	.postItem.singlePost {
		padding: 0;
	}

	.myContPhoto img {
		display: block;
		width: auto !important;
		max-width: none !important;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		max-width: none;
	}

	.myTab {
		font-size: 16px;
	}

	.searchResultBox {
		width: auto;
		float: none;
		min-height: 0;
	}

	.searchResultBox .postItem.regular {
		width: auto;
	}
}
/**/

/*contact*/
@media screen and (min-width: 801px) {
	.contactContent::after {
		content: "";
		display: block;
		clear: both;
	}
	.contactLeft {
		width: 49%;
		float: left;
	}
	.contactRight {
		width: 49%;
		float: right;
	}
	.contactImage {
	}
	.locRow{
		width: 100%;
		position: relative;
	}
	.locRow::after{
		content: "";
		display: block;
		clear: both;
	}
	.locFieldHalf{
		width: calc(50% - 4px);
		float: right;
	}
	.locFieldHalf:first-child{
		width: calc(50% - 4px);
		float: left;
	}
	.contactLeft p{
		text-align: left;
	}
}
.locField {
	padding-bottom: 8px;
}
.locForm input[type="text"], .locForm input[type="email"]{
	text-align: left;
	width: 100%;
}
.locForm select{
	width: 100%;
	text-align: left;
}
.locForm textarea{
	width: 100%;
	text-align: left;
}
.locForm p{
	display: none;
}
.contactLeft{
	padding-bottom: 20px;
}
/**/
@media screen and (min-width: 801px) {
	.page-id-1559 #content .twoColumnWrapper img {
		max-width: 200px;
		margin: auto;
	}
	/*.page-id-1559 #content .twoColumnWrapper .columnLeft img {
		margin-left: auto;
	}*/
	.page-id-1559 #content .twoColumnWrapper {
		text-align: center;
	}

	.pageWidth.contentBottomPageWidth{
		max-width: 600px;
	}
}
/* Placeholders */
input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #555;
	opacity: 1;
}
input::-moz-placeholder { /* Firefox 19+ */
	color: #555;
	opacity: 1;
}
input:-ms-input-placeholder { /* IE 10+ */
	color: #555;
	opacity: 1;
}
input:-moz-placeholder { /* Firefox 18- */
	color: #555;
	opacity: 1;
}
input:placeholder {
	color: #555;
	opacity: 1;
}
textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #555;
	opacity: 1;
}
textarea::-moz-placeholder { /* Firefox 19+ */
	color: #000;
	opacity: 1;
}
textarea:-ms-input-placeholder { /* IE 10+ */
	color: #000;
	opacity: 1;
}
textarea:-moz-placeholder { /* Firefox 18- */
	color: #000;
	opacity: 1;
}
textarea:placeholder {
	color: #000;
	opacity: 1;
}

/* Media Queries */
@media screen and (max-width: 1000px) and (min-width: 800px) {
}

/* mobile */
@media screen and (max-width: 800px) {
	h2{
		font-size:20px;
	}

	body, p, td, th{
		font-size:15px;
		line-height:26px;
	}
	.pageWidth{
		width:auto;
		margin:0 30px;
	}
	.footerWidth{
		width:auto;
		margin:0 30px;
	}

	/*.logo{
		padding: 4vw 0 4vw 3vw;
		margin: 0;
		position: relative;
		width: 50vw;
		float: left;
		z-index: 1000;
	}
	.logo img, .inner .logo img{
		height:auto!important;
		width: 100%;
		position: static;
	}*/

	body.gateway .logo{
		width: 70vw;
	}

	#activateNav {
		text-align: center;
		float: right;
		z-index: 100;
	}
	#activateNav img{
		width: 11vw;
		height: auto;
		margin-right: 4vw;
		margin-top: 4.1vw;
	}

	/*#visual {
		height: auto!important;
	}*/
	/*#visual2{
		height: 75vw;
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
		position: relative;
	}*/

	.mSpacer{
		height: 120px;
		clear: both;
	}
	/*#visual::before,#visual::after{
		display: none;
	}*/

	/*#content li{
		list-style-position: inside;
	}*/

	/**/
	#mainNav{
		display:none;
		height:auto;
		position:absolute;
		margin:0;
		width:100%;
		background: #FFF;
		top:100%;
		right:0;
		/*z-index:99999;*/
		padding:0px;
		float: none;
		border-top: solid 1px #D0D0D0;
	}
	#mainNav > ul {
		height: auto;
	}
	#mainNav ul li,
	#mainNav ul>li>ul,
	#mainNav ul>li>ul>li>ul{
		padding: 0!important;
		margin: 0!important;
		width: auto;
		position: static;
		float: none;
		height: auto;
		background: none!important;
		border: none!important;
	}
	#mainNav ul li a{
		position: relative;
	}
	#mainNav ul li a, #mainNav ul li a:hover {
		color: #555!important;
		padding: 15px 20px!important;
		margin: 0;
		width: auto;
		background: #FFF; /*#3e4349;*/
		border-bottom: solid 1px #D0D0D0;
		display: block;
		float: none;
		height: auto;
		line-height: 1.1!important;
		text-align: left!important;
        font-weight: 300;
	}
	#mainNav ul>li>ul li a, #mainNav ul>li>ul li a:hover{
		background: #F8F8F8;
	}
	#mainNav ul>li>ul>li>ul>li a, #mainNav ul>li>ul>li>ul>li a:hover{
		background: #F0F0F0;
	}

	#mainNav ul li.menu-item-has-children>a::after{
		content: "+";
		display: block;
		float: right;
		color: #777;
		position: absolute;
		z-index: 1;
		right: 20px;
		top: 0;
		font-size: 24px;
		padding-top: 16px;
		font-weight: 300;
		line-height: 14px;
		font-family: Roboto, sans-serif;
	}
	#mainNav ul li.menu-item-has-children.hover>a::after{
		content: "\2013";
	}
	.tgl2{
		position: absolute;
		right: 0;
		height: 42px;
		width: 50px;
		z-index: 999;
	}
	/**/


	/*#contentWraper{
	}
	#content{
		margin-top:0px!important;
		min-height:0px;
	}*/

	/*#content, #content p, #content h1, #content h2, #content h3, #content h4{
		text-align: center;
	}*/

	/*#content #footer{
		position:relative;
		height:auto;
		padding:35px 0px 50px;
		width:auto;
		display: block;
		text-align: center;
	}*/

	/**/
	#textContent img{
		max-width:100%!important;
	}


	a.button{
		padding: 8px 10px;
		line-height: 1.4;
		height: auto;
	}

	.footerAddress{
		padding: 30px 0 0 0;
	}

	.socialBox{
		padding: 20px 0 0 0;
		margin-bottom: 0;
	}

	.socialBox a {
		margin: 0 10px 0 10px;
	}

	h2{
		line-height: 1.3;
		padding: 10px 0;
	}

	.bigB{
		top: auto;
		width: 50%;
		bottom: -100px;
	}

	.homePage .mSpacer {
		height: calc(2vw + 10px);
        /*calc(90vw + 20px);*/
	}
	/*.homePage #visual{
		top: calc(18vw + 20px);
		height: 65vw !important;
	}*/
	.columnLeftHome{
		width: auto;
		/*width: 290px;*/
		margin: auto;
	}
	.redBox{
		float: none;
		text-align: center;
		padding: 20px 10px;
		position: static;
		margin: 0;
		border: none;
		width: auto;
	}
	.redBox a.button {
		white-space: normal;
	}
	.pageWidth.redPageWidth{
		margin: 0;
	}
	#content .redBox p,#content .redBox h2{
		text-align: left;
	}
	.redBox::before, .redBox::after{
		display: none;
	}
	.contentPadding{
		clear: both;
	}
	.twoColumnWrapper .contentPadding{
		margin-left: 30px;
		margin-right: 30px;
	}
	.columnLeft .contentPadding, .columnRight .contentPadding {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.sectionImageMobile{
		width: 100%;
		height: auto;
	}
	.columnRightHome, .columnRightHome p{
		font-size: 20px;
	}
	.columnRightHome{
		padding: 0 0 30px 0;
		clear: both;
	}

	.wideTop .contentPadding{
		padding-top: 30px;
	}
    .footerNav.footerNav1{
        padding-top: 20px;
    }
}
@media screen and (max-width: 500px) {
	.contentMiddlePhoto ul{
		padding: 0;
	}
	.contentMiddlePhoto li{
		flex-basis: 40%;
	}
}

/*@media screen and (max-height: 500px) {
	#header {
		position: absolute;
	}
}*/

/**/
