/*
Theme Name: Zoomph Dec 2016
Theme URI: http://www.zoomph.com
Author: Zoomph
*/
@import url('https://fonts.googleapis.com/css?family=Roboto:100,400,500,700,900');

:root {
  --gray: #363F45;
  --white: #ffffff;
  --darkNeoBlue: #062C8E;
  --neoBlue: #0D48E5;
  --zoomphNavy:#2E313E;
  --zoomphBlue: #2196f3;
  --zoomphTeal: #1DD1A0;
  --zoomphPurple: #A300FF;
  --zoomphAuburn: #DC1C0C;
  --mutedBlue: #E6EDFF;
  --primary-BodyBackground: #ffffff;
  --primary-BodyColor: #252525;
  --borderColor: #eeeeee;
  --navigationBackgroundColor: #ffffff;
  --base-FontSize: 14px;
  --brandColumns: 6;
  --navigationHeight: 60px; /* used to be 120*/
}

*, 
*:before, 
*:after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--primary-BodyColor);
  background: var(--primary-BodyBackground);
  padding: var(--navigationHeight) 0 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: var(--base-FontSize);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 15px 0;
  line-height: 1;
}

h1 {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0;
}

h2 {
  font-size: 29px;
  font-weight: 900;
}

h3 {
  font-size: 23px;
  font-weight: 900;
}

h4 {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0px;
}

h5 {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
}

h6 {
  color: #999;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

p,
ul {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 24px;
}

p.large {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 36px;
  font-weight: 600;
}

p.small {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 24px;
}

blockquote {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  min-height: 220px;
}
blockquote p {
  position: relative;
  flex-basis: 50%;
  margin: 0;
  padding: 10px;
  font-size: 14px;
  line-height: 1.4;
}
blockquote strong {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1.2em;
  line-height: 1;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.col {
  max-width: 480px;
}

.hide {
  display: none;
}

a {
  text-decoration: none;
  color: var(--zoomphBlue);
  outline: none;
}

a:hover {
  text-decoration: underline;
}

img {
  border: none;
}

.auto-img {
  max-width: 100%;
  margin: 0 auto;
}

input,
select,
textarea,
button {
  outline: none;
}

.all-content-body {
  width: 100%;
  float: left;
  overflow: hidden;
}

ul.checklist {
  list-style-image: url("images/orange-checkmark.png");
}

.dynamic-width {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.home-tags {
  max-height: 110px;
  max-width: 100%;
  display: block;
  margin-bottom: 20px;
}

/* Home page text style */
@keyframes dropHeader {
  0% {
    transform: translateX(-140px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.homepage-header h2 {
  animation-name: dropHeader;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.homepage-header p {
  animation-name: dropHeader;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.5s;
}

.home-frame {
  width: 100%;
  height: 100%;
  position: absolute;
}

.orange {
  background: var(--zoomphBlue);
  color: var(--white);
}

.bold {
  font-weight: 600;
}

.left {
  width: 48%;
  float: left;
  text-align: left;
}

.right {
  width: 48%;
  float: right;
}

.half {
  display: inline-block;
  width: 49%;
  vertical-align: top;
}

.half+.half {
  margin-left: 2%;
}

.clear {
  clear: both;
}

.orange-checkmark {
  list-style-image: url("images/orange-checkmark.png");
}

.eb-img {
  position: relative;
  top: -110px;
}

/*Header*/
.head {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  transition: ease-out .3s;
  /* min-height: 120px; */
  background: rgba(255, 255, 255, 1);
  color: var(--gray);
  z-index: 100;
}

.head.down {
  color: var(--gray);
  background: rgba(255, 255, 255, 1);
}

.head .dynamic-width {
  height: 100%;
}

.shadow-bottom_head {
  background: linear-gradient(top, rgba(0, 0, 0, .25), rgba(0, 0, 0, 0));
  background: -o-linear-gradient(top, rgba(0, 0, 0, .25), rgba(0, 0, 0, 0));
  background: -ms-linear-gradient(top, rgba(0, 0, 0, .25), rgba(0, 0, 0, 0));
  background: -moz-linear-gradient(top, rgba(0, 0, 0, .25), rgba(0, 0, 0, 0));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, .25), rgba(0, 0, 0, 0));
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: -4px;
  left: 0;
  z-index: 10;
}

.logo {
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  transform: translateY(-50%);
  color: currentColor;
  text-decoration: none;
  z-index: 1;
}

.logo>span {
  color: currentColor;
  font-size: 26px;
}

.logo:hover,
.logo:hover>span {
  color: var(--zoomphBlue);
  text-decoration: none;
}

.upper-links {
  position: absolute;
  /* bottom: calc(100% + 5px); */
  top: 5px;
  right: 0;
  text-align: right;
  text-transform: uppercase;
  color: inherit;
  font-size: 12px;
  font-weight: inherit;
  padding: 5px 0;
  opacity: 0.8;
}

.upper-links ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: inherit;
}

.upper-links ul li {
  display: inline-block;
  padding: 0 10px;
}

.upper-links ul li:first-child {
  border-right: 1px solid #ccc;
}

.upper-links ul li a {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}

.all-blocks-head {
  position: relative;

}

.hide-show-button_mob {
  display: none;
  float: right;
  /* border-left: 1px solid #666; */
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  transition: .3s ease-out;
}

.hide-show-button_mob:hover span {
  color: var(--zoomphBlue);
}

.hide-show-button_mob>span {
  font-size: 16px;
  color: inherit;
  line-height: 50px;
  transition: .3s ease-out;
}

.hide-show-button_mob.active>span {
  background-position: top;
  height: 15px;
}

/*--Login--*/
#adminlogin {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 70px;
  width: 445px;
  margin-right: 20px;
  overflow: hidden;
  z-index: 1;
}

#adminlogin iframe {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: none;
}

/*--Main Menu--*/
.menu-container {
  width: 100%;
  transition: ease-out .3s;
  position: relative;
}

#main-menu {
  width: 690px;
  height: var(--navigationHeight);
  list-style-type: none;
  margin: 0 auto;
  color: inherit;
  font-size: 0;
  line-height: 1;
  padding: 0;
}

#main-menu>li {
  position: relative;
  display: inline-block;
}

/* #main-menu>li+li {
  border-left: 1px solid #eee;
} */

#main-menu>li:hover {
  background-color: #eee;
}

#main-menu>li>a,
.head.down #main-menu>li>a {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: inherit;
  transition: .3s linear;
  -webkit-transition: .3s ease-out;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  padding: 20px;
  height: 100%;
}

.head.down .logo>span {
  color: currentColor
}

#main-menu>.current-menu-item>a {
  background: rgba(255, 255, 255, .2);
  border-radius: 20px;
}

#main-menu>li.current-menu-item.menu-item-has-children>a,
#main-menu>li.current-menu-ancestor.menu-item-has-children>a {
  color: #46a6f4;
}

/* Sub Menu */
ul.sub-menu {
  background: var(--white);
  /*flex-flow: wrap;*/
}

ul.sub-menu li {
  display: block;
}

ul.sub-menu li a::before {
  /* content: ""; */
  display: block;
  height: 20px;
  width: 20px;
  background-size: contain;
  margin-right: 10px;
  margin-bottom: 10px;
  float: left
}

ul.sub-menu li a::after {
  display: block;
  font-weight: 400;
  margin-top: 5px;
  line-height: 1.3;
  color: #404040;
}

/* How it works Dropdown */

ul.sub-menu li a::before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background: red;
    border-radius: 3px;
}
ul.sub-menu li#menu-item-28753 a::before {
    background: var(--zoomphBlue);
}
ul.sub-menu li#menu-item-28753 a::after {
  content: "Track and measure social media value in real-time";
}

ul.sub-menu li#menu-item-23288 a::before {
    background: var(--zoomphTeal);
}
ul.sub-menu li#menu-item-23288 a::after {
  content: "Deep interest and behavioral data on custom audiences";
}

ul.sub-menu li#menu-item-23287 a::before{
    background: #756BE7;
}
ul.sub-menu li#menu-item-23287 a::after {
  content: "Tools for launching data-driven campaigns";
}

ul.sub-menu li#menu-item-23286 a::before {
    background: #FFBB80;
}
ul.sub-menu li#menu-item-23286 a::after {
  content: "Real-time analytics and reporting on owned channels";
}

/* Solutions Dropdown */
ul.sub-menu li#menu-item-30839 a::before {
    background: #A38AD4;
}
ul.sub-menu li#menu-item-30839 a::after {
  content: 'Monetize and monitor your visual content';
}

ul.sub-menu li#menu-item-28814 a::before {
    background: #56CAE7;
}
ul.sub-menu li#menu-item-28814 a::after {
  content: 'Pitch new sponsors and grow current sponsor opportunities';
}

ul.sub-menu li#menu-item-28815 a::before {
    background: #DA60AD;
}
ul.sub-menu li#menu-item-28815 a::after {
  content: 'Scale customer research and deepen your understanding segments.';
}

ul.sub-menu li#menu-item-28883 a::before {
   background: #59DBC7;
}
ul.sub-menu li#menu-item-28883 a::after {
  content: 'The most effective solution for GDPR compliance needs.';
}

ul.sub-menu li#menu-item-28945 a::before {
    background: #FC7C7A;
}
ul.sub-menu li#menu-item-28945 a::after {
  content: 'Contests, microsites, UGC hubs, and more.';
}

/* Solutions Dropdown */
ul.sub-menu li#menu-item-31841 a::before {
    background: #A38AD4;
}
ul.sub-menu li#menu-item-28917 a::before {
    background: #45B6AE;
}
ul.sub-menu li#menu-item-28948 a::before {
    background: #FFBB44;
}

/*
ul.sub-menu::before {
    content: 'Transform your data into people-based intelligence';
    display: inline-block;
    font-size: 24px;
    padding: 20px;
    line-height: 20px;
    width: 500px !important;
}
*/
#main-menu>li>ul>li>ul>li {
  transition: ease-out .3s;
  color: var(--white);
}

#main-menu>li>a:hover {
  text-decoration: none;
  opacity: 0.7;
}

#main-menu>li.menu-item-has-children>a {
  /*background-image: url(images/bg-menu_has-children.png);*/
  background-repeat: no-repeat;
  background-position: center 25px;
}

#main-menu>li>ul,
#main-menu>li>.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 320px;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: var(--white);
  border-radius: 0px 0px 5px 5px;
  border-width: 0 1px 1px 0;
  box-shadow: 0 12px 24px rgba(45, 62, 80, 0.12);
  transition: all 0.3s ease-in-out 0s,
    visibility 0s linear 0.3s,
    z-index 0s linear 0.01s;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  display: none;
}

#main-menu>li>ul>li {
  position: relative;
  float: none;
  transition: .3s linear;
  background-color: var(--white);
}

#main-menu>li>ul>li+li {
  border-top: 1px solid var(--borderColor);
}

#main-menu>li>ul>li>a {
  padding: 10px;
}

#main-menu li:hover>ul {
  /* shows sub-menu */
  opacity: 1;
  visibility: visible;
  z-index: 1;
  display: block;
  transition-delay: 0s, 0s, 0.3s;
  /* this removes the transition delay so the menu will be visible while the other styles transition */
}

@media (max-width:900px) {

  #main-menu li:hover>ul {
    display: none;
  }
}
#main-menu>li>ul.active {
  height: auto;
  display: block;
}

#main-menu>li>ul>li>a,
#main-menu>li>ul>li>ul>li>a {
  font-size: 14px;
  color: #404040;
  transition: .3s linear;
  display: block;
  padding: 0px;
  font-weight: 700;
  letter-spacing: 0;
  padding: 20px 25px;
}

#main-menu>li>ul>li:hover {
  background-color: var(--borderColor);
}

#main-menu>li>ul>li>a:hover,
#main-menu>li>ul>li>ul>li>a:hover {
  color: var(--zoomphBlue);
  text-decoration: none;
  background: #F4F5F7;
}

#main-menu>li>ul>li>ul>li:hover {
  text-decoration: none;
  background-color: var(--white);
}

#main-menu>li>ul>li.menu-item-has-children>a {
  background-image: url(images/bg-menu_has-sub-children.png);
  background-repeat: no-repeat;
  background-position: 190px center;
}

#main-menu>li>ul>li>ul {
  list-style: none;
  margin: 0;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: -2;
  width: 200px;
  background: var(--white);
  left: 190px;
  top: 0;
  transition: ease-out .3s;
  border: solid var(--zoomphAuburn);
  border-width: 0 0 0 1px;
}

#main-menu>li>ul>li:hover>ul {
  visibility: visible;
  opacity: 1;
  top: 0;
  left: 200px;
}

/*Main Menu Icons*/

#main-menu li {
  height: 100%;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: 10px center;
  line-height: 1;
}

#main-menu>li>ul>li>ul>li {
  background-size: 15px;
  background-position: 15px center;
}

/*End Main Menu Icons*/

#add-mob-menu,
#add-mob-icon-menu {
  display: none;
}

