.footer {
  width: 100%;
  height: 300px;
  background-color: var(--header-bg-color);
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.footer .main {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .main .wrapper {
  width: 80%;
  max-width: 1300px;
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  gap: 20px;
}

.footer .main .wrapper .footer_card {
  width: 100%;
  display: flex;
  padding: 10px;
  flex-direction: column;
  gap: 5px;
}

.footer .main .wrapper .footer_card .title {
  font-family: 'Playwrite';
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
}

.footer .main .wrapper .footer_card .list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.footer .main .wrapper .footer_card .list a {
  font-size: 1rem;
  font-family: 'Rubik';
  color: black;
  transition: all 0.4s;
}

.footer .main .wrapper .footer_card .list a:hover {
  color: orange;
}

.footer .main .wrapper .footer_card .list a span {
  font-size: 1.3rem;
  color: red;
}

.footer .main .wrapper .footer_card .list a:nth-child(2) span {
  color: rgb(255, 131, 152);
}

.footer .main .wrapper .footer_card .list a:nth-child(3) span {
  color: rgb(0, 0, 0);
}

.footer .cardImg {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 0px 10px 0px;
}

.footer .cardImg .wrapper {
  width: 80%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.footer .cardImg .wrapper img {
  max-width: 100%;
  aspect-ratio: 429/32;
}

.footer .copyright {
  width: 100%;
  height: 50px;
  background-color: #1d2830;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.9rem;
}

.footer .copyright .wrapper {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Nunito';
}

.footer .copyright .wrapper div:nth-child(2) {
  font-family: 'BadScript';
  font-weight: 700;
}


@media(max-width:700px) {
  .footer .main .wrapper .footer_card .title {
    font-size: 0.9rem;
  }

  .footer .main .wrapper .footer_card .list a {
    font-size: 0.9rem;
  }

  .footer .main .wrapper .footer_card .list a span {
    font-size: 1.2rem;
  }

  .footer .copyright {
    font-size: 0.8rem;
  }
}

@media(max-width:500px) {
  .footer .main .wrapper .footer_card .title {
    font-size: 0.8rem;
  }

  .footer .main .wrapper .footer_card .list a {
    font-size: 0.8rem;
  }

  .footer .main .wrapper .footer_card .list a span {
    font-size: 1.1rem;
  }

  .footer .copyright {
    font-size: 0.7rem;
  }
}

@media(max-width:400px) {
  .footer .main .wrapper .footer_card .title {
    font-size: 0.7rem;
  }

  .footer .main .wrapper .footer_card .list a {
    font-size: 0.7rem;
  }

  .footer .main .wrapper .footer_card .list a span {
    font-size: 1rem;
  }

  .footer .copyright {
    font-size: 0.6rem;
  }
}