@font-face {
  font-family: "Monument";
  src: url("../fonts/MonumentExtended-Ultrabold.eot");
  src: url("../fonts/MonumentExtended-Ultrabold.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/MonumentExtended-Ultrabold.woff2") format("woff2"),
    url("../fonts/MonumentExtended-Ultrabold.woff") format("woff"),
    url("../fonts/MonumentExtended-Ultrabold.ttf") format("truetype"),
    url("../fonts/MonumentExtended-Ultrabold.svg#MonumentExtended-Ultrabold")
      format("svg");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Monument";
  src: url("../fonts/MonumentExtended-Regular.eot");
  src: url("../fonts/MonumentExtended-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/MonumentExtended-Regular.woff2") format("woff2"),
    url("../fonts/MonumentExtended-Regular.woff") format("woff"),
    url("../fonts/MonumentExtended-Regular.ttf") format("truetype"),
    url("../fonts/MonumentExtended-Regular.svg#MonumentExtended-Regular")
      format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Univia";
  src: url("../fonts/UniviaPro-Regular.eot");
  src: url("../fonts/UniviaPro-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/UniviaPro-Regular.woff2") format("woff2"),
    url("../fonts/UniviaPro-Regular.woff") format("woff"),
    url("../fonts/UniviaPro-Regular.ttf") format("truetype"),
    url("../fonts/UniviaPro-Regular.svg#UniviaPro-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}

html {
  line-height: 1.54;
  font-size: 16px;
  color: white;
  font-family: "Monument", sans-serif;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-y: scroll;
  overflow-x: hidden;

  @media screen and (max-width: 480px) {
    font-size: 14px;
  }
}

::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

:root {
  --bg-body: #0a0a0a;
  --bg-text: #f0f0f0;
  --bg-text-muted: rgba(255, 255, 255, 0.33);
  --bg-colored: rgb(246, 82, 82);
  --bg-border: #c6c6c6;
  --text-light: #f5f5f5;

  --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --fs-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --fs-base: clamp(1rem, 0.9rem + 0.5vw, 1rem);
  --fs-lg: clamp(1.125rem, 1rem + 0.625vw, 1.5rem);
  --fs-xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  --fs-1xl: clamp(1.75rem, 2rem + 2.5vw, 4.25rem);
  --fs-2xl: clamp(2rem, 2.5rem + 2.5vw, 6rem);
  --fs-3xl: clamp(3rem, 2rem + 5vw, 7.5rem);
  --fs-4xl: clamp(3rem, 2.5rem + 5vw, 8rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  outline: none;
  border: none;
  text-rendering: optimizeLegibility;
}

em {
  text-decoration: none;
  font-style: normal;
}

body {
  font-family: "Univia", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-color: #000;
}

body.colored-version {
  & em {
    color: var(--bg-colored) !important;
  }

  & path {
    stroke: var(--bg-colored) !important;
  }

  & .scrollbar-wrapper {
    background: var(--bg-colored) !important;
  }

  & .about-me-btn-availability-month {
    -webkit-text-stroke-color: var(--bg-colored) !important;
  }

  & .about-me-wrapper-cta-aside-contact a:hover {
    -webkit-text-stroke-color: var(--bg-colored) !important;
  }

  & .contact-row-wrap-maintitle-btn-line {
    color: var(--bg-colored) !important;
  }

  & footer:after {
    background: var(--bg-colored) !important;
  }

  & .footer-container-row-wrap-link-line a {
    color: rgba(255, 255, 255, 0.56) !important;
  }
}

.scrollbar-wrapper {
  position: fixed;
  top: 0;
  z-index: 50;
  right: 0;
  width: 6px;
  left: auto;
  bottom: 0;
  background: #f5efe1;

  & .scrollbar {
    position: absolute;
    display: block;
    height: 100%;
    background-color: #000;
    right: 0;
    width: 6px;
    left: auto;
    bottom: 0;
    transform: translateY(-100vh);
    transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1) -webkit-transform;
    transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1) transform;
    transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1) transform,
      0.4s cubic-bezier(0.075, 0.82, 0.165, 1) -webkit-transform;
  }
}

.loader {
  position: fixed;
  background: #f5efe1;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: 99;
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.2s,
    background 0.4s ease;
  will-change: transform, opacity, background;
  overflow: hidden;

  &.change {
    background: #000;

    .loader-wrap {
      .loader-wrap-des {
        .loader-wrap-des-line {
          .loader-wrap-des-line-inner {
            color: #f5efe1;

            &.stroke {
              text-stroke: 2px #f5efe1;
              -webkit-text-stroke: 2px #f5efe1;
              -webkit-text-fill-color: transparent;
              color: transparent;

              @media (max-width: 576px) {
                text-stroke: 1px #f5efe1;
                -webkit-text-stroke: 1px #f5efe1;
              }
            }
          }
        }
      }
    }
  }

  &.end {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
  }

  .loader-wrap {
    height: 100%;

    .loader-wrap-des {
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      grid-area: inner;

      @media only screen and (device-width: 1024px) and (max-device-width: 1366px) and (orientation: portrait) {
        max-height: 500px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }

      @media only screen and (device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
        max-height: 500px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }

      @media (max-width: 576px) {
        max-height: 400px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }

      @media (max-width: 414px) {
        max-height: 300px;
      }

      @media (max-width: 375px) {
        max-height: 275px;
      }

      .loader-wrap-des-line {
        overflow: hidden;
        flex: 1;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;

        &:nth-child(6) {
          opacity: 1;
        }

        &[data-position="center"] {
          flex: none;

          .loader-wrap-des-line-inner {
            transform: translateY(0.25rem);

            @media only screen and (device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) {
              transform: translateY(0.1rem);
            }

            @media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
              transform: translateY(0.1rem);
            }

            @media only screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) {
              transform: translateY(0.1rem);
            }
          }
        }

        /* Linhas com data-position="bottom" */
        &[data-position="bottom"] {
          transform: translate3d(0, -27%, 0);

          @media screen and (min-width: 3840px) {
            transform: translate3d(0, 50%, 0);
          }

          @media screen and (min-width: 2500px) and (max-width: 3839px) {
            transform: translate3d(0, 14%, 0);
          }

          @media only screen and (device-width: 1024px) and (max-device-width: 1366px) and (orientation: portrait) {
            transform: translate3d(0, -28%, 0);
          }

          @media (max-width: 1199px) {
            transform: translate3d(0, 5%, 0);
          }

          @media (max-width: 991px) {
            transform: translate3d(0, 27%, 0);
          }

          @media only screen and (device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
            transform: translate3d(0, 10%, 0);
          }

          @media (max-width: 576px) {
            transform: translate3d(0, 30%, 0);
          }

          @media (max-width: 480px) {
            transform: translate3d(0, 30%, 0);
          }

          @media only screen and (device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) {
            transform: translate3d(0, 18%, 0);
          }
        }

        .loader-wrap-des-line-inner {
          display: block;
          color: #000;
          font-size: 6rem;
          font-weight: 400;
          line-height: 1.2;
          white-space: nowrap;
          font-family: "Monument", sans-serif;
          transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
            color 0.4s ease;
          transform-style: preserve-3d;
          backface-visibility: hidden;

          /* Variação .top com transform */
          &.top {
            transform: translate3d(0, 10%, 0);

            @media screen and (min-width: 3840px) {
              transform: translate3d(0, 92%, 0);
            }

            @media screen and (min-width: 2500px) and (max-width: 3839px) {
              transform: translate3d(0, 38%, 0);
            }

            @media only screen and (device-width: 1024px) and (max-device-width: 1366px) and (orientation: portrait) {
              transform: translate3d(0, 4%, 0);
            }

            @media (max-width: 1199px) {
              transform: translate3d(0, 45%, 0);
            }

            @media (max-width: 991px) {
              transform: translate3d(0, 69%, 0);
            }

            @media only screen and (device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
              transform: translate3d(0, 27%, 0);
            }

            @media (max-width: 767px) {
              transform: translate3d(0, 130%, 0);
            }

            @media (max-width: 576px) {
              transform: translate3d(0, 74%, 0);
            }

            @media (max-width: 480px) {
              transform: translate3d(0, 76%, 0);
            }

            @media (max-width: 414px) {
              transform: translate3d(0, 50%, 0);
            }
          }

          /* Variação .bottom com transform */
          &.bottom {
            transform: translate3d(0, -27%, 0);

            @media (max-width: 991px) {
              transform: translate3d(0, -43%, 0);
            }

            @media only screen and (device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
              transform: translate3d(0, -18%, 0);
            }

            @media only screen and (device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) {
              transform: translate3d(0, -23%, 0);
            }

            @media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
              transform: translate3d(0, -25%, 0);
            }

            @media only screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) {
              transform: translate3d(0, -25%, 0);
            }
          }

          /* Variação stroke */
          &.stroke {
            text-stroke: 2px #000;
            -webkit-text-stroke: 2px #000;
            -webkit-text-fill-color: transparent;
            text-fill-color: transparent;
            color: transparent;

            @media (max-width: 576px) {
              text-stroke: 1px #000;
              -webkit-text-stroke: 1px #000;
            }
          }

          /* Font-size responsivo */
          @media (min-width: 1280px) {
            font-size: 4rem;
          }

          @media (min-width: 1440px) {
            font-size: 4.5rem;
          }

          @media (min-width: 1900px) {
            font-size: 6rem;
          }

          @media screen and (max-width: 1279px) {
            font-size: 3.7rem;
          }

          @media (max-width: 1199px) {
            font-size: 3rem;
          }

          @media (max-width: 991px) {
            font-size: 2.4rem;
          }

          @media (max-width: 767px) {
            font-size: 1.8rem;
          }

          @media (max-width: 576px) {
            font-size: 1.4rem;
          }

          @media (max-width: 480px) {
            font-size: 1.25rem;
          }

          @media (max-width: 414px) {
            font-size: 1.1rem;
          }

          @media only screen and (device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) {
            font-size: 1.45rem;
          }

          @media (max-width: 375px) {
            font-size: 1rem;
          }

          @media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
            font-size: 1.35rem;
          }

          @media only screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) {
            font-size: 1.35rem;
          }
        }
      }
    }
  }
}

