/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
  - Responsive (ref only)
  - Brand Colours (ref only)
- General
- General Typography
- Buttons & Tooltips
- Navigation
- Mobile Navigation
- Work Styles
- Section Specific
- Forms
- Animations
- Footer

*/

/* Responsive (ref only)
–––––––––––––––––––––––––––––––––––––––––––––––––– 

  /* Larger than phablet */
  @media (min-width: 550px) {
  }

  /* Larger than tablet */
  @media (min-width: 750px) {
  }
  
  /* Menu breakpoint */
  @media (min-width: 900px) {
  }

  /* Larger desktop screens */
  @media (min-width: 1200px) {
  }

  /* Huge desktop screens */
  @media (min-width: 1600px) {
  }



/* Brand Colours
–––––––––––––––––––––––––––––––––––––––––––––––––– */
  :root {
    --cblack: #222B2B;
  }


/* General
–––––––––––––––––––––––––––––––––––––––––––––––––– */
  html, body {    overflow-x: hidden;}
  body, .mob-menu {
    background-color: white;
    margin: 0;
    overflow: auto;
    color:#222B2B;
  }

  ::selection {
    color: white;
    background: var(--cblack);
    text-shadow: none;
  }
  input:focus::selection {
    color: var(--cblack);
    background: white;
  }
  #clients ::selection {
    color: var(--cblack);
    background: white;
  }
  .divider {
    position: relative;
    border-bottom: 1px solid;
    width: 100%;
  }
  .divider.divider-bold {
    border-bottom: .4rem solid;
  }
  #nav-menu .divider.divider-bold {
    display: none;
    margin-bottom: -.4rem;
  }
  /* Menu breakpoint */
  @media (min-width: 900px) {
    #nav-menu .divider.divider-bold {
      display: block;
    }
  }
  .bg-cblack { background-color: var(--cblack); }

  .background {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  section#introduction {
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  /* Menu breakpoint */
  @media (min-width: 900px) {
    section#introduction {
      height: 80vh;
    }
  }
  #features .column {margin-top:3rem;}
  #companies img {
    width: 10rem;
    display: block;
    margin: auto;
    margin-bottom: 4rem;
  }
  .row.flexgrow {
    flex-grow: 1;
  }
  .abs-center {
    margin: auto;
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
  }
  .coming-soon img {
    filter: grayscale(1);
    opacity: 0.4;
  }
  .anchor-offset {
    top: -6rem;
    position: relative;
    display: block;
    visibility: hidden;
  }

/* General Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
  .underline {  border-bottom: 0.22rem solid;}
  .underline.bold {  border-bottom: 0.5rem solid;}
  .underline.thin {  border-bottom: 1px solid;}

  .txt-white   { color: white; }

  .txt-center { text-align: center; }
  .txt-2column {
    column-count: 1;
    column-gap: unset;
  }
  section#capabilities ul li {
    list-style: none;
    line-height: 1.7;
    margin-bottom: 0;
  }
  h1#hello {
    font-size: 18rem;
    margin-left: -1rem;
  }
  h1.huge {    
    font-size: 18vw;
    margin-left: -.25rem;
    line-height: 0.9;
  }
    /* Menu breakpoint */
    @media (min-width: 900px) {
      h1.huge {
        font-size: 18rem;
        margin-left: -.75rem;
        line-height: 0.8;
      }
    }
  .vert-title {
    transform: rotate(-90deg);
    transform-origin: bottom right;
    position: absolute;
    right: 7rem;
    top: 0;
  }

