/*

Theme Name:  Geib Industries Custom
Theme URI: http://www.cyberoptik.net
Description: Responsive Wordpress Theme created by CyberOptik
Version: 1.0
Author: CyberOptik
Author URI: http://www.cyberoptik.net

*/



/* STNDRD CSS FRAMEWORK */
@import url("css/framework/stndrd.min.css");

/* CUSTOMIZABLE MODULES */
@import url("css/stndrd-modules.css");

/* CUSTOMIZABLE MENUS */
@import url("css/stndrd-menus.css");

/* CUSTOMIZABLE TABLE STYLES */
@import url("css/stndrd-tables.css");

/* CUSTOMIZABLE FORM STYLES */
@import url("css/stndrd-forms.css");

/* VISUAL FORM BUILDER STYLES */
@import url("css/vfb-custom.css");

/* SPECIAL FONTS */
@import url("https://fonts.googleapis.com/css?family=Anton");


/*
 *
 * STNDRD THEME 2.1
 * CUSTOMIZABLE CSS
 *
 */
 
 
 
/*
 * 
 * TABLE OF CONTENTS:
 * -----------------------------------------------------------------------------
 *
 * 1 STRUCTURAL ELEMENTS
 *
 *   1.1 UNIVERSAL STYLES
 *   1.2 UNIVERSAL THEME MODULES
 *   1.3 BORDER STYLES
 *
 *
 * 2 CONTENT MODULES & STYLES
 *
 *   2.1 TEXT LINKS
 *   2.2 HEADINGS
 *   2.3 QUOTES
 *   2.4 DIVIDERS
 *   2.5 MEDIA MODULES & STYLES
 *   2.6 BUTTONS
 *   2.7 ICONS
 *
 *
 * 3 HEADER STYLES
 *
 *
 * 4 BODY STYLES
 *
 *
 * 5 CUSTOM TEMPLATE STYLES
 *
 *
 * 6 BLOG STYLES
 *
 *   6.1 UNIVERSAL BLOG STYLES
 *   6.2 BLOG POST STYLES
 *   6.3 POST NAVIGATION
 *   6.4 COMMENT
 *
 *
 * 7 FOOTER STYLES
 *
 * -----------------------------------------------------------------------------
 *
 */





/******************************************************************************
 * * *  1 STRUCTURAL ELEMENTS  * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  1.1 UNIVERSAL STYLES  ***/

html {font-size: 12px;}

body {
  line-height: 1.5em;
  font-family: 'Trebuchet MS', Arial, Verdana, Sans-Serif;
  color: #555;
  background: white;
}



/***  1.2 UNIVERSAL THEME MODULES  ***/

.container {
  display: block;
  width: 100%;
  max-width: 1100px; /* Set the maximum width of the website */
  padding: 0 50px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.container:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.section-centered {width: 80%;}

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

.container {padding: 0 25px;}

}

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

.container {padding: 0 15px;}

.section-centered {width: 100%;}

}

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

.container {padding: 0 10px;}

}


/***  1.3 BORDER STYLES  ***/

.border-all, 
.border-top, 
.border-bottom, 
.border-left, 
.border-right {
  border-style: dotted; /* Changes the default border style */
  border-color: #d2d2d2; /* Change the default border color */
}





/******************************************************************************
 * * *  2 CONTENT MODULES & STYLES  * * * * * * * * * * * * * * * * * * * * * *
 ******************************************************************************/



/***  2.1 TEXT LINKS  ***/

