.marquee {
  font-family: "sohne-bold";
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  padding: clamp(20px, 4vw, 48px) 0;
  font-size: clamp(48px, 7vw, 90px);
  text-transform: uppercase;
  overflow: hidden;
}

.marquee__inner {
  display: flex;
  width: fit-content;
  flex-direction: row;
}

.marquee__part {
  flex-shrink: 0;
}

/*marquee menu*/


.marquee-menu {
  font-family: "sohne-bold";
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  margin-bottom: clamp(8vh, 15vh, 20vh);
  font-size: clamp(16px, 4vw, 30px);
  text-transform: uppercase;
  overflow: hidden;
}

.marquee__inner-menu {
  display: flex;
  width: fit-content;
  flex-direction: row;
}

.marquee__part-menu {
  flex-shrink: 0;
}

.marquee-menu-right {
  font-family: "sohne-bold";
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  margin-top: clamp(8vh, 15vh, 20vh);
  font-size: clamp(20px, 5vw, 50px);
  text-transform: uppercase;
  overflow: hidden;
}

.marquee__inner-menu-right {
  display: flex;
  width: fit-content;
  flex-direction: row;
}

.marquee__part-menu-right {
  flex-shrink: 0;
}

.marquee-dot {
  margin: 0 1em;
  /* space on left and right of dot */
}


/*marquee menu*/

.marquee-svg {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
}

.marquee-track img {
  height: 80px;
  /* fixed height for all SVGs */
  width: auto;
  /* preserve aspect ratio */
  margin: 0 50px;
  /* spacing between icons */
  flex-shrink: 0;
  /* prevents shrinking */
}

/* Optional responsive tweaks */
@media (max-width: 768px) {
  .marquee-track img {
    height: 60px;
    margin: 0 20px;
  }
}

@media (max-width: 480px) {
  .marquee-track img {
    height: 50px;
    margin: 0 15px;
  }
}

.view-projects-container {
  width: 100%;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 5px;
  position: relative;
  z-index: 20;
}

.view-projects-container a,
.view-projects-container a span {
  color: white;
  font-family: "sohne-medium";
  font-size: clamp(10px, 0.85vw, 12px);
  letter-spacing: 0.08em;
}

.view-projects-container .button-me,
.view-sub-container .button-me {
  border-bottom: 1px solid currentColor;
  margin-bottom: 5px;
}

.view-sub-container a,
.view-sub-container a span {
  font-family: "sohne-medium";
  font-size: clamp(10px, 0.85vw, 12px);
  letter-spacing: 0.05em;
}

.view-projects-btn {
  font-family: "sohne-medium";
  font-size: 0.7rem;
  color: white;
  background: none;
  border: none;
  text-transform: uppercase;
  position: relative;
  transition: color 0.9s ease;
}

.view-projects-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: white;
  transform: scaleX(1);
  /* start fully visible */
  transform-origin: center;
  /* shrink toward center */
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  /* smooth easing */
}

.view-projects-btn:hover {
  color: #ddd;
}

.view-projects-btn:hover::after {
  transform: scaleX(0);
  /* shrink toward center */
}

/* Small screen fallback */
@media (max-width: 400px) {
  .view-projects-btn {
    font-size: 12px;
  }
}

.view-cert-container {
  width: 100%;
  text-align: center;
  padding-top: 5vh;
  /* 10% of viewport height */
  position: relative;
  z-index: 20;
}

.view-cert-btn {
  font-family: "sohne-medium";
  font-size: 0.7rem;
  color: black;
  background: none;
  border: none;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 1px;
  transition: color 0.9s ease;
  text-decoration: none;

}

.view-cert-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: black;
  transform: scaleX(1);
  /* start fully visible */
  transform-origin: center;
  /* shrink toward center */
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  /* smooth easing */
}

.view-cert-btn:hover {
  color: #ddd;
}

.view-cert-btn:hover::after {
  transform: scaleX(0);
  /* shrink toward center */
}

/* Small screen fallback */
@media (max-width: 400px) {
  .view-cert-btn {
    font-size: 12px;
  }
}

.view-sub-container {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  position: relative;
  z-index: 20;
}

.view-sub-btn {
  font-family: "sohne-medium";
  font-size: 1rem;
  color: black;
  background: none;
  border: none;
  text-transform: uppercase;
  position: relative;
  transition: color 0.9s ease;
}

.view-sub-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: black;
  transform: scaleX(1);
  /* start fully visible */
  transform-origin: center;
  /* shrink toward center */
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  /* smooth easing */
}

.view-sub-btn:hover {
  color: #ddd;
}

.view-sub-btn:hover::after {
  transform: scaleX(0);
  /* shrink toward center */
}

/* Small screen fallback */
@media (max-width: 400px) {
  .view-sub-btn {
    font-size: 12px;
  }
}

.view-download-container {
  width: 100%;
  padding-top: 30px;
  /* space above the button */
  position: relative;
  z-index: 20;
}

.view-download-btn {
  font-family: "sohne-bold";
  font-size: 1rem;
  color: black;
  background: none;
  border: none;
  text-transform: uppercase;
  position: relative;
  transition: color 0.9s ease;
}

.view-download-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: black;
  transform: scaleX(1);
  /* start fully visible */
  transform-origin: center;
  /* shrink toward center */
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  /* smooth easing */
}

.view-download-btn:hover {
  color: #ddd;
}

.view-download-btn:hover::after {
  transform: scaleX(0);
  /* shrink toward center */
}

/* Small screen fallback */
@media (max-width: 400px) {
  .view-projects-btn {
    font-size: 15px;
  }
}