@charset "UTF-8";
/***************
Imports
***************/
/***************
Mixins
***************/
/***************
Reset by Eric Meyer, modified slightly
http://meyerweb.com/eric/tools/css/reset/ 
***************/
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, main, 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, main {
  display: block;
}

body {
  line-height: 1.4;
}

ol, ul {
  list-style: none;
}

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

:focus {
  outline: none;
}

strong {
  font-weight: bold;
}

/* micro clear fix */
.grouping:before,
.grouping:after {
  content: " ";
  display: table;
}

.grouping:after {
  clear: both;
}

img, iframe, video, object {
  max-width: 100%;
}

button {
  border: none;
  cursor: pointer;
}

/***************
reset for fancybox
***************/
.fancybox-wrap,
.fancybox-skin,
.fancybox-inner,
.fancybox-outer {
  background: none;
}

.fancybox-lock .fancybox-overlay,
.fancybox-inner {
  overflow: visible !important;
}

.fancybox-close {
  display: none;
}

.fancybox-skin {
  border-radius: 0px;
  padding: 0 !important;
}

.fancybox-overlay {
  background: none;
}

.modal {
  background: none;
  width: 670px;
}

/***************
Error Styles and Positioning
***************/
input.error {
  border: 1px solid #f00 !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.error {
  color: #f00;
}

.required-notation {
  color: #f00;
}

.error-background {
  border: 1px solid #f00 !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  -ms-box-shadow: none !important;
  -o-box-shadow: none !important;
  box-shadow: none !important;
}

/***************
Modular Styles
***************/
.float-left {
  float: left;
}

.float-right {
  float: right;
}

.clear {
  clear: both;
}

.bold {
  font-weight: bold;
}

.hidden {
  visibility: hidden;
}

.hide {
  display: none;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

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

.wrapper {
  width: 100%;
  max-width: 960px;
  padding-left: 27px;
  padding-right: 27px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  /*@include respond-to(tablets-landscape) {width: 90%; min-width: 650px;}*/
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.margin-bottom-25 {
  margin-bottom: 25px;
}

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

.margin-bottom-15 {
  margin-bottom: 15px;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.margin-bottom-5 {
  margin-bottom: 5px;
}

.opacity-zero {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=${ieOpacity})";
  filter: "alpha(opacity=${ieOpacity})";
  opacity: 0;
}

.headroom,
.headroom ul {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

/*.headroom--pinned {
    @include translate($x: 0, $y: 0%);*/
@media screen and (max-width: 1200px) {
  .headroom ul {
    -webkit-transform: translate(100%, 0);
    -moz-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    -o-transform: translate(100%, 0);
  }
  .headroom ul.on-screen {
    -webkit-transform: translate(0%, 0);
    -moz-transform: translate(0%, 0);
    -ms-transform: translate(0%, 0);
    -o-transform: translate(0%, 0);
  }
}

.page-home.initial .headroom--top,
.headroom--unpinned {
  -webkit-transform: translate(0, 0%);
  -moz-transform: translate(0, 0%);
  -ms-transform: translate(0, 0%);
  -o-transform: translate(0, 0%);
}

/***************
animations
***************/
.rotate {
  animation-name: rotate;
  -webkit-animation-name: rotate;
  animation-duration: 12s;
  -webkit-animation-duration: 12s;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  visibility: visible !important;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(365deg);
  }
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(365deg);
  }
}
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/***************
Carousels
***************/
.jcarousel-client-carousel {
  position: relative;
  overflow: hidden;
  width: 480px;
  margin: 0 auto;
}

.jcarousel-client-carousel ul {
  width: 20000em;
  position: relative;
}

.jcarousel-client-carousel li {
  float: left;
  width: 480px;
}

/** carousel pagination **/
.carousel-wrapper {
  position: relative;
}

.right-arrow,
.left-arrow {
  background-position: 0 0;
  width: 32px;
  height: 73px;
  top: 60px;
  display: block;
  position: absolute;
  -webkit-transition: 0.1s all linear;
  -moz-transition: 0.1s all linear;
  -ms-transition: 0.1s all linear;
  -o-transition: 0.1s all linear;
  transition: 0.1s all linear;
  -webkit-transform: scale(0.95, 0.95);
  -moz-transform: scale(0.95, 0.95);
  -ms-transform: scale(0.95, 0.95);
  -o-transform: scale(0.95, 0.95);
}

.right-arrow {
  background: url("../../images/carousel-right.png") no-repeat;
  right: -49px;
}

.left-arrow {
  display: none;
}

.left-arrow:hover,
.right-arrow:hover {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
}

.slider {
  height: 150px;
}
@media screen and (max-width: 900px) {
  .slider {
    height: 100px;
  }
}
.slider.slider2 {
  height: 400px;
}
@media screen and (max-width: 900px) {
  .slider.slider2 {
    height: 400px;
  }
}

.slider .pf-slider-slide {
  display: flex;
  justify-content: center;
  align-content: center;
  background: white;
  padding: 10px;
  box-sizing: border-box;
  max-width: 150px;
  width: 33% !important;
}

@media screen and (max-width: 900px) {
  .slider2 .pf-slider-slide {
    display: block;
    width: 100% !important;
    max-width: 100%;
    background: transparent;
  }
}
.slider .pf-slider-slide img {
  margin: auto;
}

.pf-slider-wrapper {
  overflow: visible;
}

.pf-slider-pagination {
  bottom: -35px;
}

.slider2 .pf-slider-pagination {
  bottom: 15px;
}

.slider2 .pf-slider-nav {
  display: none !important;
}

.mobile {
  /* 
   * 	Core Owl Carousel CSS File
   *	v1.3.3
   */
  /* clearfix */
  /* display none until init */
  /* mouse grab icon */
  /* fix */
}
.mobile .owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.mobile .owl-carousel {
  display: none;
  width: 100%;
  -ms-touch-action: pan-y;
}
.mobile .owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.mobile .owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.mobile .owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
.mobile .owl-carousel .owl-item {
  float: left;
}
.mobile .owl-controls .owl-page,
.mobile .owl-controls .owl-buttons div {
  cursor: pointer;
}
.mobile .owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mobile .grabbing {
  cursor: url(grabbing.png) 8 8, move;
}
.mobile .owl-carousel .owl-wrapper,
.mobile .owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.mobile .page-portfolio .owl-carousel.loading .owl-wrapper,
.mobile .page-portfolio .owl-carousel.loading .owl-item {
  min-height: 524px;
}
@media screen and (max-width: 699px) {
  .mobile .page-portfolio .owl-carousel.loading .owl-wrapper,
.mobile .page-portfolio .owl-carousel.loading .owl-item {
    min-height: 200px;
  }
}
.mobile .text-white {
  color: #fff;
}
.mobile .text-gray {
  color: #818991;
}
.mobile .text-blue-brighter {
  color: #3FA9F5;
}
.mobile .text-brown {
  color: #8B6E4A;
}
.mobile .section-1 {
  background: url("../../images/landing-bg.jpg") 0 0 no-repeat;
  padding-top: 135px;
  background-size: cover;
}
.mobile .section-1 a {
  color: #0072AE;
  font-family: "raleway", Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.5;
}
.mobile .section-1 .contacts {
  position: absolute;
  top: 10px;
  left: 15px;
}
.mobile .section-1 .contacts img {
  margin-right: 10px;
  margin-top: -2px;
  position: relative;
  top: -3px;
}
.mobile .section-1 figure {
  float: none;
  margin: 0 auto 10px auto;
}
.mobile .section-1 h1 {
  color: #8B6E4A;
  text-align: center;
  float: none;
  line-height: 1.5;
  font-weight: 200;
}
.mobile .section-2 {
  height: auto;
  padding: 45px 0;
}
.mobile .section-2 p {
  margin-left: 40px;
  font-weight: 200;
}
.mobile .section-3 {
  background-color: #E5EDF2;
  position: relative;
  padding: 40px 0 135px 0;
}
.mobile .section-3 h4 {
  padding-left: 175px;
  font-family: "raleway", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 17px;
}
.mobile .section-3 h4 .text-blue {
  color: #0072AE;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.2;
}
.mobile .section-3 h4:first-child {
  padding-left: 40px;
  margin-bottom: 80px;
}
.mobile .mobile-overlay {
  position: absolute;
  min-width: 305px;
  top: -257px;
  left: 0;
}
.mobile .section-4 {
  position: relative;
  padding-bottom: 20px;
}
.mobile .section-4 .swipe {
  position: absolute;
  top: -60px;
  left: 15px;
  text-align: left;
  color: #0072AE;
  font-size: 14px;
  font-weight: 300;
}
.mobile .section-4 h3, .mobile .section-4 p {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  font-family: "raleway", Arial, Helvetica, sans-serif;
  font-weight: 200;
  padding: 20px 0;
  line-height: 1.5;
}
.mobile .section-4 h3 {
  font-size: 22px;
  color: #00ADD0;
  border-top: 1px solid #31A4DD;
  border-bottom: 1px solid #31A4DD;
  font-weight: 400;
}
.mobile .need-new-name {
  overflow-x: hidden;
  height: 175px;
  margin-top: -150px;
}
.mobile .key-points {
  margin-top: -200px;
}
.mobile .key-points .items {
  width: 140px;
  margin-left: 15px;
}
.mobile .port-hole {
  background: url("../../images/keyboard-bg.png") no-repeat 0 0;
  background-size: cover;
  height: 150px;
}
.mobile .port-hole h2 {
  padding-left: 30px;
  font-size: 18px;
  line-height: 150px;
  font-weight: 200;
}
.mobile .section-5 {
  background: url("../../images/strat-bg.jpg") repeat-y 0 0;
  padding-left: 35px;
  padding-right: 15px;
  padding-bottom: 30px;
}
.mobile .section-5 p {
  font-weight: 200;
  margin-bottom: 20px;
}
.mobile .section-5 h4 {
  font-weight: 300;
}
.mobile #go-to-contacts {
  background: url("../../images/strat-bg.jpg") repeat-y 0 0;
  padding-bottom: 35px;
}
.mobile footer {
  background-color: #fff;
  padding-left: 30px;
}
.mobile footer figure {
  margin-top: -70px;
  width: 215px;
  margin-left: -22px;
}
.mobile footer .left {
  float: left;
  width: 50%;
}
.mobile footer .right {
  float: right;
  width: 50%;
}
.mobile footer a {
  color: #D06F19;
}
.mobile footer ul {
  margin: 0;
  float: none;
  height: 160px;
}
.mobile footer ul:first-child {
  margin: 0;
}
.mobile footer .list-heading {
  margin-bottom: 5px;
}
@media screen and (max-width: 400px) {
  .mobile footer .left,
.mobile footer .right {
    width: auto;
    float: none;
  }
}
.mobile .section-1,
.mobile .section-2,
.mobile .section-3,
.mobile .section-4,
.mobile .section-5,
.mobile footer {
  position: relative;
}
.mobile .section-1 {
  z-index: 1;
}
.mobile .section-2 {
  z-index: 1;
}
.mobile .section-3 {
  z-index: 1;
}
.mobile .section-4 {
  z-index: 1;
}
.mobile .section-5 {
  z-index: 1;
}
.mobile footer {
  z-index: 1;
}
.mobile .owl-wrapper-outer {
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (min-width: 400px) {
  .mobile .mobile-overlay {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg);
    left: 53px;
    top: -230px;
  }
  .mobile .section-3 h4 {
    padding-left: 225px;
    padding-top: 20px;
  }
  .mobile .section-3 h4 .text-brown br:first-child {
    display: none;
  }
}

input.parsley-success,
select.parsley-success,
textarea.parsley-success {
  color: #468847;
  background-color: #DFF0D8;
  border: 1px solid #D6E9C6;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  border: 1px solid #f00 !important;
}