a {color: #0079c2;}

a:hover {color: #2498de;}

.content a, 
.sidebar a, 
.footer-top a, 
.footer a {text-decoration: underline;}



/***  2.2 HEADINGS  ***/

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  font-weight: 600;
  color: #444;
}

h1 {font-size: 2em;}

.page-title {
  padding-bottom: 20px;
  background: url(images/bg-page-title.png) bottom left no-repeat;
  font-family: 'Anton','Trebuchet MS',Arial,Sans-Serif;
  color: #0079c2;
}

h2 {font-size: 1.7em;}

h3 {font-size: 1.4em;}

h4 {font-size: 1.15em;}

h5 {font-size: 0.9em;}

h6 {font-size: 0.8em;}

.content .alignleft + h1, 
.content .alignleft + h2, 
.content .alignleft + h3, 
.content .alignleft + h4, 
.content .alignleft + h5, 
.content .alignleft + h6, 
.content .alignright + h1, 
.content .alignright + h2, 
.content .alignright + h3, 
.content .alignright + h4, 
.content .alignright + h5, 
.content .alignright + h6 {margin-top: 0.6em;}

.title {}



/***  2.3 QUOTES  ***/

blockquote {
  padding: 5px 0 5px 15px;
  border-left: 5px solid black;
  margin-left: 2em;
  line-height: 1.5em;
  font-size: 1.4em;
  font-style: italic;
  font-weight: normal;
  font-weight: 300;
}



/***  2.4 DIVIDERS  ***/

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px dotted #d2d2d2;
    margin: 2em 0;
    padding: 0;
	clear: both;
}



/***  2.5 MEDIA MODULES & STYLES  ***/


/*  Images  */

.content a img {opacity: 0.9;}

.content a:hover img {opacity: 1;}


/*  Video  */
.video {max-width: 700px;} /* Sets the max width for HTML5 and Youtube Videos */

.vjs-default-skin .vjs-play-progress,
.vjs-default-skin .vjs-volume-level {
  background-color: #418cbe; /* Sets HTML5 Video player theme color */
}



/***  2.6 BUTTONS  ***/

.button {
  padding: 8px 16px;
  border: 1px solid #03486F;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  font-weight: 600;
  color: white; /* Sets button text color */
  background: #3194D5;
  webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  text-decoration: none !important;
}

.button:hover {
  color: white; /* Sets button hover text color */
  background: #45a6d9; /* Sets button hover background color */
  text-decoration: none !important;
}



/***  2.7 ICONS  ***/