#sided-menu {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

#sided-menu>li {
  display: inline-block;
}

#sided-menu>li+li {
  margin-left: 20px;
}

#sided-menu>li>a {
  /*text-transform: uppercase;*/
  font-weight: 500;
  color: inherit;
}

#sided-menu>li>a>span {
  position: relative;
  top: 1px;
}

#sided-menu>li>a:hover {
  text-decoration: none;
  color: var(--zoomphBlue);
  transition: .3s ease-out;
  -webkit-transition: .3s ease-out;
}

#sided-menu>li+li>a {
  color: var(--white);
  display: block;
  background: transparent;
  background: var(--zoomphBlue);
  padding: 14px 20px;
  margin: 0;
  border-radius: 3px;
  transition: .3s ease-out;
  letter-spacing: 1px;
  line-height: 15px;
  font-weight: 500;
}

.head.down #sided-menu>li+li>a {
  border-color: transparent;
  background: var(--zoomphBlue);
}

#sided-menu>li+li>a:hover,
.head.down #sided-menu>li+li>a:hover {
  color: var(--white);
  background: var(--zoomphBlue);
  border-color: transparent;
  text-shadow: none;
  text-decoration: none;
  transition: .3s ease-out;
  -webkit-transition: .3s ease-out;
}

.hide-show-block_mob {
  display: block;
}

.blocks-other-head {
  display: block;
  width: 100%;
  height: auto;
  height: 24px;
  padding: 8px 0;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
}

.blocks-other-head>p {
  margin: 0;
  padding: 3px 20px;
  background: no-repeat 15px center;
  font-size: 13px;
  letter-spacing: 0;
  color: #a19fa1;
  display: inline;
}

.blocks-other-head>p>a {
  color: var(--white);
}

.blocks-other-head>p>a:hover {
  color: var(--zoomphBlue);
  text-decoration: none;
}

.phone-icon {
  display: inline-block;
  text-decoration: none;
}


/*End Header*/
.full-screen-bg {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0px;
  left: 0;
  background-size: cover;
  background-position: top center;
  background-color: var(--primary-BodyBackground);
}

/*Hero*/
.head-splash {
  width: 100%;
  min-height: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
	display: flex;
  padding: 30px 0;
}
@media (max-width:900px) {
  .head-splash {
    min-height: 350px;
  }
}

.parallax-hero {
  position: fixed;
  min-height: 750px;
  width: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: top center;
  background-color: var(--primary-BodyBackground);
  z-index: -1;
}

.home .parallax-hero {
  opacity: 1;
}

.parallax-hero.tall {
  height: 650px;
}

.hero {
  color: var(--primary-BodyColor);
  text-align: center;
}

/* .home-hero .divider,
.hero .divider {
  background-color: rgba(255, 255, 255, .3);
} */

.home-hero p,
.hero p {
  font-size: 18px;
}

.hero.light p,
.hero.light {
  color: #5E646E;
}

.block-full.hero {
  display: flex;
  min-height: 450px;
  padding: 2% 0;
}

.hero.short {
  padding-top: 30px;
  padding-bottom: 30px;
  max-height: 300px;
  min-height: 200px;
}

.block-full.hero.small {
  padding-top: 3%;
  padding-bottom: 3%;
}

.block-full.intro-cta,
.block-full.brand-logos {
  padding-top: 3%;
  padding-bottom: 3%;
}

.no_bg {
  color: var(--primary-BodyColor);
  background-color: var(--primary-BodyBackground);
}

.no_bg+.hero h1,
.no_bg+.hero p {
  color: #5E646E;
}

.hero .dynamic-width {
  text-align: center;
}

.bc {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 15px 0;
}

.bc a {
  color: var(--zoomphBlue);
  text-decoration: underline;
  transition: ease-out .3s;
}

.bc a:hover {
  text-decoration: none;
  color: var(--zoomphBlue);
}

/*End Hero*/

/*Content*/
.data-flow img {
  width: 100%;
}

.block-full {
  width: 100%;
  background-size: cover;
  float: left;
  position: relative;
  padding: 3% 0;
}

.block-full.image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.block-full.strip-pad {
  width: 100%;
  padding: 0;
}

.center .link-button {
  margin: 0 auto;
}

.block-full.gray {
  background-color: #f7f7f7;
}

.block-full.blue {
  background-color: var(--zoomphBlue);
  color: var(--white) !important;
}

.block-full.dark-blue {
  background-color: #373F48;
  color: var(--white) !important;
}