@keyframes typing {
  from {
    width: 0;
    color: var(--bg-text-muted);
  }
  to {
    width: 100%;
    color: var(--bg-text);
  }
}

@keyframes blinking {
  50% {
    border-right-color: transparent;
  }
}

@keyframes cursor-hide {
  to {
    border-right: transparent;
  }
}

/* Lightbox */

#app {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  z-index: 4 !important;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  pointer-events: none;
  transform: translateY(-100%);
  transition: 1s ease transform;
  transition-delay: 1s;
  z-index: 5;

  &::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    right: 50%;
    background-color: rgba(0, 0, 0);
    box-shadow: 18px -2px 22px -1px rgba(0, 0, 0, 0.26);
    -webkit-box-shadow: 18px -2px 22px -1px rgba(0, 0, 0, 0.26);
    -moz-box-shadow: 18px -2px 22px -1px rgba(0, 0, 0, 0.26);
    transform: translateY(-100%);
    transition: 1s ease transform;
    transition-delay: 1s;
  }

  &.active {
    transform: translateY(0%);
    pointer-events: all;

    &::after {
      transform: translateY(0%);
      transition: 1s ease transform;
      transition-delay: 2s;
    }

    @media (max-width: 991px) {
      &::after {
        transform: translateY(72%);
      }
    }

    @media (max-width: 767px) {
      &::after {
        right: 34%;
      }
    }

    @media screen and (max-width: 576px) {
      &::after {
        transform: translateY(82%);
      }
    }

    @media screen and (max-width: 414px) {
      &::after {
        transform: translateY(83%);
        right: 25%;
      }
    }

    & .lightbox-item {
      & .lightbox-item-image {
        & .lightbox-item-image-wrap {
          height: 100%;
          transition: 1s ease height;
          transition-delay: 2.6s;
        }

        & .lightbox-item-cta {
          opacity: 1;
          transform: scale(1) skewX(0deg);
          transition: all 0.4s ease;
          transition-delay: 2.6s;
        }
      }

      & .lightbox-item-content {
        & .lightbox-item-content-title {
          transform: translate(0%, 0px);
          opacity: 1;
        }
      }
    }

    & .lightbox-item-close {
      transform: translate(0px, 0px);
      opacity: 1;
    }
  }

  & .lightbox-item {
    width: 100%;
    height: 100%;
    visibility: hidden;

    &.current {
      visibility: visible;
      pointer-events: all;
    }

    & .lightbox-item-image {
      position: absolute;
      top: 0;
      width: 20%;
      left: 15%;

      & .lightbox-item-image-wrap {
        height: 0%;
        width: 100%;
        position: absolute;
        z-index: 2;
        transition: 1s ease height;
        transition-delay: 1s;

        & > img {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          height: 100%;
          width: auto;
        }
      }

      & .lightbox-item-cta {
        position: absolute;
        bottom: -65px;
        left: -40px;
        z-index: 3;
        opacity: 0;
        transform: scale(0.7) skewX(40deg);
        transition: all 0.4s ease;

        & svg {
          transition: 0.4s ease opacity;
        }

        & a {
          text-decoration: none;
          color: var(--bg-text);
          position: absolute;
          inset: 0;
          z-index: 1;
        }
      }

      &::after {
        content: "";
        display: block;
        padding-bottom: 120%;
      }

      @media (max-width: 1279px) {
        width: 25%;
        left: 12.5%;
      }

      @media (max-width: 991px) {
        width: 200px;
        height: 200px;
        top: inherit;
        bottom: 17%;
        left: 43%;

        & .lightbox-item-image-wrap {
          display: none;
        }

        & .lightbox-item-cta {
          bottom: 0px;
          left: 0px;
        }
      }
      @media (max-width: 767px) {
        left: 56%;
      }

      @media (max-width: 576px) {
        bottom: 9%;
      }

      @media (max-width: 414px) {
        width: 110px;
        height: 110px;
        left: 63%;

        & .lightbox-item-cta {
          & svg {
            width: 100px;
            height: 102px;
          }
        }
      }
    }

    & .lightbox-item-content {
      position: absolute;
      bottom: 10%;
      left: 12.5%;
      max-width: 30%;
      z-index: 4;

      & .lightbox-item-content-title {
        font-size: 3rem;
        line-height: 1.1;
        color: #f5efe1;
        padding-left: 4rem;
        padding-bottom: 3rem;
        font-weight: 400;

        & .lightbox-item-content-title-line {
          display: block;
          overflow: hidden;

          & span {
            display: block;
            transform: translateY(102%);
            transition: transform 1s ease, -webkit-transform 1s ease;
          }

          &.active {
            & span {
              transform: translateY(0%);
              transition: transform 1s ease, -webkit-transform 1s ease;
            }

            &:first-of-type span {
              transition-delay: 0.2s;
            }

            &:nth-of-type(2) span {
              transition-delay: 0.3s;
            }
          }
        }
      }

      & p {
        font-family: "Univia", sans-serif;
        color: rgba(255, 255, 255, 0.7);
        font-size: var(--fs-sm);
        line-height: 1.5;
        font-weight: 300;

        & .lightbox-item-content-text-line {
          display: block;
          overflow: hidden;

          & span {
            display: block;
            transform: translateY(102%);
            transition: transform 1s ease, -webkit-transform 1s ease;
          }

          &.active {
            & span {
              transform: translateY(0%);
              transition: transform 1s ease, -webkit-transform 1s ease;
            }

            &:first-of-type span {
              transition-delay: 0.2s;
            }
            &:nth-last-of-type(2) span {
              transition-delay: 0.3s;
            }
            &:nth-last-of-type(3) span {
              transition-delay: 0.4s;
            }
            &:nth-last-of-type(4) span {
              transition-delay: 0.5s;
            }
          }
        }
      }

      @media (max-width: 1279px) {
        bottom: 10%;
        left: 5%;
        max-width: 40%;
        & .lightbox-item-content-title {
          font-size: 3rem;
        }
      }

      @media (max-width: 991px) {
        bottom: 55px;
        left: 65px;
        right: 65px;
        & .lightbox-item-content-title {
          font-size: 2.35rem;
          padding: 0;
        }

        & p {
          display: none;
        }
      }

      @media (max-width: 767px) {
        max-width: 44%;
      }
      @media (max-width: 576px) {
        bottom: 25px;
        left: 25px;
        right: 35px;
        & .lightbox-item-content-title {
          font-size: 2rem;
        }
      }
      @media (max-width: 414px) {
        max-width: 57%;
      }
    }
  }

  & .lightbox-item-close {
    position: absolute;
    right: 65px;
    top: 65px;
    font-family: "Univia", sans-serif;
    color: var(--bg-text);
    letter-spacing: 0.55rem;
    text-transform: uppercase;
    cursor: pointer;
    user-select: none;
    transition: opacity 0.4s ease;
    z-index: 2;

    &:hover {
      opacity: 0.6;
    }

    @media (max-width: 576px) {
      right: 35px;
      top: 35px;
    }
  }
}

@keyframes circleRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes counterRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Background styles */
.movie-bg {
  position: fixed;
  pointer-events: none;
  -webkit-animation: movie 1s steps(4) infinite;
  animation: movie 1s steps(4) infinite;
  background-image: url(../images/movie.png);
  height: 200%;
  left: -50%;
  top: -50%;
  width: 200%;
  opacity: 0.7;
  z-index: 99;
  will-change: transform;
}