/* Buttons & Tooltips
–––––––––––––––––––––––––––––––––––––––––––––––––– */
  .btn {
      border-top: 1px solid;
      border-bottom: 1px solid;
      margin-bottom: 0;
      text-align: center;
      cursor: pointer;
      vertical-align: middle;
      transition: all 0.25s ease-out;
      letter-spacing: 0.05rem;
      display: inline-table;
  }
  .btn h6 {
    min-width: 10rem;
    padding-bottom: 0.15rem;
  }
  .btn-big {
    line-height: 2.6;
  }
  .btn-centred {
    width: 20%; 
    min-width: 10rem; 
    text-align: center; 
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .xout, .btn-close {    
    cursor: pointer;
    font-size: 3rem;
    color: #242527;
    padding: 0 0.75rem;
    line-height: 3rem;
  }
  .btn-close {
    background-color: rgba(255,255,255,0.25);
    padding: 0.12rem 0.75rem;
    border-radius: 50%;
  }
  .btn-register {
    width: 100%;
    border-radius: 2rem;
    color: #FFFCF6;
    letter-spacing: 0.05rem;
    margin-bottom: 0.5rem;
  }
  .btn-register i {
    margin-right:0.75rem;
    font-size: 1.3rem;
  }
  .btn:active {
    box-shadow: inset 1px 1px 3px -2px rgba(0,0,0,0.8);
  }
  .link-wrap {
    position: relative;
    display: inline;
    cursor: pointer;
  }
  .link-wrap:hover > .hilight.link {
    color: white !important;
    border-color: var(--cblack);
  }
  .link-wrap:hover > .hilight.link:before {
    width: 100%;
    left: 0;
    transition: all .15s ease-out;
  }
  .link-wrap.center {
    margin: 0 auto;
  }
  .link {
    display: inline-block;
    position: relative;
    transition: all .25s ease-out;
    z-index: 1;
  }
  .link.inline {
    display: inline;
  }
  .hilight.link:before {
    content: '';
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    width: 0%;
    height: 100%;
    background: var(--cblack);
    z-index: -1;
    transition: all 0.25s ease-out;
  }


/* Navigation
–––––––––––––––––––––––––––––––––––––––––––––––––– */
  .nav-menu { 
    z-index: 4;
    margin-top: 0;
    position: fixed;
    width: 100%;
    float: right;
    background: white;
    transition: all 0.3s ease-out;
  }
  .nav-menu.shrink, .nav-menu.shrunk {
    margin-top: 0;
    background-color: white;
    height: auto;
    transition: all 0.15s ease-out;
    display: block;
    position: fixed;
    }
    /* Menu breakpoint */
    @media (min-width: 900px) {
      .nav-menu.shrink, .nav-menu.shrunk {
      }
    }
  ul.nav-menu-items {
    display: none;
    justify-content: flex-end;
    margin-bottom: 0;
    padding: 1rem 0;
    border-top: 1px solid transparent;
  }
    /* Menu breakpoint */
    @media (min-width: 900px) {
      ul.nav-menu-items {
        display: flex;
      }
    }
  ul.nav-menu-items a.link-wrap {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
    margin-left: 8%;
  }
  #nav-columns {
    width: 100%;
    visibility: visible;
    opacity: 1;
    transition: 0.25s ease-out all;
    display: grid;
  }
  #nav-container {
    width: 100%;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    transition: 0.25s ease-out all;
  }
    /* Menu breakpoint */
    @media (min-width: 900px) {
      #nav-container {
        padding-top: 2rem;
        padding-bottom: 2rem;
      }
    }
  #mob-nav-logo {
    width: 5.4rem;
    display: block;
    position: fixed;
    padding-top: 1.2rem;
  }
    /* Menu breakpoint */
    @media (min-width: 900px) {
      #mob-nav-logo {
        display: none;
      }
    }
  #nav-logo {
    display: none;
  }
    /* Menu breakpoint */
    @media (min-width: 900px) {
      #nav-logo {
        display: block;
      }
    }
  .shrink #nav-container {
    padding-top: 0;
    padding-bottom: 0;
    transition: 0.25s ease-out all;
  }
  .nav-menu li, .nav-menu-items li { 
    font-family: 'DrescherGroteskBTSemiBoldWXX', 'Helvetica Neue', 'HelveticaNeue', Arial, Helvetica, sans-serif;
    font-size: 2.4rem;
    display: inline-flex;
    list-style: none;
    color: var(--cblack);
    margin-bottom: 0;
    letter-spacing: 0.08rem;
    line-height: 2;
    padding: 0 0.4rem;
  }
  #logo-casam {
    position: relative;
    display: block;
    width: 14rem;
    top: 2rem;
    transition: 0.25s ease-out all;
  }
  #logo-creative {
    position: relative;
    display: block;
    width: 9.2rem;
    top: 2.2rem;
    transition: 0.25s ease-out all;
  }
    /* Menu breakpoint */
    @media (min-width: 900px) {
      #logo-creative, #logo-casam {
        position: fixed;
        transition: 0.25s ease-out all;
      }
      #logo-creative {
        top: 7rem;
        margin-left: 4.8rem;
      }
      .shrink #logo-creative {    
        margin-left: 11rem;       
        width: 12rem;
        top: 2.5rem;
      }
      .shrink #logo-casam {
        width: 10rem;
        top: 1.5rem;
      }
    }
  .nav-menu.white #logo-casam, .nav-menu.white #logo-creative {fill: white;}
  #logo-casam, #logo-creative, .nav-menu.white.shrink #logo-casam, .nav-menu.white.shrink #logo-creative   {fill: var(--cblack);}
  

