/**
 *
 * -------------------------------------------
 * Basic template CSS file
 * -------------------------------------------
 *
 **/
 
/*
 *
 * 1. Global elements
 *
 *
------------------------------------ */
 
/* 1.1. Base document elements
==================================== */

* {
	outline: none!important;
}

html {
	border-bottom: 1px solid transparent; /* with min-height cause showing always the scrollbar */
	-webkit-font-smoothing: antialiased; /* Fixes Webkit GPU rendering */
	min-height: 100%;
}

body { 
	background: #ffffff;
	color: #555;
	font-size: 16px;
	line-height: 1.8;
	min-height: 100%;
	padding: 0;
	margin: 0 auto;
}
body img{display:block};

.dp-page + .dp-page-wrap {
	padding-left: 10px;
	padding-right: 10px;
}

.dp-page + .dp-page-wrap {
	padding-left: 10px!important;
	padding-right: 10px!important;
}
#dp-page-box {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	margin: 0 auto;
	
	}
#dp-page-box .dp-page {
	padding-left: 0px;
	padding-right: 0px;
}
.dp-page:after {content: " ";
   display: table;
   clear: both;}
.dp-page.vc {	padding-left: 10px!important;
	padding-right: 10px!important;
}
.boxed #dp-page-box, .page-template-template-boxedpage-php #dp-page-box {
	padding-left: 0px;
	padding-right: 0px;
	margin-left:auto;
	margin-right:auto;
	-moz-background-clip: border;     /* Firefox 3.6 */
	-webkit-background-clip: border;  /* Safari 4? Chrome 6? */
	background-clip: border-box;      /* Firefox 4, Safari 5, Opera 10, IE 9 */
	-moz-background-clip: padding;     /* Firefox 3.6 */
	-webkit-background-clip: padding;  /* Safari 4? Chrome 6? */
	background-clip: padding-box;      /* Firefox 4, Safari 5, Opera 10, IE 9 */
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
/* 1.2. Base typography elements
==================================== */

a {
	color: #333;
	text-decoration: none;
	-webkit-transition: color 0.3s ease-out;
	-moz-transition: color 0.3s ease-out;
	-ms-transition: color 0.3s ease-out;
	-o-transition: color 0.3s ease-out;
	transition: color 0.3s ease-out;
}

article section.content a,
article section.intro a {
	color: #eb5a55;
}

article section.content a:active,
article section.content a:focus,
article section.content a:hover,
article section.intro a:active,
article section.intro a:focus,
article section.intro a:hover {
	color: #111;
}

a:active,
a:focus,
a:hover {
	color: #00a0dc;
	cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #000000;
	font-weight: 700;
	margin: 0 0 10px 0;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}

h1 {
    font-size: 40px;
    line-height: 40px;
	letter-spacing:-2px;
}
h2 {
    font-size: 30px;
    line-height: 30px;
}
h3 {
    font-size: 18px;
    line-height: 24px;
}
h4 {
    font-size: 16px;
	line-height: 24px;
    margin-bottom: 8px;
}
h5 {
    font-size: 14px
}
h6 {
    font-size: 12px
}
h1.homepage {
  font-size: 42px;
	line-height: 40px;
	font-weight: 900;
	font-family: Arial, Helvetica, sans-serif;
	color: #ffffff;
	text-decoration: none;
	background-color: transparent;
	width: 100%;
	border-width: 0px;
	border-color: #ffd658;
	border-style: none;
}
h2.subpage {
  color: #ffffff;
  font-size: 34px;
  line-height: 36px;
	font-weight: 700;
	font-family: PT Sans;
	text-decoration: none;
	background-color: transparent;
}
h2.alt {
  color: #00a0dc;
  font-size: 30px;
  line-height: 32px;
  font-weight: 700;
	font-family: PT Sans;
	text-decoration: none;
	background-color: transparent;
}
h2.alt2 {
  color: #ffffff;
  font-size: 18px;
  line-height: 132px;
  font-weight: 700;
  font-family: PT Sans;
	text-decoration: none;
	background-color: transparent;
  word-wrap: break-word;
}

p {
	-ms-word-wrap: break-word;
	    word-wrap: break-word;
	margin: 0 0 20px 0;
}
.page-title {
	font-size: 35px;
	margin: 0 0 35px 0;
}

ul {
	list-style-type: disc;
}

ul li,
ol li {
  /* guan 2014-12-08
	line-height: 1.5em;*/
  line-height: 1.8;
}
ul li li {padding:0;}
img {
	height: auto;
	/* guan 20150116 max-width: 100%; */
}
img.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
.box ul li,
.box ol li {
}

.box ul li:first-child,
.box ol li:first-child {
	border-top: none;
}

.box ul ul,
.box ol ol {
	margin: 0;
	padding: 0 0 0 20px;
}
/* Style Flush bottom*/

.box.flush-bottom {
	margin-bottom: 0!important;
}

/* 1.3. Base form elements
==================================== */

/* buttons */
button,
a.dp-button,
input[type="button"],
input[type="submit"] {
padding: 8px 16px;
	display: inline-block;
	border: 0;
	font-weight: 500;
	outline: none;
	font-size: 14px;
	cursor: pointer;
	width: auto;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	border-radius: 2px;
  background-color: #eb5a55;
  color:#fff;
}

.btn:hover,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled],
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
button:active,
input[type="button"]:active,
input[type="submit"]:active,
button.disabled,
input[type="button"].disabled,
input[type="submit"].disabled,
a.dp-button:hover,
a.dp-button:active,
a.dp-button.active,
a.dp-button.disabled,
a.dp-button[disabled] {
  background-color: #A0A5AA!important;
  color:#fff!important;
}

.btn:active,
.btn.active,
button:active,
a.dp-button:active,
a.dp-button.active
input[type="button"]:active,
input[type="submit"]:active {
  background-color: #A0A5AA;
}

.btn:first-child,
button:first-child,
a.dp-button:first-child,
input[type="button"]:first-child,
input[type="submit"]:first-child {
  margin-left: 0;
}

.btn:hover,
button:hover,
a.dp-button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  color: #333333;
  text-decoration: none;
  background-color: #e6e6e6;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
     -moz-transition: background-position 0.1s linear;
      -ms-transition: background-position 0.1s linear;
       -o-transition: background-position 0.1s linear;
          transition: background-position 0.1s linear;
}

.btn:focus,
button:focus,
a.dp-button:focus,
input[type="button"]:focus,
input[type="submit"]:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn.active,
.btn:active,
button:active,
a.dp-button:active,
input[type="button"]:active,
input[type="submit"]:active {
  background-color: #e6e6e6;
  background-color: #d9d9d9;
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn.disabled,
.btn[disabled],
button.disabled,
a.dp-button:disabled,
a.dp-button[disabled],
input[type="button"].disabled,
input[type="submit"].disabled {
  cursor: default;
  background-color: #e6e6e6;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}

.btn-large {
  padding: 9px 14px;
  font-size: 15px;
  line-height: normal;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}

/* input fields */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="www"],
input[type="tel"]  {
	background: #fff;
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	color: #333;
	font: normal 12px 'PT Sans',Arial, sans-serif;
	height: 32px;
	/*guan 2014-12-11 line-height: 32px;*/
	padding: 9px;
}
.readon {
	display: inline-block;
	padding: 0;
	font-size:16px;
	line-height:20px;
}
.readon span:after {content:'\ea03';
	font-family: 'fontello';
	font-size:16px;
	padding-left:5px;
	line-height:20px;
	}
.readon1 {
	display: inline-block;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	border-radius: 14px;
	background-color: transparent;
	border: 1px solid #232D37;
	padding:0 20px;
	height:28px;
	line-height:28px;
	font-size:16px;
	color:#232D37!important;
}

.readon1:hover {color:#232D37!important}
.readon1 a {color:#232D37!important;}
.readon1:hover a {}

.readon2 {
	display: inline-block;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	border-radius: 14px;
	background-color: transparent;
	border: 1px solid #eb5a55;
	padding:0 20px;
	height:28px;
	line-height:28px;
	font-size:16px;
	color:#eb5a55!important;
}

.readon2:hover {color:#eb5a55!important}
.readon2 a {color:#eb5a55!important;}
.readon2:hover a {}

.dp-readon {
	display: inline-block;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	background-color: transparent;
	border: 1px solid #eb5a55;
	padding:0 14px;
	height:35px;
	line-height:35px;
	font-size:15px;
	color:#eb5a55!important;
	
}
.dp-readon:hover {color:#ffffff!important; background-color:#eb5a55;}
.dp-readon a {color:#eb5a55!important;}
.dp-readon:hover a {color:#ffffff}

.dp-readon1 {
	display: inline-block;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	border-radius: 14px;
	background-color: transparent;
	border: 1px solid #ffffff;
	border: 1px solid rgba(255,255,255,0.4);
	padding:0 31px 0 11px;
	height:28px;
	line-height:28px;
	font-size:15px;
	color:#ffffff!important;
	position:relative;
	overflow:hidden;
		

}
.dp-readon1 span { margin-left:-100px;
-webkit-transition: all 0.4s ease-out;
	   -moz-transition: all 0.4s ease-out;
	    -ms-transition: all 0.4s ease-out;
	        transition: all 0.4s ease-out; }
.dp-readon1:hover span { margin-left: 0; }
.dp-readon1 span:after {
	font-family: "fontello";
	content: '\e8c3';
	position:absolute;
	right:25px;
	font-weight:200;
	-webkit-transition: all 0.4s ease-out;
	   -moz-transition: all 0.4s ease-out;
	    -ms-transition: all 0.4s ease-out;
	        transition: all 0.4s ease-out;
	}
.dp-readon1:hover {color:#ffffff!important;
	border: 1px solid #ffffff;
}
.dp-readon1:hover span:after {right:10px;} 
.dp-readon1 a {color:#ffffff!important;}
.dp-readon1:hover a {}

textarea {
	background: #fff;
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	color: #333;
	font-family: 'PT Sans',Arial, sans-serif;
	font-size: 14px;
	line-height: 23px;
	padding: 10px;
	text-transform: none;
}

label {
	display: inline-block;
	font-size: 16px;
	font-weight: bold;
	padding: 0 0 4px 0;
}

select {
	max-width: 100%;
}

/* 1.4. Base other elements
==================================== */

article {
  padding: 0 0 0px 10px;
	margin: 0 0 0px 0;
}
.page-template-template-fullwidth-vc-php article {margin:0}
.tag-page article,
.category-page article,
.search-page article {
	margin: 0px 0 40px 0;
}

/* 1.5. Base CSS classes
==================================== */

/*
 *
 * 2. Template containers
 *
 *
------------------------------------ */
.dp-page-wrap {
	/*padding-top: 45px;*/
	overflow:hidden;
}
.page-template-template-fullwidth-vc-php .dp-page-wrap {
	padding-top: 0;
}
.dp-page .dp-page-wrap {
	padding-top: 45px;
}
#dp-navigation-wrapper {}
#dp-slideshow #dp-navigation-wrapper{ position:absolute; top:0; left:0px; }
#dp-slideshow {
position:relative;}
#dp-slideshow .box {margin:0!important;padding:0!important}
#dp-header + .dp-page-wrap {
	padding-top: 20px;
}

.dp-page {
	margin: 0 auto;
	width: 100%; 
}
#dp-mainbody {padding:0 10px;}
.page-template-template-fullwidth-vc-php #dp-mainbody {padding:0;}

#dp-mainbody-columns {
	display: block;
	overflow: visible;
	width: 100%;
}

#dp-mainbody-columns > section {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	float: left;
	padding: 0;
}

#dp-mainbody-columns > aside {
	background: #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	float: left;
	padding: 0 0 0 20px;
}

#dp-mainbody-columns.dp-sidebar-left > section {
	float: right;
}

#dp-mainbody-columns.dp-sidebar-left > aside {
	float: left;
	padding: 0 20px 0 0;
}
#dp-content-wrap {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	     -o-box-sizing: border-box;
	        box-sizing: border-box;
	padding: 0;
	width:100%;
}
#dp-content-wrap,
#dp-mainbody > div
 {
	float: left;
}

#dp-mainbody-columns.dp-sidebar-left > section
{
	float: right;
}

.expand10 {}
/*
 *
 * 3. Template structure
 *
 *
------------------------------------ */
 
/* 3.1. Top
==================================== */
#search-form-wrapper {position: relative;
}
/* 3.2. Header and subheader
==================================== */
/*guan 2014-12-08
.dp-head-wrap {background:transparent; position:relative;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	z-index:400;
	}
*/
.dp-head-wrap {position:relative;
border-bottom: 1px solid rgb(255, 255, 255);
	z-index:400;
	}
