@charset "UTF-8";
/* settings styles
*/
/* Eric Meyer's CSS Reset
   http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
   This is a Sass partial
*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800);
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Global layout styles
*/
body {
  background-color: black;
  color: #ffffff;
  font-size: 16px;
  font-weight: 100;
}

a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
  color: #c7b9dc;
}
a:hover {
  color: #ffffff;
}

.top-element {
  position: relative;
  padding-top: 90px;
}

.page-content {
  position: relative;
  padding-top: 60px;
  z-index: 2;
}
.page-content.-small-padding {
  padding-top: 20px;
}
.page-content:after {
  content: '';
  clear: both;
  display: table;
}

.page-outer {
  width: 100%;
}

.page-inner {
  margin: 0 auto;
  max-width: 1180px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 60px;
}

h2 {
  font-size: 30px;
  margin-bottom: 60px;
  color: #c7b9dc;
}
h2.-small-margin {
  margin-bottom: 20px;
}

h3 {
  font-size: 16px;
  margin-bottom: 20px;
}

.page-header {
  font-size: 54px;
  color: #ffffff;
  margin-bottom: 30px;
  padding-right: 50%;
  line-height: 1.2;
}
.page-header.-no-padding-right {
  padding-right: 0;
}

.page-sub-header {
  font-size: 20px;
  color: #bababa;
  margin-bottom: 30px;
  line-height: 1.4;
}
.page-sub-header.-small {
  font-size: 24px;
}
.page-sub-header.-mini {
  font-size: 20px;
}
.page-sub-header.-mini p {
  padding: 18px 0 10px;
  display: block;
}
.page-sub-header.-sub-sub {
  font-size: 16px;
  margin-bottom: 12px;
}

.text-animation {
  -webkit-transition: all 0.55s;
  -o-transition: all 0.55s;
  transition: all 0.55s;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.text-animation.-animate {
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
}

.bg-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.sizzle-video-container {
  margin: 60px 0 20px;
}

.bg-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(black));
  background-image: -o-linear-gradient(top, transparent, black);
  background-image: linear-gradient(to bottom, transparent, black);
  z-index: 1;
}

.bg-video {
  width: 100%;
}

.bg-video::-webkit-media-controls {
  display: none !important;
}

.bg-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

#fallbackVideo {
  position: absolute;
  top: -2000px;
  left: 0;
}

@media (max-width: 840px) {
  .page-header {
    font-size: 52px;
    padding: 50px 0 0;
  }
}
.trademark {
  font-size: 65%;
  position: relative;
  top: -3px;
}

@media (max-width: 650px) {
  .page-sub-header {
    font-size: 24px;
  }

  .page-inner {
    padding: 0 20px;
  }

  .text-animation.-animate {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }

  .page-content {
    padding-top: 0;
  }
}
@media (max-width: 490px) {
  .bg-video-container {
    height: 400px;
  }

  .bg-video {
    position: absolute;
    width: 740px;
    height: 420px;
    left: -50%;
  }

  body {
    -webkit-text-size-adjust: none;
  }
}
body {
  font-family: 'Open Sans', sans-serif;
}

/* Icons styles
*/
.icon-circular {
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #6e5c86;
  color: #ffffff;
}

/* Topnav layout styles
*/
nav {
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 10000;
}

nav.-compact {
  background-color: #424242;
}
nav.-compact .topnav-container {
  padding: 22px 0;
}
nav.-compact .topnav-main-menu__item a {
  font-size: 14px;
}
nav.-compact .topnav-logo {
  top: 10px;
  width: 100px;
}
nav.-compact .topnav-main-menu.-holiday {
  opacity: 1;
}

.topnav-main-menu {
  text-align: right;
}
.topnav-main-menu.-holiday {
  opacity: 0;
}

.topnav-container {
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  padding: 34px 0 32px;
}

.topnav-main-menu__item {
  display: inline-block;
  margin-left: 22px;
}
.topnav-main-menu__item a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  padding: 4px 12px 5px;
  color: #ffffff;
}
.topnav-main-menu__item a:hover {
  color: #c7b9dc;
}
.topnav-main-menu__item a.-active {
  background-color: #707070;
}

.topnav-logo {
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  position: absolute;
  top: 14px;
  z-index: 1;
  width: 140px;
}
.topnav-logo.-holiday {
  top: 65px;
}

.topnav-mobile__menu {
  display: none;
  position: absolute;
  right: 20px;
  top: 22px;
}
.topnav-mobile__menu .-close {
  display: none;
}

@media (max-width: 840px) {
  .topnav-container {
    padding: 31px 0 !important;
  }

  .topnav-main-menu {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: black;
  }
  .topnav-main-menu.-holiday {
    opacity: 0.8;
    width: 50%;
  }
  .topnav-main-menu.-holiday a {
    font-size: 18px !important;
  }

  .topnav-logo {
    width: 100px;
    top: 12px;
  }

  nav {
    position: fixed;
    width: 100%;
    z-index: 1000;
  }

  .topnav-mobile__menu {
    display: block;
  }

  .topnav-main-menu__inner {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 100%;
  }

  .topnav-main-menu__item {
    display: block;
    text-align: right;
    margin-left: 0;
  }
  .topnav-main-menu__item a {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 24px !important;
    font-weight: 400;
    padding: 4px 12px 5px;
    color: #ffffff;
    line-height: 2;
  }
  .topnav-main-menu__item a:hover {
    color: #c7b9dc;
  }
  .topnav-main-menu__item a.-active {
    color: #707070;
    background-color: transparent;
  }
}
/* footer layout styles
*/
footer {
  padding: 60px 0;
  background-color: black;
  font-size: 14px;
}
footer h3 {
  font-size: 14px;
}
footer ul li {
  line-height: 1.6;
}

.footer-row {
  position: relative;
  padding-right: 40%;
}
.footer-row:after {
  content: '';
  clear: both;
  display: table;
}

.footer-col {
  float: left;
  width: 29.3%;
}
.footer-col.-double {
  width: 58.6%;
}

.footer-newsletter-signup {
  position: absolute;
  right: 0;
  top: 0;
  min-width: 100px;
  max-width: 340px;
}
.footer-newsletter-signup input {
  width: 210px;
  margin-right: 5px;
  font-size: 14px !important;
}
.footer-newsletter-signup input:disabled {
  opacity: 0.5;
}

.footer-newsletter-signup__form {
  text-align: right;
}

.footer-copyright {
  margin-top: 40px;
  padding-top: 20px;
  position: relative;
}
.footer-copyright a {
  display: inline-block;
  margin-right: 40px;
}

.footer-copyright-text {
  padding-left: 60px;
}

.footer-logo {
  position: absolute;
  top: 7px;
}

@media (max-width: 1040px) {
  .footer-copyright {
    padding-right: 0;
  }
  .footer-copyright a {
    margin: 0 0 0 14px;
  }
}
@media (max-width: 840px) {
  .contact-col {
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
  }
  .contact-col h3 {
    margin-bottom: 40px;
  }

  .footer-col {
    width: 33.3%;
  }

  .footer-row {
    padding-right: 0;
  }

  .footer-newsletter-signup {
    position: relative;
    top: auto;
    right: auto;
    clear: both;
    margin-bottom: 40px;
  }

  .footer-newsletter-signup__form {
    text-align: left;
  }
  .footer-newsletter-signup__form input {
    width: 60%;
  }

  .footer-copyright {
    margin-top: 40px;
  }
}
@media (max-width: 530px) {
  .footer-col {
    width: 100%;
    float: none;
    padding-bottom: 30px;
  }
  .footer-col h3 {
    margin-bottom: 14px;
  }

  .footer-copyright {
    margin-top: 0;
  }
  .footer-copyright .footer-col {
    float: left;
    width: 40%;
  }
  .footer-copyright .footer-col.-double {
    width: 60%;
  }
}
/* Button styles
*/
button, .button {
  font-size: 14px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #6e5c86;
  display: inline-block;
  padding: 8px 14px;
  background-color: #6e5c86;
  color: #ffffff;
  cursor: pointer;
}
button:focus, button:hover, .button:focus, .button:hover {
  outline: 0;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  color: #6e5c86;
}
button.-block, .button.-block {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 18px;
  width: 100%;
  display: block;
}
button.-is-loading, .button.-is-loading {
  position: relative;
}
button.-is-loading:before, .button.-is-loading:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #6e5c86;
  text-align: center;
}
button.-is-loading:after, .button.-is-loading:after {
  content: url(/agencystatic/images/icons/icon-loader-invert.png);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  -webkit-animation-name: spin;
  animation-name: spin;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.button-rsvp {
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
}

.button-icon {
  position: relative;
  padding-right: 60px;
}
.button-icon:after {
  content: '→';
  position: absolute;
  right: 10px;
  top: 8px;
}
.button-icon.-download:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* Form styles
*/
input[type=text], input[type=email], textarea {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  background-color: #707070;
  border: 1px solid #707070;
  padding: 8px 10px;
  font-size: 18px;
  color: #ffffff;
}
input[type=text]:focus, input[type=text]:hover, input[type=email]:focus, input[type=email]:hover, textarea:focus, textarea:hover {
  outline: 0;
  border: 1px solid #ffffff;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #bababa;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #bababa;
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #bababa;
}
input[type=text]::placeholder, input[type=email]::placeholder, textarea::placeholder {
  color: #bababa;
}
input[type=text].error, input[type=email].error, textarea.error {
  border: 1px solid red;
}

textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 72px;
  resize: none;
}