.orange-gradient {
  background: rgba(234, 121, 101, 1);
  background: -moz-linear-gradient(-45deg, rgba(234, 121, 101, 1) 0%, rgba(245, 193, 136, 1) 100%);
  background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(234, 121, 101, 1)), color-stop(100%, rgba(245, 193, 136, 1)));
  background: -webkit-linear-gradient(-45deg, rgba(234, 121, 101, 1) 0%, rgba(245, 193, 136, 1) 100%);
  background: -o-linear-gradient(-45deg, rgba(234, 121, 101, 1) 0%, rgba(245, 193, 136, 1) 100%);
  background: -ms-linear-gradient(-45deg, rgba(234, 121, 101, 1) 0%, rgba(245, 193, 136, 1) 100%);
  background: linear-gradient(135deg, rgba(234, 121, 101, 1) 0%, rgba(245, 193, 136, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ea7965', endColorstr='#f5c188', GradientType=1);
}

.orange-bg {
  background-color: var(--zoomphBlue);
  max-height: 420px;
  overflow: hidden
}

.block-full.charcoal {
  background-color: #252525;
  color: var(--white);
}

.block-full.white {
  background-color: var(--white);
}

.block-full.white-text {
  color: var(--white);
}

.name_block-full {
  margin: 0 0 20px;
  font-weight: 300;
  text-align: center;
  width: 100%;
  float: left;
}

.name_block-full.big {
  font-size: 48px;
}

.divider {
  display: block;
  width: 50px;
  height: 4px;
  line-height: 0.3;
  margin: 20px 0;
  padding: 0;
  color: inherit;
  background-color: currentColor;
  opacity: .3;
}

.divider.center,
.center .divider {
  margin: 20px auto;
}

.center .divider:before,
.divider.center:before {
  transform-origin: center;
}

.zendesk-logo {
  background: url('./images/Zendesk.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 180px;
  height: 40px;
  margin: 0 auto;
}

/*End Content*/
.home .hall-of-fame-item {
  width: 140px;
  height: 35px;
  background-size: contain;
}

/*Callout*/
.oragnge-callout {
  width: 100%;
  background: var(--zoomphBlue);
  padding: 70px 0;
  text-align: center;
  color: var(--white);
  text-transform: uppercase;
  background-image: url('images/callout-arrows.png');
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 4px;
  float: left;
  display: block;
  transition: ease-out .3s;
}

a.oragnge-callout:hover {
  background-color: var(--zoomphAuburn);
  text-decoration: none;
}

.callout {
  text-align: left;
}

.callout ul {
  width: 360px;
  margin: 0 70px 0 50px;
  top: 0;
  position: relative;
  text-align: left;
  list-style-image: url("images/checkmark.png");
  display: inline-block;
}

.callout h2 {
  font-weight: 700;
  top: -17px;
  margin: 0;
  display: inline;
  top: -15px;
  position: relative;
}

.callout h2 span.callout-dollar {
  font-size: 16px;
  position: relative;
  top: -11px;
  display: inline;
}

.callout h2 span.callout-number {
  font-weight: 400;
  display: inline;
}

.callout h2 span.callout-month {
  font-size: 16px;
  display: inline;
  letter-spacing: 1px;

}

.callout .link-button {
  top: -25px;
  position: relative;
}

/*End Callout*/
.split-img {
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
  width: auto;
  height: 400px;
  margin: 20px auto;
  display: block;
  transition: .3s ease-out;
  border: 0;
  text-decoration: none
}

.home-content .dynamic-width {
  margin: 50px auto;
}

.home-content h2 {
  max-width: 740px;
}

.home-content h4 {
  margin-top: 80px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.home-content p {
  font-size: 20px;
  color: #999;
  line-height: 30px;
}

.home-content a {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.home-cx div {
  display: inline-block;
}

.home-cx div span {
  font-size: 40px;
  font-weight: 900;
  display: block;
}

.home-cx {
  margin: 20px 0;
}

.home-cx div {
  padding: 0 20px 20px;
  width: 150px;
  text-transform: uppercase;
  font-weight: 600
}

.home-cx div+div {
  border-left: 1px solid #ccc;
}

/*end large callout*/

/*list blocks blog*/
.list-blocks-blog {
  width: 100%;
  float: left;
  text-align: center;
  height: auto !important;
  min-height: 500px;
}

.list-blocks-blog .block-blog {
  display: inline-block;
  width: 280px;
  margin: 0 7px 15px 8px;
  border: 1px solid #eaeaea;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  border-radius: 5px;
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  vertical-align: top;
  min-height: 446px;
  max-height: 446px;
  position: relative;
  /*asphalt*/
}

.list-blocks-blog .block-blog>div {
  transition: .4s linear;
  -webkit-transition: .4s linear;
  background: var(--white);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.list-blocks-blog .block-blog>div:hover {
  background: #f7f7f7;
  box-shadow: 0px 2px 1px -2px rgba(0, 0, 0, 0.25);
}

.list-blocks-blog .block-blog.first {
  width: 579px;
}

.list-blocks-blog .block-blog .image_block-post {
  float: left;
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  line-height: 0;
}

.list-blocks-blog .block-blog .image_block-post>img {
  width: 100%;
  height: 100%;
}

.list-blocks-blog .block-blog.first .image_block-post>img {
  position: relative;
  left: 0;
  right: 0;
  margin: auto;
  width: auto;
  left: -75px;
}

.list-blocks-blog .block-blog .image_block-post .link_block-post {
  position: absolute;
  top: 95%;
  width: 100%;
  height: 100%;
  background: url(images/bg-block-blog_asphalt.png);
  text-align: center;
  transition: .4s linear;
  -webkit-transition: .4s linear;
}

.list-blocks-blog .block-blog:hover .image_block-post .link_block-post {
  top: 0;
}

.list-blocks-blog .block-blog .all-content_block-post {
  clear: both;
  padding: 20px 20px 15px;
  text-align: left;
}

.list-blocks-blog .block-blog .all-content_block-post .link-cat_block-post {
  font-size: 15px;
  text-transform: uppercase;
}

.list-blocks-blog .block-blog .all-content_block-post .name_block-post {
  font-size: 24px;
  font-weight: 300;
  line-height: 24px;
  margin: 0;
  padding: 10px 0 0;
  max-height: 50px;
  overflow: hidden;
}

.list-blocks-blog .block-blog .all-content_block-post .date_block-post {
  font-size: 16px;
  font-weight: 300;
  margin: 0;
  padding: 5px 0 0;
}

.list-blocks-blog .block-blog .all-content_block-post .content_block-post {
  margin: 0;
  padding: 10px 0 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
}

.list-blocks-blog+.link-button {
  margin: 25px auto 0;
  display: block;
  clear: both;
}

/*end list blocks blog*/

/*block text*/
.block-text_block-full {
  max-width: 620px;
}

.block-text_block-full.center {
  text-align: center;
  margin: auto;
}

.block-text_block-full.big {
  max-width: 820px;
}

.block-text_block-full .name_block-text_block-full,
.block-text_block-full .widgettitle {
  font-size: 48px;
  font-weight: 300;
  margin: 0;
  color: var(--white);
}

.block-text_block-full.dark .widgettitle,
.block-text_block-full .name_block-text_block-full.dark {
  color: #404040;
}


.brand-bar {
  text-align: center;
  width: 100%;
  max-width: 1180px;
}

.brand-bar span {
  color: #777777;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 0 40px 0 0;
  text-transform: uppercase;
  top: -30px;
  position: relative;
}

.brand-bar img {
  display: inline;
}


.text_block-text_block-full a,
.text_content_blog-post a {
  color: var(--zoomphBlue);
  text-decoration: none;
}

.text_block-text_block-full a:hover {
  text-decoration: underline;
}

/*end block text*/

/*block works*/
.work-featured-container {
  background-size: cover;
}

.work-featured-first {
  padding: 100px 0 40px 0;
  width: 100%;
  min-height: 350px;
}

.work-featured-first ul,
.work-featured ul {
  padding: 0;
  margin: 0;
}

.work-featured .features {
  margin: 0 auto;
  text-align: center;
}

.work-featured-first .features span,
.work-featured .features span {
  color: var(--white);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  padding: 0 20px 0 30px;
  margin: 0 auto;
  list-style: none;
  background-image: url('images/dot.png');
  background-position: left center;
  background-repeat: no-repeat;
}

.work-featured-first .features span:first-child,
.work-featured .features span:first-child {
  padding-left: 0;
  background: none;
}

.work-featured-first .work-featured-logo {
  margin: 0;
  background-position: left;
}

.work-featured {
  width: 50%;
  float: left;
  padding: 100px 0 40px;
  min-height: 400px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  transition: ease-out .3s;
}

.work-featured:hover,
.work-featured-container:hover {
  cursor: pointer;
}

.work-featured .work-featured-line {
  width: 1px;
  height: 540px;
  background: #999;
  position: absolute;
  top: 0;
  right: 0;
}

.work-featured-logo {
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 350px;
  height: 100px;
  margin: 0 auto;
}

.work-arrow {
  background-image: url('images/work-arrow.png');
  width: 68px;
  height: 68px;
  display: block;
  transition: ease-out .3s;
  margin: 20px 0;
}

.work-featured:hover a.work-arrow,
.work-featured-container:hover a.work-arrow,
a.work-arrow:hover {
  opacity: .5;
}

.work-featured .work-arrow {
  margin: 20px auto;
}

.hall-of-fame-item {
  width: 240px;
  height: 140px;
  border-radius: 5px;
  margin: 8px;
  background-position: center center;
  background-color: var(--white);
  background-repeat: no-repeat;
  display: inline-block;
}

.home .hall-of-fame-item {
  background-color: transparent;
}

.featured-client {
  width: 230px;
  height: 80px;
  margin: 0;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  border-right: 1px solid #e7e7e7;
}

.featured-client:last-child {
  border: none;
}

.home-featured-clients {
  -webkit-animation: bg-move 120s linear infinite;
  -moz-animation: bg-move 120s linear infinite;
  -o-animation: bg-move 120s linear infinite;
  animation: bg-move 120s linear infinite;
  background-image: url("images/Brands-That-Trust-Zoomph.png");
  background-repeat: repeat;
  height: 150px;
  margin: 0 auto;
  /*SIZE*/
  background-size: 1510px;
  height: 63px;
  opacity: 0.5;
}

.white-fade-left {
  background: url("images/white-fade-left.png") repeat-y;
  float: left;
  height: 150px;
  width: 64px;
}

.white-fade-right {
  background: url("images/white-fade-right.png") repeat-y;
  float: right;
  height: 150px;
  width: 64px;
}

@-webkit-keyframes bg-move {
  from {
    background-position: 0 0
  }

  to {
    background-position: -3555px 0
  }
}

@-moz-keyframes bg-move {
  from {
    background-position: 0 0
  }

  to {
    background-position: -3555px 0
  }
}

@-o-keyframes bg-move {
  from {
    background-position: 0 0
  }

  to {
    background-position: -3555px 0
  }
}

@keyframes bg-move {
  from {
    background-position: 0 0
  }

  to {
    background-position: -3555px 0
  }
}

.stat-container {
  min-height: 155px;
}

.stat {
  width: 27%;
  float: left;
  border-left: 1px solid #e7e7e7;
  padding: 0 3%;
}

.text_block-animated .content_text_block-animated .stat p {
  padding: 0;
  margin: 0 0 10px 0;
}

.stat:first-child {
  border: none
}

.stat h2 {
  color: var(--zoomphBlue);
}

.stats {
  float: left;
}

/**/
.list-blocks-works {
  float: left;
  width: 100%;
  padding: 0;
  text-align: center;
}

.list-blocks-works .block-works {
  display: inline-block;
  max-width: 300px;
  min-width: 280px;
  vertical-align: top;
}

.list-blocks-works .block-works:first-child {
  margin: 0 4% 0 0;
}

.list-blocks-works .block-works:last-child {
  margin: 0 0 0 4%;
}

.list-blocks-works .block-works .image_block-works {
  width: 225px;
  height: 225px;
  overflow: hidden;
  margin: auto;
  border-radius: 50%;
  position: relative;
}

.list-blocks-works .block-works .image_block-works>img {
  min-width: 225px;
  min-height: 225px;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 50%;
}

.block-works-hover {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: .3s linear;
  -webkit-transition: .3s linear;
  border-radius: 150px;
  background: url(images/bg-block-works_hover.png);
  text-align: center;
}

.block-works-hover div {
  display: block;
  border-radius: 25px;
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
  margin: 40% auto 0;
  padding: 0;
  width: 50px;
  background-color: var(--white);
  color: #000;
}

.list-blocks-works a:hover>div>div>div {
  visibility: visible;
  opacity: 1;
}

.list-blocks-works a:hover {
  text-decoration: none;
}

.list-blocks-works .block-works .name_block-works {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  padding: 30px 0 0;
}

.list-blocks-works .block-works .sub-name_block-works {
  margin: 0;
  font-size: 18px;
  font-weight: 300;
}

.content_block-works {
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  margin: 0;
  padding: 5px 0 0;
}

.list-blocks-works a:hover>div>p.learn_block-works {
  text-decoration: underline;
}

.list-blocks-works .block-works .learn_block-works {
  text-transform: uppercase;
  text-align: center;
  color: var(--zoomphBlue);
  font-size: 15px;
  font-weight: 400;
}

/*end block works*/

/*other block text*/
.other-block-text_block-full {
  font-size: 35px;
  font-weight: 300;
  line-height: 50px;
  margin: 0 30px 0 0;
  text-align: center;
  top: -8px;
  position: relative;
}

.other-block-text_block-full .link-button {
  margin: 0 0 0 40px;
  position: relative;
  top: -2px;
}

/*end other block text*/

/*list blocks clients*/
.list-blocks-clients {
  width: 100%;
  float: left;
  clear: both;
  text-align: center;
}

.list-blocks-clients .block-client {
  max-width: 280px;
  display: inline-block;
  vertical-align: top;
  margin: 0 7px 15px 8px;
}

.list-blocks-clients .block-client .image_block-client {
  width: 280px;
  height: 280px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  background: var(--white);
  overflow: hidden;
  transition: .2s linear;
  -webkit-transition: .2s linear;
  position: relative;
}

.list-blocks-clients .block-client .image_block-client>a {
  display: block;
  line-height: 0;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
}

.list-blocks-clients .block-client .image_block-client>a>img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: .2s linear;
  -webkit-transition: .2s linear;
}

.list-blocks-clients .block-client .image_block-client>a>img+img {
  visibility: hidden;
  opacity: 0;
}

.list-blocks-clients .block-client .image_block-client>a:hover>img {
  visibility: hidden;
  opacity: 0;
}

.list-blocks-clients .block-client .image_block-client>a:hover>img+img {
  visibility: visible;
  opacity: 1;
}

.list-blocks-clients .block-client .open-modal_block-client {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  transition: .3s linear;
  -webkit-transition: .3s linear;
  opacity: .1;
  width: 24px;
  height: 24px;
  background: url(images/bg-client-img.png) no-repeat;
  display: none;
}

.list-blocks-clients .block-client .open-modal_block-client:hover {
  opacity: 1;
}

.list-blocks-clients.work .open-modal_block-client {
  display: block;
}

.list-blocks-clients .block-client .name_block-client {
  margin: 0;
  padding: 15px 0 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 22px;
}

.list-blocks-clients .block-client .sub-name_block-client {
  margin: 0;
  font-size: 18px;
  font-weight: 300;
}

.list-blocks-clients .block-client .description_block-client {
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  margin: 0;
  padding: 10px 0 0;
}


.list-blocks-clients .link-button {
  margin: 25px auto 0;
  display: block;
}

/*end list blocks clients*/

/*block other bottom*/
.block-other-bottom {
  width: 100%;
  float: left;
  text-align: center;
  padding: 15px 0 30px;
}

.block-other-bottom>p {
  display: inline-block;
  margin: 0 15px;
  padding: 0 0 0 30px;
  background: no-repeat left center;
  font-size: 18px;
}

.block-other-bottom .mail_blocks-other-bottom {
  background-image: url(images/mail_bottom.png);
}

.block-other-bottom .phone_blocks-other-bottom {
  background-image: url(images/phone_bottom.png);
}

.block-other-bottom .local_blocks-other-bottom {
  background-image: url(images/local_bottom.png);
}

.block-other-bottom .directions_blocks-other-bottom_mob {
  display: none;
}

/*end block other bottom*/

/*form*/
.block-full .cform {
  font: normal 400 14px/normal museo-sans, sans-serif;
  background: var(--white);
  width: 100%;
  border: none;
  border-radius: 0;
}

.block-full .cf_info {
  display: none;
}

.block-full .cf-ol {
  width: 100%;
  float: left;
  border: none;
  margin: 0 !important;
  padding: 0 !important;
}

.block-full .cf-ol>li {
  line-height: normal;
  margin: 0 !important;
}

.block-full .cf-ol>li label {
  width: auto;
  margin: 0;
  display: block;
  color: #404040;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.block-full .cf-ol>li label span {
  width: auto;
}

.block-full .cf-ol>li input,
.block-full .cf-ol>li textarea,
.block-full .cf-ol>li select {
  width: 100%;
  padding: 9px 10px;
  margin: 0;
  background: var(--white);
  border: 1px solid #dee1e3;
  border-radius: 5px;
  font: normal 400 16px/normal museo-sans, sans-serif;
  transition: .3s linear;
  -webkit-transition: .3s linear;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  color: rgba(64, 64, 64, .6);
}

.block-full .cf-ol>li input[disabled] {
  border-color: #ebedee !important;
  background: #ebedee !important;
  color: #bdc3c7;
}

.block-full .cf-ol>li input:focus,
.block-full .cf-ol>li textarea:focus,
.block-full .cf-ol>li select:focus {
  border-color: #c5c5c5;
  color: #404040;
}

.block-full .cf-ol>li input.cf_error,
.block-full .cf-ol>li textare.cf_error {
  border-color: var(--zoomphBlue);
  background: #feedf0;
  color: var(--zoomphBlue);
}

.block-full .cf-ol>li textarea {
  resize: none;
}

.block-full .cf-ol>li.cf_li_err {
  background: none !important;
  border: none;
  padding: 0 10px 15px !important;
  margin: 15px auto 0 auto !important;
}

.block-full .cf-ol>li.cf_li_err label,
.block-full .cf-ol>li.cf_li_err label span {
  color: var(--zoomphBlue);
}

.block-full .cf-ol>li .reqtxt,
.block-full .cf-ol>li .emailreqtxt {
  display: none;
}

.block-full .cf-sb {
  margin-top: 20px;
  text-align: center;
  float: left;
  width: 100%;
  padding: 0 !important;
}

.block-full .cf-sb .sendbutton {
  margin: 0;
  border: none !important;
  text-shadow: none;
  vertical-align: baseline;
  font-weight: 400;
  cursor: pointer;
}

/*home*/
.block-full .cform.home .cf-ol li {
  display: inline-block;
  clear: left;
  padding: 0 10px 20px !important;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  width: 49.9%;
}

.block-full .cform.home .cf-ol li:nth-last-child(2) {
  float: none;
  clear: right;
}

.block-full .cform.home .cf-ol li:last-child {
  float: none;
  clear: right;
}

.block-full .cform.home .cf-ol li label span {
  display: none;
}

.block-full .cform.home .cf-ol li input,
.block-full .cform.home .cf-ol li textarea {
  width: 100%;
}

.block-full .cform.home .cf-ol li textarea {
  height: 160px;
}

.block-full .cform.home .sendbutton {
  background: #741278;
}

.block-full .cform.home .sendbutton:hover {
  background: #5c0b5f;
  border: none;
  box-shadow: none;
}

/*---*/
/*end form*/

/*block list mob*/
.block-list-mob {
  width: 100%;
  float: left;
  position: relative;
  clear: both;
}


.home-carousel {
  position: relative;
}

.home-carousel .slidesjs-container,
.home-carousel .slidesjs-control {
  max-height: 490px;
}

.home-carousel .slidesjs-pagination {
  width: 100%;
}

.home-carousel .slidesjs-navigation {
  width: 23px;
  height: 40px;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 50;
  margin: auto;
  transition: .3s linear;
  -webkit-transition: .3s linear;
  text-indent: -9999em;
  overflow: hidden;
}

.home-carousel .slidesjs-navigatio:hover {
  opacity: .7;
}

.home-carousel .slidesjs-navigation.slidesjs-previous {
  left: 0;
  background: url(images/prev_home-slider.png) no-repeat;
}

.home-carousel .slidesjs-navigation.slidesjs-next {
  right: 0;
  background: url(images/next_home-slider.png) no-repeat;
}

/*end block list mob*/

/*page about*/
.block-full.about {
  background: #B37E3C;
  padding: 75px 0;
  background-size: 100% auto;
  height: 215px;
  background-position: center top;
}

.block-full.about .block-text_block-full {
  max-width: 750px;
}

.block-full.about .block-text_block-full .name_block-text_block-full {
  font-size: 48px;
  color: var(--white);
}

.block-full.about .block-text_block-full .text_block-text_block-full {
  color: var(--white);
  font-size: 24px;
  font-weight: 300;
  line-height: 28px;
}

.about-callout {
  line-height: 36px;
  font-size: 16px;
}

.about-callout .left {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
}

.all-blocks-staff {
  float: left;
  width: 100%;
}

.all-blocks-staff+.all-blocks-staff {
  padding: 30px 0 0;
}

.all-blocks-staff .name_all-blocks-staff {
  font-size: 36px;
  font-weight: 300;
  margin: 0;
  padding: 0 0 0 12px;
  text-align: center;
}

.all-blocks-staff .link-button {
  display: block;
  margin: auto;
  clear: both;
}

.list-blocks-staff {
  text-align: center;
  float: left;
  width: 100%;
  padding: 10px 0 25px;
}

.block-employee {
  display: inline-block;
  width: 280px;
  min-height: 396px;
  margin: 0 7px 15px 8px;
  padding: 0 0 15px;
  background: var(--white);
  box-shadow: 1px 1px 2px -1px rgba(0, 0, 0, .25);
  border: 1px solid #eaeaea;
  border-radius: 5px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  overflow: hidden;
  position: relative;
  transition: .3s linear;
  -webkit-transition: .3s linear;
  text-align: center;
}

.block-employee:hover {
  border-color: rgba(0, 0, 0, .25);
}

.block-employee .images_block-employee {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
}

.block-employee .images_block-employee>img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #aaa;
  transition: .3s linear;
  -webkit-transition: .3s linear;
  border-radius: 5px 5px 0 0;
}

.block-employee .images_block-employee>img+img {
  background: #eee;
  visibility: hidden;
  opacity: 0;
}

.block-employee:hover .images_block-employee>img {
  opacity: 0;
  visibility: hidden;
}

.block-employee:hover .images_block-employee>img+img {
  opacity: 1;
  visibility: visible;
}

.block-employee .name_block-employee {
  font-size: 24px;
  font-weight: 400;
  margin: 25px 0 0;
}

.block-employee .sub-name_block-employee {
  font-size: 18px;
  font-weight: 300;
  margin: 0;
}

.block-employee .desc_block-employee {
  display: none;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  padding: 30px 10px 40px;
  margin: 0;
}

.block-employee .soc-links_block-employee {
  float: left;
  width: 100%;
  padding: 35px 0;
}

.block-employee .soc-links_block-employee>a {
  display: inline-block;
  width: 26px;
  height: 22px;
  margin: 0 3px;
  background: no-repeat center;
  background-size: 100%;
  transition: .3s linear;
  -webkit-transition: .3s linear;
  text-align: center;
}

.block-employee .soc-links_block-employee a.tw span {
  color: #4099ff;
  font-size: 24px;
  transition: .3s linear;
  -webkit-transition: .3s linear;
}

.block-employee .soc-links_block-employee .in {
  background-image: url(images/soc_link_employee_in.png);
}

.block-employee .soc-links_block-employee a.tw:hover,
.block-employee .soc-links_block-employee a.tw:hover span {
  text-decoration: none;
  font-size: 26px;
}

.block-employee .more_block-employee {
  font-weight: bold;
  font-size: 34px;
  line-height: 16px;
  height: 18px;
  width: 18px;
  display: inline-block;
  transition: .3s linear;
  -webkit-transition: .3s linear;
  opacity: .3;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  margin: auto;
  font-family: Arial, sans-serif;
}

.block-employee .more_block-employee:hover {
  text-decoration: none;
  opacity: 1;
}

.block-employee .open-modal_block-employee {
  font-weight: bold;
  font-size: 34px;
  line-height: 16px;
  height: 18px;
  position: absolute;
  top: 0;
  right: 2%;
  bottom: 0;
  margin: auto;
  z-index: 1;
  display: none;
}

.block-employee .open-modal_block-employee:hover {
  text-decoration: none;
}

.block-employee .other_block-employee {
  opacity: 0;
  visibility: hidden;
  background: var(--zoomphBlue);
  transition: .3s linear;
  -webkit-transition: .3s linear;
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 0;
  border-radius: 0 0 5px 5px;
}

.block-employee:hover .other_block-employee {
  opacity: 1;
  visibility: visible;
}

.block-employee.block-apply-now {
  background: url(images/bg-block-apply-now.jpg) no-repeat;
  background-size: cover;
}

.block-employee.block-apply-now .name_block-employee {
  font-weight: 300;
  margin: 130px 0 30px;
}

.block-employee.block-apply-now .name_block-employee>span {
  font-weight: 400;
}

.block-employee.active {
  background: #404040;
  color: var(--white);
  border-color: rgba(0, 0, 0, .25);
}

.block-employee.active .images_block-employee {
  display: none;
}

.block-employee.active .name_block-employee {
  margin-top: 35px;
}

.block-employee.active .desc_block-employee {
  display: block;
}

.block-employee.active .soc-links_block-employee {
  display: none;
}

.block-employee.active .more_block-employee {
  color: var(--white);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 1;
}

.block-employee.active .other_block-employee {
  display: none;
}

.block-text_block-full.about {
  max-width: 470px;
}

.block-text_block-full.about .widgettitle {
  font-size: 36px;
}

/*end page about*/

/*page work*/
.block-full.work {
  min-height: 325px;
  background-position: center;
  padding: 0;
}

.block-full.work .block-text_block-full {
  max-width: 450px;
  padding: 30px 10px;
}

.block-full.work .block-text_block-full .name_block-text_block-full {
  font-size: 48px;
  color: var(--white);
}

.block-full.work .logo-work-top {
  max-width: 100%;
}

.block-full.work .block-text_block-full .text_block-text_block-full {
  color: var(--white);
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  padding: 10px 0 15px;
}

.block-full.work .block-text_block-full .link-button {
  margin-bottom: 15px;
}

.block-full.work .block-text_block-full .link-button:hover {
  color: #404040;
  background: var(--white);
}

.list-blocks-clients.work .block-client {
  margin-bottom: 25px;
}

.list-blocks-clients.work .name_block-client {
  padding-top: 10px;
}

.list-blocks-clients.three-block {
  padding: 20px 0 15px;
}

.list-blocks-clients.three-block .block-client {
  margin: 0 7px 15px 8px;
}

/*end page work*/

/*page case studies*/
.block-full.case-studies {
  /*background: url(images/bg-livingsocial.jpg) no-repeat center top;
	margin-top: 48px;*/
  padding: 0;
}

.block-full.case-study-child-first {
  min-height: 325px;
  margin-top: 45px;
  background-position: center;
}

.block-full.case-study-child-first .block-text_block-full {
  padding-top: 100px;

}

.block-full.case-study-child-first .name_block-text_block-full {
  line-height: 58px;
}

.block-full.case-studies.case-study-child-first .text_block-text_block-full {
  font-size: 24px;
  line-height: 36px;
  padding-top: 10px;
}

.block-full.case-studies .block-text_block-full .text_block-text_block-full.text-platform p {
  margin: 0;
}

.block-full.case-studies-top {
  padding: 0 0 10px;
}

.other-block-case-studies {
  float: left;
  width: 100%;
}

.other-block-case-studies .industry_other-block-case-studies {
  float: left;
  font-size: 14px;
  color: rgba(64, 64, 64, .5);
  margin: 0;
  padding: 0 0 0 10px;
}

.other-block-case-studies .type_other-block-case-studies {
  float: left;
  font-size: 14px;
  margin: 0;
  padding: 0 0 0 5px;
}

.other-block-case-studies .link_other-block-case-studies {
  float: right;
  background: url(images/link_other-block-case-studies.png) no-repeat left bottom;
  text-decoration: underline;
  padding: 0 10px 0 25px;
}

.other-block-case-studies .link_other-block-case-studies:hover {
  text-decoration: none;
}

.navi-case-study {
  position: absolute;
  left: 0;
  top: 80px;
  z-index: 1;
  width: 100%;
}

.navi-case-study .block_navi-case-study {
  position: relative;
  transition: .3s linear;
  -webkit-transition: .3s linear;
}

.navi-case-study .block_navi-case-study.prev-cs {
  float: left;
  left: 0;
}

.navi-case-study .block_navi-case-study.prev-cs:hover {
  left: 0 !important;
}

.navi-case-study .block_navi-case-study.next-cs {
  float: right;
  right: 0;
}

.navi-case-study .block_navi-case-study.next-cs:hover {
  right: 0 !important;
}

.navi-case-study .block_navi-case-study .bg_block_navi-case-study {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  background: url(images/bg-left-right-case-study.png);
  border-radius: 0 5px 5px 0;
  opacity: .15;
  transition: .3s linear;
  -webkit-transition: .3s linear;
}

.navi-case-study .block_navi-case-study .arrow_block_navi-case-study {
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 1;
}

.navi-case-study .block_navi-case-study.prev-cs .arrow_block_navi-case-study {
  right: 0;
  background: url(images/arrow-prev-case-study.png) no-repeat center;
}

.navi-case-study .block_navi-case-study.next-cs .arrow_block_navi-case-study {
  left: 0;
  background: url(images/arrow-next-case-study.png) no-repeat center;
}

.navi-case-study .block_navi-case-study.next-cs .bg_block_navi-case-study {
  border-radius: 5px 0 0 5px;
}

.navi-case-study .block_navi-case-study:hover .bg_block_navi-case-study {
  opacity: 1;
}

.navi-case-study .block_navi-case-study .link_block_navi-case-study {
  display: block;
  position: relative;
  z-index: 2;
  padding: 16px 0 16px 0;
  transition: .3s linear;
  -webkit-transition: .3s linear;
}

.navi-case-study .block_navi-case-study .link_block_navi-case-study:hover {
  color: var(--white);
  text-decoration: none;
}

.navi-case-study .block_navi-case-study.prev-cs .link_block_navi-case-study {
  padding-right: 50px;
  padding-left: 13px;
}

.navi-case-study .block_navi-case-study.next-cs .link_block_navi-case-study {
  padding-left: 50px;
  padding-right: 13px;
}

.block-animated {
  width: 100%;
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  border-left: none;
  border-right: none;
}

.text_block-animated {
  width: 46%;
  min-height: 380px;
  padding: 50px 50px 50px 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  position: relative;
}

.text_block-animated.first {
  float: left;
}

.text_block-animated.second {
  float: right;
}

.text_block-animated .small_name_text_block-animated {
  font-size: 18px;
  text-transform: uppercase;
  color: #741278;
}

.block-full.white .text_block-animated .small_name_text_block-animated {
  color: var(--white);
}

.text_block-animated .name_text_block-animated {
  font-weight: 300;
  font-size: 48px;
  line-height: 55px;
  margin: 0;
}

.text_block-animated .content_text_block-animated {
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}

.text_block-animated .content_text_block-animated p {
  margin: 10px 0 30px;
}

.text_block-animated .content_text_block-animated p.text_other-block {
  margin: 0;
}

.element_block-animated {
  width: 54%;
  position: relative;
  min-height: 380px;
  transition: 1s;
  -webkit-transition: 1s;
}

.element_block-animated.animation_l-r {
  transform: translateX(-500px);
  -ms-transform: translateX(-500px);
  -webkit-transform: translateX(-500px);
  opacity: .3;
}

.element_block-animated.animation_r-l {
  transform: translateX(500px);
  -ms-transform: translateX(500px);
  -webkit-transform: translateX(500px);
  opacity: .3;
}

.element_block-animated.animation_t-b {
  transform: translateY(-500px);
  -ms-transform: translateY(-500px);
  -webkit-transform: translateY(-500px);
  opacity: .3;
}

.element_block-animated.animation_b-t {
  transform: translateY(500px);
  -ms-transform: translateY(500px);
  -webkit-transform: translateY(500px);
  opacity: .3;
}

.element_block-animated.animation_a {
  opacity: .3;
  transition-duration: 1.5s;
}

.element_block-animated.active {
  opacity: 1;
  transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
}

.element_block-animated.first {
  float: left;
  width: 49%;
}

.element_block-animated.second {
  float: right;
}

.element_block-animated.first .content_element_block-animated {
  position: absolute;
  right: 0;
  top: 0;
  line-height: 0;
  width: 100%;
}

.element_block-animated.second .content_element_block-animated {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 0;
  width: 100%;
}

.text_block-animated.center {
  min-height: 0;
  padding: 0 0 10px;
  margin: auto;
  text-align: center;
  width: auto;
  max-width: 540px;
}

.element_block-animated.center {
  min-height: 0;
  margin: auto;
  text-align: center;
  width: 100%;
}

.block-circles_element_block-animated {
  width: 900px;
  padding: 50px 0 0;
  margin: auto;
  overflow: hidden;
}

.block-circles_element_block-animated .block-circle_element_block-animated {
  display: inline-block;
  vertical-align: top;
  width: 280px;
  margin: 0 10px;
}

.block-circles_element_block-animated .block-circle_element_block-animated .circle_element_block-animated {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid var(--white);
  font-size: 72px;
  font-weight: 200;
  line-height: 180px;
  margin: auto;
}

.block-circles_element_block-animated .block-circle_element_block-animated .text-circle_element_block-animated {
  margin: 0;
  padding: 15px 0 0;
  font-size: 22px;
  font-weight: 300;
  line-height: 32px;
}

.other-block_element_block-animated {
  max-width: 580px;
  margin: auto;
}

.other-block_element_block-animated .text_other-block {
  background: url(images/bg-otger-text-cs.png) no-repeat center bottom;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 24px;
  margin: 0;
  padding: 20px 0 40px;
}

.other-block_element_block-animated .text_other-block .comma-up_text_other-block {
  display: inline-block;
  width: 39px;
  height: 36px;
  vertical-align: bottom;
  background: url(images/bg-comma-up.png) no-repeat;
  margin: 0 5px 0 0;
}

.other-block_element_block-animated .text_other-block .comma-bottom_text_other-block {
  display: inline-block;
  width: 39px;
  height: 36px;
  vertical-align: top;
  background: url(images/bg-comma-bottom.png) no-repeat;
  margin: 0 0 0 5px;
}

.other-block_element_block-animated .man_other-block .photo_man_other-block {
  width: 100px;
  height: 100px;
  background: #000;
  border: 5px solid #ebebeb;
  border-radius: 50%;
  display: inline-block;
  margin: 0 20px 0 0;
  vertical-align: top;
}

.other-block_element_block-animated .name-post_man_other-block {
  display: inline-block;
  vertical-align: top;
  padding: 20px 0 0;
  text-align: left;
}

.other-block_element_block-animated .name-post_man_other-block .name_man_other-block {
  margin: 0;
  font-size: 30px;
  font-weight: 300;
  text-align: left;
}

.other-block_element_block-animated .name-post_man_other-block .post_man_other-block {
  margin: 0;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--zoomphBlue);
  text-align: left;
}

.content_element_block-animated .slidesjs-pagination {
  width: 100%;
  padding-top: 10px;
}

.content_element_block-animated .slidesjs-navigation {
  display: none;
}

.content_element_block-animated .slidesjs-control img {
  border-radius: 5px;
  max-height: 100%;
}

.content_element_block-animated>img {
  border-radius: 5px;
}

.element_block-animated.center .content_element_block-animated>img {
  max-width: 100%;
}

.element_block-animated .slide {
  margin: auto;
  width: 100%;
}

.element_block-animated.center .element_block-animated .slide {
  margin: auto;
  width: 100%;
}

/*end page case studies*/

/*page community*/
.block-full.community {
  padding: 75px 0;
  height: 215px;
  background: url(images/bg-community.jpg) no-repeat center;
}

.block-full.community .block-text_block-full .name_block-text_block-full {
  font-size: 48px;
  color: var(--white);
  padding: 0 0 15px;
}

.block-full.community .block-text_block-full .text_block-text_block-full {
  color: var(--white);
  font-size: 24px;
  font-weight: 300;
  line-height: 28px;
}

.block-full.community .block-text_block-full {
  max-width: 720px;
}

.sort-list-blog {
  width: 100%;
  float: left;
  text-align: center;
  padding: 0 0 25px;
}

.sort-list-blog .name_sort-list-blog {
  display: inline-block;
  margin: 0;
  padding: 2px 15px 5px 0;
  font-weight: 300;
  font-size: 28px;
  vertical-align: top;
}

.sort-list-blog .block-list_sort-list-blog {
  display: inline-block;
  position: relative;
}

.sort-list-blog .open-close_sort-list-blog {
  display: none;
  background: url(images/open-close-blog-filter.png) no-repeat center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 0 5px 5px 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.sort-list-blog .list_sort-list-blog {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sort-list-blog .list_sort-list-blog>li {
  float: left;
  border: 1px solid #aeaeae;
  border-right: none;
  overflow: hidden;
}

.sort-list-blog .list_sort-list-blog>li:first-child {
  border-radius: 5px 0 0 5px;
}

.sort-list-blog .list_sort-list-blog>li:last-child {
  border-radius: 0 5px 5px 0;
  border: 1px solid #aeaeae;
}

.sort-list-blog .list_sort-list-blog>li.active>a {
  color: var(--white);
  background: #404040;
}

.sort-list-blog .list_sort-list-blog>li>a {
  font-size: 18px;
  font-style: italic;
  color: #898989;
  display: block;
  padding: 8px 20px;
  transition: .3s linear;
  -webkit-transition: .3s linear;
}

.sort-list-blog .list_sort-list-blog>li:hover>a {
  color: var(--white);
  background: #404040;
  text-decoration: none;
}

.sort-list-blog .list_sort-list-blog>li.active>a.filter-4,
.sort-list-blog .list_sort-list-blog>li:hover>a.filter-4 {
  background: var(--zoomphBlue);
}

.sort-list-blog .list_sort-list-blog>li.active>a.filter-6,
.sort-list-blog .list_sort-list-blog>li:hover>a.filter-6 {
  background: #fdbf38;
}

.sort-list-blog .list_sort-list-blog>li.active>a.filter-5,
.sort-list-blog .list_sort-list-blog>li:hover>a.filter-5 {
  background: #5c0b5f;
}

.sort-list-blog .list_sort-list-blog>li.active>a.filter-7,
.sort-list-blog .list_sort-list-blog>li:hover>a.filter-7 {
  background: var(--zoomphBlue);
}

.category h1 {
  color: var(--white);
}

/*end page community*/

/*page contacts*/
.block-full.contacts .block-text_block-full {
  padding-top: 60px;
}

.block-full.contacts .widgettitle,
.block-full.contacts .name_block-text_block-full {
  font-size: 48px;
  margin-bottom: 5px;
}

.block-full.contacts .text_block-text_block-full {
  font-size: 24px;
  font-weight: 300;
  line-height: 28px;
}

.block-full.contacts .text_block-text_block-full.text-faq {
  padding-bottom: 55px;
}

.contact-tabs {
  width: 100%;
  max-width: 1020px;
  margin: auto;
  background: var(--white);
  border: 1px solid #ebebeb;
  border-radius: 5px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-shadow: 0 1px 3px -1px rgba(0, 0, 0, .25);
  overflow: hidden;
}

.head_contact-tabs {
  float: left;
  width: 100%;
  position: relative;
}

.head_contact-tabs .open-close_head_contact-tabs {
  display: none;
  width: 60px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 4px;
  z-index: 2;
  border-left: 1px solid var(--white);
  background: url(images/open-close-forms-tab.png) no-repeat center;
}

.head_contact-tabs .list-tab_head_contact-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  float: left;
  width: 100%;
  position: relative;
  z-index: 1;
}

.head_contact-tabs .list-tab_head_contact-tabs>li {
  position: relative;
  z-index: 1;
  float: left;
  width: 20%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  border-bottom: 1px solid #ebebeb;
  background: transparent;
  transition: .3s linear;
  -webkit-transition: .3s linear;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  text-align: center;
  line-height: 18px;
  cursor: pointer;
  padding: 15px 0;
}

.head_contact-tabs .list-tab_head_contact-tabs>li+li {
  border-left: 1px solid #ebebeb;
}

.head_contact-tabs .list-tab_head_contact-tabs>.active {
  border-bottom-color: transparent;
  background: var(--zoomphBlue);
  color: var(--white);
  font-weight: 400;
}

.head_contact-tabs .list-tab_head_contact-tabs>li:hover {
  background: var(--zoomphBlue);
  border-bottom-color: transparent;
  color: var(--white);
}

.head_contact-tabs .list-tab_head_contact-tabs>li>span {
  visibility: hidden;
  position: absolute;
  bottom: -7px;
  left: 43%;
  z-index: -1;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--zoomphBlue);
}

.head_contact-tabs .list-tab_head_contact-tabs>.active>span {
  visibility: visible;
}

.content_contact-tabs {
  float: left;
  width: 100%;
  padding: 25px 0;
}

.content_contact-tabs .widgettitle,
.content_contact-tabs .cf_info {
  display: none;
}

.content_contact-tabs .cform {
  max-width: 860px;
  margin: auto;
}

.content_contact-tabs .cform~.cform {
  display: none;
}

.content_contact-tabs .cform .cf-ol>li {
  float: left;
  width: 50%;
  padding: 0 10px 15px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.content_contact-tabs .cform .cf-ol>li label {
  padding-bottom: 5px;
}

.content_contact-tabs .cform .cf-ol>li input,
.content_contact-tabs .cform .cf-ol>li textarea,
.content_contact-tabs .cform .cf-ol>li select {
  width: 100%;
  height: 50px;
}

.content_contact-tabs .cform .cf-ol>li textarea {
  max-height: 140px;
}

.content_contact-tabs .cform .cf-ol>li select {
  appearance: button;
  -webkit-appearance: button;
  -moz-appearance: button;
  background: url(images/open-close-blog-filter.png) no-repeat 99% 55%;
  background-size: 20px;
}

.content_contact-tabs .cform .cf-ol>.textonly {
  margin: 0 !important;
  padding: 0 0 20px;
  font-size: 18px;
  font-weight: 300;
  color: #404040;
  letter-spacing: normal;
  line-height: 28px;
  text-align: center;
  float: none;
  width: auto;
}

.content_contact-tabs .cform .cf-ol>li:last-child {
  width: 100%;
}

.content_contact-tabs .cform .cf-sb {
  margin-top: 10px;
}

.content_contact-tabs .cform .cf-sb input {
  -webkit-appearance: none;
}

.block-other-bottom a {
  color: #741278;
  text-decoration: none;
}

.block-other-bottom a:hover {
  text-decoration: underline;
}

.block-full.faq .name_block-full {
  font-size: 48px;
  padding-top: 10px;
  margin-bottom: 30px;
}

.list-blocks-faq {
  width: 100%;
  float: left;
  padding-bottom: 30px;
}

.list-blocks-faq .block-faq {
  float: left;
  width: 100%;
}

.list-blocks-faq .block-faq+.block-faq {
  padding-top: 40px;
}

.list-blocks-faq .block-faq .head_block-faq {
  position: relative;
  border-bottom: 1px solid #e1e1e1;
  width: 100%;
  float: left;
}

.list-blocks-faq .block-faq .head_block-faq .name-number_head_block-faq {
  float: left;
  position: relative;
  z-index: 1;
  padding: 0 0 10px;
}

.list-blocks-faq .block-faq .head_block-faq .name-number_head_block-faq .name_head_block-faq {
  font-size: 28px;
  font-weight: 300;
  float: left;
  margin: 0;
}

.list-blocks-faq .block-faq .head_block-faq .name-number_head_block-faq .number_head_block-faq {
  font-size: 18px;
  color: var(--zoomphBlue);
  margin: 0;
  float: left;
  padding: 10px 0 0 30px;
}

.list-blocks-faq .block-faq .head_block-faq .opaen-close_block-faq {
  position: absolute;
  right: 0;
  bottom: -1px;
  z-index: 2;
  text-align: center;
  width: 40px;
  height: 40px;
  background: #f2f2f2;
  border: 1px solid #e1e1e1;
  border-radius: 3px 3px 0 0;
  cursor: pointer;
  transition: .3s linear;
  -webkit-transition: .3s linear;
}

.list-blocks-faq .block-faq .head_block-faq .opaen-close_block-faq:hover {
  background: var(--zoomphBlue);
}

.list-blocks-faq .block-faq .head_block-faq .opaen-close_block-faq:hover>span {
  color: var(--white);
}

.list-blocks-faq .block-faq .head_block-faq .opaen-close_block-faq>span {
  color: #757575;
  font-size: 34px;
  font-weight: bold;
  line-height: 18px;
  display: block;
  width: 18px;
  height: 18px;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: inherit;
  -webkit-transition: inherit;
  font-family: Arial, sans-serif;
}

.list-blocks-faq .block-faq .head_block-faq .opaen-close_block-faq.active {
  background: var(--zoomphBlue);
}

.list-blocks-faq .block-faq .head_block-faq .opaen-close_block-faq.active>span {
  color: var(--white);
  -webkit-transform: rotate(43deg);
  -ms-transform: rotate(43deg);
  transform: rotate(43deg);
}

.list-blocks-faq .block-faq .content_block-faq {
  width: 100%;
  float: left;
  padding: 45px 0 0;
  display: none;
}

.list-blocks-faq .block-faq .content_block-faq.active {
  display: block;
}

.list-blocks-faq .block-faq .content_block-faq .question-answer_content_block-faq {
  float: left;
  width: 100%;
}

.list-blocks-faq .block-faq .content_block-faq .question-answer_content_block-faq+.question-answer_content_block-faq {
  padding: 30px 0 0;
}

.list-blocks-faq .block-faq .content_block-faq .question-answer_content_block-faq .question_content_block-faq {
  font-size: 24px;
  color: var(--zoomphBlue);
}

.list-blocks-faq .block-faq .content_block-faq .question-answer_content_block-faq .question_content_block-faq>span {
  text-transform: uppercase;
  float: left;
  margin: 0 5px 0 0;
}

.list-blocks-faq .block-faq .content_block-faq .question-answer_content_block-faq .question_content_block-faq>p {
  margin: 0;
  overflow: hidden;
}

.list-blocks-faq .block-faq .content_block-faq .question-answer_content_block-faq .answer_content_block-faq {
  font-size: 18px;
  padding: 10px 0 0 20px;
}

.list-blocks-faq .block-faq .content_block-faq .question-answer_content_block-faq .answer_content_block-faq>span {
  float: left;
  text-transform: uppercase;
  margin: 0 5px 0 0;
}

.list-blocks-faq .block-faq .content_block-faq .question-answer_content_block-faq .answer_content_block-faq>p {
  font-weight: 300;
  margin: 0;
  overflow: hidden;
}

/*end page contacts*/

/*page platform*/
.platform-template-child .block-animated {
  padding: 30px 0;
}

.platform-template-child .content_text_block-animated {
  padding-bottom: 30px;
}

.platform-child.work {
  min-height: 700px;
}

/*end page platform*/

/*page blog post*/
.block-full.blog-post {
  padding: 40px 0;
}

.block-full.blog-post.first {
  min-height: 400px;
  padding: 0;
  background-position: center center;
}

.block-full.blog-post .color-line-cat {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20px;
}

.block-full.pink .color-line-cat {
  background: url(images/bg-block-blog_pink.png);
}

.block-full.purple .color-line-cat {
  background: url(images/bg-block-blog_purple.png);
}

.block-full.yellow .color-line-cat {
  background: url(images/bg-block-blog_yellow.png);
}

.block-full.blue .color-line-cat {
  background: url(images/bg-block-blog_blue.png);
}

.block-full.asfalt .color-line-cat {
  background: url(images/bg-block-blog_asphalt.png);
}

.author-block_blog-post {
  float: left;
  /* border-right: 1px solid #e1e1e1;*/
  text-align: center;
  margin: 0 50px 0 0;
  width: 180px;
}

.author-block_blog-post .photo_author-block_blog-post {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0;
}

.author-block_blog-post .name_author-block_blog-post {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
  padding: 10px 0 0 0;
}

.author-block_blog-post .post_author-block_blog-post {
  font-size: 18px;
  font-weight: 300;
  margin: 0;
  padding: 0 0 20px 0;
}

.author-block_blog-post .soc-links_author-block_blog-post {
  border-bottom: 1px solid #e1e1e1;
  padding: 0 0 10px 0;
}

.author-block_blog-post .soc-links_author-block_blog-post>a {
  background: no-repeat center;
  width: 24px;
  height: 24px;
  display: inline-block;
  opacity: .3;
  transition: .3s linear;
  -webkit-transition: .3s linear;
}

.author-block_blog-post .soc-links_author-block_blog-post>a+a {
  margin: 0 0 0 15px;
}

.author-block_blog-post .soc-links_author-block_blog-post>a:hover {
  opacity: 1;
}

.author-block_blog-post .soc-links_author-block_blog-post .pintrest {
  background-image: url(images/soc-links_author-block_p.png);
}

.author-block_blog-post .soc-links_author-block_blog-post .linkedin {
  background-image: url(images/soc-links_author-block_l.png);
}

.author-block_blog-post .soc-links_author-block_blog-post .twitter {
  background-image: url(images/soc-links_author-block_t.png);
}

.author-block_blog-post .soc-links_author-block_blog-post .fasebook {
  background-image: url(images/soc-links_author-block_f.png);
}

.author-block_blog-post .soc-links_author-block_blog-post .google {
  background-image: url(images/soc-links_author-block_g.png);
}

.content_blog-post {
  overflow: hidden;
}

.content_blog-post .title_content_blog-post {
  font-size: 40px;
  font-weight: 300;
  line-height: 40px;
  margin: 0;
}

.content_blog-post .cat_content_blog-post {
  font-size: 14px;
  font-style: italic;
}

.content_blog-post .cat_content_blog-post.pink {
  color: var(--zoomphBlue);
}

.content_blog-post .cat_content_blog-post.purple {
  color: #741278;
}

.content_blog-post .cat_content_blog-post.yellow {
  color: #fdbf38;
}

.content_blog-post .cat_content_blog-post.blue {
  color: var(--zoomphBlue);
}

.content_blog-post .cat_content_blog-post.asfalt {
  color: #404040;
}

.content_blog-post .sep {
  color: #e6e6e6;
  font-size: 20px;
  padding: 0 5px;
  display: inline-block;
}

.content_blog-post .data {
  font-size: 16px;
  font-weight: 300;
  display: inline-block;
  vertical-align: top;
  padding-top: 5px;
}

.text_content_blog-post img {
  max-width: 100% !important;
  height: auto !important;
}

.content_blog-post .text_content_blog-post {
  padding: 0 0 0;
  font-size: 18px;
  font-weight: 300;
}

.content_blog-post .text_content_blog-post p {
  margin: 20px 0;
}

.content_blog-post .text_content_blog-post a:hover {
  text-decoration: underline;
}

.content_blog-post .text_content_blog-post ul,
.content_blog-post .text_content_blog-post ol {
  margin: 20px 0;
}

.content_blog-post .tags_content_blog-post {
  padding: 10px 0 20px;
}

.content_blog-post .tags_content_blog-post>span {
  font-size: 18px;
  font-weight: 300;
  display: inline-block;
  padding: 0 17px 0 0;
}

.content_blog-post .tags_content_blog-post a {
  display: inline-block;
  margin: 0 3px 10px;
  font-size: 16px;
  border-radius: 3px;
  padding: 5px 15px;
  border: 1px solid;
  transition: .3s linear;
  -webkit-transition: .3s linear;
}

.content_blog-post .tags_content_blog-post a.pink {
  border-color: var(--zoomphBlue);
  color: var(--zoomphBlue);
}

.content_blog-post .tags_content_blog-post a.purple {
  border-color: #741278;
  color: #741278;
}

.content_blog-post .tags_content_blog-post a.yellow {
  border-color: #fdbf38;
  color: #fdbf38;
}

.content_blog-post .tags_content_blog-post a.blue {
  border-color: var(--zoomphBlue);
  color: var(--zoomphBlue);
}

.content_blog-post .tags_content_blog-post a.asfalt {
  border-color: #404040;
  color: #404040;
}

.content_blog-post .tags_content_blog-post a.pink:hover {
  background: var(--zoomphBlue);
}

.content_blog-post .tags_content_blog-post a.purple:hover {
  background: #741278;
}

.content_blog-post .tags_content_blog-post a.yellow:hover {
  background: #fdbf38;
}

.content_blog-post .tags_content_blog-post a.blue:hover {
  background: var(--zoomphBlue);
}

.content_blog-post .tags_content_blog-post a.asfalt:hover {
  background: #404040;
}

.content_blog-post .tags_content_blog-post a:hover {
  color: var(--white);
  text-decoration: none;
}

.content_blog-post .comments-block {
  width: 100%;
  clear: both;
  float: left;
  border-top: 1px solid #e4e4e4;
  padding: 20px 0 0;
}

/*end page blog post*/

/*comments*/
.count_comments-block {
  margin: 0;
  font-size: 28px;
  font-weight: 300;
}

.comments-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  float: left;
}

.comments-list li {
  width: 100%;
  float: left;
  margin-top: 10px;
}

.comments-list li .comment-body {
  background: var(--white);
  padding: 10px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  position: relative;
  float: left;
  width: 100%;
}

.comments-list li .comment-body .comment-author .avatar {
  float: left;
  border-radius: 50%;
  margin-right: 10px;
  width: 70px;
  height: 70px;
}

.comments-list li .comment-body .comment-author .fn {
  font-size: 18px;
  float: left;
  padding-right: 10px;
}

.comments-list li .comment-body .comment-author .says {
  display: none;
}

.comments-list li .comment-body .comment-meta {
  font-size: 16px;
  font-weight: 300;
  padding-top: 2px;
}

.comments-list li .comment-body>p {
  overflow: hidden;
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.comments-list li .comment-body .reply {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}

.comments-list li .comment-body .reply>a {
  background: url(images/reply_comments.png) no-repeat;
  display: block;
  overflow: hidden;
  width: 18px;
  height: 12px;
  opacity: .5;
  transition: .3s linear;
  -webkit-transition: .3s linear;
  text-indent: 9999em;
}

.comments-list li .comment-body .reply>a:hover {
  opacity: 1;
}

.comments-list li ul {
  list-style: none;
  padding: 0 0 0 20px;
  margin: 0;
}

.content_blog-post #comment-providers-select-message {
  font-size: 28px;
  font-weight: 300;
  padding: 40px 0 30px;
  clear: both;
}

.content_blog-post #comment-providers #all-comment-providers>li {
  width: auto;
  float: none;
}

.content_blog-post #comment-providers .comment-provider textarea {
  width: 100%;
  resize: none;
  background: var(--white);
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  padding: 9px 10px;
  font: normal 400 16px/normal museo-sans, sans-serif;
  transition: .3s linear;
  -webkit-transition: .3s linear;
  box-sizing: border-box;
  -moz-x-sizing: border-box;
  color: rgba(64, 64, 64, .6);
}