@keyframes movie {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  10% {
    -webkit-transform: translate(-5%, -5%);
    transform: translate(-5%, -5%);
  }

  20% {
    -webkit-transform: translate(-10%, 5%);
    transform: translate(-10%, 5%);
  }

  30% {
    -webkit-transform: translate(5%, -10%);
    transform: translate(5%, -10%);
  }

  40% {
    -webkit-transform: translate(-5%, 15%);
    transform: translate(-5%, 15%);
  }

  50% {
    -webkit-transform: translate(-10%, 5%);
    transform: translate(-10%, 5%);
  }

  60% {
    -webkit-transform: translate(15%, 0);
    transform: translate(15%, 0);
  }

  70% {
    -webkit-transform: translate(0, 10%);
    transform: translate(0, 10%);
  }

  80% {
    -webkit-transform: translate(-15%, 0);
    transform: translate(-15%, 0);
  }

  90% {
    -webkit-transform: translate(10%, 5%);
    transform: translate(10%, 5%);
  }

  to {
    -webkit-transform: translate(5%, 0);
    transform: translate(5%, 0);
  }
}

/* Banner styles */

.awesome-banner {
  position: fixed;
  background-color: #f5efe1;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease opacity;

  & .awesome-banner-close {
    position: absolute;
    right: 65px;
    top: 65px;
    font-family: "Univia", sans-serif;
    color: #000;
    letter-spacing: 0.55rem;
    text-transform: uppercase;
    cursor: pointer;
    user-select: none;

    @media (max-width: 567px) {
      right: 35px;
      top: 35px;
    }
  }

  & .awesome-banner-content {
    max-width: 525px;
    padding-top: 20vh;
    margin: 0 auto;

    & .awesome-banner-content-image {
      position: relative;
      & img {
        margin: 0 auto;
        display: block;
        max-width: 100%;
      }
      & .awesome-banner-content-image-cta {
        position: absolute;
        left: -38px;
        top: -62px;

        & svg {
          @media (max-width: 576px) {
            width: 100px;
          }
        }
      }
    }

    & h3 {
      font-family: Monument, sans-serif;
      font-size: 7.5rem;
      text-align: center;
      padding-top: 5px;
      color: #000;
      font-weight: 400;
      line-height: 1.29;

      @media (max-width: 576px) {
        font-size: 6rem;
      }
      @media screen and (max-width: 414px) {
        font-size: 5rem;
      }
      @media screen and (max-width: 375px) {
        font-size: 4rem;
      }
    }

    & p {
      font-family: Univia, sans-serif;
      text-align: center;
      color: rgba(0, 0, 0, 0.7);
      font-size: 1rem;
      line-height: 1.4;
      margin-bottom: 1rem;
      font-weight: 300;
    }

    @media (max-width: 576px) {
      max-width: 70%;
    }
  }

  &.active {
    opacity: 1;
    visibility: visible;
    transition: 0.4s ease opacity;
  }
}

.container {
  width: 100%;
  max-width: 1140px;
  padding-right: 15px;
  padding-left: 15px;
  margin: 0 auto;

  @media (max-width: 1200px) {
    max-width: 1140px;
  }

  @media (max-width: 768px) {
    max-width: 720px;
  }

  @media (max-width: 576px) {
    max-width: 540px;
  }

  @media screen and (max-width: 374px) {
    padding-left: 30px;
    padding-right: 30px;
  }
}

#main-wrap {
  z-index: 2;
}

.scroll-parallax {
  will-change: transform;
}

/* Header styles */