/* Mobile Navigation
–––––––––––––––––––––––––––––––––––––––––––––––––– */
  .mob-menu {
    display: none;
    position: fixed;
    background-color: white;
    width: 100%;
    height: 100vh;
    z-index: 4;
  }
  .mob-menu-inner {
      height: 100%;
      height: 100vh;
  }
  .hamburger {
    position: fixed;
    z-index: 5;
    width: auto;
    right: 0;
    top: 0;
    padding: 2rem;
  }
  /* Larger than tablets */
  @media (min-width: 750px) {
    .hamburger {
      padding: 2rem 1.5rem;
      right: 3.5rem;
    }
  }
  .mob-menu ul.nav-menu-items {
    display: flex;
    flex-direction: column;
  }
  .mob-menu ul.nav-menu-items a.link-wrap {
    padding: 0;
    margin: 0;
    text-align: right;
    display: inline-block;
  }
  .mob-menu .nav-menu-items li {
    font-size: 4.2rem;
    line-height: 6.8rem;
  }
  .mob-menu .social-menu a.link-wrap {
    display: inline-block;
    text-align: right;
  }
    /* Mobile Footer
    –––––––––––––––––––––––––––––––––––––––––––––––––– */
      .mob-footer {
        display: block;
      }
      ul.mob-soc {
        position: relative;
        bottom: 0;
        padding-top: .75rem;
        padding-bottom: .75rem;
        text-align: right;
        margin-right: 1.25rem;
        margin-bottom: 0;
      }
      ul.mob-soc li {
        font-size: 1.25rem;
        list-style: none;
        display: inline-block;
        padding: 0 1rem;
        transition: 0.2s ease-out all;
        color: white;
        margin-bottom: 0;
      }
      ul.mob-soc li:hover {
        transition: 0s;
      }
        /* Larger than tablets */
        @media (min-width: 750px) {
          ul.mob-soc li {
            font-size: 2rem;
          }
          ul.mob-soc {
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
          }
        }
      .mob-footer p {
        padding: 1.25rem 0;
        text-align: center;
        line-height: 1.2;
        border-top: 1px solid white;
        margin-bottom: 0;
        font-size: 0.8rem;
        letter-spacing: 0.025rem;
      }
        /* Larger than tablets */
        @media (min-width: 750px) {
          .mob-footer p {
            padding: 2rem 0;
            line-height: 1;
          }
        }
 