.page-template-template-contact-php .dp-head-wrap.semi-transparent  {
	
	background-color: rgba(33, 51, 68, 0.9)!important;}
#dp-head {
	position: relative;padding: 0 10px;
	background-color: #ffffff;
}

#dp-head:after {
	clear: both;
	content: "";
	display: table;
}

#dp-head h2 {
	float: left;
	margin: 0;
}

#dp-head a.cssLogo {
	background: transparent url('../images/logo.png') no-repeat 0 0;
	display: block;
	height: 37px;
	width: 156px;
	text-indent: -9999px;
	margin: 31px 0px 10px 88px;
	background-size:cover;
}

#dp-head a.textLogo {
	color: #eb5a55;
	display: block;
	font-size: 18px;
	line-height: 22px;
	padding: 7px 0 0 10px;
}

#dp-head a.textLogo small {
	color: #333;
	display: block;
	font-size: 12px;
	line-height: 12px;
}

#dp-head a.imageLogo {
	display: block;
	margin: 30px 15px 10px 0;
}

#dp-head a.imageLogo img {
display: block;
width: auto;
height: auto;
max-height: 100%;
height : 100%\9; /*hack: fixes ie8 logo*/
}


.dp-button-area {
	float: right;
	
}

.dp-button-area a {
	
}


.dp-header-search, .dp-sidebar-button  {
	color: #888;
	font-size:20px;
	display:block;
	line-height:16px;
}
.dp-header-search:hover  {color:#eb5a55;}
.dp-sidebar-button:hover  {color:#eb5a55;}	


.dp-subheader-wraper {
	background: #f6f6f6;
	padding: 0;
}
/*guan 2014-12-09
.dp-subheader {position:relative; min-height:300px; text-align:right;}
*/
.dp-subheader {position:relative; min-height:160px; text-align:right;}
.dp-subheader .col {width:50%;float:left;}
/* guan 2014-12-11
.dp-subheader .main-title {font-size:40px;font-weight:700;line-height:40px; text-transform:uppercase;padding-top:7%;padding-right:50px;}
*/
.dp-subheader .main-title {font-size:40px;font-weight:700;line-height:40px; text-transform:uppercase;padding-top:7%;padding-right:50px;white-space: nowrap;padding-left: 54px;}
.dp-subheader .sub-title { font-size:14px; font-weight:400; opacity:0.7;padding-right:50px; margin-top:-15px; font-style:italic;}
.dp-subheader .dp-breadcrumbs {font-size:16px;}
.dp-subheader .dp-breadcrumbs a, .dp-subheader .dp-breadcrumbs span {opacity:0.7}
.dp-subheader .dp-breadcrumbs a:hover {opacity:1}


/* 3.4. Content
==================================== */

section.intro {
	font-size: 110%;
	padding: 0;
	margin-bottom:50px;
}
article::after,
.box::after,
#dp-footer::after,
#copyright-wrapper::after,
#respond::after,
#dp-mainbody::after,
#dp-mainbody-columns::after {
    clear: both;
    content: "";
    display: table;
}

section.content::after {
    clear: both;
    content: "";
    display: table;
}
#dp-mainbody .box {padding:0;}
.pagination {
clear:both;
padding:0 0 40px 0;
position:relative;
font-size:14px;
line-height:14px;
}

.pagination span, .pagination a {
display:block;
float:left;
margin: 2px 5px 2px 0;
text-decoration:none;
line-height:30px;
text-align:center;
width:30px;
color:#b9bec3!important;
background: #fff;
border:1px solid #ECEEF0;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}

.pagination a:hover, .pagination .current{
color:#fff!important;
background: #eb5a55;
border:1px solid #eb5a55;

}

/* 3.5. Sidebar
==================================== */

/* 3.6. Footer
==================================== */

#dp-footer-wrap {background: #161a1d; position:relative;}
#dp-footer ul li,
#dp-footer ol li {
	line-height: 2.0;
	margin-right: 15px;
}
#dp-footer .box-title {font-size:16px; letter-spacing:normal}
#dp-footer {padding: 0 10px!important;display:block; position:relative;width:100%;z-index:100; box-sizing:border-box;}
#dp-footer .box {padding: 0 20px 0 0!important}
#dp-footer1, #dp-footer2 {padding-top:30px;}
#dp-footer2 {width:50%; float:left;}
#dp-footer3 {width:100%; float:left;}
#dp-footer3 {padding-top:0px;}



#dp-footer1 {width:50%; float:left;}
.contrast, .contrast .box-title  { color:#fff!important;}
.contrastbg {position:absolute; height:100%; width:25%;background:#161a1d;background-color:#161a1d !important; }
.footer_one_third{
	width:100%;			
    margin-right: 2%;
	display: block;
	background-color:#161a1d;
	box-sizing:border-box;
	padding-top: 60px;
	
}
.footer_two_third{
	width:65%;
	height:100%;
	padding-left:35%;
	display:block;
	padding-bottom:70px;
}
.footer-separator {height:10px; background-color:#1da9de; margin-bottom:30px;margin-top: 50px;}
.footer_social_bar {padding-top:0px;padding-bottom: 40px; }
#footer-menu {
	float: right;
	line-height: 32px;
	margin: 0;
	list-style:none;
}

#footer-menu li {
	float: left;
	padding-left: 30px;
	font-size:15px;
}

#footer-menu ul {
}
.dp-copyrights, .dp-copyrights-mobile  {padding-bottom:30px; text-align: center;}
.dp-copyrights-mobile {display:none;}
.dp-copyright-logo {float:left; margin:0 5px 0 0;display:inline-block;}
.dp-copyright-logo .css {float:left; height:30px; }
.dp-copyrights-text {
	display: inline-block;
	color: #fff;
    font-size: 16px;
    text-align: center;
}
.dp-footer3 h3 {
	color: #fff;
}
.foot_img_icom_trades {
    display: inline;
    padding-right: 9px;
    width:19px;
    height: 19px;
    vertical-align: baseline;
}


/*	Back to Top */

#back-to-top {

}

#back-to-top:hover { background-color: #eb5a55; }

/*
 *
 * 4. Widget styles
 *
 *
------------------------------------ */
 
/* 4.1. Base style
==================================== */

.box {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 10px;
	margin-bottom:30px;
}

.box-title {
	font-size: 14px;
	margin: 0 0 12px 0;
	text-transform:uppercase;
	font-weight: 700;
	/*guan 2014-12-08 letter-spacing: 3px;*/
}
.no-title .box-title {display:none}

/* 4.2. Base style for other areas
==================================== */
#dp-footer .box,

.widget-area .col1 { width: 100%; }
.widget-area .col2 { width: 50%; }
.widget-area .col3 { width: 33.3%; }
.widget-area .col4 { width: 25%; }
.widget-area .col5 { width: 20%; }
.widget-area .col6 { width: 16.6%; }

.widget-area .box.last1 { width: 100%; }
.widget-area .box.last2 { width: 50%; }
.widget-area .box.last3 { width: 33.3%; }
.widget-area .box.last4 { width: 25%; }
.widget-area .box.last5 { width: 20%; }

.widget-area .nth1 {
	clear: both;
}

/* 4.3. Device classes
==================================== */

.onlyDesktop {
	display: block!important;
}

.onlyTablets {
	display: none!important;
}

.onlySmartphones {
	display: none!important;
}

.onlyTabltetsAndSmartphones {
	display: none!important;
}

/**guan 2014-12-11 */
#post-1067 .vc_row-fluid{
  padding-top:45px;
}

/**guan 2014-12-11 */
#dp-navigation-wrapper .dp-sidebar-button{
  display:none;
}

/**guan 2014-12-11 */
.single-post .dp-breadcrumbs{
  display:none;
}

/**guan 2014-12-11 */
.single-post article .meta{
  display:none;
}