.icon {color: #45a6d9;}

a .icon {
  color: #3194D5;
  webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

a:hover .icon {color: #45a6d9;}


/*  Icon Backgrounds  */

.icon-bg {
  color: white;
  background-color: #45a6d9;
}

a .icon-bg {
  color: #eee;
  background-color: #3194D5;
}

a:hover .icon-bg {
  color: white;
  background-color: #45a6d9;
}


/*  Icon Borders  */

.icon-br {border-color: #45a6d9;}

a .icon-br {border-color: #3194D5;}

a:hover .icon-br {border-color: #45a6d9;}





/******************************************************************************
 * * *  3 HEADER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  HEADER TOP  ***/

.header-top {
  display: none;
  padding-top: 5px;
  padding-bottom: 5px;
  background: #02456e;
  text-align: center;
  font-size: 1.1em;
  color: white;
}

.header-top a {color: white;}

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

.header-top {display: block;}

}


/***  HEADER  ***/

.header {
  height: 100px;
  background: white url(images/bg-header.png) top center repeat-x;
}

.header-inner {
  position: relative;
  background: url(images/bg-header-info.png) top right no-repeat;
}

.header .col-custom {
  vertical-align: middle;
  width: 47.5%;
}

.logo, 
.logo-wrapper p {
  display: inline-block;
  vertical-align: middle;
}

.logo-wrapper p {
  padding-left: 1em;
  margin: 0;
  line-height: 1.4em;
  font-size: 1.5em;
}

.logo-wrapper p span {
  display: block;
  font-size: 1.5em;
  font-style: italic;
  font-weight: bold;
}

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

.header {
  height: auto;
}

.header-inner {background: none;}

.header .col-custom {
  display: block;
  width: 97.5%;
  height: auto;
}

.header .col-custom:last-child {display: none;}

.logo-wrapper {padding: 9px 0;}

.logo, 
.logo-wrapper p {
  display: block;
}

.logo {
  float: left;
  padding-right: 1em;
}

.logo-wrapper p:first-of-type {margin-top: 0.8em;}

.logo-wrapper p span {
  display: inline-block;
  font-size: 1em;
}

}

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

.logo img {max-width: 80%;}

.logo-wrapper p {display: none;}

}


/* Header Info */

.header-info {
  padding-right: 53px;
  text-align: right;
}

.header-info p {
  margin: 0;
  margin-top: 0.5em;
  font-size: 1.5em;
}

.header-info .menu li {padding: 4px 7px;}

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

.header-info {display: none;}

}


/* Header Buttons */

.header-buttons {
  display: none;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -18px;
  text-align: left;
}

.header-buttons a .icon {
  padding: 0.33em;
  font-size: 1.5em;
  color: #878787;
  background: rgba(0,0,0,0);
  cursor: pointer;
  cursor: hand;
}

.header-buttons a:hover .icon {
  color: #454545;
  background: rgba(0,0,0,0);
}

.header-buttons a.active .icon {
  color: white;
  background: #077cc2;
}

@media screen and (max-width: 1024px) {
	
.header-buttons {display: block;}

}


/***  NAV  ***/

.nav {
  background: rgb(2,122,194); /* Old browsers */
  background: -moz-linear-gradient(top,  rgba(2,122,194,1) 0%, rgba(30,109,157,1) 50%, rgba(2,80,127,1) 50%, rgba(2,69,110,1) 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(2,122,194,1)), color-stop(50%,rgba(30,109,157,1)), color-stop(50%,rgba(2,80,127,1)), color-stop(100%,rgba(2,69,110,1))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  rgba(2,122,194,1) 0%,rgba(30,109,157,1) 50%,rgba(2,80,127,1) 50%,rgba(2,69,110,1) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  rgba(2,122,194,1) 0%,rgba(30,109,157,1) 50%,rgba(2,80,127,1) 50%,rgba(2,69,110,1) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  rgba(2,122,194,1) 0%,rgba(30,109,157,1) 50%,rgba(2,80,127,1) 50%,rgba(2,69,110,1) 100%); /* IE10+ */
  background: linear-gradient(to bottom,  rgba(2,122,194,1) 0%,rgba(30,109,157,1) 50%,rgba(2,80,127,1) 50%,rgba(2,69,110,1) 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#027ac2', endColorstr='#02456e',GradientType=0 ); /* IE6-9 */
  box-shadow: 0 0 4px rgba(0,0,0,0.25);
  text-align: center;
}





/******************************************************************************
 * * *  4 BODY STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  BODY  ***/

.main {
  background: #f4f4f4 url(images/bg-main.png);
}

.main-inner {
  padding-top: 25px;
  padding-bottom: 65px;
  padding-left: 20px;
  padding-right: 20px;
  background: white;
}



/***  CONTENT  ***/

.content .section {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

.content .section:first-child {margin-top: 0;}

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

.content .row {
  margin-top: 1em;
  margin-bottom: 1em;
}

.content .row:first-child {margin-top: -0.5em;}

.content .row:last-child {margin-bottom: -0.5em;}

.content [class*="col-"] {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.content .pad-row [class*="col-"] {
  margin-top: 0;
  margin-bottom: 0;
}

.content .alignleft {margin: 0 20px 1em 0;}

.content .alignright {margin: 0 0 1em 20px;}

.content .center, 
.content .centered, 
.content .aligncenter, 
.content .align-center {
  margin-top: 1em;
  margin-bottom: 1em;
}

.content .center:first-child, 
.content .centered:first-child, 
.content .aligncenter:first-child, 
.content .align-center:first-child {margin-top: 0;}

.content .center:last-child, 
.content .centered:last-child, 
.content .aligncenter:last-child, 
.content .align-center:last-child {margin-bottom: 0;}

.section-image {
  margin-top: -50px !important;
  margin-bottom: -50px !important;
}

.slider .round {
  overflow: visible !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
}

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

.section-image {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

}



/***  SIDEBAR  ***/

.sidebar {}

.sidebar .sidebar-section, 
.sidebar .widget-area {margin: 2em 0;}

.sidebar .sidebar-section:first-child, 
.sidebar .widget-area:first-child {margin-top: 0;}

.sidebar .sidebar-section:last-child, 
.sidebar .widget-area:last-child {margin-bottom: 0;}

.sidebar h3 {margin-bottom: 0.5;}

.sidebar ul, 
.sidebar .menu{
  margin-left: 0;
  list-style: none;
}

.sidebar li, 
.sidebar .menu li {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  padding: 5px 0;
}

.sidebar li.current-menu-item > a, 
.sidebar .menu li.current-menu-item > a {font-weight: bold;}

.sidebar li ul {
  display: none;
  margin-top: 10px;
}

.sidebar li.current-menu-item ul, 
.sidebar .menu li.current-menu-item ul, 
.sidebar li.current-page-parent ul, 
.sidebar .menu li.current-page-parent ul, 
.sidebar li.current-menu-parent ul, 
.sidebar .menu li.current-menu-parent ul, 
.sidebar li.current-menu-ancestor ul, 
.sidebar .menu li.current-menu-ancestor ul, 
.sidebar li.current-page-ancestor ul, 
.sidebar .menu li.current-page-ancestor ul {display: block;}

.sidebar ul ul li, 
.sidebar .menu ul li {padding-left: 15px;}

.sidebar ul ul li:last-child, 
.sidebar .menu ul li:last-child {
  margin-bottom: -10px;
  border-bottom: none;
}

@media screen and (max-width: 900px) {
  
.sidebar {
  margin-top: 3em;
  padding: 50px;
  background: #f2f2f2;
}

}

@media screen and (max-width: 600px) {
  
.sidebar {
  padding: 25px;
}
  
}

@media screen and (max-width: 420px) {
  
.sidebar {
  padding: 15px;
}
  
}





/******************************************************************************
 * * *  5 CUSTOM TEMPLATE STYLES  * * * * * * * * * * * * * * * * * * * * * * *
 ******************************************************************************/



/***  SIDEBAR LEFT  ***/

.sidebar-left .content {float: right;}

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

.sidebar-left .content {float: none;}

}



/***  SIDEBAR BOTH  ***/

.sidebar-both .sidebar:nth-child(2) {float: left;}

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

.sidebar-both .sidebar:nth-child(2) {float: none;}

}



/***  FULL WIDTH  ***/

.full-width .section > .container {
  padding-left: 0;
  padding-right: 0;
}



/***  FULL WIDTH SECTIONS  ***/

.full-width-sections {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}





/******************************************************************************
 * * *  6 BLOG STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  6.1 UNIVERSAL BLOG STYLES  ***/

.blog {}

.blog-index {}

.blog-archive {}

.blog-search {}

.blog-single {}

.blog-sidebar {}

.blog-section {}



/***  6.2 BLOG POSTS  ***/

.blog-post {
  position: relative;
  margin-top: 4em !important;
  margin-bottom: 4em !important;
}

.blog-post:first-child {margin-top: 0 !important;}

.post-title {
  margin-top: 0;
  margin-bottom: 0.25em;
}

.post-title a:hover {text-decoration: none;}

.post-type {}

.post-thumb {
  display: block;
  margin: 0 auto 0.5em;
}

.post-content {margin-top: 2em !important;}

.post-excerpt {}

.post-comments {}


/**  Post Info  **/

.post-info {
  text-transform: uppercase;
  color: #999;
}

.post-author {}

p.post-info {margin-top: 0.5em;}

p.post-info span {margin-right: 10px;}

ul.post-info {
  display: none;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

ul.post-info li {}

ul.post-info li:first-child {padding-top: 0;}

ul.post-info li:last-child {border-bottom: none;}

ul.post-info .post-categories {display: none;}

ul.post-info .post-author-avatar {text-align: center;}

ul.post-info .post-date {
  text-transform: uppercase;
  font-size: 1.2em;
}

ul.post-info .post-date span {
  display: block;
  font-size: 2em;
  font-weight: bold;
}

.post-author-avatar, 
.post-author, 
.post-comment-count {display: none;}

@media screen and (max-width: 600px) {
	
p.post-info span {
  display: block;
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}

}



/***  6.3 POST NAVIGATION  ***/

.blog-posts-nav a:hover, 
.single-post-nav a:hover {
  background: #2ccbf9;
  color: white;
  text-decoration: none;
}



/***  6.4 COMMENTS  ***/

.comments {font-size: 0.9em;}

.comments ul {
  float: left;
  width: 100%;
  list-style: none;
}

.comments .avatar {display: none;}

.comments li {
  float: left;
  width: 100%;
  padding: 0;
  padding-bottom: 1.5em;
  border-bottom: 1px dotted #ccc;
  margin: 0;
  margin-bottom: 1.5em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: none;
}

.comments li ul li {
  padding: 0.5em 0 0.5em 40px;
  padding-left: 40px;
  border: 0;
  border-left: 10px solid #eee;
  margin: 0;
 }

.comments li ul li:nth-child(odd) {background: none;}

.comments a.url {font-weight: bold;}

.comments .reply {font-size: 0.8em;}

.comments time {font-size: 0.8em;}

.comments .reply-form {
  padding: 15px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  background: #f4f3f0;
}





/******************************************************************************
 * * *  7 FOOTER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  FOOTER TOP  ***/

.footer-top {margin-bottom: -38px;}

.footer-top-inner {
  position: relative;
  width: 90%;
  padding-top: 10px;
  border-bottom: 1px solid white;
  background: white;
}

.footer-top-inner:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 45px;
  background: url(images/bg-footer-top-left.png) top left no-repeat;
  content: '';
}

.footer-top-inner:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 45px;
  background: url(images/bg-footer-top-right.png) top right no-repeat;
  content: '';
  visibility: visible;
}

.footer-top p {
  padding-top: 5px;
  padding-bottom: 5px;
  margin-left: 3px;
  margin-right: 3px;
  background: rgb(2,122,194); /* Old browsers */
  background: -moz-linear-gradient(top,  rgba(2,122,194,1) 0%, rgba(30,109,157,1) 50%, rgba(2,80,127,1) 50%, rgba(2,69,110,1) 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(2,122,194,1)), color-stop(50%,rgba(30,109,157,1)), color-stop(50%,rgba(2,80,127,1)), color-stop(100%,rgba(2,69,110,1))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  rgba(2,122,194,1) 0%,rgba(30,109,157,1) 50%,rgba(2,80,127,1) 50%,rgba(2,69,110,1) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  rgba(2,122,194,1) 0%,rgba(30,109,157,1) 50%,rgba(2,80,127,1) 50%,rgba(2,69,110,1) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  rgba(2,122,194,1) 0%,rgba(30,109,157,1) 50%,rgba(2,80,127,1) 50%,rgba(2,69,110,1) 100%); /* IE10+ */
  background: linear-gradient(to bottom,  rgba(2,122,194,1) 0%,rgba(30,109,157,1) 50%,rgba(2,80,127,1) 50%,rgba(2,69,110,1) 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#027ac2', endColorstr='#02456e',GradientType=0 ); /* IE6-9 */
  box-shadow: 0 0 4px rgba(0,0,0,0.25);
  text-align: center;
  color: white;
}

.footer-top a {color: #d7e8f2;}

.footer-top a:hover {color: white;}

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

.footer-top-inner {width: 96%;}

}

/* Credits */

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

.footer-top .container {padding: 0;}

.footer-top-inner {width: 100%;}

.footer-top-inner:before, 
.footer-top-inner:after {display: none;}

.footer-top p {margin: 0;}

.copyright, 
.credits {display: block;}

}