/* Work Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
  #featured-work a {
      display: flex;
      flex-direction: column;
  }
  section#masthead {    
    min-height: 50rem;
    height: calc(60vh + 4rem);
    border-top: none;
    overflow: hidden;
    display: flex;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: translate3d(0,0,0);
    width: 100%;
    position: fixed;
    z-index: -3;
    top: 0;
  }
    /* Menu breakpoint */
    @media (min-width: 900px) {
      section#masthead {    
        height: calc(100vh - 10.9rem);
        top: 10.9rem;
      }
    }

  .masthead-spacer {
    height: 50rem;
    height: 60vh;
  }
    /* Menu breakpoint */
    @media (min-width: 900px) {
      .masthead-spacer {
        height: 90rem;
        height: 100vh;
      }
    }
  section#masthead #logo {
    width: 20%;
    min-width: 22rem;
    max-width: 32rem;
    margin: auto;
  }
  section#masthead #logo.med {
    width: 25%;
    min-width: 24rem;
    max-width: 45rem;
    margin: auto;
  }
  section#masthead #logo.big {
    width: 30%;
    min-width: 26rem;
    max-width: 60rem;
    margin: auto;
  }
  .card {
    min-height: 48rem;
    height: 60vw;
    display: flex;
    border-radius: 0.4rem;
  }
  .card.small {
    min-height: 24rem;
    height: 30vw;
    display: flex;
    border-radius: 0.4rem;
  }
  .column img.card-logo {    
    max-width: 42rem;
    width: 75%;
    margin: auto;
  }
  .column img.card-logo.big {    
    max-width: 50rem;
    width: 75%;
    margin: auto;
  }
    /* Larger than tablet */
        @media (max-width: 749px) {
      .text-card h1 {
        font-size: 10vw;
        line-height: 1.25;
      }
    }
  .text-card .txt-wrap {
    margin: auto;
    max-width: 110rem;
  }
  .text-card {
    padding: 8rem 2rem;
  }
  .text-card.extra-spaced {
    padding: 8rem 0rem;
  }
  .text-card.overlay-top {
    margin-top: 0;
  }
    /* Larger than tablet */
    @media (min-width: 750px) {
      .text-card.overlay-top {
        margin-top: -32rem;
      }
      .text-card {
        padding: 12rem 4rem;
      }
      .text-card.extra-spaced {
        padding: 24rem 4rem;
      }
    }
  section.contents .row, section.contents .column.empty {
    margin-bottom: 0;
  }
  section.contents .column {
    margin-bottom: 4rem;
  }
    /* Larger than tablet */
    @media (min-width: 750px) {
      section.contents .row {
        margin-bottom: 0;
        }
      section.contents .column {
        margin-bottom: 6rem;
      }
    }
    /* Larger desktop screens */
    @media (min-width: 1200px) {
      section.contents .row {
        margin-bottom: 6rem;
      }
      section.contents .column {
        margin-bottom: 0;
      }
    }
  .mobile-video {
    background-image: url('../images/work/maple-water-mobile-frame.png');
    background-repeat: no-repeat;
    background-position: center;
    height: 676px;
    width: 340px;
    margin: auto;
  }
  .mobile-video video {
    margin-top: 5.8rem;
    margin-left: 1rem;
    border-radius: 1.4rem;
    display: block;
    z-index: -1;
    position: absolute;
  }
  .row.work-label h2 {
    margin-bottom: 0.2rem;
    line-height: 1;
    margin-top: 1.7rem;
  }
  .row.work-label p {
    margin-bottom: 3.4rem;
    line-height: 2.6rem;
  }


