/*
  Theme Name: bonzai
  Theme URI:
  Author: DViO Digital
  Author URI:
  Description: Custom theme developed for Bonzai Digital
  Version: 0.1
  Text Domain: bonzai
*/
@charset "utf-8";

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{font-size: 100%;font: inherit;padding: 0;border: 0;margin: 0;vertical-align: baseline}body{line-height: 1}ol,ul{list-style: none}blockquote,q{quotes: none}blockquote:before,blockquote:after,q:before,q:after{content: '';content: none}table{border-collapse: collapse;border-spacing: 0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display: block}.clear{clear: both}.screen-reader-text{clip: rect(1px, 1px, 1px, 1px);position: absolute !important}

/************* Hover Effects **************/
/* Shrink */
.hvr-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}

.hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}

.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* Radial In */
.hvr-radial-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  background: #4d8400;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  overflow: hidden;
}

.hvr-radial-in:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 100%;
  -webkit-transform: scale(2);
  transform: scale(2);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-radial-in:hover, .hvr-radial-in:focus, .hvr-radial-in:active {
  color: white;
}
.hvr-radial-in:hover:before, .hvr-radial-in:focus:before, .hvr-radial-in:active:before {
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* Float Shadow */
.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
.hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* move the element up by 5px */;
}
.hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}

/* Sweep To Right */
.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  overflow: hidden;
}
.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #4d8400;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
  color: white;
}
.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.section-top-shadow{
	position: relative;
	overflow: hidden;
}
.section-top-shadow:before{
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    box-shadow: 0px 0 15px rgb(0 0 0 / 20%);
    z-index: 100;
}

.carrer-wraper .form-wraper {
  display: none;
}
.carrer-wraper .subtitle {
  font-family: 'ProximaNovaA-Regular';
  font-size: 20px;
  line-height: 1.4em;
  color: #273747;
  margin-top: 20px;
}
.carrer-wraper .form-wraper.active {
  display: block;
}
.carrer-wraper .filter-wraper select {
  width: 300px;
  max-width: 100%;
  height: 40px;
  margin: 10px 0 60px 0;
}
.carrer-wraper input, .carrer-wraper textarea, .carrer-wraper select {
  padding: 5px;
}
.carrer-wraper .form-wraper label{
  width: 100%;
  height: 80px;
}
.carrer-wraper .form-wraper input, .carrer-wraper .form-wraper textarea, .carrer-wraper .form-wraper select {
  width: 100%;
  height: 40px;
}
.carrer-wraper .form-wraper input[type="checkbox"]{
  font-size: ;
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  margin-right: 5px;
}
.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok{
  display: none;
  visibility: hidden;
}
.wpcf7-acceptance{
  font-size: 14px;
  line-height: 22px;
}
.wpcf7-acceptance a{
  color: #4d8400;
}
.wpcf7-acceptance label{
  height: auto!important;
}
.carrer-wraper .form-wraper textarea{
  height: 150px;
}
.carrer-wraper .form-wraper input[type="submit"]{
	margin: 30px;
	max-width: 200px;
	color: #4d8400;
	background: transparent!important;
	border: 2px solid #4d8400;
	border-radius: 10px;
}


/* CSS Document */
@font-face {
  font-family: 'ProximaNovaT-Thin';
  src: url('css/fonts/ProximaNovaT-Thin.eot?#iefix') format('embedded-opentype'),
      url('css/fonts/ProximaNovaT-Thin.woff') format('woff'),
      url('css/fonts/ProximaNovaT-Thin.ttf') format('truetype'),
      url('css/fonts/ProximaNovaT-Thin.svg#ProximaNovaT-Thin') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'ProximaNovaA-Regular';
  src: url('css/fonts/ProximaNovaA-Regular.eot?#iefix') format('embedded-opentype'),
      url('css/fonts/ProximaNovaA-Regular.woff') format('woff'),
      url('css/fonts/ProximaNovaA-Regular.ttf')  format('truetype'),
      url('css/fonts/ProximaNovaA-Regular.svg#ProximaNovaA-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'ProximaNova-Semibold';
  src: url('css/fonts/ProximaNova-Semibold.eot?#iefix') format('embedded-opentype'),
      url('css/fonts/ProximaNova-Semibold.woff') format('woff'),
      url('css/fonts/ProximaNova-Semibold.ttf')  format('truetype'),
      url('css/fonts/ProximaNova-Semibold.svg#ProximaNova-Semibold') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'ProximaNovaA-Bold';
  src: url('css/fonts/ProximaNovaA-Bold.eot?#iefix') format('embedded-opentype'),
      url('css/fonts/ProximaNovaA-Bold.woff') format('woff'),
      url('css/fonts/ProximaNovaA-Bold.ttf')  format('truetype'),
      url('css/fonts/ProximaNovaA-Bold.svg#ProximaNovaA-Bold') format('svg');
  font-weight: normal;
  font-style: normal;
}
body{
  font-family: 'ProximaNovaA-Regular';
  font-size: 14px;
  color: #273747;
  line-height: 1.7;
  min-height: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  padding-top: 80px;
  overflow-x: hidden!important;
  position: relative;
  right: 0;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  transition: all 500ms ease;
}
body.push-left{
  right: 300px;
}
body.push-left header.navbar-default.navbar.sticky{
  right: 300px;
  left: auto;
}
img{
  max-width: 100%;
  height: auto;
}
h1, h2{
  line-height: 1.2em;
}
.navbar-brand{
  padding: 0;
  padding-top: 4px;
}
.navbar-brand img{
	width: 120px;
	height: auto;
}
/*button.close{
  display: none;
}*/
button.close{
  font-size: 50px;
  line-height: 28px;
  color: #273747;
  vertical-align: middle;
  outline: none;
  display: inline-block;
  opacity: 1;
}
button.close:hover, button.close:focus{
  opacity: 1;
}
button.close span{
  color: #273747;
  line-height: 28px;
  vertical-align: middle;
  display: inline-block;
}
.entry-content{
  font-family: 'ProximaNovaA-Regular';
  padding-top: 50px;
  padding-bottom: 30px;
  font-size: 16px;
}
/*.entry-content h1{
  font-family: 'ProximaNovaA-Bold';
  font-size: 28px;
  line-height: 40px;
  margin: 0;
}*/
.entry-content h2{
  font-family: 'ProximaNova-Semibold';
  font-size: 34px;
  line-height: 40px;
  margin: 10px 0;
}
.entry-content h3{
  font-family: 'ProximaNova-Semibold';
  font-size: 18px;
  line-height: 24px;
  margin: 10px 0;
}
.entry-content p{
  margin-bottom: 20px;
}
b, strong{
  font-family: 'ProximaNova-Semibold';
}
.no-padding{
  padding-left: 0;
  padding-right: 0;
}
.no-margin{
  margin-left: 0;
  margin-right: 0;
}
.gap{
  margin-top: 15px;
  margin-bottom: 15px;
}
.no-scroll{
  overflow: hidden;
}
ul{
  padding: 0;
  margin: 0;
  list-style-type: none;
}
a, a:hover, a:focus, a:visited, a:active{
  text-decoration: none;
}
a:hover, a:focus{
  color: #4d8400;
}
a.highlighted-button{
  display: inline-block;
  font-family: 'ProximaNova-Semibold';
  font-size: 12px;
  font-size: 12px;
  color: #4d8400;
  padding: 3px 20px;
  border: 2px solid #4d8400;
  border-radius: 10px;
  text-transform: uppercase;
  margin-top: 30px;
  overflow: hidden;
}
a.btn-darkgreen{
    color: #fff;
    background: #4d8400;
    border-radius: 10px;
    padding: 9px 20px;
    font-size: 15px;
    letter-spacing: 1px;
    margin-top: 30px;
    margin-right: 15px;
    text-transform: uppercase;
}
a.btn-lightgreen{
	background: transparent;
	color: #4d8400;
    border: 2px solid #4d8400;
    border-radius: 10px;
    padding: 7px 18px;
    font-size: 15px;
    letter-spacing: 1px;
    margin-right: 15px;
    margin-top: 30px;
    text-transform: uppercase;
}
.btn-group--inline a.highlighted-button {
    margin: 0 20px;
    padding: 5px 50px 3px 50px;
    font-size: 16px;
    margin-bottom: 20px;
    min-width: 180px;
}

.swiper-container-brands{
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.spacer30{
  padding: 30px;
}
.spacer20{
  padding: 20px;
}
.spacer10{
  padding: 10px;
}
.entry-title{
  font-family: 'ProximaNovaA-Bold';
  font-size: 40px;
  color: #273747;
  text-align: center;
}
.custom-top-bottom-green, .custom-top-bottom-red, .custom-top-bottom-blue,
.custom-top-green, .custom-bottom-green,
.custom-top-red, .custom-bottom-red,
.custom-top-blue, .custom-bottom-blue,
.custom-top-cyan, .custom-bottom-cyan,
.custom-top-yellow, .custom-bottom-yellow{
  position: relative;
}
.custom-top-bottom-green:before{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50px;
  background: url(images/green-top.png) repeat-x top left;
  z-index: -1;
}
.custom-top-bottom-green:after{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  background: url(images/green-bottom.png) repeat-x bottom left;
  z-index: -1;
}
.custom-top-green:before{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50px;
  /*background: -moz-linear-gradient(to top, transparent, #ecf4e6 100%);
  background: -webkit-linear-gradient(to top, transparent, #ecf4e6 100%);
  background: linear-gradient(to top, transparent, #ecf4e6 100%);*/
  background: url(images/green-top.png) repeat-x top left;
  z-index: -1;
}
.custom-bottom-green:after{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  /*background: -moz-linear-gradient(to bottom, transparent, #ecf4e6 100%);
  background: -webkit-linear-gradient(to bottom, transparent, #ecf4e6 100%);
  background: linear-gradient(to bottom, transparent, #ecf4e6 100%);*/
  background: url(images/green-bottom.png) repeat-x bottom left;
  z-index: -1;
}

.custom-top-bottom-red:before{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50px;
  /*background: -moz-linear-gradient(to top, transparent, #f7dbd2 100%);
  background: -webkit-linear-gradient(to top, transparent, #f7dbd2 100%);
  background: linear-gradient(to top, transparent, #f7dbd2 100%);*/
  background: url(images/red-top.png) repeat-x top left;
  z-index: -1;
  opacity: 0.3;
}
.custom-top-bottom-red:after{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  /*background: -moz-linear-gradient(to bottom, transparent, #f7dbd2 100%);
  background: -webkit-linear-gradient(to bottom, transparent, #f7dbd2 100%);
  background: linear-gradient(to bottom, transparent, #f7dbd2 100%);*/
  background: url(images/red-bottom.png) repeat-x bottom left;
  z-index: -1;
  opacity: 0.3;
}
.custom-top-red:before{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50px;
  /*background: -moz-linear-gradient(to top, transparent, #f7dbd2 100%);
  background: -webkit-linear-gradient(to top, transparent, #f7dbd2 100%);
  background: linear-gradient(to top, transparent, #f7dbd2 100%);*/
  background: url(images/red-top.png) repeat-x top left;
  z-index: -1;
  opacity: 0.3;
}
.custom-bottom-red:after{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  /*background: -moz-linear-gradient(to bottom, transparent, #f7dbd2 100%);
  background: -webkit-linear-gradient(to bottom, transparent, #f7dbd2 100%);
  background: linear-gradient(to bottom, transparent, #f7dbd2 100%);*/
  background: url(images/red-bottom.png) repeat-x bottom left;
  z-index: -1;
  opacity: 0.3;
}

.custom-top-bottom-blue:before{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50px;
  /*background: -moz-linear-gradient(to top, transparent, #E0EAF6 100%);
  background: -webkit-linear-gradient(to top, transparent, #E0EAF6 100%);
  background: linear-gradient(to top, transparent, #E0EAF6 100%);*/
  background: url(images/blue-top.png) repeat-x top left;
  z-index: -1;
}
.custom-top-bottom-blue:after{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  /*background: -moz-linear-gradient(to bottom, transparent, #E0EAF6 100%);
  background: -webkit-linear-gradient(to bottom, transparent, #E0EAF6 100%);
  background: linear-gradient(to bottom, transparent, #E0EAF6 100%);*/
  background: url(images/blue-bottom.png) repeat-x bottom left;
  z-index: -1;
}
.custom-top-blue:before{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50px;
  /*background: -moz-linear-gradient(to top, transparent, #E0EAF6 100%);
  background: -webkit-linear-gradient(to top, transparent, #E0EAF6 100%);
  background: linear-gradient(to top, transparent, #E0EAF6 100%);*/
  background: url(images/blue-top.png) repeat-x top left;
  z-index: -1;
}
.custom-bottom-blue:after{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  z-index: -1;
  /*background: -moz-linear-gradient(to bottom, transparent, #E0EAF6 100%);
  background: -webkit-linear-gradient(to bottom, transparent, #E0EAF6 100%);
  background: linear-gradient(to bottom, transparent, #E0EAF6 100%);*/
  background: url(images/blue-bottom.png) repeat-x bottom left;
  z-index: -1;
}
.custom-top-cyan:before{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50px;
  /*background: -moz-linear-gradient(to top, transparent, #AED7D7 100%);
  background: -webkit-linear-gradient(to top, transparent, #AED7D7 100%);
  background: linear-gradient(to top, transparent, #AED7D7 100%);*/
  /*background: -moz-linear-gradient(top, rgba(174,215,215,1) 0%, rgba(0,0,0,0) 100%);
  background: -webkit-linear-gradient(top, rgba(174,215,215,1) 0%,rgba(0,0,0,0) 100%);
  background: linear-gradient(to bottom, rgba(174,215,215,1) 0%,rgba(0,0,0,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#aed7d7', endColorstr='#00000000',GradientType=0 );*/
  background: url(images/cyan-top.png) repeat-x top left;
  z-index: -1;
  opacity: 0.5;
}
.custom-bottom-cyan:after{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  /*background: -moz-linear-gradient(to bottom, transparent, #AED7D7 100%);
  background: -webkit-linear-gradient(to bottom, transparent, #AED7D7 100%);
  background: linear-gradient(to bottom, transparent, #AED7D7 100%);*/
  /*background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(174,215,215,1) 100%);
  background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(174,215,215,1) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(174,215,215,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#aed7d7',GradientType=0 );*/
  background: url(images/cyan-bottom.png) repeat-x bottom left;
  z-index: -1;
  opacity: 0.5;
}

.custom-top-yellow:before{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50px;
  /*background: -moz-linear-gradient(to top, transparent, #f9f4dc 100%);
  background: -webkit-linear-gradient(to top, transparent, #f9f4dc 100%);
  background: linear-gradient(to top, transparent, #f9f4dc 100%);*/
  /*background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(249,244,220,1) 100%);
  background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(249,244,220,1) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(249,244,220,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#f9f4dc',GradientType=0 );*/
  background: url(images/yellow-top.png) repeat-x top left;
  opacity: 0.5;
}
.custom-bottom-yellow:after{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  /*background: -moz-linear-gradient(to bottom, transparent, #f9f4dc 100%);
  background: -webkit-linear-gradient(to bottom, transparent, #f9f4dc 100%);
  background: linear-gradient(to bottom, transparent, #f9f4dc 100%);*/
  background: url(images/yellow-bottom.png) repeat-x bottom left;
  z-index: -1;
  opacity: 0.5;
}
/*.breadcrumbs{
  color: #959595;
  padding: 25px 0;
    font-size: 20px;
    font-weight: 500;
}
.breadcrumbs a{
  color: #959595;
}
.breadcrumbs .currentbreadcrumb{
  color: #3c448e;
}*/
.border-small-right{
  text-align: right;
}
.border-small-right span{
  width: 50px;
  display: inline-block;
  border: 1px solid #4d8400;
}
span.wpcf7-list-item{
  margin-left: 0;
}
/*****************404 Page Start**********************/
.invalidpage{
  height: 500px;
  padding-bottom: 25px;
  padding-top: 100px;
}
.invalidpage h1{
  font-size: 100px;
}
.invalidpage h2{
  font-size: 40px;
}
/*****************404 Page End**********************/

/******Header Styling Start******/
.header-outer{
	position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	transition: all 400ms ease;
	background: transparent;
}
body.sticky-header .header-outer{
	background: #fff;
	position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
	-webkit-box-shadow: 0 1px 10px 0px #aaa;
	-moz-box-shadow: 0 1px 10px 0px #aaa;
	box-shadow: 0 1px 10px 0px #aaa;
}
body.sticky-header.admin-bar .header-outer{
	top: 32px;
}
header{
  padding: 15px 0 12px;
}
.logo-outer{
  padding-left: 50px;
}
#menu-header-menu-right>li{
  display: inline-block;
  position: relative;
}
#menu-header-menu-right>li>a{
  display: block;
  font-family: 'ProximaNova-Semibold';
  font-size: 14px;
  color: #273747;
  padding: 10px 15px;
  text-transform: uppercase;
}
#menu-header-menu-right>li>a:hover{
  color: #4d8400;
}
#menu-header-menu-right>li.highlighted-menu>a{
  color: #fff;
  background: #4d8400;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 15px;
  letter-spacing: 1px;
  margin-left: 15px;
}
.header-menu-right{
  text-align: right;
}
.header-menu-right nav{
  display: inline-block;
  padding-right: 50px;
}
.navbar-toggle{
  float: none;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 5px;
  vertical-align: middle;
}
.navbar-toggle .icon-bar{
  background: #273747;
  width: 30px;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  transition: all 400ms ease;
}
.navbar-toggle .icon-bar+.icon-bar {
  margin-top: 6px;
}
/******** Navbar Icon-bar Animation *********/
.navbar-toggle .top-bar {
  transform: rotate(45deg);
  transform-origin: 6px 0px;
}
.navbar-toggle .middle-bar {
  opacity: 0;
}
.navbar-toggle .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 0px 0px;
}
.navbar-toggle.collapsed .top-bar {
  transform: rotate(0);
}
.navbar-toggle.collapsed .middle-bar {
  opacity: 1;
}
.navbar-toggle.collapsed .bottom-bar {
  transform: rotate(0);
}
/******* Sliding Navs ******/
.navbar-collapse{
  display: block!important;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  width: 280px;
  text-align: left;
  visibility: visible!important;
  padding: 50px!important;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 9999;
}
.admin-bar .navbar-collapse{
  top: 32px;
}
.nav .open>a, .nav .open>a:hover, .nav .open>a:focus{
  background: transparent;
}
.navbar-collapse.collapse{
  overflow-y: auto!important;
  right: -280px;
  height: 100%!important;
  z-index: 999999;
}
.navbar-collapse.collapsing{
  height: 100%!important;
  right: -280px;
}
.navbar-collapse.open{
  right: 0;
}
.navigation li a{
  display: block;
  font-family: 'ProximaNovaA-Regular';
  list-style-type: none;
  padding: 15px 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  color: #273747;
  text-align: right;
  text-shadow: none;
  text-decoration: none !important;
  text-shadow: 0px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  transition: all 500ms ease;
}
.navigation ul li:first-child a{
  border-top: 0;
}
.navigation ul li a:hover,
.navigation ul li a:focus{
  color: #222;
  background: transparent;
  border-radius: 0px;
}
/*.navigation ul li a:hover{
  padding-left: 20px;
}*/
.navigation ul li.active a,
.navigation ul li.active a:hover,
.navigation ul li.active a:focus{
  color: #f1f1f1;
  background: transparent;
  border-radius: 0px;
}
.navigation li.menu-item-has-children>a{
  position: relative;
}
.navigation li.menu-item-has-children>a:after{
  content: "\f107";
  font: normal normal normal 16px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  margin-left: 10px;
  color: #8c8c8c;
}
.navigation li.menu-item-has-children.open>a:after{
  content: "\f106";
}
.navbar-collapse .menu:hover > li {
  opacity: 0.5;
}
.navbar-collapse .menu:hover li:hover {
  opacity: 1;
}
.slidemenu-address{
  text-align: right;
  margin-top: 50px;
  color: #8c8c8c;
  font-size: 16px;
}
.slidemenu-address h3{
  font-family: 'ProximaNova-Semibold';
}
.slidemenu-contact{
  margin-top: 20px;
  text-align: right;
  //color: #727d86;
  color: #8c8c8c;
}
.slidemenu-contact a{
  display: block;
  color: #8c8c8c;
}
.slidemenu-contact a:hover{
  color: #273747;
}
/******Header Styling END******/
/******Top Header Submenu Styling******/
#menu-header-menu-right.menu .sub-menu{
	position: absolute;
	text-align: left;
	z-index: 5;
	padding: 10px 20px;
	min-width: 200px;
	background: #f1f1f1;
	-webkit-box-shadow: 4px 4px 10px 1px #ddd;
    -moz-box-shadow: 4px 4px 10px 1px #ddd;
    box-shadow: 4px 4px 10px 1px #ddd;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top: 4px solid #4d8400;
}
#menu-header-menu-right.menu .sub-menu li a{
  text-align: left;
  font-family: 'ProximaNova-Semibold';
  font-size: 14px;
  padding: 6px 0;
}
#menu-header-menu-right>li:hover .sub-menu{
  display: block;
}