.content_blog-post #comment-providers .comment-provider textarea:focus {
  border-color: #c5c5c5;
  color: #404040;
}

.content_blog-post #comment-providers .comment-provider p>.button {
  display: inline-block;
  min-width: 130px;
  padding: 11px 25px;
  color: var(--white) !important;
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  background: var(--zoomphBlue);
  border-radius: 5px;
  transition: .2s linear;
  -webkit-transition: .2s linear;
  text-shadow: none;
  border: none;
  width: auto;
}

.content_blog-post #comment-providers .comment-provider p .button:hover {
  background: #46A6F4;
}

/*end comments*/

/*page 404*/
.block-full.first-gray.no-border.page-404 {
  background: #f7f7f7;
  padding: 50px 0;
}

.block-full.page-404 .block-text_block-full {
  max-width: 690px;
  padding-bottom: 50px;
}

.logo-404 {
  border: 2px solid var(--zoomphBlue);
  width: 276px;
  height: 276px;
  margin: auto;
  border-radius: 50%;
  text-align: center;
  text-transform: uppercase;
  color: var(--zoomphBlue);
}

.logo-404>span {
  display: block;
}

.logo-404 .text-404 {
  font-weight: 200;
  font-size: 130px;
  line-height: 70px;
  padding: 65px 0 0;
}

