.footer {
  padding-top: 100px;
  padding-bottom: 54px;
  background-color: #000;
  overflow: hidden;
}

.footer__container {
  position: relative;
}

.footer__container::after {
  content: "";
  z-index: 1;
  position: absolute;
  width: 900px;
  height: 50px;
  top: 97px;
  border-radius: 20%;
  left: 50%;
  transform: translate(-50%);
  box-shadow: 0 0 200px 30px #d6001c, 0 0 20px 20px #d6001c;
}

.footer__text {
  position: relative;
  z-index: 2;
  max-width: 285px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;

  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
}
.footer__text-border {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #d6001c;
}

.footer__support {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 30px;
}

.footer__support-link {
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.footer__support-link:hover {
  color: #d6001c;
  border-bottom-color: #d6001c;
}

@media (max-width: 1024px) {
  .footer__container::after {
    width: 600px;
    height: 35px;
    top: 97px;
    box-shadow: 0 0 120px 20px #d6001c, 0 0 15px 15px #d6001c;
  }
}

@media (max-width: 768px) {
  .footer {
    padding-top: 0;
    padding-bottom: 60px;
    background-color: #000;
    overflow: hidden;
  }

  .footer__container::after {
    width: 400px;
    height: 25px;
    top: 97px;
    box-shadow: 0 0 160px 20px #d6001c, 0 0 10px 10px #d6001c;
  }
  
  .footer__support {
    margin-top: 25px;
  }
  
  .footer__support-link {
    font-size: 13px;
  }
}

@media (max-width: 500px) {
  .footer__container::after {
    width: 300px;
    height: 20px;
    top: 97px;
    box-shadow: 0 0 160px 20px #d6001c, 0 0 8px 8px #d6001c;
  }
  
  .footer__support {
    margin-top: 20px;
  }
  
  .footer__support-link {
    font-size: 12px;
  }
}
