/*************** Colors *******************/
body {
  font-family: proxima-nova, sans-serif;
  color: #fff; }

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  text-transform: none; }

h1.h1-large {
  font-size: 8.6rem;
  line-height: .9; }
  @media (max-width: 1220px) {
    h1.h1-large {
      font-size: 6.8rem; } }
  @media (max-width: 768px) {
    h1.h1-large {
      font-size: 6.8rem; } }

p {
  font-family: proxima-nova, sans-serif; }

@media only screen and (max-width: 600px) {
  h2 {
    font-size: 2.8rem; } }

p {
  color: #272B2E; }

ul {
  list-style-type: none; }

a {
  transition: all .3s; }
  a:hover, a:active, a:focus {
    color: #C71A5D; }

@media (max-width: 900px) {
  .row .column.column-10,
  .row .column.column-20,
  .row .column.column-25,
  .row .column.column-33,
  .row .column.column-40,
  .row .column.column-50,
  .row .column.column-60,
  .row .column.column-67,
  .row .column.column-75,
  .row .column.column-80,
  .row .column.column-90 {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-width: 100%; } }

.container {
  max-width: 144rem; }

/*************** Basics ********************/
.text-uppercase, .uppercase {
  text-transform: uppercase; }

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

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.align-left {
  text-align: left; }

.align-right {
  text-align: right; }

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

.text-bold {
  font-weight: bold; }

.text-600, .text-semi-bold {
  font-weight: 600; }

/*************** Flex classes *******************/
.container .flex-column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.container .flex-column .btn {
  margin: 0px auto; }

.container.flex-center {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  align-item: center; }

.container.container-flex {
  display: -ms-flexbox;
  display: flex; }

/*************** Fonts *******************/
.fa.fa-size-large {
  font-size: 6rem; }

.fa.fa-size-medium {
  font-size: 3rem; }

.fa.fa-size-small {
  font-size: 1.5rem; }

/*************** Buttons *******************/
.btn, .button {
  transition: all .35s;
  color: #000;
  border: 2px solid #000;
  display: unset;
  padding: 1rem 3rem;
  text-align: center;
  white-space: nowrap;
  background-color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
  z-index: 2; }
  .btn.btn-rainbow:before, .button.btn-rainbow:before {
    content: "";
    height: 100%;
    width: 100%;
    left: 1rem;
    top: 1rem;
    z-index: -1;
    position: absolute;
    background-image: linear-gradient(90deg, #18A4A5 0%, #81BE9E 23%, #F6AE29 47%, #F6411C 75%, #C7195D 100%);
    transition: all .25s; }
  .btn:hover:before, .btn:focus:before, .btn:active:before, .button:hover:before, .button:focus:before, .button:active:before {
    left: 0rem;
    top: 0rem; }

.button:focus,
.button:hover,
button:focus,
button:hover,
input[type='button']:focus,
input[type='button']:hover,
input[type='reset']:focus,
input[type='reset']:hover,
input[type='submit']:focus,
input[type='submit']:hover {
  background-color: transparent;
  border-color: transparent; }

@media screen  and (min-width: 448px) {
.rainbow-strike-through {
  position: relative; }
  .rainbow-strike-through:after {
    content: "";
    height: 4px;
    width: 100%;
    left: 0rem;
    top: 80%;
    position: absolute;
    background-image: linear-gradient(90deg, #18A4A5 0%, #81BE9E 23%, #F6AE29 47%, #F6411C 75%, #C7195D 100%);
    transition: all .25s;
    animation-name: rainbow-strike;
    animation-iteration-count: 1;
    animation-delay: 0s;
    animation-duration: 1.1s;
    animation-timing-function: ease-in; }}

@keyframes rainbow-strike {
  0% {
    width: 0%; }
  100% {
    width: 100%; } }

input::-webkit-input-placeholder {
  -webkit-transition: .5s; }

input:-moz-input-placeholder {
  -moz-transition: .5s; }

input::-moz-input-placeholder {
  -moz-transition: .5s; }

input:-ms-input-placeholder {
  -ms-transition: .5s; }

input:focus::-webkit-input-placeholder {
  color: transparent; }

input:focus:-moz-placeholder {
  color: transparent; }

/* FF 4-18 */
input:focus::-moz-placeholder {
  color: transparent; }

/* FF 19+ */
input:focus:-ms-input-placeholder {
  color: transparent; }

/* Colors 2*/
.rainbow-underline {
  position: relative;
  z-index: 5; }
  .rainbow-underline:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 5px;
    z-index: -1;
    background-image: linear-gradient(90deg, #C71A5D 15%, transparent 15%), linear-gradient(90deg, #F6411B 30%, transparent 30%), linear-gradient(90deg, #F7A78B 45%, transparent 45%), linear-gradient(90deg, #F6AE29 60%, transparent 60%), linear-gradient(90deg, #1AA4A5 75%, transparent 75%), linear-gradient(90deg, #058EB4 90%, transparent 90%), linear-gradient(90deg, #063552 100%, #063552 100%); }

/*************** Layout *******************/
.main {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh; }
  .main .logo-vertical {
    display: block;
    position: relative;
    padding: 10px;
    top: 0px;
    left: 0px;
    float: left;
    margin-left: 2rem;
    font-weight: 600;
    z-index: 20; }

.main-dark {
  background-color: #000;
  color: #fff; }
  .main-dark .logo-vertical {
    color: #fff; }

.main-light {
  background-color: #fff;
  color: #000; }
  .main-light .logo-vertical {
    color: #000; }
  .main-light .main-menu-list-item a:hover, .main-light .main-menu-list-item a:focus, .main-light .main-menu-list-item a:active {
    color: #fff; }

.logo-text {
  letter-spacing: 6px;
  writing-mode: vertical-lr;
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
  font-size: 2rem;
  margin-top: 2rem; }
  @media (max-width: 768px) {
    .logo-text {
      writing-mode: unset; } }

/*************** Menu *******************/
.main-menu {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  min-width: 300px;
  margin-top: 0px;
  z-index: 12; }
  @media (max-width: 1220px) {
    .main-menu {
      display: none;
      margin-top: 50px; } }

.menu-open .logo-vertical {
  color: #fff; }

@media (max-width: 1220px) {
  .menu-open .main-menu {
    display: block !important;
    width: 100%;
    height: calc(100vh - 50px);
    background-color: #000;
    z-index: 15; }
    .menu-open .main-menu .main-menu-list {
      -webkit-clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 200%);
              clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 200%); }
    .menu-open .main-menu .main-menu-list-item a {
      color: #fff; }
    .menu-open .main-menu .main-menu-list-item:after {
      background-color: #fff;
      width: 100%; } }

.main-menu-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  -ms-flex-align: end;
      align-items: end;
  height: 100%;
  max-height: 100vh; }

.main-menu-list-item {
  text-transform: uppercase;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: end;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  padding-right: 2rem;
  position: relative;
  letter-spacing: 2px;
  background-color: transparent;
  transition: margin-right .5s;
  margin-bottom: 0px; }
  @media (max-width: 1220px) {
    .main-menu-list-item {
      display: grid; } }
  .main-menu-list-item:hover:before {
    width: 100%; }
  .main-menu-list-item:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    transition: all 0s; }
  .main-menu-list-item:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 2px;
    background-color: #fff;
    width: 100%; }
  .main-menu-list-item.one:hover:before, .main-menu-list-item.one.active:before {
    width: 80%;
    background-color: #063552;
    -webkit-clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%); }
  .main-menu-list-item.one:after {
    width: 80%; }
  @media (max-width: 1220px) {
    .main-menu-list-item.one {
      width: 100%; }
      .main-menu-list-item.one:before, .main-menu-list-item.one:hover:before, .main-menu-list-item.one.active:before {
        background-color: #063552;
        -webkit-clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
                clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%); }
      .main-menu-list-item.one:after {
        width: 100vw !important; } }
  .main-menu-list-item.two:hover:before, .main-menu-list-item.two.active:before {
    background-color: #1AA4A5;
    -webkit-clip-path: polygon(20% 0, 100% 0, 100% 100%, 30% 100%);
            clip-path: polygon(20% 0, 100% 0, 100% 100%, 30% 100%); }
  .main-menu-list-item.two:after {
    width: 70%; }
  @media (max-width: 1220px) {
    .main-menu-list-item.two {
      width: 100%; }
      .main-menu-list-item.two:before, .main-menu-list-item.two:hover:before, .main-menu-list-item.two.active:before {
        background-color: #1AA4A5;
        -webkit-clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
                clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%); }
      .main-menu-list-item.two:after {
        width: 100vw !important; } }
  .main-menu-list-item.three:hover:before, .main-menu-list-item.three.active:before {
    background-color: #F6AE29;
    -webkit-clip-path: polygon(30% 0, 100% 0, 100% 100%, 40% 100%);
            clip-path: polygon(30% 0, 100% 0, 100% 100%, 40% 100%); }
  .main-menu-list-item.three:after {
    width: 60%; }
  @media (max-width: 1220px) {
    .main-menu-list-item.three {
      width: 100%; }
      .main-menu-list-item.three:before, .main-menu-list-item.three:hover:before, .main-menu-list-item.three.active:before {
        background-color: #F6AE29;
        -webkit-clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
                clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%); }
      .main-menu-list-item.three:after {
        width: 100vw !important; } }
  .main-menu-list-item.four:hover:before, .main-menu-list-item.four.active:before {
    background-color: #F6411B;
    -webkit-clip-path: polygon(40% 0, 100% 0, 100% 100%, 20% 100%);
            clip-path: polygon(40% 0, 100% 0, 100% 100%, 20% 100%); }
  .main-menu-list-item.four:after {
    width: 80%; }
  @media (max-width: 1220px) {
    .main-menu-list-item.four {
      width: 100%; }
      .main-menu-list-item.four:before, .main-menu-list-item.four:hover:before, .main-menu-list-item.four.active:before {
        background-color: #F6411B;
        -webkit-clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
                clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%); }
      .main-menu-list-item.four:after {
        width: 100vw !important; } }
  .main-menu-list-item.five:hover:before, .main-menu-list-item.five.active:before {
    background-color: #F7A78B;
    background-color: #C71A5D;
    -webkit-clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%); }
  .main-menu-list-item.five:after {
    width: 100%; }
  @media (max-width: 1220px) {
    .main-menu-list-item.five {
      width: 100%; }
      .main-menu-list-item.five:before, .main-menu-list-item.five:hover:before, .main-menu-list-item.five.active:before {
        background-color: #F7A78B;
        -webkit-clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
                clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%); }
      .main-menu-list-item.five:after {
        width: 100vw !important; } }
  .main-menu-list-item.six:hover:before, .main-menu-list-item.six.active:before {
    background-color: #C71A5D;
    -webkit-clip-path: polygon(0% 0, 100% 0, 100% 100%, 20% 100%);
            clip-path: polygon(0% 0, 100% 0, 100% 100%, 20% 100%); }
  .main-menu-list-item.six:after {
    width: 80%; }
  @media (max-width: 1220px) {
    .main-menu-list-item.six {
      width: 100%; }
      .main-menu-list-item.six:before, .main-menu-list-item.six:hover:before, .main-menu-list-item.six.active:before {
        background-color: #C71A5D;
        background-color: #000;
        -webkit-clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
                clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%); }
      .main-menu-list-item.six:after {
        width: 100vw !important; } }
  .main-menu-list-item.social:after {
    width: 0%; }
  .main-menu-list-item.social a:hover {
    margin-right: 0rem; }
  @media (max-width: 1220px) {
    .main-menu-list-item.social {
      width: 75%;
      display: -ms-flexbox;
      display: flex; }
      .main-menu-list-item.social:before, .main-menu-list-item.social:hover:before, .main-menu-list-item.social.active:before {
        background-color: #000;
        -webkit-clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
                clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%); }
      .main-menu-list-item.social:after {
        width: 0vw !important; } }
  .main-menu-list-item a {
    color: #fff;
    z-index: 9;
    width: 100%;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
        justify-content: end;
    -ms-flex-align: center;
        align-items: center;
    transition: all .5s;
    margin-right: 0px; }
    .main-menu-list-item a:hover {
      margin-right: 2rem; }

