.footer .colored-title {
  font-size: 58px;
  font-style: normal;
  font-weight: 400;
  line-height: 58px;
  letter-spacing: -1.74px;
}

.footer .black-title {
  background: var(--mode-colors-title, linear-gradient(180deg, #141414 0%, #747484 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 58px;
  font-style: normal;
  font-weight: 400;
  line-height: 58px; /* 100% */
  letter-spacing: -1.74px;
}

@media (width<1030px) {
  .footer .colored-title,
  .footer .black-title {
    font-size: 44px;
    letter-spacing: -2.04px;
    line-height: 44px;
  }
}
@media (width<700px) {
  .footer .colored-title,
  .footer .black-title {
    font-size: 24px;
    letter-spacing: -2.04px;
    line-height: 44px;
  }
}
.footer .dummy-border-bottom {
  height: 6px;
  border-radius: 6px;
  border: 1px solid var(--system-colors-white-opacity, rgba(255, 255, 255, 0.36));
}
a {
  font-family: PPTelegraf-Regular;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
  letter-spacing: -0.48px;
  color: #141414;
  width: fit-content;
}

.footer .header-nav-features {
  position: relative;
  height: max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .header-nav-features .hire-container {
  padding: 16px 34px;
  border: 1px solid #000000;
  border-radius: 48px;
  text-align: center;
  color: black;
  transition: all 0.3s ease-in;
}

.footer .header-nav-features .arrow-circle {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  transition: all 0.3s ease-in;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000000;
}

.footer .header-nav-features .arrow-circle svg {
  color: #000000;
  transition: all 0.3s ease-in;
  transform: rotate(0deg);
}

.footer .dummy-border-top {
  height: 28px;
  flex: 1 0 0;
  border-radius: 80px;
  border: 1px solid var(--mode-colors-border, #d7d7d7);
}
@media (width<1024px) {
  .footer .dummy-border-top {
    display: none;
  }
}
.footer .top-border {
  display: flex;
  padding: 16px 34px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 42px;
  border: 1px solid var(--mode-colors-border, #d7d7d7);
}

.footer .dropdown {
  position: relative;
  display: inline-block;
}

.footer .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  top: 61px;
  left: -12px;
}

.footer .dropdown-content a {
  width: 100%;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.footer .dropdown-content a:hover {
  background-color: #ddd;
}

.footer .show {
  display: block;
}
