﻿/* Normalization */
@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:400,700,300);
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}
[hidden] {
  display: none;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}
body {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}
a:hover,
a:active {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
blockquote {
  margin: 1em 40px;
}
dfn {
  font-style: italic;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  margin: 1em 0;
  padding: 0;
}
ins {
  background: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background: #ff0;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
pre,
code,
kbd,
samp {
  font-family: monospace,serif;
  font-size: 1em;
}
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
q {
  quotes: none;
}
q:before,
q:after {
  content: "";
  content: none;
}
small {
  font-size: 85%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
dd {
  margin: 0 0 0 40px;
}
nav ul,
nav ol,
ul[role="nav"] {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
form {
  margin: 0;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
label {
  cursor: pointer;
}
legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
  white-space: normal;
}
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
button,
input {
  line-height: normal;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  *overflow: visible;
}
button[disabled],
input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  *width: 13px;
  *height: 13px;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td {
  vertical-align: top;
}
/* Colors */
/* Media Query Variables */
/* General Styles */
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
body {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.2em;
  color: #000;
  overflow-x: hidden;
}
h2 {
  font-family: "proxima-nova", Futura, Arial, sans-serif;
  font-weight: 300;
  font-size: 48px;
  line-height: 44px;
  margin: 0 0 30px 0;
}
p {
  line-height: 30px;
  margin: 0;
}
p strong {
  font-weight: 700;
}
p.large {
  font-family: "proxima-nova", Futura, Arial, sans-serif;
  font-size: 24px;
  line-height: 36px;
}
.blue {
  color: #0170b9;
}
a {
  text-decoration: none;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  margin: 0;
  list-style: none;
}
.hidden {
  display: none;
}
.wrapper {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1em;
}
/* Buttons*/
.btn {
  font-family: "proxima-nova", Futura, Arial, sans-serif;
  font-weight: 700;
  line-height: 16px;
  width: auto;
  color: #fff;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  padding: 10px 0;
  text-transform: uppercase;
  transition: color 0.5s ease;
}
.btn:hover {
  color: #ffd36f;
}
.i-email {
  display: inline-block;
  width: 18px;
  height: 12px;
  background: url(../images/i-email.png) no-repeat top left;
  margin-right: 4px;
}
/* Header */
header {
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}
header nav {
  padding: 10px 0 15px;
  position: relative;
  left: 10%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 350px;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header nav .qwvr-nav-logo {
  width: 129px;
  height: 55px;
}
header nav .nav-item a {
  font-family: "proxima-nova", Futura, Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  -webkit-transform: translate(0, 24px);
      -ms-transform: translate(0, 24px);
          transform: translate(0, 24px);
  color: #fff;
}
@media all and (max-width: 400px) {
  header nav {
    max-width: 320px;
    left: 0;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    margin: 0 auto;
  }
}
/* Sections */
main .ic-box {
  width: 46px;
  height: 47px;
  position: absolute;
  bottom: 0;
  right: 10%;
  background: url('../Images/logo-ic-small.png') no-repeat;
  background-size: cover;
}
@media all and (max-width: 768px) {
  main .ic-box {
    width: 30px;
    height: 30px;
  }
}
main.index .initial-section {
  width: 100%;
  background: url("../images/header-bg.jpg") no-repeat top center;
  background-size: cover;
  padding: 120px 0 175px;
  text-align: center;
  position: relative;
}
main.index .initial-section .wrapper {
  max-width: 747px;
}
main.index .initial-section .logo {
  width: 150px;
  height: 57px;
  display: block;
  background: url("../images/ic-logo.png") no-repeat;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  top: 60px;
  left: 120px;
}
main.index .initial-section h2 {
  margin: 0;
  position: relative;
}
main.index .initial-section h2 span {
  width: 331px;
  height: 122px;
  background: url("../images/qwvr-logo-white.png") no-repeat top center;
  display: block;
  margin: 0 auto;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
main.index .initial-section h1 {
  font-family: "proxima-nova", Futura, Arial, sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 64px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 0 30px 0;
  border-bottom: solid 2px rgba(255, 255, 255, 0.6);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
  margin-bottom: 25px;
}
main.index .initial-section p {
  font-weight: 400;
  line-height: 27px;
  color: #fff;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 24px;
}
main.index .initial-section .scroll-arrow-wrapper {
  width: 215px;
  position: absolute;
  bottom: 45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
main.index .initial-section .scroll-arrow-wrapper .scroll-arrow-outer-circle {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  border: 2px solid #45a9f8;
  background-color: #786c69;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
}
main.index .initial-section .scroll-arrow-wrapper .scroll-arrow-outer-circle a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
main.index .initial-section .scroll-arrow-wrapper .scroll-arrow-outer-circle .scroll-arrow-inner-circle {
  position: relative;
  border: 2px solid #697f96;
  background-color: #786c69;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
main.index .initial-section .scroll-arrow-wrapper .scroll-arrow-outer-circle .scroll-arrow-inner-circle .scroll-arrow {
  position: relative;
  border-left: 2px solid black;
  border-bottom: 2px solid black;
  width: 15px;
  height: 15px;
  top: 8px;
  left: 11px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
main.index .initial-section .scroll-arrow-wrapper .scroll-arrow-text {
  margin-top: 10px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "proxima-nova", Futura, Arial, sans-serif;
  font-weight: 700;
}
@media all and (max-width: 768px) {
  main.index .initial-section {
    padding: 80px 0 160px;
  }
  main.index .initial-section .wrapper {
    max-width: 592px;
  }
  main.index .initial-section .logo {
    left: 50%;
    margin-left: -75px;
  }
  main.index .initial-section h2 span {
    width: 280px;
    height: 103px;
    background-size: cover;
  }
  main.index .initial-section h1 {
    font-size: 50px;
    padding: 0 0 15px 0px;
    margin-bottom: 15px;
    margin-top: 10px;
  }
  main.index .initial-section p {
    font-size: 18px;
  }
  main.index .initial-section .scroll-arrow-wrapper {
    bottom: 30px;
  }
}
@media all and (max-width: 595px) {
  main.index .initial-section .wrapper {
    max-width: 480px;
  }
  main.index .initial-section h1 {
    font-size: 40px;
    line-height: 40px;
  }
  main.index .initial-section p {
    font-size: 15px;
  }
}
@media all and (max-width: 480px) {
  main.index .initial-section .wrapper {
    max-width: 392px;
  }
  main.index .initial-section h1 {
    font-size: 30px;
    line-height: 30px;
  }
  main.index .initial-section p {
    font-size: 14px;
  }
}
@media all and (max-width: 400px) {
  main.index .initial-section h1 {
    font-size: 30px;
    line-height: 30px;
  }
}
.bot {
  width: 160px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 10px 20px;
}
.bot__name p {
  font-family: "proxima-nova", Futura, Arial, sans-serif;
  font-size: 13px;
  color: #1274cc;
}
.bot__line {
  width: 13px;
}
@media all and (max-width: 668px) {
  .bot {
    margin: 10px 10px 15px;
  }
  .bot__line {
    display: none;
  }
}
@media all and (max-width: 400px) {
  .bot__img {
    width: 140px;
  }
}
#primary {
  background: #fff;
  padding: 40px 0 0;
  text-align: center;
  position: relative;
}
#primary .wrapper {
  max-width: 1200px;
}
#primary .logo {
  width: 315px;
  height: 105px;
  background: url("../images/qwvr-logo.png") no-repeat;
  margin: 0 auto 50px;
  display: block;
}
#primary img {
  width: auto;
}
#primary img.flow {
  margin: 50px auto 70px;
}
#primary #clients {
  background: #fff;
  padding: 0 0 50px;
  text-align: center;
}
#primary #clients .wrapper {
  max-width: 1200px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}
#primary #clients .client {
  margin: 30px;
  width: 100px;
}
@media all and (max-width: 768px) {
  #primary #clients {
    padding: 50px 0;
  }
  #primary #clients ul li {
    display: block;
    text-align: center;
    margin: 0 0 20px 0;
  }
  #primary #clients ul li img {
    margin: 0 auto;
  }
  #primary #clients ul li:last-of-type {
    margin: 0;
  }
}
#primary #bots-explanation-anchor {
  position: absolute;
  -webkit-transform: translateY(-125px);
      -ms-transform: translateY(-125px);
          transform: translateY(-125px);
}
#primary .explanations-section {
  background-color: #f6f8f9;
  padding: 70px 0;
}
#primary .explanations-section .qwvr-explanation {
  max-width: 750px;
  margin: 0 auto 50px;
  position: relative;
}
#primary .explanations-section .qwvr-explanation h2 {
  color: #1274cc;
  margin-bottom: 10px;
}
#primary .explanations-section .qwvr-explanation h2 span {
  color: #000;
}
@media all and (max-width: 400px) {
  #primary .explanations-section .qwvr-explanation h2 {
    font-size: 35px;
  }
}
#primary .explanations-section .qwvr-explanation p {
  margin-top: 20px;
  display: inline-block;
  font-size: 20px;
  font-family: "proxima-nova", Futura, Arial, sans-serif;
  padding: 0 20px;
}
#primary .explanations-section .hr {
  height: 3px;
  width: 75px;
  margin: 0 auto;
  background-color: #666;
}
#primary .explanations-section .bots-explanation {
  margin: 50px 0 0;
}
#primary .explanations-section .bots-explanation h3 {
  margin: 0 0 15px 0;
  font-size: 36px;
  font-family: "proxima-nova", Futura, Arial, sans-serif;
  font-weight: 300;
  line-height: 36px;
}
#primary .explanations-section .bots-explanation p {
  font-size: 16px;
}
#primary .explanations-section .bots-explanation .bots {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
}
@media all and (max-width: 400px) {
  #primary .explanations-section .bots-explanation h3 {
    font-size: 30px;
  }
}
#primary .case-studies {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  max-width: 1250px;
  margin: 60px auto;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#primary .case-studies .case-study {
  margin: 12px;
  position: relative;
}
#primary .case-studies .case-study .case-study-hover {
  z-index: 10;
  top: 0;
  left: 0;
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
#primary .case-studies .case-study .case-study-hover a {
  display: block;
  width: 100%;
  height: 100%;
}
#primary .case-studies .case-study .case-study-hover .hover-image {
  display: block;
  width: 30%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#primary .case-studies .case-study .case-study-hover .case-study-hover-text {
  text-align: left;
  color: #fff;
  font-family: "proxima-nova", Futura, Arial, sans-serif;
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 18px 25px;
}
#primary .case-studies .case-study .case-study-hover .case-study-hover-text h3 {
  font-size: 14px;
  text-transform: uppercase;
  margin: 0 0 5px;
}
#primary .case-studies .case-study .case-study-hover .case-study-hover-text p {
  font-size: 12px;
  line-height: 12px;
}
#primary .case-studies .case-study .case-study-hover .case-study-hover-text br {
  display: none;
}
@media all and (max-width: 360px) {
  #primary .case-studies .case-study .case-study-hover .case-study-hover-text p {
    display: none;
  }
  #primary .case-studies .case-study .case-study-hover .case-study-hover-text br {
    display: block;
  }
}
@media all and (max-width: 820px) {
  #primary .case-studies .case-study {
    width: 100%;
    max-width: 385px;
    margin: 5px;
  }
}
#primary .video-section {
  width: 100%;
  max-width: 700px;
  margin: 85px auto 0;
}
#primary .video-section .text-wrapper {
  padding: 0 20px;
}
#primary .video-section .text-wrapper h3 {
  margin: 0 0 35px;
  font-size: 36px;
  line-height: 40px;
  font-weight: 300;
  font-family: "proxima-nova", Futura, Arial, sans-serif;
}
#primary .video-section .text-wrapper p {
  font-size: 20px;
}
#primary .video-section .video-wrapper {
  width: 100%;
  max-width: 700px;
  margin: 30px auto 0;
}
#primary .video-section .video {
  position: relative;
  padding-bottom: 52.70%;
  padding-top: 25px;
  height: 0;
}
#primary .video-section .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media all and (max-width: 595px) {
  #primary .video-section .video {
    padding-top: 12px;
  }
}
@media all and (max-width: 400px) {
  #primary .video-section .text-wrapper h3 {
    font-size: 30px;
    line-height: 34px;
  }
}
#secondary #learn-more {
  background: url("../images/learnmore-bg.jpg") no-repeat;
  background-size: cover;
  padding: 80px 10px;
}
#secondary #learn-more h2 {
  font-family: "proxima-nova", Futura, Arial, sans-serif;
  font-size: 32px;
  text-align: center;
  margin: 0 0 20px;
}
#secondary #learn-more hr {
  width: 100px;
  margin: 0 auto 40px;
  border: 1px solid #44abfc;
}
#secondary #learn-more .learn-more-ctas {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 570px;
  margin: 0 auto;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#secondary #learn-more .learn-more-ctas .twitter-button {
  width: 200px;
  height: 50px;
  background-color: #44abfc;
}
#secondary #learn-more .learn-more-ctas .twitter-button a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 13px 15px;
}
#secondary #learn-more .learn-more-ctas .twitter-button .twitter-icon {
  display: inline-block;
  width: 25px;
  height: 20px;
  background: url("../images/learnmore-icons.png") no-repeat;
  background-position: 0 0;
  margin-right: 15px;
}
#secondary #learn-more .learn-more-ctas .twitter-button p {
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  font-family: "proxima-nova", Futura, Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  -webkit-transform: translatey(-1px);
      -ms-transform: translatey(-1px);
          transform: translatey(-1px);
}
#secondary #learn-more .learn-more-ctas .qwvr-phone,
#secondary #learn-more .learn-more-ctas .qwvr-fax {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 300px;
  width: 100%;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#secondary #learn-more .learn-more-ctas .qwvr-phone p,
