footer {
  width: 100%;
  height: fit-content;
  flex: 1;
  display: flex;
  justify-content: center;
  justify-items: center;
  align-content: end;
  align-items: end;
}
.footer1-content {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  justify-items: center;
  align-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--second-color);
  background-image: linear-gradient(
    to bottom,
    var(--second-color),
    var(--first-color)
  );
}
.footer1-content-area {
  width: 90%;
  height: fit-content;
  display: flex;
  justify-content: center;
  justify-items: center;
  align-content: center;
  align-items: center;
  padding: 30px 0px;
}
.footer2-content {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  justify-items: center;
  align-content: center;
  align-items: center;
  flex-direction: column;
  background-color: black;
}
.footer2-content-area {
  width: 90%;
  height: fit-content;
  display: flex;
  justify-content: center;
  justify-items: center;
  align-content: center;
  align-items: center;
  padding: 30px 0px;
}
.logo-footer {
  width: 500px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: 0.3s all;
  image-rendering: -webkit-optimize-contrast; /* Untuk Safari & iOS */
}
.copyright {
  font-size: 15px; /* 13 */
  color: white;
  margin: 0px;
  padding: 0px;
  margin-top: 15px;
  transition: 0.3s all;
}

@media screen and (min-width: 650px) {
  .footer1-content-area {
    padding: 30px 0px;
  }
  .logo-footer {
    width: 500px;
  }
}
@media screen and (max-width: 650px) {
  .footer1-content-area {
    padding: 40px 0px;
  }
  .logo-footer {
    width: 400px;
  }
}
@media screen and (max-width: 550px) {
  .footer1-content-area {
    padding: 50px 0px;
  }
  .logo-footer {
    width: 300px;
  }
  .copyright {
    font-size: 15px;
  }
}
@media screen and (max-width: 450px) {
  .footer1-content-area {
    padding: 60px 0px;
  }
  .logo-footer {
    width: 200px;
  }
  .copyright {
    font-size: 13px;
  }
}
