html {
  overflow-x: hidden;
  height: 100%;
  margin: 0px !important;
  padding: 0px;
}

html .noscroll {
  overflow: hidden !important;
}

html body {
  /* Testing 3 */
  height: 100%;
  margin: 0px;
  padding: 0px;
  background-color: #F8F8F9;
  font: 500 18px/30px "Montserrat";
}

html body .main-wrapper {
  display: block;
  margin: 0px;
  padding: 0px;
  border: 0px;
  clear: both;
  position: relative;
  min-height: 1px;
}

html body .sticky-navfix {
  margin-top: 60px;
}

html body .container {
  margin: 0px auto;
  padding: 0px;
}

@media screen and (max-width: 992px) {
  html body .container {
    padding: 0px 20px;
  }
}

html body .container .row {
  display: block;
  width: 100%;
  margin: 0px;
  padding: 0px;
}

@media screen and (max-width: 768px) {
  .hide-for-mobile {
    display: none !important;
  }
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.noflow {
  overflow: hidden;
}

.fill {
  width: 100% !important;
}

.btn {
  display: inline-block;
  letter-spacing: 0px !important;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1.4px solid #F5EB31;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  padding: 15px 20px;
  background-color: #F5EB31;
  color: #2E2E2E;
  font: 700 16px/1em "Montserrat";
  align-self: flex-start;
}

.btn:hover {
  border: 1.4px solid #2E2E2E;
  background-color: #2E2E2E;
  color: #fff;
}

.cta {
  font: 500 18px/1em "Montserrat";
}

.divider-wrap {
  display: none !important;
}

.divider-wrap .divider {
  display: none !important;
}

h1, h2, h3, h4, h5, h6, b, a, span, li, strong, i, .btn, svg, path {
  color: #2E2E2E;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}

h1 {
  font: 700 40px/50px "Montserrat";
  font-weight: 700;
}

h3 {
  font: 500 13px/1em "Montserrat";
  text-transform: uppercase;
}

img {
  max-width: 100%;
}

p {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}

p span {
  display: inline;
}

strong {
  margin: 0;
  padding: 0;
  border: 0;
}

.glyphicon, .fa {
  color: #FFFFFF;
  font-size: 32px;
}

::-webkit-scrollbar {
  display: none !important;
}

.slick-dotted {
  padding-bottom: 50px;
}

.slick-dots {
  height: 10px;
  position: absolute;
  bottom: 20px;
  left: 0;
  padding: 0 0;
}

.slick-dots li {
  display: inline-block;
  height: 15px;
  margin: 0 5px;
  overflow: hidden;
}

.slick-dots li button {
  display: block;
  width: 10px;
  height: 10px;
  border: 0px solid;
  border-radius: 50%;
  cursor: pointer;
  background-color: #000;
  outline: none;
  text-indent: -100em;
  padding: 0 0;
}

.slick-dots li button:hover {
  background-color: #F5EB31;
}

.slick-dots li.slick-active button {
  background-color: #F5EB31;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animatedNav {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
}

.animatedModal {
  display: flex;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes increaseBar {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

@-webkit-keyframes increaseBar {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.increaseBar {
  animation-name: increaseBar;
  -webkit-animation-name: increaseBar;
}

@keyframes increaseBarV {
  from {
    height: 0%;
  }
  to {
    height: 100%;
  }
}

@-webkit-keyframes increaseBarV {
  from {
    height: 0%;
  }
  to {
    height: 100%;
  }
}

.increaseBarV {
  animation-name: increaseBarV;
  -webkit-animation-name: increaseBarV;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes slideInDown {
  0% {
    visibility: hidden;
    transform: translate3d(0, -300%, 0);
  }
  100% {
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInUp {
  from {
    visibility: hidden;
    transform: translate3d(0, 300%, 0);
  }
  to {
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideTitleInRight {
  from {
    right: -300px;
  }
  to {
    right: -18px;
  }
}

.slideTitleInRight {
  animation-name: slideTitleInRight;
}

@keyframes slideTitleInLeft {
  from {
    left: -300px;
  }
  to {
    left: -2px;
  }
}

.slideTitleInLeft {
  animation-name: slideTitleInLeft;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes rubberBandZoom {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    opacity: 1;
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBandZoom {
  animation-name: rubberBandZoom;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes navBarFlux {
  0% {
    width: 100%;
  }
  50% {
    width: 10%;
  }
  100% {
    width: 100%;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  99.9% {
    opacity: 1;
  }
  100% {
    display: flex;
    opacity: 1;
  }
}

.fadeIn {
  display: flex !important;
  animation-name: fadeIn;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none !important;
  }
}

.fadeOut {
  display: flex !important;
  animation-name: fadeOut;
}

.navBarFlux {
  animation-name: navBarFlux;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.navigation-section {
  display: block;
  width: 100%;
  height: 60px;
  background: #F5EB31;
  margin: 0;
  padding: 0px 20px;
  overflow: hidden;
  z-index: 9;
  font: 500 14px/1em "Montserrat";
  -moz-box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
}

@media screen and (max-width: 768px) {
  .navigation-section {
    padding: 0px 15px;
  }
}

.navigation-section .navigation-section-inner {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0px;
  padding: 4px 0 0 0;
}

.navigation-section .navigation-section-inner .progress-navbar {
  display: none;
  height: 4px;
  background: #2E2E2E;
}

.navigation-section .navigation-section-inner .left {
  display: table;
  margin: 0px 0px 0px 10px;
  height: 100%;
  float: left;
  width: 22%;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  border-top: 4px solid #F5EB31;
}

@media screen and (max-width: 768px) {
  .navigation-section .navigation-section-inner .left {
    width: 90%;
  }
}

@media screen and (max-width: 540px) {
  .navigation-section .navigation-section-inner .left {
    width: 85%;
  }
}

.navigation-section .navigation-section-inner .left .logo {
  display: table-cell;
  vertical-align: middle;
  padding: 0px 0px 0px 10px;
  width: 151px;
  cursor: pointer;
}

.navigation-section .navigation-section-inner .left .logo svg {
  width: 151px;
}

.navigation-section .navigation-section-inner .left .logo svg, .navigation-section .navigation-section-inner .left .logo path, .navigation-section .navigation-section-inner .left .logo polygon, .navigation-section .navigation-section-inner .left .logo rect {
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}

.navigation-section .navigation-section-inner .left .logo #logoWhite {
  display: none;
}

.navigation-section .navigation-section-inner .right {
  display: table;
  height: 100%;
  float: right;
  width: 78%;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .navigation-section .navigation-section-inner .right {
    width: 10%;
    position: relative;
  }
}

@media screen and (max-width: 540px) {
  .navigation-section .navigation-section-inner .right {
    width: 15%;
  }
}

.navigation-section .navigation-section-inner .right .mobile-nav-icon {
  display: none;
}

@media screen and (max-width: 768px) {
  .navigation-section .navigation-section-inner .right .mobile-nav-icon {
    display: block;
    top: calc(50% - 27px / 2);
    right: 0px;
  }
}

@media screen and (max-width: 480px) {
  .navigation-section .navigation-section-inner .right .mobile-nav-icon {
    top: calc(50% - 25px / 2);
  }
}

.navigation-section .navigation-section-inner .right .mobile-nav-icon .bar {
  background: #2E2E2E;
  transition: all 0.1s ease !important;
  -webkit-transition: all 0.1s ease !important;
}

.navigation-section .navigation-section-inner .right .nav-wrap {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .navigation-section .navigation-section-inner .right .nav-wrap {
    display: none;
  }
}

.navigation-section .navigation-section-inner .right .nav-wrap ul {
  display: inline-block;
  margin: 0px;
  padding: 0px;
}

.navigation-section .navigation-section-inner .right .nav-wrap ul li {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0 15px;
}

.navigation-section .navigation-section-inner .right .nav-wrap ul li:first-child {
  padding-left: 0;
}

.navigation-section .navigation-section-inner .right .nav-wrap ul li:last-child {
  padding-right: 0;
}

.navigation-section .navigation-section-inner .right .nav-wrap ul li a {
  position: relative;
}

.navigation-section .navigation-section-inner .right .nav-wrap ul li a:after {
  content: "";
  display: block;
  position: absolute;
  background: #2E2E2E;
  opacity: 0;
  left: 30px;
  right: 30px;
  bottom: -5px;
  height: 2px;
  transition: all .4s ease 0s;
}

.navigation-section .navigation-section-inner .right .nav-wrap ul li a:hover {
  text-decoration: none;
  outline: none;
}

.navigation-section .navigation-section-inner .right .nav-wrap ul li a:focus {
  text-decoration: none;
  outline: none;
}

.navigation-section .navigation-section-inner .right .nav-wrap ul li:hover {
  text-decoration: none !important;
}

.navigation-section .navigation-section-inner .right .nav-wrap ul li:hover a {
  text-decoration: none !important;
}

.navigation-section .navigation-section-inner .right .nav-wrap ul li:hover a:after {
  opacity: 1;
  left: 0;
  right: 0;
}

.navigation-section .navigation-section-inner .right .nav-wrap ul .active a:after, .navigation-section .navigation-section-inner .right .nav-wrap ul .current-menu-item a:after {
  content: "";
  display: block;
  position: absolute;
  background: #2E2E2E;
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  transition: all .4s ease 0s;
  -webkit-transition: all .4s ease 0s;
}

.navigation-section .navigation-section-inner .right .btn {
  display: none;
  margin: 0px 0px 0px 12px;
  color: #555759;
}

.home .navigation-section {
  height: 0;
  opacity: 0;
}

.home .navigation-section .navigation-section-inner .right .nav-wrap .btn {
  color: #555759;
}

.work .navigation-section .navigation-section-inner .left .logo svg, .work .navigation-section .navigation-section-inner .left .logo path, .work .navigation-section .navigation-section-inner .left .logo polygon, .work .navigation-section .navigation-section-inner .left .logo rect {
  fill: #2E2E2E;
}

.work .navigation-section .navigation-section-inner .right .btn {
  color: #555759;
}

.contact .navigation-section .navigation-section-inner .right .btn {
  margin: 0px 0px 0px 15px;
}

.mobile-nav-icon {
  display: block;
  width: 33px;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  position: absolute;
  top: 35px;
  right: 35px;
  z-index: 3;
  cursor: pointer;
}

@media screen and (max-width: 480px) {
  .mobile-nav-icon {
    top: 30px;
    right: 30px;
  }
}

.mobile-nav-icon .bar {
  display: block;
  height: 3px;
  background: #FFFFFF;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  clear: both;
  float: right;
  transition: width 0.3s linear;
  -webkit-transition: width 0.3s linear;
}

.mobile-nav-icon .bar:nth-of-type(1) {
  width: 65%;
}

.mobile-nav-icon .bar:nth-of-type(2) {
  width: 100%;
  margin: 8px 0px;
}

.mobile-nav-icon .bar:nth-of-type(3) {
  width: 65%;
}

.mobile-nav {
  display: block;
  width: 100%;
  height: 100%;
  background: #2E2E2E;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  visibility: visible;
  transform: translate3d(100%, 0, 0);
}

.mobile-nav .mobile-nav-inner {
  display: block;
  padding: 12% 0px 0px 10%;
}

@media screen and (max-width: 460px) {
  .mobile-nav .mobile-nav-inner {
    padding: 12% 0px 0px 9%;
  }
}

@media screen and (max-width: 390px) {
  .mobile-nav .mobile-nav-inner {
    padding: 10% 0px 0px 8%;
  }
}

@media screen and (max-width: 334px) {
  .mobile-nav .mobile-nav-inner {
    padding: 10% 0px 0px 6%;
  }
}

.mobile-nav .mobile-nav-inner .mobile-menu-exit {
  display: block;
  width: 45px;
  height: 45px;
  position: absolute;
  top: 60px;
  right: 50px;
  background: transparent;
  cursor: pointer;
}

@media screen and (max-width: 520px) {
  .mobile-nav .mobile-nav-inner .mobile-menu-exit {
    width: 40px;
    height: 40px;
    top: 50px;
    right: 30px;
  }
}

@media screen and (max-width: 375px) {
  .mobile-nav .mobile-nav-inner .mobile-menu-exit {
    width: 35px;
    height: 35px;
    top: 40px;
    right: 20px;
  }
}

.mobile-nav .mobile-nav-inner .mobile-menu-exit span:nth-of-type(1) {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: white;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
}

.mobile-nav .mobile-nav-inner .mobile-menu-exit span:nth-of-type(2) {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 3px;
  width: 100%;
  background: white;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
}

.mobile-nav .mobile-nav-inner .seperator {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0px;
  padding: 0px;
}

.mobile-nav .mobile-nav-inner .seperator:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.6);
  position: relative;
  top: -1px;
}

.mobile-nav .mobile-nav-inner ul {
  display: block;
  margin: 0px;
  padding: 0px 0px 40px 0px;
}

.mobile-nav .mobile-nav-inner ul li {
  display: block;
  margin: 0px;
  padding: 8px 0px;
  letter-spacing: 1px;
}

@media screen and (max-width: 400px) {
  .mobile-nav .mobile-nav-inner ul li {
    padding: 6px 0px;
  }
}

.mobile-nav .mobile-nav-inner ul li:first-child {
  padding-top: 0;
}

.mobile-nav .mobile-nav-inner ul li:last-child {
  padding-bottom: 0;
}

.mobile-nav .mobile-nav-inner ul li a {
  display: block;
  color: #FFFFFF;
}

.mobile-nav .mobile-nav-inner ul li a:hover {
  text-decoration: none;
  color: #F5EB31;
}

.mobile-nav .mobile-nav-inner ul li a:hover svg {
  fill: #F5EB31;
}

.mobile-nav .mobile-nav-inner ul li a:hover svg path {
  fill: #F5EB31;
}

.mobile-nav .mobile-nav-inner ul li a svg {
  fill: #FFFFFF;
}

.mobile-nav .mobile-nav-inner ul li a svg path {
  fill: #FFFFFF;
}

.mobile-nav .mobile-nav-inner ul .active a, .mobile-nav .mobile-nav-inner ul .current-menu-item a {
  color: #F5EB31;
}

.mobile-nav .mobile-nav-inner .mobile-menu-footer {
  padding-top: 40px;
}

.mobile-nav .mobile-nav-inner .mobile-menu-footer p {
  display: block;
  color: #FFFFFF;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

@media screen and (max-width: 460px) {
  .mobile-nav .mobile-nav-inner .mobile-menu-footer p {
    letter-spacing: 0.5px;
  }
}

@media screen and (max-width: 400px) {
  .mobile-nav .mobile-nav-inner .mobile-menu-footer p {
    letter-spacing: 0px;
  }
}

.mobile-nav .mobile-nav-inner .mobile-menu-footer p span {
  display: block;
  color: #FFFFFF;
  padding: 10px 0px 0px 0px;
}

.mobile-nav .mobile-nav-inner .mobile-menu-footer ul {
  display: block;
  margin: 0px;
  padding: 0px;
  border: none;
}

.mobile-nav .mobile-nav-inner .mobile-menu-footer ul li {
  display: inline-block;
  padding: 0px 20px;
}

.mobile-nav .mobile-nav-inner .mobile-menu-footer ul li:first-child {
  padding-left: 0;
}

.mobile-nav .mobile-nav-inner .mobile-menu-footer ul li:last-child {
  padding-right: 0;
}

.mobile-nav .mobile-nav-inner .mobile-menu-footer ul li a {
  color: #FFFFFF;
}

.navigationFlux .bar {
  animation-name: navBarFlux;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.navigationFlux .bar:nth-of-type(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.navigationFlux .bar:nth-of-type(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.stick {
  opacity: 1 !important;
  height: 60px !important;
  background: #F5EB31 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9 !important;
  -moz-box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.1) !important;
  -webkit-box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.1) !important;
}

.stick .navigation-section-inner .progress-navbar {
  display: block !important;
  position: absolute;
  top: 0;
}

.stick .navigation-section-inner .left {
  border: none !important;
}

.stick .navigation-section-inner .left .logo svg, .stick .navigation-section-inner .left .logo path, .stick .navigation-section-inner .left .logo polygon, .stick .navigation-section-inner .left .logo rect {
  fill: #4B4B4B !important;
}

.stick .navigation-section-inner .left .logo #logoWhite {
  display: none !important;
}

.stick .navigation-section-inner .left .logo #logoBlack {
  display: block !important;
}

.stick .navigation-section-inner .right .mobile-nav-icon .bar {
  background: #2E2E2E !important;
}

.stick .navigation-section-inner .right .nav-wrap ul li a {
  color: #2E2E2E !important;
}

.stick .navigation-section-inner .right .nav-wrap ul li a:after {
  background: #2E2E2E !important;
}

.stick .navigation-section-inner .right .nav-wrap .btn {
  color: #2E2E2E !important;
  border: 1.4px solid #2E2E2E !important;
}

.stick .navigation-section-inner .right .nav-wrap .btn:hover {
  background: #F5EB31 !important;
}

.casestudy-header {
  display: block;
  overflow: hidden;
  width: 100%;
  clear: both;
}

.casestudy-header .casestudy-header-inner {
  overflow: hidden;
  position: relative;
  display: flex;
}

@media screen and (max-width: 768px) {
  .casestudy-header .casestudy-header-inner {
    display: block;
  }
}

.casestudy-header .casestudy-header-inner .left {
  position: relative;
  padding: 0;
}

.casestudy-header .casestudy-header-inner .left .top {
  display: table;
  width: 60%;
  height: 130px;
  background: #2E2E2E;
}

@media screen and (max-width: 768px) {
  .casestudy-header .casestudy-header-inner .left .top {
    width: 100%;
  }
}

.casestudy-header .casestudy-header-inner .left .top:before {
  content: "";
  display: block;
  position: absolute;
  background: #2E2E2E;
  top: 0;
  right: 0;
  width: 50%;
  height: 130px;
  transform-origin: bottom left;
  -ms-transform: skew(50deg, 0deg);
  -webkit-transform: skew(50deg, 0deg);
  transform: skew(50deg, 0deg);
}

.casestudy-header .casestudy-header-inner .left .top .content {
  display: table;
  position: absolute;
  top: 100px;
}

@media screen and (max-width: 992px) {
  .casestudy-header .casestudy-header-inner .left .top .content {
    top: 80px;
  }
}

.casestudy-header .casestudy-header-inner .left .top .content:before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #FFFFFF;
  position: relative;
  top: -4px;
  margin-right: 10px;
}

.casestudy-header .casestudy-header-inner .left .top .content a {
  color: #FFFFFF;
}

.casestudy-header .casestudy-header-inner .left .top .content a:hover {
  text-decoration: none;
}

.casestudy-header .casestudy-header-inner .left .bottom {
  display: block;
  background: #2E2E2E;
}

.casestudy-header .casestudy-header-inner .left .bottom .content {
  display: table;
  padding: 0 110px;
  float: right;
}

@media screen and (max-width: 992px) {
  .casestudy-header .casestudy-header-inner .left .bottom .content {
    padding: 0 60px;
  }
}

@media screen and (max-width: 820px) {
  .casestudy-header .casestudy-header-inner .left .bottom .content {
    padding: 0 40px;
  }
}

@media screen and (max-width: 768px) {
  .casestudy-header .casestudy-header-inner .left .bottom .content {
    float: none;
    margin: 0;
    padding: 0 100px;
  }
}

@media screen and (max-width: 680px) {
  .casestudy-header .casestudy-header-inner .left .bottom .content {
    padding: 0 50px;
  }
}

@media screen and (max-width: 580px) {
  .casestudy-header .casestudy-header-inner .left .bottom .content {
    padding: 0 30px;
  }
}

@media screen and (max-width: 410px) {
  .casestudy-header .casestudy-header-inner .left .bottom .content {
    padding: 0 15px;
  }
}

.casestudy-header .casestudy-header-inner .left .bottom .content .work-category {
  display: table;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .casestudy-header .casestudy-header-inner .left .bottom .content .work-category {
    margin: 0 auto;
  }
}

.casestudy-header .casestudy-header-inner .left .bottom .content .work-category li {
  font: 500 13px/1em "Montserrat";
  display: inline-block;
  letter-spacing: 2px;
  list-style: none;
  color: #F5EB31;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .casestudy-header .casestudy-header-inner .left .bottom .content .work-category li {
    letter-spacing: 2px;
  }
}

@media screen and (max-width: 520px) {
  .casestudy-header .casestudy-header-inner .left .bottom .content .work-category li {
    letter-spacing: 1px;
  }
}

.casestudy-header .casestudy-header-inner .left .bottom .content .work-category li:nth-of-type(2) {
  padding: 0px 30px;
}

@media screen and (max-width: 1700px) {
  .casestudy-header .casestudy-header-inner .left .bottom .content .work-category li:nth-of-type(2) {
    padding: 0px 20px;
  }
}

@media screen and (max-width: 855px) {
  .casestudy-header .casestudy-header-inner .left .bottom .content .work-category li:nth-of-type(2) {
    padding: 0px 10px;
  }
}

@media screen and (max-width: 768px) {
  .casestudy-header .casestudy-header-inner .left .bottom .content .work-category li:nth-of-type(2) {
    padding: 0px 20px;
  }
}

@media screen and (max-width: 520px) {
  .casestudy-header .casestudy-header-inner .left .bottom .content .work-category li:nth-of-type(2) {
    padding: 0px 10px;
  }
}

.casestudy-header .casestudy-header-inner .left .bottom .content .logo {
  display: table;
  margin: 30px 0 0 0;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .casestudy-header .casestudy-header-inner .left .bottom .content .logo {
    margin: 35px auto 0 auto;
  }
}

.casestudy-header .casestudy-header-inner .left .bottom .content .synopsis {
  display: block;
  margin: 30px auto 0 auto;
  padding: 0 0 60px 0;
  max-width: 529px;
}

@media screen and (max-width: 768px) {
  .casestudy-header .casestudy-header-inner .left .bottom .content .synopsis {
    padding: 0 0 40px 0;
    max-width: none;
  }
}

.casestudy-header .casestudy-header-inner .left .bottom .content .synopsis p {
  color: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .casestudy-header .casestudy-header-inner .left .bottom .content .synopsis p {
    text-align: center;
  }
}

.casestudy-header .casestudy-header-inner .right {
  position: static;
  padding: 0;
}

.casestudy-header .casestudy-header-inner .right .top-link {
  display: block;
  position: absolute;
  top: 100px;
  right: 0;
}

@media screen and (max-width: 992px) {
  .casestudy-header .casestudy-header-inner .right .top-link {
    top: 80px;
  }
}

@media screen and (max-width: 992px) {
  .casestudy-header .casestudy-header-inner .right .top-link {
    top: 80px;
  }
}

.casestudy-header .casestudy-header-inner .right .top-link:after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #2E2E2E;
  position: relative;
  top: -4px;
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .casestudy-header .casestudy-header-inner .right .top-link:after {
    background: #FFFFFF;
  }
}

.casestudy-header .casestudy-header-inner .right .top-link a {
  color: #2E2E2E;
}

.casestudy-header .casestudy-header-inner .right .top-link a:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .casestudy-header .casestudy-header-inner .right .top-link a {
    color: #FFFFFF;
  }
}

.casestudy-header .casestudy-header-inner .right .top {
  display: block;
  margin: 0;
  position: absolute;
  bottom: 80px;
}

@media screen and (max-width: 768px) {
  .casestudy-header .casestudy-header-inner .right .top {
    margin: 0;
    position: static;
    bottom: inital;
  }
}

.casestudy-header .casestudy-header-inner .right .top .content {
  display: block;
  padding: 0 60px;
  font: 500 20px/35px "Montserrat";
}

@media screen and (max-width: 992px) {
  .casestudy-header .casestudy-header-inner .right .top .content {
    padding: 0 40px;
  }
}

@media screen and (max-width: 768px) {
  .casestudy-header .casestudy-header-inner .right .top .content {
    padding: 0;
    border-left: 60px solid #2E2E2E;
  }
}

@media screen and (max-width: 580px) {
  .casestudy-header .casestudy-header-inner .right .top .content {
    border-left: 20px solid #2E2E2E;
  }
}

.casestudy-header .casestudy-header-inner .right .top .content p {
  display: block;
  max-width: 342px;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .casestudy-header .casestudy-header-inner .right .top .content p {
    text-align: right;
    max-width: none;
    padding: 40px 120px 0 120px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 680px) {
  .casestudy-header .casestudy-header-inner .right .top .content p {
    padding: 30px 60px 0 60px;
  }
}

@media screen and (max-width: 580px) {
  .casestudy-header .casestudy-header-inner .right .top .content p {
    padding: 25px 50px 0 50px;
  }
}

.casestudy-header .casestudy-header-inner .right .top .content p strong {
  display: inline-block;
  border-bottom: 2px solid #F5EB31;
}

.casestudy-header .casestudy-header-inner .right .top .content .credit-name {
  display: block;
  margin: 30px 0 0 0;
  font: 500 16px/28px "Montserrat";
}

@media screen and (max-width: 768px) {
  .casestudy-header .casestudy-header-inner .right .top .content .credit-name {
    background: #2E2E2E;
    text-align: right;
    padding: 20px 120px 40px 120px;
  }
}

@media screen and (max-width: 680px) {
  .casestudy-header .casestudy-header-inner .right .top .content .credit-name {
    padding: 20px 60px 40px 60px;
  }
}

@media screen and (max-width: 580px) {
  .casestudy-header .casestudy-header-inner .right .top .content .credit-name {
    padding: 20px 40px 40px 40px;
  }
}

@media screen and (max-width: 420px) {
  .casestudy-header .casestudy-header-inner .right .top .content .credit-name {
    padding: 20px 30px 40px 30px;
  }
}

.casestudy-header .casestudy-header-inner .right .top .content .credit-name span {
  display: block;
}

@media screen and (max-width: 768px) {
  .casestudy-header .casestudy-header-inner .right .top .content .credit-name span {
    color: #FFFFFF;
  }
}

.casestudy-header .casestudy-header-inner .right .bottom {
  display: table;
  width: 43%;
  height: 45px;
  background: #2E2E2E;
  position: absolute;
  bottom: 0;
}

@media screen and (max-width: 1200px) {
  .casestudy-header .casestudy-header-inner .right .bottom {
    width: 33%;
  }
}

@media screen and (max-width: 768px) {
  .casestudy-header .casestudy-header-inner .right .bottom {
    display: none;
  }
}

.casestudy-header .casestudy-header-inner .right .bottom:before {
  content: "";
  display: block;
  position: absolute;
  background: #2E2E2E;
  bottom: 0;
  right: -65px;
  width: 100%;
  height: 45px;
  transform-origin: bottom left;
  -ms-transform: skew(50deg, 0deg);
  -webkit-transform: skew(50deg, 0deg);
  transform: skew(50deg, 0deg);
}

.casestudy-hero {
  display: block;
  width: 100%;
  overflow: hidden;
  clear: both;
}

.casestudy-hero img {
  width: 100%;
}

.casestudy-intro {
  display: block;
  overflow: hidden;
  clear: both;
}

.casestudy-intro .casestudy-intro-inner {
  display: table;
  max-width: 581px;
  margin: 0 auto;
  padding: 70px 0 80px 0;
}

@media screen and (max-width: 992px) {
  .casestudy-intro .casestudy-intro-inner {
    padding: 70px 0 60px 0;
  }
}

@media screen and (max-width: 640px) {
  .casestudy-intro .casestudy-intro-inner {
    padding: 60px 20px;
  }
}

@media screen and (max-width: 480px) {
  .casestudy-intro .casestudy-intro-inner {
    padding: 50px 20px;
  }
}

.casestudy-intro .casestudy-intro-inner h1 {
  text-align: center;
  font: 700 50px/1em "Montserrat";
  color: #2E2E2E;
  margin: 0 0 30px 0;
}

.casestudy-intro .casestudy-intro-inner p {
  display: block;
  margin: 0;
  text-align: center;
  color: #2E2E2E;
}

.casestudy-sample {
  display: block;
  overflow: hidden;
  clear: both;
}

.casestudy-sample .casestudy-sample-inner {
  display: block;
  overflow: hidden;
  margin-bottom: 90px;
}

@media screen and (max-width: 768px) {
  .casestudy-sample .casestudy-sample-inner {
    margin: 0;
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 580px) {
  .casestudy-sample .casestudy-sample-inner {
    padding: 0 15px 70px 15px;
  }
}

.casestudy-sample .casestudy-sample-inner .sample {
  padding: 5px;
}

.casestudy-sample .casestudy-sample-inner .sample img {
  width: 100%;
}

.description-section {
  display: block;
  clear: both;
  overflow: hidden;
}

.description-section .inner-description-section {
  width: 100%;
  display: block;
  padding: 0px;
  margin: 0px;
}

.description-section .inner-description-section .description-info-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  height: 100%;
}

@media screen and (max-width: 992px) {
  .description-section .inner-description-section .description-info-wrap {
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .description-section .inner-description-section .description-info-wrap {
    display: flex;
    align-items: center;
    float: none;
  }
  .description-section .inner-description-section .description-info-wrap:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
  }
}

.description-section .inner-description-section .description-info-wrap .description-info {
  display: block;
  padding: 0px 0px 0px 90px;
  box-sizing: content-box;
  z-index: 2;
}

@media screen and (max-width: 1500px) {
  .description-section .inner-description-section .description-info-wrap .description-info {
    padding: 0px 0px 0px 40px;
  }
}

@media screen and (max-width: 1300px) {
  .description-section .inner-description-section .description-info-wrap .description-info {
    padding: 0px 0px 0px 30px;
  }
}

@media screen and (max-width: 1175px) {
  .description-section .inner-description-section .description-info-wrap .description-info {
    padding: 0px 0px 0px 10px;
  }
}

@media screen and (max-width: 992px) {
  .description-section .inner-description-section .description-info-wrap .description-info {
    padding: 0 60px 0 0;
    margin: 0px auto;
  }
}

@media screen and (max-width: 887px) {
  .description-section .inner-description-section .description-info-wrap .description-info {
    padding: 0 40px 0 0;
  }
}

@media screen and (max-width: 768px) {
  .description-section .inner-description-section .description-info-wrap .description-info {
    text-align: center;
    padding: 0;
    width: auto;
    max-width: 500px;
  }
}

@media screen and (max-width: 620px) {
  .description-section .inner-description-section .description-info-wrap .description-info {
    max-width: 410px;
  }
}

@media screen and (max-width: 520px) {
  .description-section .inner-description-section .description-info-wrap .description-info {
    max-width: 340px;
  }
}

@media screen and (max-width: 400px) {
  .description-section .inner-description-section .description-info-wrap .description-info {
    max-width: 290px;
  }
}

.description-section .inner-description-section .description-info-wrap .description-info h1 {
  color: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .description-section .inner-description-section .description-info-wrap .description-info h1 {
    text-align: left;
    margin-top: 0;
  }
}

.description-section .inner-description-section .description-info-wrap .description-info .divider-wrap {
  margin: 30px 0 40px 0;
}

@media screen and (max-width: 992px) {
  .description-section .inner-description-section .description-info-wrap .description-info .divider-wrap {
    margin: 20px 0 30px 0;
    height: 8px;
    margin: 20px 0;
  }
}

@media screen and (max-width: 768px) {
  .description-section .inner-description-section .description-info-wrap .description-info .divider-wrap {
    height: 10px;
  }
}

@media screen and (max-width: 400px) {
  .description-section .inner-description-section .description-info-wrap .description-info .divider-wrap {
    margin: 12px 0;
  }
}

.description-section .inner-description-section .description-info-wrap .description-info p {
  max-width: 580px;
  color: #FFFFFF;
  margin: 0;
}

@media screen and (max-width: 1700px) {
  .description-section .inner-description-section .description-info-wrap .description-info p {
    max-width: 450px;
  }
}

@media screen and (max-width: 992px) {
  .description-section .inner-description-section .description-info-wrap .description-info p {
    width: auto;
    max-width: none;
  }
}

@media screen and (max-width: 768px) {
  .description-section .inner-description-section .description-info-wrap .description-info p {
    text-align: left;
  }
}

.description-section .inner-description-section img {
  width: 100%;
  height: auto;
}

.description-section .pl .description-info-wrap {
  justify-content: flex-end;
}

.description-section .pl .description-info-wrap .description-info {
  padding: 0px 90px 0px 0px;
}

@media screen and (max-width: 1500px) {
  .description-section .pl .description-info-wrap .description-info {
    padding: 0px 40px 0px 0px;
  }
}

@media screen and (max-width: 1300px) {
  .description-section .pl .description-info-wrap .description-info {
    padding: 0px 30px 0px 0px;
  }
}

@media screen and (max-width: 1175px) {
  .description-section .pl .description-info-wrap .description-info {
    padding: 0px 0px 0px 50px;
  }
}

@media screen and (max-width: 992px) {
  .description-section .pl .description-info-wrap .description-info {
    padding: 0 0 0 60px;
  }
}

@media screen and (max-width: 887px) {
  .description-section .pl .description-info-wrap .description-info {
    padding: 0 0 0 40px;
  }
}

@media screen and (max-width: 768px) {
  .description-section .pl .description-info-wrap .description-info {
    padding: 0;
  }
}

.promo-section {
  display: block;
  clear: both;
  overflow: hidden;
}

@media screen and (max-width: 668px) {
  .promo-section {
    padding: 0 40px;
  }
}

@media screen and (max-width: 420px) {
  .promo-section {
    padding: 0 25px;
  }
}

.promo-section .promo-section-inner {
  display: table;
  border-left: 10px solid #F5EB31;
  padding: 0 0 0 75px;
  margin: 90px auto 45px auto;
}

@media screen and (max-width: 768px) {
  .promo-section .promo-section-inner {
    padding: 0 0 0 50px;
  }
}

@media screen and (max-width: 480px) {
  .promo-section .promo-section-inner {
    padding: 0 0 0 30px;
    margin: 60px auto 30px auto;
  }
}

.promo-section .promo-section-inner h1 {
  color: #2E2E2E;
  margin: 0 0 30px 0;
  max-width: 490px;
}

.promo-section .promo-section-inner p {
  color: #2E2E2E;
  margin: 0;
  padding: 0;
  max-width: 648px;
}

@media screen and (max-width: 1700px) {
  .promo-section .promo-section-inner p {
    max-width: 562px;
  }
}

@media screen and (max-width: 668px) {
  .promo-section .promo-section-inner p {
    max-width: none;
  }
}

.promo-section a {
  display: table;
  margin: 0 auto 45px auto;
  padding: 0;
  color: #2E2E2E;
  font: 700 30px/1em "Montserrat";
  text-decoration: underline;
}

@media screen and (max-width: 480px) {
  .promo-section a {
    margin: 0 auto 30px auto;
  }
}

.casestudy-footer {
  display: block;
  position: relative;
  background: #2E2E2E;
  padding: 45px 0;
  width: 100%;
  overflow: hidden;
  clear: both;
}

.casestudy-footer span {
  display: inline-block;
  position: absolute;
  top: calc(50% - 13px / 2);
}

.casestudy-footer span a {
  color: #FFFFFF;
}

.casestudy-footer span:nth-of-type(1) {
  left: 0;
}

.casestudy-footer span:nth-of-type(1):before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 40px;
  background: #FFFFFF;
  position: relative;
  top: -5px;
  margin-right: 10px;
}

@media screen and (max-width: 400px) {
  .casestudy-footer span:nth-of-type(1):before {
    width: 30px;
  }
}

.casestudy-footer span:nth-of-type(2) {
  right: 0;
}

.casestudy-footer span:nth-of-type(2):after {
  content: "";
  display: inline-block;
  height: 1px;
  width: 40px;
  background: #FFFFFF;
  position: relative;
  top: -5px;
  margin-left: 10px;
}

@media screen and (max-width: 400px) {
  .casestudy-footer span:nth-of-type(2):after {
    width: 30px;
  }
}

.casestudy-footer .casestudy-footer-inner .btn {
  display: table;
  margin: 0 auto;
  color: #2E2E2E;
  padding: 18px 20px 14px 20px;
}

@media screen and (max-width: 400px) {
  .casestudy-footer .casestudy-footer-inner .btn {
    padding: 14px 15px 10px 15px;
  }
}

.casestudy-footer .casestudy-footer-inner .btn:hover {
  background: #fff;
}

.casestudy .divider-wrap {
  display: table;
  width: 100px;
  height: 10px;
  margin: 0 auto 30px auto;
}

.casestudy .divider-wrap .divide {
  background: #F5EB31;
  height: 10px;
}

.casestudy .navigation-section {
  position: absolute;
  z-index: 2;
  top: 0;
  background: transparent;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.casestudy .navigation-section .left {
  border: none;
}

.casestudy .navigation-section .left .logo #logoWhite {
  display: block;
}

.casestudy .navigation-section .left .logo #logoBlack {
  display: none;
}

.casestudy .navigation-section .right .mobile-nav-icon .bar {
  background: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .casestudy .navigation-section .right .nav-wrap ul li a {
    color: #FFFFFF;
  }
}

/*# sourceMappingURL=casestudy-page.css.map */