.logo-404 .text {
  font-weight: 300;
  font-size: 65px;
}

.block-full.page-404 .other-block-text_block-full {
  font-size: 24px;
  padding-top: 50px;
}

/*end page 404*/

/*End Content*/

/*Footer*/
.copy-right {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 75px;
  padding: 20px 0;
  text-align: center;
}

.copy-right--col {
  width: 50%;
  text-align: left;
}

.copy-right--col+.copy-right--col {
  text-align: right;
}

.copy-right+.copy-right {
  margin-top: 0;
}

.footer {
  position: relative;
  display: inline-block;
  width: 100%;
  color: #000000;
  background-color: var(--white);
}

.footer .dynamic-width {
  display: flex;
  flex-wrap: wrap;
}

.footer h5 {
  margin-top: 50px;
}

.footer a {
  color: inherit;
  font-weight: 600;
  display: block;
  margin: 0 0 15px 0;
  opacity: .54;
}

.footer a:hover {
  text-decoration: none;
  opacity: .8;
}

.footer .zicon-zoomph {
  font-size: 30px;
}

.footer-col {
  display: inline-block;
  vertical-align: top;
  width: 25%;
  min-width: 150px;
}

.footer-col h5+h5 {
  padding-top: 30px
}

#soc-menu {
  list-style: none;
  padding: 0;
  margin: 0 10px 0 0;
}

