.body {
    background-color: #101010;
    color: #f2f2f2;
}

body {
    min-height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    overflow-x: hidden;
    overflow-y: scroll;
}
    
* {
    box-sizing: border-box;
}

/* Custom Scrollbar for Webkit Browsers */
body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(160deg, #3c3c3c, #2a2a2a);
    border-radius: 20px;
    border: 2px solid #1a1a1a; /* Gives a curved cutout look */
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.6), 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(160deg, #505050, #3a3a3a);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(255, 255, 255, 0.05);
}

body::-webkit-scrollbar-track {
    background: #121212;
    border-radius: 20px;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.03);
}

/* Firefox Compatibility */
* {
    scrollbar-width: thin;
    scrollbar-color: #3c3c3c #121212;
}



    
.gradient {
  background-image: radial-gradient(circle closest-corner at 50% 0, #f2f2f226, #0000); /* Gradient on top */
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}




.section-nav {
    z-index: 10;
    height: 168px;
    padding: clamp(8px, 3%, 24px);
    display: flex;
    position: fixed;
    inset: 0% 0% auto;
    transition: height 0.3s ease, padding 0.3s ease;  /*NEW*/
    opacity: 0; /* Initially hidden */
    animation: fadeIn 1s ease-out forwards; /* Apply animation */
  }

  @keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px); /* Slide in from top */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Set back to normal position */
    }
}
  
