*, *::before, *::after {
  box-sizing: border-box;
}

.tusker-footer {
  background: #212121;
  border-top-right-radius: 15vw;
  padding: 6rem 2rem 6rem;
  color: #ffffff;
  width: 100%;
  margin-left: 0;
  position: relative;
  overflow: hidden;
   box-sizing: border-box;
}


.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  padding: 3rem 0 2rem;
 }


.footer-column h3 {
  font-family: "Canela Text", serif;
  margin-bottom: 1rem;
  font-weight: 500;
  Color: #999999;
  font-style: italic;
}

.footer-column ul {
  font-family: "Canela Text", serif;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  font-family: "Canela Text", serif;
  margin-bottom: 0.6rem;
}

.footer-column a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-family: "Canela Text", serif;
  transition: opacity 0.2s ease;
   
}

.footer-column a:hover {
  opacity: 0.5;
}

.tusker-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255,255,255, 0),
    transparent 0%
  );
  pointer-events: none;
  z-index: 1;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-divider {
  height: 1.5px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
  margin: 2rem 0 1rem;
   z-index: 3;
}


.footer-bg-logo {
  position: relative;
  margin: 4rem auto 0;
  width: clamp(380px, 70vw, 1100px);
  opacity: 0.15;
  pointer-events: none;
  text-align: center;
}

.footer-bg-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;  
  flex-wrap: nowrap;    
  gap: 2rem;
  z-index: 3;
  margin: 3rem 0 0;
}

.footer-left,
.footer-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-left span {
  font-family: 'SohneBreit', sans-serif;
  color: rgba(126,126,126,1);
  font-size: 0.8rem;
  }

.footer-left img{
  width: 18px;
  height: auto;
  display: block;
}

.footer-right a{
  font-family: 'SohneBreit', sans-serif;
  color: rgba(126,126,126,1);
  font-size: 0.8rem;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .footer-bg-logo {
  position: relative;
  margin: 4rem auto 0;
  width: clamp(320px, 65vw, 1100px);
  opacity: 0.15;
  pointer-events: none;
  text-align: center;
}

.footer-bg-logo img {
  width: 100%;
  height: auto;
  display: block;
}
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
    .footer-bg-logo {
    bottom: -30px;
  }
  
    .tusker-footer {
    width: 100%;
    margin-left: 0;
  }
    .tusker-footer {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

@media (max-width: 640px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
.footer-bg-logo {
  position: relative;
  margin: 4rem auto 0;
  width: min(75vw, 1100px);
  opacity: 0.15;
  pointer-events: none;
  text-align: center;
  }

.footer-bg-logo img {
  width: 100%;
  height: auto;
  display: block;
}
 .tusker-footer {
    width: 100%;
    margin-left: 0;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 6rem;   /* lowers it */
    text-align: center;
  }

  .footer-left,
  .footer-right {
    justify-content: center;
  }

  .footer-right {
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 6px;
  }
}