/******Side Submenu Styling******/
.navbar-collapse::-webkit-scrollbar {
  width: 5px;
}
.navbar-collapse::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px rgba(255,255,255,0.5);
  -moz-box-shadow: inset 0 0 4px rgba(255,255,255,0.5);
  box-shadow: inset 0 0 4px rgba(255,255,255,0.5);
}
.navbar-collapse::-webkit-scrollbar-thumb {
  background-color: #ddd;
  outline: 1px solid slategrey;
}
.menu .sub-menu{
  display: none;
  padding: 0 0 15px 0px;
}
.menu .sub-menu li a{
  font-family: 'ProximaNovaA-Regular';
  display: block;
  font-size: 14px;
  line-height: 20px;
  padding: 5px 0;
  text-align: right;
  word-wrap: break-word;
}
.menu .sub-menu li.current-menu-item>a{
  color: #4d8400;
}
.menu .sub-menu li:hover > a{
  color: #4d8400;
  /*padding-left: 15px;*/
}
.menu .sub-menu li:hover:before, .sub-menu li.active:hover:before{
  color: #333;
}
.menu .sub-menu li.active:hover > a{
  color: #4d8400;
}
.menu .sub-menu li.active > a{
  color: #4d8400;
}
.menu .sub-menu li.has_children:before{
  content: "\f105";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 20px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 10px;
  z-index: 10;
}

/******Header Styling End******/

/******Home page Styling Start******/
span.border{
  width: 150px;
  display: block;
  text-align: center;
  border: 1px solid #4d8400;
  background: #4d8400;
  margin: 30px auto;
}
.homebanner img{
  width: 100%;
  display: block;
}
.homebanner-copy{
  position: absolute;
  top: 20%;
  left: 0;
  z-index: 2;
}
.homebanner-copy-inner{
  padding-left: 65px;
}
.homebanner-copy h1, .homebanner-copy h2,
.banner-wrap h1, .banner-wrap h2{
  font-family: 'ProximaNovaA-Bold';
  font-size: 48px;
  color: #273747;
}
.homebanner-copy p, .banner-wrap p{
  font-family: 'ProximaNovaA-Regular';
  font-size: 22px;
  color: #273747;
  margin-top: 15px;
}
.banner-wrap {
  padding-top: 40px;
  padding-bottom: 60px;
}
.banner-wrap .banner-inner{
  padding-left: 55px;
}
.banner-content{
  padding-top: 9%;
}
.home .banner-content{
  padding-top: 7%;
}
.homebanner-copy .highImpact-banner h1{
  color: #ffffff;
  text-align: center;
}
.homebanner-copy .highImpact-banner h2{
  color: #ffffff;
  text-align: center;
}
.home-smarter,
.home-faster,
.home-better{
  padding: 70px 0;
}
.home-smarter h2,
.home-faster h2,
.home-better h2{
  //font-family: 'ProximaNovaA-Bold';
  font-size: 40px;
  color: #273747;
  text-align: center;
}
.home-smarter h3,
.home-faster h3,
.home-better h3{
  font-family: 'ProximaNovaA-Bold';
  font-size: 30px;
  line-height: 40px;
  color: #273747;
  margin-bottom: 20px;
}
.production-subtitle{
  font-family: 'ProximaNova-Semibold';
  font-size: 22px;
  line-height: 40px;
  margin-bottom: 30px;
  color: #273747;
}
.production-subtitle span{
  color: #4d8400;
}
.production-icon-list p.production-list-title,
.alternate_image_text_section h4{
  font-family: 'ProximaNova-Semibold';
  font-size: 22px;
  line-height: 34px;
  margin-bottom: 20px;
  color: #273747;
}
.production-icon-list p, .alternate_image_text_section li{
  font-size: 18px;
  line-height: 20px;
  position: relative;
  margin-bottom: 20px;
  clear: both;
}
.alternate_image_text_section li{
  font-size: 20px;
  line-height: 24px;
  padding-left: 30px;
  font-family: 'ProximaNovaT-Thin';
}
.alternate_image_text_section li:before{
  content: "\f111";
  position: absolute;
  top: 5px;
  left: 0;
  display: inline-block;
  font: normal normal normal 12px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #4d8400;
}
.alternate_image_text_section img{
	display: block;
	margin: 0 auto;
}
.production-icon-list > p > img{
  float: left;
  margin-bottom: 20px;
  margin-right: 20px;
  vertical-align: middle;
}
.solutions-case-section{
  background: #273747;
  padding-top: 20px;
  color: #fff;
}
.solutions-case-section .cont-section{
  padding-top: 60px;
  padding-bottom: 30px;
}
.solutions-case-section h2{
  font-family: 'ProximaNovaA-Regular';
  font-size: 40px;
  line-height: 1.4em;
}
.home-smarter--extended h4 {
  font-family: 'ProximaNovaA-Regular';
  font-size: 20px;
  line-height: 1.4em;
}

.home-smarter-inner{
  margin-bottom: 60px;
  margin-top: 60px;
}
.home-smarter-inner .imagediv{
  position: relative;
}
.home-smarter-inner .video-bg{
  position: absolute;
  top: 0;
  left: 0;
  right: 30px;
  display: block;
  border-radius: 20px;
  z-index: 1;
}
.home-smarter-inner video{
  -webkit-box-shadow: 4px 4px 10px 1px #ddd;
  -moz-box-shadow: 4px 4px 10px 1px #ddd;
  box-shadow: 4px 4px 10px 1px #ddd;
  border-radius: 20px;
  display: block;
  position: relative;
  margin-top: 53px;
  margin-left: 38px;
  z-index: 2;
}
.home-smarter--extended .home-smarter-inner video {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    margin: 0;

    background: url(images/macbook-vd.png) center center no-repeat;
    background-size: contain;
    padding: 13% 12% 14.5%;
    min-height: 512px;
    max-height: 512px;
}

.home-smarter--extended .home-smarter-inner img {
    /* -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    margin: 0; */

    background: url(images/macbook-vd.png) center center no-repeat;
    background-size: contain;
    padding: 12% 12% 13.33%;
    margin: 0;
    min-height: 512px;
    max-height: 512px;
}

.home-smarter--extended .home-smarter-inner .vid-container {

}

.home-smarter--extended .home-smarter-inner .contdiv {
    padding: 50px 25px 50px 0px;
}

.home-smarter-inner .contdiv{
  padding: 50px 25px 50px 50px;
  font-size: 16px;
  font-family: 'ProximaNovaA-Regular';
}
.home-smarter-inner .video-fluid{
  width: 100%;
}
.home-partner{
  padding: 50px 0 70px;
  text-align: center;
}
.home-partner h2{
  font-family: 'ProximaNovaA-Bold';
  font-size: 50px;
  color: #273747;
  text-align: center;
}
.home-partner-inner{
  display: block;
  -webkit-box-shadow: 4px 4px 10px 1px #ddd;
  -moz-box-shadow: 4px 4px 10px 1px #ddd;
  box-shadow: 4px 4px 10px 1px #ddd;
  border-radius: 20px;
  background: #fff;
  font-size: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}
