:root {
  --kti-footer-bg: #061a2d;
  --kti-footer-text: #fff;
  --kti-footer-muted: #fff;
  --kti-footer-accent: #35b24a;
  --kti-footer-divider: #80878C;
}

.kti-footer {
	
  position: relative;
  background: radial-gradient(circle at 20% 0%, #0b2d4e 0%, #071b2f 45%, #05131f 100%);
  color: var(--kti-footer-text);
  padding: 56px 24px 24px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.kti-footer-wrapper{
  position: relative;
  z-index: 2;
}

.kti-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 1.1fr 1fr;
  gap: 36px;
}

.kti-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.kti-footer__logo-wrap {
  display: inline-flex;
  align-items: flex-end;
  gap: 6px;
}

.kti-footer__logo-image {
  height: 60px;
  width: auto;
  display: block;
}

.kti-footer__logo-text {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.kti-footer__logo-dot {
  width: 14px;
  height: 14px;
  background: var(--kti-footer-accent);
  display: inline-block;
  border-radius: 2px;
  margin-bottom: 6px;
}

.kti-footer__tagline {
  color: var(--kti-footer-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
}

.kti-footer__title {
  font-size: 16px;
  font-weight: 700;
  margin: 6px 0 16px;
  color: var(--kti-footer-text);
}

.kti-footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.kti-footer__menu a {
  color: var(--kti-footer-muted);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease;
}

.kti-footer__menu a:hover,
.kti-footer__menu a:focus {
  color: var(--kti-footer-text);
}

.kti-footer__divider {
  max-width: 1200px;
  margin: 40px auto 18px;
  height: 1px;
  background: var(--kti-footer-divider);
}

.kti-footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 16px;
  color: var(--kti-footer-muted);
}

.kti-footer__links {
  margin-left: 8px;
}

.kti-footer__links a {
  color: var(--kti-footer-muted);
  text-decoration: none;
}

.kti-footer__links a:hover,
.kti-footer__links a:focus {
  color: var(--kti-footer-text);
}

.kti-footer__sep {
  margin: 0 6px;
}

.kti-footer__social {
 display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
}

.kti-footer__social-link {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--kti-footer-text);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.kti-footer__social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.kti-footer__social-link img {
  width: 25px;
  height: 25px;
  display: block;
}

.kti-footer__social-fallback {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.kti-footer__social-link:hover,
.kti-footer__social-link:focus {
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .kti-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .kti-footer__tagline {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .kti-footer {
    padding: 48px 20px 24px;
  }

  .kti-footer__inner {
    grid-template-columns: 1fr;
  }

  .kti-footer__logo-text {
    font-size: 44px;
  }

  .kti-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.kti-footer::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: 1;
}



@media (min-width:640px) {}
@media (min-width:768px) {
.kti-footer__social {
    justify-content: start;
    width: fit-content;
}
}
@media (min-width:1024px) { 

}
@media (min-width:1280px) {

}
@media (min-width:1536px) { }