.header {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 11;
  height: 65px;
  transform: translateY(-102px);
  background: linear-gradient(180deg, #000, rgba(22, 22, 22, 0));
  transition: 0.6s ease-in;
  display: block;

  &.active {
    transform: translateY(0px);
    transition: 0.4s cubic-bezier(0.755, 0.05, 0.855, 0.06) transform,
      0.4s cubic-bezier(0.755, 0.05, 0.855, 0.06) -webkit-transform;

    &.moove {
      opacity: 0;
      -webkit-transform: translateY(-80px);
      -ms-transform: translateY(-80px);
      transform: translateY(-80px);
      -webkit-transition: 0.6s ease-in;
      -o-transition: 0.6s ease-in;
      transition: 0.6s ease-in;
    }
  }

  & .header-wrap {
    padding-top: 65px;
    padding-left: 65px;
    padding-right: 65px;

    @media screen and (max-width: 576px) {
      padding-left: 40px;
      padding-right: 40px;
    }

    @media screen and (max-width: 374px) {
      padding-left: 30px;
      padding-right: 30px;
    }

    & .header-wrap-main-navigation {
      box-shadow: none;
      border-radius: 0;
      background-image: none;
      background-color: transparent;
      border: none;
      margin-bottom: 0;
      display: flex;
      width: 100%;

      & .header-wrap-main-navigation-menu {
        justify-content: flex-end;
        display: flex;
        align-items: center;
        flex: 1;
        position: relative;
        z-index: 99;

        & .header-wrap-main-navigation-menu-responsive {
          justify-content: flex-end;
          display: flex;
          align-items: center;
          position: relative;

          & ul li {
            display: inline-block;
            padding: 0 15px;

            &:first-child {
              padding-left: 0;
            }

            & a {
              font-size: var(--fs-base);
              font-family: "Monument", sans-serif;
              position: relative;
              outline: none;
              line-height: 1;
              color: var(--bg-text);
              transition: color 0s 0.5s;
              display: inline-block;

              &:hover {
                color: transparent;
                transition: none;
              }

              &::before,
              &::after {
                content: attr(data-letters);
                position: absolute;
                font-size: var(--fs-base);
                font-family: "Monument", sans-serif;
                top: 0;
                left: 0;
                color: var(--bg-text);
                overflow: hidden;
                backface-visibility: hidden;
                transition: color 0.5s, transform 0.5s;
              }

              &::before {
                clip-path: url(../../#cp_up);
              }
              &::after {
                clip-path: url(../../#cp_down);
              }

              &:hover::before,
              &:hover::after {
                color: var(--bg-text);
                transition: color 0.5s, transform 0.5s, -webkit-transform 0.5s;
              }

              &:hover::before {
                transform: translate3d(0px, -2px, 0px);
              }

              &:hover::after {
                transform: translate3d(0px, 2px, 0px);
              }
            }

            @media screen and (max-width: 414px) {
              padding: 0 9px;
            }

            @media screen and (max-width: 374px) {
              padding: 0 8px;
              & a {
                font-size: var(--fs-xs);

                &::before,
                &::after {
                  font-size: var(--fs-xs);
                }
              }
            }
          }
        }
      }
    }
  }
}

/* Page Header */

.page-header {
  padding-top: 65px;
  padding-left: 65px;
  position: relative;

  @media (max-width: 991px) {
    padding-top: 130px;
  }

  @media (max-width: 576px) {
    padding-left: 40px;
  }

  @media (max-width: 374px) {
    padding-left: 30px;
  }

  & .page-header-wrap-text {
    position: relative;
    display: inline-block;

    & h1 {
      font-family: Monument, sans-serif;
      font-size: var(--fs-3xl);
      font-weight: 400;
      line-height: 1.1;
      color: var(--bg-text);
      z-index: 2;
      position: relative;

      & .page-header-wrap-text-line {
        display: block;
        overflow: hidden;

        & span {
          display: inline-block;
          transform: translateY(102%);
          transition: transform 0.5s ease;
        }

        &.active {
          & span {
            transform: translateY(0);
          }

          &:first-of-type span {
            transition-delay: 0.2s;
          }

          &:nth-last-of-type(2) {
            transition-duration: 0.3s;
          }
          &:nth-last-of-type(3) {
            transition-duration: 0.4s;
          }
        }
      }

      @media screen and (max-width: 1279px) {
        font-size: var(--fs-2xl);
      }
      @media (max-width: 991px) {
        max-width: 70%;
      }
      @media (max-width: 767px) {
        font-size: var(--fs-2xl);
      }
      @media screen and (max-width: 576px) {
        max-width: 100%;
        padding-right: 40px;
        font-size: 4.5rem;
      }
      @media and (max-width: 480px) {
        font-size: var(--fs-1xl);
      }
      @media screen and (max-width: 374px) {
        font-size: 3.75rem;
      }
    }
  }

  & .page-header-wrap-info {
    position: absolute;
    left: 80%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;

    & svg {
      opacity: 0;
      transform: translate(-15px, -17px);
    }

    &.active {
      & svg {
        opacity: 1;
        transform: translate(0px, 0px);
        transition: 0.4s ease all;
        transition-delay: 0.5s;
      }
    }

    & h2 {
      font-family: Monument, sans-serif;
      font-size: var(--fs-base);
      color: var(--bg-text);
      line-height: 1.2;
      padding-left: 2.875rem;
      font-weight: 400;

      & .page-header-wrap-info-line {
        display: block;
        overflow: hidden;

        & span {
          display: inline-block;
          transform: translateY(102%);
          transition: transform 0.5s ease;
        }

        &.active {
          & span {
            transform: translateY(0);
          }

          &:first-of-type span {
            transition-delay: 0.2s;
          }

          &:nth-of-type(2) span {
            transition-delay: 0.3s;
          }
        }
      }
    }

    @media (max-width: 991px) {
      left: 10%;
    }

    @media screen and (max-width: 576px) {
      /* left: 129px; */
      & h2 {
        padding-left: 40px;
      }
    }

    @media screen and (max-width: 480px) {
      left: 0px;
      padding-top: 5px;

      & svg {
        width: 45px;
        height: 45px;
      }

      & h2 {
        padding-left: 25px;
      }
    }
  }

  & .page-header-wrap-img {
    position: absolute;
    z-index: 1;
    top: 100px;
    right: -37%;
    width: 500px;
    height: 660px;
    transform: translate(-10%, -10%) skewX(10deg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transition-delay: 0.4s;

    &.active {
      visibility: visible;
      transform: translate(0%, 0%) skewX(0deg);
      opacity: 1;
      transition: -webkit-transform 0.4s ease;
      transition: transform 0.4s ease, -webkit-transform 0.4s ease;
      transition-delay: 0.1s;
    }

    & .item {
      position: absolute;
      inset: 0;
      overflow: hidden;

      & .overlay {
        position: absolute;
        top: -10%;
        right: 0%;
        width: 150%;
        height: 200%;
        background-color: #000;
        z-index: 2;
        transition: 1s ease;
        transform: rotate(-37deg) translateX(180%);
      }

      & img {
        height: auto;
        width: 100%;
        display: block;
        opacity: 0;
        transition: 0.4s ease;
      }

      &.active {
        background: #000;
        & .overlay {
          transition: 1s ease;
          transform: rotate(-37deg) translateX(-101%);
        }

        & img {
          opacity: 1;
          transition: 0.6s ease;
          transition-delay: 0.3s;
        }
      }
    }

    @media screen and (max-width: 1279px) {
      right: -48%;
    }
    @media (max-width: 1199px) {
      width: 400px;
      height: 528px;
      right: -10%;
      top: 170px;
    }
    @media (max-width: 991px) {
      right: 14%;
      top: 100px;
    }
    @media (max-width: 767px) {
      width: 300px;
      height: 396px;
      right: 16%;
      top: 170px;
    }

    @media (max-width: 991px) {
      padding-top: 130px;
    }

    @media screen and (max-width: 576px) {
      padding-left: 40px;
    }

    @media screen and (max-width: 374px) {
      padding-left: 30px;
    }

    @media screen and (max-width: 576px) {
      right: -10.5%;
      top: 120px;
    }
    @media screen and (max-width: 480px) {
      right: inherit;
      left: 69px;
      top: 33px;
    }
    @media screen and (max-width: 414px) {
      top: 45px;
    }
    @media screen and (max-width: 375px) {
      top: 45px;
    }
    @media screen and (max-width: 374px) {
      left: 57px;
      top: 29px;
    }
  }
}

/* About me section */

.about-me-section {
  padding-top: 165px;

  & .about-me-row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -15px;
  }

  & .about-me-container {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-inline: 15px;
    margin-left: 0;
  }

  & .about-me-btn-container {
    position: relative;
    display: inline-block;
    cursor: pointer;

    & .about-me-btn-container-line {
      stroke-dasharray: 945;
      stroke-dashoffset: 945;
      transition: stroke-dashoffset 0.5s ease-in;

      &.active {
        stroke-dashoffset: 0px;
      }
    }

    & .about-me-btn-title {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: var(--fs-base);
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.33);
      transition: 0.4s ease color;
      opacity: 0;

      &.active {
        opacity: 1;
      }

      &:hover {
        color: var(--bg-text);
      }

      .about-me-btn-title-part {
        font-family: "Univia", sans-serif;
        display: block;
        line-height: 1.34;
        letter-spacing: 0.5rem;
        overflow: hidden;

        & span {
          display: inline-block;
          transform: translateY(102%);
          transition: transform 0.5s ease;
          transition-delay: 0s;
        }

        &.active {
          & span {
            transform: translateY(0);
          }

          &:first-of-type span {
            transition-delay: 0.2s;
          }
          &:nth-of-type(2) span {
            transition-delay: 0.3s;
          }
        }
      }

      @media screen and (max-width: 480px) {
        font-size: var(--fs-xs);
      }
    }

    & .about-me-btn-availability {
      position: absolute;
      font-family: "Monument", sans-serif;
      opacity: 0;
      left: 73%;
      top: 5%;
      width: 100%;
      display: flex;
      transition: all 0.4s ease;

      &.active {
        opacity: 1;
      }

      & .about-me-btn-availability-month {
        display: inline-block;
        font-size: var(--fs-3xl);
        -webkit-text-stroke-width: 2px;
        -webkit-text-stroke-color: white;
        -webkit-text-fill-color: transparent;
        overflow: hidden;

        & .about-me-btn-availability-month-act {
          display: inline-block;
          transform: translateY(102%);
          transition: transform 0.5s ease;
          transition-delay: 0.4s;
        }

        &.active {
          & .about-me-btn-availability-month-act {
            transform: translateY(0);
          }
        }
      }

      & .about-me-btn-availability-info {
        display: inline-block;
        padding-top: 3rem;
        padding-left: 1.25rem;
        overflow: hidden;

        & .about-me-btn-availability-info-label {
          display: block;
          color: var(--bg-text);
          font-size: var(--fs-xs);
          font-family: "Monument", sans-serif;
          text-transform: uppercase;
          overflow: hidden;

          & span {
            display: inline-block;
            transform: translateY(102%);
            transition: transform 0.5s ease;
          }
          &.active {
            & span {
              transform: translateY(0);
              transition-delay: 0.2s !important;
            }
          }
        }

        & .about-me-btn-availability-info-des {
          display: block;
          font-size: var(--fs-xs);
          padding-top: 3px;
          font-family: "Univia", sans-serif;
          color: rgba(255, 255, 255, 0.7);
          overflow: hidden;

          & span {
            display: inline-block;
            transform: translateY(102%);
            transition: transform 0.5s ease;
          }

          &.active {
            & span {
              transform: translateY(0);
              transition-delay: 0.3s !important;
            }
          }
        }
      }

      @media (max-width: 767px) {
        left: 65%;
        top: 10%;
        & .about-me-btn-availability-info {
          padding-top: 2rem;
          padding-left: 1rem;
        }
      }

      @media screen and (max-width: 576px) {
        & .about-me-btn-availability-month {
          font-size: var(--fs-2xl);
        }

        & .about-me-btn-availability-info {
          padding-top: 0.6rem;
        }
      }

      @media screen and (max-width: 480px) {
        left: 50%;
        top: 15%;
      }

      @media screen and (max-width: 374px) {
        left: 45%;
        top: 20%;
        transform: rotate(90deg);
      }
    }

    @media (max-width: 767px) {
      & svg {
        width: 350px;
        height: 350px;
      }
    }

    @media screen and (max-width: 576px) {
      & svg {
        width: 300px;
        height: 300px;
      }
    }

    @media screen and (max-width: 480px) {
      & svg {
        width: 250px;
        height: 250px;
      }
    }
  }

  & .about-me-wrapper {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-inline: 15px;
    flex: 0 0 100%;
    max-width: 100%;

    & .about-me-wrapper-about {
      position: relative;
      margin-top: -150px;
      padding-left: 25px;
      margin-left: 300px;

      & p {
        font-size: var(--fs-base);
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.4;
        margin-bottom: 1rem;
        font-weight: 300;
        display: block;
        margin-block-start: 1em;
        margin-block-end: 1em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        unicode-bidi: isolate;

        & .about-me-wrapper-about-line {
          display: block;
          overflow: hidden;

          & span {
            display: inline-block;
            transform: translateY(102%);
            transition: transform 0.5s ease;
          }

          &.active {
            & span {
              transform: translateY(0%);
            }

            &:first-of-type span {
              transition-delay: 0.2s;
            }

            &:nth-of-type(2) span {
              transition-delay: 0.3s;
            }
            &:nth-of-type(3) span {
              transition-delay: 0.4s;
            }
            &:nth-of-type(4) span {
              transition-delay: 0.5s;
              padding-left: 60px;
            }
            &:nth-of-type(5) span {
              transition-delay: 0.6s;
            }
            &:nth-of-type(6) span {
              transition-delay: 0.7s;
            }
            &:nth-of-type(7) span {
              transition-delay: 0.8s;
            }
          }
        }

        & b {
          color: var(--bg-text);
        }
      }

      & .about-me-wrapper-cta-aside {
        position: absolute;
        top: 69px;
        left: -22px;
        isolation: isolate;
        z-index: 2;
        overflow: hidden;

        & .about-me-wrapper-cta-aside-contact {
          font-family: "Monument", sans-serif;
          text-transform: uppercase;
          font-weight: 800;
          font-size: var(--fs-base);
          display: inline-block;
          overflow: hidden;

          & span {
            display: inline-block;
            transform: translateY(102%);
            transition: transform 0.5s ease;
          }

          &.active {
            & span {
              transition-delay: 0.8s;
              transform: translateY(0%);
            }
          }

          & a {
            text-decoration: none;
            color: var(--bg-text);
            transition: all ease-in 0.3s;

            &:hover {
              -webkit-text-stroke-width: 2px;
              -webkit-text-stroke-color: var(--bg-text);
              -webkit-text-fill-color: transparent;
            }
          }
        }
      }

      @media screen and (max-width: 1439px) {
        margin-left: 360px;
      }

      @media (max-width: 1280px) {
        & .about-me-wrapper-cta-aside {
          top: 90px;
        }
      }
      @media (max-width: 1080px) {
        & .about-me-wrapper-cta-aside {
          top: 135px;
        }
      }

      @media screen and (max-width: 835px) {
        & .about-me-wrapper-cta-aside {
          top: 100px;
        }
      }

      @media (max-width: 991px) {
        margin-left: 165px;
        & .about-me-wrapper-cta-aside {
          top: 115px;
        }
      }

      @media (max-width: 767px) {
        margin-left: 57px;
        margin-top: -40px;

        & p {
          font-size: var(--fs-sm);

          & .about-me-wrapper-about-line {
            &.active {
              &:nth-of-type(4) span {
                padding-left: 45px;
              }
            }
          }
        }

        & .about-me-wrapper-cta-aside {
          top: 105px;
          left: -30px;

          & .about-me-wrapper-cta-aside-contact {
            & a {
              font-size: var(--fs-sm);
            }
          }
        }
      }

      @media (max-width: 576px) {
        margin-left: 0px;
        padding-left: 0px;

        & p {
          letter-spacing: -0.021rem;

          & .about-me-wrapper-about-line {
            &.active {
              &:nth-of-type(4) span {
                padding-left: 0px;
              }
            }
          }
        }

        & .about-me-wrapper-cta-aside {
          top: inherit;
          bottom: -25px;
          left: 25px;
        }
      }

      @media screen and (max-width: 480px) {
        & p {
          /* letter-spacing: -0.05668rem; */
          font-size: var(--fs-xs);
        }
      }
    }
  }
}

/* Inspiration section */

.inspiration {
  padding-top: 400px;

  @media screen and (max-width: 480px) {
    padding-top: 250px;
  }
  @media screen and (max-width: 375px) {
    padding-top: 175px;
  }

  & .inspiration-row {
    display: flex;
    margin-inline: -15px;

    @media (max-width: 968px) {
      flex-direction: column;
    }

    & .inspiration-container-title {
      position: relative;
      width: 100%;
      min-height: 1px;
      padding-inline: 15px;
      text-align: left;
      padding-bottom: 150px;

      @media screen and (max-width: 480px) {
        padding-bottom: 100px;
      }

      & h2 {
        font-weight: 400;
        line-height: 1.29;
        font-size: 7.5rem;
        color: var(--bg-text);
        font-family: "Monument", sans-serif;
        line-height: 1.1;

        @media (max-width: 1199px) {
          font-size: 7rem;
        }
        @media (max-width: 991px) {
          font-size: 6rem;
        }
        @media (max-width: 767px) {
          font-size: 4.5rem;
        }
        @media screen and (max-width: 576px) {
          font-size: 3.52rem;
        }
        @media screen and (max-width: 480px) {
          font-size: 3.35rem;
        }
        @media screen and (max-width: 414px) {
          font-size: 3rem;
        }
        @media screen and (max-width: 374px) {
          font-size: 2.6rem;
        }

        & .inspiration-container-title-line {
          display: block;
          overflow: hidden;

          & span {
            display: inline-block;
            transform: translateY(104%);
            transition: transform 0.5s ease;
          }

          &.active {
            & span {
              transform: translateY(0);
            }

            &:first-of-type span {
              transition-delay: 0.2s;
            }

            &:nth-of-type(2) span {
              transition-delay: 0.3s;
            }
          }
        }
      }
    }

    & .inspiration-img-container {
      flex: 0 0 50%;
      width: 50%;
      position: relative;
      perspective: 1200px;
      padding-inline: 15px;
      display: flex;
      justify-content: center;
      align-items: center;

      @media (max-width: 968px) {
        width: 100%;
        flex: 0 0 100%;
        margin-bottom: 60px;
        perspective: 1000px;
      }

      @media (max-width: 480px) {
        perspective: 800px;
      }

      & .inspiration-hint {
        position: absolute;
        bottom: -20%;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.9rem;
        letter-spacing: 0.05em;
        opacity: 0.7;
        color: var(--bg-text);
        /* font-family: "Monument", sans-serif; */
        pointer-events: none;
        z-index: 5;
      }

      & .inspiration-img-container-scale {
        width: 100%;
        max-width: 600px;
        transition: opacity 1s ease, transform 1s ease;
        will-change: transform, opacity;
        display: flex;
        align-items: center;
        justify-content: center;

        & .inspiration-img-container-rotate {
          width: 100%;
          transform-style: preserve-3d;
          transition: transform 0.1s ease-out;
          display: flex;
          align-items: center;
          justify-content: center;

          & .inspiration-img-container-inner {
            position: relative;
            width: 100%;
            cursor: pointer;

            aspect-ratio: 3/4;
            max-height: 700px;
            transform-style: preserve-3d;
            filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6));

            @media (max-width: 968px) {
              max-height: 600px;
            }

            @media (max-width: 480px) {
              max-height: 480px;
            }

            @media (max-width: 360px) {
              max-height: 420px;
            }

            & img {
              position: absolute;
              object-fit: contain;
              width: 100%;
              height: auto;
              transform-origin: center;
            }

            & img[data-depth="15"] {
              width: 100%;
              top: 54%;
              left: 2%;
              opacity: 0.85;
              z-index: 3;
            }

            & img[data-depth="25"] {
              width: 42%;
              left: 25%;

              top: 55%;
              z-index: 5;
              /* border: 1px solid red; */
            }

            & img[data-depth="35"] {
              width: 100%;
              top: 12%;
              z-index: 3;
              /* border: 1px solid red; */
            }

            & img[data-depth="45"] {
              width: 30%;
              left: 34%;
              top: 10%;
              opacity: 0.8;
              z-index: 5;
              /* border: 1px solid red; */
            }
          }
        }
      }
    }

    & .inspiration-text-container {
      flex: 0 0 40%;
      width: 40%;
      position: relative;
      padding-inline: 15px;

      @media (max-width: 968px) {
        width: 100%;
        flex: 0 0 100%;
        margin-top: 5rem;
      }

      & p {
        font-size: 1.75rem;
        color: var(--bg-text);
        font-family: "Monument", sans-serif;
        line-height: 1.225;

        @media (max-width: 968px) {
          font-size: 1.5rem;
        }
        @media (max-width: 767px) {
          font-size: 5vw;
        }
        @media screen and (max-width: 414px) {
          font-size: 4.8vw;
        }
        @media screen and (max-width: 374px) {
          font-size: 4.5vw;
        }

        & .inspiration-text-container-line {
          display: block;
          overflow: hidden;

          & span {
            transition: transform 0.8s ease, -webkit-transform 1s ease;
            display: block;
            transform: translateY(102%);
          }

          &.active {
            & span {
              transform: translate(0%);
            }

            &:first-of-type span {
              transition-delay: 0.2s;
            }
            &:nth-of-type(2) span {
              transition-delay: 0.3s;
            }
            &:nth-of-type(3) span {
              transition-delay: 0.4s;
            }
            &:nth-of-type(4) span {
              transition-delay: 0.5s;
            }
            &:nth-of-type(5) span {
              transition-delay: 0.6s;
            }
            &:nth-of-type(6) span {
              transition-delay: 0.7s;
            }
            &:nth-of-type(7) span {
              transition-delay: 0.8s;
            }
            &:nth-of-type(8) span {
              transition-delay: 0.9s;
            }
          }
        }
      }
    }
  }
}