.home-partner-inner:hover{
  -webkit-box-shadow: 5px 5px 20px 2px #aaa;
  -moz-box-shadow: 5px 5px 20px 2px #aaa;
  box-shadow: 5px 5px 20px 2px #aaa;
  color: #273747;
}
.home-partner-inner span,
.home-partner-inner img{
  display: block;
}
.home-partner-inner span.p_title{
  font-family: 'ProximaNovaA-Bold';
  font-size: 30px;
  line-height: 40px;
  color: #273747;
  margin-bottom: 10px;
}
.home-partner-inner span.p_cont{
  font-family: 'ProximaNovaA-Regular';
  padding: 20px;
  font-size: 16px;
  color: #273747;
}
.partner-section-slider img{
	margin: 20px;
	width: auto;
	height: 24px;
}
.partner-section-slider h2{
	font-family: 'ProximaNovaA-Bold';
    font-size: 50px;
    color: #273747;
    text-align: center;
}
.homebrands, .partnersection2_agencies{
  padding: 30px 0;
  background: #f4f4f5;
  text-align: center;
}
.partner-section-slider{
  padding: 30px 0;
  text-align: center;
}
.homesection3, .homesection4{
  padding: 50px 0;
}
.homesection3{
	//background: linear-gradient(#E0EAF6, #fff, #fff, #fff, #fff, #E0EAF6);
}
.homesection4{
  /*background-image: linear-gradient(bottom, #E0EAF6 0, #fff 20%);
  background-image: -moz-linear-gradient(bottom, #E0EAF6 0, #fff 20%);
  background-image: -webkit-linear-gradient(bottom, #E0EAF6 0, #fff 20%);*/
}
.homesection4 .imagediv img{
  width: 100px;
  height: auto;
}
.homesection3-inner video{
  -webkit-box-shadow: 4px 4px 10px 1px #ddd;
  -moz-box-shadow: 4px 4px 10px 1px #ddd;
  box-shadow: 4px 4px 10px 1px #ddd;
  border-radius: 10px;
}
.homesection3 h2, .homesection4 h2,  .homesection5 h2{
  font-family: 'ProximaNovaA-Regular';
  font-size: 40px;
  color: #273747;
  text-align: center;
}
.homesection3 h3, .homesection4 h3{
  font-family: 'ProximaNovaA-Bold';
  font-size: 18px;
  color: #273747;
  margin-bottom: 20px;
}
.homesection3 h3{
  font-size: 22px;
}
.homesection3 div, .homesection4 div{
  font-size: 16px;
  line-height: 24px;
}
.homesection3-inner{
  margin-bottom: 50px;
  margin-top: 50px;
}
.homesection3-inner .contdiv{
    margin-top: 40px;
}
.homesection4-inner{
  margin-bottom: 30px;
  margin-top: 30px;
}
.homesection3 .imagediv img{
  width: 100%;
  -webkit-box-shadow: 5px 7px 15px 3px rgba(0,0,0,0.2);
  -moz-box-shadow: 5px 7px 15px 3px rgba(0,0,0,0.2);
  box-shadow: 5px 7px 15px 3px rgba(0,0,0,0.2);
  border-radius: 10px;
}
.homesection4{
  text-align: center;
}
.homesection4-inner>div{
  padding: 0 25px;
}
.homesection4-element{
  padding: 22px;
  -webkit-box-shadow: 4px 4px 10px 2px #ddd;
  -moz-box-shadow: 4px 4px 10px 2px #ddd;
  box-shadow: 4px 4px 10px 2px #ddd;
  border-radius: 10px;
  background: #fff;
}
.homesection4 h3{
  margin: 10px 0 20px;
}
.home-casestudies{
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}
.home-casestudies.similar-casestudies h2{
  //font-family: 'ProximaNovaA-Bold';
  font-size: 50px;
  color: #fff;
  text-align: center;
}
.home-casestudies h5{
  font-family: 'ProximaNova-Semibold';
  font-size: 22px;
  line-height: 40px;
  margin-bottom: 30px;
  color: #273747;
}
.clients-section{
	background: #273747;
	padding-top: 50px;
	padding-bottom: 50px;
	text-align: center;
}
.clients-section h2{
  font-size: 40px;
  color: #fff!important;
  text-align: center;
}
.clients-section .client-element{
	display: inline-block;
	padding: 30px 10px;
  width: 280px;
}
.partner-section-title{
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: 'ProximaNova-Semibold';
  font-size: 22px;
  //color: #727d86;
}
.owl-carousel .owl-stage{
  margin: 0 auto;
}
.homesection5{
  padding: 50px 0;
}
/*.partnersec2_age_testimonials .owl-nav{
  display: none;
}*/
#partners-slider.owl-carousel .owl-item img,
#partners-page-slider.owl-carousel .owl-item img{
  padding: 0 10px;
}
#testimonial-slider{
  //box-shadow: 2px 4px 20px 9px #f1f7ed;
}
.testimonial-element{
	text-align: center;
	padding: 60px;
	-webkit-box-shadow: 1px 1px 12px 5px #ddd;
	-moz-box-shadow: 1px 1px 12px 5px #ddd;
	box-shadow: 1px 1px 12px 5px #ddd;
	border-radius: 20px;
	background: #fff;
}
.testimonial-icon{
  display: block;
  margin-bottom: 10px;
}
.testimonial-cont{
  font-family: 'ProximaNovaA-Regular';
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 28px;
}
.testimonial-name{
  font-family: 'ProximaNovaA-Regular';
  font-size: 14px;
  line-height: 22px;
  color: #273747;
}
.testimonial-name span{
  display: block;
}
#testimonial-slider .owl-item{
	padding: 15px;
}
#testimonial-slider img{
  margin-top: 30px;
	margin-bottom: 5px;
	max-width: 80px;
  border-radius: 50%;
}
.owl-carousel .owl-item img{
  width: auto;
  margin: 10px auto;
}
.owl-nav .owl-prev,
.owl-nav .owl-next{
  display: inline-block;
  position: absolute;
  top: 40%;
  color: #4d8400;
  border: 1px solid #4d8400;
  border-radius: 50%;
  padding: 2px;
}
.owl-prev{
  left: -10px;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover{
  color: #fff;
  background: #4d8400;
}
.owl-nav .owl-prev i,
.owl-nav .owl-next i{
  display: inline-block;
  text-align: center;
  font-size: 40px;
  width: 40px;
  height: 40px;
}
.owl-next{
  right: -10px;
  display: inline-block;
}
.owl-dots {
  text-align: center;
}
.owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}
.owl-dots .owl-dot span {
  width: 20px;
  height: 6px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
}
.owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #4d8400;
}
#testimonial-slider .owl-dots .owl-dot span,
#agency-works-slider .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
}
.works-slider-title{
  font-family: 'ProximaNovaA-Regular';
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: -20px;
}
/*.partnersec2_age_testimonials .owl-dots{
  display: none!important;
}*/

/******Home page Styling End******/
/******About page Styling Start******/
.about-content{
	font-family: 'ProximaNovaA-Regular';
  font-size: 20px;
  line-height: 1.4em;
  //color: #727d86;
}
.team-member{
  overflow: hidden;
  margin-bottom: 30px;
    position: relative;
}
.team-member .team-cont{
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0;
  text-align: left;
  font-family: 'ProximaNovaA-Regular';
	bottom: -100%;
	padding: 10px;
	color: #f1f1f1;
	background: rgba(0,0,0,0.6);
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	transition: all 500ms ease;
}
.team-member .team-cont h3{
	font-family: 'ProximaNova-Semibold';
	color: #fff;
}
.team-member .team-cont a{
	//font-size: ;
	display: inline-block;
	color: #f1f1f1;
}
/*.team-member .team-cont > div{
	border-left: 3px solid #fff;
	padding-left: 10px;
}*/
.team-member .team-cont img{
	width: 100%;
/*
	-webkit-transition: -webkit-transform 0.4s;
	-moz-transition: -moz-transform 0.4s;
	-o-transition: -o-transform 0.4s;
	transition: transform 0.4s;
	z-index: 2;
	position: relative;*/
}
.team-member:hover > img{
	/*-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);*/
}
.team-member .team-cont span{
	display: block;
}
.team-member:hover .team-cont{
	bottom: 0;
}
.about-post .about-cont{
  font-family: 'ProximaNovaA-Regular';
  margin-top: 30px;
  font-size: 20px;
  line-height: 1.4em;
  //color: #727d86;
}
.custom-section .about-cont h3{
  font-family: 'ProximaNova-Semibold';
  font-size: 22px;
  line-height: 1.4em;
  margin-bottom: 20px;
  color: #273747;
}


/******About page Styling End******/
/******Platform page Styling Start******/
.platformbanner,
.partnerbanner{
  text-align: center;
}
.platformbanner .laptop-background{
  margin-bottom: -100px;
  position: relative;
  z-index: 2;
}
.platformbanner h1,
.partnerbanner h1,
.featured-showcase h1{
  font-family: 'ProximaNovaA-Bold';
  font-size: 40px;
  line-height: 1.4em;
  color: #273747;
  text-align: center;
}
.platformbanner h2,
.partnerbanner h2{
	font-family: 'ProximaNovaA-Regular';
  font-size: 20px;
  line-height: 1.4em;
  color: #273747;
  margin-top: 20px;
}

