footer {
  background: #FFFFFF;
}
footer .footer-content {
  margin-top: 100px;
}
footer .footer-content,
footer .footer-content .links .sitemap {
  gap: 130px;
}

footer .footer-content .social-network-container {
  gap: 32px;
}

footer .footer-content .social-network-container .logo-rgb {
  width: 180px;
}

footer .footer-content .social-network-container .description {
  font-size: 18px;
  text-align: justify;
  word-spacing: 6px;
  letter-spacing: .5px;
  line-height: 1.2;
  color: #2A1B39;
}

footer .footer-content .social-network-container .social-logos div a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--highlight-color);
  border-radius: 50%;
  height: 34px;
  max-height: 34px;
  min-height: 34px;
  width: 34px;
  max-width: 34px;
  min-width: 34px;
  transition: all ease-in .2s;
}

footer .footer-content .social-network-container .social-logos div a:hover {
  scale: 1.1;
  background-color: #ffffff;
}

.links-list {
  padding: 0;
}
.links-list li {
  display: block;
  white-space: nowrap;
}

footer .footer-content .links .sitemap .links-group .links-list .link-item a {
  text-decoration: none;
  color: var(--grey-color);
}

footer .footer-content .links .sitemap .links-group .links-list .link-item a:hover {
  color: var(--highlight-color);
}

footer .copyright {
  border-top: 1px solid #e5e5e6;
  color: var(--grey-color);
  margin-top: 100px;
  font-size: 12px !important;
  line-height: 20px;
  letter-spacing: 1px;
}


@media (max-width: 1000px) {

  footer .footer-content,
  footer .footer-content .links .sitemap {
    gap: 0px;
    flex-direction: column;
    justify-content: center;
  }

  footer .footer-content .social-network-container {
    justify-content: center;
    align-items: center;
  }


  footer .footer-content .links .sitemap .links-group {
    align-items: start;
    gap: 0px !important;
  }

  footer .footer-content .links .sitemap .links-group .accordion {
    padding: 24px;
    text-align: start;
    font-size: 16px;

    border-top: 1px solid rgba(124, 58, 237, 0.100);
    border-radius: 0px;
  }

  footer .footer-content .links .sitemap .links-group .accordion::before,
  footer .footer-content .links .sitemap .links-group .accordion::after {
    color: var(--pure-black);
  }

  footer .footer-content .links .sitemap .links-group .accordion-content .links-list {
    padding: 0;
  }

  footer .footer-content .social-network-container {
    margin-bottom: 40px;
  }

  footer .footer-content .social-network-container .logo-rgb {
    width: 180px;
  }

  footer .footer-content .social-network-container .description {
    font-size: 18px;
    text-align: justify;
    word-spacing: 6px;
    letter-spacing: .5px;
  }

  footer .accordion {
    background-color: transparent;
    cursor: pointer;
    width: 100%;
    text-align: center;
    outline: none;
    font-size: 25px;
    transition: all 0.4s ease-out;
  }
  
  footer .accordion:first-child {
    border-radius: 1rem 1rem 0 0;
  }
  
  footer .accordion:nth-last-child(1) {
    border-radius: 0 0 1rem 1rem;
  }
  
  footer .accordion:after {
    content: "\25BE";
    color: #eee;
    font-weight: bold;
    margin-left: 1.5rem;
  }
  
  footer .active-accordion:after {
    content: "\25B4";
  }
  
  footer .accordion-content {
    padding: 0 1rem;
    color: #aaa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  
  footer .accordion-content ul {
    list-style-type: none;
    width: 100%;
    margin: 1rem 0;
    padding: 3.2rem .2rem;
  }
  
  footer .accordion-content ul li {
    padding: 0.2rem 0;
    border-top: 1px solid var(--pure-white);
  }

  footer .copyright {
    border-top: 1px solid rgba(124, 58, 237, 0.100);
    margin-top: 0px;

  }
  footer .copyright p{
   font-size: 14px;
  }

}

@media (max-width: 1024px) {

  footer .copyright {
    border-top: 1px solid #e5e5e6;
    color: var(--grey-color);
    margin-top: 20px;
    font-size: 12px !important;
    line-height: 20px;
    letter-spacing: 1px;
}


footer .footer-content, footer .footer-content .links .sitemap {
  gap: 0;
}

}