/* Section specific
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.row.kayak-inserts {
    width: 100%;
    margin-left: 0;
    display: flex;
    margin-top: 5rem;
    flex-wrap: wrap;
}
.row.kayak-inserts img {
    margin: 0 1.5rem;
    box-shadow: 1px 3px 4px rgba(0,0,0,0.2);
    width: calc(50% - 3rem);
    height: 100%;
}
.row.kayak-inserts img:nth-of-type(1),
.row.kayak-inserts img:nth-of-type(2),
.row.kayak-inserts img:nth-of-type(3) {
  margin-top: 3rem;
}
.row.kayak-inserts img:nth-of-type(4),
.row.kayak-inserts img:nth-of-type(5),
.row.kayak-inserts img:nth-of-type(6) {
  margin-top: 3rem;
  margin-bottom: 0;
}
  /* Larger than phablet */
  @media (min-width: 550px) {
    .row.kayak-inserts img {
        margin: 0 1.5rem;
        width: calc(33% - 3rem);
    }
    .row.kayak-inserts img:nth-of-type(1),
    .row.kayak-inserts img:nth-of-type(2),
    .row.kayak-inserts img:nth-of-type(3) {
      margin-top: 3rem;
    }
    .row.kayak-inserts img:nth-of-type(4),
    .row.kayak-inserts img:nth-of-type(5),
    .row.kayak-inserts img:nth-of-type(6) {
      margin-top: 3rem;
      margin-bottom: 4rem;
    }
  }
  /* Larger desktop screens */
  @media (min-width: 1200px) {
    .row.kayak-inserts img:nth-of-type(4),
    .row.kayak-inserts img:nth-of-type(5),
    .row.kayak-inserts img:nth-of-type(6) {
      margin-bottom: 22rem;
    }
  }
  
  /* Menu breakpoint */
  @media (min-width: 900px) {
    .row.kayak-inserts {
          width: calc(100% - 6rem);
          margin: 0 3.5rem;
    }
  }

  /* Larger desktop screens */
  @media (min-width: 1200px) {
    .row.kayak-inserts {
        width: 115%;
        margin-left: -5%;
        margin-top: 10rem;
        flex-wrap: nowrap;
    }
    .row.kayak-inserts img {
        margin: 0 1.5rem;
        width: auto;
    }
    .row.kayak-inserts img:nth-of-type(1),
    .row.kayak-inserts img:nth-of-type(2),
    .row.kayak-inserts img:nth-of-type(3) {
      margin-top: 22rem;
    }
    .row.kayak-inserts img:nth-of-type(4),
    .row.kayak-inserts img:nth-of-type(5),
    .row.kayak-inserts img:nth-of-type(6) {
      margin-top: 0;
      margin-bottom: 22rem;
    }
  }
  #maple-water-splash {
    position: absolute;
    max-width: 118rem;
    display: block;
    margin: auto;
    left: 0;
    right: 0;
    z-index: -2;
    bottom: 0;
  }
  #chevron {
    display: none;
  }
    /* Menu breakpoint */
    @media (min-width: 900px) {
      #chevron {
        display: block;
        margin-top: -20rem;
        margin-bottom: -15rem;
        z-index: 2;
      }
    }
  .column.casam-letters {
    display: none;
  }
    /* Menu breakpoint */
    @media (min-width: 750px) {
      .column.casam-letters {
        display: flex;
      }
    }

  img.casam-letters {
    width: 8rem;
    display: inline-block;
    position: absolute;
    user-drag: none; 
    user-select: none;
  }
  .casam-letters#c  {  transform: translate(-2rem, 10rem);  }
  .casam-letters#a  {  transform: translate(16vw, -3vw);  }
  .casam-letters#s  {  transform: translate(10vw, 14vw);  }
  .casam-letters#aa {  transform: translate(36vw, 18vw);  }
  .casam-letters#m  {  transform: translate(34vw, 26vw);  }
    /* Menu breakpoint */
    @media (min-width: 750px) {
      .casam-letters#c  {  transform: translate(-2rem, 20rem);  }
      .casam-letters#a  {  transform: translate(16vw, 0vw);  }
      .casam-letters#s  {  transform: translate(10vw, 32vw);  }
      .casam-letters#aa {  transform: translate(30vw, 42vw);  }
      .casam-letters#m  {  transform: translate(26vw, 72vw);  }
    }
    /* Larger desktop screens */
    @media (min-width: 1200px) {
      .casam-letters#c  {  transform: translate(-2rem, 10rem);  }
      .casam-letters#a  {  transform: translate(16vw, -3vw);  }
      .casam-letters#s  {  transform: translate(10vw, 14vw);  }
      .casam-letters#aa {  transform: translate(36vw, 18vw);  }
      .casam-letters#m  {  transform: translate(34vw, 26vw);  }
    }

  section#clients h1{
    margin-right: 0;
  }
  /* Menu breakpoint */
  @media (min-width: 900px) {
    section#clients h1{
      margin-right: 8%;
    }
  }

  section#masthead #mercedes-benz-logo {    
    width: 15rem;
    position: absolute;
    top: 10%;
    left: 7%;
  }
  .column.pp h3 {
    margin-top: 4rem;
  }
  
/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
  #mc_embed_signup_scroll .column {
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
  }
  label {
    white-space: nowrap;
    margin-bottom: 0;
    line-height: 5.1rem;
    top: -3rem;
    width: 0;
    position: absolute;
  }
  input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea {
    width: 100%;
    height: 3.4rem;
    padding-left: 0.5rem;
  }
  .mc-field-group {
      position: relative;
      float: left;
      width: 100%;
      margin: 2rem 0;
  }
  #mc-embedded-subscribe.button {
    font-family: 'DrescherGroteskBTSemiBoldWXX', 'Helvetica Neue', 'HelveticaNeue', Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.08rem;
    color: var(--cblack);
    background: transparent;
    border: none;
    border-bottom: 0.22rem solid;
    border-radius: 0;
    line-height: 3.4rem;
    padding: 0;
    cursor: pointer;
    transition: 0.3s ease-out all;
    float: right;
    margin-top: 1.2rem;
  }
    .mc-field-group.input-group { border-bottom: none; margin-bottom: 0;}

  .newsletter {
    display: none;
  }
  .newsletter.is-active {
    display: block;
  }
  h5.disclaimer {
    float: left;
  }