.platformsection2{
  padding-top: 70px;
  padding-bottom: 70px;
}
.platformsection3,
.platformsection4{
  padding-top: 50px;
  padding-bottom: 70px;
}
.platformsection2{
  //background: linear-gradient(#E0EAF6, #fff, #fff, #fff, #fff, #E0EAF6);
}
.platformsection2 h2,
.platformsection3 h2,
.platformsection4 h2{
  font-family: 'ProximaNovaA-Bold';
  font-size: 40px;
  color: #273747;
  text-align: center;
}
.platformsection2 h3,
.platformsection3 h3,
.platformsection4 h3{
  margin-bottom: 20px;
  text-align: center;
  font-size: 20px;
  color: #273747;
}
.platformsection3,
.platformsection4{
  //background: linear-gradient(#fff, #fff, #E0EAF6);
}
.platformsection3-inner{
  font-size: 20px;
  line-height: 26px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.platformsection3-inner .platformsection3-element{
	padding: 30px;
    -webkit-box-shadow: 4px 4px 10px 2px #ddd;
    -moz-box-shadow: 4px 4px 10px 2px #ddd;
    box-shadow: 4px 4px 10px 2px #ddd;
    border-radius: 10px;
    background: #fff;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 30px;
}
.platformsection3-inner .platformsection3-element h3{
	margin: 10px 0 20px;
    font-family: 'ProximaNovaA-Bold';
    font-size: 18px;
    color: #273747;
}
.platformsection3-element img{
	width: 70px;
	height: auto;
}
.platformsection4 .tab-cnt-wrp img{
  width: 600px;
  margin-bottom: 0;
}
.platformsection4 .steps{
  margin: 20px 0 30px;
}
.nav-tabs{
  text-align: center;
  border: 0px;
  margin-top: 50px;
}
.nav-tabs li{
  float: none;
  margin-bottom: 0;
  display: inline-block;
}
.nav-tabs li.active{
  margin-bottom: 0;
}
.nav-tabs li a{
  position: relative;
  border: 0px;
  font-family: 'ProximaNova-Semibold';
  font-size: 20px;
  line-height: 1.4em;
  color: #273747;
  background: transparent;
  padding: 0 20px;
  text-transform: uppercase;
}
.nav-tabs li a:before{
  position: absolute;
  left: -1px;
  top: 5px;
  content: "";
  height: 14px;
  width: 2px;
  display: inline-block;
  vertical-align: middle;
  background: #ccc;
}
.nav-tabs.vid-text--nav li a:before {
    position: absolute;
    left: -1px;
    top: 5px;
    content: "";
    height: 10px;
    width: 2px;
    display: inline-block;
    vertical-align: middle;
    background: #ccc;
}

.nav-tabs li:first-child a:before{
  display: none;
}

.nav-tabs.vid-text--nav li:first-child a:before{
  display: none;
}
.nav>li>a:hover, .nav>li>a:focus{
	background: transparent;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus{
	cursor: default;
    background-color: transparent;
    border: none;
    border-bottom-color: transparent;
  color: #4d8400;
}
.nav-tabs li.active a{
  border: 0px;
  color: #4d8400;
  background: transparent;
}

.vid-text--nav {
    margin-top: 0;
    top: -50px;
    z-index: 11;
    position: relative;
}

 .vid-text--nav-mobile {
     top: 10px;
 }

.vid-text--nav li a{
    font-size: 14px;
}

.tab-cnt-wrp img, .tab-cnt-wrp .img{
  display: none;
  margin: 20px auto;
  //box-shadow: 5px 7px 15px 3px rgba(0,0,0,0.2);
  //border-radius: 3px;
}
.tab-cnt-wrp .active, .tab-cnt-wrp .img.active{
  display: block;
}
.tab-cnt-content{
  font-size: 18px;
  line-height: 1.6em;
  text-align: center;
}
.tab-cnt-content img, .tab-cnt-content iframe, .tab-cnt-wrp iframe,
.tab-cnt-content video, .tab-cnt-wrp video{
  margin: 20px auto;
  display: block;
}
.tab-cnt-content video, .video-fluid{
  width: 500px;
  max-width: 100%;
}

.tab-cnt-content.tab-content--mobile video {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    margin: 0;

    background: url(images/iphone.png) center center no-repeat;
    background-size: contain;
    padding: 6.6% 3% 7% 3%;
    /* position: absolute;
    top: 0;
    left: 0;
    right: 0; */
    margin: 0 auto;
    width: 242px;
    height: 420px;
    overflow-x: hidden;
    z-index: 2;
    min-height: 420px;
    max-height: 420px;
}

.tab-cnt-content.tab-content--mobile img {
    background: url(images/iphone.png) center center no-repeat;
    background-size: contain;
    padding: 6.6% 4.3% 7%;
    /* position: absolute;
    top: 0;
    left: 0;
    right: 0; */
    margin: 0 auto;
    width: 242px;
    height: 420px;
    overflow-x: hidden;
    z-index: 2;
    min-height: 420px;
    max-height: 420px;
}
.steps{
  margin: 40px 0;
}
.steps .step{
  position: relative;
  font-size: 14px;
  font-family: 'ProximaNovaA-Regular';
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
}
.steps .step.active{
  -webkit-box-shadow: 5px 7px 15px 3px rgba(0,0,0,0.2);
  -moz-box-shadow: 5px 7px 15px 3px rgba(0,0,0,0.2);
  box-shadow: 5px 7px 15px 3px rgba(0,0,0,0.2);
  background: #fff;
}
/*.steps .step.active:before{
  content: "";
  display: inline-block;
  position: absolute;
  top: -18px;
  border-bottom: 18px solid #fff;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;

  right: auto;
  left: 45%;
}*/
.steps .step h3{
  font-family: 'ProximaNova-Semibold';
  font-size: 18px;
  line-height: 1.4em;
  color: #273747;
  text-align: left;
  margin: 0 0 10px;
}
/*.steps .step1:before{
  right: 20px;
  left: auto;
}
.steps .step2:before,
.steps .step3:before{
  right: auto;
  left: 45%;
}
.steps .step4:before{
  left: 20px;
  right: auto;
}*/

/******Platform page Styling End******/

/******Partners page Styling Start******/
.partnerbanner .laptop-background{
	margin-top: 20px;
	margin-bottom: 20px;
    -webkit-box-shadow: 4px 4px 20px 1px #bbb;
    -moz-box-shadow: 4px 4px 20px 1px #bbb;
    box-shadow: 4px 4px 20px 1px #bbb;
    border-radius: 15px;
}
.agency-works-tags,
.publisher-works-tags{
  margin-top: -50px;
  position: relative;
  font-size: 18px;
  //color: #727D86
  margin-bottom: 30px;
}
.agency-works-tags span,
.publisher-works-tags span{
  //color: #727d86;
  margin: 0 30px;
}
#agency-works-slider .owl-dots,
#publisher-works-slider .owl-dots{
  padding: 30px 0;
}
.partnersection2_title{
  background: linear-gradient(#BED6D7, #fff);
  padding-top: 50px;
  padding-bottom: 0px;
}
.partnersection2 h2,
.partnersection3 h2{
  font-family: 'ProximaNovaA-Bold';
  font-size: 46px;
  color: #273747;
  text-align: center;
}
.partnersection2_features,
.partnersection3_features{
  padding-top: 70px;
  padding-bottom: 50px;
}
.partnersection2_feature,
.partnersection3_feature{
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  font-size: 16px;
  line-height: 1.4em;
  -webkit-box-shadow: 4px 4px 10px 2px #ddd;
  -moz-box-shadow: 4px 4px 10px 2px #ddd;
  box-shadow: 4px 4px 10px 2px #ddd;
  border-radius: 10px;
  background: #fff;
}
.partnersection2_feature img,
.partnersection3_feature img{
  max-width: 70px;
  margin-bottom: 20px;
}
.partnersection2_agencies .swiper-slide,
.partnersection3_publishers .swiper-slide{
  text-align: center;
}
.partnersec2_age_testimonials,
.partnersec3_pub_testimonials{
  padding-top: 50px;
}
.partnersection2_CTA,
.partnersection3_CTA{
  text-align: center;
  padding-top: 10px;
  padding-bottom: 50px;
}
.partnersection2_CTA a,
.partnersection3_CTA a{
  margin: 0 20px;
}
/******Partners page Styling End******/

/****** Showcase Archieve Start ******/
.featured-showcase{
  background: linear-gradient(#fff, #fff, #fff, #f9f4dc);
  padding-top: 50px;
  padding-bottom: 50px;
}
.featured-showcase-cont{
  padding-top: 80px;
  padding-right: 30px;
  font-family: 'ProximaNovaA-Regular';
  font-size: 20px;
  line-height: 1.4em;
}
.showcase-listing-section h1{
  font-family: 'ProximaNovaA-Bold';
  font-size: 40px;
  line-height: 1.4em;
  color: #273747;
  text-align: center;
}
.showcase-listing-section h2{
  font-family: 'ProximaNova-Semibold';
  font-size: 20px;
  line-height: 1.4em;
  color: #273747;
  margin-top: 20px;
}
.featured-showcase-cont h3{
  font-family: 'ProximaNovaA-Bold';
  font-size: 24px;
  margin-bottom: 10px;
}
.reset-filters.highlighted-button{
  margin: 0;
  vertical-align: middle;
}
#featured-showcase-slider .owl-dots .owl-dot span{
  width: 6px;
}
.showcase-listing-section{
  padding-top: 0px;
  padding-bottom: 20px;
}
.showcase-filters{
  margin-bottom: 30px;
  text-align: center;
}
.showcase-filter-wrp{
  display: inline-block;
  padding: 0 20px;
  vertical-align: middle;
}
.showcase-filter-wrp select{
  font-family: 'ProximaNova-Semibold';
  font-size: 18px;
  background: transparent url(images/select.png) no-repeat right center;
  height: 40px;
  border: 0px;
  padding-right: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}
.showcase-post{
  padding: 20px;
  border-radius: 10px;
  //color: #727d86;
  margin-bottom: 10px;
  overflow: hidden;
}
.showcase-post-inner{
  display: block;
  -webkit-box-shadow: 5px 5px 12px 2px #eee;
  -moz-box-shadow: 5px 5px 12px 2px #eee;
  box-shadow: 5px 5px 12px 2px #eee;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  min-height: 252px;
}
.inspiration-post .showcase-post-inner{
  box-shadow: none;
  min-height: 252px;
}
.single-inspiration .desktop.single-showcase-top .single-showcase-cont,
.single-inspiration .mobile.single-showcase-top .single-showcase-cont{
  padding-bottom: 10px;
}
.single-inspiration .subnote{
  font-size: 10px;
  color: #727d86;
  text-align: right;
  margin-top: 30px;
}
.showcase-post img{
  display: block;
}
.showcase-post:hover,
.showcase-post:focus{
  color: #273747;
}
.showcase-post span{
  display: block;
}
.showcase-post .showcase-post-meta{
  /*position: absolute;
  bottom: -100%;
  left: 0px;
  right: 0px;
  width: auto;*/
  padding: 10px 20px;
  background: rgba(255, 255,255,0.9);
  font-family: 'ProximaNovaA-Regular';
  font-size: 12px;
  line-height: 16px;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  transition: all 400ms ease;
}
/*.showcase-post:hover .showcase-post-meta{
  bottom: 0;
}*/
.showcase-post .showcase-post-meta .showcase-brand{
  font-family: 'ProximaNovaA-Bold';
  text-transform: uppercase;
  line-height: 20px;
}
.inspiration-post .showcase-post-meta{
  position: absolute;
  color: #273747;
  bottom: 0;
  left: 0px;
  right: 0px;
  width: auto;
  padding: 18px 20px;
  background: rgba(255, 255,255,0.9);
  font-family: 'ProximaNovaA-Regular';
  font-size: 12px;
  line-height: 16px;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  transition: all 400ms ease;
}
/*.inspiration-post .showcase-post-inner > img{
	visibility: hidden;
}*/
.btn-default, .btn-default:hover,
.btn-default:focus, .btn-default.focus,
.btn-default:active, .btn-default.active,
.open>.dropdown-toggle.btn-default{
  background: transparent;
  border: 0px;
  font-family: 'ProximaNova-Semibold';
  font-size: 18px;
  height: 40px;
  border: 0px;
  outline: none;
}
.bootstrap-select .btn.dropdown-toggle:focus{
  outline: none!important;
  box-shadow: none!important;
}
.dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus{
  color: #4d8400;
  background-color: #f5f5f5;
}
.bootstrap-select>.dropdown-toggle.btn{
  padding: 0 12px;
}
.bootstrap-select .dropdown-toggle .caret{
  padding: 0 10px;
  margin-left: 5px;
  border: 0px;
  width: 15px;
  height: 10px;
  background: transparent url(images/select.png) no-repeat right center;
  background-size: contain;
}
.dropdown-menu>li>a{
  font-family: 'ProximaNovaA-Regular';
  font-size: 14px;
}
/****** Showcase Archieve End ******/
/****** Single Showcase Start ******/
div.mini-laptop-wrapper {
  position: relative;
  padding-top: 0px;
  padding-bottom: 60%;
  height: 0;
  z-index: 1;
}
div.mini-laptop-wrapper iframe,
div.mini-laptop-wrapper video{
  box-sizing: border-box;
  background: url(images/macbook.png) center center no-repeat;
  background-size: contain;
  padding: 6.6% 12% 8.3%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
div.mini-laptop-wrapper video{
  background: url(images/macbook-vd.png) center center no-repeat;
  background-size: contain;
  padding: 8% 12% 9.5% 12%;
}

div.mini-mobile-wrapper {
  position: relative;
  padding-top: 0px;
  padding-bottom: 0;
  height: 420px;
  z-index: 1;
}
.managed-services-sec1 div.mini-mobile-wrapper iframe,
.managed-services-sec1 div.mini-mobile-wrapper video,
.standard-expandable-section div.mini-mobile-wrapper video{
  padding: 9.2% 5.7% 9%;
}
div.mini-mobile-wrapper iframe,
div.mini-mobile-wrapper video{
  box-sizing: border-box;
  background: url(images/iphone.png) center center no-repeat;
  background-size: contain;
  padding: 13.9% 8.6% 14%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 242px;
  height: 420px;
  overflow-x: hidden;
  z-index: 2;
}

div.mini-mobile-auto.mini-mobile-wrapper video{
  box-sizing: border-box;
  background: url(images/iphone.png) center center no-repeat;
  background-size: contain;
  padding: 0 4.2% 0%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 242px;
  height: 420px;
  overflow-x: hidden;
  z-index: 2;
}

div.mini-mobile-wrapper.mini-mobile-wrapper--scrollx iframe,
div.mini-mobile-wrapper.mini-mobile-wrapper--scrollx video{
  padding: 4.5% 2% 4.3%;
}

div.mini-mobile-wrapper.mini-mobile-wrapper--highImpact {
    width: 170px;
    height: 294px;
}

div.mini-mobile-wrapper.mini-mobile-wrapper--highImpact iframe,
div.mini-mobile-wrapper.mini-mobile-wrapper--highImpact video {
    padding: 21% 12% 21.5% 13%;
    width: 170px;
    height: 294px;
}

.justify-space-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 2.5%;
    /* position: relative;
    left: -8%;
    bottom: 15px; */
}

.high--mobile-align {
    padding-bottom: 0;
    position: relative;
    top: 45px;
}

.display-flex-end {
    display: flex;
    align-items: flex-end;
}

.custom-background-green {
    background: rgba(236,244,230,1);
    padding-top: 20px;
}

.ytp-watermark.yt-uix-sessionlink{
  visibility: hidden !important;
}

div.laptop-wrapper {
  position: relative;
  padding-top: 0px;
  padding-bottom: 60%;
  height: 0;
  margin-right: -105px;
  z-index: 2;
}

div.laptop-wrapper iframe,
div.laptop-wrapper video{
  box-sizing: border-box;
  background: url(images/macbook.png) center center no-repeat;
  background-size: contain;
  padding: 3.6% 13% 5.3%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

div.mobile-wrapper {
  position: relative;
  padding-top: 0px;
  padding-bottom: 0;
  height: 0;
  margin-right: 0;
}

div.mobile-wrapper iframe,
div.mobile-wrapper video{
  box-sizing: border-box;
  background: url(images/iphone.png) center center no-repeat;
  background-size: contain;
  padding: 13.9% 8.6% 14%;
  position: absolute;
  top: 0;
  right: 0;
  width: 298px;
  height: 520px;
  overflow-x: hidden;
  margin-right: -40px;
  z-index: 3;
}
.award-note{
  margin-top: 30px;
  font-family: 'ProximaNova-Semibold';
  color: #4d8400;
}
.dropdown-menu>li>a{
  font-size: 16px;
  font-family: 'ProximaNovaA-Regular';
  padding: 5px 20px;
}
.single-showcase-top{
  padding-bottom: 70px;
}
.single-showcase-top.mobile{
  padding-bottom: 150px;
}
.single-showcase-section .thumb-section{
  text-align: right;
}
.single-showcase-section .thumb-section img{
  z-index: 2;
  position: relative;
  margin-right: -170px;
}
.single-showcase-cont{
  margin-top: 7%;
  padding: 40px 40px 40px 100px;
  background: #fff;
  font-family: 'ProximaNovaA-Regular';
  font-size: 18px;
  line-height: 1.4em;
  color: #273746;
  -webkit-box-shadow: 5px 7px 30px 3px #ddd;
  -moz-box-shadow: 5px 7px 30px 3px #ddd;
  box-shadow: 5px 7px 30px 3px #ddd;
  border: 1px solid #ddd;
  border-radius: 2px;
}
.single-showcase-cont h1{
  font-family: 'ProximaNovaA-Bold';
  font-size: 26px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.single-showcase-cont .text-small{
  font-family: 'ProximaNovaA-Bold';
  font-size: 16px;
  line-height: 1.4em;
  text-transform: uppercase;
}
.single-showcase-cont .text-perc{
  font-family: 'ProximaNovaA-Bold';
  font-size: 30px;
  color: #4d8400;
}
.single-showcase-cont .subtext-small{
  font-family: 'ProximaNova-Semibold';
  font-size: 12px;
  text-transform: uppercase;
  color: #727d86;
}
.single-showcase-cont .subtext-big{
  font-family: 'ProximaNova-Semibold';
  font-size: 14px;
  text-transform: uppercase;
  color: #727d86;
}
.similar-showcases{
  padding-top: 50px;
  padding-bottom: 30px;
}
.similar-showcases h2{
  font-family: 'ProximaNova-Semibold';
  //color: #727d86;
  font-size: 26px;
  text-align: center;
  margin-bottom: 20px;
}
.similar-showcases .showcase-post{
  overflow: hidden;
  display: block;
  position: relative;
  padding: 0;
  border-radius: 15px;
  -webkit-box-shadow: 5px 5px 12px 0px #eee;
  -moz-box-shadow: 5px 5px 12px 0px #eee;
	box-shadow: 5px 5px 12px 0px #eee;
}
.similar-showcases .showcase-post .showcase-post-inner{
    box-shadow: none;
}
.similar-showcases .showcase-post .showcase-post-meta{
  bottom: -80px;
  left: 0;
  right: 0;
}
.similar-showcases .showcase-post:hover .showcase-post-meta{
  bottom: 0;
}
.similar-showcases .inspiration-post.showcase-post .showcase-post-meta,
.similar-showcases .inspiration-post.showcase-post:hover .showcase-post-meta{
  bottom: 0;
}
.similar-showcases span.border{
  width: 100px;
  margin: 15px auto;
}
.similar-casestudies span, .similar-casestudies img{
  display: block;
  border-bottom: 1px solid #ddd;
}
.similar-casestudies h2 {
  font-family: 'ProximaNova-Semibold';
  //color: #727d86;
  font-size: 26px;
  text-align: center;
  margin-bottom: 20px;
}
.casestudy-post{
  padding-top: 15px;
  position: relative;
}
.casestudy-post-meta.col-md-6 h3 {
  min-height: 72px;
}
.similar-casestudies {
	padding-top: 50px;
}
.similar-casestudies .casestudy-post {
  display: block;
  position: relative;
  padding-top: 15px;
}
.similar-casestudies .casestudy-post-meta {
  padding: 30px;
}
.similar-casestudies .back-to-archive {
  padding-bottom: 30px;
}
.desktop.single-showcase-top{
  padding-top: 30px;
  padding-bottom: 30px;
}
.desktop.single-showcase-top .thumb-section img{
  margin-right: -200px;
  margin-top: 0;
}
.desktop.single-showcase-top .single-showcase-cont{
  margin-top: 65px;
  padding: 40px 15px 40px 80px;
  font-size: 16px;
}
.desktop.single-showcase-top .single-showcase-cont h1{
  font-size: 16px;
}
.desktop.single-showcase-top .single-showcase-cont .text-small{
  font-size: 12px;
}
.back-to-archive{
  text-align: center;
  padding-top: 20px;
  padding-bottom: 10px;
}
.back-to-archive a.highlighted-button{
  margin-top: 0;
}

/****** Single Showcase End ******/
/****** Product Pages Start ******/
.custom-section{
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}
.custom-section h1{
  font-family: 'ProximaNovaA-Bold';
  font-size: 40px;
  color: #273747;
  text-transform: none;
}
.custom-section h2{
  //font-family: 'ProximaNovaA-Bold';
  font-size: 40px;
  color: #273747;
}
.custom-section h3{
  //font-family: 'ProximaNovaT-Thin';
  font-family: 'ProximaNovaA-Regular';
  font-size: 20px;
  line-height: 1.4em;
  //color: #727d86;
}
.banner-section.custom-section h3{
  font-family: 'ProximaNovaA-Regular';
}
.custom-section ul{
  font-family: 'ProximaNova-Semibold';
  font-size: 22px;
  line-height: 1.4em;
  list-style-type: disc;
  text-align: left;
  padding-left: 20px;
  margin-bottom: 20px;
}
.custom-section ul.nav-tabs{
	text-align: center;
	margin-top: 0;
}
.custom-section img{
  display: block;
  margin: 0 auto;
}
.custom-section .regularText{
  font-family: 'ProximaNovaA-Regular';
  font-size: 18px;
  line-height: 1.4em;
  //color: #727D86;
}
.custom-section h4{
  font-family: 'ProximaNova-Semibold';
  font-size: 22px;
  line-height: 1.4em;
  //color: #727d86;
  margin-bottom: 10px;
}
.custom-section .product-features span{
  display: inline-block;
  font-size: 14px;
  line-height: 1.3em;
  //color: #727d86;
  text-align: left;
  vertical-align: middle;
  max-width: 80%
}
.page-template-page-data-driven-creatives .custom-section .product-features span{
  max-width: 100%
}
.page-template-page-data-driven-creatives .custom-section .product-features.features-devices .product-span {
    margin-bottom: 30px;
    padding: 0 10px;
}
.page-template-page-data-driven-creatives .text-content-left {
  text-align: left;
}
.page-template-page-data-driven-creatives .text-content-right {
  text-align: right;
}

.text-content-right--retail {
    text-align: right;
}

.text-content-left--retail {
    text-align: left;
}
.page-template-page-data-driven-creatives .custom-section .product-features .product-span img, .page-template-page-apple-news-formats .custom-section .product-features .product-span img{
  width: 30px;
}
.custom-section .product-features .product-span{
  margin-bottom: 30px;
}
.custom-section .product-features.vertical .product-span{
  margin-bottom: 20px;
}
.custom-section .product-features .product-span img{
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
/*.custom-section .product-tags .product-span{
  display: inline-block;
  padding: 0 15px;
}
.custom-section .product-tags span{
  display: inline-block;
  font-size: 22px;
  vertical-align: middle;
}
.custom-section .product-tags .product-span img{
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  width: 30px;
  height: auto;
}*/
.product-features.vertical{
  /* padding: 50px 50px 0; */
  padding-top: 50px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 0;
}
.product-features.vertical h4{
  font-size: 16px;
  line-height: 1.4em;
  padding: 0 15px;
}
.custom-section .product-features.features-devices .product-span{
  display: inline-block;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.4em;
  vertical-align: middle;
  padding: 0 20px;
}
.custom-section .product-features.feature-devices.vertical .product-span{
  margin-bottom: 15px;
}
.custom-section .features-devices h4{
  display: block;
  font-size: 16px;
  line-height: 1.4em;
  vertical-align: middle;
  padding: 0 20px;
}

.single-casestudy-section{
  padding-bottom: 50px;
  padding-top: 50px;
  font-size: 16px;
  color: #273747;
  font-family: 'ProximaNovaA-Regular';
}
.single-casestudy-section b,
.single-casestudy-section strong{
  font-family: 'ProximaNova-Semibold';
  font-weight: 400;
}

.single-casestudy-section .simplesocialbuttons{
	margin-top: 30px;
}

.single-casestudy-section .simplesocialbuttons.simplesocial-round-icon button.simplesocial-fb-share,
.single-casestudy-section .simplesocialbuttons.simplesocial-round-icon button.simplesocial-twt-share,
.single-casestudy-section .simplesocialbuttons.simplesocial-round-icon button.simplesocial-linkedin-share,
.single-casestudy-section .simplesocialbuttons.simplesocial-round-icon button.simplesocial-gplus-share,
.single-casestudy-section .simplesocialbuttons.simplesocial-round-icon button.simplesocial-whatsapp-share,
.single-casestudy-section .simplesocialbuttons.simplesocial-round-icon button.simplesocial-email-share{
	color: #273747!important;
    border-color: #273747!important;
}
.single-casestudy-section .simplesocialbuttons.simplesocial-round-icon button.simplesocial-fb-share:hover,
.single-casestudy-section .simplesocialbuttons.simplesocial-round-icon button.simplesocial-twt-share:hover,
.single-casestudy-section .simplesocialbuttons.simplesocial-round-icon button.simplesocial-linkedin-share:hover,
.single-casestudy-section .simplesocialbuttons.simplesocial-round-icon button.simplesocial-gplus-share:hover,
.single-casestudy-section .simplesocialbuttons.simplesocial-round-icon button.simplesocial-whatsapp-share:hover,
.single-casestudy-section .simplesocialbuttons.simplesocial-round-icon button.simplesocial-email-share:hover{
	color: #4d8400!important;
	border-color: #4d8400!important;
    background-color: #fff!important;
}
.single-casestudy-section .simplesocialbuttons{
	position: relative;
}
.single-casestudy-section .simplesocialbuttons:before{
    content: "Share this case study";
    display: block;
    font-size: 20px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    vertical-align: middle;
}
.single-casestudy-section .simplesocialbuttons:after{
    content: "";
    position: absolute;
    top: 48px;
    width: 150px;
    height: 2px;
    background: #4d8400;
    margin: 0 auto;
    left: 0;
    right: 0;
}
.single-casestudy-section .simplesocialbuttons.simplesocial-round-icon button:after{
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    font-size: 14px;
}
.single-casestudy-section .simplesocialbuttons.simplesocial-round-icon button{
	padding-left: 30px;
	height: 34px;
}
.single-casestudy-banner .badge-img{
  position: absolute;
  visibility: visible;
  z-index: 3;
  left: -23px;
  top: -21px;
}
.casestudy-post-inner .badge-img{
  position: absolute;
  visibility: visible;
  z-index: 3;
  left: -13px;
  top: 4px;
  width: 180px;
}
.post-type-archive-casestudy .casestudy-post-inner .badge-img{
  left: 2px;
}

/*.single-casestudy-section img{
  box-shadow: 4px 4px 10px 2px #ddd;
  border-radius: 10px;
  margin: 50px auto;
  display: block;
}*/
.single-casestudy-banner{
	text-align: center;
	position: relative;
	margin-bottom: 50px;
}
.single-casestudy-banner:before{
	content: "";
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0,0,0,0.3);
	z-index: 2;
	//box-shadow: 4px 4px 10px 2px #ddd;
  	border-radius: 15px;
  	overflow: hidden;
}
.single-casestudy-banner h1{
	color: #fff;
	text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0px;
	padding: 40px;
	width: 100%;
	z-index: 3;
}
.single-casestudy-banner img{
	margin: 0;
	z-index: 1;
	display: block;
	position: relative;
  	border-radius: 15px;
}
.single-casestudy-section p{
	margin-bottom: 20px;
  line-height: 1.6em;
}
.single-casestudy-section .subtitle{
	font-family: 'ProximaNova-Semibold';
	text-align: center;
	font-size: 20px;
	line-height: 1.4em;
	color: #273747;
}
.border-div{
	padding: 30px;
}
.single-casestudy-section h3{
  font-family: 'ProximaNovaA-Bold';
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 20px;
  color: #273747;
  text-align: left;
}
.single-casestudy-section ul{
	margin-bottom: 20px;
}
.single-casestudy-section li:before{
	content: "\f105";
	margin-right: 10px;
	display: inline-block;
    font: normal normal normal 18px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #4d8400;
}
blockquote{
	position: relative;
	padding: 20px 0;
	margin: 20px 0;
	//font-size: 20px;
	font-style: italic;
	//font-family: 'ProximaNovaA-Regular';
}
blockquote i.fa-quote-left, blockquote i.fa-quote-right{
  color: #4d8400;
  vertical-align: super;
  margin: 0 5px;
}

.casestudy-post-inner{
	overflow: hidden;
	margin-bottom: 15px;
  -webkit-box-shadow: 4px 4px 10px 2px #ddd;
  -moz-box-shadow: 4px 4px 10px 2px #ddd;
	box-shadow: 4px 4px 10px 2px #ddd;
	border-radius: 10px;
	background: #fff;
	-webkit-transition-property: transform;
	  transition-property: transform;
	  -webkit-transition-duration: 0.3s;
	  transition-duration: 0.3s;
	  -webkit-transition-timing-function: ease-out;
	  transition-timing-function: ease-out;
}
.casestudy-post-inner:hover{
  -webkit-box-shadow: 5px 5px 20px 2px #aaa;
  -moz-box-shadow: 5px 5px 20px 2px #aaa;
	box-shadow: 5px 5px 20px 2px #aaa;
}
.casestudy-post-meta{
  padding: 40px;
  background: #fff;
  font-family: 'ProximaNovaA-Regular';
}
.casestudy-post-meta h3{
  font-size: 18px;
  line-height: 24px;
  font-family: 'ProximaNovaA-Bold';
  margin-bottom: 10px;
  color: #273747;
}
.casestudy-post-meta a{
  margin-top: 20px;
}
.custom-section .dynamiccreatives-tabs.nav-tabs{
  margin-bottom: 0;
  margin-top: 20px;
  padding-left: 0;
}
.dynamiccreatives-tabs.nav-tabs li a{
  font-size: 12px;
  line-height: 1.2em;
}
.dynamiccreatives-tabs.nav-tabs li a:before{
  top: 0;
}
.articles-post-inner{
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
}
.articles-post:last-child .articles-post-inner{
  border-bottom: none;
}
.article-date{
  font-family: 'ProximaNova-Semibold';
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
  color: #4d8400;
}
.article-title{
  font-family: 'ProximaNova-Semibold';
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 20px;
  color: #273747;
}
.articles-post-inner img{
  border-radius: 15px;
  margin-bottom: 15px;
}
.article-content{
  font-family: 'ProximaNovaA-Regular';
  color: #273747;
  font-size: 20px;
  line-height: 1.4em;
}
.article-content p{
  margin-bottom: 20px;
}
.article-content a.read-more{
  font-family: 'ProximaNovaA-Regular';
  color: #4d8400;
}
.article-content .read-more-block{
  display: none;
}
.article-publication{
  font-size: 16px;
  line-height: 20px;
  font-family: 'ProximaNovaA-Regular';
}

/****** Product Pages End ******/
/****** Contact Pages Start ******/
input, select, textarea{
	border-radius: 5px;
	border: 1px solid #ddd;
}
div.wpcf7-response-output{
	clear: both;
}
span.wpcf7-not-valid-tip {
  color: #f00;
  font-size: 12px;
  font-weight: normal;
  display: inline-block;
  position: absolute;
  top: 9px;
  left: auto;
  right: 20px;
  text-align: right;
}
.wpcf7-not-valid{
	border-color: red;
}
.wpcf7-form-control-wrap{
	display: block;
}

/****** Contact Pages End ******/
/******Footer Styling Start******/
.custom-navigation-section{
	padding-top: 20px;
	padding-bottom: 20px;
}
.custom-navigation-section a{
	margin: 10px 0;
	display: inline-block;
	font-family: 'ProximaNova-Semibold';
	font-size: 16px;
	color: #4d8400;
	text-transform: uppercase;
	overflow: hidden;
}
.custom-navigation-section a i{
	font-size: 20px;
	margin: 0 5px;
}
.navigation-right-column{
	text-align: right;
}
.back-to-top{
  padding: 10px;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background: #273747;
  color: #fff;
  border-radius: 5px;
  position: fixed;
  bottom: 8px;
  right: 20px;
  cursor: pointer;
  display: none;
  z-index: 9999;
}
footer{
  font-family: 'ProximaNovaA-Regular';
  padding-top: 40px;
  padding-bottom: 30px;
  font-size: 16px;
  line-height: 24px;
}
.footer-inner{
  padding-top: 20px;
}
.page-template-page-platform .footer-inner{
  border-top: none;
}
.footer-inner h3{
	font-family: 'ProximaNova-Semibold';
	text-transform: uppercase;
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 10px;
}
.footer-col p{
	margin-bottom: 10px;
}
.footer-col .wpcf7-form-control-wrap.email-id{
    display: table-cell;
    margin: 0;
    padding: 0;
    vertical-align: top;
}
.footer-col .wpcf7 input.form-control{
    outline: none;
    border: 0px;
    background: transparent;
    height: 40px;
    font-size: 16px;
}
.footer-col .wpcf7 input[type="submit"]{
	height: 40px;
	width: 34px;
	background: transparent;
	border: 0px;
	display: inline-block;
    font-size: 26px!important;
    line-height: 28px;
    color: #727d86;
}
.footer-col span.wpcf7-not-valid-tip{
	top: 35px;
}
.footer-col .wpcf7 form .wpcf7-response-output{
	font-size: 14px;
    line-height: 20px;
}
.footer-col .wpcf7-form-control-wrap.email-id input:focus{
	outline: none;
	border: 0px;
}
.footer-col .wpcf7-form-control-wrap.email-id{
    display: table-cell;
    margin: 0;
    padding: 0;
    vertical-align: top;
}
.footer-col .wpcf7 .ajax-loader{
	position: absolute;
	right: -15px;
}
.footer-col .input-group{
	border: 1px solid #ddd;
	border-radius: 5px;
}
footer a{
  color: #727d86;
}
.footer-copyright{
	text-align: right;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #ddd;
}
footer a:hover{
  color: #4d8400;
}
.footer-copyright ul li{
  display: inline-block;
}
.footer-copyright ul li:first-child a{
  border: 0px;
}
.footer-inner .social-icons{
  display: inline-block;
  margin-bottom: 10px;
}
.footer-inner .social-icons a{
	display: inline-block;
    padding: 0;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    color: #fff;
    background: #273747;
    font-size: 18px;
    border: 2px solid #273747;
    line-height: 32px;
    text-align: center;
    vertical-align: top;
    margin: 0 10px 10px 0;
}
.footer-inner .social-icons a:hover{
  color: #273747;
  background: #fff;
  border-color: #273747;
}
.cookie-bar-bar button#catapultCookie{
  margin: 0 0 0 10px!important;
}
#catapult-cookie-bar a{
  margin: 0 10px;
}
button#catapultCookie{
  display: inline-block;
  font-family: 'ProximaNova-Semibold';
  font-size: 12px;
  background: #fff;
  color: #4d8400;
  padding: 3px 20px;
  border: 2px solid #4d8400;
  border-radius: 10px;
  text-transform: uppercase;
  overflow: hidden;
}

/******Footer Styling End******/
::-webkit-input-placeholder {
  color: #1e1e1e;
}
::-moz-placeholder {
  color: #1e1e1e;
}
:-ms-input-placeholder {
  color: #1e1e1e;
}

.has-cookie-bar #catapult-cookie-bar{
  z-index: 99 !important;
}
/******Media Queries******/