label {
  position: relative;
  display: block;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 15px;
}

.form-required {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 14px;
  color: #bababa;
}

.form-error {
  display: none;
  color: red;
  padding: 10px 0;
  font-size: 12px;
  line-height: 1.5;
}

.form-success {
  display: none;
  font-size: 12px;
  line-height: 1.5;
  color: #bababa;
  padding-top: 20px;
}

label.error {
  position: absolute;
  bottom: -20px;
  padding: 2px 0 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.5;
  color: red;
}

/* contact layout styles
*/
.contact-container {
  padding: 70px 0 60px;
  background-color: #424242;
}

.contact-row {
  position: relative;
}
.contact-row:after {
  content: '';
  clear: both;
  display: table;
}

.contact-col {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  float: left;
  width: 33.3%;
  padding: 0 20px;
}
.contact-col:first-child {
  padding-left: 0;
}
.contact-col:last-child {
  padding-right: 0;
}

.contact-col__row {
  position: relative;
  margin-bottom: 28px;
}

.contact-input {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

/* blog feature styles
*/
#blogFeature {
  min-height: 580px;
}

.blog-feature {
  border-top: 1px solid #424242;
  padding: 80px 0 110px;
  margin-top: 60px;
}
.blog-feature:after {
  content: '';
  clear: both;
  display: table;
}

.blog-feature__col1 {
  float: left;
  width: 60%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 60px;
}

.blog-feature__image {
  width: 100%;
}

.blog-feature__photo-credit {
  color: #707070;
  font-size: 12px;
  padding: 20px 0 10px;
}

.blog-feature__pull-quote {
  text-align: right;
}
.blog-feature__pull-quote p {
  padding: 20px 0 0 40%;
  line-height: 1.4;
}

.blog-feature__pull-quote--icon {
  line-height: 1.8;
}
.blog-feature__pull-quote--icon img {
  position: relative;
  top: 8px;
  width: 21px;
}

.blog-feature__col2 {
  float: left;
  width: 40%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 20px;
}
.blog-feature__col2 p {
  font-size: 16px;
  line-height: 1.5;
  color: #bababa;
  padding-bottom: 30px;
  font-weight: 100;
}

.blog-feature__category {
  font-weight: 18px;
  color: #c7b9dc;
}

.blog-feature__title {
  font-size: 22px;
  padding: 20px 0;
  line-height: 1.4;
}

.blog-feature__author {
  font-size: 14px;
  color: #bababa;
  padding-bottom: 20px;
}

@media (max-width: 840px) {
  .blog-feature__col1, .blog-feature__col2 {
    position: relative;
    float: none;
    width: 100%;
    padding: 0;
  }

  .blog-feature__col2 {
    padding-top: 30px;
  }

  .blog-feature__pull-quote {
    position: absolute;
    top: 20%;
    left: 0;
    text-align: left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0px 30px;
  }
  .blog-feature__pull-quote p {
    padding-left: 0;
  }
}
@media (max-width: 600px) {
  #blogFeature {
    min-height: 780px;
  }
}
/* Client styles
*/
.quietly-clients {
  position: relative;
  padding: 60px 0 0px;
  z-index: 2;
}

.quietly-clients__row {
  margin: -6px;
}
.quietly-clients__row:after {
  content: '';
  clear: both;
  display: table;
}

.quietly-clients__item {
  float: left;
  width: 12.5%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 6px;
  min-height: 80px;
}
.quietly-clients__item img {
  width: 100%;
}

@media (max-width: 940px) {
  .quietly-clients__item {
    width: 25%;
    padding: 30px;
  }

  .quietly-clients__row {
    margin: -30px;
  }
}
@media (max-width: 840px) {
  .quietly-clients__row {
    margin: -20px;
  }

  .quietly-clients__item {
    padding: 20px;
  }
}
@media (max-width: 600px) {
  .quietly-clients__row {
    margin: -6px;
  }

  .quietly-clients__item {
    padding: 6px;
  }
}
/* Services styles
*/
.services-hero {
  background-size: cover;
}

.services-section {
  position: relative;
  padding: 60px 0 40px;
  color: #bababa;
  z-index: 1;
}
.services-section.-alternate {
  background-color: #424242;
}
.services-section.-last {
  margin-bottom: 60px;
}

.services-icon {
  width: 50px;
  border: 1px solid white;
  border-radius: 50%;
  display: block;
  margin-bottom: 10px;
}

.services-header {
  font-size: 34px;
  color: #c7b9dc;
}
.services-header strong {
  display: block;
  font-size: 72px;
  color: #c7b9dc;
  margin-bottom: 20px;
}

.services-subheader {
  font-size: 22px;
  line-height: 1.6;
}

.services-row {
  margin-bottom: 20px;
}
.services-row:after {
  content: '';
  clear: both;
  display: table;
}
.services-row.-alternate {
  padding-right: 0;
}

.services-row__header {
  position: relative;
  padding: 0 0 40px 100px;
}

.services-row__heading {
  font-size: 50px;
  color: #c7b9dc;
}

.services-row__heading--image {
  position: absolute;
  top: 10px;
  left: 0;
  width: 66px;
}
.services-row__heading--image img {
  width: 100%;
}
.services-row__heading--image.-creative {
  width: 55px;
}

.services-col__13 {
  float: left;
  width: 33.3%;
}

.services-col__23 {
  float: left;
  width: 66.6%;
}

.services-feature {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 20px;
  line-height: 1.5;
}
.services-feature h3 {
  font-weight: bold;
}
.services-feature p {
  margin-bottom: 20px;
}
.services-feature li {
  position: relative;
  padding: 0 0 0 24px;
  margin-bottom: 5px;
}
.services-feature li:before {
  content: '';
  position: absolute;
  left: 1px;
  top: 8px;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  border: 2px solid #c7b9dc;
}
.services-feature h4 {
  color: white;
  margin-bottom: 8px;
}
.services-feature .ul-slim {
  margin-bottom: 12px;
}
.services-feature .ul-slim li {
  margin-bottom: 2px;
}
.services-feature .feature-description {
  display: block;
}

.services-example__image {
  position: relative;
  float: left;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.services-example__image img {
  width: 100%;
  -webkit-box-shadow: 5px 5px 22px -6px rgba(0, 0, 0, 0.5);
  box-shadow: 5px 5px 22px -6px rgba(0, 0, 0, 0.5);
}
.services-example__image.-alternate {
  padding-left: 100px;
  float: right;
}

.services-example__logo {
  position: absolute;
  right: -70px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 140px;
}
.services-example__logo.-alternate {
  right: auto;
  left: 26px;
}

.services-example__photo-credit {
  font-size: 12px;
  margin-top: 20px;
}

.services-example__description {
  float: left;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 70px;
  line-height: 1.5;
  padding-left: 120px;
}
.services-example__description.-no-left-pad {
  padding-left: 0;
}
.services-example__description strong {
  color: #ffffff;
}
.services-example__description h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}
.services-example__description.-alternate {
  padding-left: 0;
  padding-right: 80px;
}

.services-example__link {
  display: inline-block;
  margin-top: 40px;
}

.our-services {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.our-services__cta {
  font-size: 16px;
  text-align: right;
}

.our-services__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 4%;
  column-gap: 4%;
}
.our-services__row:after {
  content: '';
  clear: both;
  display: table;
}

.our-services__item {
  width: 48%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 40px;
}
.our-services__item h3 {
  font-size: 17px;
  font-weight: 400;
}
.our-services__item p {
  color: #bababa;
  font-size: 16px;
  line-height: 1.8;
  min-height: 95px;
}

.services-feature__read-more {
  position: relative;
  padding: 0 18px 40px 0;
  display: inline-block;
}
.services-feature__read-more:after {
  content: '+';
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 20px;
}
.services-feature__read-more.-active:after {
  content: '-';
  top: -3px;
  right: 1px;
}

.services-feature__overlay {
  position: relative;
  background-color: #424242;
  padding: 40px 60px;
  margin-bottom: 40px;
}
.services-feature__overlay:before {
  position: absolute;
  left: 5%;
  top: -20px;
  content: '';
  border-color: #424242 transparent;
  border-style: solid;
  border-width: 0px 20px 20px 20px;
  height: 0px;
  width: 0px;
}
.services-feature__overlay.-col2:before {
  left: 33%;
}

.services-feature__overlay--close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.services-feature__overlay--header {
  font-size: 25px;
  color: #ffffff;
  margin-bottom: 30px;
}

#executeContentCreation, #strategicDistribution {
  display: none;
}

.services-quote-image {
  position: relative;
  left: -50px;
  width: 160px;
  margin-bottom: 20px;
}
@media (max-width: 675px) {
  .services-quote-image {
    left: 0;
    float: left;
  }
}

.services-quote {
  position: relative;
  border-top: 1px solid white;
}

.services-row__inner {
  position: relative;
  padding: 60px 0 20px 260px;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .services-row__inner {
    padding: 60px 0 20px 40px;
  }
}

.services-quote__icon {
  position: absolute;
  left: 40px;
  top: -10px;
}

.services-quote__logo {
  position: absolute;
  top: 60px;
  left: 40px;
}
.services-quote__logo img {
  max-width: 180px;
  max-height: 80px;
}
@media (max-width: 600px) {
  .services-quote__logo {
    position: relative;
    top: 0;
    left: 0;
    padding-bottom: 10px;
  }
}