/* Services section  */

.services {
  display: block;
  padding-top: 265px;

  & .services-row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -15px;

    & .services-title-container {
      position: relative;
      width: 100%;
      min-height: 1px;
      padding-inline: 15px;

      & .services-title-container-title {
        text-align: right;
        padding-bottom: 150px;

        & h2 {
          font-weight: 400;
          line-height: 1.29;
          font-size: 7.5rem;
          color: var(--bg-text);
          font-family: "Monument", sans-serif;
          line-height: 1.1;

          @media (max-width: 1199px) {
            font-size: 7rem;
          }
          @media (max-width: 991px) {
            font-size: 6rem;
          }
          @media (max-width: 767px) {
            font-size: 4.5rem;
          }
          @media screen and (max-width: 576px) {
            font-size: 3.52rem;
          }
          @media screen and (max-width: 480px) {
            font-size: 3.35rem;
          }
          @media screen and (max-width: 414px) {
            font-size: 3rem;
          }
          @media screen and (max-width: 374px) {
            font-size: 2.6rem;
          }

          & .services-title-container-title-line {
            display: block;
            overflow: hidden;

            & span {
              display: block;
              transform: translateY(102%);
              transition: transform 1s ease;
            }

            &.active {
              & span {
                transform: translateY(0%);
                transition: transform 1s ease, -webkit-transform 1s ease;
              }
              &:first-of-type span {
                transition-delay: 0.2s;
              }

              &:nth-last-of-type(2) span {
                transition-delay: 0.3s;
              }
            }
          }
        }
      }
    }

    & .services-col {
      position: relative;
      width: 33.333%;
      min-height: 1px;
      padding-inline: 15px;

      & .services-col-content {
        margin-bottom: 20px;

        & h3 {
          font-family: "Monument", sans-serif;
          font-size: var(--fs-base);
          color: var(--bg-text);
          font-weight: 400;
          line-height: 1.29;

          & .services-col-content-title-line {
            display: block;
            overflow: hidden;

            & span {
              display: block;
              transform: translateY(102%);
              transition: transform 1s ease, -webkit-transform 1s ease;
            }

            &.active {
              & span {
                transform: translateY(0%);
                transition: transform 1s ease, -webkit-transform 1s ease;

                &:first-of-type {
                  transition-delay: 0.2s;
                }

                &:nth-of-type(2) {
                  transition-delay: 0.3s;
                }
              }
            }
          }
        }

        & .services-col-content-img-container {
          position: relative;
          height: 100px;

          & .services-col-content-img-container-wrap {
            width: 100%;
            height: 0%;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            overflow: hidden;
            transition: all 0.4s ease-in-out;

            & img {
              width: 5rem;
              display: block;
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              filter: grayscale(100%) sepia(1) saturate(0.5) contrast(0.5)
                brightness(0.8);
            }
          }

          &.active {
            & .services-col-content-img-container-wrap {
              height: 100%;
            }
          }
        }

        & ul {
          list-style: none;
          padding-top: 1rem;

          & li {
            font-size: var(--fs-base);
            font-family: "Univia", sans-serif;
            color: var(--bg-text);
            line-height: 1.75;

            & .services-col-content-des-line {
              display: block;
              overflow: hidden;

              & span {
                display: block;
                transform: translateY(102%);
                transition: transform 1s ease, -webkit-transform 1s ease;
              }

              &.active {
                & span {
                  transform: translateY(0%);
                  transition: transform 1s ease, -webkit-transform 1s ease;

                  &:first-of-type {
                    transition-delay: 0.2s;
                  }

                  &:nth-of-type(2) {
                    transition-delay: 0.3s;
                  }
                  &:nth-of-type(3) {
                    transition-delay: 0.4s;
                  }
                  &:nth-of-type(4) {
                    transition-delay: 0.5s;
                  }
                  &:nth-of-type(5) {
                    transition-delay: 0.6s;
                  }
                  &:nth-of-type(6) {
                    transition-delay: 0.7s;
                  }
                  &:nth-of-type(7) {
                    transition-delay: 0.8s;
                  }
                }
              }
            }
          }
        }
      }

      &:nth-of-type(3) {
        margin-top: 8.5rem;
        margin-left: auto;
        & p {
          font-family: "Univia", sans-serif;
          color: rgba(255, 255, 255, 0.7);
          font-size: 1rem;
          line-height: 1.75;
          margin-bottom: 1rem;
          font-weight: 300;

          @media screen and (max-width: 767px) {
            margin-bottom: 3rem;
          }
          @media screen and (max-width: 414px) {
            font-size: 0.94rem;
          }
          @media screen and (max-width: 374px) {
            font-size: 0.83rem;
          }

          & .services-des-line {
            display: block;
            overflow: hidden;

            & span {
              display: block;
              transform: translateY(102%);
              transition: transform 1s ease, -webkit-transform 1s ease;
            }

            &.active {
              & span {
                transform: translateY(0%);
                transition: transform 1s ease, -webkit-transform 1s ease;

                &:first-of-type {
                  transition-delay: 0.2s;
                }

                &:nth-of-type(2) {
                  transition-delay: 0.3s;
                }

                &:nth-of-type(3) {
                  transition-delay: 0.4s;
                }

                &:nth-of-type(4) {
                  transition-delay: 0.5s;
                }
              }
            }
          }
        }
      }

      @media (max-width: 767px) {
        width: 100%;

        &:first-of-type {
          -webkit-box-ordinal-group: 3;
          order: 2;

          /* & .services-col-content:nth-of-type(2) {
            & h3 {
              text-align: right;
            }
            & .services-col-content-img-container {
              & .services-col-content-img-container-wrap img {
                right: 0px;
              }
            }

            & ul li {
              text-align: end;
            }
          } */
        }

        &:nth-of-type(2) {
          -webkit-box-ordinal-group: 4;
          order: 3;

          /* & .services-col-content:nth-of-type(1) {
            & h3 {
              text-align: right;
            }
            & .services-col-content-img-container {
              & .services-col-content-img-container-wrap img {
                right: 0px;
              }
            }

            & ul li {
              text-align: end;
            }
          } */
        }

        &:nth-of-type(3) {
          -webkit-box-ordinal-group: 2;
          order: 1;
        }
      }
    }
  }

  @media screen and (max-width: 480px) {
    padding-top: 250px;
    & .services-row {
      & .services-title-container {
        & .services-title-container-title {
          padding-bottom: 100px;
        }
      }
    }
  }
  @media screen and (max-width: 375px) {
    padding-top: 175px;
  }
}

