.footer {
  background: #031800;
  padding: 40px 0 0;
  color: #fff;
  overflow: hidden;
}

.footer-container {
  max-width: 1800px;
  margin: auto;
  padding: 80px 70px;
  border-radius: 50px;
  position: relative;

  background:
    radial-gradient(circle at 15% 20%, rgba(109, 48, 251, .8), transparent 25%),
    radial-gradient(circle at 90% 20%, rgba(109, 48, 251, .8), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(109, 48, 251, .8), transparent 30%),
    #191624;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr 1fr;
  gap: 20px;
}

.footer-logo {
  width: 80px;
  margin-bottom: 30px;
}

.footer-about p {
  color: #d7d7d7;
  line-height: 1.9;
  margin-bottom: 40px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: .4s;
}

.footer-social a:hover {
  background: #6d30fb;
  color: white;
}

.footer-col h3 {
  font-size: 25px;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  color: #fff;
}

.footer-col h3:after {
  content: "";
  width: 70px;
  height: 3px;
  background: #8d4cff;
  position: absolute;
  left: 0;
  bottom: -15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 20px;
}

.footer-col a {
  color: #d7d7d7;
  text-decoration: none;
  transition: .3s;
}

.footer-col a:hover {
  color: white;
}

.footer-col p {
  color: #d7d7d7;
  margin-bottom: 30px;
}

.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.store-buttons img {
  width: 190px;
}

.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1500px;
  margin: auto;
  padding: 30px 20px;
  color: white;
}

.copyright span {
  color: #6d30fb;
}

.copyright-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.copyright-links a {
  color: white;
  text-decoration: none;
}

.copyright-links a:hover {
  color: #6d30fb;
}


@media(max-width:1200px) {

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:768px) {

  .footer-container {
    padding: 60px 30px;
    border-radius: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-col h3 {
    font-size: 28px;
  }

  .copyright {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .copyright-links {
    justify-content: center;
  }

}

.contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 40px;
}

.contact-icon {
  min-width: 54px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #6d30fb;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(109, 48, 251, .4);
}

.contact-content h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-content p {
  color: #d7d7d7;
  line-height: 1.8;
  margin: 0;
}

.contact-content a {
  display: block;
  color: #d7d7d7;
  text-decoration: none;
  line-height: 1.8;
  transition: .3s;
}

.contact-content a:hover {
  color: #fff;
}