.aboutme-section {
  width: 100%;
  height: 100vh;
  position: relative;
}

/* flowing menu styles ----------------------------------------------------------------------------------- */

.aboutme-section .flowing-menu-container {
  width: 100%;
  height: 100%;
}

.aboutme-section .flowing-menu-wrap {
  width: 100%;
  height: 90%;
  overflow: hidden;
}

.aboutme-section .flowing-menu {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 0;
}

.aboutme-section .flowing-menu__item {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 -1px;
}

.aboutme-section .flowing-menu__item-link {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  /* padding-inline-start: 20px; */
  height: 100%;
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  font-weight: bolder;
  color: #6c6c6c !important;
  font-size: clamp(3.4rem, 6vw, 16rem);
}

@media (max-width: 768px) {
  .aboutme-section .flowing-menu__item-link {
    flex-wrap: wrap;
    white-space: normal;
    /* justify-content: center; */
    text-align: left;
    font-size: 3.4rem;
    padding-left: 10px;
    line-height: 1.1;
  }

  .aboutme-section .flowing-menu__marquee-inner span {
    flex-wrap: wrap;
    /* white-space: normal; */
    font-size: 3rem;
  }
}

.aboutme-section .flowing-menu__item-link:hover {
  color: #060606;
}

.aboutme-section .flowing-menu__item-link:focus:not(:focus-visible) {
  color: #fff;
}

.aboutme-section .flowing-menu__marquee {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: #fff;
  transform: translate3d(0, 101%, 0);
  transition: transform 0.6s ease-expo;
}

.aboutme-section .flowing-menu__marquee-inner-wrap {
  height: 100%;
  width: min-content;
  padding-inline: 4vw;
  display: flex;
  transform: translateX(0);
}

.aboutme-section .flowing-menu__marquee-inner {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  min-width: 100vw;
  will-change: transform;
}

.aboutme-section .flowing-menu__marquee-inner span {
  color: #060606;
  white-space: nowrap;
  text-transform: capitalize;
  font-weight: 500;
  font-size: clamp(3.4rem, 6vw, 16rem);
  line-height: 1.2;
  padding: 0 1vw;
}

.aboutme-section .flowing-menu__marquee-img {
  width: 200px;
  height: 7vh;
  margin: 2em 2vw;
  padding: 1em 0;
  border-radius: 50px;
  background-size: cover;
  background-position: 50% 50%;
}