/* Projects section */

.projects {
  padding-top: 400px;

  @media screen and (max-width: 480px) {
    padding-top: 250px;
  }
  @media screen and (max-width: 375px) {
    padding-top: 175px;
  }

  & .projects-title-row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -15px;

    & .projects-container-title {
      position: relative;
      width: 100%;
      min-height: 1px;
      padding-right: 15px;
      padding-left: 15px;

      & .projects-container-title-maintitle {
        padding-bottom: 100px;

        & h2 {
          display: block;
          font-size: 7.5rem;
          color: var(--bg-text);
          font-family: Monument, sans-serif;
          line-height: 1.1;
          font-style: normal;
          margin-block-start: 0.83em;
          margin-block-end: 0.83em;
          margin-inline-start: 0px;
          margin-inline-end: 0px;
          font-weight: bold;
          unicode-bidi: isolate;

          @media (max-width: 1199px) {
            font-size: 7rem;
          }
          @media (max-width: 991px) {
            font-size: 6rem;
          }
          @media (max-width: 767px) {
            font-size: 4.5rem;
          }
          @media screen and (max-width: 576px) {
            font-size: 3.52rem;
          }
          @media screen and (max-width: 480px) {
            font-size: 3.35rem;
          }
          @media screen and (max-width: 414px) {
            font-size: 3rem;
          }
          @media screen and (max-width: 374px) {
            font-size: 2.6rem;
          }

          & .projects-container-title-maintitle-line {
            display: block;
            overflow: hidden;

            & span {
              display: inline-block;
              transform: translateY(102%);
              transition: transform 0.5s ease;
            }

            &.active {
              & span {
                transform: translateY(0);
              }

              &:first-of-type span {
                transition-delay: 0.2s;
              }

              &:nth-of-type(2) span {
                transition-delay: 0.3s;
              }
            }
          }
        }

        @media (min-width: 992px) {
          flex: 0 0 83.333333%;
          max-width: 83.333333%;
          margin-left: 16.666667%;
        }
      }
    }

    @media (max-width: 991px) {
      padding-top: 350px;
    }
    @media screen and (max-width: 480px) {
      padding-top: 100px;
    }

    @media screen and (max-width: 375px) {
      padding-top: 75px;
    }
  }

  & .projects-content-row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -15px;

    & .projects-content-container {
      position: relative;
      width: 100%;
      min-height: 1px;
      /* padding-inline: 15px; */

      @media (min-width: 768px) {
        flex: 0 0 100%;
        max-width: 100%;
      }

      & .projects-content-items {
        & .projects-content-item {
          position: relative;
          margin-bottom: 150px;

          @media screen and (max-width: 576px) {
            margin-bottom: 100px;
          }

          &:nth-child(odd) {
            & .projects-content-item-img-container {
              transform: translateX(60%);

              @media (max-width: 991px) {
                transform: translateX(0%);
              }

              & .projects-content-item-img-wrap-btn {
                position: absolute;
                bottom: -66px;
                left: -55px;
                opacity: 0;
                transform: translate(-5%, -5%) skewX(-40deg);
                transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
              }
            }

            & .projects-content-item-info {
              left: 0;
              right: unset;
              padding-right: 60px;

              @media (max-width: 1199px) {
                padding-right: 60px;
              }

              @media (max-width: 991px) {
                padding-right: 120px;
              }

              @media (max-width: 576px) {
                padding-right: 60px;
              }

              @media (max-width: 480px) {
                padding-right: 10%;
              }
            }
          }

          & .projects-content-item-img-container {
            flex: 0 0 60%;
            max-width: 60%;
            height: 160px;
            position: relative;

            @media (max-width: 991px) {
              flex: 0 0 100%;
              max-width: 100%;
            }

            & .projects-content-item-img-wrap-btn {
              position: absolute;
              width: fit-content;
              bottom: -66px;
              right: -55px;
              opacity: 0;
              transform: translate(-5%, -5%) skewX(40deg);
              transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            }

            & .projects-content-item-img-wrap {
              width: 100%;
              height: 0%;
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              overflow: hidden;
              transition: all 0.4s ease-in-out;

              & img {
                width: 100%;
                display: block;
                cursor: pointer;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                filter: grayscale(100%) sepia(1) saturate(0.5) contrast(0.8)
                  brightness(0.8);

                &[data-img-full] {
                  pointer-events: none;
                  position: fixed;
                  opacity: 0;
                }
              }
            }
          }

          & .projects-content-item-info {
            width: 40%;
            position: absolute;
            top: 0;
            right: 0;
            padding-left: 60px;

            @media (max-width: 991px) {
              position: relative;
              top: unset;
              right: unset;
              padding-left: 120px;
              padding-top: 40px;
              width: 100%;
            }

            @media (max-width: 576px) {
              padding-left: 60px;
            }

            @media (max-width: 480px) {
              padding-left: 10%;
            }

            & .projects-content-item-info-title {
              display: block;
              font-family: Monument, sans-serif;
              font-size: 1.5rem;
              color: var(--bg-text);
              line-height: 1.29;
              margin-block-start: 1em;
              margin-block-end: 1em;
              margin-inline-start: 0px;
              margin-inline-end: 0px;
              font-weight: 400;
              unicode-bidi: isolate;

              & .projects-content-item-info-title-line {
                display: block;
                overflow: hidden;

                & span {
                  display: block;
                  transform: translateY(102%);
                  transition: transform 1s ease, -webkit-transform 1s ease;
                }

                &.active {
                  & span {
                    transform: translateY(0%);
                  }
                }
              }
            }

            & .projects-content-item-info-description {
              font-family: "Univia", sans-serif;
              font-weight: 300;
              line-height: 1.75;
              color: rgba(255, 255, 255, 0.7);
              font-size: var(--fs-base);
              padding-left: 60px;
              padding-top: 25px;
              margin-bottom: 0;

              & .projects-content-item-info-description-line {
                display: block;
                overflow: hidden;

                & span {
                  display: block;
                  transform: translateY(102%);
                  transition: transform 1s ease, -webkit-transform 1s ease;
                }

                &.active {
                  & span {
                    transform: translateY(0%);
                    transition: transform 1s ease, -webkit-transform 1s ease;
                  }

                  &:first-of-type span {
                    transition-delay: 0.2s;
                  }
                  &:nth-of-type(2) span {
                    transition-delay: 0.3s;
                  }
                  &:nth-of-type(3) span {
                    transition-delay: 0.4s;
                  }
                  &:nth-of-type(4) span {
                    transition-delay: 0.5s;
                  }
                  &:nth-of-type(5) span {
                    transition-delay: 0.6s;
                  }
                }
              }
            }
          }

          &:hover {
            & .projects-content-item-img-container {
              & .projects-content-item-img-wrap-btn {
                opacity: 1;
              }
            }
          }
        }
      }

      &.active {
        & .projects-content-items {
          & .projects-content-item {
            & .projects-content-item-img-container {
              & .projects-content-item-img-wrap {
                height: 100%;
                transition: 1s ease height;
                transition-delay: 0.6s;
              }
            }
          }
        }
      }
    }
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rotation-animation {
  animation: rotation 15s infinite linear;
}