/***  FOOTER  ***/

.footer {
  padding-top: 45px;
  padding-bottom: 65px;
  border-top: 1px solid white;
  box-shadow: 0 -1px 3px rgba(0,0,0,0.25);
  background: #f5f4f5 url(images/bg-footer.png) top center repeat-x;
  text-align: center;
}

.footer .section {
  margin-top: 1em;
  margin-bottom: 1em;
}

.footer .section:first-child {margin-top: 0;}

.footer .section:last-child {margin-bottom: 0;}

.footer .menu li:after {content: '|';}

.footer .menu li:last-child:after {content: '';}

.footer .menu li a {
  display: inline-block;
  padding-left: 4px;
  padding-right: 4px;
  color: #03456e;
}

.footer .menu li a:hover {color: #0c6297;}
 

/***  CUSTOM THEME STYLES  ***/


/* Intro */

.intro {
  position: relative;
  height: 340px;
  border: 1px solid #999;
  background: url(images/bg-hp-intro.png) center center no-repeat;
  background-size: cover;
  color: white;
}

.intro h1 {
  float: left;
  clear: both;
  padding: 28px 28px 28px 14px;
  -webkit-border-bottom-right-radius: 24px;
  -moz-border-bottom-right-radius: 24px;
  border-bottom-right-radius: 24px;
  margin-bottom: 2em;
  background: rgba(255, 255, 255, 0.75);
  letter-spacing: -1px;
  font-family: 'Anton','Trebuchet MS',Arial,Sans-Serif;
  font-size: 3.25em;
  color: #0079c2;
  text-shadow: -1px -1px 1px #fff;
}

.intro p {
  float: left;
  clear: both;
  padding: 6px 14px 6px 100px;
  margin: 2px 0;
  border: 1px solid #0F92D8;
  background: rgb(0,102,161); /* Old browsers */
  background: -moz-linear-gradient(top,  rgba(0,102,161,1) 0%, rgba(1,119,193,1) 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,102,161,1)), color-stop(100%,rgba(1,119,193,1))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  rgba(0,102,161,1) 0%,rgba(1,119,193,1) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  rgba(0,102,161,1) 0%,rgba(1,119,193,1) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  rgba(0,102,161,1) 0%,rgba(1,119,193,1) 100%); /* IE10+ */
  background: linear-gradient(to bottom,  rgba(0,102,161,1) 0%,rgba(1,119,193,1) 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0066a1', endColorstr='#0177c1',GradientType=0 ); /* IE6-9 */
  box-shadow: 6px 4px 6px rgba(0,0,0,0.6);
  font-size: 1.2em;
}