/**guan 2014-12-11 */
.single-post .dp-subheader .main-title {
    padding-top: 60px;
}

/**guan 2014-12-15 */
.your-brief-description-of-project textarea{
  height:150px;
}

/**guan 2014-12-15 *//**guan 20150116- */
.dp-page-wrap a{
  color:#000;
}

.dp-page-wrap a:active, .dp-page-wrap a:focus, .dp-page-wrap a:hover{
  color: #eb5a55!important;
	cursor: pointer!important;
}

#post-1976 a img{
  vertical-align: text-bottom;
  display: inline;
  padding-left:6px;
}

.recent-post-widget .thumbnail a .icn-more, figure .text-overlay, .woocommerce-main-image.zoom .dp-wc-zoom.active > span, .wc-product-overlay .dp-wc-view.active > span {
    display: none;
}



/*===================================================================================*/
/*  new 22mils                                                                       */
/*===================================================================================*/
.new22miles-mainbody-padding {
	width: 70.7%;
	margin-left: auto;
	margin-right: auto;
}
.new22miles-mainbody-padding .wpb_single_image img{
	margin-left: auto;
    margin-right: auto;
}

.new-button-white {
	width: 170px;
    height: 36px;
    border-style: solid;
    border-width: 2px !important;
    border-color: #00a0dc !important;
    line-height: 17px;
    float: left;
    margin: 29px 50px 0 0;
    cursor: pointer;
    color: #000;
}
.new-button-white:hover {
	background-image: none;
	background-color: #00a0dc;
	color:#fff !important;
}

.new-button-white-content {
	font-size: 17px;
    z-index: 264;
    width: 100%;
    min-height: 16px;
    background-color: transparent;
    text-align: center;
    margin: 10px 0 0 0;
    font-weight: 500;

}

.home-arrow {
    bottom: 19px;
    position: absolute;
    right: 24px;
}

.contact-form-flex.have-div{
	width: 300px;
	position: fixed;
    top: 100px;
    right: 10%;
    z-index: 999;
   	padding: 20px;	
    background-color: #00a0dc;
    text-align: center;
    margin-top: 5px;
}
.have-div h3 {
    color: #fff;
    font-size: 16px;
    text-align: center;
}
.have-div p {
    color: #fff;
    text-align: left;
}
.contact-form-flex .cantatc-form-close{
	float: right;
    cursor: pointer;
}
.contact-form-flex .cantatc-form-close:hover{
	float: right;
    cursor: pointer;
}
.contact-form-flex .contact-form-submit{
	text-align: center;
	margin: 0px;
}
.contact-form-flex .wpcf7 input[type="submit"]{
	background: #00a0dc none repeat scroll 0 0;
    border: medium none;
    border-radius: 30px;
    box-shadow: none;
    color: #fff;
    height: auto;
    padding: 5px 30px;
    border-style: solid;
    border-width: 2px;
    border-color: #fff;
}
.contact-form-flex .wpcf7 input[type="submit"]:hover{
	background-color: #fff !important;
	color: #00a0dc !important;
}
.video-home-ZD {
	max-height: 1080px !important;
}

p.video_right_text_wayfind {
    font-size: 50px !important;
    text-align: left !important;
    padding-left: 65px !important;
    padding-top: 165px !important;
    line-height: 50px !important;
    font-weight: bold !important;
    color: #fff !important;
    font-family: 'PT Sans',Arial, sans-serif;
}
p.video_right_text_others {
    font-size: 25px !important;
    text-align: left !important;
    padding-left: 65px !important;
    padding-top: 110px !important;
    line-height: 29px !important;
    color: #fff !important;
    font-family: 'PT Sans',Arial, sans-serif;
}
.go_to_where {
    background: #fff;
    width: 235px;
    height: 235px;
    padding: 10px;
    position: absolute;
    top: -120px;
    right: 10%;
    z-index: 100;
    transition: width 0.5s, height 0.5s, right 0.5s;
	-moz-transition: width 0.5s, height 0.5s, right 0.5s;	/* Firefox 4 */
	-webkit-transition: width 0.5s, height 0.5s, right 0.5s;	/* Safari  Chrome */
	-o-transition: width 0.5s, height 0.5s, right 0.5s;	/* Opera */
	 cursor: pointer;
}
.go_to_where_content {
    background: #00a0dc;
    height: 100%;
    width: 100%;
    color: #fff;
}
font.go_to_where_title {
	color: #fff;
    font-size: 20px;
    line-height: 30px;
    padding: 30px;
    display: block;
}

.content .post-teaser{
	margin-top: 0px;
	float: left;
	position: relative;
	width: 100%;
}

.content .post-teaser-contarer {
	background-color: #fff !important;
	margin-top: 105px !important;;
}
/*
.post-teaser.left {
	left: -150%;
	
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
.post-teaser.right {
	left: 150%;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
*/
.post-teaser {
   -webkit-animation-duration: 1.2s !important;
   -moz-animation-duration: 1.2s !important;
     -o-animation-duration: 1.2s !important;
        animation-duration: 1.2s !important; 
}
.post-teaser-wrapper {
	margin-top: 60px;
}
.post-teaser img{
	margin: 0 auto;
	width: 99%;
}
.vc_carousel .vc_carousel-indicators {
	margin: 50px auto !important;
    position: static !important;
}
.content .post-teaser-contarer .wpb_column {
	background: #fff;
}
.post-teaser-content .readon{
	background-color: #00a0dc;
    color: #fff !important;
    padding: 7px 20px;
    border-radius: 20px;
    font-size: 16px;
    line-height: 16px;
    float: right;
    margin-top: 15px;
}
.post-teaser-content .readon:hover {
	border-style: solid;
	border-width: 2px;
	border-color: #00a0dc;
	line-height: 16px;
	background-color: #fff;
	color: #00a0dc !important;
	padding: 5px 20px;
}
.dp-page-wrap post-teaser a:hover {
	background-color: #000000;
}
.post-view-all {
	margin: 30px auto;
	float: none;
	width: 240px;
}

.new_btn {
	background-color: #00a0dc;
    color: #fff !important;
    padding: 7px 20px;
    border-radius: 20px;
    font-size: 16px;
    line-height: 16px;
    margin-top: 10px;
}
.new_btn img{
	display: inline;
	vertical-align: middle;
}
a.new_btn:hover {
	border-style: solid;
	border-width: 2px;
	border-color: #00a0dc;
	line-height: 16px;
	padding: 7px 18px;
	background-color: #fff;
	color: #00a0dc !important;
}
.content-manager-more.animated{
	opacity: 1 !important;
}   

.blak-button-contaiter {
	text-align: center;
	height: 100px;
	background-color: #000000;
}
.in-black-button {
	background-color: #00a0dc !important;
    color: #fff !important;
    padding: 10px 40px !important;
    border-radius: 20px !important;
    font-size: 16px !important;
    line-height: 16px !important;
    margin-top: 35px;
}
.in-black-button:hover {
	background-color: #fff !important;
	color: #00a0dc !important;
}
.black-background {
	background-color: #000;
}
.blue-background {
	background-color: #00a0dc;
}
.blak-button-contaiter .dp-page-wrap a:active, .blak-button-contaiter .dp-page-wrap a:focus, .blak-button-contaiter .dp-page-wrap a:hover{
	background-color: #fff !important;
	color: #00a0dc !important;
}
.product-black-img figure img{
	-o-transform: scale(1.01);
    -ms-transform: scale(1.01);
    -moz-transform: scale(1.01);
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
}
.product-container a {
	color: #fff !important;
}
.product-container .vc_col-sm-3 {
	padding-left: 0px;
    padding-right: 0px;
}
.product-container .vc_col-sm-6 {
	padding-left: 0px;
    padding-right: 0px;
}
.product-container-title {
	height: 132px;
	background-color: #000000;
}
.product-container-title p {
	color: #fff;
    font-size: 50px;
    line-height: 132px;
    text-align: center;
    display: block;
    font-weight: bold;
}

.product-row{
	float: left;
	width: 100%;
}
.product-icon {
	color: #fff;
}
.product-content {
	color: #fff;
	padding: 110px 70px 30px 70px;
	padding-left: 70px !important;
	padding-right: 50px !important;
}
.product-content p{
	margin: 0;
}
.product-content p.product-sub-text-1 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 40px;
}
.product-content p.product-sub-text-2 {
    font-size: 30px;
    font-weight: bold;
    line-height: 30px;
    
}
.content-blue-1{
	background-color: #00a0dc;
}
.content-blue-2{
	background-color: #2fb7eb;
}
.content-blue-3{
	background-color: #000000;
}
.awards-custom-div{
	margin-top: 150px !important;
}
.awards-custom-div .dp-page.vc{
	max-width: 1300px;
}
.client-say-title p{
	font-size: 50px;
	line-height: 90px;
	color: #00a0dc;
	text-align: center;
}
.home-testimonials .testimonials h2{
	font-size: 28px;
	line-height: 30px;
}
.home-testimonials .testimonials img{
	display: none;
}

.home-testimonials .testimonials span{
	max-width: 1000px;
    display: block;
    text-align: center;
    margin-left: auto;
    padding-top: 30px;
    margin-right: auto;
}
.opaque  .dp-page.vc{
	max-width: 1300px;
}
#dp-footer-wrap .dp-page {
	max-width: 1400px;
}
#dp-footer2 #recent-posts-3 .box-title span:before{
	font-family: "web22miles";
    content: 'O';
    font-size: 26px;
    line-height: 17px;
    color: #00a0dc;
}
#dp-footer2 #recent-posts-3 ul {
	margin-left: 30px;
}
#dp-footer2 #recent-posts-3 li:before {
	color: #fff;
}

#dp-footer3 ul {
	margin-left: 30px;
}
#dp-footer3 li:before {
	color: #fff;
}
#back-to-top {dispaly: none;}