/* Stack section */

.stack {
  display: block;
  padding-top: 265px;

  & .stack-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-inline: -15px;

    & .stack-title-container {
      position: relative;
      width: 100%;
      min-height: 1px;
      padding-inline: 15px;

      & .stack-title-container-title {
        text-align: right;
        padding-bottom: 150px;

        & h2 {
          font-weight: 400;
          line-height: 1.29;
          font-size: 7.5rem;
          color: var(--bg-text);
          font-family: "Monument", sans-serif;
          line-height: 1.1;

          @media (max-width: 1199px) {
            font-size: 7rem;
          }
          @media (max-width: 991px) {
            font-size: 6rem;
          }
          @media (max-width: 767px) {
            font-size: 4.5rem;
          }
          @media screen and (max-width: 576px) {
            font-size: 3.52rem;
          }
          @media screen and (max-width: 480px) {
            font-size: 3.35rem;
          }
          @media screen and (max-width: 414px) {
            font-size: 3rem;
          }
          @media screen and (max-width: 374px) {
            font-size: 2.6rem;
          }

          & .stack-title-container-title-line {
            display: block;
            overflow: hidden;

            & span {
              display: block;
              transform: translateY(102%);
              transition: transform 1s ease;
            }

            &.active {
              & span {
                transform: translateY(0%);
                transition: transform 1s ease, -webkit-transform 1s ease;
              }
              &:first-of-type span {
                transition-delay: 0.2s;
              }

              &:nth-last-of-type(2) span {
                transition-delay: 0.3s;
              }
            }
          }
        }
      }
    }

    & .stack-container {
      position: relative;
      width: 50%;
      /* padding-inline: 15px; */
      display: flex;
      justify-content: center;
      align-items: center;
      height: 550px;
      transition: height 0.8s ease;
      transform-origin: center center;
      /* overflow: hidden; */

      @media screen and (max-width: 767px) {
        padding: 5rem 2rem;
      }

      & #stackCanvas {
        width: 100%;
        max-width: 600px;
        height: 550px;
        cursor: grab;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
        touch-action: none;

        &:active {
          cursor: grabbing;
        }
      }
    }

    & .stack-text-container {
      width: 50%;
      display: flex;
      flex-direction: column;
      align-items: end;
      justify-content: end;
      padding-top: 2rem;

      & p {
        font-family: "Univia", sans-serif;
        color: rgba(255, 255, 255, 0.7);
        font-size: 2.25rem;
        line-height: 1.75;
        margin-bottom: 1rem;
        font-weight: 300;

        @media screen and (max-width: 767px) {
          margin-bottom: 3rem;
        }
        @media screen and (max-width: 414px) {
          font-size: 1rem;
        }
        @media screen and (max-width: 374px) {
          font-size: 0.94rem;
        }

        & .stack-text-container-line {
          display: block;
          overflow: hidden;
          margin-left: 20%;
          &:first-of-type {
            font-family: "Monument", sans-serif;
            color: var(--bg-text);
            margin-left: 15%;
          }

          & span {
            display: block;
            line-height: 1.2;

            transform: translateY(102%);
            transition: transform 1s ease, -webkit-transform 1s ease;
          }

          &.active {
            & span {
              transform: translateY(0%);
              transition: transform 1s ease, -webkit-transform 1s ease;
            }

            &:first-of-type span {
              transition-delay: 0.2s;
            }

            &:nth-of-type(2) span {
              transition-delay: 0.5s;
            }

            &:nth-of-type(3) span {
              transition-delay: 0.6s;
            }
          }
        }
      }

      & .stack-text-container-arrow-wrap {
        position: relative;
        margin-top: auto;
        margin-right: auto;
        margin-left: 6rem;
        rotate: -8deg;

        transform-origin: 4rem center;

        transform: rotate(-120deg) translateX(3rem);
        opacity: 0;

        transition: transform 0.8s ease-in-out, opacity 0.8s ease;

        &.active {
          transform: rotate(0deg) translateX(0rem);
          opacity: 1;
        }

        & p {
          font-family: "Univia", sans-serif;
          color: rgba(255, 255, 255, 0.7);
          font-size: var(--fs-base);
          line-height: 1.75;
          margin-bottom: 1rem;
          font-weight: 300;

          &::after {
            content: "☺";
            font-size: 1.75rem;
          }
        }

        & svg {
          position: absolute;
          top: -10px;
          left: -8ch;
          transform: rotateY(180deg);

          & .stack-text-container-arrow-line {
            stroke-dasharray: 945;
            stroke-dashoffset: 945;
            transition: stroke-dashoffset 0.8s ease-in;

            &.active {
              stroke-dashoffset: 0px;
            }
          }
        }
      }

      @media (max-width: 767px) {
        width: 100%;
        align-items: flex-start;
        padding-top: 1rem;
        margin-bottom: 2rem;

        & .stack-text-container-arrow-wrap {
          margin-left: auto;
          margin-top: auto;
          rotate: 0deg;
          align-self: center;
          transform-origin: center -2rem;

          & svg {
            width: 150px;
            height: 150px;
            rotate: 240deg;
            transform: rotateY(210deg);
            transform-origin: right center;
            top: 50px;
            left: 80px;
          }

          &.active {
            transform: rotate(180deg) translateY(0deg);
          }
        }
      }
    }

    @media (max-width: 767px) {
      & > * {
        width: 100% !important;
      }

      & > *:first-of-type {
        -webkit-box-ordinal-group: 3;
        order: 2;
      }

      & .stack-text-container {
        & p {
          & .stack-text-container-line {
            margin-left: 0 !important;
          }
        }
      }
    }
  }
}