.intro p:first-of-type {padding-left: 140px;}

.intro p:nth-of-type(2) {padding-left: 120px;}

.intro p:last-of-type {margin-bottom: 1.5em;}

.intro-cta {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 341px;
  height: 224px;
  padding: 125px 20px 0 60px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: url(images/bg-hp-intro-cta.png) bottom right no-repeat;
  text-align: right;
  color: #575757;
}

.intro-cta h3 {
  font-family: 'Anton', 'Trebuchet MS', Arial, Sans-Serif;
  letter-spacing: -1px;
  font-size: 1.8em;
  text-shadow: -1px -1px 1px #fff;
}

.intro-cta span, 
.intro-cta a {display: block;}

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

.intro {
  height: 200px;
  margin-bottom: 6em !important;
}

.intro-cta {
  bottom: auto;
  top: 100%;
  display: block;
  height: auto;
  width: 100%;
  padding: 1em 20px;
  background: rgb(210,210,210); /* Old browsers */
  background: -moz-linear-gradient(top,  rgba(210,210,210,1) 0%, rgba(226,226,226,1) 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(210,210,210,1)), color-stop(100%,rgba(226,226,226,1))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  rgba(210,210,210,1) 0%,rgba(226,226,226,1) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  rgba(210,210,210,1) 0%,rgba(226,226,226,1) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  rgba(210,210,210,1) 0%,rgba(226,226,226,1) 100%); /* IE10+ */
  background: linear-gradient(to bottom,  rgba(210,210,210,1) 0%,rgba(226,226,226,1) 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d2d2d2', endColorstr='#e2e2e2',GradientType=0 ); /* IE6-9 */
  text-align: center;
}