.services-quote__info {
  padding-top: 20px;
}

@media (max-width: 675px) {
  .services-feature__overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    height: 100%;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px !important;
    overflow: auto;
  }

  .services-col__13, .services-col__23 {
    width: 100%;
    float: none;
    padding-right: 0;
  }

  .services-header {
    margin-bottom: 20px;
  }

  .services-feature h3 {
    position: relative;
    margin: 0;
    padding: 15px 0 15px 30px;
    border-top: 1px solid #707070;
    cursor: pointer;
  }
  .services-feature h3:before {
    content: '+';
    position: absolute;
    top: 3px;
    left: 0px;
    font-size: 30px;
    color: #c7b9dc;
  }
  .services-feature h3.-active:before {
    content: '-';
  }
  .services-feature .feature-description {
    display: none;
  }
  .services-feature .feature-description.-active {
    display: block;
  }

  .services-row {
    margin-bottom: 50px;
  }

  .services-example__image, .services-example__description {
    float: none;
  }

  .services-example__description {
    position: relative;
    top: -20px;
    width: 100%;
    padding-top: 0;
  }
  .services-example__description p {
    position: absolute;
    left: 50%;
    top: 0;
    padding: 20px 0 0 10px;
  }

  .services-subheader {
    font-size: 18px;
    line-height: 1.6;
  }
}
@media (max-width: 840px) {
  .services-feature__overlay {
    padding: 40px !important;
  }

  .our-services__item {
    width: 48%;
    min-height: 220px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .services-hero .tile-float-left {
    float: none;
    width: 100%;
  }

  .services-row {
    padding: 0;
  }
  .services-row.-alternate {
    padding: 0;
  }
}
@media (max-width: 530px) {
  .services-example__image {
    width: 100%;
  }

  .services-example__logo {
    position: absolute;
    right: auto;
    top: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    bottom: -86px;
    left: 20px;
    width: 120px;
  }

  .services-example__photo-credit {
    padding-left: 160px;
  }

  .services-example__description {
    padding-left: 0;
  }
}
@media (max-width: 400px) {
  .our-services__row {
    margin-bottom: 0px;
  }

  .our-services__item {
    width: 100%;
    min-height: auto;
    padding: 0 0 40px 0;
  }
  .our-services__item h3 {
    font-size: 22px;
  }
  .our-services__item p {
    min-height: auto;
    font-size: 16px;
    padding-bottom: 10px;
  }
}
/* Accolades styles
*/
.accolades-section {
  background-color: #424242;
  padding: 80px 0 20px;
}

.accolades__row:after {
  content: '';
  clear: both;
  display: table;
}

.accolades__item {
  float: left;
  width: 33.3%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 10px;
}
.accolades__item p {
  color: #bababa;
  font-size: 16px;
  line-height: 1.8;
  padding-bottom: 60px;
}
.accolades__item .accolates__image {
  margin: 0 0 30px 0;
}
.accolades__item .accolates__image.-deloitte {
  width: 120px;
}
.accolades__item .accolates__image.-pycon {
  width: 150px;
  margin-bottom: 8px;
}
.accolades__item .accolates__image.-cmi {
  width: 130px;
  margin-bottom: 18px;
}
.accolades__item .accolates__image.-ama {
  width: 116px;
  margin-bottom: 7px;
}
.accolades__item .accolates__image.-bcorp {
  width: 62px;
  margin-bottom: 16px;
}
.accolades__item .accolates__image.-talent-tribe {
  width: 91px;
}
.accolades__item .accolates__image.-cma {
  width: 140px;
}

@media (max-width: 840px) {
  .accolades__item {
    width: 50%;
    min-height: 280px;
    padding-bottom: 20px;
  }
}
@media (max-width: 400px) {
  .accolades__item {
    width: 100%;
    min-height: auto;
    padding-bottom: 60px;
  }
}
/* Case studies styles
*/
.case-studies-header {
  padding-right: 40%;
}

.case-studies-sub-header {
  padding-right: 40%;
  margin-bottom: 120px;
}

.case-study-testimonial {
  position: absolute;
  width: 40%;
  top: -90px;
  right: 40px;
  -webkit-box-shadow: 5px 5px 22px -6px rgba(0, 0, 0, 0.5);
  box-shadow: 5px 5px 22px -6px rgba(0, 0, 0, 0.5);
}

.case-study-block {
  position: absolute;
  left: 40px;
  bottom: -180px;
  background-color: black;
  padding: 40px;
  line-height: 1.6;
  color: #ffffff;
  font-size: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
}
.case-study-block em {
  font-style: italic;
}
.case-study-block.-top-slot {
  left: auto;
  bottom: auto;
  right: 40px;
  top: -90px;
}

.case-study-body {
  padding-top: 100px;
  padding-bottom: 120px;
}

.case-study-body__content {
  position: relative;
  z-index: 1;
}
.case-study-body__content .case-study-block {
  left: auto;
  right: 40px;
  bottom: auto;
  top: -240px;
}

.case-study-body__inner {
  position: relative;
  padding-bottom: 60px;
}

.case-study__feature-image {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.case-study__feature-image img {
  width: 100%;
}
.case-study__feature-image.-video {
  position: relative;
}

.case-study__feature-image--left {
  padding-right: 30%;
}
.case-study__feature-image--left.-video {
  margin-top: 310px;
  margin-bottom: 135px;
}

.case-study__feature-image--right {
  padding-left: 30%;
  margin-bottom: 200px;
}

.case-study__feature-infographic--right {
  padding-left: 30%;
  margin-bottom: 200px;
  margin-top: 60px;
}

.case-study__feature-infographic--left {
  padding-right: 30%;
  margin-bottom: 120px;
  margin-top: 290px;
}
.case-study__feature-infographic--left.-sucks {
  margin-top: 350px;
}

.case-study_video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.case-study_video-wrapper .case-study__play-button {
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 140px;
  opacity: .4;
}
.case-study_video-wrapper:hover .case-study__play-button {
  opacity: 1 !important;
}
.case-study_video-wrapper:hover .case-study__play-button img {
  opacity: 1 !important;
}
.case-study_video-wrapper:hover .feature-image {
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

.case-study-cta {
  display: inline-block;
  margin: 40px 0 0;
}

.case-study-numbers {
  margin-top: -1px;
  background-color: #424242;
  padding: 60px 0;
  color: white;
}
.case-study-numbers.-singleton {
  margin-top: 0;
  background-color: black;
  padding: 0;
}
.case-study-numbers.-singleton .-singleton__inner {
  position: relative;
}
.case-study-numbers.-singleton .-singleton__inner .case-study-numbers__number {
  font-size: 100px;
  padding: 10px 0 30px;
}
.case-study-numbers.-singleton .-singleton__inner img {
  width: 50px;
}
.case-study-numbers.-singleton .-singleton__inner img.-up {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.case-study-single-stat {
  padding: 60px 80px;
  background-color: #424242;
  position: absolute;
  right: 40px;
  bottom: 50px;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.case-study-numbers__row {
  position: relative;
}
.case-study-numbers__row:after {
  content: '';
  clear: both;
  display: table;
}

.case-study-numbers__col14, .case-study-numbers__col13 {
  float: left;
  width: 25%;
  padding-left: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.case-study-numbers__col14 .case-study-numbers__header, .case-study-numbers__col13 .case-study-numbers__header {
  padding-top: 145px;
}
.case-study-numbers__col14 img, .case-study-numbers__col13 img {
  width: 50px;
}
.case-study-numbers__col14 img.-up, .case-study-numbers__col13 img.-up {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.case-study-numbers__col14:first-child, .case-study-numbers__col13:first-child {
  padding-left: 0;
}
.case-study-numbers__col14 .-small, .case-study-numbers__col13 .-small {
  padding-top: 37px;
}
.case-study-numbers__col14 .-small .case-study-numbers__number, .case-study-numbers__col13 .-small .case-study-numbers__number {
  font-size: 50px;
  padding: 10px 0 30px;
}
.case-study-numbers__col14 .-small.-no-arrow, .case-study-numbers__col13 .-small.-no-arrow {
  padding-top: 98px !important;
}
.case-study-numbers__col14 .-medium, .case-study-numbers__col13 .-medium {
  padding-top: 18px;
}
.case-study-numbers__col14 .-medium .case-study-numbers__number, .case-study-numbers__col13 .-medium .case-study-numbers__number {
  font-size: 80px;
  padding: 10px 0 30px;
}
.case-study-numbers__col14 .-medium.-no-arrow, .case-study-numbers__col13 .-medium.-no-arrow {
  padding-top: 77px !important;
}
.case-study-numbers__col14 .-large .case-study-numbers__number, .case-study-numbers__col13 .-large .case-study-numbers__number {
  font-size: 100px;
  padding: 10px 0 30px;
}
.case-study-numbers__col14 .-large.-no-arrow, .case-study-numbers__col13 .-large.-no-arrow {
  padding-top: 57px !important;
}

.case-study-numbers__col13 {
  width: 33.3% !important;
}

.case-study-numbers__description {
  line-height: 1.5;
}

.case-studies-hero {
  background-size: cover !important;
  padding-bottom: 50px;
}
.case-studies-hero.-zico {
  background: transparent url(/agencystatic/images/bgs/bg-zico2.jpg) 50% 0 no-repeat;
}
.case-studies-hero.-sothebys-reside {
  background: transparent url(/agencystatic/images/bgs/bg-sothebys-international-reside.jpg) 50% 0 no-repeat;
}
.case-studies-hero.-sothebys-international {
  background: transparent url(/agencystatic/images/bgs/bg-sothebys-international.jpg) 50% 0 no-repeat;
}
.case-studies-hero.-sothebys {
  background: transparent url(/agencystatic/images/bgs/bg-sothebys.jpg) 50% 0 no-repeat;
}
.case-studies-hero.-sothebys-canada {
  background: transparent url(/agencystatic/images/bgs/bg-sothebys-canada.jpg) 50% 0 no-repeat;
}
.case-studies-hero.-okta {
  background: transparent url(/agencystatic/images/bgs/bg-okta.jpg) 50% 0 no-repeat;
}
.case-studies-hero.-okta2 {
  background: transparent url(/agencystatic/images/bgs/bg-okta2.jpg) 50% 0 no-repeat;
}
.case-studies-hero.-red {
  background: transparent url(/agencystatic/images/bgs/bg-red.jpg) 50% 0 no-repeat;
}
.case-studies-hero.-mec {
  background: transparent url(/agencystatic/images/bgs/bg-mec.jpg) 50% 0 no-repeat;
}
.case-studies-hero.-mec2 {
  background: transparent url(/agencystatic/images/bgs/bg-mec2.jpg) 50% 0 no-repeat;
}
.case-studies-hero.-herb {
  background: transparent url(/agencystatic/images/bgs/bg-herb.jpg) 50% 0 no-repeat;
}
.case-studies-hero.-sucks {
  background: transparent url(/agencystatic/images/bgs/bg-sucks.jpg) 50% 0 no-repeat;
}
.case-studies-hero.-pwc {
  background: transparent url(/agencystatic/images/bgs/bg-pwc.jpg) 50% 0 no-repeat;
}
.case-studies-hero.-herschel {
  background: transparent url(/agencystatic/images/bgs/bg-herschel.jpg) 50% 0 no-repeat;
}
.case-studies-hero.-regal-springs {
  background: transparent url(/agencystatic/images/bgs/bg-regal-springs.jpg) 50% 0 no-repeat;
}
.case-studies-hero.-indochino {
  background: transparent url(/agencystatic/images/bgs/bg-indochino.jpg) 50% 0 no-repeat;
}
.case-studies-hero.-rebel {
  background: transparent url(/agencystatic/images/bgs/bg-rebel.jpg) 50% 0 no-repeat;
}
.case-studies-hero.-officespace {
  background: transparent url(/agencystatic/images/bgs/bg-officespace.jpg) 50% 0 no-repeat;
}

.case-studies__full-feature {
  position: relative;
  width: 100%;
  background-color: transparent;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 700px;
  z-index: 1;
}
.case-studies__full-feature.-zico {
  background: transparent url(/agencystatic/images/case-studies/feature-zico4.jpg) 50% 100% no-repeat;
  background-size: cover;
}
.case-studies__full-feature.-okta {
  background: transparent url(/agencystatic/images/case-studies/bg-okta2.jpg) 50% 100% no-repeat;
  background-size: cover;
}
.case-studies__full-feature.-okta2 {
  background: transparent url(/agencystatic/images/case-studies/bg-okta3.jpg) 50% 100% no-repeat;
  background-size: cover;
}
.case-studies__full-feature.-sothebys-international {
  background: transparent url(/agencystatic/images/case-studies/feature-sothebys-international.jpg) 50% 100% no-repeat;
  background-size: cover;
}
.case-studies__full-feature.-sothebys-international-inman {
  background: transparent url(/agencystatic/images/case-studies/feature-sothebys-inman.jpg) 50% 100% no-repeat;
  background-size: cover;
}
.case-studies__full-feature.-sothebys {
  background: transparent url(/agencystatic/images/case-studies/feature-sothebys.jpg) 50% 100% no-repeat;
  background-size: cover;
}
.case-studies__full-feature.-sothebys-canada {
  background: transparent url(/agencystatic/images/case-studies/feature-sothebys-canada.jpg) 50% 100% no-repeat;
  background-size: cover;
}
.case-studies__full-feature.-sothebys-reside {
  background: transparent url(/agencystatic/images/case-studies/feature-sothebys-international.jpg) 50% 100% no-repeat;
  background-size: cover;
}
.case-studies__full-feature.-herschel {
  background: transparent url(/agencystatic/images/case-studies/bg-herschel.jpg) 50% 100% no-repeat;
  background-size: cover;
}
.case-studies__full-feature.-mec {
  background: transparent url(/agencystatic/images/case-studies/bg-mec.jpg) 50% 100% no-repeat;
  background-size: cover;
}
.case-studies__full-feature.-mec2 {
  background: transparent url(/agencystatic/images/case-studies/bg-mec2.jpg) 50% 100% no-repeat;
  background-size: cover;
}
.case-studies__full-feature.-herb {
  background: transparent url(/agencystatic/images/case-studies/bg-herb.jpg) 50% 100% no-repeat;
  background-size: cover;
}
.case-studies__full-feature.-sucks {
  background: transparent url(/agencystatic/images/case-studies/bg-dotsucks.jpg) 50% 100% no-repeat;
  background-size: cover;
}
.case-studies__full-feature.-regal-springs {
  background: transparent url(/agencystatic/images/case-studies/bg-regal-springs.jpg) 50% 100% no-repeat;
  background-size: cover;
}
.case-studies__full-feature.-pwc {
  background: transparent url(/agencystatic/images/case-studies/bg-pwc.jpg) 50% 100% no-repeat;
  background-size: cover;
}
.case-studies__full-feature.-red {
  background: transparent url(/agencystatic/images/case-studies/bg-red.jpg) 50% 100% no-repeat;
  background-size: cover;
}
.case-studies__full-feature.-rebel {
  background: transparent url(/agencystatic/images/case-studies/bg-rebel.jpg) 50% 100% no-repeat;
  background-size: cover;
}
.case-studies__full-feature.-officespace {
  background: transparent url(/agencystatic/images/case-studies/bg-officespace.jpg) 50% 100% no-repeat;
  background-size: cover;
}
.case-studies__full-feature.-indochino {
  background: transparent url(/agencystatic/images/case-studies/bg-indochino.jpg) 50% 100% no-repeat;
  background-size: cover;
}

.case-studies__full-feature--row {
  position: absolute;
  bottom: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 40px;
}
.case-studies__full-feature--row:after {
  content: '';
  clear: both;
  display: table;
}

.case-studies__full-feature--header {
  font-size: 24px;
  line-height: 1.4;
}

.case-studies__full-feature--subheader {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 40px;
}

.case-studies__inner {
  position: relative;
  height: 100%;
  padding: 0;
  z-index: 1;
}

.case-studies__logo {
  width: 180px;
  position: absolute;
  top: -90px;
  left: 40px;
  -webkit-box-shadow: 5px 5px 22px -6px rgba(0, 0, 0, 0.5);
  box-shadow: 5px 5px 22px -6px rgba(0, 0, 0, 0.5);
}

.case-studies-section {
  position: relative;
  background-color: black;
  padding: 60px 0;
}
.case-studies-section.-alternate {
  background-color: #424242;
}

.case-study__inner {
  margin: 0 auto;
  max-width: 1180px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 40px;
}
.case-study__inner.-last {
  padding-bottom: 80px;
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100000;
  display: none;
}

.video-overlay-close {
  position: absolute;
  right: 20px;
  top: 20px;
}

.video-overlay__embed-container {
  position: relative;
  margin: 0 auto;
  width: 80%;
  max-width: 900px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.video-overlay__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.video-overlay__embed iframe, .video-overlay__embed object, .video-overlay__embed embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 1040px) {
  .case-study-body__content .case-study-block {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
  }

  .case-study__feature-image--right {
    margin-bottom: 20px;
  }

  .case-studies-section .-margin-right {
    margin: 0 !important;
  }
  .case-studies-section .services-example__image {
    padding-left: 40px;
  }
  .case-studies-section .services-example__image .services-example__logo.-alternate {
    left: -34px;
  }

  .case-study__feature-infographic--left {
    margin-bottom: 80px;
    margin-top: 10px;
  }
  .case-study__feature-infographic--left.-sucks {
    margin-top: 10px;
  }

  .case-study__feature-image--left.-video {
    margin-top: 20px;
    margin-bottom: 220px;
  }

  .case-study-numbers__col14 .-small .case-study-numbers__number, .case-study-numbers__col13 .-small .case-study-numbers__number {
    font-size: 40px;
  }
}
@media (max-width: 840px) {
  .case-study-body {
    padding-top: 70px;
  }

  .case-study-numbers__col14, .case-study-numbers__col13 {
    float: none;
    width: 100%;
    padding: 0;
  }
  .case-study-numbers__col14 .case-study-numbers__header, .case-study-numbers__col14 .-small, .case-study-numbers__col14 .-medium, .case-study-numbers__col14 .-large, .case-study-numbers__col13 .case-study-numbers__header, .case-study-numbers__col13 .-small, .case-study-numbers__col13 .-medium, .case-study-numbers__col13 .-large {
    padding: 0;
    padding-top: 50px;
  }
  .case-study-numbers__col14 .case-study-numbers__header, .case-study-numbers__col13 .case-study-numbers__header {
    padding: 0;
    font-size: 22px;
  }

  .header-case-studies {
    width: 100% !important;
  }

  .case-studies__logo {
    width: 140px;
    top: -71px;
  }

  .case-study-testimonial {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    top: 20px;
    right: auto;
    padding: 80px 40px 0;
  }

  .case-studies-sub-header {
    margin-bottom: 40px;
  }

  .case-studies__inner .case-study-block {
    position: relative;
    width: auto;
    bottom: -50px;
    left: auto;
    margin: 0 60px;
    font-size: 20px;
    padding: 25px 40px;
    font-size: 16px;
    font-size: 20px;
  }
  .case-studies__inner .case-study-block.-top-slot {
    bottom: auto;
    right: auto;
    top: 120px;
    margin-bottom: 150px;
  }

  .case-study__feature-image--right {
    padding-left: 0;
  }
  .case-study__feature-image--right.-video {
    margin-top: 200px;
  }

  .case-study__feature-infographic--right {
    margin-top: 10px;
  }

  .case-study__feature-image--left {
    padding-right: 0;
  }

  .case-study__feature-infographic--left {
    margin-bottom: 80px;
    margin-top: 10px;
  }
  .case-study__feature-infographic--left.-sucks {
    margin-top: 10px;
  }

  .case-study-body__content .case-study-block {
    right: 0;
  }

  .case-studies__full-feature {
    height: 560px;
  }

  .case-studies-section .services-example__image {
    width: 60%;
    padding-left: 0;
  }
  .case-studies-section .services-example__logo {
    width: 120px;
    right: -55px;
  }
  .case-studies-section .services-example__description {
    width: 100%;
    padding-left: 40px;
  }

  .case-studies-hero {
    padding-bottom: 90px;
  }

  .video-overlay__embed-container {
    width: 94%;
  }
}
@media (max-width: 675px) {
  .case-studies-section {
    margin: 40px 10px 80px 0;
    padding: 0;
    background-color: #424242 !important;
  }
  .case-studies-section .services-example__image {
    width: 100%;
    float: none;
  }
  .case-studies-section .services-example__logo {
    right: auto;
    left: 0 !important;
    bottom: -30px;
    top: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .case-studies-section .services-example__description {
    padding: 60px 20px 40px;
  }

  .case-studies__full-feature--row {
    bottom: 40px;
  }

  .case-study__inner {
    padding: 0;
    background-color: #424242;
    min-height: 660px;
  }

  #caseStudiesPageScroller {
    margin: 0 0 0 20px;
  }
}
@media (max-width: 650px) {
  .case-studies__logo {
    left: 20px;
  }

  .case-study-testimonial {
    padding: 80px 20px 20px;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .case-studies-header, .case-studies-sub-header {
    padding-right: 0;
  }

  .case-studies__inner .case-study-block {
    position: relative;
    width: auto;
    bottom: -50px;
    left: auto;
    margin: 0;
    padding: 40px;
    font-size: 16px;
  }
  .case-studies__inner .case-study-block.-top-slot {
    bottom: auto;
    right: auto;
    top: 190px;
    margin-bottom: 200px;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .case-study-block {
    position: relative;
    width: auto;
    bottom: -50px;
    left: auto;
    margin: 0 20px;
    font-size: 20px;
    padding: 40px 20px;
    font-size: 16px;
  }

  .case-study-body__content .case-study-block {
    margin: 0;
    top: auto;
    padding: 40px 20px;
  }

  .case-study__feature-image--right {
    margin-bottom: 0;
  }
  .case-study__feature-image--right.-video {
    margin-top: 0px;
  }

  .case-study__feature-image--left.-video {
    margin-top: 0px;
    margin-bottom: 80px;
  }

  .case-studies__full-feature {
    height: auto;
  }
  .case-studies__full-feature.-case-studies-home {
    height: 560px;
  }

  .case-study-body {
    padding-top: 40px;
  }

  .case-study-numbers {
    margin-top: 50px;
  }

  .case-study__inner.-last {
    padding-bottom: 0;
  }
}
/* Tiles layout styles
*/
.tile-header {
  position: absolute;
  top: -180px;
  left: 0;
  max-width: 270px;
  padding: 60px 55px 44px 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: black;
  background-color: #ffffff;
  -webkit-box-shadow: 5px 5px 22px -6px rgba(0, 0, 0, 0.5);
  box-shadow: 5px 5px 22px -6px rgba(0, 0, 0, 0.5);
}
.tile-header h3 {
  font-size: 34px;
  font-weight: 400;
}
.tile-header.-contact {
  top: -110px;
}

.tile-row {
  position: relative;
}
.tile-row:after {
  content: '';
  clear: both;
  display: table;
}
.tile-row.-margin-right {
  margin-right: 162px;
}
.tile-row.-margin-left {
  margin-left: 162px;
}

.tile {
  margin-bottom: 80px;
  overflow: hidden;
}

.tile-vertical-offset {
  position: relative;
  top: 100px;
}
@media (max-width: 650px) {
  .tile-vertical-offset {
    top: 0;
    margin-top: 50px;
  }
}

.tile-no-margin {
  margin: 0 !important;
}

.tile-h2 {
  font-size: 30px;
  margin: 15px 0 60px;
}
.tile-h2.-big-margin {
  margin-top: 80px;
}

.tile-image {
  position: relative;
}

.tile-image__thumb {
  width: 100%;
  display: block;
}

.tile-image__logo {
  position: absolute;
  right: 0;
  bottom: -30px;
  width: 180px;
  height: 180px;
  -webkit-box-shadow: 5px 5px 22px -6px rgba(0, 0, 0, 0.5);
  box-shadow: 5px 5px 22px -6px rgba(0, 0, 0, 0.5);
}
.tile-image__logo.-left {
  right: auto;
  left: 0;
}

.tile-float-left {
  float: left;
}

.tile-float-right {
  float: right;
}

.tile-12 {
  padding-right: 40px;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.tile-22 {
  padding-left: 40px;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.tile-13 {
  padding-right: 20px;
  padding-left: 20px;
  width: 33%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.tile-case-study {
  min-height: 220px;
}
@media (max-width: 1166px) {
  .tile-case-study {
    min-height: 246px;
  }
}
@media (max-width: 1010px) {
  .tile-case-study {
    min-height: 270px;
  }
}
@media (max-width: 920px) {
  .tile-case-study {
    min-height: 320px;
  }
}

.quote-slides {
  display: none;
}

.tile-quote {
  text-align: right;
  padding: 40px 40px 20px 40px;
  background-color: #ffffff;
  color: #424242;
  font-size: 14px;
  min-height: 220px;
}
.tile-quote.-extra-bottom-pad {
  padding-bottom: 60px;
}
.tile-quote p {
  padding-top: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.tile-quote-transparent {
  position: relative;
  text-align: left;
  padding: 40px 40px 20px 40px;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: 1px solid white;
  font-size: 14px;
  min-height: 180px;
}
.tile-quote-transparent.-extra-bottom-pad {
  padding-bottom: 60px;
}
.tile-quote-transparent p {
  padding-top: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.tile-quote__icon {
  position: absolute;
  top: -10px;
  left: 40px;
}
.tile-quote__icon img {
  width: 40px;
}

.quote-info {
  position: relative;
  padding-top: 40px;
  line-height: 1.5;
}

.quote-info__image {
  padding-top: 20px;
}
.quote-info__image img {
  max-height: 40px;
  max-width: 130px;
}

.tile-padding {
  background-color: #424242;
  padding: 60px 40px;
}
.tile-padding h3 {
  font-size: 22px;
  line-height: 1.2;
}
.tile-padding p {
  font-size: 16px;
  line-height: 1.5;
}
.tile-padding.-tile-13 {
  padding: 20px;
}
.tile-padding.-tile-13 h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
}
.tile-padding.-tile-13 p {
  opacity: 0.7;
  font-size: 15px;
  margin-bottom: 10px !important;
}

.tile-read-more {
  display: inline-block;
  margin-top: 30px;
}

.tile-list li {
  line-height: 1.4;
  border-bottom: 1px solid #707070;
  padding: 15px 0 15px 0;
}

.tile-list__header {
  color: #bababa;
}

.tile-list__link a {
  color: #ffffff;
}
.tile-list__link a:hover {
  color: #707070;
}

.tiles-contact {
  position: absolute;
  right: 40px;
  bottom: 0;
  background-color: #424242;
  color: #ffffff;
  font-size: 16px;
  padding: 40px 140px 40px 40px;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.tiles-contact p {
  padding-bottom: 30px;
  line-height: 1.6;
}

@media (max-width: 840px) {
  .tiles-contact {
    padding: 40px;
  }

  .tile-header {
    top: -110px;
    padding: 26px;
  }
  .tile-header h3 {
    margin-bottom: 6px !important;
  }

  .tile {
    margin-bottom: 40px;
  }

  .tile-12 {
    padding-right: 20px;
  }

  .tile-22 {
    padding-left: 20px;
  }

  .tile-image__logo {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 650px) {
  .tiles-contact {
    width: 100%;
    padding: 20px;
    right: 0;
    bottom: -60px;
  }

  .tile-image__logo {
    right: auto;
    left: 0;
    width: 120px;
    height: 120px;
  }
  .tile-image__logo.-left {
    right: auto;
    left: 0;
  }

  .tile-padding {
    padding: 60px 20px 40px;
    min-height: 260px;
  }

  .tile {
    margin-bottom: 20px;
  }

  .tile-h2 {
    margin: 60px 0 35px;
  }

  .tile-quote {
    text-align: left;
    padding: 30px 20px;
  }

  .tile-float-left {
    float: none;
  }

  .tile-float-right {
    float: none;
  }

  .tile-12 {
    padding-right: 0;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .tile-22 {
    padding-left: 0;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .tiles__scroller {
    overflow-x: auto;
  }
  .tiles__scroller .tile {
    width: 400px;
    float: left;
    margin-right: 10px;
    background-color: #424242;
  }

  .tiles__scroller--inner {
    width: 400%;
  }

  .tile-read-more {
    position: absolute;
    bottom: 20px;
    left: 20px;
  }
}
/* Inline nav layout styles
*/
.inline-nav {
  position: absolute;
  top: 70px;
  right: 0;
  width: 40%;
}

.inline-nav__header {
  font-size: 16px;
  margin-bottom: 20px;
}

.inline-nav__list li {
  position: relative;
  padding: 13px 30px 13px 0;
  border-top: 1px solid #707070;
}
.inline-nav__list li:first-child {
  border: none;
  padding-top: 0;
}
.inline-nav__list a {
  color: #bababa;
  line-height: 1.4;
  padding: 0;
}
.inline-nav__list a strong {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  margin-bottom: 2px;
  color: #c7b9dc;
}
.inline-nav__list a:hover {
  color: #ffffff;
}
.inline-nav__list a:hover strong {
  color: #ffffff;
}
.inline-nav__list a:after {
  content: '→';
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 840px) {
  .inline-nav {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 20px 10px;
    background-color: #424242;
  }

  .inline-nav__list li {
    padding: 20px 0 20px 36px;
  }
  .inline-nav__list a:after {
    content: url(/agencystatic/images/icons/icon-down-arrow.svg);
    right: auto;
    left: 0px;
  }
}
/* blog feature styles
*/
#aboutClippings {
  margin-top: 0;
}

.team-section {
  padding: 80px 0 40px;
}
.team-section.-no-pad {
  padding-top: 20px;
}

.team-header:after {
  content: '';
  clear: both;
  display: table;
}
.team-header h2 {
  float: left;
  width: 30%;
  margin-bottom: 20px;
}

.team-header__description {
  font-size: 20px;
  line-height: 1.2;
  float: left;
  width: 70%;
}

.team-row {
  margin-bottom: 80px;
  margin-top: 50px;
}
.team-row:last-child {
  margin-top: 0;
}
.team-row:after {
  content: '';
  clear: both;
  display: table;
}

.team-col13 {
  position: relative;
  float: left;
  width: 33.3%;
  padding: 160px 10px 0;
  margin-top: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #bababa;
  padding-left: 0;
}
.team-col13:first-child {
  padding-left: 0;
  padding-right: 20px;
}
.team-col13:first-child .team-leadership__image {
  left: 0;
}
.team-col13:last-child {
  padding-right: 0;
  padding-left: 10px;
}
.team-col13:last-child .team-leadership__image {
  left: 10px;
}

.team-leadership__bio {
  min-height: 500px;
  padding-bottom: 20px;
}
.team-leadership__bio.-no-page {
  padding-bottom: 0;
}

.team-leadership__image {
  position: absolute;
  top: 20px;
  left: 0px;
  height: 182px;
}

.team-col__name {
  font-size: 22px;
  color: #ffffff;
  margin-top: 20px;
}

.team-col__position {
  padding: 10px 0 20px;
}

.team-compact {
  position: relative;
  margin-left: 250px;
  background-color: #424242;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 80px 80px 20px 120px;
}
.team-compact:after {
  content: '';
  clear: both;
  display: table;
}
.team-compact.-alternate {
  margin-right: 250px;
  margin-left: 0;
}
.team-compact.-alternate .team-compact__col {
  width: 33.3% !important;
}
.team-compact.-alternate .team-compact__header {
  left: auto;
  right: -250px;
}

.team-compact__header {
  position: absolute;
  left: -250px;
  top: 80px;
  width: 330px;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 60px 40px;
  color: black;
  line-height: 1.6;
}
.team-compact__header strong {
  font-size: 34px;
  font-weight: 400;
}

.team-compact__col {
  float: left;
  width: 25%;
  margin-bottom: 50px;
}
.team-compact__col a {
  color: #ffffff;
}
.team-compact__col a:hover {
  color: #c7b9dc;
}
.team-compact__col img {
  width: 80px;
}
.team-compact__col p, .team-compact__col span {
  display: block;
  font-size: 18px;
  padding-top: 20px;
}

.map-container, .map-instance {
  position: relative;
  width: 100%;
  height: 500px;
}

.map-overlay {
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px;
  color: black;
  width: 240px;
  font-size: 16px;
}
.map-overlay p {
  line-height: 1.4;
  margin-bottom: 20px;
}
.map-overlay p:last-child {
  margin-bottom: 0;
}
.map-overlay:after {
  position: absolute;
  right: -16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: '';
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 16px solid #ffffff;
}

.gm-style-iw-container > div > div:first-child {
  border-top-color: transparent !important;
}
.gm-style-iw-container > div > div:nth-child(3) {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  left: auto !important;
  right: -286px !important;
  top: 130px !important;
}

.gm-style .gm-style-iw-t:before {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  left: auto !important;
  right: -286px !important;
  top: 130px !important;
}

.team__read-more {
  position: absolute;
  bottom: 18px;
  left: 30px;
  padding: 0 0 0 18px;
  display: none;
}
.team__read-more:after {
  content: '+';
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 20px;
}
.team__read-more.-active:after {
  content: '-';
  top: -3px;
  left: 1px;
}

@media (max-width: 1190px) {
  .team-col13 {
    padding-top: 122px;
  }

  .team-leadership__bio {
    min-height: 400px;
  }

  .team-leadership__image {
    height: 142px;
  }

  .team-compact__col {
    width: 33.3%;
  }

  .team-compact {
    padding-right: 20px;
  }
  .team-compact.-alternate {
    padding-left: 80px;
    padding-right: 40px;
  }
}
@media (max-width: 920px) {
  .team-col13 {
    padding-top: 102px;
  }

  .team-leadership__bio {
    min-height: 420px;
    padding: 60px 20px 40px;
  }

  .team-leadership__image {
    height: 142px;
  }

  .team-leadership__image {
    height: 120px;
  }

  .team-compact .team-compact__col {
    width: 50%;
  }
  .team-compact.-alternate .team-compact__col {
    width: 50% !important;
  }
}
@media (max-width: 770px) {
  .team__read-more {
    display: inline-block;
    font-size: 15px;
  }

  .team-header h2 {
    float: none;
    width: auto;
    margin-bottom: 40px;
  }
  .team-header .team-header__description {
    font-size: 16px;
    line-height: 1.4;
    float: none;
    width: auto;
    margin-bottom: 20px;
  }

  .team-col13 {
    padding: 0 !important;
    float: none;
    width: 100%;
    margin: 20px 0 0 0 !important;
  }
  .team-col13 .team-leadership__image {
    width: 120px;
    height: auto;
    top: 0;
    left: 0 !important;
  }
  .team-col13 .team-leadership__bio {
    position: relative;
    padding: 24px 30px 42px;
    min-height: auto;
    margin-left: 120px;
  }
  .team-col13 .team-leadership__bio .team-col__name {
    margin-top: 0;
    font-size: 18px;
  }
  .team-col13 .team-leadership__bio .team-col__summary {
    display: none;
    padding: 15px 0 10px;
    font-size: 14px;
  }
  .team-col13 .team-leadership__bio .team-col__position {
    padding: 6px 0 0;
    font-size: 14px;
  }

  .team-compact {
    padding: 0;
    margin: 0;
    padding: 0;
    background-color: black;
  }
  .team-compact .team-compact__col {
    width: 33.3%;
    text-align: center;
  }
  .team-compact .team-compact__col span {
    font-size: 14px;
  }
  .team-compact.-alternate {
    padding: 0;
    margin: 0;
  }
  .team-compact.-alternate .team-compact__header {
    right: auto;
  }
  .team-compact.-alternate .team-compact__col {
    width: 33.3% !important;
  }

  .team-compact__header {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: auto;
    padding: 0;
    background-color: black;
    color: #ffffff;
    line-height: 1;
    min-height: auto;
    margin-bottom: 40px;
  }
  .team-compact__header strong {
    display: block;
    font-weight: 100;
    font-size: 30px;
    margin-bottom: 40px;
  }

  .team-row {
    margin-bottom: 0;
  }
  .team-row:first-child, .team-row:last-child {
    border: none;
  }
  .team-row:last-child {
    margin-bottom: 120px;
  }
}
@media (max-width: 650px) {
  #aboutClippings {
    margin-top: 0px;
  }

  #pressClippings {
    height: 200px;
    overflow: auto;
  }

  .-list-style .tile-padding {
    padding: 28px 20px;
  }
  .-list-style h3 {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .-list-style li {
    font-size: 14px;
    padding: 12px 0 12px 0;
  }

  .accolades-section {
    background-color: black;
  }

  .accolades__item {
    background-color: #424242;
    padding: 0;
    margin: 0 10px 10px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 360px;
  }
  .accolades__item p {
    padding-bottom: 0;
  }

  .accolades__item--inner {
    padding: 40px;
  }
}
@media (max-width: 600px) {
  .map-overlay {
    padding: 30px 0px 30px 40px;
  }

  .gm-style-iw-container > div > div:nth-child(3) {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    left: 154px !important;
    right: auto !important;
    top: 14px !important;
  }
}
/* writers styles
*/
.writers-section {
  position: relative;
  margin: 80px 20% 40px 0;
  padding: 60px 10% 40px 80px;
  background-color: #424242;
  z-index: 1;
}
.writers-section h2 {
  margin: 0 0 30px;
}
.writers-section .writers-section__intro {
  font-size: 22px;
  line-height: 1.5;
  color: #bababa;
  padding-right: 100px;
}

.writer-testimonial {
  width: 46%;
  position: absolute;
  top: -120px;
  right: -25%;
}

.writer-testimonial__steps {
  margin: 30px 0;
}

.writer-testimonial__steps--row {
  margin-bottom: 40px;
}
.writer-testimonial__steps--row:after {
  content: '';
  clear: both;
  display: table;
}

.writers-col {
  float: left;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.8;
  color: #bababa;
}
.writers-col:first-child {
  padding-right: 20px;
}
.writers-col:last-child {
  padding-left: 20px;
}

.writers-col__step {
  font-weight: 400;
  font-size: 46px;
  margin-bottom: 10px;
  color: #c7b9dc;
}

.writers-col__step--title {
  color: #ffffff;
  margin-bottom: 6px;
}

.writers-cta {
  margin-top: 60px;
  margin-bottom: 20px;
}

@media (max-width: 840px) {
  .writer-testimonial {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
  }

  .writers-section {
    padding: 40px 20px 20px;
    margin: 0;
  }

  .faq-section .faq-col {
    float: none;
    width: 100%;
    padding: 0;
  }
  .faq-section .faq-col:last-child {
    padding: 0;
  }
}
@media (max-width: 650px) {
  .writers-section h2 {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 6px;
  }
  .writers-section .writers-section__intro {
    font-size: 16px;
    line-height: 1.8;
    padding-right: 0;
  }

  .writers-col {
    float: none;
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }
  .writers-col:last-child {
    padding: 0;
  }

  .writers-col__step {
    margin-bottom: 0;
  }

  .writer-testimonial__steps--row {
    margin-bottom: 0;
  }
}
/* FAQ styles
*/
.faq-section {
  padding-bottom: 80px;
  border-bottom: 1px solid #bababa;
}
.faq-section:after {
  content: '';
  clear: both;
  display: table;
}

.faq-header {
  font-size: 14px;
  color: #BCAAD5;
  padding-bottom: 20px;
  border-bottom: 1px solid #bababa;
  margin-bottom: 0;
}

.faq-question__container {
  border-bottom: 1px solid #bababa;
}
.faq-question__container.-last {
  margin-bottom: 40px;
}

.faq-question {
  position: relative;
  display: block;
  padding: 20px 80px 20px 0;
  color: #ffffff;
  line-height: 1.3;
}
.faq-question:hover, .faq-question.-active {
  color: #c7b9dc;
}
.faq-question:after {
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  content: url(/agencystatic/images/icons/icon-down-arrow-alternate.svg);
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.faq-question.-active:after {
  -webkit-transform: rotate(180deg) translate(0, 50%);
  -ms-transform: rotate(180deg) translate(0, 50%);
  transform: rotate(180deg) translate(0, 50%);
}

.faq-answer {
  display: none;
  padding: 10px 20px 30px;
  line-height: 1.5;
  color: #bababa;
}
.faq-answer ul {
  margin: 10px 0 10px 30px;
  list-style: disc;
}
.faq-answer ul li {
  padding-left: 5px;
}

.faq-col {
  float: left;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 20px;
}
.faq-col:last-child {
  padding-right: 0;
  padding-left: 20px;
}

/* writers styles
*/
.legal-container {
  padding: 60px 45px 20px;
  position: relative;
  color: #ffffff;
  line-height: 1.5;
  background-color: #424242;
  border-radius: 3px;
  z-index: 1;
}
.legal-container h2 {
  margin-left: 25%;
  margin-bottom: 30px;
}
.legal-container h3 {
  font-size: 18px;
  margin-left: 25%;
  margin-bottom: 30px;
}
.legal-container p {
  margin-bottom: 40px;
}
.legal-container ol {
  margin: 0 30px 0;
  list-style: lower-roman;
}
.legal-container ol li {
  margin-bottom: 20px;
}

.legal-row {
  margin-bottom: 40px;
}
.legal-row:after {
  content: '';
  clear: both;
  display: table;
}

.legal-col12 {
  float: left;
  width: 25%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #bababa;
  text-align: right;
  padding-right: 20px;
}
.legal-col12 h2 {
  margin-left: 0;
}
.legal-col12 h3 {
  margin-left: 0;
}

.legal-col22 {
  float: left;
  width: 75%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #ffffff;
  padding-left: 20px;
  border-left: 1px solid #bababa;
}
.legal-col22 h2 {
  margin-left: 0;
}
.legal-col22 h3 {
  margin-left: 0;
}

@media (max-width: 940px) {
  .legal-container h2 {
    margin-left: 35%;
  }
  .legal-container h3 {
    margin-left: 35%;
  }

  .legal-col12 {
    width: 35%;
  }

  .legal-col22 {
    width: 65%;
  }
}
@media (max-width: 650px) {
  .legal-container {
    padding: 40px 20px;
  }
  .legal-container h2 {
    margin-left: 0;
  }
  .legal-container h3 {
    margin-left: 0;
  }

  .legal-col12 {
    width: 100%;
    float: none;
    text-align: left;
    padding-bottom: 30px;
  }

  .legal-col22 {
    width: 100%;
    float: none;
  }
}
/* generic landing page styles
*/
.landing-background {
  background: black url(/agencystatic/images/bgs/bg-landing-page.jpg) 50% 0 no-repeat;
}

.b2b-marketing-background {
  background: black url(/agencystatic/images/bgs/bg-b2b-marketing2.jpg) 50% 0 no-repeat;
  background-size: 100%;
}

.create-better-content-background {
  background: black url(/agencystatic/images/bgs/bg-create-better-content.jpg) 50% 0 no-repeat;
  background-size: 100%;
}

.design-thinking-background {
  background: black url(/agencystatic/images/bgs/bg-design-thinking.jpg) 50% 0 no-repeat;
  background-size: 100%;
}

.financial-services-background {
  background: black url(/agencystatic/images/bgs/bg-financial-services.jpg) 50% 0 no-repeat;
  background-size: 100%;
}

.humanizing-your-company-background {
  background: black url(/agencystatic/images/bgs/bg-humanizing-your-company2.jpg) 50% 0 no-repeat;
  background-size: 100%;
}

.personalized-services-background {
  background: black url(/agencystatic/images/bgs/bg-personalized-services.jpg) 50% 0 no-repeat;
  background-size: 100%;
}

.add-value-background {
  background: black url(/agencystatic/images/bgs/bg-add-value.jpg) 50% 0 no-repeat;
  background-size: 100%;
}

.landing-logo {
  text-align: center;
  padding: 40px;
}
.landing-logo img {
  width: 35%;
  max-width: 160px;
}

.landing-header {
  font-size: 45px;
  text-align: center;
  padding: 0 40px 60px;
  line-height: 1.2;
}

.landing-footer {
  text-align: center;
  padding: 60px 0;
}
.landing-footer .footer-copyright-text {
  padding: 0;
}

.landing-video-container {
  margin-bottom: 50px;
}

.landing-container {
  padding: 60px 45px 20px;
  position: relative;
  color: #424242;
  line-height: 1.5;
  background-color: #ffffff;
  z-index: 1;
}
.landing-container h2 {
  margin-bottom: 30px;
}
.landing-container h3 {
  font-size: 18px;
  margin-bottom: 30px;
}
.landing-container p {
  margin-bottom: 40px;
  line-height: 2;
}
.landing-container p a {
  color: #6e5c86;
  text-decoration: underline;
  font-weight: bold;
}
.landing-container ol {
  margin: 0 30px 0;
  list-style: lower-roman;
}
.landing-container ol li {
  margin-bottom: 20px;
}
.landing-container.-case-study {
  position: relative;
  margin-top: 160px;
  padding: 100px 45px 80px;
}

.landing-bullets {
  padding-left: 30px;
  border-left: 1px solid #6e5c86;
  list-style: disc;
  margin-bottom: 50px;
}
.landing-bullets li {
  margin-left: 14px;
  line-height: 2;
  margin-bottom: 10px;
}

.landing-pull-quote {
  position: relative;
  font-size: 26px;
  margin: 40px 0;
  padding-left: 60px;
}
.landing-pull-quote:before {
  position: absolute;
  left: 10px;
  top: -2px;
  font-family: Arial, Helvetica, sans-serif;
  content: '“';
  line-height: 1;
  font-size: 90px;
  color: #6e5c86;
}

.landing-footnote {
  font-size: 14px;
  padding-right: 40%;
  margin-bottom: 30px;
}

.landing-cta__container {
  position: relative;
}

.landing-cta {
  position: relative;
  line-height: 2;
  padding-left: 30px;
  padding-right: 40%;
  border-left: 1px solid #6e5c86;
  margin-bottom: 40px;
}
.landing-cta strong {
  font-weight: bold;
}

.landing-cta__tile {
  position: absolute;
  right: -45px;
  bottom: 0;
  -webkit-transform: translateY(92px);
  -ms-transform: translateY(92px);
  transform: translateY(92px);
  width: 50%;
  max-width: 400px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 80px 60px;
  line-height: 1.6;
  color: #ffffff;
  background-color: #424242;
}
.landing-cta__tile.-less-padding {
  padding: 60px;
}
.landing-cta__tile.-full-width {
  position: relative;
  right: auto;
  width: 100%;
  max-width: 100%;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  margin-bottom: 30px;
}

.landing-cta__button {
  margin-top: 20px;
  padding: 6px 30px;
  display: inline-block;
}

.landing-logos {
  padding: 0 0 40px;
  text-align: center;
}
.landing-logos img {
  width: 14%;
  margin: 0 1%;
  -webkit-box-shadow: 5px 5px 22px -6px rgba(0, 0, 0, 0.5);
  box-shadow: 5px 5px 22px -6px rgba(0, 0, 0, 0.5);
}

.landing-col14 {
  float: left;
  width: 25%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 12px;
}
.landing-col14 p {
  line-height: 1.6;
  margin-bottom: 0;
}

.landing-col__header {
  font-weight: bold;
  padding-bottom: 10px;
  display: block;
}

.landing-col__description {
  padding-bottom: 20px;
  display: block;
}

.landing-case-study__logo {
  position: absolute;
  top: -70px;
  left: 0;
  width: 140px;
  -webkit-box-shadow: 5px 5px 22px -6px rgba(0, 0, 0, 0.5);
  box-shadow: 5px 5px 22px -6px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1120px) {
  .landing-cta {
    padding-right: 46%;
  }
}
@media (max-width: 780px) {
  .landing-cta {
    padding-right: 0;
  }

  .landing-cta__tile {
    position: relative;
    right: 0;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    padding-right: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding: 60px;
  }

  .landing-footnote {
    padding-right: 0;
  }
}
@media (max-width: 400px) {
  .landing-cta__tile {
    padding: 20px;
  }

  .landing-container {
    padding: 40px 20px;
  }
  .landing-container.-case-study {
    padding: 100px 20px 40px 20px;
  }
}
/* events page styles
*/
.page-header__event {
  font-size: 54px;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 1.2;
  margin-right: 345px;
}
.page-header__event.-past-event {
  margin-right: 0;
}

.page-sub-header__date {
  font-size: 18px;
  color: #bababa;
  margin-bottom: 30px;
  line-height: 1.4;
}
.page-sub-header__date.-no-content {
  min-height: 390px;
}

.event-container {
  position: relative;
  z-index: 2;
}
.event-container:after {
  content: '';
  clear: both;
  display: table;
}

.event-stage {
  margin-right: 345px;
  background-color: #414243;
  min-height: 600px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px;
  line-height: 1.8;
  font-size: 18px;
}
.event-stage.-past-event {
  margin-right: 0;
}
.event-stage > div {
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: bold;
}
.event-stage div div div {
  font-weight: normal;
  font-size: 18px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid white;
}
.event-stage div div div:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.event-stage p {
  margin-bottom: 20px;
}
.event-stage p em {
  font-style: italic;
}
.event-stage ul {
  list-style: disc;
  margin-left: 25px;
}
.event-stage ul li {
  padding-left: 10px;
}
.event-stage strong {
  font-weight: bold;
}

.event-details {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 1.8;
  width: 310px;
}

.event-details__header {
  font-weight: bold;
  margin: 50px 0 0 0;
}

.event-signup {
  margin-top: 50px;
  line-height: 1.4;
}
.event-signup label {
  position: relative;
  margin-bottom: 5px;
  text-align: left;
}
.event-signup label span {
  position: absolute;
  right: 0;
  top: 3px;
  font-size: 13px;
  opacity: 0.4;
}

.event-signup__fieldset {
  padding-bottom: 14px;
}
.event-signup__fieldset.-cta {
  margin-top: 18px;
}

.event-signup__input {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #6f7071;
  border: 1px solid #6f7071;
  color: white;
  padding: 6px 6px;
  font-size: 18px;
}
.event-signup__input:focus {
  outline: none;
}

.event-past-events {
  margin: 0 -20px;
}
.event-past-events:after {
  content: '';
  clear: both;
  display: table;
}

.event-past-events__col {
  float: left;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px;
  overflow: hidden;
}

.event-past-events__col--inner {
  position: relative;
  background-color: #414243;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 300px;
}

.event-past-events__details {
  position: absolute;
  top: 62%;
  line-height: 1.5;
  font-weight: bold;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px 0 20px;
}
.event-past-events__details span {
  display: block;
  font-weight: normal;
  margin-top: 5px;
  font-size: 14px;
}
.event-past-events__details a {
  color: white;
}
.event-past-events__details a:hover {
  opacity: 0.6;
}

.event-past-events__thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  height: 55%;
  width: 100%;
  background-color: #d7d8d9;
  background-position: 50% 50%;
  background-size: cover;
}
.event-past-events__thumbnail a {
  display: block;
  width: 100%;
  height: 100%;
}

.event-map-container, .event-map-instance {
  position: relative;
  width: 100%;
  height: 400px;
}

@media (max-width: 1000px) {
  .page-header__event {
    margin-right: 0;
  }

  .event-container {
    position: relative;
    z-index: 2;
  }
  .event-container:after {
    content: '';
    clear: both;
    display: table;
  }

  .event-stage {
    margin-right: 275px;
  }

  .event-details {
    width: 255px;
  }
}
@media (max-width: 800px) {
  .event-details {
    position: relative;
    width: auto;
    text-align: center;
    padding-top: 20px;
    margin-bottom: 50px;
  }

  .page-header__event {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    border-bottom: 1px solid #6f7071;
    padding-bottom: 70px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 0;
    line-height: 1.4;
  }

  .page-sub-header__date {
    display: none;
  }

  .event-stage {
    margin-right: 0;
  }
}
@media (max-width: 650px) {
  .event-stage {
    margin-bottom: 60px;
  }

  .event-past-events__details {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .event-past-events__details {
    font-size: 16px;
  }

  .event-past-events__col {
    float: none;
    width: 100%;
  }

  .event-past-events__col--inner {
    margin-bottom: 50px;
  }
}
/* book recommendations page styles
*/
.books-header, .h2-books {
  font-weight: bold;
  color: #FEE69C;
  opacity: 0.8;
}

.holiday-accent {
  font-weight: 600;
  color: #FEE69C;
}

.page-sub-header .holiday-accent {
  opacity: 0.8;
}

.book-recommendations-section {
  position: relative;
  z-index: 1;
  padding-top: 100px;
}
.book-recommendations-section:after {
  content: '';
  clear: both;
  display: table;
}

.book-recommendations-cta {
  position: relative;
  z-index: 1;
  margin-top: 100px;
  background-color: #424242;
  min-height: 100px;
}

.book-recommendations-cta__inner {
  position: relative;
  font-size: 36px;
  color: #bababa;
  line-height: 1.4;
}
.book-recommendations-cta__inner a {
  margin-top: 30px;
}
.book-recommendations-cta__inner img {
  position: relative;
  top: -50px;
  left: 50%;
  width: 28%;
  margin-left: 10%;
}

.book-recommendations-cta__text {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.slick-container {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin: 0 -20px;
}
.slick-container .tile-13 {
  height: 100%;
  margin-bottom: 0;
}
.slick-container .tile-padding, .slick-container .tile-inner {
  height: 100%;
}

.slick-track {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.slick-slide {
  height: inherit !important;
}

.slick-slide > div {
  height: 100%;
}

.holiday-h1-img {
  width: 100%;
}

.holiday-h2-image {
  height: 32px;
}
.holiday-h2-image.-small {
  height: 26px;
}

@media (max-width: 1120px) {
  .book-recommendations-cta__inner {
    font-size: 26px;
  }
}
@media (max-width: 800px) {
  .book-recommendations-cta__inner {
    font-size: 20px;
  }
  .book-recommendations-cta__inner a {
    margin-top: 13px;
  }

  .slick-container {
    margin: 0;
  }

  .slick-prev {
    left: -10px !important;
  }

  .slick-next {
    right: -10px !important;
  }
}
@media (max-width: 570px) {
  .book-recommendations-cta__inner {
    font-size: 18px;
  }
  .book-recommendations-cta__inner img {
    position: relative;
    top: -20px;
    width: 28%;
    margin-left: 10%;
  }
}
@media (max-width: 440px) {
  .book-recommendations-cta__inner {
    font-size: 14px;
  }
  .book-recommendations-cta__inner img {
    position: relative;
    top: -30px;
    width: 60%;
    margin-left: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .book-recommendations-cta__inner a {
    margin-top: 20px;
  }

  .book-recommendations-cta__text {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    text-align: center;
    font-size: 22px;
    padding: 0px 10px 40px;
  }
}
/* slick styles
*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 50px;
  width: 50px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  border-radius: 50%;
  outline: none;
  background-color: #797979;
  z-index: 1;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
  background-color: #D0B449;
  border: none !important;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -20px;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "<";
}
[dir="rtl"] .slick-prev:before {
  content: ">";
}

.slick-next {
  right: -20px;
}
[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: ">";
}
[dir="rtl"] .slick-next:before {
  content: "<";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}