/* Animations
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -40%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {  animation-name: fadeInDown;}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 70%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {  animation-name: fadeInUp;}


@keyframes scrollInUp {
  from {
    transform: translate3d(0, 70%, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.scrollInUp {  animation-name: scrollInUp;}


@keyframes scrollInLeft {
  from {
    transform: translate3d(-130%,0,0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.scrollInLeft {  animation-name: scrollInLeft;}


@keyframes scrollInRight {
  from {
    transform: translate3d(50%,0,0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.scrollInRight {  animation-name: scrollInRight;}

.delay-02   { animation-delay:0.2s;}
.delay-03   { animation-delay:0.3s;}
.delay-04   { animation-delay:0.4s;}
.delay-05   { animation-delay:0.5s;}
.delay-08   { animation-delay:0.8s;}
.delay-10   { animation-delay:1.0s;}
.delay-12   { animation-delay:1.2s;}
.delay-15   { animation-delay:1.5s;}


/* Footer
–––––––––––––––––––––––––––––––––––––––––––––––––– */
  footer {
      z-index: 1;
    }
  footer .column {
    padding-top: 0;
    padding-bottom: 2rem;
  }
    /* Larger than tablet */
    @media (min-width: 900px) {
      footer .column {
        padding-top: 4rem;
        padding-bottom: 2.5rem;
      }
    }
  ul.footer-menu {
    padding-top: 2rem;
    border-top: 1px solid #242527;
  }
  ul.footer-menu .link {
      border-bottom: none;
      color: #242527;
  }
  ul.footer-menu li {
      font-size: 13.5vw;
      letter-spacing: -.1rem;
      font-family: 'AppliedSansPro-Bold', 'Helvetica Neue', 'HelveticaNeue', Arial, Helvetica, sans-serif;
      list-style: none;
      color: #242527;
      line-height: 0.95;
      margin: 0;
      overflow: hidden;
      display: block;
      cursor: initial;
  }
      /* Larger than phablet */
    @media (min-width: 550px) {
      ul.footer-menu li {
          font-size: 4.2rem;
      }
    }
  ul.footer-social {
    margin-left: -0.5rem;
    margin-bottom: 0;
  }
  ul.footer-social li {    
    list-style: none;
    display: inline;
    padding: 0.4rem;
    margin: 0 0.2rem;
    font-size: 1.4rem;
    vertical-align: top;
    border-bottom: 0 solid transparent;
    transition: 0.3s ease-out all;
    position: relative;
  }
  .footer-social p {
    display: inline;
    margin: 0 .5rem;
    pointer-events: none;
  }
  .footer-social i {
      font-size: 1.8rem;
      color: white;
  }
  .footer-social i:hover {
    color: var(--gray);
    transition: 0s;
  }
  .footer-social a:hover {
    background-color: transparent;
    padding-right: 0;
  }
  footer h1 {
    margin-bottom: 0.4rem;
  }
  footer h6 {
    font-size: 1.1rem; 
    letter-spacing: 0.3rem; 
    margin-top:1.4rem;
  }
  footer h2 {
    line-height: 1.2;
  }
  footer ul.submenu li {
    text-transform: uppercase;
    display: block;
    cursor: initial;
    margin-bottom: 0.25rem;
  }
  ul.submenu a.link-wrap {
    padding: .25rem 0;
    margin-bottom: 0;
  }
  .footer-logo img {
    width: 4.5rem;
    margin: auto;
    display: block;
  }
  .footer-logo {
    background-color: white; 
    z-index: 2; 
    outline: 1rem white solid;
    transition: 0.15s ease-out all;
    cursor: pointer;
  }
  .footer-logo:hover {
    margin-top:-0.25rem;
    margin-bottom: 0.25rem;
    transition: 0.15s ease-out all;
  }