.intro-cta span, 
.intro-cta a {display: inline;}

}

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

.intro {
  height: 160px;
  background-position: center right;}

.intro h1, 
.intro p {
  float: none;
  text-align: center;
}

.intro h1 {
  padding: 20px 10px;
  -webkit-border-bottom-right-radius: 0;
  -moz-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
}

.intro-cta h3 {font-size: 1.4em;}

.intro p, 
.intro p:first-of-type, 
.intro p:nth-of-type(2), 
.intro p:last-of-type {
  padding-left: 14px;
  box-shadow: none;
}

.intro-cta span {display: block;}

}

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

.intro-cta a {display: block;}

}


/* Home */

.hp-product-imgs {
  padding: 20px 8px;
  background: #e2e2e2;
  text-align: center;
}

.hp-product-imgs img {padding: 5px;}


/* Products & Services */

.product-icons {text-align: center;}

.product-icons p {margin: 0.5em 0;}

.product-icons p:first-child {margin-top: 0;}

.product-icons p:last-child {margin-bottom: 0;}

.product-icons img {
  display: inline-block;
  vertical-align: middle;
  padding: 0 5px;
}


/* Industries Served */

.industries-served [class*="col-"] {
  padding: 12px;
  border: 1px solid #cfcfcf;
  background: #eee;
  text-align: center;
}