/*********** Screens other than Mobile *********/
@media (min-width: 768px){
  .navbar-toggle {
    display: inline-block;
  }
}
/*********** Bigger screens *********/
@media (min-width: 1300px) {
  div.laptop-wrapper iframe,
  div.laptop-wrapper video{
    padding: 3.6% 12% 5.3%;
  }
  div.mobile-wrapper iframe,
  div.mobile-wrapper video{
    padding: 12% 8% 11.7%;
    width: 304px;
    height: 516px;
  }
  .homebanner-copy h1, .homebanner-copy h2{
    font-size: 50px;
  }
  .homebanner-copy p{
    font-size: 22px;
  }

  /**** changes for Showcase/inspiration single video ****/
  .desktop.single-showcase-top{
    padding-top: 0;
  }
  div.laptop-wrapper{
    padding-bottom: 63%;
  }
  div.laptop-wrapper video{
    background: url(images/macbook-vd.png) center center no-repeat;
    background-size: contain;
    padding: 8px 126px 25px;
    padding: 1% 12% 3%;
    width: 1170px;
    height: 603px;
  }
  div.mobile-wrapper{
    height: auto;
  }
  div.mobile-wrapper video{
    padding: 66px 0px;
    //padding: 11.9% 0;
    width: 270px;
    height: 550px;
    position: relative;
  }
  .desktop.single-showcase-top .single-showcase-cont{
    margin-top: 100px;
  }
  .single-showcase-top.mobile {
    padding-bottom: 50px;
  }
}
@media (min-width: 1500px) {
  .homebanner{
    background-size: cover!important;
  }
}
/*********** Horizontal iPad & small screen Laptops *********/
@media (min-width: 992px) and (max-width: 1299px) {
  .homebanner{
    min-height: 790px!important;
  }
  .homebanner-copy-inner {
    padding-left: 10px;
  }
  .homebanner-copy h1, .homebanner-copy h2, .banner-wrap h1, .banner-wrap h2{
    font-size: 36px;
  }
  .homebanner-copy p, .banner-wrap p{
    font-size: 20px;
  }  
  .home-smarter h3, .home-faster h3, .home-better h3{
    font-size: 18px;
    line-height: 24px;
  }
  .home-smarter-inner .contdiv{
    padding: 20px 50px;
  }
  .product-features.vertical{
    padding: 40px 20px 0;
  }
  div.mini-laptop-wrapper{
    margin-top: 22px;
  }
  .custom-section .product-features span{
    font-size: 14px;
    max-width: 78%;
  }
  div.laptop-wrapper iframe,
  div.laptop-wrapper video{
    padding: 3.6% 13% 5.3%;
  }
  .desktop.single-showcase-top .single-showcase-cont{
    margin-top: 0px;
    padding: 20px 15px 20px 60px;
    font-size: 14px;
  }
  div.mobile-wrapper iframe,
  div.mobile-wrapper video{
    padding: 15% 11% 18%;
  }
  .desktop.single-showcase-top .single-showcase-cont{
    margin-top: 20%;
  }
  .desktop.single-showcase-top{
    padding-top: 0;
    padding-bottom: 70px;
  }
  div.laptop-wrapper{
    padding-bottom: 63%;
  }
  div.mobile-wrapper{
    height: auto;
    padding-bottom: 20px;
  }
  .single-showcase-top.mobile{
    padding-bottom: 120px;
  }
  div.laptop-wrapper video{
    background: url(images/macbook-vd.png) center center no-repeat;
    background-size: contain;
    padding: 8px 126px 25px;
    padding: 1% 12% 3%;
    width: 100%;
    height: 100%;
    margin-top: 35px;
  }
  div.mobile-wrapper video{
    padding: 66px 0px;
    width: 270px;
    height: 550px;
  }
  .desktop.single-showcase-top .single-showcase-cont{
    margin-top: 50px;
  }
  .showcase-post-inner, .inspiration-post .showcase-post-inner{
    min-height: 210px;
  }

}
/*********** Vertical iPad *********/
@media (min-width: 768px) and (max-width: 991px) {
  /*** Home ***/
  .homebanner-copy{
    padding-left: 15px;
    padding-right: 15px;
  }
  .homebanner-copy h1, .homebanner-copy h2, .banner-wrap h1, .banner-wrap h2{
    font-size: 34px;
  }
  .homebanner-copy p, .banner-wrap p{
    font-size: 20px;
  }  
  .homesection3 h2, .homesection4 h2, .homesection5 h2{
    font-size: 24px;
  }
  .homesection3 h3, .homesection4 h3{
    font-size: 16px;
    line-height: 1.3em;
  }
  .homesection3 div, .homesection4 div {
    font-size: 14px;
    line-height: 1.3em;
  }
  .clients-section .client-element{
    padding: 10px;
    width: 150px;
  }
  #menu-header-menu-right>li>a{
    font-size: 12px;
    padding: 10px 10px;
  }
  #menu-header-menu-right>li.highlighted-menu>a{
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 10px;
    letter-spacing: 0px;
    margin-left: 2px;
  }
  .header-menu-right nav{
    padding-right: 35px;
  }

  /******* Platform & Partners *****/
  .platformbanner, .partnerbanner{
    padding-top: 50px;
  }
  .platformbanner h1, .partnerbanner h1, .featured-showcase h1{
    font-size: 30px;
  }
  .platformbanner h2, .partnerbanner h2{
    font-size: 18px;
  }
  .platformsection2 h2, .platformsection3 h2, .platformsection4 h2{
    font-size: 40px;
  }
  .platformsection2 h3, .platformsection3 h3, .platformsection4 h3{
    font-size: 18px;
  }
  .nav-tabs li a{
    font-size: 18px;
  }
  .steps .step{
    font-size: 12px;
    line-height: 1.4em;
  }
  .steps .step h3{
    font-size: 14px;
  }
  .platformsection3, .platformsection4{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  span.border{
    margin: 30px auto;
  }
  .platformsection3-inner{
    font-size: 16px;
    line-height: 22px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .platformsection3-inner h3{
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
  }
  .partnersection2_feature, .partnersection3_feature{
    font-size: 18px;
  }
  .partnersection2_feature img, .partnersection3_feature img{
    width: 70px;
  }

  /******* Product *****/
  .custom-section h1{
    font-size: 30px;
  }
  .custom-section h3{
    font-size: 18px;
  }
  .custom-section .product-features span{
    font-size: 14px;
  }
  .custom-section .features-devices h4{
    display: block;
  }
  .custom-section .product-features.features-devices .product-span{
    padding: 0 15px;
  }
  .product-features.vertical{
    padding: 10px 10px 0;
  }

  /****** Showcase *****/
  /*.showcase-post {
    min-height: 250px;
  }*/
  .single-showcase-section .thumb-section{
    padding-left: 20px;
    padding-right: 20px;
  }
  .single-showcase-section.mobile .thumb-section{
    padding-left: 20px;
    padding-right: 20px;
  }
  div.laptop-wrapper{
    margin: 0;
  }
  div.laptop-wrapper iframe,
  div.laptop-wrapper video{
    padding: 6.6% 13% 8.3%;
  }
  .single-showcase-cont{
    box-shadow: none;
    border: 0;
    border-top: 1px solid #ddd;
    padding: 30px!important;
    margin-top: 0px!important;
    background: transparent;
  }
  .desktop.single-showcase-top .single-showcase-cont{
    font-size: 18px;
  }
  .desktop.single-showcase-top {
    padding-top: 0px;
    padding-bottom: 10px;
  }
  div.mobile-wrapper{
    min-height: 480px;
    display: block;
    clear: both;
    position: relative;
    height: auto;
    padding-bottom: 20px;
  }
  .single-showcase-top.mobile{
    padding-bottom: 50px;
  }
  div.mobile-wrapper iframe,
  div.mobile-wrapper video{
    position: relative;
    right: auto;
    left: auto;
    width: 300px;
    height: 450px;
    margin: 0 auto;
    display: block;
    padding: 8% 7.6% 8%;
  }
  .showcase-post img{
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  .showcase-post .showcase-post-meta{
    bottom: 0;
  }
  .similar-showcases .showcase-post .showcase-post-meta{
    bottom: 0;
  }
  .showcase-post .showcase-post-meta .showcase-brand {
    font-size: 10px;
    line-height: 14px;
  }
  div.laptop-wrapper video{
    background: url(images/macbook-vd.png) center center no-repeat;
    background-size: contain;
    padding: 8px 126px 25px;
    padding: 1% 12% 3%;
    width: 100%;
    height: 100%;
  }
  .desktop.single-showcase-top .single-showcase-cont h1{
    font-size: 26px;
  }
  .desktop.single-showcase-top .single-showcase-cont .text-small{
    font-size: 14px;
  }
  .similar-showcases .showcase-post{
    margin-bottom: 30px;
  }
  .showcase-post-inner, .inspiration-post .showcase-post-inner{
    min-height: 210px;
  }
  div.mobile-wrapper video{
    padding: 66px 0px;
    width: 270px;
    height: 550px;
  }
  .single-showcase-cont{
    font-size: 14px;
  }
  .single-showcase-cont .text-small{
    font-size: 14px;
  }
  .carrer-wraper .filter-wraper select{
    margin: 10px 0 30px 0;
  }
  .single-casestudy-banner .badge-img {
    left: -13px;
    top: -12px;
    width: 180px;
  }
  .casestudy-post-inner .badge-img {
    left: -11px;
    top: 6px;
    width: 140px;
  }
  div.laptop-wrapper video{
    background: url(images/macbook-vd.png) center center no-repeat;
    background-size: contain;
  }
}
/*********** Mobile Devices *********/
@media(max-width: 767px){
  /******* Header CSS Start *******/
  .devider{
    height: 2px;
    background: #eee;
    display: block;
    margin-bottom: 15px;
  }
  .navbar-toggle{
    margin-right: 0;
    display: inline-block!important;
  }
  .navbar-collapse{
    border: 0;
    width: 100%;
    padding: 20px !important;
  }
  .navbar-collapse.collapse{
    right: -100%;
  }
  .navbar-collapse.collapse.open{
    right: 0;
  }
  .navigation li a{
    //text-align: left;
  }
  .menu .sub-menu li a{
    text-align: right;
  }
  /*#menu-header-menu-right-1{
    display: block;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    text-align: center;
  }
  #menu-header-menu-right-1 li{
    display: inline-block;
    float: none;
    width: 49%;
    padding: 0 5px;
    text-align: center;
  }
  #menu-header-menu-right-1 li a{
    font-family: 'ProximaNova-Semibold';
    color: #4d8400;
    border: 2px solid;
    border-radius: 50px;
    margin: 5px;
    font-size: 14px;
    padding: 5px 10px;
  }*/
  .logo-outer{
    padding-left: 15px;
  }
  #menu-header-menu-right-1>li.highlighted-menu{
    text-align: right;
    display: block;
    float: none;
    margin-top: 15px;
  }
  #menu-header-menu-right-1>li.highlighted-menu>a{
    color: #fff;
    background: #4d8400;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 15px;
    display: inline-block;
    letter-spacing: 1px;
  }
  .page-template-page-data-driven-creatives .text-content-left, .page-template-page-data-driven-creatives .text-content-right {
    text-align: center;
  }
  .header-menu-right {
      padding-right: 15px;
  }
  .footer-col .input-group{
    width: 100%;
  }
  /******* Header CSS End *******/

  .homebanner-copy-inner{
    padding-left: 30px;
    padding-right: 30px;
  }
  .homebanner-copy h1, .homebanner-copy h2, .banner-wrap h1, .banner-wrap h2{
    font-size: 30px;
  }
  .homebanner-copy p, .banner-wrap p{
    font-size: 20px;
  }
  .banner-wrap .banner-inner{
    padding-left: 30px;
    padding-right: 30px;
  }
  h2 br{
    display: none;
  }
  .homebanner{
    /*min-height: 300px!important;*/
    background-size: contain!important;
  }
  .homebanner-copy{
    top: 10%;
    text-align: center;
  }
  .homebanner-copy h1{
    font-size: 24px;
    text-align: center;
  }
  .homebanner-copy h2{
    margin-top: 30px;
    font-size: 14px;
    text-align: center;
  }
  .homebanner-copy a.highlighted-button{
    width: 50%;
    margin: 30px auto;
  }
  span.border{
    width: 120px;
  }
  .home-smarter, .home-faster, .home-better, .home-partner, .integrations-section, .homesection5{
    padding: 40px 0;
  }
  .homesection3 h2, .homesection4 h2, .homesection5 h2, .home-casestudies.similar-casestudies h2, .integrations-section h2{
    font-size: 24px;
    padding: 0 2px;
  }
  .home-smarter h2, .home-faster h2, .home-better h2, .home-partner h2{
    font-size: 24px;
  }
  .home-smarter h3, .home-faster h3, .home-better h3{
    //font-family: 'ProximaNova-Semibold';
    font-size: 16px;
    line-height: 22px;
    text-align: center;
  }
  .home-smarter-inner{
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .home-smarter-inner video,
  .home-smarter-inner img{
    margin: 0;
    margin-bottom: 20px;
    border-radius: 10px;
    z-index: 2;
  }
  .home-smarter-inner .contdiv{
    font-size: 14px;
    padding: 15px;
    text-align: center;
  }
  .home-partner-inner span.p_title{
    font-size: 24px;
    line-height: 30px;
  }
  .home-partner-inner span.p_cont{
    font-size: 14px;
  }
  .back-to-top{
    bottom: 2px;
    right: 35px;
    width: 50px;
    height: 22px;
    padding: 0px;
  }
  span.border{
    margin: 20px auto;
  }
  a.highlighted-button{
    margin-top: 20px;
  }
  .homesection3-inner, .homesection4-inner{
    margin-top: 20px;
    margin-bottom: 0px;
  }
  .homesection3 h3, .homesection4 h3{
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .homesection3 div, .homesection4 div{
    font-size: 14px;
    line-height: 20px;
  }
  .homesection3, .homesection4{
    padding: 30px 0;
  }
  .homesection4-element{
    margin-bottom: 20px;
  }
  .integrations-section img {
    margin: 5px;
    width: 68px;
  }
  .clients-section .client-element{
    padding: 10px;
    width: 150px;
  }
  .testimonial-cont{
    font-size: 14px;
    line-height: 22px;
  }
  .testimonial-name{
    margin-top: 20px;
    font-size: 14px;
  }
  .testimonial-cont:before, .testimonial-cont:after{
    font-size: 16px;
  }
  .owl-nav{
    display: none;
  }
  div.mini-mobile-wrapper, div.mini-laptop-wrapper{
    margin: 20px 0;
  }
  .managed-services-sec1 div.mini-mobile-wrapper iframe,
  .managed-services-sec1 div.mini-mobile-wrapper video{
    padding: 13.9% 8.6% 18%;
  }
  .page-template-page-programmatic-format .custom-section .product-features span{
    display: inline-block;
  }
  .partner-section-slider img {
    margin: 8px 10px;
    width: auto;
    height: 12px;
  }
  .partner-section-slider h2{
    font-size: 30px;
  }
  .home-smarter-inner .video-fluid{
    max-width: 100%;
    height: auto;
  }
  .entry-content{
    padding-top: 10px;
    font-size: 14px;
  }
  .homebrands, .partnersection2_agencies{
    padding: 20px 0;
  }
  .solutions-case-section{
    text-align: center;
  }
  .solutions-case-section h2{
    font-size: 24px;
  }
  a.btn-darkgreen{
    padding: 8px 18px;
    font-size: 14px;
    margin-right: 5px;
  }
  a.btn-lightgreen{
    padding: 6px 16px;
    font-size: 14px;
    margin-right: 5px;
  }
  .small-video-blocks .video-div--auto{
    height: auto!important;
  }
  .small-video-blocks .video-div--auto video{
    padding: 10px;
    position: relative;
  }
  .small-video-blocks .casestudy-post-inner--auto-mobile{
    padding: 0;
    max-height: none;
  }
  .small-video-blocks .casestudy-post-inner--auto-mobile .casestudy-post-meta--auto.casestudy-post-meta--auto-custom{
    padding: 0 10px 10px;
    top: 0;
    min-height: 0;
  }
  .production-subtitle{
    font-size: 16px;
    line-height: 28px;
  }
  .production-icon-list p.production-list-title, .alternate_image_text_section h4{
  	font-size: 18px;
    line-height: 28px;
  }
  .testimonial-element{
  	padding: 20px;
  }

  /******* Platform Page Start *******/
  .platformbanner, .partnerbanner{
    padding-top: 10px;
  }
  .platformbanner .laptop-background{
    margin-bottom: -45px;
  }
  .platformsection2{
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .platformsection3, .platformsection4{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .platformbanner h2, .partnerbanner h2, .platformsection2 h3, .platformsection3 h3, .platformsection4 h3{
    font-size: 14px;
  }
  .partnersection2_features, .partnersection3_features{
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .custom-section h1, .entry-title,
  .platformbanner h1, .partnerbanner h1, .featured-showcase h1,
  .platformsection2 h2, .platformsection3 h2, .platformsection4 h2{
    font-size: 24px;
    line-height: 1.2em;
  }
  .nav-tabs{
    margin-top: 30px;
  }
  .nav-tabs li a{
    font-size: 12px;
    padding: 0 10px;
  }
  .nav-tabs li a:before{
    top: 0;
  }
  .platformsection3-inner{
    margin-top: 20px;
    font-size: 18px;
    margin-bottom: 30px;
  }
  .platformsection3-inner h3{
    margin: 10px;
  }
  .platformsection3-inner h3{
    font-size: 18px;
  }
  .platformsection3-inner .platformsection3-element h3{
    margin: 10px 0 10px;
    font-size: 16px;
  }
  .platformsection3-inner .platformsection3-element{
    font-size: 14px;
  }
  .tab-cnt-content{
    font-size: 14px;
  }
  .steps{
    margin: 10px -15px;
  }
  .steps .step{
    font-size: 12px;
    line-height: 1.4em;
  }
  .steps .step h3{
    font-size: 14px;
    line-height: 1.2em;
  }
  .custom-section h3 {
    font-size: 14px;
  }
  .product-features{
    padding-left: 20px;
    padding-right: 20px;
  }
  .custom-section .product-features.features-devices .product-span{
    margin: 10px 0;
  }
  .custom-section .product-features span{
    font-size: 14px;
    line-height: 1.3em;
    display: block;
  }
  .product-features.vertical{
    padding: 20px 15px;
    text-align: center;
  }
  .custom-navigation-section{
    padding-top: 0;
  }
  .navigation-left-column, .navigation-right-column{
    padding: 0;
  }
  .navigation-left-column i, .navigation-right-column i{
    position: absolute;
    top: 28%;
  }
  .navigation-left-column a, .navigation-right-column a{
    display: block;
    position: relative;
    font-size: 8px;
    line-height: 14px;
  }
  .navigation-left-column a{
    padding-left: 15px;
  }
  .navigation-right-column a{
    padding-right: 15px;
  }
  .navigation-left-column i{
    left: 0px;
  }
  .navigation-right-column i{
    right: 0px;
  }
  .custom-navigation-section a i {
    font-size: 14px;
    line-height: 14px;
    margin: 0 5px;
    vertical-align: middle;
    position: relative;
    top: auto;
  }
  .custom-section .product-features.vertical .product-span img{
    width: 25px;
    margin-bottom: 5px;
  }
  .post-type-archive .navigation-left-column i,
  .post-type-archive .navigation-right-column i{
    position: relative;
    top: auto;
  }
  .custom-section .product-features.vertical .product-span{
    margin-bottom: 20px;
  }
  .custom-section .features-devices .features-devices-tbl{
    display: block;
  }
  .custom-section .features-devices .features-devices-tbl span{
    font-size: 12px;
  }
  .custom-section .features-devices .features-devices-tbl .product-span{
    padding: 0 10px;
    display: inline-block;
    width: 32%;
    vertical-align: top;
  }
  .custom-section .features-devices-tbl h4{
    display: block;
    padding: 0 10px;
    margin-top: 10px;
    margin-bottom: 0;
  }
  .custom-section{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .about-top-section.custom-section{
    padding-top: 0;
  }
  .tab-content iframe,
  .tab-content video{
    max-width: 100%;
    height: auto;
  }
  .product-features.vertical h4{
    display: block;
    clear: both;
    text-align: left;
  }
  .custom-section .product-features .product-span{
    text-align: left;
    margin-bottom: 20px;
  }
  .partnersection2_feature, .partnersection3_feature{
    margin-bottom: 20px;
    font-size: 14px;
  }
  .partner-section-title{
    font-size: 14px;
    margin-top: 0;
  }
  .partnersection2_CTA, .partnersection3_CTA{
    padding-bottom: 30px;
  }
  .partnersection2_CTA a, .partnersection3_CTA a{
    width: auto;
    margin: 10px 5px;
    font-size: 10px;
    padding: 6px 15px;
  }
  .partnersection2_feature img, .partnersection3_feature img{
    max-width: 50px;
  }
  .partnersec2_age_testimonials .owl-carousel, .partnersec3_pub_testimonials .owl-carousel{
    padding: 10px;
  }
  .partnersection2_features, .partnersection3_features{
    padding-top: 0;
  }
  .showcase-listing-section{
    padding-top: 0;
  }
  .showcase-listing-section h1{
    font-size: 24px;
  }
  .bootstrap-select .dropdown-toggle .caret{
    background-size: auto 100%;
    padding: 0 10px;
    margin-left: 1px;
    border: 0px;
    width: 4px;
    height: 6px;
  }
  .showcase-post{
    padding: 10px;
  }
  .showcase-post-inner{
    -webkit-box-shadow: 1px 1px 8px 2px #aaa;
    -moz-box-shadow: 1px 1px 8px 2px #aaa;
    box-shadow: 1px 1px 8px 2px #aaa;
    min-height: 104px;
  }
  .single-casestudy-banner .badge-img {
    left: -9px;
    top: -8px;
    width: 120px;
  }
  .managed-services-sec1 div.mini-mobile-wrapper iframe,
  .managed-services-sec1 div.mini-mobile-wrapper video,
  .standard-expandable-section div.mini-mobile-wrapper video{
    padding: 7% 8.1% 7%;
  }
  div.mini-mobile-wrapper.mini-mobile-wrapper--scrollx iframe, div.mini-mobile-wrapper.mini-mobile-wrapper--scrollx video{
    padding: 4.5% 2% 4.3%;
  }
  .clients-section{
  	padding-left: 15px;
  	padding-right: 15px;
  }
  .banner-wrap{
  	padding-top: 0;
  	padding-bottom: 40px;
  }
  .banner-content{
	padding-top: 10px;
	padding-bottom: 30px;
	padding-left: 0;
    padding-right: 0;
	text-align: center;
  }

  /******* Showcase *******/
  .single-showcase-section.mobile .thumb-section{
    padding-left: 20px;
    padding-right: 20px;
  }
  div.laptop-wrapper{
    margin: 0;
  }
  .single-showcase-cont{
    box-shadow: none;
    border: 0;
    border-top: 1px solid #ddd;
    padding: 30px!important;
    margin-top: 0px!important;
    background: transparent;
  }
  div.laptop-wrapper{
    padding-bottom: 70%;
  }
  div.laptop-wrapper iframe,
  div.laptop-wrapper video{
    padding: 6.6% 12% 8.3%
  }
  .desktop.single-showcase-top {
    padding-top: 0px;
    padding-bottom: 10px;
  }
  div.mobile-wrapper{
    min-height: 450px;
    display: block;
    clear: both;
    position: relative;
  }
  div.mobile-wrapper iframe,
  div.mobile-wrapper video{
    position: relative;
    right: auto;
    left: auto;
    width: 300px;
    height: 450px;
    margin: 0 auto;
    display: block;
    padding: 13% 13.6% 13%;
  }
  div.mobile-wrapper video{
    position: relative;
    right: auto;
    left: auto;
    width: 196px;
    height: 400px;
    margin: 0 auto;
    display: block;
    padding: 0% 10px 0%;
  }
  .showcase-post .showcase-post-meta{
    bottom: 0;
    padding: 8px 5px;
    font-size: 10px;
    line-height: 12px;
  }
  .similar-showcases .showcase-post .showcase-post-meta{
    bottom: 0;
    padding: 10px 20px;
    font-size: 12px;
    line-height: 16px;
  }
  .inspiration-post.showcase-post .showcase-post-meta{
    padding: 10px 20px;
  }
  .bootstrap-select>.dropdown-toggle.btn{
    font-size: 14px;
    border: 1px solid #ccc;
    text-align: left;
  }
  .showcase-filter-wrp{
    display: block;
    margin-bottom: 10px;
  }
  .showcase-filter-wrp .bs-caret{
    float: right;
  }
  .showcase-filter-wrp .bootstrap-select.fit-width{
    width: 100%!important;
  }
  .single-showcase-cont h1, .desktop.single-showcase-top .single-showcase-cont h1{
    font-size: 18px;
  }
  .single-showcase-cont{
    font-size: 14px;
  }
  .single-showcase-cont .text-small{
    font-size: 12px;
  }
  .single-showcase-cont .subtext-small{
    margin-bottom: 10px;
  }
  .single-showcase-top{
    padding-bottom: 0;
  }
  .similar-showcases {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .showcase-post img{
    width: 100%;
  }
  .similar-showcases .showcase-post{
    margin-bottom: 20px;
  }
  .single-showcase-top.mobile{
    padding-bottom: 20px;
  }
  .casestudy-post-inner img{
    display: block;
  }
  .casestudy-post-meta{
    padding: 30px;
  }
  .casestudy-post-meta h3{
    font-size: 14px;
    margin-bottom: 0;
  }
  .casestudy-post{
    padding: 2px;
  }
  .similar-casestudies .casestudy-post{
    padding-left: 15px;
    padding-right: 15px;
  }
  .casestudy-post-meta--auto h3{
  	font-size: 12px!important;
  }
  .single-casestudy-section{
    padding-top: 20px;
    font-size: 14px;
  }
  blockquote{
    padding: 0;
    margin: 0 0 20px 0;
  }
  blockquote i.fa-quote-left, blockquote i.fa-quote-right{
    font-size: 10px;
  }
  .single-casestudy-section .entry-title{
    margin-bottom: 20px;
  }
  .single-casestudy-section h3{
    font-size: 20px;
    line-height: 30px;
  }
  .single-casestudy-section .subtitle{
    font-size: 16px;
  }
  .single-casestudy-banner{
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .casestudy-post-inner .badge-img {
    left: 4px;
    top: 6px;
    width: 140px;
  }
  .post-type-archive-casestudy .casestudy-post-inner .badge-img{
    left: -11px;
    top: -9px;
  }
  .wpcf7-form-control-wrap.resume span.wpcf7-not-valid-tip {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 0;
    left: 0;
    right: 0;
    top: 0;
  }
  div.laptop-wrapper video{
    background: url(images/macbook-vd.png) center center no-repeat;
    background-size: contain;
  }

  /******* About Start *******/
  .custom-section h2{
    font-size: 24px;
  }
  .about-post iframe{
    height: 200px;
  }
  .about-post .about-cont, .about-content{
    font-size: 14px;
  }
  .team-member .team-cont{
    bottom: 0;
  }
  .team-member img{
    width: 100%;
    height: auto;
  }
  /******* Contact Start *******/
  .carrer-wraper .subtitle{
    font-size: 14px;
  }
  span.wpcf7-list-item{
    margin-left: 0;
  }
  .carrer-wraper .filter-wraper select{
    margin: 10px 0 20px 0;
    width: 100%;
  }
  .carrer-wraper .form-wraper label{
    height: auto;
    display: block;
    clear: both;
    position: relative;
    padding: 8px 0px;
  }
  .carrer-wraper .form-wraper input[type="submit"]{
    margin: 10px 0;
  }
  .carrer-wraper .subtitle{
    margin-bottom: 10px;
  }
  /******* News Start *******/
  .article-content{
    font-size: 14px;
  }
  .article-title{
    font-size: 20px;
    line-height: 28px;
  }

  /******* Footer CSS Start *******/
  footer{
  	padding-top: 10px;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 12px;
    line-height: 18px;
  }
  .footer-inner{
    text-align: center;
  }
  .footer-copyright{
    text-align: center;
    margin-top: 15px;
  }
  .footer-address{
    margin-top: 20px;
    line-height: 1.4em;
    font-size: 10px;
  }
  .footer-address br{
    display: none;
  }
  .footer-inner h3{
    font-size: 14px;
    line-height: 24px;
    text-align: left;
  }
  .footer-inner h3.mob-toggle-heading:after{
  	content: "\f107";
    font: normal normal normal 16px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    margin-left: 10px;
    color: #8c8c8c;
  }
  .footer-inner h3.open.mob-toggle-heading:after{
	content: "\f106";
  }
  .mob-toggle-content{
  	display: none;
  	text-align: left;
  	padding-bottom: 10px;
  }
  .footer-inner .social-icons{
    display: block;
    margin-bottom: 10px;
    text-align: left;
  }

  /******* Footer CSS End *******/
}
@media(max-width: 340px){
  .homebanner-copy {
    top: 6%;
  }
  .homebanner-copy h1{
    font-size: 20px;
  }
  .home-smarter h3, .home-faster h3, .home-better h3{
    font-size: 16px;
    line-height: 22px;
  }
  div.mobile-wrapper iframe{
    padding: 16.9% 16.6% 15%;
  }
  .managed-services-sec1 div.mini-mobile-wrapper iframe,
  .managed-services-sec1 div.mini-mobile-wrapper video,
  .standard-expandable-section div.mini-mobile-wrapper video{
    padding: 9.2% 10.5% 9%;
  }
  div.mini-mobile-wrapper iframe, div.mini-mobile-wrapper video{
    padding: 5.9% 9.6% 6%;
  }

  .about-post iframe {
    height: 163px;
  }
  .integrations-section img {
    width: 58px;
  }
}

h4.highImpactPaageHeader {
    font-family: 'ProximaNova-Semibold';
    font-size: 22px;
    line-height: 1.4em;
    margin-bottom: 10px;
}

.product-span--highImpact {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.product-span--highImpact img {
    margin: 0;
    max-width: 50px;
    margin-right: 30px;
}

.img-text--span {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.img-text--span img {
    margin: 0;
    max-width: 50px;
    max-height: 50px;
    width: 50px;
    height: 50px;
    margin-right: 30px;
}

.row-align-center {
    display: flex;
    align-items: center;
    margin: 0;
}

.row-align-center-hor {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.custom-section .product-features .img-text--span span{
  font-size: 16px;
}

/* TABLE UI */
/*table-item--custom*/
.table-container .table-col--1 li.table-item--custom,
.table-container .table-col--2 li.table-item--custom,
.table-container .table-col--3 li.table-item--custom,
.table-container .table-col--4 li.table-item--custom,
.table-container .table-col--5 li.table-item--custom {
    font-size: 16px;
    padding: 2px 20px;
    margin-bottom: 2px;
    /* background: rgba(190, 215, 237, 1); */
}

.table-container .table-col--1 li.table-item--custom:first-child,
.table-container .table-col--2 li.table-item--custom:first-child,
.table-container .table-col--3 li.table-item--custom:first-child,
.table-container .table-col--4 li.table-item--custom:first-child,
.table-container .table-col--5 li.table-item--custom:first-child {
    background: rgba(40, 55,70,1);
    color: #fff;
    font-family: 'ProximaNovaA-Bold';
    white-space: nowrap;
}

.table-container .table-col--1 li.table-item--custom:nth-child(2),
.table-container .table-col--2 li.table-item--custom:nth-child(2),
.table-container .table-col--3 li.table-item--custom:nth-child(2),
.table-container .table-col--4 li.table-item--custom:nth-child(2),
.table-container .table-col--5 li.table-item--custom:nth-child(2) {
    background: rgba(174, 197, 231, 1);
}

.table-container .table-col--1 li.table-item--custom:nth-child(3),
.table-container .table-col--2 li.table-item--custom:nth-child(3),
.table-container .table-col--3 li.table-item--custom:nth-child(3),
.table-container .table-col--4 li.table-item--custom:nth-child(3),
.table-container .table-col--5 li.table-item--custom:nth-child(3) {
    background: rgba(174, 197, 231, 0.9);
}

.table-container .table-col--1 li.table-item--custom:nth-child(4),
.table-container .table-col--2 li.table-item--custom:nth-child(4),
.table-container .table-col--3 li.table-item--custom:nth-child(4),
.table-container .table-col--4 li.table-item--custom:nth-child(4),
.table-container .table-col--5 li.table-item--custom:nth-child(4) {
    background: rgba(174, 197, 231, 0.8);
}

.table-container .table-col--1 li.table-item--custom:nth-child(5),
.table-container .table-col--2 li.table-item--custom:nth-child(5),
.table-container .table-col--3 li.table-item--custom:nth-child(5),
.table-container .table-col--4 li.table-item--custom:nth-child(5),
.table-container .table-col--5 li.table-item--custom:nth-child(5) {
    background: rgba(174, 197, 231, 0.7);
}

.table-container .table-col--1 li.table-item--custom:nth-child(6),
.table-container .table-col--2 li.table-item--custom:nth-child(6),
.table-container .table-col--3 li.table-item--custom:nth-child(6),
.table-container .table-col--4 li.table-item--custom:nth-child(6),
.table-container .table-col--5 li.table-item--custom:nth-child(6) {
    background: rgba(174, 197, 231, 0.6);
}

.table-container .table-col--1 li.table-item--custom:nth-child(7),
.table-container .table-col--2 li.table-item--custom:nth-child(7),
.table-container .table-col--3 li.table-item--custom:nth-child(7),
.table-container .table-col--4 li.table-item--custom:nth-child(7),
.table-container .table-col--5 li.table-item--custom:nth-child(7) {
    background: rgba(174, 197, 231, 0.5);
}

.table-container .table-col--1 li.table-item--custom:nth-child(8),
.table-container .table-col--2 li.table-item--custom:nth-child(8),
.table-container .table-col--3 li.table-item--custom:nth-child(8),
.table-container .table-col--4 li.table-item--custom:nth-child(8),
.table-container .table-col--5 li.table-item--custom:nth-child(8) {
    background: rgba(174, 197, 231, 0.4);
}

.table-container.table--scrollx .table-col--5 li.table-item--custom {
    /* height: 58px; */
}

.table-container.table--scrollx .table-col--1 li.table-item--custom,
.table-container.table--scrollx .table-col--2 li.table-item--custom,
.table-container.table--scrollx .table-col--3 li.table-item--custom,
.table-container.table--scrollx .table-col--4 li.table-item--custom,
.table-container.table--scrollx .table-col--5 li.table-item--custom {
    /* height: 58px; */
    /* background: rgba(190, 215, 237, 1); */
}

.table-container.table--scrollx .table-col--1 li.table-item--custom:first-child,
.table-container.table--scrollx .table-col--2 li.table-item--custom:first-child,
.table-container.table--scrollx .table-col--3 li.table-item--custom:first-child,
.table-container.table--scrollx .table-col--4 li.table-item--custom:first-child,
.table-container.table--scrollx .table-col--5 li.table-item--custom:first-child {
    height: 31px;
}


/* CUSTOM MENU */
.page-id-2372 .menu-header-menu-right-container #menu-item-16,
.page-id-2112 .menu-header-menu-right-container #menu-item-16,
.page-id-2342 .menu-header-menu-right-container #menu-item-16,
.page-id-2109 .menu-header-menu-right-container #menu-item-16{
    display: none !important;
}

.page-id-2436 .menu-header-menu-right-container #menu-item-16,
.page-id-2431 .menu-header-menu-right-container #menu-item-16,
.page-id-2443 .menu-header-menu-right-container #menu-item-16,
.page-id-2440 .menu-header-menu-right-container #menu-item-16{
    display: none !important;
}

.page-id-2372 #menu-header-menu-right-1 {
    display: none;
}

.page-id-2112 #menu-header-menu-right-1 {
    display: none;
}

.page-id-2342 #menu-header-menu-right-1 {
    display: none;
}

.page-id-2109 #menu-header-menu-right-1 {
    display: none;
}

/*
page-id-2436
page-id-2431
page-id-2443
page-id-2440
*/

.page-id-2436 #menu-header-menu-right-1 {
    display: none;
}

.page-id-2431 #menu-header-menu-right-1 {
    display: none;
}

.page-id-2443 #menu-header-menu-right-1 {
    display: none;
}

.page-id-2440 #menu-header-menu-right-1 {
    display: none;
}

.max-width-750 {
    max-width: 800px;
    margin: auto;
}

.padding-bottom--none {
    padding-bottom: 0;
}

.page-id-2431 #header {
    background: #273747;
}