.pro-image-container .image-container{
	position: relative;
	display: block;
/* 	background-color: #bac5c8;
	height: 2px;
	top: 50%;
	width: 20%;
	margin: 0 auto;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);*/
	-webkit-transition: height .1s ease .1s, width .2s ease .2s;
	transition: height .1s ease .1s, width .2s ease .2s 
}
.pro-image-container .image-container img{
	position: relative;
	display: block;
	top: 0;
	left: 0;
	width: 0%;
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-transition: width .3s ease .6s, top .3s ease .9s, height .3s
		ease .9s, -webkit-box-shadow .3s ease 1.35s;
	transition: width .3s ease .6s, top .3s ease .9s, height .3s ease .9s,
		-webkit-box-shadow .3s ease 1.35s;
	transition: width .3s ease .6s, top .3s ease .9s, height .3s ease .9s,
		box-shadow .3s ease 1.35s;
	transition: width .3s ease .6s, top .3s ease .9s, height .3s ease .9s,
		box-shadow .3s ease 1.35s, -webkit-box-shadow .3s ease 1.35s;
}

.pro-image-container.active .image-container {
	z-index: 2000 !important;
/* 	overflow: hidden;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px
		rgba(0, 0, 0, 0.24);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);*/
	-webkit-transition: width .3s ease .6s, top .3s ease .9s, height .3s
		ease .9s, -webkit-box-shadow .3s ease 1.35s;
	transition: width .3s ease .6s, top .3s ease .9s, height .3s ease .9s,
		-webkit-box-shadow .3s ease 1.35s;
	transition: width .3s ease .6s, top .3s ease .9s, height .3s ease .9s,
		box-shadow .3s ease 1.35s;
	transition: width .3s ease .6s, top .3s ease .9s, height .3s ease .9s,
		box-shadow .3s ease 1.35s, -webkit-box-shadow .3s ease 1.35s; 

}
.pro-image-container.active .image-container img{
	position: relative;
	display: block;
	opacity: 1;
	width:100%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-transition: width .3s ease .6s, top .3s ease .9s, height .3s
		ease .9s, -webkit-box-shadow .3s ease 1.35s;
	transition: width .3s ease .6s, top .3s ease .9s, height .3s ease .9s,
		-webkit-box-shadow .3s ease 1.35s;
	transition: width .3s ease .6s, top .3s ease .9s, height .3s ease .9s,
		box-shadow .3s ease 1.35s;
	transition: width .3s ease .6s, top .3s ease .9s, height .3s ease .9s,
		box-shadow .3s ease 1.35s, -webkit-box-shadow .3s ease 1.35s;
}

.js_product_sub_row_one_2 .product-content{
	position: absolute;
	top: 0;
}
.js_product_sub_row_one_2 {
	position: relative;
}

/*===================================================================================*/
/*  sub page css                                                                     */
/*===================================================================================*/
.sub-parallax-bg {
	width: 10899px;
    margin-left: -1950px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    height: 100%;
}
.sub-parallax-blue .sub-parallax-bg-color{
	background-color: #00a0dc;
}
.sub-parallax-white .sub-parallax-bg-color{
	background-color: #fff;
}
.sub-parallax-page [class^="vc_col-"], [class*=" vc_col"] {
	position: relative;
}

.subpage-title {
	
}

.subpage-title .headline h3{
	text-align: left !important;
	color: #fff;
	/*text-transform: none !important;
	font-weight: normal !important;;*/
}
.sub-page-header-line h3{
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    padding-top: 30px;
    padding-bottom: 30px;
}
.subpage-title .subpage-title-left{
	margin: auto 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 137px;
}
.subpage-title .wpb_text_column{
	color: #fff;
}
.subpage-title-h1 h3{
	font-size: 	45px !important;
	line-height: 45px !important;
    font-weight: bold;
    text-transform: uppercase;
}
.subpage-title-h2 h3{
	font-size: 	32px !important;
	line-height: 35px !important;
	font-weight: normal !important;
}
.subpage-title-h3, .subpage-title-h3 h3{
	font-size: 	21px;
	line-height: 22px;
	font-weight: normal !important;
	margin: 0;
}

.item-vertical-center {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center
}

.Center-Container.is-Table { display: table; height: 386px;}  
.is-Table .Table-Cell {  
  display: table-cell;  
  vertical-align: middle;  
}  
.is-Table .Center-Block {  
  width: 100%;  
  margin: 0 auto;  
}  

.bwg_close_btn {
	font-size: 26px;
}



.subpage-col-center {
	text-align: center;
}

.font-color-black .wpb_text_column{
	color: #000000 !important;
}
.font-color-black h3{
	color: #000000 !important;
}
.font-color-white h3, .font-color-white{
	color: #fff !important;
}
.font-color-white-a a{
	color: #fff !important;
}
.font-color-blue, .font-color-blue h3{
	color: #00a0dc;
}
.subpage-img-left {
	margin-left: 0px !important;
}

@media only screen and (min-width:0) and (max-width:579px) {
	.item-vertical-center {
		display: inherit;
		align-items: inherit
	}
}

.subpage-parallax-bg-bule-light .sub-parallax-bg-color{
	background-color: #00a0dc;
	margin-left:-3676px !important;
}

.subpage-parallax-bg-gary-light .sub-parallax-bg-color{
	background-color: #f6f6f6;
	margin-left:-3676px !important;
}
.subpage-parallax-bg-gary-dark .sub-parallax-bg-color{
	
}
.subpage-parallax-bg-black-light .sub-parallax-bg-color{
	background-color: #505050;
	margin-left:-3676px !important;
}
.subpage-parallax-bg-black-dark .sub-parallax-bg-color{
	background-color: #161a1d;
	margin-left:-3676px !important;
}
.subpage-four-icons{
	padding: 55px 0;
}
.subpage-four-icons,  .subpage-four-icons p{
	font-family: 'PT Sans',Arial, sans-serif;
	font-size: 18px;
	font-weight: normal !important;
}
.vc_btn-white.subpage-white-link-button {
    color: #00a0dc !important;;
	border-radius: 30px !important;
    padding: 5px 24px !important;
    font-size: 16px !important;
}
.subpage-white-link-button:hover {
	color:#fff !important;
}
.vc_btn-white.subpage-white-link-button:after {
	content: '\ea03';
    font-family: 'fontello';
    padding-left: 10px;
    line-height: 1.33;
    font-weight: bold;
}
.subpage-page-button {
    border-radius: 30px;
    box-shadow: none;
    color: #fff;
    height: auto;
    padding: 5px 30px;
}

.wpb_gallery .flexslider {
  border: none;
  -webkit-box-shadow:none !important;
  -moz-box-shadow:none !important;
  box-shadow: none !important;
  border-radius: 0px;
}
.wpb_image_grid img{
  border: none !important;
  -webkit-box-shadow:none !important;
  -moz-box-shadow:none !important;
  box-shadow: none !important;
  border-radius: 0px;  
}


/*===================================================================================*/
/*  applications                                                                 */
/*===================================================================================*/
.subpage-applications-title {
	height: 545px;
}

.new22miles-mainbody-padding .subpage-applications-title .sub-parallax-bg-color{
	background: url(../images/new22miles/applications-banner.png) no-repeat;
	margin-left:1676px !important;
}
.subpage-applications-title .subpage-title-left {
	height: 330px;
}

.application-header .application-header-text p {
	line-height: 1.4;
	font-size: 16px;
	color: #fff;
	padding-right: 150px;
}