#soc-menu>li {
  display: inline-block;
  margin: 5px;
}

#soc-menu>li>a {
  color: inherit;
  display: block;
  overflow: hidden;
  width: 20px;
  height: 20px;
  margin: 0;
  transition: .2s linear;
  -webkit-transition: .2s linear;
  opacity: 1;
}

#soc-menu>li>a:hover {
  opacity: 1;
  color: var(--zoomphBlue);
}

/*End Footer*/

.btn-cont {
  margin-top: 40px;
}

/* bubble button */
.bubble-btn {
  text-decoration: none;
  outline: none;
  border-radius: 3px;
  padding: 14px 15px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.bubble-btn.blue {
  background: var(--zoomphBlue);
  color: var(--white);
}

.bubble-btn.blue:hover {
  background: #46A6F4;
  text-decoration: none;
  color: var(--white);
}

.bubble-btn.white {
  background: var(--white);
  color: var(--zoomphBlue);
}

.bubble-btn.white:hover {
  background: #ddd;
  text-decoration: none;
}

.bubble-btn.ghost {
  border: solid 1px var(--zoomphBlue);
  color: var(--zoomphBlue);
}

.bubble-btn.ghost:hover {
  border: solid 1px #46A6F4;
  text-decoration: none;
}

.bubble-btn.lightgreen {
  background: #1DD1A0;
  border: 1px solid #1DD1A0;
}

.bubble-btn.lightgreen:hover {
  background: #1abc90;
  text-decoration: none;
}

.bubble-btn.ghostlightgreen {
  border: solid 1px #1DD1A0;
  color: #1DD1A0;
}

.bubble-btn.ghostlightgreen:hover {
  border: solid 1px #1abc90;
  text-decoration: none;
}


/*Link Buttons*/
.link-button,
.block-full .cf-sb .sendbutton {
  display: inline-block;
  min-width: 130px;
  max-width: 240px;
  padding: 14px 16px;
  color: var(--white);
  background: var(--zoomphBlue);
  /*text-transform: uppercase;*/
  text-align: center;
  font-weight: 500;
  border-radius: 3px;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 1px;
  transition: .2s linear;
  -webkit-appearance: none;
  cursor: pointer;
}

.link-button:hover,
.block-full .cf-sb .sendbutton:hover {
  background: #46A6F4;
  text-decoration: none;
}

.link-button.transparent {
  border: 1px solid var(--zoomphBlue);
  background: transparent;
  color: var(--zoomphBlue);
}

.link-button.transparent:hover {
  border: 1px solid var(--zoomphBlue);
  background: #46A6F4;
  color: var(--white);
}

.link-button.white {
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--zoomphBlue);
}