.page-id-2431 .navbar-toggle .icon-bar {
    background: #ffffff;
}

.page-id-2431 #site-title .navbar-brand {
    background: url("https://bonzaiassets.bonzai.co/wp-content/uploads/2019/02/bz_logo_inverse1.svg") no-repeat;
    height: 32px;
    width: 120px;
    background-size: 168%;
    background-position: 50% 33%;
}

.page-id-2431 #site-title .navbar-brand img {
    visibility: hidden;
    opacity: 0;
}

.page-id-2431 .integrations-section img {
    margin: 10px 20px !important;
}

.align-brand-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.page-id-2431 .homebanner {
    background-size: cover!important;
}

.download-btn--high .highlighted-button {
    margin-top: 5px;
}

.text-underline--custom {
    position: relative;
    display: inline-block;
}
.text-underline--custom:before {
    content: '';
    width: 100%;
    display: block;
    height: 2px;
    background: #4d8400;
    position: absolute;
    left: 0;
    bottom: -5px;
}

.custom-section .border--sub-header {
    font-family: 'ProximaNovaA-Bold';
    font-size: 30px;
    line-height: 40px;
    color: #273747;
    margin-bottom: 20px;
}

h4.highImpactPaageHeader.border--sub-header {
    font-family: 'ProximaNovaA-Bold';
    font-size: 30px;
    line-height: 40px;
    color: #273747;
    margin-bottom: 20px;
}