.main-dark .main-menu-list-item:after {
  background-color: #fff; }

.main-dark .main-menu-list-item a {
  color: #fff; }

.main-dark .main-menu-list-item.active a {
  color: #fff;
  margin-right: 2rem; }

.main-dark .main-menu-list-item.social-dark {
  display: none; }

.main-light .main-menu-list-item:after {
  background-color: #000; }

.main-light .main-menu-list-item a {
  color: #000; }

.main-light .main-menu-list-item.active a {
  color: #fff;
  margin-right: 2rem; }

.main-light .main-menu-list-item.social-light {
  display: none; }

.main-light.page-contact .main-menu {
  background-color: #000; }
  .main-light.page-contact .main-menu:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #000;
    left: -50%;
    -webkit-clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 0% 100%); }

.main-light.page-contact .main-menu-list-item:after {
  background-color: #fff; }

.main-light.page-contact .main-menu-list-item a {
  color: #fff; }

.main-light.page-contact .main-menu-list-item.active a {
  color: #fff;
  margin-right: 2rem; }

.main-light.page-contact .main-menu-list-item.social-dark {
  display: none; }

/*************** Sections *******************/
.section-header {
  margin: 10% auto 0;
  min-width: 50%;
  width: 50%;
  max-width: 90%;
  float: left;
  margin-left: 10%;
  animation: fadeInUp 1.25s ease; }
  @media (max-width: 1220px) {
    .section-header {
      width: 100%; } }
  @media (max-width: 768px) {
    .section-header {
      margin: 10% 5%; } }

.section-header-title {
  margin-bottom: 100px; }
  @media (max-width: 1220px) {
    .section-header-title {
      margin-bottom: 50px; }
      .section-header-title h1 {
        font-size: 6.2rem; } }

.section-header-btn {
  margin-top: 7.5%; }

/*************** Page - Home *******************/
.animated-text:before {
  content: "marketing";
  width: 0%;
  transition: all .5s; }

@keyframes topToBottom {
  0% {
    content: "marketing"; }
  25% {
    content: "creative"; }
  50% {
    content: "consulting"; }
  75% {
    content: "SEO"; }
  95% {
    content: "CRM"; }
  100% {
    content: "marketing"; } }

/*************** Page - Partners *******************/
.partners-logo-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex: calc(100% / 4);
      flex: calc(100% / 4); }
  .partners-logo-list a {
    margin: 2% 2%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex: calc(100% / 7);
        flex: calc(100% / 7); }

.partners-other-arrows {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: auto;
  -ms-flex-direction: column;
      flex-direction: column;
  line-height: 0;
  border: 1px solid #efefef;
  margin-top: 10%; }
  .partners-other-arrows .small-arrow {
    width: 100%;
    text-align: center; }
  .partners-other-arrows .large-arrow {
    width: 100%;
    text-align: center;
    margin-top: -10px; }
  .partners-other-arrows img {
    -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    animation: scale 1500ms ease-in-out;
    animation-iteration-count: infinite; }

@keyframes scale {
  0% {
    transform: rotate(90deg) scale(1); }
  25% {
    transform: rotate(90deg) scale(1.025); }
  50% {
    transform: rotate(90deg) scale(1.05); }
  75% {
    transform: rotate(90deg) scale(1.025); }
  100% {
    transform: rotate(90deg) scale(1); } }

.separator {
  height: 4px;
  width: 70%;
  margin: 6rem auto 2rem; }
  .separator.separator-aqua {
    background-color: #1AA4A5; }

.partners-excerpt {
  margin-top: 4rem;
  font-style: italic;
  text-align: center;
  font-size: 18px; }

/*************** Page - Secrets *******************/
.section-secrets .case-studies-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 70%;
  position: absolute;
  height: 100vh; }
  @media (max-width: 1220px) {
    .section-secrets .case-studies-list {
      width: 100%;
      height: calc(100vh - 50px);
      top: 0px; } }

.section-secrets .case-studies-list-column {
  width: 100%; }
  .section-secrets .case-studies-list-column.column-1 {
    width: 50%;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
    z-index: 2; }
    @media (max-width: 768px) {
      .section-secrets .case-studies-list-column.column-1 {
        width: 100%; } }
  .section-secrets .case-studies-list-column.column-2 {
    width: 50%;
    -webkit-clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
            clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    position: relative;
    left: -5%; }
    @media (max-width: 768px) {
      .section-secrets .case-studies-list-column.column-2 {
        width: 100%; } }
  .section-secrets .case-studies-list-column.column-3 {
    width: 50%;
    -webkit-clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
            clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    position: relative;
    left: -5%; }
    @media (max-width: 768px) {
      .section-secrets .case-studies-list-column.column-3 {
        width: 100%; } }
  @media (max-width: 1220px) {
    .section-secrets .case-studies-list-column.column-1, .section-secrets .case-studies-list-column.column-2 {
      -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
              clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
      left: 0; } }
  .section-secrets .case-studies-list-column a.case-studies-list-column-item {
    height: 50vh;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: block;
    -ms-transform: scale(1);
        transform: scale(1);
    transition: all .3s; }
    @media (max-width: 768px) {
      .section-secrets .case-studies-list-column a.case-studies-list-column-item {
        background-position: 25%; } }
    .section-secrets .case-studies-list-column a.case-studies-list-column-item:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.25);
      opacity: 0;
      z-index: 3;
      transition: all .5s; }
    .section-secrets .case-studies-list-column a.case-studies-list-column-item:hover, .section-secrets .case-studies-list-column a.case-studies-list-column-item:focus, .section-secrets .case-studies-list-column a.case-studies-list-column-item:active {
      -ms-transform: scale(1.025);
          transform: scale(1.025); }
      .section-secrets .case-studies-list-column a.case-studies-list-column-item:hover:before, .section-secrets .case-studies-list-column a.case-studies-list-column-item:focus:before, .section-secrets .case-studies-list-column a.case-studies-list-column-item:active:before {
        opacity: 1; }
  .section-secrets .case-studies-list-column .case-studies-list-item-text {
    position: absolute;
    z-index: 4;
    bottom: 0;
    width: 100%;
    padding: 2% 5% 2rem;
    line-height: 1;
    text-shadow: 0px 0px 10px #2c2c2c;
    max-width: 80%; }
    .section-secrets .case-studies-list-column .case-studies-list-item-text.not-first {
      margin-left: 5%; }
    @media (max-width: 768px) {
      .section-secrets .case-studies-list-column .case-studies-list-item-text.not-first {
        margin-left: 0; } }
    .section-secrets .case-studies-list-column .case-studies-list-item-text h3 {
      margin-bottom: 4px;
      font-weight: 600;
      text-transform: uppercase;
      color: #fff; }
    .section-secrets .case-studies-list-column .case-studies-list-item-text span {
      color: #fff; }

/*************** Page - Proof *******************/
.section-proof {
  display: block;
  animation: fadeInUp 2s ease; }

.case-studies-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 70%;
  width: 80%;
  position: absolute;
  height: 100vh; }
  @media (max-width: 1220px) {
    .case-studies-list {
      width: 100%;
      height: calc(100vh - 50px);
      top: 0px; } }

.case-studies-list-column {
  width: 100%; }
  .case-studies-list-column.column-1 {
    width: 33%;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
    z-index: 2; }
    @media (max-width: 768px) {
      .case-studies-list-column.column-1 {
        width: 100%; } }
  .case-studies-list-column.column-2 {
    width: 33%;
    -webkit-clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
            clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    position: relative;
    left: -3.33%; }
    .case-studies-list-column.column-2 .case-studies-list-item-text {
      margin-left: 10%; }
    @media (max-width: 768px) {
      .case-studies-list-column.column-2 {
        width: 100%; } }
  .case-studies-list-column.column-3 {
    width: 33%;
    -webkit-clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
            clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    position: relative;
    left: -6.67%; }
    @media (max-width: 768px) {
      .case-studies-list-column.column-3 {
        width: 100%; } }
  @media (max-width: 1220px) {
    .case-studies-list-column.column-1, .case-studies-list-column.column-2, .case-studies-list-column.column-3 {
      -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
              clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
      left: 0; } }
  .case-studies-list-column a.case-studies-list-column-item {
    height: 50vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: block;
    -ms-transform: scale(1);
        transform: scale(1);
    transition: all .3s; }
    @media (max-width: 768px) {
      .case-studies-list-column a.case-studies-list-column-item {
        background-position: 25%; } }
    .case-studies-list-column a.case-studies-list-column-item:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.25);
      opacity: 0;
      z-index: 3;
      transition: all .5s; }
    .case-studies-list-column a.case-studies-list-column-item:hover, .case-studies-list-column a.case-studies-list-column-item:focus, .case-studies-list-column a.case-studies-list-column-item:active {
      -ms-transform: scale(1.025);
          transform: scale(1.025); }
      .case-studies-list-column a.case-studies-list-column-item:hover:before, .case-studies-list-column a.case-studies-list-column-item:focus:before, .case-studies-list-column a.case-studies-list-column-item:active:before {
        opacity: 1; }
  .case-studies-list-column .case-studies-list-item-text {
    position: absolute;
    z-index: 4;
    bottom: 0;
    width: 100%;
    padding: 2% 5% 2rem;
    line-height: 1;
    text-shadow: 0px 0px 10px #2c2c2c;
    max-width: 80%; }
    .case-studies-list-column .case-studies-list-item-text.not-first {
      margin-left: 5%; }
    @media (max-width: 768px) {
      .case-studies-list-column .case-studies-list-item-text.not-first {
        margin-left: 0; } }
    .case-studies-list-column .case-studies-list-item-text h3 {
      margin-bottom: 4px;
      font-weight: 600;
      text-transform: uppercase;
      color: #fff; }
    .case-studies-list-column .case-studies-list-item-text span {
      color: #fff; }

/*************** Page - Proof - Case Studies *******************/
.individual-case-study-container {
  display: -ms-flexbox;
  display: flex;
  position: absolute; }
  @media (max-width: 1220px) {
    .individual-case-study-container {
      -ms-flex-direction: column;
          flex-direction: column; } }

.individual-case-study-header {
  width: 40vw;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 70% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 70% 100%, 0% 100%);
  color: #fff; }
  @media (max-width: 1220px) {
    .individual-case-study-header {
      width: 100%;
      -webkit-clip-path: none;
              clip-path: none; } }
  .individual-case-study-header .individual-case-study-header-container {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
    padding: 0 20% 0 10%;
    padding: 0 25% 0 15%;
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.45);
    animation: fadeInUp 1s ease; }
    @media (max-width: 1220px) {
      .individual-case-study-header .individual-case-study-header-container {
        padding: 10% 5%; } }
    .individual-case-study-header .individual-case-study-header-container h3 {
      font-weight: 600;
      animation: fadeInUp 1.1s ease; }
    .individual-case-study-header .individual-case-study-header-container .individual-case-study-header-services:before {
      content: "";
      position: absolute;
      left: 0px;
      top: 0px;
      width: 100%;
      background-color: #fff;
      animation: fadeInUp 1.2s ease; }
    .individual-case-study-header .individual-case-study-header-container span {
      font-size: 14px; }
    .individual-case-study-header .individual-case-study-header-container img {
      width: 150px;
      max-width: 80%; }

.individual-case-study-content {
  width: 35vw;
  height: auto;
  margin: 10% 5vw;
  margin: 10vh 5vw 5vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  animation: fadeInUp 1s ease; }
  @media (max-width: 1220px) {
    .individual-case-study-content {
      width: 100%;
      padding: 2%;
      margin: 2rem 0%; } }
  .individual-case-study-content .individual-case-study-content-desc {
    font-size: 18px; }
    @media (max-width: 1220px) {
      .individual-case-study-content .individual-case-study-content-desc {
        padding: 2rem 2%; } }
  .individual-case-study-content .individual-case-study-content-highlights {
    margin-left: 2rem; }
    .individual-case-study-content .individual-case-study-content-highlights .individual-case-study-content-highlights-details {
      margin-bottom: 2rem; }
    .individual-case-study-content .individual-case-study-content-highlights .individual-case-study-content-header {
      font-weight: 600;
      margin-bottom: 0px; }
    .individual-case-study-content .individual-case-study-content-highlights .individual-case-study-content-sub-header {
      font-size: 18px;
      font-weight: 600;
      color: rgba(0, 0, 0, 0.45); }
  .individual-case-study-content .individual-case-study-more {
    text-align: center;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 600;
    transition: .3s all; }
    .individual-case-study-content .individual-case-study-more a {
      position: relative;
      display: block;
      transition: .3s all; }
      .individual-case-study-content .individual-case-study-more a span {
        position: relative;
        transition: .3s all; }
        .individual-case-study-content .individual-case-study-more a span:after {
          content: "";
          position: absolute;
          bottom: -2px;
          left: 0%;
          width: 100%;
          height: 3px;
          background-color: #000;
          transition: .3s all; }
      .individual-case-study-content .individual-case-study-more a:hover, .individual-case-study-content .individual-case-study-more a:focus, .individual-case-study-content .individual-case-study-more aactive {
        color: #000; }
        .individual-case-study-content .individual-case-study-more a:hover span:after, .individual-case-study-content .individual-case-study-more a:focus span:after, .individual-case-study-content .individual-case-study-more aactive span:after {
          bottom: -6px;
          width: 120%;
          left: -10%; }

/*************** Page - Wins *******************/
.awards-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 2%; }

.awards-list-item {
  margin-bottom: 2rem;
  width: 50%; }

.awards-list-item-header {
  margin-bottom: 0rem;
  font-weight: 600; }
  @media (max-width: 1220px) {
    .awards-list-item-header {
      font-size: 2.4rem;
      color: #242424; } }

.awards-list-item-sub-header {
  color: rgba(0, 0, 0, 0.45);
  font-weight: 600; }

/*************** Page - Secrets / Tips *******************/
.section-secrets .tips-list-item, .section-tips .tips-list-item {
  width: 50%; }

footer {
  display: none; }

/*************** Page - Contact *******************/
.page-contact:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 10px;
  left: 0px;
  z-index: 9;
  background: linear-gradient(180deg, #063552 15%, transparent 15%), linear-gradient(180deg, #058EB4 30%, transparent 30%), linear-gradient(180deg, #1AA4A5 45%, transparent 45%), linear-gradient(180deg, #F6AE29 60%, transparent 60%), linear-gradient(180deg, #F7A78B 75%, transparent 75%), linear-gradient(180deg, #F6411B 90%, transparent 90%), linear-gradient(180deg, #C71A5D 100%, #C71A5D 100%); }

.page-contact .contact-thing-right {
  background-color: black;
  width: 40%;
  height: 100%;
  height: 100vh;
  float: right;
  -webkit-clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%); }

.page-contact footer {
  display: block;
  position: absolute;
  bottom: 0px;
  background: #000;
  color: white;
  width: 80vw;
  height: auto; }
  @media (max-width: 1220px) {
    .page-contact footer {
      width: 100%; } }

.page-contact .footer-contact-page {
  margin: 5% 5% 2%;
  width: auto;
  display: inline-block;
  width: 600px;
  max-width: 100%; }

.page-contact .footer-contact-page-logo {
  margin-bottom: 2rem; }
  @media (max-width: 768px) {
    .page-contact .footer-contact-page-logo {
      text-align: center; } }
  .page-contact .footer-contact-page-logo img {
    width: 250px;
    max-width: 90%;
    opacity: .9; }

.page-contact .footer-contact-page-separator {
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem; }

.page-contact .footer-copyright-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  letter-spacing: 0.25rem;
  font-size: 1.8rem; }
  @media (max-width: 768px) {
    .page-contact .footer-copyright-list {
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-pack: center;
          justify-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
      -ms-flex-align: center;
          align-items: center;
      margin-top: 2rem;
      font-size: 1.4rem; } }

.page-contact .footer-copyright-list-item, .page-contact .footer-copyright-list-item a {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9); }

.contact-form-container {
  height: 100vh;
  margin-bottom: 20vh; }
  @media (max-width: 1220px) {
    .contact-form-container {
      margin-bottom: 60vh; } }

/*************** Video *******************/
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /*padding-top: 35px;*/
  height: 0;
  overflow: hidden; }

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/*************** Hamburger Menu *******************/
.mobile-menu-toggle {
  position: relative;
  position: absolute;
  right: 0px;
  background: transparent;
  z-index: 9;
  height: 50px;
  height: auto;
  padding-top: 1rem; }
  @media (min-width: 1219px) {
    .mobile-menu-toggle {
      display: none; } }

.menu-open .mobile-menu-toggle {
  background-color: #000;
  width: 100%; }

@media (max-width: 1220px) {
  .menu-open section.section {
    display: none; } }

.hamburger {
  display: inline-block;
  cursor: pointer;
  -ms-transform: translateX(0%);
      transform: translateX(0%);
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  height: 100%;
  float: right;
  border-radius: 0px; }

.hamburger:hover {
  opacity: 0.7; }

.hamburger:focus {
  outline: none; }

.hamburger-box {
  width: 40px;
  height: auto;
  display: inline-block;
  position: relative;
  width: 40px;
  height: auto;
  display: inline-block;
  position: relative;
  height: 40px;
  margin-top: 10px; }
  .hamburger-box.light .hamburger-inner {
    background-color: white; }
    .hamburger-box.light .hamburger-inner:before, .hamburger-box.light .hamburger-inner:after {
      background-color: white; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 28px;
  height: 2px;
  background-color: white;
  background-color: #000;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease; }

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block; }

.hamburger-inner::before {
  top: -10px; }

.hamburger-inner::after {
  bottom: -10px; }

.hamburger--slider .hamburger-inner {
  top: 2px; }

.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s; }

.hamburger--slider .hamburger-inner::after {
  top: 20px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0; }

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg); }

.hamburger--slider-r .hamburger-inner {
  top: 2px; }

.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s; }

.hamburger--slider-r .hamburger-inner::after {
  top: 20px; }

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg); }

.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  opacity: 0; }

.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg); }

.little-extra {
  display: block;
  height: 1rem; }

.word {
  position: absolute;
  width: auto;
  opacity: 0;
  color: #fff; }

.letter {
  display: inline-block;
  position: relative;
  float: left;
  transform: translateZ(25px);
  -ms-transform-origin: 50% 50% 25px;
      transform-origin: 50% 50% 25px; }

.letter.out {
  transform: rotateX(90deg);
  transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.letter.behind {
  transform: rotateX(-90deg); }

.letter.in {
  transform: rotateX(0deg);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

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

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

.fadeInUp {
  animation-name: fadeInUp; }
/*# sourceMappingURL=style.css.map */