.link-button.white:hover {
  background: #ddd;
}

.link-button.blue {
  background-color: var(--zoomphBlue);
  color: var(--white);
  text-decoration: none;
}

.link-button.blue:hover {
  background-color: rgb(25, 125, 207);
}

.link-button.blue-inverted {
  background-color: var(--white);
  color: var(--zoomphBlue);
  text-decoration: none;
}

.link-button.blue-inverted:hover {
  background-color: #efefef;
}

.link-button.green {
  background: #2ecc71;
  border: 1px solid #2BC06A;
}

.link-button.green:hover {
  background: #2BC06A;
  text-decoration: none;
}

.link-button.lightgreen {
  background: #1DD1A0;
  border: 1px solid #1DD1A0;
}

.link-button.lightgreen:hover {
  background: #1abc90;
  text-decoration: none;
}

.link-button.lightgreen.transparent {
  border: 1px solid #1DD1A0;
  background: transparent;
  color: #1DD1A0;
}

.link-button.lightgreen.transparent:hover {
  border: 1px solid #1DD1A0;
  background: #1abc90;
  color: var(--white);
}

.link-button.large {
  display: inline-block;
  min-width: 180px;
  max-width: 300px;
  padding: 20px 30px;
  font-size: 18px;
}

.basic-link {
  text-decoration: none;
  outline: none;
  border-radius: 3px;
  padding: 14px 0px;
  font-size: 15px;
  font-weight: 300;
  cursor: pointer;
}

.basic-link:hover {
  text-decoration: none;
}

.basic-link.blue {
  color: var(--zoomphBlue);
  margin-right: 10px;
}

.basic-link.green {
  color: #1DD1A0;
}

.block-full p + a,
.btn-block {
  color: inherit;
  background-color: rgba(255,255,255, .12);
  border: 1px solid #eee;
  display: inline-block;
  text-align: center;
  padding: 15px 25px;
  border-radius: 2px;
  font-weight: 800;
}

.block-full p + a:hover {
  text-decoration: none;
  opacity: .9;
}

/*End Link Buttons*/

/*bottom banner*/

.bottom-banner {
  color: #333;
  background: var(--white);
  box-shadow: 0 0 2px #666;
  width: 100%;
  padding: 15px 0px;
  position: fixed;
  bottom: 0;
  z-index: 5;
  display: block;
  transition: ease-out .3s;
  font-weight: 900;
  line-height: 22px;
}

.bottom-banner>.dynamic-width div+div {
  margin-left: 50px;
}

.bottom-banner>.dynamic-width>div {
  display: inline-block;
}

.bottom-banner>.dynamic-width>div:first-child {
  color: #999;
}

.bottom-banner span {
  font-weight: 400;
  letter-spacing: 1px;
}

.bottom-banner span.neg {
  color: #F93A31;
}

.bottom-banner span.pos {
  color: #2ADB34;
}

.bottom-banner a {
  float: right;
}

/*Link Top*/
.link-scroll-top {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 1000000;
  width: 50px;
  height: 50px;
  display: block;
  transition: .4s linear;
  -webkit-transition: .4s linear;
  background: url(images/link-top.png) no-repeat;
  visibility: hidden;
  opacity: 0;
}

.link-scroll-top.active {
  visibility: visible;
  opacity: .5;
}

.link-scroll-top:hover {
  opacity: 1;
}

/*End Link Top*/

/*Modal Employee*/
.modal-employee_mob {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 100000100;
}

.modal-employee_mob .bg {
  background: url(images/bg_modal.png);
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 101%;
}

.modal-employee_mob .all-block_modal-employee_mob {
  position: relative;
  max-width: 580px;
  width: 98%;
  margin: 0 auto;
}

.modal-employee_mob .all-block_modal-employee_mob .close_modal-employee_mob {
  display: block;
  width: 20px;
  height: 20px;
  float: right;
  background: url(images/close_modal.png) no-repeat center;
  background-size: 100%;
}

.modal-employee_mob .all-block_modal-employee_mob .content_modal-employee_mob {
  float: left;
  width: 100%;
  padding: 15px 0 0;
}

.modal-employee_mob .navi_modal-employee_mob {
  float: left;
  width: 100%;
  border-top: 1px solid #636363;
  border-bottom: 1px solid #636363;
  display: none;
}

.modal-employee_mob .navi_modal-employee_mob>a {
  display: block;
  width: 100px;
  height: 100px;
  line-height: 0;
  background: no-repeat center;
}

.modal-employee_mob .navi_modal-employee_mob .prev_modal-employee_mob {
  background-image: url(images/prev_modal.png);
  border-right: 1px solid #636363;
  float: left;
}

.modal-employee_mob .navi_modal-employee_mob .next_modal-employee_mob {
  background-image: url(images/next_modal.png);
  border-left: 1px solid #636363;
  float: right;
}

.content_modal-employee_mob .block-employee {
  min-height: 0;
  width: 100%;
  border: none;
  border-radius: 0;
  background: none;
  text-align: center;
  padding: 0;
  margin: 0;
  color: var(--white);
  display: block;
}

.content_modal-employee_mob .block-employee .name_block-employee {
  font-size: 24px;
  margin-top: 5px;
}

.content_modal-employee_mob .block-employee .sub-name_block-employee {
  font-size: 18px;
}

.content_modal-employee_mob .block-employee .desc_block-employee {
  display: block;
  font-size: 18px;
  padding: 15px 0 10px;
}

.content_modal-employee_mob .block-employee .soc-links_block-employee {
  padding: 0;
}

.content_modal-employee_mob .block-employee .soc-links_block-employee>a {
  opacity: 1;
  width: 30px;
  height: 30px;
  background-position: center bottom;
  margin: 0 10px;
}

.content_modal-employee_mob .block-employee:hover .images_block-employee>img {
  visibility: visible;
  opacity: 1;
  border-radius: 5px;
}

.content_modal-employee_mob .block-employee .images_block-employee>img+img,
.content_modal-employee_mob .block-employee .more_block-employee,
.content_modal-employee_mob .block-employee .other_block-employee {
  display: none;
}

/*End Modal Employee*/