.application-content .headline {
	margin-top: 80px;
	margin-bottom: 60px;
}
.application-content .headline h3{
	font-size: 32px;
	line-height: 40px;
}
.application-content .wpb_single_image {
	float: left;
}
.application-content .wpb_single_image img{
	float: left;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.application-left {
	padding-right: 50px !important;
}
.application-right {
	padding-left: 50px !important;
}
.applications-enterprise-text {
	max-width: 1338px;
	margin: 0 auto;
}
.application-content .wpb_single_image{
	width: 16%;
}
.application-content .dp-teaser{
	float:left;
	width: 84%;
}
@media (min-width: 1200px) {
	.vc_col-lg-6.applecation-title-col {
		width: 70%;
	}
	.vc_col-lg-8.applecation-title-col {
		width: 80%;
	}
	
}
@media (min-width: 1600px) {
	.vc_col-lg-6.applecation-title-col {
		width: 50%;
	}
	.vc_col-lg-8.applecation-title-col {
		width: 66.66666667%;
	}
	.subpage-healthcare-title .vc_col-lg-8.applecation-title-col {
		width: 60.66666667%;
	}
}

/*===================================================================================*/
/*  content manager                                                                  */
/*===================================================================================*/
.content-manager-title .sub-parallax-bg-color{
	background: url(http://www.22miles.com/wp-content/uploads/2017/03/content-management-gb.png) no-repeat;
	margin-left:1676px !important;
}
.content-manager-title .subpage-title-left {
	height: 190px;
}
.content-manager-title {
	height: 386px;
	padding-left: 320px;
}
.content-manager-headline h3{
	font-weight: normal !important;
}
.content-manager-subtitle {
	margin: 0;
	font-size:16px;
	
}
@media (max-width: 1400px) {
	.content-manager-title .headline h3 {
		font-size: 32px !important;
		line-height: 36px !important;
	}
}
@media (max-width: 800px) {
	.content-manager-title .wpb_text_column {
		display: none;
	}
	.content-manager-title {
		padding-left: 290px;
	}
	.content-manager-title .headline h3 {
		font-size: 26px !important;
		line-height: 30px !important;
	}
}
@media (max-width: 1031px) {
	.content-manager-title .sub-parallax-bg-color {
		margin-left: 1733px !important;
	}
}


/*===================================================================================*/
/*  solutions page                                                                  */
/*===================================================================================*/
.subpage-solutions-title .sub-parallax-bg-color{
	background-color: #f6f6f8;
	margin-left:-3676px !important;
}
.subpage-solutions-title {
	height: 386px;
}

.digital-left-1-blue{
	background-color: #0082bf;
}
.digital-right-3-blue-light {
	background-color: #0095e2;
}
.digital-right-4-blue-light {
	background-color: #80d5fe;
}
.digital-left-1-blue-img{
	/*height: 237px;
    position: absolute !important;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;*/
}
.digital-left-1-blue-img {
	/*position: absolute !important;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;*/
}


.solutions-block-gray-light-0 .wpb_wrapper{
	background-color: #d6d6d6;
	height: 100%;
}
.solutions-block-gray-light-1 .wpb_wrapper{
	background-color: #bebebe;
	height: 100%
}
.solutions-block-gray-light-2 .wpb_wrapper{
	background-color: #a4a4a4;
	height: 100%;
}
.solutions-block-gray-light-3 .wpb_wrapper{
	background-color: #8c8c8c;
	height: 100%;
}
.solutions-block-gray-light-4 .wpb_wrapper{
	background-color: #787878;
	height: 100%;
}
.solutions-block-black .wpb_wrapper{
	background-color: #161a1d;
	height: 100%;
}
.solutions-blocks .wpb_row.vc_row-fluid{
	margin: 0px 0px;
}
.solutions-blocks a{
	color: #fff !important;
}
.solutions-blocks a:active,
.solutions-blocks a:focus,
.solutions-blocks a:hover {
	color: #00a0dc !important;
	cursor: pointer;
}
.solutions-block-black-no-bottom {
	padding-bottom: 0px !important;
}
.solutions-blocks [class^="vc_col-"], [class*=" vc_col-"] {
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}
.solutions-blocks .wpb_row{
	
}
.solutions-blocks p{
	color: #fff;
	line-height: 17px;
}
.solutions-blocks .subpage-title-h3{
	text-transform: uppercase;
	line-height: 22px !important;
}
.solutions-blocks img {
	display: block !important;
}

.solutions-blocks-text{
	padding: 30px;
	position: absolute;
    bottom: 0;
}
.solutions-blocks-text .solutions-block-iocn{
	padding-bottom: 20px;
}
.solutions-small-img {

}
.solutions-content-not-in-col, .solutions-content-not-in-col-big {
	position: relative;
}
.solutions-blocks-padding {
	padding-left: 4px !important;
	padding-right: 4px !important;
	padding-top: 4px !important;
	padding-bottom: 4px !important;
}
.solutions-block-paading-top {
	padding-top: 4px;
}
.solutions-block-paading-bottom {
	padding-bottom: 4px;
}
@media screen and (max-width: 1400px) {
	.solutions-blocks-text{
		padding: 18px;
	}
	.solutions-blocks p{
		font-size: 13px;
		margin: 0 0 5px 0;
	}
	.solutions-blocks .subpage-title-h3{
		font-size: 16px;
		margin: 0px;	
	}
}

.space-img-block {
	width: 100%;
}
.block-img-icon{
	position: absolute !important;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
/*===================================================================================*/
/*  wayfinding page                                                                  */
/*===================================================================================*/
.wayfinding-page .subpage-title-h2{
	margin: 0 0 38px 0;
}
.new22miles-mainbody-padding .subpage-wayfind-title {
	height: 386px;
}
.new22miles-mainbody-padding .subpage-wayfind-title .subpage-title-left {
	height: 240px !important;
}
.new22miles-mainbody-padding .subpage-wayfind-title .sub-parallax-bg-color{
	background: url(http://www.22miles.com/wp-content/uploads/2017/03/wayfind_title_bg.png) no-repeat;
	margin-left:1676px !important;
}
.wayfinding-video-div {
	margin-top: 120px !important;
	margin-bottom: 120px !important;
}

.subpage-wayfinding-blue{
	padding: 55px 0;
}
.subpage-wayfinding-blue .wpb_text_column p{
	font-family: 'PT Sans',Arial, sans-serif;
	font-size: 18px;
	color: #fff;
	font-weight: normal !important;
	
}
.new22miles-mainbody-padding .subpage-wayfinding-blue .sub-parallax-bg-color{
	background-color: #00a0dc;
	margin-left:-3676px !important;
}
.new22miles-mainbody-padding .subpage-wayfinding-gray .sub-parallax-bg-color{
	background-color: #f6f6f8;
	margin-left:-3676px !important;
}
.new22miles-mainbody-padding .subpage-wayfinding-black .sub-parallax-bg-color{
	background-color: #595959;
	margin-left:-3676px !important;
}
.new22miles-mainbody-padding .subpage-wayfinding-black-deep  .sub-parallax-bg-color{
	background-color: #161a1d;
	margin-left:-3676px !important;
}
.subpage-wayfinding-black-deep{
	padding: 80px 0px;
}
.subpage-wayfinding-black-deep .subpage-title-h2 h3{
	color: #fff !important;
}
.subpage-wayfinding-linepadding{
	padding: 96px 0px;
}
.subpage-wayfinding-black .subpage-title-h2 h3{
	color: #fff  !important;
}
.subpage-wayfinding-black{
	color: #fff  !important;
}
.wayfinding-page-big-line-height-li li{
	margin-bottom: 22px;
}
.wayfindind-page-padding-left{
	padding-left: 100px !important;
}
.wayfindind-page-padding-right{
	padding-right: 100px !important;
}

.subpage-wayfind-title .subpage-title-left {
	padding-left: 543px;
}

@media screen and (max-width: 1500px) {
	.new22miles-mainbody-padding .subpage-wayfind-title .subpage-title-left{
		height: 300px !important;	
	}
}
@media screen and (max-width: 1030px) {
	.subpage-wayfind-title .subpage-title-left {
		padding-left: 420px;
	}
	.new22miles-mainbody-padding .subpage-wayfind-title .subpage-title-left{
		height: 250px !important;	
	}
	.new22miles-mainbody-padding .subpage-wayfind-title .subpage-title-left .wpb_text_column {
		display: none;
	}
}
@media screen and (max-width: 800px) {
	.new22miles-mainbody-padding .subpage-wayfind-title .subpage-title-left .headline h3{
		text-align: right !important;
	}
	.new22miles-mainbody-padding .subpage-wayfind-title .subpage-title-left .wpb_raw_html{
		display: none;
	}
	.subpage-wayfind-title .subpage-title-left {
		padding-left: 0px;
	}	
}
/*===================================================================================*/
/*  digital reader boards page                                                       */
/*===================================================================================*/
.subpage-readboards-title {
	padding-top: 96px;
	padding-bottom: 40px;
}
.subpage-readboards-blue-light .sub-parallax-bg-color{
	background-color: #009edd;
	margin-left:-3676px !important;
}
.subpage-readboards-blue-dark .sub-parallax-bg-color{
	background-color: #00adef;
	margin-left:-3676px !important;
}
.subpage-readboards-black .sub-parallax-bg-color{
	background-color: #000000;
	margin-left:-3676px !important;
}
.subpage-readboards-gray-light .sub-parallax-bg-color{
	background-color: #f1f1f1;
	margin-left:-3676px !important;
}
.subpage-readboards-gray-dark .sub-parallax-bg-color{
	background-color: #595959;
	margin-left:-3676px !important;
}
.subpage-readboards-text-blue {
	
}


/*===================================================================================*/
/*  ariport transportation page                                                       */
/*===================================================================================*/
.subpage-airport-title .sub-parallax-bg-color{
	background: url(../images/new22miles/airport-title-bg.png) no-repeat;
	margin-left:1676px !important;
}
.subpage-airport-title {
	height: 469px
}
.subpage-airport-title .subpage-title-left {
	height: 220px;
}
.subpage-airport-title-icon {
	float: left;
    margin-right: 72px;
    margin-top: 35px;
}

/*===================================================================================*/
/*  content player apps                                                              */
/*===================================================================================*/
.subpage-content-player-app-title .sub-parallax-bg-color{
	background-color: #13acf1;
	margin-left:-3676px !important;
}
.subpage-content-player-app-title {
	height: 386px;
}
.subpage-content-player-app-title .subpage-title-left {
	height: 173px;
}
.custom-accordion {
        display: none;
}
@media (max-width: 800px){
	.custom-accordion {
        display: block;
    }
}

/*===================================================================================*/
/*  partners		                                                                 */
/*===================================================================================*/
.subpage-partners-title .sub-parallax-bg-color{
	background: url(../images/new22miles/partners-bg.png) no-repeat;
	margin-left:1676px !important;
}
.subpage-partners-title {
	height: 462px;
}
.subpage-partners-title .subpage-title-left {
	height: 163px;
}
.subpage-partners-form-bg .sub-parallax-bg-color{
	background-color: #00a0dc;
	margin-left:-3676px !important;
}
.contantc-partners table{
	width: 100%;
}
.contantc-partners table td{
	color: #fff;
	padding-top: 20px;
}
.contantc-partners p {
	margin: 0;
}
.contantc-partners input[type="text"], input[type="email"] {
	height: 36px;
	padding: 10px;
	font-size: 14px;
	line-height: 14px;
}
.contantc-partners textarea{
	height:246px !important;
}
.contantc-partners select{
	height:30px;
}

.contantc-partners .subpage-page-button:active,
.contantc-partners .subpage-page-button:focus,
.contantc-partners .subpage-page-button:hover, 
.contantc-partners input[type="submit"]:active,
.contantc-partners input[type="submit"]:focus,
.contantc-partners input[type="submit"]:hover{
	background-color: #fff !important;
	background: #fff !important;
	color: #00a0dc !important;
}
.contantc-partners .wpcf7 input[type="submit"]:hover{
	background-color: #fff !important;
}
.contantc-partners .your-ds-sales-input {
	width: 60% !important;
}
.contantc-partners .captcha-input {
	width: 30% !important;
}
.contantc-partners .wpcf7 input[type="submit"]{
	background: #00a0dc none repeat scroll 0 0;
    border: medium none;
    border-radius: 30px;
    box-shadow: none;
    color: #fff;
    height: auto;
    padding: 5px 30px;
    border-style: solid;
    border-width: 2px;
    border-color: #fff;
}
.contantc-partners .wpcf7 input[type="submit"]:hover{
	background-color: #fff !important;
	color: #00a0dc !important;
}


/*===================================================================================*/
/*  mobile web wayfinder                                                             */
/*===================================================================================*/
.subpage-mobile-web-wayfinder-title .sub-parallax-bg-color{
	background: url(http://www.22miles.com/wp-content/uploads/2017/03/mobile-web-bg.png) no-repeat;
	margin-left:1676px !important;
}
.subpage-mobile-web-wayfinder-title {
	height: 439px;
}
.subpage-mobile-web-wayfinder-title .Center-Container{
	height: 439px !important;
}
.subpage-mobile-web-wayfinder-title .subpage-title-left {
	height: 165px;
}
.mobile-content table{
	width: 100%;
}
.mobile-content table td{
	padding: 20px;
}
.left-mobile-gif {
	left: 0px;
    padding-top: 43px;
}
@media screen and (max-width: 1500px) {
	.left-mobile-gif {
		left: -70px;
	}
}
@media screen and (max-width: 1000px) {
	.left-mobile-gif {
		left: 0px;
	}
}
@media screen and (max-width: 600px) {
	.left-mobile-gif {
		width: 100% !important;
		text-align: center;
		left: 0px;
	}
	.right-mobile-text{
		background: #13acf1;
		width:100%  !important;
	}
}
/*===================================================================================*/
/*  mobile web wayfinder                                                             */
/*===================================================================================*/
.subpage-corporate-title .sub-parallax-bg-color{
	background: url(http://www.22miles.com/wp-content/uploads/2017/03/CORPORATE-ORGANIZATIONS-bg.png) no-repeat;
	margin-left:1676px !important;
}
.subpage-corporate-title {
	height: 386px;
}
.subpage-corporate-title {
	height: 380px; 
}
.subpage-corporate-title .subpage-title-left {
	height: 210px;
}

.mobile-gif-div {
	width: 257px;
    position: absolute !important;
    left: 1002px;
    bottom: 0px;
}
@media (min-width: 1200px){
	.subpage-corporate-title .vc_col-lg-8.applecation-title-col {
	    width: 76%;
	}
}
@media (min-width: 1600px){
.subpage-corporate-title .vc_col-lg-8.applecation-title-col {
    width: 64.666667%;
}
}

/*===================================================================================*/
/*  digital menu boards                                                             */
/*===================================================================================*/
.subpage-digimenuboards-title  .sub-parallax-bg-color{
	background: url(http://www.22miles.com/wp-content/uploads/2017/03/5.png) no-repeat;
	margin-left:1676px !important;
}
.subpage-digimenuboards-title {
	height: 386px;
}
.subpage-digimenuboards-title .subpage-title-left {
	height: 170px;
}


/*===================================================================================*/
/*  eventroom boards                                                             */
/*===================================================================================*/
.subpage-eventroom-title .sub-parallax-bg-color{
	background: url(http://www.22miles.com/wp-content/uploads/2017/03/subpage-event-boards-bg.png) no-repeat;
	margin-left:1676px !important;
}
.subpage-eventroom-title{
	height: 386px;
}

/*===================================================================================*/
/*  Staff Communication Displays                                                     */
/*===================================================================================*/
.subpage-staff-display-title .sub-parallax-bg-color{
	background: url(http://www.22miles.com/wp-content/uploads/2017/03/solutions-staff-gb.png) no-repeat;
	margin-left:1676px !important;
}
.subpage-staff-display-title{
	height: 386px;
}
@media (min-width: 1200px) {
	.vc_col-lg-8.subpage-staff-display-col {
		width: 90%;
	}
}
@media (min-width: 1550px) {
	.vc_col-lg-8.subpage-staff-display-col {
		width: 80%;
	}
}
@media (min-width: 1750px) {
	.vc_col-lg-8.subpage-staff-display-col {
		width: 66.66666667%;
	}
}

/*===================================================================================*/
/*  Video Walls / Touchscreen Video Walls                                            */
/*===================================================================================*/
.subpage-videowall-title .sub-parallax-bg-color{
	background: url(http://www.22miles.com/wp-content/uploads/2017/03/VIDEO-WALLS-TOUCHSCREEN-VIDEO-WALLS_bg.png) no-repeat;
	margin-left:1676px !important;
}

.subpage-videowall-title{
	height: 386px;
}
.subpage-videowall-flex-title  .sub-parallax-bg-color{
	background: url(../images/new22miles/video-wall-flex-bg.png) no-repeat;
	margin-left:1676px !important;
}
.subpage-videowall-flex-title {
	height: 497px;
}
@media screen and (max-width: 1600px) {
	.subpage-videowall-flex-title  .sub-parallax-bg-color {
		margin-left:1500px !important;
	}
}
@media screen and (max-width: 800px) {
	.subpage-videowall-flex-title  .sub-parallax-bg-color {
		background: #016896;
	}
}

/*===================================================================================*/
/*  Healthcare							                                             */
/*===================================================================================*/
.subpage-healthcare-title .sub-parallax-bg-color{
	background: url(http://www.22miles.com/wp-content/uploads/2017/03/solution-healthcare-bg.png) no-repeat;
	margin-left:1676px !important;
}
.subpage-healthcare-title {
	height: 386px;
}

/*===================================================================================*/
/*  Government							                                             */
/*===================================================================================*/
.subpage-government-title .sub-parallax-bg-color{
	background: url(http://www.22miles.com/wp-content/uploads/2017/08/1.png) no-repeat;
	margin-left:1676px !important;
}
.subpage-government-title {
	height: 469px;
}

/*===================================================================================*/
/*  interactive displays							                                 */
/*===================================================================================*/
.subpage-interactive-displays-title .sub-parallax-bg-color{
	background: url(http://www.22miles.com/wp-content/uploads/2017/03/INTERACTIVE-DISPLAYS-bg.png) no-repeat;
	margin-left:1676px !important;
}
.subpage-interactive-displays-title {
	height: 386px;
}

/*===================================================================================*/
/*  Education / University							                                 */
/*===================================================================================*/
.subpage-education-digital-wayfinding-title .sub-parallax-bg-color{
	background: url(http://www.22miles.com/wp-content/uploads/2017/03/education-digital-wayfinding-bg.png) no-repeat;
	margin-left:1676px !important;
}
.subpage-education-digital-wayfinding-title {
	height: 386px;
}
/*===================================================================================*/
/*  Hospitality						                                 */
/*===================================================================================*/
.subpage-hotel-hospitality-title .sub-parallax-bg-color{
	background: url(http://www.22miles.com/wp-content/uploads/2017/03/subpage-hotel-hospitality-title-bg.png) no-repeat;
	margin-left:1676px !important;
}
.subpage-hotel-hospitality-title {
	height: 386px;
}
/*===================================================================================*/
/*  Museums & Parks						                                 */
/*===================================================================================*/
.subpage-museums-parks-title .sub-parallax-bg-color{
	background: url(http://www.22miles.com/wp-content/uploads/2017/03/subpage-museums-parks-bg.png) no-repeat;
	margin-left:1676px !important;
}
.subpage-museums-parks-title {
	height: 386px;
}
/*===================================================================================*/
/*  Retail & Shopping Malls					                                 */
/*===================================================================================*/
.subpage-retail-shopping-malls-title .sub-parallax-bg-color{
	background: url(http://www.22miles.com/wp-content/uploads/2017/03/subpage-retail-shopping-malls-bg.png) no-repeat;
	margin-left:1676px !important;
}
.subpage-retail-shopping-malls-title {
	height: 260px;
}
.subpage-retail-shopping-malls-title .Center-Container.is-Table {
	height: 260px;
}
.subpage-retail-shopping-malls-title .headline h3 {
	text-align: center !important;
}
@media screen and (max-width: 1150px) {
	.subpage-retail-shopping-malls-title  h3 {
	    -webkit-text-shadow:0px 1px 20px #13acf0, 0px -1px 20px #13acf0, -1px 0px 20px #13acf0, 1px 0px 20px #13acf0;
	    -moz-text-shadow:0px 1px 20px #13acf0, 0px -1px 20px #13acf0, -1px 0px 20px #13acf0, 1px 0px 20px #13acf0;
	    text-shadow: 0px 1px 20px #13acf0, 0px -1px 20px #13acf0, -1px 0px 20px #13acf0, 1px 0px 20px #13acf0;
	    *filter: Glow(Color=#13acf0, Strength=20);  
	}
}

/*===================================================================================*/
/*  Signage Statistics					                                 */
/*===================================================================================*/
.subpage-digital-signage-analytic-module-title .sub-parallax-bg-color{
	background: url(../images/new22miles/subpage-digital-signage-analytic-module-bg.png) no-repeat;
	margin-left:1676px !important;
}
.subpage-digital-signage-analytic-module-title {
	height: 386px;
}
/*===================================================================================*/
/*  Signage Statistics					                                 */
/*===================================================================================*/
.subpage-donor-recognition-displays-title .sub-parallax-bg-color{
	background: url(http://www.22miles.com/wp-content/uploads/2017/03/subpage-donor-recognition-displays-bg.png) no-repeat;
	margin-left:1676px !important;
}
.subpage-donor-recognition-displays-title {
	height: 386px;
}

/*===================================================================================*/
/*  search-page					                                 */
/*===================================================================================*/
.search-page article .featured-image {
	width: 30%;
	float: left;
}
.search-page article header{
	width: 65%;
	float: left;
	padding-left: 40px;
}
.search-page article section{
	width: 65%;
	float: left;
	padding-left: 40px;
}
@media (max-width: 900px) {
	.search-page article section{width: 60%;}
	.search-page article header{width: 60%;}
}
@media (max-width: 500px) {
	.search-page article section{width: 100%;}
	.search-page article header{width: 100%;}
	.search-page article .featured-image {width: 100%;}
}
/*===================================================================================*/
/*  knowledge-base					                                 */
/*===================================================================================*/
.knowledge-base-videos .owl-carousel  .owl-item .item{
	padding-right:1px;
}
.knowledge-base-videos .owl-theme .owl-controls .owl-buttons div, .ajax-post-second-carousel .owl-theme .owl-controls .owl-buttons div{
	color: #fff;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	font-size: 14px;
	width:40px;
	height:40px;
	line-height:45px;
	-webkit-border-radius: 0%;
	-moz-border-radius: 0%;
	border-radius: 0%;
	background-color: rgba(0,0,0,0.7);
	border:none;
	text-align:center;
}
.knowledge-base-videos .owl-theme .owl-controls .owl-buttons .owl-next {
	margin-top: -35px;
	right: 1px;
}
.knowledge-base-videos .owl-theme .owl-controls .owl-buttons .owl-prev {
	margin-top: -35px;
	left: 1px;
}
.ajax-post-second-carousel .owl-theme .owl-controls .owl-buttons .owl-next {
	margin-top: -16px;
	right: 1px;
}
.ajax-post-second-carousel .owl-theme .owl-controls .owl-buttons .owl-prev {
	margin-top: -16px;
	left: 1px;
}
.ajax-post-second-carousel .owl-theme .owl-controls {
	margin-top: 0px;
}
.knowledge-base-videos .owl-theme .owl-controls .owl-buttons .owl-prev:before, .ajax-post-second-carousel .owl-theme .owl-controls .owl-buttons .owl-prev:before {
	font-size: 24px;

}
.knowledge-base-videos .owl-theme .owl-controls .owl-buttons .owl-next:before, .ajax-post-second-carousel .owl-theme .owl-controls .owl-buttons .owl-next:before {
	font-size: 24px;
}
.knowledge-base-title-head {
	background: #00a0dc;
    width: 167px;
    color: #fff;
    font-size: 25px;
    padding: 5px;
    text-align: center;
    margin:0;
}
.knowledge-base-title-head-big {
	width: 276px;
}
.knowledge-base-content .wpb_raw_html{
	margin-bottom: 0px;
}

.knowledge-base-content .list-table {
  background-color: #fff;
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.knowledge-base-content .list-table > thead > tr > th,
.knowledge-base-content .list-table > tbody > tr > th,
.knowledge-base-content .list-table > tfoot > tr > th,
.knowledge-base-content .list-table > thead > tr > td,
.knowledge-base-content .list-table > tbody > tr > td,
.knowledge-base-content .list-table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
}
.knowledge-base-content .list-table th {
    text-align: center !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}
.knowledge-base-content .list-table > thead > tr > th,
.knowledge-base-content .list-table > tbody > tr > th,
.knowledge-base-content .list-table > tfoot > tr > th,
.knowledge-base-content .list-table > thead > tr > td,
.knowledge-base-content .list-table > tbody > tr > td,
.knowledge-base-content .list-table > tfoot > tr > td {
  border: none;
  text-align:left;
}
.knowledge-base-content .list-table > tbody > tr > td.col-padding {
	background:#fff;
	padding:1px;
	border:none;
}
.knowledge-base-content .list-table > tbody > tr:nth-of-type(odd) {
	background-color: #eeeeee;
}
.knowledge-base-content .list-table > tbody > tr:nth-of-type(even) {
	background-color: #f9f9f9;
}
.knowledge-base-content .list-table > tbody > tr > td img{
	display: inline;
    vertical-align: middle;
    margin-right: 5px;
}
.knowledge-base-content .pdf-col-1 {
    width: 4%;
}
.knowledge-base-content .pdf-col-3 {
    width: 76%;
}
.knowledge-base-content .pdf-col-2 {
    width: 12%;
}
.ajax-post-first .summary{
	width:100%;
}  
.ajax-post-first section{
	position: absolute;
    bottom: 0px;
    color: #fff;
    font-size: 45px;
}
.ajax-post-first section h3{
    color: #fff;
    font-size: 40px;
    line-height: 46px;
    margin-bottom: 0px;
}
.ajax-post-first section .item-description{
	margin-bottom: 0px;
	padding: 30px;
	width: 100%;
	z-index: 50;
}
.ajax-post-second section{
	position: absolute;
    bottom: 0px;
}
.ajax-post-second section h3{
    color: #fff;
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 0px;
}
.ajax-post-second {
	height: 222px;
	overflow: hidden;
	width: 100% !important;
}
.ajax-post-second img {
	max-height: 221px !important;
}
.ajax-post-second section .item-description{
	margin-bottom: 0px;
	padding: 20px;
	z-index: 50;
}
.knowledge-base-content .portfolio-item{
	margin: 0 0 1px 0 !important;
		padding-right: 1px;
}
.knowledge-base-content .featured-image {
	margin: 0 !important;
}
.knowledge-base-content .readmore {
	position: relative;
	text-align: right;
	margin-top: 25px;
	margin-bottom: 25px;
	font-weight: bold;
}
.knowledge-base-content .readmore span:after {
	content: '\ea03';
    font-family: 'fontello';
    font-size: 16px;
    padding-left: 5px;
    line-height: 20px;
}
.knowledge-base-content .wp-post-image{
	position:relative;
}
.background-overlay {
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 16%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.5) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(16%,rgba(0,0,0,0)), color-stop(60%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.5))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 16%,rgba(0,0,0,0) 60%,rgba(0,0,0,0.5) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(0,0,0,0) 16%,rgba(0,0,0,0) 60%,rgba(0,0,0,0.5) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(0,0,0,0) 16%,rgba(0,0,0,0) 60%,rgba(0,0,0,0.5) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 16%,rgba(0,0,0,0) 60%,rgba(0,0,0,0.5) 100%);  /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#80000000',GradientType=0 ); /* IE6-9 */
    position: absolute;
    opacity: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    cursor: pointer;
}
@media (max-width: 600px) {
	.knowledge-base-content .list-table > tbody > tr > td {
		float: none !important;
	}
}

/*********owl******/
.wpb_gallery .flex-direction-nav .flex-prev {
	background-color: rgba(0,0,0,0.7) !important;
	border:none !important;
	border-radius: 0% !important;
	-webkit-border-radius: 0% !important;
	-moz-border-radius: 0% !important;
	left: -1px !important;
}
.flexslider:hover .flex-prev {
	left: -1px !important;
}

.wpb_gallery .flex-direction-nav a {
	width:45px !important;
	height:45px !important;
	color: #fff;
}
.wpb_gallery .flex-direction-nav .flex-next {
	background-color: rgba(0,0,0,0.7) !important;
	border:none !important;
	border-radius: 0% !important;
	-webkit-border-radius: 0% !important;
	-moz-border-radius: 0% !important;
	right: -1px !important;
}
.flexslider:hover .flex-next {
	right: -1px !important;
}


.last-blogs-body .featured-image {
	margin-bottom: 0px;
}
.last-blogs-body article {
	margin-bottom: 20px;
}
@media (max-width: 830px) {
.last-blogs-body .one_half, .one_half_last{
	width: 100%;
}
}
.last-blogs-body .one_half {
	margin-right: 0px;
}

/**********  gallery **********/
.gallery-loading-more {
    color: #000 !important;
    text-transform: none;
    font-size: 27px;
    padding: 10px 50px;
    width: 245px;
    line-height: 38px;
    margin: 0 auto !important;
    float: none;
}
.gallery-loading-more:hover {
	color: #fff !important;
}
.gallery-loading-more:hover span {
	background: url(../images/new22miles/view_more_active.png) no-repeat;
}
.gallery-loading-more span {
	background: url(../images/new22miles/view_more_normal.png) no-repeat;
    display: inline-block;
    width: 25px;
    height: 33px;
    vertical-align: text-bottom;
    margin-left: 20px;
}
/*********** mobile page *************/

.banner-play-video {
	background: url(http://www.22miles.com/wp-content/uploads/2017/03/12.png) no-repeat;
	padding: 26px 20px 24px 86px;
	font-size: 22px;
	color: #fff;
	line-height: 22px;
	width: 168px;
	cursor: pointer;
	margin-top: 30px;
}
.banner-play-video:hover {
	color: #d1c933;
}
.iframe-video{
	width: 70%;
    position: fixed !important;
    top: 100px;
    z-index: 999;
    padding: 10px;
    background-color: #000000;
    text-align: center;
}
.iframe-video-hidden {
	width: 70%;
    position: fixed !important;
    top: 100px;
    z-index: 999;
    padding: 10px;
    background-color: #000000;
    text-align: center;
    display: none;
}
.iframe-video-hidden-close-btn {
    font-size: 26px;
    -moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	opacity: 1.00;
	filter: Alpha(opacity=100);
	display: inline-block;
	font-family: FontAwesome !important;
	font-style: normal;
	font-weight: normal;
	line-height: 1 !important;
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
}
.iframe-video-hidden-close {
	background-color: #000000;
	border-radius: 16px;
	border: 2px none #FFFFFF;
	box-shadow: 0;
	color: #FFFFFF !important;
	height: 20px;
	font-size: 10px;
	right: -10px;
	top: -10px;
	width: 20px;
	-moz-box-sizing: content-box !important;
    box-sizing: content-box !important;
    cursor: pointer;
    display: table;
    line-height: 0;
    position: absolute;
    z-index: 11100;
    text-align: center;
}
.iframe-video-hidden-close-btn::before {
    content: "\f00d";
}
.iframe-video-hidden-close span {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	color: #fff !important;
}



/**********  gallery **********/

@media (max-width: 1700px) {
	.post-teaser .post-teaser-title h2 {
		font-size: 18px !important;
    	line-height: 24px !important;
	}
	.post-teaser-content {
		margin-top: 32px;
	}
	.post-teaser-content-text {
		height: 84px;
		overflow: hidden;
		display: block;
	}
}
@media (max-width: 1600px) {
	.text-block {padding-bottom: 20px !important}
	.product-content {padding: 50px 70px 30px 70px;}
	.product-content p.product-sub-text-2 {font-size: 22px;}
	.go_to_where {
	    width: 160px;
	    height: 160px;
	}
	
}
@media (max-width: 1400px) {
	.text-block {padding-bottom: 0px !important}
	.post-teaser .post-teaser-title h2 {
		font-size: 18px !important;
    	line-height: 20px !important;
	}
	.post-teaser-content {
		margin-top: 10px !important;
	}
	.post-teaser-content-text {
		height: 40px;
		overflow: hidden;
		display: block;
	}
	.product-content {padding: 50px 70px 30px 70px;padding-left:40px !important;}
	.product-icon .icon22miles-6x {font-size: 5em;}
}
@media (max-width: 1210px) {
	.product-content p.product-sub-text-2 {font-size: 18px;}
	.product-content p.product-sub-text-1 {font-size: 14px;margin-bottom: 20px;}
	.application-content .headline h3{font-size: 26px;line-height: 26px;}
	.application-left {
		padding-right: 15px !important;
	}
	.application-right {
		padding-left: 15px !important;
	}
	.application-content .headline {
		margin-top: 40px;
		margin-bottom: 30px;
	}
	.application-content {padding-left: 20px !important; padding-right: 20px !important; }
	.post-teaser-content-text {
		display:none;
	}
	
}
@media (min-width: 1200px) and (max-width: 1600px) {
	.application-header .application-header-text {padding: 20px 20px 20px 60px;}
}
@media (max-width: 1031px) {
	.new22miles-mainbody-padding {width: 90%}
}
@media (min-width: 1031px) and (max-width: 1200px) {
	.new22miles-mainbody-padding {width: 85%}
}
@media (max-width: 1100px) {
	.home-testimonials .testimonials span{width: 80%;}
	.text-block {width: 100% !important;padding-bottom: 10px !important; position: static  !important;;margin-top: 20px  !important;}
	.img-block {width: 100% !important;}
	.post-teaser-content-text {
		display:block;
	}
	.post-teaser .post-teaser-content {width: 100% !important}
}
@media (max-width: 1000px) {
	.client-say-title p {font-size: 30px;}
	.home-testimonials .testimonials h2 {font-size: 18px;}
	.product-icon .icon22miles-6x {font-size: 3em;}
	.product-content {padding: 15px 67px 22px 58px;padding-left: 30px !important;padding-right: 30px !important;}
	.product-content p.product-sub-text-2 {font-size: 14px;}
}
@media (max-width: 860px) {
	.application-header .application-header-text{width: 100%;padding: 20px 20px 20px 20px;}
}
@media (max-width: 850px) {
	#dp-footer1 {width: 100% !important; }
	#dp-footer2 {display: none !important;}
}
@media (max-width: 700px) {
	.go_to_where{display: none;}
	#back-to-top {	
		background: url(../images/back-top.png) no-repeat center center;
		background-color: rgb(22, 22, 21);
		background-color: rgba(22, 22, 21, 0.7);
		bottom: 56px;
		color: transparent;
		display: none;
		font: 0/0 a;
		height: 40px;
		position: fixed;
		right: 20px;
		text-shadow: none;
		-webkit-transition: all .2s ease;
		-moz-transition: all .2s ease;
		-ms-transition: all .2s ease;
		-o-transition: all .2s ease;
		transition: all .2s ease;
		width: 40px;
		z-index: 100;
		cursor:pointer;}
	.title_video_ZD {display: none;}
	.product-not-show-mobile {display: none;}
}
@media (max-width: 500px) {
	.application-header .application-header-text .wpb_text_column {display: none;}
	.application-header .headline h3{font-size: 30px;line-height: 26px;}
	.application-header {height: 180px;}
}
@media (min-width: 860px) and (max-width: 1200px) {
	.application-header .application-header-text{width: 60%;padding: 20px 20px 20px 10px;}
}

@media screen and (max-width: 680px) {
	.content .post-teaser-contarer{
		margin-top:0px !important;
	}
	.image_mb.show {
	    height: 500px !important;
	}
	.title_video_ZD {
		left: 10px;
	    background: none !important;
	}
	p.video_right_text_wayfind{
	    padding-left: 30px;
	    padding-top: 123px;
	    font-weight: bold;
	}
	p.video_right_text_others {
		padding-left: 30px;
	    padding-top: 70px;
	    font-weight: bold;
	}
}

@media screen and (max-width: 600px) {
	.tp-caption.get_it_now {
		display: none !important;
	}
	.get_it_now_mobile{display:block !important;visibility: visible;}
	.get_it_now_mobile a {color:#fff !important;}
	.tp-caption.black_text_more {
		display: none !important;
	}
	p.video_right_text_wayfind {
		font-size: 30px !important;
		padding-top: 10px !important;
		line-height: 32px !important;
	}
	p.video_right_text_others{
		font-size: 20px !important;
		padding-top: 10px !important;
	}
	.tp-caption.large_bg_black_video {
		left: 0px !important;
		background-color: rgba(0, 0, 0, 0)!important;
	}
	.post-teaser-contarer .post-teaser-wrapper {
		padding-right: 40px !important;
    		padding-left: 20px !important;
    		margin-top: 20px !important;
    		margin-bottom: 34px !important;
	}
	
	.post-teaser-contarer .post-teaser {
		
	}
	.post-teaser-contarer .post-teaser-title{margin-top: 0px !important;}
	.post-teaser-contarer .post-teaser-content-text{display:none;}
	.post-teaser-content .readon{margin-top: 0px !important;margin-bottom: 15px !important;}
	.vc_carousel .vc_carousel-indicators{margin-top: 0px !important;}
	.product-container-title p{    font-size: 30px !important;}
	.client-say-title p{line-height: 32px !important;}
	.home-testimonials .testimonials h2{font-size: 16px !important;margin-top: 10px !important;line-height: 18px !important;}
	.testimonials p{margin-top: 32p !importantx;}
	#dp-footer ul li{margin-right: 13px !important;}
	.js_product_sub_row_one_2 .product-sub-text-1 {display:none !important;}
	.subpage-applications-title .applications-header-p{display:none !important;}
	.subpage-applications-title .subpage-title-left {height: 40px !important;}
	.subpage-applications-title {height: 160px !important;}
	.content-manager-title .subpage-title-h1{display:none !important;}
	
	/*** common ***/
	.iframe-video-hidden { width: 87% !important;margin: 0 auto !important;}
	.content .subpage-title-h2 h3 {    font-size: 26px !important;line-height: 27px !important;}
	.content .wayfindind-page-padding-left{padding-left: 15px !important;}
	.content  .wayfindind-page-padding-right {padding-right: 15px !important;}
	.headline.subpage-title-h1 h3{font-size: 34px !important;line-height: 36px !important;}
	.subpage-wayfinding-linepadding {padding: 30px 0px; !important;}
	/*** subpage-partners-title ***/
	.subpage-partners-title .subpage-title-h1 h3 {font-size: 16px !important; line-height: 20px !important;}
	.sub-parallax-page .vc_custom_1485142981009{padding-top: 30px !important;}
	.vc_custom_1485142981009 .subpage-title-h2 h3 {font-size: 16px !important;line-height: 1.8 !important;}
	.wpb_row .vc_custom_1485143081675{padding-top: 30px !important;padding-bottom: 30px !important;}
	.wpb_row .vc_custom_1489041091853{padding-top: 0px !important;padding-bottom: 0px !important;}
	.subpage-partners-form-bg article section table td{    padding: 5px 0 5px 5px !important;}
	.subpage-partners-form-bg table td {padding-left: 10px!important;padding-right: 10px!important;}	
	#dp-mainbody .contantc-partners table{width:100% !important;}
	
	/*** content-player-app ***/
	.content .subpage-content-player-app-title{height: 602px;}
	.content .subpage-content-player-app-title .Center-Container.is-Table{height: 602px;}
	.content .vc_custom_1485139802937{padding-top: 20px !important;}
	
	/*** analytic-module ***/
	.content .subpage-digital-signage-analytic-module-title{height: 440px;}
	.content .subpage-digital-signage-analytic-module-title .Center-Container.is-Table{height: 440px;}
	.content .wayfinding-video-div{margin-top: 30px !important;}
	.content .vc_custom_1487751209780{    padding-top: 30px !important;}

	/*** video-walls-and-touchscreen-video-walls ***/
	.Video-Walls-hidden-p-mobile{display: none;}
	
	/*** event-room-boards ***/
	.content .subpage-eventroom-title .sub-parallax-bg-color{background-color: #13acf1;}
	.content .subpage-eventroom-title{height: 510px;background-color: #13acf1;}
	.content .subpage-eventroom-title .Center-Container.is-Table{height: 510px;}
	
	/*** donor-recognition-displays ***/
	.content .subpage-donor-recognition-displays-title .sub-parallax-bg-color{background-color: #13acf1;}
	.content .subpage-donor-recognition-displays-title{height: 466px;background-color: #13acf1;}
	.content .subpage-donor-recognition-displays-title .Center-Container.is-Table{height: 466px;}
	.content .vc_custom_1488272092427{    padding-top: 0px !important;  padding-bottom: 0px !important;}
	
	/*** donor-recognition-displays ***/
	.content .subpage-digimenuboards-title .sub-parallax-bg-color{background-color: #13acf1;}
	.content .subpage-digimenuboards-title{height: 550px;background-color: #13acf1;}
	.content .subpage-digimenuboards-title .Center-Container.is-Table{height: 550px;}
	.content .vc_custom_1484791264476{    padding-top: 30px !important;  padding-bottom: 30px !important;}
	
	/*** digital-staff-communication-displays ***/
	.content .subpage-staff-display-title .sub-parallax-bg-color{background-color: #13acf1;}
	.content .subpage-staff-display-title{height: 635px;background-color: #13acf1;}
	.content .subpage-staff-display-title .Center-Container.is-Table{height: 635px;}
	
	/*** airports-transportation ***/
	.content .subpage-airport-title-icon {width: 64px!important;margin-right: 30px!important;}
	
	/*** corporate-organization-digital-signage ***/
	.content .subpage-corporate-title .sub-parallax-bg-color{background-color: #13acf1;}
	.content .subpage-corporate-title{height: 520px;background-color: #13acf1;}
	.content .subpage-corporate-title .Center-Container.is-Table{height: 520px;}
	
	/*** education-digital-wayfinding ***/
	.content .subpage-education-digital-wayfinding-title .sub-parallax-bg-color{background-color: #13acf1;}
	.content .subpage-education-digital-wayfinding-title{height: 590px;background-color: #13acf1;}
	.content .subpage-education-digital-wayfinding-title .Center-Container.is-Table{height: 590px;}
	
	/*** hotel-hospitality ***/
	.content .subpage-hotel-hospitality-title .sub-parallax-bg-color{background-color: #13acf1;}
	.content .subpage-hotel-hospitality-title{height: 480px;background-color: #13acf1;}
	.content .subpage-hotel-hospitality-title .Center-Container.is-Table{height: 480px;}
	
	/*** museums-parks ***/
	.content .subpage-museums-parks-title .sub-parallax-bg-color{background-color: #13acf1;}
	.content .subpage-museums-parks-title{height: 630px;background-color: #13acf1;}
	.content .subpage-museums-parks-title .Center-Container.is-Table{height: 630px;}
	
	.solutions-blocks .digital-right-1-blank{display:none;visibility: hidden;}
	.solutions-blocks .solutions-block-gray-light-2 {height: 200px !important;}
	.solutions-blocks .digital-left-4-1 .product-black-img {display:none;visibility: hidden;}
	
	.featured-image-0 img{top: 0px !important;}
	.ajax-post-first section h3{font-size: 25px;line-height: 26px;}
	#dp-mainbody .knowledge-base-content table {width:100% !important;}

}   