.new-css footer .container {
  max-width: 1440px;
  padding: 0 20px;
  margin: auto;
  width: 100%;
}

.new-css footer {
  background: white;
  padding: 50px 0;
  padding-bottom: 30px;
}

.new-css footer .container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.new-css footer .grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.new-css footer .news .input {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 500px;
  width: 100%;
}

.new-css .input input {
  width: 100%;
  border-bottom: var(--border);
  height: 60px;
}

.new-css .news h2 {
  font-size: 70px;
}

.new-css .input button {
  padding: 0;
  background: unset;
  width: 60px;
}

.new-css .input button i {
  color: var(--primary-text);
}

.new-css .input button:hover i {
  color: white;
}

.new-css footer .social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.new-css footer .flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.new-css footer .social h2 {
  font-size: 30px;
}

.new-css footer .social i {
  color: var(--primary-text);
  font-size: 25px;
}

.new-css footer .ico,
.new-css footer .ico i {
  transition: 0.3s;
}

.new-css footer .ico:hover i {
  color: white;
}

.new-css footer .ico:hover {
  background: var(--primary);
}

.new-css footer .footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.new-css footer .links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.new-css footer .links h3 {
  font-size: 16px;
  margin-bottom: 15px;
}

.new-css footer .links a {
  font-size: 14px;
  font-weight: 300;
  width: fit-content;
  text-transform: uppercase;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
}

.new-css footer a i {
  font-size: 18px;
}

.new-css .copy {
  padding-top: 30px;
  border-top: var(--border);
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
}

.new-css footer .logos {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.new-css .logos img {
  width: unset;
  height: 90px;
}

footer a {
  transition: 0.3s;
}

footer a:hover {
  padding-left: 3px;
  color: var(--primary);
}

.new-css .ico {
  width: 50px;
  aspect-ratio: 1/1;
  border: var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 660px) {

  .new-css [class*="grid"],
  footer .container {
    grid-template-columns: 1fr !important;
  }

  .new-css .news h2 {
    font-size: 50px;

  }

  .new-css footer .logos {
    gap: 10px;

    justify-content: space-between;
  }

  .new-css .newsletter {
    display: grid;
    grid-template-columns: 1fr;
  }

  .new-css footer .footer-links {
    grid-template-columns: 1fr;
    gap: 50px;

  }

  .new-css .logos img {
    height: 70px;
  }
}