/*Block Trigon*/
.block-trigon {
  position: absolute;
  top: -11px;
  left: 0;
  width: 100%;
  height: 10px;
  z-index: 5;
  border-color: inherit;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.block-trigon>div {
  position: absolute;
  z-index: 6;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  border-bottom-color: inherit !important;
}

.block-trigon .left_block-trigon {
  left: -50%;
  border-bottom: 10px solid;
  border-right: 10px solid transparent;
}

.block-trigon .right_block-trigon {
  right: -50%;
  border-bottom: 10px solid;
  border-left: 10px solid transparent;
}

/*End Block Trigon*/

/*Slider JS*/
.slidesjs-pagination {
  margin: 0;
  padding: 10px 0 0 0;
  list-style: none;
  width: 300px;
  float: left;
  text-align: center;
}

.slidesjs-pagination>li {
  display: inline-block;
  margin: 0 5px;
}

.slidesjs-pagination>li>a {
  display: inline-block;
  text-indent: -9999em;
  border: 1px solid #dadada;
  border-radius: 50%;
  width: 13px;
  height: 13px;
  background: var(--white);
  transition: .3s linear;
  -webkit-transition: .3s linear;
}

.slidesjs-pagination>li>a:hover,
.slidesjs-pagination>li>a.active {
  background: #404040;
  border-color: transparent;
}

.full-slider .slidesjs-pagination {
  width: 100%;
  text-align: center
}

.full-slider .slidesjs-navigation {
  position: absolute;
  top: 45%;
  background-repeat: no-repeat;
  display: block;
  height: 34px;
  width: 30px;
  transition: .3s linear;
  -webkit-transition: .3s linear;
}

.full-slider .slidesjs-navigation:hover {
  opacity: .8;
}

.full-slider .slidesjs-previous {
  left: -50px;
  background-image: url(images/prev_modal.png);
  background-position: center left;
}

.full-slider .slidesjs-next {
  right: -50px;
  background-image: url(images/next_modal.png);
  background-position: center right;
}

/*End Slider JS*/

/*Modal Work*/
.modal-work.home-video .content_modal-work {
  padding-bottom: 50%;
}

.modal-work.home-video .all-block_modal-work .close_modal-work {
  top: -30px;
}

.modal-work.home-video .content_modal-work .other-block-text_block-full {
  position: absolute;
  top: 100%;
  width: 100%;
}

.modal-work {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 100000100;
}

.modal-work .bg_modal-work {
  background: url(images/bg_modal.png);
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.modal-work .all-block_modal-work {
  position: relative;
  max-width: 880px;
  width: 98%;
  margin: auto;
}

.modal-work .all-block_modal-work .close_modal-work {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: -30px;
  z-index: 100;
  background: url(images/close_modal_work.png) no-repeat;
  transition: .3s linear;
  -webkit-transition: .3s linear;

}

.modal-work .all-block_modal-work .content_modal-work {
  position: relative;
}

.all-slider_modal-work {
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

.all-slider_modal-work .slider_modal-work {
  /*height: 485px;*/
  width: auto;
  overflow: hidden;
}

.all-slider_modal-work .slider_modal-work .content_slider_modal-work {
  position: relative;
  float: left;
  line-height: 0;
}

.all-slider_modal-work .slider_modal-work .content_slider_modal-work>img {
  border-radius: 3px;
  width: 100%;
  max-height: 100%;
}

.all-slider_modal-work .slider_modal-work .content_slider_modal-work .text_content_slider_modal-work {
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 1;
  background: url(images/bg-text-modal-work.png);
  width: 100%;
  line-height: normal;
  border-radius: 0 0 3px 3px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: 20px 30px;
}

.all-slider_modal-work .slider_modal-work .content_slider_modal-work .text_content_slider_modal-work .name_text_content_slider_modal-work {
  margin: 0;
  font-size: 30px;
  color: var(--white);
  display: inline-block;
}

.all-slider_modal-work .slider_modal-work .content_slider_modal-work .text_content_slider_modal-work .name-img_text_content_slider_modal-work {
  margin: 0;
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  display: inline-block;
  padding-left: 10px;
}

.all-slider_modal-work .slider_modal-work .content_slider_modal-work .text_content_slider_modal-work .other_text_content_slider_modal-work {
  margin: 0;
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
}

.text_modal-work_mob {
  display: none;
}

.modal-work .navi_modal-work {
  float: left;
  width: 100%;
  border-top: 1px solid #636363;
  border-bottom: 1px solid #636363;
  display: none;
}

.modal-work .navi_modal-work>a {
  display: block;
  width: 100px;
  height: 100px;
  line-height: 0;
  background: no-repeat center;
}

.modal-work .navi_modal-work>.prev_modal-work {
  background-image: url(images/prev_modal.png);
  border-right: 1px solid #636363;
  float: left;
}

.modal-work .navi_modal-work>.next_modal-work {
  background-image: url(images/next_modal.png);
  border-left: 1px solid #636363;
  float: right;
}

.all-slider_modal-work .slider_modal-work .slidesjs-pagination {
  width: 100%;
  padding-top: 10px;
}

.all-slider_modal-work .slider_modal-work .slidesjs-pagination>li>a {
  border-color: var(--white);
  width: 8px;
  height: 8px;
  background: none;
}

.all-slider_modal-work .slider_modal-work .slidesjs-pagination>li>a.active,
.all-slider_modal-work .slider_modal-work .slidesjs-pagination>li>a:hover {
  background: var(--white);
}

.all-slider_modal-work .navi_prev-next {
  background: url(images/bg-text-modal-work.png);
  width: 150px;
  padding: 10px 10px 10px 20px;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 106px;
  z-index: 101;
}

.all-slider_modal-work .navi_prev-next .slidesjs-navigation {
  float: left;
  display: block;
  width: 14px;
  height: 22px;
  background: no-repeat;
  text-indent: -9999em;
  overflow: hidden;
  margin-top: 5px;
  transition: .3s linear;
  -webkit-transition: .3s linear;
}

.all-slider_modal-work .navi_prev-next .slidesjs-previous {
  background-image: url(images/prev_modal_client.png);
}

.all-slider_modal-work .navi_prev-next .slidesjs-next {
  background-image: url(images/next_modal_client.png);
  margin-left: 35px;
}

.all-slider_modal-work .navi_prev-next .slidesjs-navigation:hover {
  opacity: .7;
}

.all-slider_modal-work .navi_prev-next .count-slide {
  font-size: 24px;
  font-weight: 300;
  color: var(--white);
  float: right;
  padding: 0 0 0 30px;
}
/*End Modal Work*/

/*Sign Up Modal*/

.form-holder {
  background: var(--white);
  padding: 0;
  text-align: center;
}

.form-holder .cform {
  overflow: hidden;
  width: 100%;
  padding-bottom: 15px;
}

.form-holder ol.cf-ol li,
.form-holder ol.cf-ol li label {
  padding: 5px 0;
  max-width: 580px;
  margin: 0 auto !important;
}

.form-holder ol.cf-ol li.textonly {
  background: none repeat scroll 0 0 var(--zoomphBlue) !important;
  color: var(--white);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 5% !important;
  margin-top: 0 !important;
  max-width: 100%;
  padding: 3.5% 0;
  text-align: center;
}

/*---------------*/

/*Other*/
.customize-support .head {
  top: 28px;
}

.customize-support #wpadminbar {
  z-index: 100000000;
}

.ls-bottom-nav-wrapper {
  bottom: 10px;
}

.overlay-white {
  background: white;
  height: 56px;
  opacity: 0.7;
  position: relative;
  top: -53px;
  display: none;
  width: 265px;
  margin: auto;
}

.overlay-loading {
  background: url(images/loading_zoomph.gif) center no-repeat;
  height: 60px;
  opacity: 0.9;
  position: relative;
  top: -112px;
  left: 100px;
  display: none;
}

.fb-like {
  clear: left;
  padding: 5px 0 0;
  width: 150px !important;
}

.twitter-share-button {
  display: inline-block;
}

.slider-title {
  width: 520px;
  color: var(--white);
  font-size: 48px;
  font-weight: 300;
  line-height: 48px !important;
  margin: 0;
  text-align: left;

}

.slider-subtitle {
  width: 550px;
  font-size: 24px;
  color: var(--white);
  font-weight: 300;
  line-height: 30px;
  padding: 15px 0;
  margin: 0;
  text-align: left;
}
/*center Slider Btn */
.slider-title-center {
  width: 520px;
  color: var(--white);
  font-size: 48px;
  font-weight: 300;
  line-height: 48px !important;
  margin: 0;
  text-align: center;
  margin-left: 0px !important;

}

.slider-subtitle-center {
  width: 550px;
  font-size: 24px;
  color: var(--white);
  font-weight: 300;
  line-height: 30px;
  padding: 15px 0;
  margin: 0;
  text-align: center;
  margin-left: 0px !important;
}

.slider-button-center {
  margin-left: 0px !important;

}

a.no-hover {
  cursor: default;
}

.entry-title {
  font-size: 36px;
  font-weight: 300;
  margin: 0;
  padding: 0 0 0 12px;
  text-align: center;
  padding: 100px 0 0 0;
}


/*End Other*/



/*End Other*/



/*-----------------V2-----------------*/
.platform-nav-container {
  border: none;
  border-radius: 3px;
  float: left;
  text-align: center;
  width: 33%;
  position: relative;
}

.platform-nav-container ul div {
  height: 100px;
  width: 100px;
  border-radius: 55px;
  background-color: #404040;
  border: 5px solid #252525;
  transition: .3s linear;
  -webkit-transition: .3s linear;
}



.platform-nav.landing ul li a:hover:after {
  background: var(--white);
  top: 140px;
  color: #333;
  content: attr(tool);
  padding: 5px 15px;
  position: absolute;
  z-index: 98;
  width: 200px;
  left: -65px;
  text-align: center;
  text-transform: none;
  border-radius: 3px;
  text-shadow: none;
  font-weight: 300;
  box-shadow: 1px 1px 2px #000;

}

.platform-nav.landing ul li a:hover:before {
  border: solid;
  border-color: var(--white) transparent;
  border-width: 0 6px 6px 6px;
  top: 136px;
  left: 46%;
  content: "";
  position: absolute;
  z-index: 99;
}

.platform-nav h1 {
  text-align: center;
  font-size: 48px;
  color: var(--white);
  font-weight: 300;
  padding: 0;
  margin: 0;
  text-shadow: 1px 1px 2px #000;
}

.platform-nav-container h2 {
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
  text-shadow: 1px 1px 2px #000;
  margin: 24px 0 12px;
}

.platform-nav ul {
  list-style: none;
  color: var(--white);
  padding: 0;
  margin: 0 auto;
  width: 80%
}

.platform-nav ul li {
  float: left;
  text-align: center;
  width: 35%;
  height: 135px;
  margin: 0 5% 5% 10%;
}

.platform-nav ul li.count_2,
.platform-nav ul li.count_4 {
  margin: 0 10% 5% 5%;
}

.platform-nav ul li a {
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  position: relative;


}

.platform-nav ul div {
  margin: 0 auto 5px;
  width: 100px;
  height: 100px;
}

.platform-nav ul div.pink,
.platform-nav.single ul li.active div.pink {
  background-color: var(--zoomphBlue);
  border: 5px solid var(--zoomphAuburn);
}

.platform-nav ul div.yellow,
.platform-nav.single ul li.active div.yellow {
  background-color: #fdbf38;
  border: 5px solid #e8a525;
}

.platform-nav ul div.purple,
.platform-nav.single ul li.active div.purple {
  background-color: #583661;
  border: 5px solid #4b2d53;
}

.platform-nav ul a {
  text-shadow: 1px 1px 2px #000;
}

.platform-nav ul a:hover {
  text-decoration: none;
}

.platform-nav.landing ul a:hover>div {
  background: none;
  border: 5px solid var(--white);
}

.platform-nav ul a>div>img {
  height: auto;
  width: 100%;
  padding-top: 0px;
  margin: 0 auto;
  transition: .3s linear;
  -webkit-transition: .3s linear;

}

.platform-nav ul a:hover>div>img {
  padding-top: 5%;
  height: 90%;
  width: 90%;
  transition: none;
  -webkit-transition: none;
}

.platform-v2-header-container {
  width: 50%;
  color: var(--white);
  margin: 0 auto;
}

.tricon-img {
  margin: 0 auto;
}

.tricon-title {
  font-size: 24px;
  font-weight: 400;
  padding: 30px 45px 0;
}

.tricon-copy {
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  text-align: center;
  padding: 5px 45px 0;

}

.tricon-container {
  width: 31%;
  padding: 0 1%;
  text-align: center;
  float: left;

}

.hero-img {
  position: absolute;
  top: 0;
  left: 700px;
  max-height: 400px;

}

.block-full.platform-v2 {
  overflow: hidden;
}

.platform-v2-video-text-container {
  float: left;
  width: 450px;
  padding: 0;
  margin: 0 0 0 20px;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}

.platform-v2-video-text-container h2 {
  font-size: 24px;
  font-weight: 400;
  padding: 0;
  margin: 0 0 20px 0
}

.platform-nav.single ul {
  width: 90%;
}

.platform-nav.single ul li div {
  width: 70px;
  height: 70px;
}

.platform-nav.single ul li {

  width: 25%;
  margin: 0;
}

.platform-nav.single ul li.count_2,
.platform-nav.single ul li.count_4 {
  margin: 0;
}

.platform-nav.single ul li a {
  color: #404040;
  text-shadow: none;
  font-weight: 300;
  height: 100px;

}

.platform-nav.single ul li div {
  opacity: .3;
}

.platform-nav.single ul li.active div,
.platform-nav.single a:hover>div {
  opacity: 1;
  visibility: visible;
}


.platform-nav.single .platform-nav-container h2 {
  margin-top: 0;
  text-shadow: none;
  color: #404040;
  font-weight: 300;
}

.platform-v2-video-container {
  width: 500px;
  height: 281px;
  margin-left: 100px;
  float: left;
}

.platform-bc {
  text-transform: uppercase;
  text-align: center;
  font-size: 16px;
  color: #666
}

.platform-bc a:hover {
  color: #111;
  text-decoration: underline;

}

.single-case-study .hero {
  color: var(--white);
}

/* zoomph single widget */
.tm-widget {
  max-width: 450px;
  margin: 0 auto;
}

/*eBook*/
.eb-callout {
  background: var(--zoomphBlue);
  color: var(--white);
  text-align: center;
}

.eb-top-maincont {

  max-width: 1000px;
  margin: 0 auto;
}

.eb-top-maincont h1,
.eb-top-maincont h2 {
  text-align: center;
}

.eb-top-maincont img {
  width: 168px;
  padding: 0px;
  margin: 0 auto;
  display: block;
  margin-top: 30px;

}

.block-full.no-border.first-gray.ebook {
  width: 100%;
  background: url('http://zoomph.com/wp-content/uploads/2014/04/eb-head-bg.jpg')no-repeat;
  color: var(--white);
  padding: 0px;
}

.eb-dynamic-width {
  max-width: 1000px;
  margin: auto;
  position: relative;
}

.ebook .left {
  width: 55%;
  float: left;
  overflow: hidden;
}

.ebook .right {
  width: 40%;
  float: right;
}

.eb-s2-left {
  width: 46%;
  display: inline-block;
  vertical-align: top;
  padding: 20px;
  line-height: 1.5;
}

.eb-s2-right {
  width: 46%;
  display: inline-block;
  vertical-align: top;
  padding: 20px;
  line-height: 1.5;
}

.block-full .cf-ol>li {
  margin-top: 15px !important;
}

.block-full .cf-ol>li input,
.block-full .cf-ol>li textarea {
  width: 100%;
}

.block-full.ebook .cf-sb .sendbutton {
  background-image: none;
}

.block-full.ebook .cf-sb .sendbutton {
  background-color: var(--zoomphBlue) !important;
  text-shadow: 1px 1px 2px #000;
  font-weight: 600;
  width: 200px;
  margin-bottom: 40px;
}

.block-full.ebook .cf-sb .sendbutton:hover {
  background: var(--zoomphAuburn);
  text-shadow: none;
  text-decoration: none;
}

.block-full.ebook .cf-sb .sendbutton:hover {
  background-color: #46A6F4 !important;
}

#li-2-2,
#li-6-2,
#li-9-2 {
  position: fixed;
  top: -200px;
}

.block-full.ebook .cf-sb {
  text-align: left !important;
}

/*end eBook*/

/* form error text */

ol.cf-ol ul.cf_li_text_err li {
  background: url(icon-alert.png) no-repeat left 1px !important;
  list-style: none !important;
  font-weight: bold;
  text-indent: 0;
  margin: 10px 0 2px !important;
  padding-left: 25px !important;
  color: var(--zoomphBlue);
  font-size: 12px;
  background: transparent !important;
  margin-top: 10px !important;
}

.block-full.ebook .cf-ol>li input {
  width: 100%;
  margin-bottom: 10px;
}

/* featured-apps */

.featured-apps h4 {
  font-size: 24px;
  color: #252525;
  line-height: 1;
  -moz-transform: matrix(0.92245722661914, 0, 0, 0.92618951173898, 0, 0);
  -webkit-transform: matrix(0.92245722661914, 0, 0, 0.92618951173898, 0, 0);
  -ms-transform: matrix(0.92245722661914, 0, 0, 0.92618951173898, 0, 0);
  transform: matrix(0.92245722661914, 0, 0, 0.92618951173898, 0, 0);
  margin: 0px;
  padding: 0px;
}

.featured-apps h5 {
  font-size: 14.004px;
  color: rgba(37, 37, 37, 0.502);
  text-transform: uppercase;
  line-height: 2;
  -moz-transform: matrix(0.92245722661914, 0, 0, 0.92618951173898, 0, 0);
  -webkit-transform: matrix(0.92245722661914, 0, 0, 0.92618951173898, 0, 0);
  -ms-transform: matrix(0.92245722661914, 0, 0, 0.92618951173898, 0, 0);
  transform: matrix(0.92245722661914, 0, 0, 0.92618951173898, 0, 0);
  margin: 0px;
  padding: 0px;
}

.featured-apps p {
  margin: 0 auto;
  padding: 0px;
  max-width: 200px;

}

.featured-apps a {
  text-decoration: none;

}

.featured-apps .featured-apps-icons {
  float: left;
  width: 33%;
  text-align: center
}

.app-page-header-bg {
  height: 400px;
}

.hero-img {
  max-width: 700px;
}

/* How it Works */

.intro-cta-cont,
.quote-cta,
.api-cta {
  max-width: 750px;
  margin: 0 auto;
}

.quote-cta {
  color: var(--white);
}

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

  /* p,
	ul, */
  ul li {
    text-align: left;
  }

  /* .homepage-header h2 {
		font-size: 42px !important;
	} */
}