.industries-served h3 {
  margin: 0;
  font-family: 'Anton','Trebuchet MS',Arial,Sans-Serif;
  color: #5c5c5c;
  font-size: 1.5em;
}


/* Resource Center */

.resource-center [class*="col-"] {
  padding: 8px;
  border: 1px solid #cfcfcf;
  box-shadow: 1px 1px 0 1px rgba(0,0,0,0.3);
  text-align: center;
}

.resource-center h3 {
  margin: 0;
  font-family: 'Anton','Trebuchet MS',Arial,Sans-Serif;
  font-size: 1.4em;
}

.resource-center a {text-decoration: none;}

.video-cols [class*="col-"] {
  padding: 5px;
  margin-bottom: 2em;
}

.brightcove-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}

.BrightcoveExperience {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.download-table td:first-child {text-align: center;}


/* Contact Page */

.visual-form-builder-container {margin-top: -1.5em;}

.page-id-17 .sidebar-section:last-child {display: none;}

.page-id-17 .directions-link {display: none;}



/* Products Services Page */

.page-id-8 .page-title {font-size: 2.3em;}

.page-id-8 .content {font-size: 1.1em;}


/*
 *
 * END OF
 * STNDRD THEME 2.1
 * CUSTOMIZABLE CSS
 *
 */

/***ADDED CODES****/
.intro-cta h3{color: #fff;text-shadow: 1px 1px 1px rgba(44,44,44, 1);letter-spacing: -0.05em;font-family: 'Roboto Condensed', sans-serif;}
.intro-cta h3 span{text-transform:uppercase;}
.footer-inner ul.sub-menu{display:none;}

.footer-inner div{font-size:14px;}
.intro-cta{background: url('/wp-content/uploads/2015/12/bg-hp-intro-cta-3.png') bottom right no-repeat;}
.intro{background:url('/wp-content/uploads/2015/11/bg-hp-intro-new.png') center center no-repeat;background-size:cover;}

.page-id-13 .hidden_resourcepage{display:none;}

@media only screen and ( max-width: 900px ) {
.intro-cta{background-color:#0079c2;}
}

#tpbr_box{cursor:pointer;line-height: 24px !important;padding: 5px 20px 5px !important;}
#tpbr_box:hover{text-decoration:underline !important;}
#tpbr_box a{color:#fff !Important;}