.parsley-errors-list {
  margin: 0px 0 3px 100px;
  padding: 0;
  list-style-type: none;
  font-size: 0.9em;
  line-height: 0.9em;
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  -webkit-transition: 0.25s all linear;
  -moz-transition: 0.25s all linear;
  -ms-transition: 0.25s all linear;
  -o-transition: 0.25s all linear;
  transition: 0.25s all linear;
}
.parsley-errors-list .parsley-type,
.parsley-errors-list .parsley-required {
  margin-bottom: 15px;
  color: #f00;
}

.parsley-errors-list.filled {
  opacity: 1;
}

/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* display none until init */
.owl-carousel {
  display: none;
  width: 100%;
  -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
  float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}

.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing {
  cursor: url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.page-portfolio .owl-carousel.loading .owl-wrapper,
.page-portfolio .owl-carousel.loading .owl-item {
  min-height: 524px;
}
@media screen and (max-width: 699px) {
  .page-portfolio .owl-carousel.loading .owl-wrapper,
.page-portfolio .owl-carousel.loading .owl-item {
    min-height: 200px;
  }
}

.page-portfolio {
  background: #dfecf4;
  background: url("../../images/dots-and-lines-bg-5.svg") 80% 83px scroll no-repeat, url("../../images/recent-work-tree.png") top right -200px fixed no-repeat, -webkit-gradient(linear, left top, right top, color-stop(0%, #dfecf4), color-stop(100%, #eff0ef)) 0 0 no-repeat;
  background: url("../../images/dots-and-lines-bg-5.svg") 80% 83px scroll no-repeat, url("../../images/recent-work-tree.png") top right -200px fixed no-repeat, -webkit-linear-gradient(left, #dfecf4 0%, #eff0ef 100%) 0 0 no-repeat;
  background: url("../../images/dots-and-lines-bg-5.svg") 80% 83px scroll no-repeat, url("../../images/recent-work-tree.png") top right -200px fixed no-repeat, -moz-linear-gradient(left, #dfecf4 0%, #eff0ef 100%) 0 0 no-repeat;
  background: url("../../images/dots-and-lines-bg-5.svg") 80% 83px scroll no-repeat, url("../../images/recent-work-tree.png") top right -200px fixed no-repeat, -o-linear-gradient(left, #dfecf4 0%, #eff0ef 100%);
  background: url("../../images/dots-and-lines-bg-5.svg") 80% 83px scroll no-repeat, url("../../images/recent-work-tree.png") top right -200px fixed no-repeat, -ms-linear-gradient(left, #dfecf4 0%, #eff0ef 100%);
  background: url("../../images/dots-and-lines-bg-5.svg") 80% 83px scroll no-repeat, url("../../images/recent-work-tree.png") top right -200px fixed no-repeat, linear-gradient(to right, #dfecf4 0%, #eff0ef 100%);
  -webkit-background-size: 501px 543px, 578px 517px, cover;
  -moz-background-size: 501px 543px, 578px 517px, cover;
  -o-background-size: 501px 543px, 578px 517px, cover;
  background-size: 501px 543px, 578px 517px, cover;
}
@media screen and (max-width: 699px) {
  .page-portfolio {
    background: #dfecf4;
    background: url("../../images/dots-and-lines-bg-5.svg") 90% 83px scroll no-repeat, url("../../images/recent-work-tree.png") top right -250px fixed no-repeat, -webkit-gradient(linear, left top, right top, color-stop(0%, #dfecf4), color-stop(100%, #eff0ef)) 0 0 no-repeat;
    background: url("../../images/dots-and-lines-bg-5.svg") 90% 83px scroll no-repeat, url("../../images/recent-work-tree.png") top right -250px fixed no-repeat, -webkit-linear-gradient(left, #dfecf4 0%, #eff0ef 100%) 0 0 no-repeat;
    background: url("../../images/dots-and-lines-bg-5.svg") 90% 83px scroll no-repeat, url("../../images/recent-work-tree.png") top right -250px fixed no-repeat, -moz-linear-gradient(left, #dfecf4 0%, #eff0ef 100%) 0 0 no-repeat;
    background: url("../../images/dots-and-lines-bg-5.svg") 90% 83px scroll no-repeat, url("../../images/recent-work-tree.png") top right -250px fixed no-repeat, -o-linear-gradient(left, #dfecf4 0%, #eff0ef 100%);
    background: url("../../images/dots-and-lines-bg-5.svg") 90% 83px scroll no-repeat, url("../../images/recent-work-tree.png") top right -250px fixed no-repeat, -ms-linear-gradient(left, #dfecf4 0%, #eff0ef 100%);
    background: url("../../images/dots-and-lines-bg-5.svg") 90% 83px scroll no-repeat, url("../../images/recent-work-tree.png") top right -250px fixed no-repeat, linear-gradient(to right, #dfecf4 0%, #eff0ef 100%);
    -webkit-background-size: 400px 350px, 450px 403px, cover;
    -moz-background-size: 400px 350px, 450px 403px, cover;
    -o-background-size: 400px 350px, 450px 403px, cover;
    background-size: 400px 350px, 450px 403px, cover;
  }
}
.page-portfolio .intro-section {
  background: none;
}
@media screen and (max-width: 699px) {
  .page-portfolio .intro-section .intro-side {
    width: 50%;
  }
}
.page-portfolio .figure {
  display: none;
}
.page-portfolio .figure-visible {
  display: block;
  position: relative;
  z-index: 10;
}
.page-portfolio .arrows-container {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}
.page-portfolio .arrows-container a {
  display: block;
  position: absolute;
  transform: translateY(-50%);
}
.page-portfolio .arrows-container a.less-samples {
  left: -52px;
  display: none;
}
.page-portfolio .arrows-container a.more-samples {
  right: -52px;
}
@media screen and (max-width: 1200px) {
  .page-portfolio .arrows-container a img {
    width: 20px;
    height: auto;
  }
  .page-portfolio .arrows-container a.less-samples {
    left: -23px;
    display: none;
  }
  .page-portfolio .arrows-container a.more-samples {
    right: -23px;
  }
}
.page-portfolio .active-item {
  font-weight: 500;
}
.page-portfolio .button-disabled {
  color: #666;
}

.section-portfolio {
  padding: 60px 0;
}
@media screen and (max-width: 699px) {
  .section-portfolio {
    padding: 0;
  }
  .section-portfolio .wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .page-portfolio-sub .section-portfolio h2 {
    padding: 20px;
    margin: 0;
  }
  .section-portfolio a {
    display: block;
    padding: 20px 0;
    font-family: "raleway", Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 200;
    color: #fff;
  }
}

.portfolio-row {
  margin-bottom: 35px;
}
.portfolio-row:last-child {
  margin-bottom: 0;
}
.portfolio-row .thumbnails {
  position: relative;
}
.portfolio-row .thumbnails .thumbnail-visible-wrapper {
  overflow: hidden;
  width: 100%;
  height: 172px;
}
.portfolio-row .thumbnails .thumbnail-visible-wrapper .thumbnail-wrapper {
  position: relative;
  width: 50000px;
  height: 100%;
  left: 0;
  -webkit-transition: 0.5s left ease-in-out;
  -moz-transition: 0.5s left ease-in-out;
  -ms-transition: 0.5s left ease-in-out;
  -o-transition: 0.5s left ease-in-out;
  transition: 0.5s left ease-in-out;
}
.portfolio-row .thumbnails.touching .thumbnail-visible-wrapper .thumbnail-wrapper {
  -webkit-transition: 0s left linear;
  -moz-transition: 0s left linear;
  -ms-transition: 0s left linear;
  -o-transition: 0s left linear;
  transition: 0s left linear;
}
@media screen and (min-width: 1201px) {
  .portfolio-row .thumbnails:hover figure img {
    opacity: 0.75;
  }
}
.portfolio-row .thumbnails figure {
  float: left;
  width: 172px;
  margin-left: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  /*opacity: 0;
  @include transition($duration:0.5s, $properties: opacity, $timing: ease-in-out);*/
  /*&.figure-visible {
  	opacity:1;
  }*/
}
.portfolio-row .thumbnails figure:first-child {
  margin-left: 0;
}
.portfolio-row .thumbnails figure img {
  cursor: pointer !important;
  -webkit-transition: 0.25s all ease-in-out;
  -moz-transition: 0.25s all ease-in-out;
  -ms-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  float: left;
}
@media screen and (min-width: 1201px) {
  .portfolio-row .thumbnails figure img:hover {
    -webkit-transform: scale(1.25, 1.25);
    -moz-transform: scale(1.25, 1.25);
    -ms-transform: scale(1.25, 1.25);
    -o-transform: scale(1.25, 1.25);
    opacity: 1;
  }
}
.portfolio-row .thumbnails figure.inactive img {
  opacity: 0.25;
}
@media screen and (min-width: 1201px) {
  .portfolio-row .thumbnails figure.inactive img:hover {
    opacity: 0.75;
  }
}
.portfolio-row .thumbnails figure.active img {
  -webkit-transform: scale(1.25, 1.25);
  -moz-transform: scale(1.25, 1.25);
  -ms-transform: scale(1.25, 1.25);
  -o-transform: scale(1.25, 1.25);
  opacity: 1;
}
@media screen and (max-width: 699px) {
  .portfolio-row .thumbnails {
    display: none;
  }
}

.portfolio-row-title {
  clear: both;
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
}
@media screen and (max-width: 699px) {
  .portfolio-row-title {
    padding: 20px;
    margin: 0;
  }
}

.panels {
  position: relative;
}
.panels .arrow {
  display: none;
  margin-top: -15px;
  height: 17.5px;
  width: 35px;
  background: url(../../images/arrow.png) 0 0 no-repeat;
  background-size: 35px 17.5px;
  -webkit-transform: translate(-17.5px, 0);
  -moz-transform: translate(-17.5px, 0);
  -ms-transform: translate(-17.5px, 0);
  -o-transform: translate(-17.5px, 0);
}
.panels .arrow.first {
  margin-left: 9%;
}
.panels .arrow.second {
  margin-left: 30%;
}
.panels .arrow.third {
  margin-left: 50%;
}
.panels .arrow.fourth {
  margin-left: 70%;
}
.panels .arrow.fifth {
  margin-left: 91%;
}
@media screen and (max-width: 699px) {
  .panels {
    padding-left: 27px;
    padding-right: 27px;
  }
  .portfolio-row .panels {
    max-height: 0px;
    overflow: hidden;
    -webkit-transition: 0.75s max-height cubic-bezier(0.65, 0.05, 0.36, 1);
    -moz-transition: 0.75s max-height cubic-bezier(0.65, 0.05, 0.36, 1);
    -ms-transition: 0.75s max-height cubic-bezier(0.65, 0.05, 0.36, 1);
    -o-transition: 0.75s max-height cubic-bezier(0.65, 0.05, 0.36, 1);
    transition: 0.75s max-height cubic-bezier(0.65, 0.05, 0.36, 1);
  }
  .portfolio-row.opening .panels {
    max-height: 100vh;
  }
  .portfolio-row.opened .panels {
    max-height: none;
  }
}

.panel {
  margin-top: 40px;
  background-color: #fff;
  padding: 0 0 0px 0px;
  display: none;
  position: relative;
}
.bg-white .panel {
  display: block;
}

.style-gray .panel {
  color: #63666A;
}

.panel .close-panel {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 1.5em;
  line-height: 1em;
  cursor: pointer;
  z-index: 20;
}
@media screen and (max-width: 699px) {
  .panel .close-panel {
    display: none;
  }
}
.panel .panel-top {
  padding-bottom: 25px;
  padding-right: 0;
  padding-top: 0;
  position: relative;
  z-index: 10;
  width: 25%;
  /*float:left;*/
  position: absolute;
  top: 50%;
  left: calc(65% + 35px);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}
.panel .panel-top h1 {
  color: #0072AE;
  margin-bottom: 8px;
  line-height: 1;
  font-weight: 500;
}
.panel .panel-top h2 {
  color: #766E65;
  line-height: 1;
  margin-bottom: 8px;
}
@media screen and (max-width: 699px) {
  .panel .panel-top {
    padding-left: 27px;
    padding-right: 27px;
    width: auto;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
  }
}
.panel .panel-info {
  width: 100%;
  margin-right: 0;
  color: #000 !important;
  font-family: "raleway", Arial, Helvetica, sans-serif;
  font-size: 0.8em;
}
.panel .owl-controls {
  color: #000000 !important;
}
.panel .owl-controls.clickable {
  width: auto;
  right: 20px;
  top: 20px;
  left: 20px;
  bottom: 20px;
}
.panel .owl-pagination2 {
  display: none !important;
}
.panel .owl-page-button {
  margin-left: 15px;
  font-weight: 600;
  color: #0072AE;
  cursor: pointer;
}
.panel .owl-page-button:nth-child(1) {
  margin-right: 15px;
  margin-left: 0px;
}

.page-portfolio-sub .panel {
  margin: 2em 0 2em 0;
  padding: 0;
}
.page-portfolio-sub .panel .panel-top {
  margin-left: 0;
  width: auto;
}
.page-portfolio-sub .panel .panel-info {
  margin-left: 0;
  width: auto;
}
.page-portfolio-sub .panel h1 {
  margin: 0 0 1em 0;
  padding: 0 0 0 0;
}
.page-portfolio-sub .panel h2 {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
.page-portfolio-sub .panel figure iframe {
  min-height: 300px;
}
.page-portfolio-sub a.back-link {
  color: #0072AE;
}
.page-portfolio-sub a.back-link:before {
  display: inline;
  content: "◀︎";
  padding-right: 5px;
}
.page-portfolio-sub a.back-link:hover {
  color: #D06F19;
}

.panel-buttons {
  position: absolute;
  top: 50%;
  cursor: pointer;
  display: none;
  height: 76px;
  width: 76px;
  background-repeat: no-repeat;
  background-position: 0 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.panel-buttons.panel-prev {
  left: 20px;
  background-image: url("../../images/panel-prev.png");
}
.panel-buttons.panel-next {
  right: 20px;
  background-image: url("../../images/panel-next.png");
}

.owl-prev::after {
  content: "";
  border: solid #0072AE;
  transform: rotate(135deg);
  border-width: 0px 2px 2px 0;
  position: absolute;
  top: 7px;
  left: 9px;
  height: 10px;
  width: 10px;
  z-index: 2;
}

.owl-prev::before {
  content: "";
  border: 1px solid #0072AE;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}

.panel .owl-buttons .owl-prev {
  float: left;
  cursor: pointer;
  overflow: hidden;
  height: 20px;
  width: 20px;
  text-indent: 20px;
}

.owl-next::after {
  content: "";
  border: 1px solid #0072AE;
  transform: rotate(315deg);
  border-width: 0px 2px 2px 0;
  position: absolute;
  top: 6px;
  left: 96%;
  height: 10px;
  width: 10px;
  z-index: 2;
}

.owl-next::before {
  content: "";
  border: 1px solid #0072AE;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 95%;
  right: 0;
  bottom: 0;
  display: block;
}

.panel .owl-buttons .owl-next {
  float: left;
  cursor: pointer;
  overflow: hidden;
  height: 20px;
  width: 20px;
  text-indent: 20px;
}

.panel figure {
  text-align: center;
}
.panel figure img {
  max-height: 524px;
  text-align: center;
}
.panel .owl-carousel {
  width: 65%;
  width: calc(65% - 5px);
  padding: 20px;
  float: left;
  padding-bottom: 40px;
  position: relative;
}
.panel .owl-carousel .owl-wrapper-outer {
  width: 99.95%;
}
.panel .owl-controls {
  text-align: center;
}
.panel .owl-pagination {
  pointer-events: auto;
  cursor: pointer;
  /*display: inline-block;
  margin-top: 85%;*/
  display: block;
  position: absolute;
  bottom: 0px;
  /*top:98%;*/
  left: 50%;
  height: 14px;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
}
.panel .owl-page {
  width: 10px;
  height: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  background-color: transparent;
  float: left;
  margin-right: 5px;
  border: 2px solid #0072AE;
}
.panel .owl-page:last-child {
  margin-right: 0;
}
.panel .owl-page.active {
  background-color: #0072AE;
}
.panel .owl-buttons {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  pointer-events: auto;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  font-family: "raleway", Arial, Helvetica, sans-serif;
}
.panel .owl-buttons .owl-prev {
  float: left;
  cursor: pointer;
}
.panel .owl-buttons .owl-next {
  float: right;
  cursor: pointer;
}
@media screen and (max-width: 699px) {
  .panel {
    display: block;
    margin-left: -27px;
    margin-right: -27px;
    margin-top: 0;
    border-bottom: 1px solid #766E65;
  }
  .panel .panel-top,
.panel .owl-carousel {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-top: 1em;
    padding-left: 27px;
    padding-right: 27px;
    box-sizing: border-box;
  }
  .panel .owl-carousel {
    pointer-events: none;
  }
  .panel .owl-carousel .owl-controls {
    display: none !important;
  }
  .panel .owl-carousel .owl-wrapper {
    width: 100% !important;
  }
}

.owl-controls.clickable {
  position: absolute;
  right: 27px;
  top: 50px;
  z-index: 100;
  pointer-events: none;
}

.owl-item iframe {
  width: 100%;
}

.video-section .item iframe {
  width: 100%;
  min-height: 328px;
  pointer-events: auto;
}

/***************
Global
***************/
::-moz-selection {
  background-color: #D9FFE1;
}

::selection {
  background-color: #D9FFE1;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #E2EFF7;
  font-family: "Avenir W01", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 16px;
  min-width: 320px;
  position: relative;
}
body .page-404, body.page-contact, body.page-company, body.page-careers {
  background-color: #E5EDF2;
}

a {
  text-decoration: none;
  color: #D06F19;
}

h1 {
  font-family: "raleway", Arial, Helvetica, sans-serif;
  font-size: 24px;
  color: #0072AE;
  font-weight: 200;
  margin-bottom: 10px;
}

h2 {
  font-family: "raleway", Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #31A4DD;
  font-weight: 200;
}

sup {
  font-size: 50%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.8em;
}

.hide {
  display: none;
}

@media screen and (max-width: 900px) {
  .mobile-show {
    display: block;
  }
  .mobile-show .wrapper {
    padding: 40px 27px;
  }

  .mobile-hide {
    display: none;
  }
}
.bg-white {
  background: #fff;
}

.white-text {
  color: white;
}

/***************
Buttons
***************/
.button {
  padding: 12px;
  color: #fff;
  background-color: #0072AE;
  -webkit-transition: 0.25s all linear;
  -moz-transition: 0.25s all linear;
  -ms-transition: 0.25s all linear;
  -o-transition: 0.25s all linear;
  transition: 0.25s all linear;
  margin: 0 22px 0 auto;
  display: block;
}
.style-white .button {
  background-color: #31A4DD;
}
.text-side .button {
  margin-top: 20px;
}
.button:focus, .button:hover {
  background-color: #008CCC;
}

.case-study .button:hover {
  text-decoration: none;
}

/***************
Nav
***************/
.nav-detection {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100px;
  min-width: 320px;
  background: none;
  z-index: 198;
}

nav {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #D2D7D4), color-stop(1, #FFFFFF));
  background-image: -o-linear-gradient(bottom, #D2D7D4 0%, #FFFFFF 100%);
  background-image: -moz-linear-gradient(bottom, #D2D7D4 0%, #FFFFFF 100%);
  background-image: -webkit-linear-gradient(bottom, #D2D7D4 0%, #FFFFFF 100%);
  background-image: -ms-linear-gradient(bottom, #D2D7D4 0%, #FFFFFF 100%);
  background-image: linear-gradient(to bottom, #D2D7D4 0%, #FFFFFF 100%);
  position: fixed;
  min-width: 320px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  /*min-width: 750px;*/
  -webkit-box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.1);
}
nav figure {
  position: absolute;
  top: 30px;
  left: 30px;
}
@media screen and (max-width: 1200px) {
  nav figure {
    top: 8px;
  }
}
@media screen and (max-width: 900px) {
  nav figure {
    top: 8px;
    left: 23px;
  }
}
nav figure a {
  -webkit-transition: 0.15s all linear;
  -moz-transition: 0.15s all linear;
  -ms-transition: 0.15s all linear;
  -o-transition: 0.15s all linear;
  transition: 0.15s all linear;
  display: block;
  width: 250px;
  height: 100%;
}
nav figure a:hover {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media only screen and (min-width: 1600px) {
  nav figure a {
    width: 300px;
  }
}
@media only screen and (min-width: 2000px) {
  nav figure a {
    width: 350px;
  }
}
nav .mobile-menu-icon {
  display: none;
  text-align: right;
  float: right;
  margin-top: 15px;
  margin-bottom: 5px;
  margin-right: 27px;
  height: 43px;
  width: 30px;
  line-height: 6px;
  color: #3FA9F5;
  font-family: "raleway", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}
nav .mobile-menu-icon .bar {
  display: inline-block;
  height: 2px;
  width: 100%;
  background: #818991;
}
nav .mobile-menu-icon:hover {
  color: #0072AE;
}
@media screen and (max-width: 1200px) {
  nav .mobile-menu-icon {
    display: block;
  }
}
nav li {
  float: left;
}
nav li a {
  font-family: "raleway", Arial, Helvetica, sans-serif;
  color: #766E65;
  text-transform: uppercase;
  font-size: 15px;
  text-align: center;
  float: right;
  border-left: 1px solid #ada791;
  padding: 43px 32px 37px 32px;
  -webkit-transition: 0.15s background-color linear;
  -moz-transition: 0.15s background-color linear;
  -ms-transition: 0.15s background-color linear;
  -o-transition: 0.15s background-color linear;
  transition: 0.15s background-color linear;
}
nav li a.active {
  background-color: #0072AE;
  color: #fff;
}
nav li a:hover {
  background-color: #0072AE;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  nav li a {
    padding: 25px;
  }
}
@media screen and (max-width: 900px) {
  nav li a {
    padding: 20px;
  }
}
nav li.mobile-only {
  display: none;
}
nav li.mobile-only a {
  color: #3FA9F5;
  padding: 7px 27px 6px 13px;
  text-align: right;
  border-bottom: 1px solid none;
}
nav li.mobile-only a:hover {
  background: #fff;
  color: #0072AE;
}
@media screen and (max-width: 1200px) {
  nav ul {
    -webkit-transform: translate(100%, 0);
    -moz-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    -o-transform: translate(100%, 0);
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #fff;
    float: none !important;
    width: 200px;
    height: 4700px;
    border-left: 0px solid #ada791;
  }
  nav ul li {
    float: none !important;
  }
  nav ul li a {
    width: 160px;
    padding: 0;
    line-height: 50px;
    text-align: left;
    padding-left: 40px;
    border-left: none;
    border-bottom: 1px solid #ada791;
  }
  nav ul li a:after {
    content: "";
    display: table;
    clear: both;
  }
  nav ul li.mobile-only {
    display: block;
  }
}

/***************
Large Background Images
***************/
.large-bg {
  width: 100%;
  height: 475px;
  position: absolute;
  background-position: top center;
  background-repeat: repeat-y;
  background-attachment: fixed;
  background-size: cover;
  z-index: 1;
  /*@media only screen
    and (min-device-width: 768px)
    and (max-device-width: 1024px) {
    //  and (orientation: landscape) 
    //  and (-webkit-min-device-pixel-ratio: 1)
    	background: none !important;
  }*/
}
.large-bg.first {
  top: 570px;
  background-image: url("/images/window-1.jpg");
  /* 
  @media 
  only screen and (-webkit-min-device-pixel-ratio:1.5),
  only screen and (min--moz-device-pixel-ratio:1.5),
  only screen and (min-resolution:240dpi) {
    	background-image: url('/images/window-1@2x.jpg');
    	background-position: top center;
    	background-repeat: no-repeat;
  	background-attachment: fixed;
    	background-size: cover;
  }
  */
}
.page-company .large-bg.first {
  top: 241px;
}
.large-bg.second {
  top: 1350px;
  background-image: url("/images/window-2.jpg");
}
.large-bg.third {
  top: 2130px;
  background-image: url("/images/window-3.jpg");
}
@media screen and (max-width: 1200px) {
  .large-bg {
    display: none;
  }
}

/***************
Header
***************/
.intro-section {
  margin-top: 0;
  padding-top: 120px;
  padding-bottom: 50px;
  background-color: #E2EFF7;
  position: relative;
  z-index: 2;
}
.page-services .intro-section {
  background: none;
}
.page-contact .intro-section {
  padding-bottom: 110px;
}
.intro-section .intro-side {
  width: 60.5%;
  padding: 30px 0 0 0;
}
@media screen and (max-width: 1100px) {
  .intro-section .intro-side {
    width: auto;
    padding-right: 0;
  }
}
@media screen and (max-width: 1300px) {
  .page-services .intro-section .intro-side {
    width: 50%;
  }
}
@media screen and (max-width: 1100px) {
  .intro-section .para-first {
    width: 500px;
  }
}
.intro-section .bullet-side {
  width: 50%;
  padding: 70px 0 0 0;
  margin-right: -150px;
}
.intro-section .bullet-side:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 1100px) {
  .intro-section .bullet-side {
    width: auto;
    padding-top: 40px;
    margin-right: 0;
  }
}
.intro-section .bullet-side li {
  width: 48%;
  float: left;
  margin-bottom: 20px;
  font-family: "Avenir W01", Arial, Helvetica, sans-serif;
  font-weight: 200;
  color: #0072AE;
  font-size: 16px;
  text-transform: uppercase;
  padding: 3px;
  border: 1px solid transparent;
}
@media screen and (max-width: 1100px) {
  .intro-section .bullet-side li {
    font-size: 14px;
    width: 25%;
  }
}
@media screen and (max-width: 900px) {
  .intro-section .bullet-side li {
    width: 32%;
  }
}

/***************
Home Page
***************/
.bg-ondemand {
  background-image: url("/images/case-study-hero-mobile.webp");
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 10px;
  background-position: -150px;
  background-size: auto 250px;
  height: 100%;
}

.page-home p {
  color: #008CCC;
  font-family: "raleway", Arial, Helvetica, sans-serif;
  font-size: 19px;
}

.text-brown {
  color: #7B6C5E;
}

.text-blue {
  color: #3FA9F5;
}

.connections-overlay {
  width: 100%;
  /*min-width: 709px;*/
  height: 754px;
  position: absolute;
  top: 675px;
  pointer-events: none;
  left: 0;
  right: 0;
  z-index: 100;
  background: url("/images/connections-overlay.png") no-repeat center top;
  background-image: url("/images/marketing-edge-group-connection-bubble-graphic-desktop.svg");
  -webkit-background-size: 1300px 754px;
  -moz-background-size: 1300px 754px;
  -o-background-size: 1300px 754px;
  background-size: 1300px 754px;
}
@media screen and (max-width: 900px) {
  .connections-overlay {
    background-image: url("/images/marketing-edge-group-connection-bubble-graphic-desktop-notext.svg");
  }
}
@media screen and (max-width: 699px) {
  .connections-overlay {
    top: 100px;
    left: 30%;
    width: 70%;
    overflow: hidden;
  }
}
@media screen and (max-width: 550px) {
  .connections-overlay {
    top: 450px;
  }
}
.connections-overlay .container {
  max-width: 650px;
  /*min-width: 650px;*/
  margin: 408px auto 0 auto;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 699px) {
  .connections-overlay {
    height: 565px;
    background-position: left 150px bottom 0px;
  }
  .connections-overlay .gear {
    position: absolute;
    bottom: 235px;
    left: 422px;
  }
}
.connections-overlay p {
  color: #0072AE;
}
.connections-overlay .text-brown {
  color: #7B6C5E;
}
.connections-overlay .gear {
  margin: 38px 0 0 402px;
  width: 30px;
}
.connections-overlay .text-placement {
  margin-top: -35px;
}
@media screen and (max-width: 699px) {
  .connections-overlay .text-placement {
    display: none;
  }
}
.connections-overlay .left {
  float: left;
  width: 380px;
  text-align: right;
}
.connections-overlay .middle {
  float: left;
  width: 80px;
}
.connections-overlay .right {
  float: left;
  width: 190px;
  white-space: nowrap;
}

.port-hole {
  height: 120px;
  position: relative;
  z-index: 1;
}
.port-hole h2 {
  font-size: 24px;
  font-weight: 200;
  color: #fff;
  line-height: 120px;
}
.port-hole .dark-bg {
  background-color: #4D4D4D;
  padding: 3px 6px;
}
.port-hole .blue-bg {
  background-color: #0072AE;
  padding: 3px 6px;
}
.port-hole .white-bg {
  background-color: #fff;
  padding: 3px 6px;
  color: #0072AE;
}
.port-hole .black-bg {
  background-color: #000;
  padding: 3px 6px;
}
@media screen and (max-width: 1200px) {
  .port-hole.first {
    background: url("/images/window-1-ipad.jpg") center top no-repeat;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) and (min-device-width: 699px) and (max-device-width: 1024px), only screen and (min--moz-device-pixel-ratio: 1.5) and (min-device-width: 768px) and (max-device-width: 1024px), only screen and (min-resolution: 240dpi) and (min-device-width: 768px) and (max-device-width: 1024px) {
  .port-hole.first {
    background: url("/images/window-1-ipad@2x.jpg") center top no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 1200px) {
  .port-hole.second {
    background: url("/images/window-2-ipad.jpg") center top no-repeat;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) and (min-device-width: 699px) and (max-device-width: 1024px), only screen and (min--moz-device-pixel-ratio: 1.5) and (min-device-width: 768px) and (max-device-width: 1024px), only screen and (min-resolution: 240dpi) and (min-device-width: 768px) and (max-device-width: 1024px) {
  .port-hole.second {
    background: url("/images/window-2-ipad@2x.jpg") center top no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 1200px) {
  .port-hole.third {
    background: url("/images/marketing-edge-group-case-study-woman-looking-at-screen-tablet.jpg") center top no-repeat;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) and (min-device-width: 768px) and (max-device-width: 1024px), only screen and (min--moz-device-pixel-ratio: 1.5) and (min-device-width: 768px) and (max-device-width: 1024px), only screen and (min-resolution: 240dpi) and (min-device-width: 768px) and (max-device-width: 1024px) {
  .port-hole.third {
    background: url("/images/marketing-edge-group-case-study-woman-looking-at-screen-tablet.jpg") center top no-repeat;
    background-size: cover;
  }
}

.slogan-1,
.slogan-2,
.slogan-3 {
  -webkit-transition: 0.25s all linear;
  -moz-transition: 0.25s all linear;
  -ms-transition: 0.25s all linear;
  -o-transition: 0.25s all linear;
  transition: 0.25s all linear;
}

/* top nav */
.home-page-nav {
  position: absolute;
  top: 120px;
  right: 25px;
  left: 25px;
  z-index: 199;
}
@media screen and (max-width: 1100px) {
  .home-page-nav {
    top: 90px;
  }
}
@media screen and (max-width: 900px) {
  .home-page-nav {
    top: 80px;
  }
}
.initial .home-page-nav {
  top: 20px;
}
.home-page-nav p {
  color: #999;
  font-size: 12px;
  font-weight: 300;
  font-family: "Avenir W01", Arial, Helvetica, sans-serif;
}
.home-page-nav a {
  color: #D06F19;
  font-family: "raleway", Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.home-page-nav a:active, .home-page-nav a:visited {
  color: #D06F19;
}
.home-page-nav a:hover {
  text-decoration: underline;
}
.home-page-nav .showMenu {
  display: none;
  color: #0072AE;
  margin-right: 20px;
}

.initial .home-page-nav .showMenu {
  display: block;
}

.section-1,
.section-2,
.section-4,
.section-5 {
  background-color: #E2EFF7;
}

.section-1,
.section-2,
.section-3,
.section-4,
.section-5,
.section-legal {
  position: relative;
  z-index: 10;
}

/* section 1 */
.section-1 {
  padding: 200px 0 30px 0;
  background: #E2EFF7 url("/images/section-1-bg.jpg") no-repeat center top fixed;
}
@media screen and (max-width: 900px) {
  .section-1 {
    padding-top: 150px;
    padding-bottom: 140px;
  }
}
.section-1 .container {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 75px;
}
@media screen and (max-width: 900px) {
  .section-1 .container {
    width: 100%;
    margin-bottom: 75px;
  }
}
.section-1 h1 {
  color: #736357;
  float: left;
  margin-right: 25px;
  margin-bottom: 0;
  line-height: 101px;
}
@media screen and (max-width: 900px) {
  .section-1 h1 {
    font-size: 20px;
    margin-right: 5px;
  }
}
.section-1 figure {
  float: left;
  width: 215px;
  height: 101px;
}
.section-1 figure img {
  float: left;
}
.section-1 p {
  clear: both;
  width: 225px;
  text-align: right;
  margin-left: 55px;
  font-weight: 300;
  position: relative;
  padding-top: 60px;
}
@media screen and (max-width: 1100px) {
  .section-1 p {
    padding-top: 0;
  }
}
@media screen and (max-width: 900px) {
  .section-1 p {
    margin-top: -35px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 699px) {
  .section-1 {
    padding-bottom: 0;
  }
  .section-1 .key-points-mobile-text {
    display: block;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-1 .key-points-mobile-text p {
    text-align: left;
    width: 50%;
    min-width: 205px;
    margin: 0 0 0 27px;
  }
  .section-1 .wrapper.bg-white {
    background: #F8F8F8;
    padding: 0;
  }
  .section-1 .wrapper::before {
    display: block;
    position: absolute;
    bottom: 0;
    top: -250px;
    left: 55%;
    right: 0;
    background-image: url("/images/marketing-edge-group-connection-bubble-graphic-mobile.svg");
    background-repeat: no-repeat;
    background-position: left bottom 10px;
    background-size: 350px auto;
  }
  .section-1 .content-wrapper {
    padding: 40px 27px;
    max-width: 320px;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

/* section-2 */
.section-2 {
  height: 500px;
  overflow: hidden;
}
@media screen and (max-width: 699px) {
  .section-2 {
    background: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
    height: auto;
  }
}

/* section-3 */
.section-3 {
  background-color: #0072AE;
  padding-bottom: 40px;
  position: relative;
  z-index: 120;
}
@media screen and (max-width: 900px) {
  .section-3 {
    padding-bottom: 50px;
  }
}
.section-3 h3 {
  color: #fff;
  text-align: center;
  font-family: "raleway", Arial, Helvetica, sans-serif;
  font-weight: 200;
  font-size: 25px;
  margin: 22px auto;
  width: 700px;
}
@media screen and (max-width: 900px) {
  .section-3 h3 {
    width: 90%;
  }
}
.section-3 p {
  color: #A4C2DB;
  font-size: 17px;
  line-height: 1.7;
  text-align: center;
  width: 330px;
  margin: 0 auto;
  padding: 10px 0;
  font-weight: 400;
}
.section-3 p:first-child {
  border-bottom: 1px solid #3FA9F5;
}
.section-3 p.border-top {
  border-top: 1px solid #3FA9F5;
}

.key-points {
  /*max-width: 700px;*/
  display: none;
  width: 50%;
  height: 300px;
  margin: 200px 0 0 auto;
  position: relative;
}
@media screen and (max-width: 699px) {
  .key-points {
    display: block;
    margin: 0;
    height: auto;
    width: auto;
  }
}
.key-points li, .key-points .items {
  width: 300px;
  padding: 0;
  margin-left: 0;
  background-color: transparent;
  height: auto;
  font-size: 14px;
  line-height: 56px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "raleway", Arial, Helvetica, sans-serif;
  text-align: left;
  display: block;
  color: #008CCC;
  position: absolute;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  /*@include box-shadow;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.1s all ease-in-out;
  -moz-transition: 0.1s all ease-in-out;
  -ms-transition: 0.1s all ease-in-out;
  -o-transition: 0.1s all ease-in-out;
  transition: 0.1s all ease-in-out;
}
.key-points li:nth-child(1), .key-points .items:nth-child(1) {
  margin-left: 0;
  top: 20%;
  right: 20%;
}
.key-points li:nth-child(2), .key-points .items:nth-child(2) {
  margin-left: 0;
  top: 35%;
  right: 0%;
}
.key-points li:nth-child(3), .key-points .items:nth-child(3) {
  margin-left: 0;
  top: 50%;
  right: 30%;
}
.key-points li:nth-child(4), .key-points .items:nth-child(4) {
  margin-left: 0;
  top: 65%;
  right: 5%;
}
@media screen and (max-width: 699px) {
  .key-points li, .key-points .items {
    position: relative;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    margin-bottom: 10px;
  }
  .key-points li:last-child, .key-points .items:last-child {
    margin-bottom: 0;
  }
}
.key-points img {
  display: block;
  margin: 0 10px 0 0;
  padding: 5px;
  background: #fff;
  border-radius: 50%;
  float: left;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 16px 0px, rgba(0, 0, 0, 0.19) 0px 6px 20px 0px;
}
.key-points .kp-icon-1 {
  width: 46px;
  height: 46px;
}
.key-points .kp-icon-2 {
  width: 45px;
  height: 45px;
}
.key-points .kp-icon-3 {
  width: 43px;
  height: 43px;
}
.key-points .kp-icon-4 {
  width: 48px;
  height: auto;
  padding: 10px 5px;
}
.key-points span {
  display: block;
  padding-left: 10px;
  text-transform: lowercase;
}

/* section-4 */
.section-4 {
  padding: 50px 0 30px 0;
  background-color: #E5EDF2;
  /*
  figure {
  	overflow: hidden;
  	@include respond-to(phones-landscape) {
  		margin-left: -27px;
  		margin-right: -27px;
  		img {
  			width: 150%;
  			max-width: none;
  			margin-left: -25%;
  			margin-right: -25%;
  		}
  	}
  }
  */
}
.section-4 .wrapper {
  background-image: url("/images/diagram-bg.png");
  background-repeat: no-repeat;
  background-position: 90% 0;
  height: 514px;
}
@media screen and (max-width: 900px) {
  .section-4 .wrapper {
    background-image: none;
    height: auto;
  }
  .section-4 .wrapper .mobile-show {
    display: block;
  }
  .section-4 .wrapper .mobile-show figure {
    overflow: hidden;
    padding: 0 27px;
    width: 570px;
    text-align: center;
  }
  .section-4 .wrapper .mobile-show figure img {
    /*max-width: 100%;*/
    width: auto;
    max-width: none;
    margin: 0 27px;
    display: block;
  }
  .section-4 .wrapper .scrollable {
    overflow: auto;
    height: 400px;
    width: 100%;
    width: calc(100% + 54px);
    margin-left: -27px;
    margin-right: -27px;
    box-sizing: border-box;
  }
}
.section-4 .intro-side {
  width: 40%;
}
@media screen and (max-width: 900px) {
  .section-4 .intro-side {
    width: auto;
    max-width: 100%;
  }
}
.section-4 h4 {
  font-family: "raleway", Arial, Helvetica, sans-serif;
  font-weight: 100;
  font-size: 24px;
  font-weight: 200;
}
.section-4 p {
  font-size: 14px;
  color: #000;
  font-family: "Avenir W01", Arial, Helvetica, sans-serif;
  margin: 15px 0;
}
@media screen and (max-width: 1100px) {
  .section-4 p br {
    display: none;
  }
}

/* section-5 */
.section-5 {
  padding: 65px 0;
  background-color: #008CCC;
}
.section-5 .intro-side {
  width: 40%;
  margin-right: 10%;
}
.section-5 h4 {
  font-family: "raleway", Arial, Helvetica, sans-serif;
  font-weight: 100;
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
}
.section-5 p {
  color: #000;
  font-family: "Avenir W01", Arial, Helvetica, sans-serif;
  line-height: 1.7;
  font-size: 14px;
}
.section-5 .client-side {
  max-width: 480px;
  width: 50%;
  overflow: hidden;
}

@media screen and (max-width: 900px) {
  .section-5 .intro-side {
    float: none;
    margin-bottom: 50px;
    margin-right: 0;
    width: auto;
  }
  .section-5 .client-side {
    float: none;
    width: 100%;
    margin: 0 auto;
  }

  .carousel-wrapper {
    float: none;
  }

  .jcarousel-client-carousel {
    margin: 0;
  }
}
/* section-6 Senior Leadership */
.section-6 {
  padding: 60px 0;
  background: #dfecf4;
  background: url("/images/dots-and-lines-bg-4.svg") 100px 406px fixed no-repeat, url("/images/dots-and-lines-bg-3.svg") 90% 153px fixed no-repeat, -webkit-gradient(linear, left top, right top, color-stop(0%, #dfecf4), color-stop(100%, #eff0ef)) 0 0 no-repeat;
  background: url("/images/dots-and-lines-bg-4.svg") 100px 406px fixed no-repeat, url("/images/dots-and-lines-bg-3.svg") 90% 153px fixed no-repeat, -webkit-linear-gradient(left, #dfecf4 0%, #eff0ef 100%) 0 0 no-repeat;
  background: url("/images/dots-and-lines-bg-4.svg") 100px 406px fixed no-repeat, url("/images/dots-and-lines-bg-3.svg") 90% 153px fixed no-repeat, -moz-linear-gradient(left, #dfecf4 0%, #eff0ef 100%) 0 0 no-repeat;
  background: url("/images/dots-and-lines-bg-4.svg") 100px 406px fixed no-repeat, url("/images/dots-and-lines-bg-3.svg") 90% 153px fixed no-repeat, -o-linear-gradient(left, #dfecf4 0%, #eff0ef 100%);
  background: url("/images/dots-and-lines-bg-4.svg") 100px 406px fixed no-repeat, url("/images/dots-and-lines-bg-3.svg") 90% 153px fixed no-repeat, -ms-linear-gradient(left, #dfecf4 0%, #eff0ef 100%);
  background: url("/images/dots-and-lines-bg-4.svg") 100px 406px fixed no-repeat, url("/images/dots-and-lines-bg-3.svg") 90% 153px fixed no-repeat, linear-gradient(to right, #dfecf4 0%, #eff0ef 100%);
  -webkit-background-size: 120px 118px, 175px 221px, cover;
  -moz-background-size: 120px 118px, 175px 221px, cover;
  -o-background-size: 120px 118px, 175px 221px, cover;
  background-size: 120px 118px, 175px 221px, cover;
}
.no-svg .section-6 {
  background: url("/images/seniorstaff-bg.jpg") top left repeat-y;
  background-color: #E5EDF2;
}
@media screen and (max-width: 1100px) {
  .section-6 {
    background: #dfecf4;
    background: url("/images/dots-and-lines-bg-4.svg") 0px 406px fixed no-repeat, url("/images/dots-and-lines-bg-3.svg") 100% 153px fixed no-repeat, -webkit-gradient(linear, left top, right top, color-stop(0%, #dfecf4), color-stop(100%, #eff0ef)) 0 0 no-repeat;
    background: url("/images/dots-and-lines-bg-4.svg") 0px 406px fixed no-repeat, url("/images/dots-and-lines-bg-3.svg") 100% 153px fixed no-repeat, -webkit-linear-gradient(left, #dfecf4 0%, #eff0ef 100%) 0 0 no-repeat;
    background: url("/images/dots-and-lines-bg-4.svg") 0px 406px fixed no-repeat, url("/images/dots-and-lines-bg-3.svg") 100% 153px fixed no-repeat, -moz-linear-gradient(left, #dfecf4 0%, #eff0ef 100%) 0 0 no-repeat;
    background: url("/images/dots-and-lines-bg-4.svg") 0px 406px fixed no-repeat, url("/images/dots-and-lines-bg-3.svg") 100% 153px fixed no-repeat, -o-linear-gradient(left, #dfecf4 0%, #eff0ef 100%);
    background: url("/images/dots-and-lines-bg-4.svg") 0px 406px fixed no-repeat, url("/images/dots-and-lines-bg-3.svg") 100% 153px fixed no-repeat, -ms-linear-gradient(left, #dfecf4 0%, #eff0ef 100%);
    background: url("/images/dots-and-lines-bg-4.svg") 0px 406px fixed no-repeat, url("/images/dots-and-lines-bg-3.svg") 100% 153px fixed no-repeat, linear-gradient(to right, #dfecf4 0%, #eff0ef 100%);
    -webkit-background-size: 120px 118px, 175px 221px, cover;
    -moz-background-size: 120px 118px, 175px 221px, cover;
    -o-background-size: 120px 118px, 175px 221px, cover;
    background-size: 120px 118px, 175px 221px, cover;
  }
  .no-svg .section-6 {
    background: url("/images/seniorstaff-bg.jpg") top left repeat-y;
    background-color: #E5EDF2;
  }
}
.section-6 h1 {
  color: #008CCC;
}
.section-6 li {
  float: left;
  width: 33%;
  min-height: 280px;
  padding: 15px 0;
  margin-left: 0;
  font-size: 11px;
  font-weight: 200;
  font-family: "raleway", Arial, Helvetica, sans-serif;
  text-align: center;
  display: block;
  color: #008CCC;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: 0.25s all ease-in-out;
  -moz-transition: 0.25s all ease-in-out;
  -ms-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}
@media screen and (max-width: 900px) {
  .section-6 li {
    width: 23.45%;
    margin-left: 2%;
  }
}
.section-6 li:hover {
  background-color: #f6fafd;
}
.section-6 li:first-child {
  margin-left: 0;
}
.section-6 li figure {
  margin-bottom: 12px;
}
.section-6 li figure img {
  width: 132px;
  height: 132px;
  border: 20px solid #008CCC;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .section-6 li figure img {
    border-width: 15px;
  }
}
.section-6 li .name {
  font-family: "Avenir W01", Arial, Helvetica, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #008CCC;
}
@media screen and (max-width: 900px) {
  .section-6 li .name {
    font-size: 14px;
  }
}
.section-6 li .title {
  font-family: "Avenir W01", Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #000;
  margin-bottom: 12px;
}
.section-6 li .title + img {
  width: 22px;
  height: 22px;
  position: absolute;
  bottom: 15px;
  left: 50%;
  margin-left: -11px;
}
.section-6 .four-box-container {
  margin-top: 45px;
}

.four-box-container {
  max-width: 730px;
  margin: 0 auto;
}

/***************
Case Studies
***************/
.page-case-studies .intro-section {
  /*@include gradient;*/
  padding-top: 300px;
  padding-bottom: 0;
  height: 560px;
  background: #000000 url(/images/case-study-hero-desktop.jpg) center top 100px repeat-x;
  background-size: auto 460px;
  box-sizing: border-box;
}
.webp .page-case-studies .intro-section {
  background-image: url(/images/case-study-hero-desktop.webp);
}

.page-case-studies .intro-section .intro-side {
  float: none;
  width: 50%;
  margin: 0 0 0 auto;
  box-sizing: border-box;
}
.page-case-studies .intro-section .intro-side h1 {
  color: #fff;
  margin-bottom: 1em;
  font-weight: normal;
}
@media screen and (max-width: 1199px) {
  .page-case-studies .intro-section {
    padding-top: 190px;
    background-image: url(/images/case-study-hero-tablet.jpg);
    background-position: center top 60px;
    background-size: auto 400px;
    background-repeat: no-repeat;
    height: 460px;
  }
  .webp .page-case-studies .intro-section {
    background-image: url(/images/case-study-hero-tablet.webp);
  }
}
@media screen and (max-width: 699px) {
  .page-case-studies .intro-section {
    padding-top: 150px;
    padding-bottom: 25px;
    background-image: url(/images/case-study-hero-mobile.jpg);
    background-size: auto 210px;
    height: 270px;
  }
  .webp .page-case-studies .intro-section {
    background-image: url(/images/case-study-hero-mobile.webp);
  }

  .page-case-studies .intro-section .intro-side {
    float: none;
    width: 100%;
    margin: 0 0 0 0;
  }
  .page-case-studies .intro-section .intro-side h1 {
    margin-bottom: 0;
  }
}
.page-case-studies .filters {
  background: #fff;
}
.page-case-studies .filters ul {
  padding: 10px 0;
  margin: 20px 0 20px 0;
  clear: both;
  display: flex;
  flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  list-style: none;
  align-items: center;
  justify-content: start;
}
.page-case-studies .filters ul li {
  display: inline-block;
  padding: 0;
  margin: 0 1em 0 0;
  color: #31A4DD;
}
.page-case-studies .filters ul li a {
  display: block;
  color: #766E65;
  font-size: 1em;
  line-height: 1.2em;
}
.page-case-studies .filters ul li a.active {
  color: #31A4DD;
  border-bottom: 1px solid #31A4DD;
}
@media screen and (max-width: 550px) {
  .page-case-studies .filters ul {
    display: none;
  }
}
.page-case-studies .filters-mobile {
  display: none;
  background: #fff;
  position: relative;
  padding-top: 10px;
  padding-bottom: 30px;
}
@media screen and (max-width: 550px) {
  .page-case-studies .filters-mobile {
    display: block;
  }
}
.page-case-studies .filters-mobile .wrapper div {
  display: inline-block;
  color: #31A4DD;
  position: relative;
}
.page-case-studies .filters-mobile .wrapper div.active {
  width: 150px;
}
.page-case-studies .filters-mobile .wrapper div.active span {
  display: block;
  cursor: pointer;
  border-bottom: 1px solid #31A4DD;
}
.page-case-studies .filters-mobile .wrapper div.active span:after {
  display: inline;
  content: "▼";
  float: right;
}
.page-case-studies .filters-mobile .dropdown {
  display: block;
  background: #fff;
  position: absolute;
  left: 0px;
  top: 100%;
  bottom: 100%;
  width: 150px;
  overflow: hidden;
  z-index: 99;
  border: 1px solid transparent;
}
.page-case-studies .filters-mobile .dropdown.open {
  border: 1px solid #766E65;
  bottom: -10em;
}
.page-case-studies .filters-mobile .dropdown li {
  height: 2em;
  box-sizing: border-box;
  border-bottom: 1px solid #766E65;
}
.page-case-studies .filters-mobile .dropdown li a {
  background: #fff;
  box-sizing: border-box;
  display: block;
  line-height: 1em;
  white-space: nowrap;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
}
.page-case-studies .filters-mobile .dropdown li a:hover {
  background: #E2EFF7;
}
.page-case-studies .filters-mobile .dropdown li a.active {
  background: #A4C2DB;
}

#case-studies {
  background: #fff;
  padding-bottom: 60px;
}
#case-studies .flex {
  display: flex;
  flex: 1 0 33%;
  flex-wrap: wrap;
}
#case-studies .case-study {
  width: 33%;
  box-sizing: border-box;
  padding: 0 30px 30px 0;
}
#case-studies .case-study figure {
  width: 100%;
  margin-bottom: 0.5em;
  padding: 0;
  border: 7px solid #31A4DD;
  box-sizing: border-box;
}
#case-studies .case-study figure:after {
  content: "";
  display: table;
  clear: both;
}
#case-studies .case-study figure img {
  display: block;
  max-width: 100%;
}
#case-studies .case-study h2 {
  color: #8B6E4A;
  font-size: 10px;
  font-weight: 600;
  font-family: raleway;
  line-height: 1.5em;
}
#case-studies .case-study h3 {
  color: #31A4DD;
  font-size: 18px;
  font-family: raleway;
  font-weight: 400;
  line-height: 1.2em;
  margin-bottom: 20px;
}
#case-studies .case-study a {
  -webkit-transition: 0.25s all linear;
  -moz-transition: 0.25s all linear;
  -ms-transition: 0.25s all linear;
  -o-transition: 0.25s all linear;
  transition: 0.25s all linear;
  font-weight: 600;
  color: #D06F19;
}
#case-studies .case-study a:hover {
  text-decoration: underline;
}
#case-studies .case-study p {
  font-size: 12px;
  font-family: "Open Sans", "raleway", Arial, Helvetica, sans-serif;
  font-weight: 400;
}
#case-studies .case-study .more-text {
  display: inline;
}
@media screen and (max-width: 900px) {
  #case-studies .case-study {
    width: 50%;
  }
}
@media screen and (max-width: 550px) {
  #case-studies .case-study {
    width: 100%;
    padding: 0 0 30px 0;
  }
}

/*
.case-study {
	@include clearfix;
	padding: 40px 0 60px 0;
	.client {
		font-weight: 400;
	}
	.image-side {
		width: 367px;
		margin-right: 48px;
	}
	figure {
		padding: 5px;
		border: 1px solid $blue-light;
		float: left;
		@include clearfix;
		img {
			float: left;
		}
	}
	.text-side {
		width: 545px;
		margin-top: 95px;
		p {
			font-weight: 300; //used to be 200
			//overflow: hidden;
			//white-space: nowrap;
		}
	}
	a {
		@include transition;
		font-weight: 300; //used to be 200
		&:hover {
			text-decoration: underline;
		}
	}
	.more-text {
		display: inline;
	}
	@include respond-to(tablets-landscape) {
		.image-side {
			width: 38%;
			margin-right: 2%;
		}
		.text-side {
			width: 60%;
			margin-right: 0;
			&.first {
				margin-top: 96px;
			}
		}
	}
	@include respond-to(tablets-portrait) {
		.text-side,
		.image-side {
			float: none;
			width: auto;
			clear: both;
		}
		.text-side {
			margin-top: 20px;
			&.first {
				margin-top: 20px;
			}
		}
	}
}
*/
.show-more-less {
  color: #D9E021;
}
.style-white .show-more-less {
  color: #31A4DD;
}

.style-blue, .mobile .section-2, .mobile .section-4 {
  background: #0072AE;
}
.page-services .style-blue, .page-services .mobile .section-2, .mobile .page-services .section-2, .page-services .mobile .section-4, .mobile .page-services .section-4, .page-case-studies .style-blue, .page-case-studies .mobile .section-2, .mobile .page-case-studies .section-2, .page-case-studies .mobile .section-4, .mobile .page-case-studies .section-4 {
  background: #0072AE url("/images/connections-bg.png") right -80px top 200px no-repeat fixed;
}
@media screen and (max-width: 1300px) {
  .page-services .style-blue, .page-services .mobile .section-2, .mobile .page-services .section-2, .page-services .mobile .section-4, .mobile .page-services .section-4, .page-case-studies .style-blue, .page-case-studies .mobile .section-2, .mobile .page-case-studies .section-2, .page-case-studies .mobile .section-4, .mobile .page-case-studies .section-4 {
    background-position: right -280px top -63px;
  }
}
@media screen and (max-width: 1100px) {
  .page-services .style-blue, .page-services .mobile .section-2, .mobile .page-services .section-2, .page-services .mobile .section-4, .mobile .page-services .section-4, .page-case-studies .style-blue, .page-case-studies .mobile .section-2, .mobile .page-case-studies .section-2, .page-case-studies .mobile .section-4, .mobile .page-case-studies .section-4 {
    background-position: right -370px top -63px;
  }
}
@media screen and (max-width: 900px) {
  .page-services .style-blue, .page-services .mobile .section-2, .mobile .page-services .section-2, .page-services .mobile .section-4, .mobile .page-services .section-4, .page-case-studies .style-blue, .page-case-studies .mobile .section-2, .mobile .page-case-studies .section-2, .page-case-studies .mobile .section-4, .mobile .page-case-studies .section-4 {
    background-position: right -270px top 163px;
  }
}
.style-blue .page-company, .mobile .section-2 .page-company, .mobile .section-4 .page-company {
  background: #0072AE;
}
.page-careers .style-blue, .page-careers .mobile .section-2, .page-contact .mobile .section-2, .mobile .page-careers .section-2, .mobile .page-contact .section-2, .page-careers .mobile .section-4, .page-contact .mobile .section-4, .mobile .page-careers .section-4, .mobile .page-contact .section-4, .page-contact .style-blue {
  background: #008CCC;
}
.style-blue h1, .mobile .section-2 h1, .mobile .section-4 h1, .style-blue p, .mobile .section-2 p, .mobile .section-4 p {
  color: #fff;
}
.page-company .style-blue p, .page-company .mobile .section-2 p, .mobile .page-company .section-2 p, .page-company .mobile .section-4 p, .mobile .page-company .section-4 p, .page-careers .style-blue p, .page-careers .mobile .section-2 p, .page-contact .mobile .section-2 p, .mobile .page-careers .section-2 p, .mobile .page-contact .section-2 p, .page-careers .mobile .section-4 p, .page-contact .mobile .section-4 p, .mobile .page-careers .section-4 p, .mobile .page-contact .section-4 p, .page-contact .style-blue p, .page-company .style-blue li, .page-company .mobile .section-2 li, .mobile .page-company .section-2 li, .page-company .mobile .section-4 li, .mobile .page-company .section-4 li, .page-careers .style-blue li, .page-careers .mobile .section-2 li, .page-contact .mobile .section-2 li, .mobile .page-careers .section-2 li, .mobile .page-contact .section-2 li, .page-careers .mobile .section-4 li, .page-contact .mobile .section-4 li, .mobile .page-careers .section-4 li, .mobile .page-contact .section-4 li, .page-contact .style-blue li {
  color: #000;
}

.style-brown {
  background-color: #231F20;
}
.style-brown h1 {
  color: #fff;
}
.style-brown p {
  color: #fff;
}

.style-white {
  background-color: #fff;
}
.style-white h2 {
  color: #D06F19;
}
.style-white p {
  color: #000;
}
.style-white .button {
  color: #fff;
}

.style-gray {
  background-color: #4D4D4D;
  color: #fff;
}

/***************
Services
***************/
.page-services {
  background: #E2EFF7 url("/images/hero-services.jpg") no-repeat fixed top right;
}
@media screen and (max-width: 1100px) {
  .page-services {
    background-position: 400px 0;
  }
}
.page-services .intro-section p {
  min-height: 115px;
}
@media screen and (max-width: 900px) {
  .page-services .intro-section {
    background: #E2EFF7 url("/images/hero-services.jpg") no-repeat fixed top right;
    background-size: auto 250px;
  }
  .page-services .intro-section .intro-side {
    width: 50%;
    max-width: 300px;
    padding-right: 0;
  }
}
@media screen and (max-width: 900px) and (max-width: 900px) {
  .page-services .intro-section .intro-side {
    padding-top: 0;
  }
}
@media screen and (max-width: 550px) {
  .page-services .intro-section {
    background-position: top left;
  }
}

.section-services {
  padding: 40px 0 160px 0;
}
@media screen and (max-width: 900px) {
  .section-services {
    padding-bottom: 0;
  }
}

.service {
  float: left;
  width: 30%;
  margin-left: 5%;
}
.service:first-child {
  margin-left: 0%;
}
@media screen and (max-width: 900px) {
  .service {
    width: 100%;
    float: none;
  }
  .page-services .service {
    float: none;
    margin-left: 0;
    width: auto;
    margin-bottom: 100px;
  }
}
.service p {
  color: #fff;
  font-size: 17px;
  font-family: "raleway", Arial, Helvetica, sans-serif;
  font-weight: 400;
  text-align: center;
  margin-bottom: 15px;
}
.page-company .service p {
  color: #fff;
}
.service h3 {
  color: #fff;
  font-size: 25px;
  line-height: 1;
  font-family: "raleway", Arial, Helvetica, sans-serif;
  font-weight: 200;
  text-align: center;
  border-top: 1px solid #3FA9F5;
  border-bottom: 1px solid #3FA9F5;
  padding: 20px 0;
  margin-bottom: 15px;
}
@media screen and (max-width: 900px) {
  .page-services .service h3 {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}
.service li {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 200;
  text-align: center;
}
/* Icon for portfolio dropdown on mobile */
@media screen and (max-width: 699px) {
  .icon-up {
    position: relative;
    margin-left: 0px;
    cursor: pointer;
  }

  .icon-up::before {
    content: "➔︎";
    display: block;
    top: 0;
    position: absolute;
    transition: transform 0.7s ease;
    transform: rotate(0);
    left: 100%;
    margin-left: 10px;
    font-family: sans-serif;
  }

  .rotate.icon-up::before {
    transform: rotate(90deg);
    cursor: pointer;
  }
}
.our-approach {
  background: #E2EFF7 url("/images/approach-bg.jpg") top center no-repeat fixed;
  /*@media only screen and (max-device-width: 1024px) {
  	background: $cream;
  }*/
  min-height: 590px;
  padding: 45px 0 0 0;
}
.our-approach li {
  float: left;
  width: 22%;
  margin-left: 4%;
  background-color: #008CCC;
  height: 132px;
  font-size: 14px;
  font-weight: 200;
  position: relative;
  text-align: center;
  display: block;
  text-transform: uppercase;
  color: #fff;
  line-height: 132px;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: 0.25s all linear;
  -moz-transition: 0.25s all linear;
  -ms-transition: 0.25s all linear;
  -o-transition: 0.25s all linear;
  transition: 0.25s all linear;
}
@media screen and (max-width: 900px) {
  .our-approach li {
    width: 49%;
    margin-left: 2%;
    margin-bottom: 5px;
  }
  .our-approach li:nth-child(3) {
    margin-left: 0;
  }
  .our-approach li .circle {
    bottom: 0;
  }
  .our-approach li.active {
    background-color: #00afff;
  }
}
.our-approach li:first-child {
  margin-left: 0;
}
.our-approach li:hover {
  background-color: #00afff;
}
.our-approach li:hover .circle {
  background-color: rgba(255, 255, 255, 0.75);
}
.our-approach li .circle {
  display: none;
  position: absolute;
  left: 30%;
  right: 30%;
  bottom: -5px;
  height: 24px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50px 50px 0 0;
}
.our-approach li.active .circle {
  display: block;
}

.our-approach-container {
  max-width: 600px;
  margin: 35px auto 0 auto;
}
@media screen and (max-width: 550px) {
  .our-approach-container {
    width: auto;
  }
}

.approach-details {
  margin-top: 5px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.92);
  padding: 30px;
}
@media screen and (max-width: 550px) {
  .approach-details {
    padding: 20px;
  }
}
.approach-details h3 {
  color: #0072AE;
  text-transform: uppercase;
  font-size: 17px;
  line-height: 2;
}
@media screen and (max-width: 550px) {
  .approach-details h3 {
    line-height: 1.2;
  }
}
.approach-details p {
  line-height: 1.6;
  font-size: 14px;
  font-weight: 300;
}

/***************
Company
***************/
.page-company .intro-section {
  background: url("/images/dots-and-lines-bg-7.svg") center 181px no-repeat fixed;
  -webkit-background-size: 1912px 761px;
  -moz-background-size: 1912px 761px;
  -o-background-size: 1912px 761px;
  background-size: 1912px 761px;
  background-color: #E5EDF2;
}
.no-svg .page-company .intro-section {
  background: url("/images/dots-and-lines-bg-7.png") center 181px no-repeat fixed;
  -webkit-background-size: 1912px 761px;
  -moz-background-size: 1912px 761px;
  -o-background-size: 1912px 761px;
  background-size: 1912px 761px;
  background-color: #E5EDF2;
}
.page-company .intro-section h1 {
  width: auto;
  margin-bottom: 30px;
}
.page-company .intro-section p {
  color: #4D4D4D;
  font-family: "raleway", Arial, Helvetica, sans-serif;
  font-weight: 300;
  margin-bottom: 20px;
  width: 445px;
}
@media screen and (max-width: 1100px) {
  .page-company .intro-section p {
    width: auto;
  }
}
.page-company .intro-section p:last-child {
  margin-bottom: 0;
}
.page-company .intro-side {
  width: 55%;
}
@media screen and (max-width: 900px) {
  .page-company .intro-side {
    width: 100%;
  }
}
.page-company .section-6 {
  position: relative;
  z-index: 2;
}
.page-company .service {
  height: 100%;
  margin-bottom: 30px;
  width: 48%;
  margin-left: 4%;
}
.page-company .service.no-margin {
  margin-left: 0;
}
.page-company .service h3, .page-company .service p {
  text-align: left;
  padding-left: 26px;
  padding-right: 32px;
}
.page-company .service p {
  font-family: "Avenir W01", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 200;
  color: #fff;
}
.page-company .service p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 900px) {
  .page-company .service {
    height: auto;
    width: 100%;
    margin-left: 0;
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 900px) {
  .page-company .service:last-child {
    margin-bottom: 0;
  }
}

.list-side {
  width: auto;
  margin-top: 130px;
}
@media screen and (max-width: 900px) {
  .list-side {
    margin-top: 2em;
  }
}
.list-side li {
  font-size: 17px;
  color: #0072AE;
  font-weight: 200;
  margin-bottom: 10px;
  list-style-type: disc;
  width: 221px;
}
ul.list-side {
  padding-left: 2em;
}

.section-company-services {
  position: relative;
  z-index: 2;
  padding: 80px 0 80px 0;
}
.section-company-services.style-blue, .mobile .section-company-services.section-2, .mobile .section-company-services.section-4 {
  background-image: none;
}
@media screen and (max-width: 900px) {
  .section-company-services {
    padding: 2em 0 2em 0;
  }
}

/***************
Careers
***************/
.page-careers .intro-section, .page-contact .intro-section {
  background: #dfecf4;
  background: url("/images/dots-and-lines-bg-7.svg") center 181px fixed no-repeat, url("../../images/dots-and-lines-bg-1.svg") 12000px 283px fixed no-repeat, -webkit-gradient(linear, left top, right top, color-stop(0%, #dfecf4), color-stop(100%, #eff0ef)) 0 0 no-repeat;
  background: url("/images/dots-and-lines-bg-7.svg") center 181px fixed no-repeat, url("../../images/dots-and-lines-bg-1.svg") 12000px 283px fixed no-repeat, -webkit-linear-gradient(left, #dfecf4 0%, #eff0ef 100%) 0 0 no-repeat;
  background: url("/images/dots-and-lines-bg-7.svg") center 181px fixed no-repeat, url("../../images/dots-and-lines-bg-1.svg") 12000px 283px fixed no-repeat, -moz-linear-gradient(left, #dfecf4 0%, #eff0ef 100%) 0 0 no-repeat;
  background: url("/images/dots-and-lines-bg-7.svg") center 181px fixed no-repeat, url("../../images/dots-and-lines-bg-1.svg") 12000px 283px fixed no-repeat, -o-linear-gradient(left, #dfecf4 0%, #eff0ef 100%);
  background: url("/images/dots-and-lines-bg-7.svg") center 181px fixed no-repeat, url("../../images/dots-and-lines-bg-1.svg") 12000px 283px fixed no-repeat, -ms-linear-gradient(left, #dfecf4 0%, #eff0ef 100%);
  background: url("/images/dots-and-lines-bg-7.svg") center 181px fixed no-repeat, url("../../images/dots-and-lines-bg-1.svg") 12000px 283px fixed no-repeat, linear-gradient(to right, #dfecf4 0%, #eff0ef 100%);
  -webkit-background-size: 2100px 900px, 501px 543px, cover;
  -moz-background-size: 2100px 900px, 501px 543px, cover;
  -o-background-size: 2100px 900px, 501px 543px, cover;
  background-size: 2100px 900px, 501px 543px, cover;
}
.no-svg .page-careers .intro-section, .no-svg .page-contact .intro-section {
  background: url("/images/dots-and-lines-bg-7.png") center 181px no-repeat fixed;
  -webkit-background-size: 2100px 900px;
  -moz-background-size: 2100px 900px;
  -o-background-size: 2100px 900px;
  background-size: 2100px 900px;
  background-color: #E5EDF2;
}
.page-careers .intro-section h1, .page-contact .intro-section h1 {
  margin-bottom: 30px;
}
.page-careers .intro-section p, .page-contact .intro-section p {
  color: #4D4D4D;
  font-family: "raleway", Arial, Helvetica, sans-serif;
  font-weight: 300;
  margin-bottom: 20px;
  width: 445px;
}
@media screen and (max-width: 1100px) {
  .page-careers .intro-section p, .page-contact .intro-section p {
    width: auto;
  }
}
.page-careers .intro-section p:last-child, .page-contact .intro-section p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 900px) {
  .page-careers .intro-section, .page-contact .intro-section {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}
.page-careers .intro-side h1, .page-contact .intro-side h1 {
  width: auto;
}
.page-careers .intro-side p, .page-contact .intro-side p {
  width: 495px;
}
@media screen and (max-width: 900px) {
  .page-careers .intro-side p, .page-contact .intro-side p {
    width: auto;
  }
}
@media screen and (max-width: 900px) {
  .page-careers .intro-side, .page-contact .intro-side {
    width: auto;
    float: none;
  }
}
.page-careers .resume-side, .page-contact .resume-side {
  width: 295px;
  margin-top: 100px;
  margin-left: 50px;
}
@media screen and (max-width: 900px) {
  .page-careers .resume-side, .page-contact .resume-side {
    margin-left: 0;
    margin-top: 2em;
    position: relative;
    float: none;
    bottom: auto;
    right: auto;
  }
}
.page-careers .resume-side p, .page-contact .resume-side p {
  width: auto;
  color: #0072AE;
  font-family: "Avenir W01", Arial, Helvetica, sans-serif;
  font-weight: 200;
  font-size: 16px;
}
.page-careers article p a, .page-contact article p a {
  color: #fff;
}
.page-careers article p a:hover, .page-contact article p a:hover {
  text-decoration: underline;
}

/***************
Contact
***************/
.page-contact .intro-side {
  width: 55%;
}
@media screen and (max-width: 900px) {
  .page-contact .intro-side {
    width: auto;
    margin-bottom: 70px;
  }
}
.page-contact .seeker-side {
  margin-top: 140px;
  margin-left: 30px;
}
@media screen and (max-width: 1100px) {
  .page-contact .seeker-side {
    margin-left: 30px;
  }
}
@media screen and (max-width: 900px) {
  .page-contact .seeker-side {
    float: none;
    margin: 0 auto;
    width: 330px;
    max-width: 100%;
    clear: both;
  }
}
.page-contact .project-seeker {
  background-color: #31A4DD;
  position: relative;
  padding: 20px 40px;
  width: 330px;
  max-width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .page-contact .project-seeker {
    max-width: calc(100% - 50px);
    padding: 20px;
    margin-left: 50px;
  }
  .page-contact .project-seeker p br {
    display: none;
  }
}
.page-contact .project-seeker p {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: "Avenir Next W01", "Avenir W01", Arial, Helvetica, sans-serif;
  font-weight: 200;
  font-size: 18px;
  width: auto;
}
.page-contact .project-seeker a {
  color: #D9E021;
  font-family: "Avenir W01", Arial, Helvetica, sans-serif;
  font-weight: 300;
}
.page-contact .project-seeker a:hover {
  text-decoration: underline;
}
.page-contact .project-seeker img {
  position: absolute;
  top: -45px;
  left: -45px;
  width: 90px;
  height: 90px;
}

.contact-form {
  width: 424px;
  max-width: 100%;
}
.contact-form label {
  width: 100px;
  font-family: "Avenir Next W01", "Avenir W01", Arial, Helvetica, sans-serif;
  font-weight: 100;
  font-size: 18px;
  line-height: 36px;
  color: #0072AE;
  float: left;
}
.contact-form input[type=submit] {
  float: right;
  width: 100px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
textarea {
  border: none;
  background: #fff;
  width: 302px;
  max-width: 100%;
  box-sizing: border-box;
  height: 34px;
  margin-bottom: 10px;
  padding: 0 10px;
  font-family: "raleway", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  border: 1px solid #fff;
}

textarea {
  height: 93px;
  padding: 10px;
}

input[type=submit] {
  border: 0;
  cursor: pointer;
  font-size: 16px;
  font-family: "Avenir W01", Arial, Helvetica, sans-serif;
}

.block-white {
  padding: 20px 35px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  color: #0072AE;
  font-family: "Avenir W01", Arial, Helvetica, sans-serif;
  font-weight: 200;
  font-size: 18px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.block-white h2 a {
  color: #0072AE;
}
.block-white h2, .block-white .phone-number {
  font-size: 18px;
  font-family: "Avenir Next W01", "Avenir W01", Arial, Helvetica, sans-serif;
  font-weight: 200;
}
.intro-section .block-white .phone-number {
  color: #D06F19;
}
.page-contact .block-white {
  width: 200px;
  margin-bottom: 40px;
}

.block-white + .block-white {
  margin-left: 35px;
}

.current-openings li {
  margin-bottom: 10px;
}
.current-openings a {
  color: #0072AE;
  font-size: 18px;
  font-family: "Avenir W01", Arial, Helvetica, sans-serif;
  font-weight: 300;
}

.content-block {
  padding: 65px 0;
  position: relative;
}
.content-block h1 {
  font-size: 25px;
  border-bottom: 1px solid #3FA9F5;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #fff;
}
.content-block .flex {
  display: flex;
  flex-direction: row;
}
.content-block .flex p {
  width: 80%;
  width: calc(100% - 436px);
  color: #FFFFFF;
}
@media screen and (max-width: 1100px) {
  .content-block .flex {
    flex-direction: column;
  }
  .content-block .flex p {
    width: 100%;
  }
}
.content-block figure {
  margin-top: 0px;
  margin-left: 0px;
  margin-bottom: 50px;
  width: 267px;
  height: 238px;
}
.page-contact .content-block figure {
  width: 436px;
  height: 278px;
  order: 4;
}
@media screen and (max-width: 1100px) {
  .page-contact .content-block figure {
    float: none;
    margin: 0 0 0 0;
    order: 3;
    max-width: 100%;
  }
}
.content-block h2 {
  margin: 45px 0 10px 0;
  font-family: "Avenir W01", Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
}
.content-block li, .content-block p {
  font-family: "Avenir W01", Arial, Helvetica, sans-serif;
  font-weight: 200;
  font-size: 16px;
  margin-bottom: 15px;
}
.content-block li {
  color: #fff;
  margin-bottom: 8px;
  margin-left: 20px;
}

.taggy {
  font-family: "raleway", Arial, Helvetica, sans-serif;
  font-weight: 200;
  font-size: 14px;
  background-color: #0096D6;
  padding: 5px 10px;
  position: absolute;
  top: 0;
  color: #fff !important;
}
.style-gray .taggy {
  background-color: #676767;
}

/***************
404 page
***************/
.page-404 header {
  margin-top: 0;
}

.section-404 {
  padding: 250px 0;
  margin: 0;
}
.section-404 h1 {
  font-size: 36px;
  margin-bottom: 30px;
}
.section-404 p {
  color: #fff !important;
  font-size: 20px;
}

/***************
Footer
***************/
footer {
  background-color: #E2EFF7;
  padding: 25px 0;
  font-size: 14px;
  line-height: 1.7;
  position: relative;
  overflow: visible;
}
footer ul {
  float: left;
  margin: 0 56px 50px 0;
}
@media screen and (max-width: 550px) {
  footer ul:first-child {
    margin-bottom: 20px;
  }
}
footer ul:last-child {
  margin-right: 0;
}
footer .list-heading {
  text-transform: uppercase;
  color: #31A4DD;
  margin-bottom: 30px;
  font-size: 15px;
  font-weight: 300;
}
@media screen and (max-width: 550px) {
  footer .list-heading.mnpls {
    display: none;
  }
}
footer li, footer p {
  color: #4D4D4D;
}
footer .office-location {
  color: #000;
}
footer a {
  color: #D06F19;
  font-weight: 300;
}
footer a:hover {
  text-decoration: underline;
}
footer .connect-clients {
  position: relative;
  z-index: 11;
}
footer .legal-copy {
  text-align: right;
  font-size: 10px;
  color: #4D4D4D;
  margin-right: -100px;
}
@media screen and (max-width: 1100px) {
  footer .legal-copy {
    margin-right: 0;
  }
}
@media screen and (max-width: 550px) {
  footer figure,
footer .legal-copy {
    text-align: center;
    margin-bottom: 20px;
  }
}
footer figure {
  width: 25%;
  min-width: 112px;
  height: auto;
}
footer figure img {
  display: block;
}

.section-legal {
  background-color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  z-index: 9;
}
.section-legal .legal-copy {
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  color: #000;
}

.overlay-footer {
  width: 548px;
  /*height: 366px;*/
  position: absolute;
  top: 0;
  bottom: -37px;
  right: 0;
  background: url("/images/dots-and-lines-bg-2.svg") 0 0 no-repeat;
  -webkit-background-size: 548px 366px;
  -moz-background-size: 548px 366px;
  -o-background-size: 548px 366px;
  background-size: 548px 366px;
  background-position: left 5px bottom 0;
  z-index: 10;
}
.no-svg .overlay-footer {
  background: url("/images/dots-and-lines-bg-2.png") 0 0 no-repeat;
}
@media screen and (max-width: 900px) {
  .overlay-footer {
    left: 40%;
    width: 60%;
    right: auto;
  }
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  font-weight: 300;
  color: #0072AE;
  padding: 10px 20px;
  border: 1px solid #fff;
  background-color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: 0.25s all linear;
  -moz-transition: 0.25s all linear;
  -ms-transition: 0.25s all linear;
  -o-transition: 0.25s all linear;
  transition: 0.25s all linear;
}
.back-to-top:hover {
  text-decoration: none;
  background-color: #0072AE;
  color: #fff;
}

/***************
HiDPI Image Replacement CSS
***************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-resolution: 240dpi) {
  .menu-close-button {
    background-image: url("../images/buttons@2x.png");
  }

  .connections-overlay {
    /*background: url('/images/connections-overlay@2x.png') no-repeat 50% 0;
    @include background-size($a:570px, $b:674px);*/
    width: 100%;
    height: 754px;
    position: absolute;
    top: 640px;
    pointer-events: none;
    left: 0;
    right: 0;
    z-index: 100;
    background: url("/images/connections-overlay.png") no-repeat center top;
    background-image: url("/images/marketing-edge-group-connection-bubble-graphic-desktop.svg");
    -webkit-background-size: 770px 754px;
    -moz-background-size: 770px 754px;
    -o-background-size: 770px 754px;
    background-size: 800px 754px;
  }
  .connections-overlay .gear {
    margin: 25px 0 0 378px;
    width: 20px;
  }

  .section-2 {
    height: 450px;
  }

  .section-4 .wrapper {
    background-image: url("/images/diagram-bg@2x.png");
    -webkit-background-size: 675px 513px;
    -moz-background-size: 675px 513px;
    -o-background-size: 675px 513px;
    background-size: 675px 513px;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-resolution: 240dpi) {
  .connections-overlay {
    width: 100%;
    /*min-width: 709px;*/
    height: 754px;
    position: absolute;
    top: 640px;
    pointer-events: none;
    left: 0;
    right: 0;
    z-index: 100;
    background: url("/images/connections-overlay.png") no-repeat center top;
    background-image: url("/images/marketing-edge-group-connection-bubble-graphic-desktop.svg");
    -webkit-background-size: 700px 754px;
    -moz-background-size: 700px 754px;
    -o-background-size: 700px 754px;
    background-size: 700px 754px;
  }

  .connections-overlay .left {
    width: 353px;
  }

  .connections-overlay .gear {
    margin: 17px 0 0 378px;
    width: 20px;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2.5), only screen and (min--moz-device-pixel-ratio: 2.5), only screen and (min-resolution: 300dpi) {
  .connections-overlay {
    width: 100%;
    /*min-width: 709px;*/
    height: 754px;
    position: absolute;
    top: 640px;
    pointer-events: none;
    left: 0;
    right: 0;
    z-index: 100;
    background: url("/images/connections-overlay.png") no-repeat center top;
    background-image: url("/images/marketing-edge-group-connection-bubble-graphic-desktop.svg");
    -webkit-background-size: 700px 754px;
    -moz-background-size: 700px 754px;
    -o-background-size: 700px 754px;
    background-size: 700px 754px;
  }

  .connections-overlay .gear {
    margin: 17px 0 0 378px;
    width: 20px;
  }
}
/***************
IE 9/10 svg fix
***************/
@media screen and (min-width: 0\0 ) {
  .section-2 {
    background: #E2EFF7 url("/images/connections-small-bg.png") no-repeat 6% 300px fixed;
    -webkit-background-size: 207px 263px;
    -moz-background-size: 207px 263px;
    -o-background-size: 207px 263px;
    background-size: 207px 263px;
  }

  .section-4 {
    background: url("/images/dots-and-lines-bg-1.png") -252px 150px fixed no-repeat, url("/images/dots-and-lines-bg-1.png") 130% 283px fixed no-repeat;
    background-color: #E5EDF2;
  }
  .no-svg .section-4 {
    background: url("/images/dots-and-lines-bg-1.png") -252px 150px fixed no-repeat;
    background-color: #E5EDF2;
  }

  .section-6 {
    padding: 60px 0;
    background: url("/images/dots-and-lines-bg-4.png") 100px 406px fixed no-repeat, url("/images/dots-and-lines-bg-3.png") 90% 153px fixed no-repeat, url("/images/seniorstaff-bg.jpg") top left repeat-y;
  }
  .no-svg .section-6 {
    background: url("/images/seniorstaff-bg.jpg") top left repeat-y;
    background-color: #E5EDF2;
  }
}
/***************
older browsers
***************/
.older-browser {
  position: fixed;
  min-width: 320px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding: 20px;
  background-color: #4D4D4D;
  border-top: 1px solid #fff;
}
.older-browser p {
  font-size: 14px;
  font-family: "Avenir W01", Arial, Helvetica, sans-serif;
  color: #fff;
}
.older-browser .close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
}
.older-browser .button {
  margin-left: 20px;
  padding: 10px;
}

@media screen and (max-width: 900px) {
  .section-4 .wrapper {
    background-image: none !important;
  }
}
@media screen and (max-width: 550px) {
  .section-4 figure img {
    margin: auto;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
  }
}
.mobile-show768 {
  display: none;
}

@media screen and (max-width: 699px) {
  .mobile-show768 {
    display: block;
  }

  .mobile-hide768 {
    display: none;
  }

  .connections-overlay .gear {
    margin: 17px 0 0 453px;
    width: 20px;
  }
}

/*# sourceMappingURL=style.css.map */

button.p-prev:hover,
button.p-next:hover {
    color: #4d4d4d;
    border-bottom: 1px solid #4d4d4d;
}
button.p-prev,
button.p-next {
    background: none;
    color: #0072ae;
    font-size: 12px;
    text-transform: capitalize;
    cursor: pointer;
    transition: all .4s;
    padding: 0;
    line-height: 20px;
    margin: 0 5px;
    border-bottom: 1px solid #fff;
	position: absolute;
	bottom:20px;
}

.pControls {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.pControls .pPrev,
.pControls .pNext {
  background: none;
  color: #0072AE;
  font-size: .9rem;
  font-weight: bold;
  text-transform: uppercase;
}
.panels .panel:nth-of-type(1) .pPrev {
	pointer-events: none;
	opacity: .2;
}
.panels .panel:nth-last-of-type(1) .pNext {
	pointer-events: none;
	opacity: .2;
}

.pControls .pPipe {
  font-size: 1.25rem;
  color: #0072AE;
  font-weight: bold;
  display: inline-block;
}

@media (max-width: 699px){
  .pControls {
    display: none!important;
  }
}