.footer {
  margin-top: 30px;
  width: 100%;
  background-color: #020617;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  /* position: fixed;
  left: 0;
  bottom: 0; */
}
.set {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr;

  height: 30vh;
  align-items: start;
  width: 80%;
  color: #ffff;
  gap: 10px;
}
.box1,
.box2,
.box3 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
h1 {
  font-size: 25px;
}
.box4 {
  padding: 20px 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.news {
  padding: 0px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.search input {
  width: 70%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #020617;
  border: 0.5px solid #ffff;
  color: #ffff;
}
.copyright {
  width: 100%;
  height: 30px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.notification {
  display: none;
  margin-top: 10px;
}
.notification.success {
  color: green;
}
.notification.error {
  color: red;
}
form {
  display: flex;
  gap: 5px;
}

.search button {
  font-family: inherit;
  font-size: 18px;
  background: royalblue;
  color: white;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}

.search button span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
  color: #ffff;
}

.search button svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.search button:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.search button:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

.search button:hover span {
  transform: translateX(5em);
}

.search button:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}

/* social */

.social {
  display: flex;
  gap: 10px;
}
.social a {
  color: #ffff;
  font-size: 20px;
}

@media (max-width: 1024px) {
  .footer {
    width: 100%;
    background-color: #020617;
    background: #020617;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 5px;
  }
  .set {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    align-items: start;
    width: 80%;
    color: #ffff;
    gap: 10px;
  }
  .box4 {
    padding: 20px 5px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
  .news {
    padding: 10px 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