.nav-bar {
    flex: 1;
    justify-content: space-between;
    align-items: center;
    height: 56px;
    display: flex;
    flex-wrap: wrap; 
    gap: 16px;
  }

  .nav-left-wrapper {
    flex: 1;
    align-items: center;
    height: 56px;
    display: flex;
  }
  
  /* Logo and Left Section */
  .logo-text {
    grid-row-gap: 8px;
    flex-direction: column;
    justify-content: center;
    margin-top: 1px;
    display: flex;
    cursor: pointer;
  }
  
  .text-logo {
    font-family: Neue Montreal, sans-serif;
    font-size: clamp(16px, 2vw, 20px); /* Dynamic font size */
    font-weight: 500;
    line-height: 20px;
    display: inline-block;
  }
  
  .text-underlogo {
    color: #f2f2f280;
    font-family: Neue Montreal, sans-serif;
    font-size: 12px;
    line-height: 12px;
    display: block;
  }
  
  /* Wrapper for nav-pill */
  .nav-pill-wrapper {
    flex-direction: column;
    justify-content: center;
    width: 220px;
    height: 56px;
    display: flex;
    position: relative;
  }
  
  /* Glow indicator below the nav-pill */
  .nav-indicator-glow {
    background-color: rgb(236, 236, 236);
    border-radius: 2px;
    width: 24px;
    height: 4px;
    position: absolute;
    box-shadow: 0 2px 25px 2px #fff;
    transition: all 0.3s ease;
    display: none; /* Hidden by default */
  }
  
  /* Main pill design */
  .nav-pill {
    pointer-events: auto;
    backdrop-filter: blur(15px);
    background-color:rgb(38, 36, 36);
    border: 1px solid #f2f2f21a;
    border-radius: 24px;
    justify-content: space-around;
    align-items: center;
    width: 249px;
    height: 48px;
    padding-left: 12px;
    padding-right: 12px;
    transition: box-shadow 0.8s cubic-bezier(0.23, 1, 0.32, 1), 
                border 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    position: relative;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1); /* Subtle default shadow */
    animation: subtle-glow 4s infinite ease-in-out;
    /* flex: 1 1 auto;  */
  }
  
  .nav-pill:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2), /* Outer glow */
                0 8px 20px rgba(0, 0, 0, 0.15); /* Retain depth */
    transition: box-shadow 1.5s ease; /* Smooth transition */
  }
  
  @keyframes subtle-glow {
    0% {
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.1), 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    50% {
      box-shadow: 0 0 25px rgba(255, 255, 255, 0.2), 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    100% {
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.1), 0 8px 20px rgba(0, 0, 0, 0.15);
    }
  }
  
  /* Individual toggle buttons inside nav-pill */
  .nav-toggle {
    color: #f2f2f2;
    text-align: center;
    border-radius: 18px;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 36px;
    padding: 0 16px;
    text-decoration: none;
    transition: all .2s cubic-bezier(.165, .84, .44, 1);
    display: flex;
  }
  
  .nav-toggle:hover {
    background-color: #fff3;
    color: #f2f2f2;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .text-nav-toggle {
    text-align: center;
    font-family: Neue Montreal, sans-serif;
    font-weight: 500;
    line-height: 18px;
  }
  
  /* Indicator for active nav-pill */
  .nav-indicator-pill {
    background-color: #f2f2f20d;
    border-radius: 18px;
    width: 0;
    height: 36px;
    position: absolute;
    transition: all 0.3s ease;
    display: none; /* Hidden by default */
  }
  
  .nav-right-wrapper {
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    height: 56px;
    display: flex;
  }
  
  /* Right Section */
  .chip-socials-wrapper {
    grid-column-gap: 1px;
    align-items: center;
    display: flex;
  }
  
  .chip-socials {
    border-radius: 24px;
    justify-content: center;
    align-items: center;
    height: clamp(40px, 6vh, 56px);
    padding-left: 16px;
    padding-right: 12px;
    text-decoration: none;
    transition: background-color .3s cubic-bezier(.165, .84, .44, 1);
    display: flex;
    gap: 12px;
    max-width: 100%;
  }
  
  
  .chip-socials i {
    font-size: 20px;
    color: #f2f2f2; /* Ensure LinkedIn icon is white */
  }
  
  /* Adjust GitHub icon color */
  .chip-socials img {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .chip-socials:hover {
    background-color: #222;
    color: #fff;
    transform: translateY(-1px);
    transition: transform 0.6s ease;
  }

  .chip-socials img:hover,
.chip-socials i:hover {
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
  transform: scale(1.1);
}

.fa-linkedin:before {
    content: "\f08c";
    transition: transform 0.3s ease, filter 0.3s ease;
}
  
 /* Adjust the arrow icon color */
.icon-external {
    width: 12px;
    height: 12px;
    filter: none; /* Remove any filter that may affect color */
    fill: rgb(242, 242, 242); /* Set the color explicitly */
    transition: filter 0.3s ease; /* Smooth color transition */
}

.text-socialnav {
    color: #f2f2f2;
    font-family: Neue Montreal, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-decoration: none;
  }

  .nav-menu-button {
    pointer-events: auto;
}

 .nav-menu-button {
    display: none;
}

.mobile-popup-menu{
  display: none;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-popup-menu.show {
  opacity: 1;
  transform: translateY(0);
  background: rgba(0, 0, 0, 0.8); /* Add a subtle background */
    border-radius: 8px;
    padding: 8px;
    display: block;
}
@media screen and (max-width: 350px){
.nav-menu-button{
  position: relative;
  left: 5px;
}
}

@media screen and (max-width: 476px){
  .nav-menu-button {
    width: 60px;
    height: 60px;
}

.icon-contact{
  position: relative;
  top: 10px;
}
}

  @media screen and (max-width: 501px) {
     .nav-pill-wrapper {
      position: absolute; /* Positioning it to the left */
      left: 15px; /* Adjust spacing as needed */
      top: 20px; /* Adjust vertical alignment as needed */
  }

  .nav-right-wrapper {
    top: -4px;
    position: relative;
    left: 299px;
}
    .nav-menu-button {
      z-index: 1;
      grid-column-gap: 8px;
      backdrop-filter: blur(10px);
      justify-content: center;
      align-items: center;
      display: flex;
      position: relative;
      box-shadow: inset 0 0 10px #0000001a, 0 4px 16px #00000040;
      margin-left: auto;
      top: 1px;
      position: relative;
      left: 105px;
  }
  
    .section-nav {
        background-image: linear-gradient(#0009, #0000);
        height: auto;
        padding: 20px 16px 48px;
        inset: 0% 0% auto;
    }

    .nav-left-wrapper {
        display: none;
    }

    .logo-text {
        display: none;
    }

    .text-logo {
        padding-bottom: 2px;
        font-size: 16px;
        line-height: 20px;
    }

    .nav-pill {
        box-shadow: 0 12px 30px #0003;
    }

    /* .nav-right-wrapper {
        flex: 1;
    } */
    .chip-socials {
        background-color: #f2f2f20d;
        border-radius: 100px;
        justify-content: center;
        /* align-self: stretch; */
        height: 56px;
    }

    .text-socialnav {
        font-size: 18px;
    }

    .nav-menu-button{
        display: block;
    }
    .chip-socials-wrapper{
        display: none;
    }

    .mobile-popup-menu {
      top: 84px;
      right: 16px;
  }

  .text-popup-menu {
    letter-spacing: .2px;
    font-family: Neue Montreal, sans-serif;
}

.nav-pill-wrapper {
  flex-direction: column;
  width: 100%;
  flex-grow: 1; /* Allow it to take remaining space */
  justify-content: flex-start; /* Align items to the start */
}
.nav-toggle {
  width: 100%;
  text-align: center;
}

.nav-bar {
  flex-wrap: nowrap; /* Prevent wrapping */
  align-items: center; /* Align vertically */
  gap: 30px; /* Adjust spacing */
}

  }
  
@media screen and (max-width: 767px) {
    .section-nav {
        height: 144px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .nav-menu-button {
      backdrop-filter: blur(8px);
      background-color: #f2f2f20d;
      border: 1px solid #f2f2f21a;
      border-radius: 100px;
      justify-content: center;
      align-items: center;
      width: 48px;
      height: 48px;
      transition: all .2s cubic-bezier(.165, .84, .44, 1);
      display: flex;
      box-shadow: 0 4px 15px #00000040;
  }

    .nav-bar {
        grid-column-gap: 8px;
        
    }

    .logo-text {
        grid-row-gap: 4px;
    }

    .text-logo {
        letter-spacing: -.5px;
        font-size: 18px;
        line-height: 22px;
    }

    .nav-right-wrapper {
        flex: 0 auto;
    }

    .chip-socials-wrapper {
        display: none;
    }

    .icon-contact {
        width: 28px;
        position: relative;
        top: 10px;
        left: 9px;
    }

    .icon-contact-close {
        opacity: 0;
        width: 28px;
        position: absolute;
        right: 8px;
        top: 10px;
    }

    .chip-socials-wrapper{
        display: none;
    }

    .nav-menu-button{
        display: block;
    }

    .mobile-popup-menu {
      z-index: 10;
      grid-row-gap: 4px;
      backdrop-filter: blur(20px);
      background-color: #f2f2f20d;
      border: 1px solid #f2f2f21a;
      border-radius: 16px;
      flex-direction: column;
      align-items: flex-start;
      width: 160px;
      padding: 8px;
      display: none;
      position: fixed;
      inset: 88px 24px auto auto;
      overflow: hidden;
      box-shadow: 0 10px 30px #0000004d;
  }

  .popup-menu-item {
    grid-column-gap: 4px;
    color: #f2f2f2;
    border-radius: 10px;
    justify-content: space-between;
    align-self: stretch;
    align-items: center;
    padding: 12px 14px;
    text-decoration: none;
    transition: all .2s cubic-bezier(.165, .84, .44, 1);
    display: flex;
}

.text-popup-menu {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.icon-popup-external {
  width: 16px;
}


}

@media screen and (max-width: 991px) {
    .section-nav {
        padding-left: 48px;
        padding-right: 48px;
    }

    .text-socialnav {
        line-height: 18px;
    }

    .nav-bar{
      justify-content: space-evenly;
      gap: 24px; /* Increased the gap between nav elements */
      
    }

    .nav-pill-wrapper{
      width: 205px;
      height: 49px;
    }

    .nav-right-wrapper{
        position: relative;
        left: 55px;
    }

      .text-logo {
        font-size: clamp(18px, 2.5vw, 22px); 
    }

   
}

.icon-contact, .icon-contact-close {
  transition: opacity 0.3s ease, transform 0.3s ease;
}





.section-info-hero.desktop {
    background-image: radial-gradient(circle closest-corner at 50% 0, #f2f2f226, #0000);
    padding-top: 172px;
}

.section-info-hero {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 120px;
    display: flex;
    position: relative;
}

.hero-fade {
    z-index: 5;
    background-image: linear-gradient(to bottom, #10101000, #101010 60%);
    flex-direction: column;
    align-items: center;
    height: 200px;
    padding-top: 48px;
    display: flex;
    position: absolute;
    inset: auto 0% 0%;
}

.container-info.hero {
    grid-row-gap: 80px;
    animation: fadeUpP 1s ease-out; /* Apply animation with 1s duration */
}

@keyframes fadeUpP {
    0% {
        opacity: 0;
        transform: translateY(20px); /* Start slightly below */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* End at the original position */
    }
}

.container-info {
    z-index: 1;
    flex-direction: column;
    width: 882px;
    display: flex;
    position: relative;
}

.overline-info-wrapper {
    grid-row-gap: 24px;
    flex-direction: column;
    display: flex;
}

.overline-wrapper {
    grid-column-gap: 12px;
    align-self: flex-start;
    align-items: center;
    display: flex;
}

.icon-section-dot {
    background-color: #f2f2f2;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 20px #fff;
}

.text-projectpage-overline {
    color: #f2f2f266;
    text-align: left;
    letter-spacing: 1.5px;
    margin-top: 1px;
    font-family: Neue Montreal, sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 19px;
}

.text-hero.info-hero {
    text-align: left;
    letter-spacing: -1px;
    text-shadow: 0 4px 10px #0057ff33, 0 -4px 10px #ff5a0026, 0 0 30px #fff3;
    font-size: 48px;
    font-weight: 500;
    line-height: 110%;
}
.text-hero {
    font-family: Neue Montreal, sans-serif;
}

.text-info-hero-serif {
    background-image: linear-gradient(to bottom, #f2f2f2 50%, #f2f2f233);
    letter-spacing: -1px;
    text-shadow: 0 4px 6px #0057ff26, 0 -4px 6px #ff5a001a, 0 0 20px #ffffff40;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: Gloock, sans-serif;
    font-style: italic;
}


.double-column-block.info-hero {
    align-items: start;
}
.double-column-block {
    grid-column-gap: 48px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-self: stretch;
    display: grid;
}

.content-info-hero {
    grid-row-gap: 64px;
    flex-direction: column;
    display: flex;
}

.container-hero-image.info-hero {
    width: auto;
}

.container-hero-image {
    z-index: 3;
    position: relative;
}

.glare-item-top.outer-edge {
    z-index: 1;
    background-image: linear-gradient(to right, #0000 5%, #fffc 35%, #fff 50%, #fffc 65%, #0000 95%);
    position: absolute;
    inset: 0% 0% auto;
}

.glare-item-top {
    height: 1px;
    margin-bottom: -1px;
}

.window-outline.info-hero {
    box-shadow: inset 0 0 8px #0006, 0 0 60px #0003, 0 30px 80px #00000080;
}

.window-outline {
    backdrop-filter: none;
    outline-offset: -1px;
    background-image: radial-gradient(circle farthest-side at 50% 0, #f2f2f233, #0000);
    border-radius: 24px;
    outline: 1px solid #f2f2f226;
    padding: 8px;
    overflow: hidden;
}

.glare-item-top.hero-inner {
    height: 2px;
    margin-bottom: -2px;
}
.glare-item-top {
    background-image: linear-gradient(to right, #0000 10%, #fff 50%, #0000 90%);
}

.window-main {
    backdrop-filter: blur(20px);
    border: 1px solid #f2f2f24d;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: inset 0 0 10px #0000001a, 0 0 12px #0006;
}

.window-bar.info-hero {
    background-color: #f2f2f233;
    background-image: none;
    border-bottom: 1px solid #f2f2f24d;
    border-radius: 0;
    display: none;
}
.window-bar {
    backdrop-filter: blur(40px);
    height: 40px;
    padding-left: 20px;
    padding-right: 12px;
    box-shadow: 0 10px 20px 4px #0003;
}

.window-dots-wrapper {
    grid-column-gap: 10px;
    display: flex;
}

.dot {
    background-color: #f46b5d;
    width: 12px;
    height: 12px;
}

.dot.red {
    border: 1px solid #10101040;
    border-radius: 100px;
    box-shadow: 0 0 20px 2px #f46b5d;
}

.dot.yellow {
    background-color: #f9bd4e;
    border: 1px solid #10101040;
    border-radius: 100px;
    box-shadow: 0 0 20px 2px #f9bd4e;
}

.dot.green {
    background-color: #57c353;
    border: 1px solid #10101040;
    border-radius: 100px;
    box-shadow: 0 0 20px 2px #57c353;
}

.window-content.info-hero {
    padding: 0;
}
.window-content {
    z-index: 5;
    grid-column-gap: 32px;
    grid-row-gap: 0px;
    background-color: #101010b3;
    flex-direction: column;
    justify-content: space-around;
    align-items: stretch;
    display: flex;
    position: relative;
}

img {
    vertical-align: middle;
    max-width: 100%;
    display: inline-block;
}
img {
    border: 0;
}

.text-projectpage-body.info-hero {
    padding-left: 24px;
    padding-right: 24px;
    font-family: Neue Montreal, sans-serif;
    line-height: 150%;
}
.text-projectpage-body {
    color: #f2f2f299;
    letter-spacing: .4px;
    flex: 1;
    font-size: 16px;
    font-weight: 300;
}

.text-body-info-emphasis {
    color: #f2f2f2e6;
    font-size: 18px;
    font-weight: 500;
}

.content-info-hero.has-offset {
    padding-top: 48px;
}

.content-info-hero {
    grid-row-gap: 64px;
    flex-direction: column;
    display: flex;
}

.info-hero-ending-wrapper {
    grid-row-gap: 8px;
    flex-direction: column;
    display: flex;
}

.signature-wrapper {
    padding-left: 24px;
    padding-right: 24px;
}

.info-signature {
    width: 180px;
    padding-top: 20px;
}

.content-info-hero.has-offset {
    padding-top: 48px;
}

.content-info-hero {
    grid-row-gap: 64px;
    flex-direction: column;
    display: flex;
}

.container-hero-image.info-hero {
    width: auto;
}
.container-hero-image {
    z-index: 3;
    position: relative;
}


.hero-noise {
    z-index: 0;
    opacity: .2;
    mix-blend-mode: overlay;
    background-image: url(https://cdn.prod.website-files.com/63dcb6e…/644af02…_noise-overlay-2.png);
    background-position: 0 0;
    background-size: 200px;
    display: block;
    position: absolute;
    inset: 0%;
}

/* MOBILE CSS */

.section-info-hero.mobile {
    display: none;
    background-image: radial-gradient(circle closest-corner at 50% 0, #f2f2f226, #0000);
}

@media screen and (max-width: 767px) {

    .section-info-hero.mobile {
        background-image: radial-gradient(circle farthest-side at 50% 0, #f2f2f226, #0000);
        display: flex;
    }

    .section-info-hero {
            padding: 144px 24px 64px;
        }

        .hero-fade.info-hero {
            display: none;
        }
    
        .hero-fade {
            height: 24vw;
            padding-top: 4vw;
        }

        .container-info.hero {
            grid-row-gap: 64px;
        }

        .container-info {
            grid-row-gap: 48px;
        }

        .text-hero.info-hero {
            letter-spacing: -.15vw;
            font-size: 8vw;
            line-height: 110%;
        }

        .text-hero {
            letter-spacing: -1.5px;
            font-size: 8.4vw;
        }

        .info-hero-stack-mobile {
            grid-row-gap: 64px;
            flex-direction: column;
            display: flex;
        }

        .window-outline.info-hero {
            box-shadow: inset 0 0 8px #0006, 0 0 60px #0003, 0 20px 80px #000c;
        }

        .window-outline {
            backdrop-filter: blur(50px);
        }

        .window-content {
            padding-bottom: 28vw;
        }

        .text-projectpage-body {
            font-size: 15px;
        }

        .text-projectpage-body {
            font-size: 15px;
        }

        .section-info-hero.desktop {
            display: none; /* Hide Desktop on Mobile */
        }
        .section-info-hero.mobile {
            display: block; /* Show Mobile on Mobile */
        }

}

@media screen and (max-width: 991px) {
    .container-info {
        width: auto;
    }

    .section-info-hero {
        padding-left: 48px;
        padding-right: 48px;
    }

    .text-hero.info-hero {
        font-size: 42px;
        line-height: 110%;
    }

    .text-hero {
        font-size: 8.2vw;
    }

    .container-hero-image {
        width: auto;
    }

    .window-content {
        grid-row-gap: 32px;
        padding: 8vw 5vw 26vw;
    }

    .text-projectpage-body {
        width: auto;
    }

    .container-hero-image {
        width: auto;
    }

    .window-content {
        grid-row-gap: 32px;
        padding: 8vw 5vw 26vw;   
    }

    .text-projectpage-body {
        width: auto;
    }
}

@media screen and (max-width: 479px) {

    .section-info-hero {
        background-image: radial-gradient(circle farthest-side at 50% 0, #f2f2f240, #0000 50%);
        padding-top: 144px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-fade {
            height: 180px;
            padding-top: 32px;
        }
    
    .container-info.hero {
            grid-row-gap: 40px;
        }

        .overline-info-wrapper {
            grid-row-gap: 2vh;
            flex-direction: column;
            align-items: flex-start;
            display: flex;
        }

        .overline-wrapper {
            grid-column-gap: 10px;
        }

        .text-projectpage-overline {
            font-size: 10px;
            line-height: 16px;
        }

        .text-hero.info-hero {
            letter-spacing: -.1vw;
            font-size: 7.9vw;
            line-height: 110%;
        }

        .container-hero-image {
            flex: 1;
            justify-content: center;
            height: 100%;
            display: flex;
        }

        .window-outline.info-hero {
            display: flex;
            box-shadow: inset 0 0 8px #0006, 0 0 60px #0003, 0 10px 40px #000c;
        }

        .text-projectpage-body.info-hero {
            padding-left: 16px;
            padding-right: 16px;
        }

        .text-projectpage-body {
            font-size: 15px;
        }

        .signature-wrapper {
            padding-left: 16px;
            padding-right: 16px;
        }

        .hero-noise {
            z-index: 0;
            opacity: .6;
        }
}