.custom-section .border--sub-header .border {
    display: block;
}

/* .table-container .img-text--span span {
    font-size: 16px;
} */

.img-block--curved {
    width: 100%;
    max-width: 850px;
    border-radius: 35px;
    display: block;
    margin: 0 auto;
}

.casestudy-post-inner--auto{
  overflow: hidden;
  margin-bottom: 15px;
  -webkit-box-shadow: 4px 4px 10px 2px #ddd;
  -moz-box-shadow: 4px 4px 10px 2px #ddd;
  box-shadow: 4px 4px 10px 2px #ddd;
  border-radius: 10px;
  background: #fff;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.casestudy-post-meta--auto{
  text-align: center;
    padding: 2%;
}


.video-div--auto{
  position: relative;
  margin:0;
  width:100%;
  height:180px;
  overflow: hidden;
}

.video-div--auto video{
  position:absolute;
  right: 0;
  bottom: 0;
  left:0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

.casestudy-post-meta--auto h3{
  font-family: 'ProximaNovaA-Regular';
  font-size: 18px;
  line-height: 1.4em;
  font-weight: bold;
}

.page-id-2694 .header-menu-right,
.page-id-2954 .header-menu-right{
  display: none !important;
}
body.page-id-2694,
body.page-id-2954{
	padding-top: 0;
}
.casestudybutton--auto{
  text-align: center
}

.bg-video--auto {
    position: absolute;
    top: -62px;
    left: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.bg-video--auto video {
    position: relative;
    top: 50%;
    transform: translateY(-44%);
}

.bg-video--auto.bg-video--auto-retail video {
    /* transform: translate(-7%, -44%); */
    top: 0;
    left: 0;
    transform: translate(0, 0);
    width: 100%;
}

.auto-home {
    position: relative;
}

.page-id-2694 #header {
    z-index: 1;
}

.page-id-2694 #site-title .navbar-brand {
    background: url("https://bonzaiassets.bonzai.co/wp-content/uploads/2019/02/bz_logo_inverse1.svg") no-repeat;
    height: 32px;
    width: 120px;
    background-size: 168%;
    background-position: 50% 33%;
}