@keyframes bellShake {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  15% {
    transform: translate(-50%, -50%) rotate(15deg);
  }
  30% {
    transform: translate(-50%, -50%) rotate(-10deg);
  }
  45% {
    transform: translate(-50%, -50%) rotate(8deg);
  }
  60% {
    transform: translate(-50%, -50%) rotate(-6deg);
  }
  75% {
    transform: translate(-50%, -50%) rotate(4deg);
  }
}

@keyframes rotationY {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

/* Contact Section */

.contact {
  padding-top: 350px;

  & .contact-row {
    display: flex;
    flex-wrap: wrap;
    padding-inline: -15px;
    max-height: 1900px;

    & .contact-row-wrap {
      position: relative;
      width: 100%;
      min-height: 1px;
      padding-inline: 15px;

      & .contact-row-wrap-maintitle {
        padding-bottom: 150px;

        & h2 {
          font-size: 7.5rem;
          color: var(--bg-text);
          font-family: "Monument", sans-serif;
          line-height: 1.1;
          font-weight: 400;

          & .contact-row-wrap-maintitle-line {
            display: block;
            overflow: hidden;

            & span {
              display: block;
              transform: translateY(102%);
            }

            &.active {
              & span {
                transform: translate(0%);
                transition: transform 1s ease, -webkit-transform 1s ease;
              }

              &:first-of-type span {
                transition-delay: 0.4s;
              }
              &:nth-of-type(2) span {
                transition-delay: 0.6s;
              }
              &:nth-of-type(3) span {
                transition-delay: 0.8s;
              }
              &:nth-of-type(4) span {
                transition-delay: 1s;
              }
              &:nth-of-type(5) span {
                transition-delay: 1.2s;
              }
              &:nth-of-type(6) span {
                transition-delay: 1.4s;
              }
              &:nth-of-type(7) span {
                transition-delay: 1.8s;
              }
              &:nth-of-type(8) span {
                transition-delay: 2s;
              }
            }

            & .contact-row-wrap-maintitle-btn-line {
              padding-top: 0.5rem;
              display: inline-block;
              color: #f5efe1;
              position: relative;
              overflow: hidden;
              user-select: none;

              &::after {
                content: "";
                position: absolute;
                z-index: 1;
                right: 0;
                width: 0;
                bottom: 0;
                background: currentColor;
                height: 1rem;
                transition: cubic-bezier(0.19, 1, 0.22, 1) 0.8s width;
              }

              &:hover::after,
              &:focus::after,
              &:active::after {
                left: 0;
                right: auto;
                width: 100%;
              }
            }
          }

          @media (max-width: 1199px) {
            font-size: 7rem;
          }

          @media (max-width: 991px) {
            font-size: 6rem;
          }
          @media (max-width: 767px) {
            font-size: 4.5rem;
          }

          @media (max-width: 576px) {
            font-size: 3.52rem;
          }
          @media (max-width: 480px) {
            font-size: 3.35rem;
          }
          @media (max-width: 374px) {
            font-size: 2.6rem;
          }
        }
      }
    }
  }

  @media screen and (max-width: 480px) {
    padding-top: 150px;

    & .contact-row {
      & .contact-row-wrap {
        & .contact-row-wrap-maintitle {
          padding-bottom: 100px;
        }
      }
    }
  }

  @media screen and (max-width: 375px) {
    padding-top: 100px;
  }
}

/* Footer */
footer {
  position: relative;
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: #666;
  font-size: 0.875rem;

  & .footer-container-row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -15px;

    & .footer-container-row-wrap {
      position: relative;
      min-height: 1px;
      padding-inline: 15px;
      width: 100%;
      flex: 0 0 50%;

      @media (max-width: 992px) {
        flex: 0 0 100%;
        max-width: 100%;
      }

      & .footer-container-row-wrap-social,
      .footer-container-row-wrap-links {
        position: relative;
        z-index: 2;

        & ul {
          display: flex;
          flex-wrap: wrap;
          list-style: none;
          & li {
            display: inline-flex;
            align-items: center;
            padding-right: 20px;

            & .footer-container-row-wrap-social-line {
              display: block;
              overflow: hidden;

              & span {
                display: inline-block;
                transform: translateY(104%);
                transition: transform 1s ease, -webkit-transform 1s ease;
                transition-delay: 0.2s;

                & a {
                  font-family: Monument, sans-serif;
                  color: #000;
                  font-size: 1rem;
                  overflow: hidden;
                  position: relative;
                  display: inline-block;
                  user-select: none;
                  background-color: transparent;
                  touch-action: manipulation;

                  &::after {
                    content: "";
                    position: absolute;
                    z-index: 1;
                    right: 0;
                    width: 0;
                    bottom: 0;
                    background: currentColor;
                    height: 0.25rem;
                    transition: cubic-bezier(0.19, 1, 0.22, 1) 0.8s width;
                  }

                  &:hover::after,
                  &:focus::after,
                  &:active::after {
                    left: 0;
                    right: auto;
                    width: 100%;
                  }

                  @media screen and (max-width: 480px) {
                    font-size: 1.3rem;
                    line-height: 2;
                  }

                  @media screen and (max-width: 374px) {
                    font-size: 1.2rem;
                  }
                }
              }

              &.active {
                & span {
                  transform: translateY(0%);
                }
              }
            }
          }
        }

        @media (max-width: 1199px) {
          & ul {
            & li {
              padding-right: 10px;
            }
          }
        }
        @media (max-width: 991px) {
          & ul {
            & li {
              padding-right: 20px;
            }
          }
        }
        @media (max-width: 576px) {
          & ul {
            & li {
              padding-right: 10px;
            }
          }
        }

        @media screen and (max-width: 480px) {
          & ul {
            & li {
              display: flex;
              flex: 0 0 50%;
              max-width: 50%;
              padding-right: 0;
              justify-content: start;
            }
          }
        }
      }

      & .footer-container-row-wrap-links {
        text-align: right;

        .footer-container-row-wrap-link-line {
          display: block;
          overflow: hidden;

          & span {
            display: inline-block;
            transform: translateY(104%);
            transition: transform 1s ease, -webkit-transform 1s ease;
            transition-delay: 0.2s;
          }

          &.active {
            & span {
              transform: translateY(0%);
            }
          }
        }

        & ul {
          justify-content: end;
          & li {
            &.top {
              & a {
                color: black;
              }
            }

            & a {
              color: rgba(0, 0, 0, 0.56);
              font-size: 1rem;
              transition: all 0.4s ease;

              &:hover {
                letter-spacing: 0.05rem;
                transition: all 0.4s ease;
              }
            }
          }
        }

        @media (max-width: 991px) {
          text-align: left;
          padding-top: 1rem;

          & ul {
            justify-content: start;
            & li {
              &.top {
                position: absolute;
                right: 0;
              }
            }
          }
        }

        @media (max-width: 767px) {
          text-align: left;
          padding-top: 1rem;

          & ul {
            & li {
              &.top {
                display: none;
              }
            }
          }
        }
      }
    }
  }

  &::after {
    content: "";
    position: absolute;
    inset: 20px;
    background-color: #f5efe1;
    z-index: 1;
  }

  @media (max-width: 576px) {
    &::after {
      inset: 15px;
    }
  }
}

& .footer-banner {
  text-align: center;
}