#secondary #learn-more .learn-more-ctas .qwvr-fax p {
  display: inline-block;
  color: #1274cc;
  font-size: 22px;
  line-height: 22px;
}
#secondary #learn-more .learn-more-ctas .qwvr-phone p.label,
#secondary #learn-more .learn-more-ctas .qwvr-fax p.label {
  margin-right: 15px;
}
#secondary #learn-more .learn-more-ctas .qwvr-fax {
  margin-top: 10px;
}
@media all and (max-width: 480px) {
  #secondary #learn-more .learn-more-ctas {
    max-width: 300px;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #secondary #learn-more .learn-more-ctas .twitter-button {
    margin-bottom: 30px;
  }
}
#secondary .have-an-idea {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 950px;
  margin: 0 auto;
}
#secondary .have-an-idea .idea-form {
  font-family: "proxima-nova", Futura, Arial, sans-serif;
  padding: 30px;
}
#secondary .have-an-idea .idea-form h2 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 32px;
  margin: 0;
}
#secondary .have-an-idea .idea-form p {
  margin-bottom: 25px;
}
#secondary .have-an-idea .idea-form .form-group label {
  display: block;
  font-size: 14px;
}
#secondary .have-an-idea .idea-form .form-group input,
#secondary .have-an-idea .idea-form .form-group textarea {
  background-color: #f2f2f2;
  border: 0;
  margin-bottom: 30px;
  font-size: 14px;
}
#secondary .have-an-idea .idea-form .form-group input {
  padding: 0 10px;
  width: 320px;
  height: 40px;
}
#secondary .have-an-idea .idea-form .form-group textarea {
  padding: 10px;
  width: 420px;
  height: 140px;
}
#secondary .have-an-idea .idea-form .form-group .field-validation-error {
  color: red;
  font-size: 14px;
  position: absolute;
  width: 100%;
  display: block;
  left: 30px;
  -webkit-transform: translateY(-30px);
      -ms-transform: translateY(-30px);
          transform: translateY(-30px);
}
@media all and (max-width: 880px) {
  #secondary .have-an-idea .idea-form .form-group .field-validation-error {
    left: 0;
  }
}
#secondary .have-an-idea .idea-form button {
  background-color: #000;
  color: #fff;
  padding: 15px 25px;
  border: 0;
  text-transform: uppercase;
  font-family: "proxima-nova", Futura, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
}
#secondary .have-an-idea .phone {
  background: url("../images/phone.png") no-repeat 0 0;
  width: 387px;
  height: 575px;
  z-index: 100;
  margin-top: 35px;
  -webkit-transform: translatey(1px);
      -ms-transform: translatey(1px);
          transform: translatey(1px);
}
#secondary .have-an-idea .phone #twitter-feed {
  width: 330px;
  height: 391px;
  position: relative;
  top: 141px;
  left: 28px;
  overflow: hidden;
}
#secondary .have-an-idea .phone #twitter-feed ul {
  position: relative;
}
@media all and (max-width: 668px) {
  #secondary .have-an-idea .phone {
    display: none;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  #secondary .have-an-idea .phone {
    background: url("../images/phone-2x.png") no-repeat 0 0;
    background-size: contain;
  }
  #secondary .have-an-idea .phone #twitter-feed {
    top: 148px;
    left: 25px;
    width: 322px;
    height: 384px;
  }
}
@media all and (max-width: 880px) {
  #secondary .have-an-idea {
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #secondary .have-an-idea .idea-form {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  #secondary .have-an-idea .idea-form .form-group input,
  #secondary .have-an-idea .idea-form .form-group textarea {
    width: 420px;
  }
  #secondary .have-an-idea .phone {
    margin-top: 0;
  }
}
@media all and (max-width: 480px) {
  #secondary .have-an-idea .idea-form .form-group input,
  #secondary .have-an-idea .idea-form .form-group textarea {
    width: 100%;
  }
}
@media all and (max-width: 360px) {
  #secondary .have-an-idea .phone {
    margin-left: -38px;
  }
}
.numbers-section {
  width: 100%;
  padding: 90px 0;
  text-align: center;
  vertical-align: middle;
  background: url("../images/numbers-banner.jpg") no-repeat bottom center;
  background-size: cover;
  position: relative;
}
.numbers-section:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  left: 0;
  top: 0;
  z-index: 1;
}
.numbers-section .wrapper {
  position: relative;
  z-index: 2;
}
.numbers-section h2 {
  font-family: "proxima-nova", Futura, Arial, sans-serif;
  font-size: 48px;
  line-height: 15px;
  font-weight: 400;
  color: #fff;
}
.numbers-section hr {
  width: 100px;
  margin: 0 auto;
  border: 1px solid #44abfc;
}
.numbers-section .inner {
  text-align: center;
  margin-top: 70px;
  width: 100%;
  max-width: 930px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.numbers-section .inner h3 {
  color: #44abfc;
  font-size: 42px;
  font-family: "proxima-nova", Futura, Arial, sans-serif;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 400;
}
.numbers-section .inner p {
  color: #fff;
  font-size: 15px;
  font-family: 'Roboto Slab', Georgia, serif;
}
.numbers-section .inner .number-icon {
  width: 75px;
  height: 70px;
  background: url("../images/numbers-icons.png") no-repeat;
  margin: 0 auto;
}
.numbers-section .inner .tweets-processed .number-icon {
  background-position: 0 0;
}
.numbers-section .inner .tweets-sent .number-icon {
  background-position: -71px -6px;
}
.numbers-section .inner .campaigns-powered .number-icon {
  background-position: -150px 0;
}
@media all and (max-width: 880px) {
  .numbers-section p {
    display: block;
    margin: 0px 0 0 0;
  }
}
@media all and (max-width: 768px) {
  .numbers-section {
    padding: 50px 0;
  }
  .numbers-section h2 {
    font-size: 30px;
    line-height: 30px;
    margin: 0 0 30px 0;
  }
  .numbers-section p {
    margin: 0px 0 0 0;
  }
  .numbers-section p a {
    cursor: pointer;
  }
}
@media all and (max-width: 668px) {
  .numbers-section .inner {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 30px;
  }
  .numbers-section .inner .tweets-processed,
  .numbers-section .inner .tweets-sent,
  .numbers-section .inner .campaigns-powered {
    width: 100%;
  }
  .numbers-section .inner .tweets-sent {
    margin: 40px 0;
  }
}
/* Case study pages */
main.case-study-page .initial-section {
  width: 100%;
  height: 374px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 70px;
  background-position: top center;
}
main.case-study-page .initial-section.starbucks {
  background-image: url("../images/casestudies/cs-header-starbucks.jpg");
}
main.case-study-page .initial-section.xbox {
  background-image: url("../images/casestudies/cs-header-xbox.jpg");
}
main.case-study-page .initial-section.wendys {
  background-image: url("../images/casestudies/cs-header-wendys.jpg");
}
main.case-study-page .initial-section.avengers {
  background-image: url("../images/casestudies/cs-header-capamerica.jpg");
}
main.case-study-page .initial-section.nike {
  background-image: url("../images/casestudies/cs-header-nike.jpg");
}
@media all and (max-width: 820px) {
  main.case-study-page .initial-section {
    background-position: center;
    height: auto;
    width: 100%;
  }
  main.case-study-page .initial-section:before {
    content: "";
    display: block;
    padding-top: 40%;
  }
  main.case-study-page .initial-section.starbucks {
    background-image: url("../images/casestudies/cs-header-starbucks-m.jpg");
  }
  main.case-study-page .initial-section.xbox {
    background-image: url("../images/casestudies/cs-header-xbox-m.jpg");
  }
  main.case-study-page .initial-section.wendys {
    background-image: url("../images/casestudies/cs-header-wendys-m.jpg");
  }
  main.case-study-page .initial-section.avengers {
    background-image: url("../images/casestudies/cs-header-capamerica-m.jpg");
  }
  main.case-study-page .initial-section.nike {
    background-image: url("../images/casestudies/cs-header-nike-m.jpg");
  }
}
.case-study-info {
  text-align: center;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 10px;
}
.case-study-info .case-study-logo {
  width: auto;
  margin: 0 auto 30px;
}
.case-study-info h2 {
  color: #000;
  font-size: 48px;
  margin-bottom: 15px;
}
.case-study-info h2.shorter-title br {
  display: none;
}
.case-study-info h2 span {
  color: #1274cc;
}
@media all and (max-width: 1024px) {
  .case-study-info h2.shorter-title br {
    display: block;
  }
}
@media all and (max-width: 880px) {
  .case-study-info h2 {
    font-size: 35px;
    line-height: 35px;
  }
}
@media all and (max-width: 480px) {
  .case-study-info h2 {
    font-size: 28px;
    line-height: 28px;
  }
}
.case-study-info .bot {
  margin: 40px auto 50px;
}
.case-study-info .twitter-button {
  margin: 30px auto 0;
  width: 220px;
  height: 50px;
  background-color: #000000;
}
.case-study-info .twitter-button a {
  padding: 13px 15px;
  display: block;
  width: 100%;
  height: 100%;
}
.case-study-info .twitter-button .twitter-icon {
  display: inline-block;
  width: 25px;
  height: 20px;
  background: url("../images/learnmore-icons.png") no-repeat;
  background-position: 0 0;
  margin-right: 15px;
}
.case-study-info .twitter-button p {
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  font-family: "proxima-nova", Futura, Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  -webkit-transform: translatey(-1px);
      -ms-transform: translatey(-1px);
          transform: translatey(-1px);
}
.flow-section {
  margin: 50px 0;
  padding: 0 50px;
  overflow: visible;
}
.flow-section .wrapper {
  overflow: visible !important;
  max-width: none;
}
.flow-section .wrapper .jspContainer {
  overflow: visible;
}
.flow-section img {
  width: auto;
  max-width: none;
  padding: 20px 20px;
  margin: 0 auto;
}
@media all and (max-width: 768px) {
  .flow-section {
    padding: 0 20px;
  }
  .flow-section .wrapper {
    max-width: none;
    width: 100%;
    overflow: auto;
    padding: 0 20px;
  }
  .flow-section img {
    max-width: 450px;
    width: 100%;
    padding: 0;
    position: relative;
    left: 36%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media all and (max-width: 668px) {
  .flow-section img {
    left: 45%;
  }
}
@media all and (max-width: 595px) {
  .flow-section img {
    left: 50%;
  }
}
.case-study-tiles-section {
  margin-bottom: 80px;
  text-align: center;
}
.case-study-tiles-section h2 {
  font-size: 36px;
  display: block;
  max-width: 1250px;
  text-align: left;
  margin: 0 auto 10px;
  padding: 0 0 0 29px;
}
.case-study-tiles-section .case-studies {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.case-study-tiles-section .case-studies .case-study {
  margin: 5px;
  max-width: 230px;
  position: relative;
}
.case-study-tiles-section .case-studies .case-study .case-study-active-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(50, 160, 225, 0.85);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 200;
}
.case-study-tiles-section .case-studies .case-study .case-study-active-overlay .active-text h3 {
  text-transform: uppercase;
  color: #fff;
  font-family: "proxima-nova", Futura, Arial, sans-serif;
  font-size: 24px;
  line-height: 24px;
}
.case-study-tiles-section .case-studies .case-study .case-study-hover {
  z-index: 10;
  top: 0;
  left: 0;
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.case-study-tiles-section .case-studies .case-study .case-study-hover a {
  display: block;
  width: 100%;
  height: 100%;
}
.case-study-tiles-section .case-studies .case-study .case-study-hover .hover-image {
  display: block;
  width: 30%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media all and (max-width: 480px) {
  .case-study-tiles-section .case-studies .case-study {
    width: 95%;
    max-width: 320px;
  }
}
@media all and (max-width: 1200px) {
  .case-study-tiles-section h2 {
    padding: 0;
    display: inline-block;
    max-width: none;
  }
}
footer {
  background: #000;
  padding: 40px 0 100px;
  font-family: "proxima-nova", Futura, Arial, sans-serif;
  font-size: 12px;
  color: #fff;
  overflow: hidden;
}
footer .wrapper {
  max-width: 1280px;
}
footer a {
  color: #fff;
}
footer a:hover {
  text-decoration: underline;
}
footer .col {
  width: 33%;
  float: left;
}
footer .col:first-of-type .logo {
  width: 98px;
  height: 26px;
  display: block;
  background: url("../images/ic-logo-sml.png") no-repeat;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  float: left;
}
footer .col:first-of-type .contact {
  float: left;
  margin-left: 20px;
}
footer .col:first-of-type .contact p {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  background: url("../images/phone-icon.png") no-repeat 0 4px;
  padding-left: 20px;
}
footer .col:nth-of-type(2) {
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
}
footer .col:nth-of-type(2) p {
  color: #a3a3a3;
  margin: 0 10px;
  display: inline-block;
}
footer .col:last-of-type {
  float: right;
  text-align: center;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  footer .col:first-of-type .logo {
    background: url("../images/ic-logo-sml-2x.png") no-repeat;
    background-size: contain;
  }
}
@media all and (max-width: 880px) {
  footer .col {
    width: 100%;
    margin: 0 0 20px 0;
  }
  footer .col:first-of-type {
    text-align: center;
  }
  footer .col:first-of-type .logo {
    display: inline-block;
    float: none;
    vertical-align: top;
  }
  footer .col:first-of-type .contact {
    display: inline-block;
    float: none;
    vertical-align: top;
  }
  footer .col:last-of-type {
    margin: 0;
  }
}
@media all and (max-width: 768px) {
  footer {
    padding: 30px 0;
  }
}
.jspHorizontalBar {
  height: 10px !important;
}
.jspHorizontalBar .jspTrack {
  background-color: #cad4d9;
}
.jspHorizontalBar .jspTrack .jspDrag {
  background-color: #1274cc;
  border-radius: 8px;
}
/* Additional Styles */
.clearfix:before {
  content: " ";
  display: table;
}
.clearfix:after {
  content: " ";
  display: table;
  clear: both;
}
@media all and (min-width: 760px) {
  .is-desktop {
    display: block;
  }
  .is-mobile {
    display: none;
  }
}
@media all and (max-width: 768px) {
  .is-desktop {
    display: none;
  }
  .is-mobile {
    display: block;
  }
}
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
.recaptcha-message {
  color: red;
  font-size: 15px;
  font-weight: bold;
}