.page-id-2694 #site-title .navbar-brand img {
    visibility: hidden;
    opacity: 0;
}

.page-id-2954 #header {
    z-index: 1;
}

.page-id-2954 #site-title .navbar-brand {
    background: url("https://bonzaiassets.bonzai.co/wp-content/uploads/2019/02/bz_logo_inverse1.svg") no-repeat;
    height: 32px;
    width: 120px;
    background-size: 168%;
    background-position: 50% 33%;
}

.page-id-2954 #site-title .navbar-brand img {
    visibility: hidden;
    opacity: 0;
}
.page-id-2954 #menu-header-menu-right>li.highlighted-menu>a {
    color: #ffffff;
    border-color: #ffffff;
}

.page-id-2954 .homebanner-copy {
    top: calc(50% - 62px);
    transform: translateY(-50%);
}

.page-id-2954 .home-smarter--extended h1 {
    font-family: 'ProximaNovaA-Bold';
    font-size: 40px;
    color: #273747;
    text-transform: none;
}

.paragraph-font-style {
    font-size: 16px !important;
    max-width: 360px;
}

.font-style-16 {
    font-size: 16px !important;
}

.padding-top-none {
    padding-top: 0;
}

.mini-laptop-wrapper.laptio-increased-dimensions--left video {
    padding: 4% 12% 7% 12%;
    left: -190px;
    width: 135%;
    height: 110%;
}

.mini-laptop-wrapper.laptio-increased-dimensions--right video {
    padding: 4% 12% 7% 12%;
    right: -190px;
    width: 135%;
    height: 110%;
    left: auto;
}

div.mini-mobile-auto.mini-mobile-wrapper.mini-mobile-auto--increased-size video {
    height: 600px;
    top: -90px;
    padding: 0 2.2% 0%;
}

.casestudy-post-meta--auto.casestudy-post-meta--auto-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.casestudy-post-meta--auto.casestudy-post-meta--auto-custom h3{
    margin: 0;
    padding: 0;
}

@media (max-width: 767px) {

    .text-underline--custom.visible-xs {
        display: table !important;
        margin-left: auto;
        margin-right: auto;
    }

    .custom-section .border--sub-header {
        font-size: 16px;
        line-height: 1.2em;
    }

    h4.highImpactPaageHeader.border--sub-header {
        font-size: 16px;
        line-height: 1.2em;
    }

    /* .text-underline--custom:before {
        display: none;
    } */
    .row-align-center {
        flex-direction: column;
    }

    .row-col-reverse {
        flex-direction: column-reverse;
    }

    .tab-cnt-content.tab-content--mobile video,
    .tab-cnt-content.tab-content--mobile iframe {
        padding: 14.6% 3% 16% 3%;
    }



    .video-div--auto video,div.mini-mobile-auto.mini-mobile-wrapper video
   {
        padding: 14.6% 3% 16% 3%;
    }

    .tab-cnt-content.tab-content--mobile img {
        padding: 14.6% 9.3% 16%;
    }

    .img-text--span {
        margin-bottom: 10px;
    }

    .img-text--span img{
        max-width: 30px;
        max-height: 30px;
    }

    .visible-xs--mar-0 {
        margin-bottom: 0 !important;
    }

    .device-text--margin {
        padding: 0 10px 50px !important;
    }

    .device-text--margin-mobile {
        padding: 50px 10px 50px !important;
    }

    .row-align-center .nav-tabs.vid-text--nav li a:before {
        top: 2px;
    }

    .table-container.table-container--truskin .table-col--4 .table-item--custom:nth-child(8),
    .table-container.table-container--truskin .table-col--4 .table-item--custom:nth-child(7),
    .table-container.table-container--truskin .table-col--4 .table-item--custom:nth-child(6) {
        display: none;
    }

    div.mini-mobile-wrapper.mini-mobile-wrapper--scrollx.mini-mobile-wrapper--scrollx--mob-view iframe,
    div.mini-mobile-wrapper.mini-mobile-wrapper--scrollx.mini-mobile-wrapper--scrollx--mob-view video {
        padding: 13.5% 2% 13.3%;
    }

    .table-container.table--scrollx .table-col--4 .table-item--custom:nth-child(8),
    .table-container.table--scrollx .table-col--4 .table-item--custom:nth-child(7),
    .table-container.table--scrollx .table-col--4 .table-item--custom:nth-child(6),
    .table-container.table--scrollx .table-col--5 .table-item--custom:nth-child(8),
    .table-container.table--scrollx .table-col--5 .table-item--custom:nth-child(7),
    .table-container.table--scrollx .table-col--5 .table-item--custom:nth-child(6) {
        display: none;
    }

    .homebanner--highimpact {
        background: url("https://bonzaiassets.bonzai.co/wp-content/uploads/2019/02/High-Impact-site-mobile-header-39.png") right bottom no-repeat !important;
        min-height: 668px;
        background-size: cover !important;
        background-position: center !important;
    }

    .homebanner--highimpact.homebanner--auto {
        background: url("https://bonzaiassets.bonzai.co/wp-content/uploads/2019/03/Mobile-Banner-Auto.png") right bottom no-repeat !important;
        min-height: 668px;
        background-size: cover !important;
        background-position: center !important;
    }

    .homebanner--highimpact.homebanner--auto.homebanner--auto-custom {
        background: url("https://bonzaiassets.bonzai.co/wp-content/uploads/2019/03/Mobile-Banner-Auto.png") right bottom no-repeat !important;
        min-height: 668px;
        background-size: cover !important;
        background-position: top !important;
    }

    .homebanner--highimpact.homebanner--auto.homebanner--auto-custom.homebanner--auto-custom-retail {
        background: url("https://bonzaiassets.bonzai.co/wp-content/uploads/2019/05/Retail-mobile-header.png") right bottom no-repeat !important;
        min-height: 668px;
        background-size: cover !important;
        background-position: top !important;
    }

    .homebanner--highimpact .homebanner-copy h1,
    .homebanner--highimpact .homebanner-copy h2 {
        color: #fff !important;
    }

    .page-id-2431 .integrations-section img {
        margin: 10px !important;
        width: 80px !important;
    }

    .justify-space-between--mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 0;
        flex-direction: column;
        position: relative;
        top: 0;
    }

    h4.highImpactPaageHeader {
        position: relative;
        top: 30px;
    }

    .page-id-2436 .navbar-collapse .visible-xs img,
    .page-id-2431 .navbar-collapse .visible-xs img,
    .page-id-2443 .navbar-collapse .visible-xs img,
    .page-id-2440 .navbar-collapse .visible-xs img {
        display: none !important;
    }

    .page-id-2436 .navbar-collapse .visible-xs,
    .page-id-2431 .navbar-collapse .visible-xs,
    .page-id-2443 .navbar-collapse .visible-xs,
    .page-id-2440 .navbar-collapse .visible-xs{
        margin-bottom: 20px;
    }

    /* .download-btn--high {
        position: relative;
        top: -14px;
    } */

    .download-btn--high .highlighted-button {
        font-size: 10px;
        white-space: nowrap;
        transform: translateX(-18%);
    }

    .tab-cnt-content.tab-content--mobile video,
    .tab-cnt-content.tab-content--mobile img {
        min-height: 420px;
        max-height: auto;
    }

    .home-smarter--extended .home-smarter-inner img,
    .home-smarter--extended .home-smarter-inner video {
        min-height: 222px;
        max-height: auto;
    }

    .page-id-2694 #header {
        background: transparent !important;
    }

    .page-id-2954 #header {
        background: transparent !important;
    }

    .mini-laptop-wrapper.laptio-increased-dimensions--left video {
        padding: 8% 12% 9.5% 12%;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .mini-laptop-wrapper.laptio-increased-dimensions--right video {
        padding: 8% 12% 9.5% 12%;
        right: 0;
        width: 100%;
        height: 100%;
        left: auto;
    }

    div.mini-mobile-auto.mini-mobile-wrapper.mini-mobile-auto--increased-size video {
        padding: 0 4.2% 0%;
    }

    .mobile-text-center {
        text-align: center;
    }

    .casestudy-post-inner--auto-mobile {
        padding: 3.6% 0% 0% 0%;
        max-height: 280px;
    }

    .casestudy-post-inner--auto-mobile .casestudy-post-meta--auto.casestudy-post-meta--auto-custom {
        position: relative;
        top: -45px;
    }

    .page-id-2694 .homebanner--highimpact.homebanner--auto.homebanner--auto-custom {
        top: -62px;
        height: 100vh;
    }

    .page-id-2954 .homebanner--highimpact.homebanner--auto.homebanner--auto-custom {
        top: -72px;
        height: 100vh;
    }

    .page-id-2954 .homebanner-copy {
        top: 18%;
        height: 100vh;
    }

    .page-id-2954 .homebanner--auto-custom-retail .homebanner-copy {
        top: 90%;
        pointer-events: none;
    }

    .page-id-2694 .homebanner-copy {
        top: calc(10% + 62px);
    }

    .text-content-right--retail,
    .text-content-left--retail {
        text-align: center;
    }

    .page-id-2954 .home-smarter--extended h1 {
        font-size: 24px;
        line-height: 1.2em;
    }
    .clients-section h2{
      font-size: 24px;
    }
}


/******* Cookie Consent *******/
.cc-window {
    font-size: 14px;
    align-items: center;
    justify-content: center;
    padding: 15px 20px 15px;
}

.cc-window .cc-allow {
    display: inline-block;
    font-family: 'ProximaNova-Semibold';
    font-size: 12px;
    background: transparent;
    color: #4d8400;
    padding: 3px 20px;
    border: 2px solid #4d8400;
    border-radius: 10px;
    text-transform: uppercase;
    overflow: hidden;
    margin-left: 10px;
    color: #4d8400;
}

.cc-window a {
    color: #4d8400;
}