
.footer-content {
  display: flex; flex-direction: column;
  backdrop-filter: blur(100px);
  
  min-height: max-content;
  z-index: 1;
  max-width: 70rem;
  margin: 0 auto;
  margin-top: 4rem;

  padding: 1rem; padding-top: 2rem; padding-bottom: 0;
}

.footer-content .brand {
  display: flex; flex-direction: column; justify-content: center;
  margin-bottom: 4rem; 
}

.footer-content .brand .img {
  display: flex; flex-direction: row; justify-content: center;
  width: 100%;
}

.footer-content .brand .img img {
  width: 60%; height: auto;
}

.footer-content .brand .outro-text, .footer-content .brand .copy-right {
  display: none;
}

.footer-content .pages {
  margin-top: 2rem;
}

.footer-content h4 {
  font-size: 1.3rem;
  font-weight: 400;
}

.footer-content .page-container {
  display: flex; flex-direction: column; width: 100%; flex-wrap: wrap;
  row-gap: 0.5rem;
  margin: 2rem 1rem;
}


.footer-content .pages a {
  color: black;
  display: block;
  transition: 0.3s ease;
  text-decoration: underline transparent 1px;
}

.footer-content .pages a:hover {
  text-decoration: underline var(--dark-blue) 1px;
  color: var(--dark-blue);
}


.footer-content .social-media h4 {
  display: none;
}


.footer-content .social-media a {
  color: black;
  text-decoration: none;
}

.footer-content .social-media {
  display: flex; flex-direction: row; justify-content: center;
  column-gap: 1rem;
  margin: 1rem;
}

.social-media img {
  height: 1.5rem;
}

.copy-right {
  font-size: 0.8rem;
  padding-bottom: 0.1rem;
  margin: 1rem 0;
  text-align: center;
}

.contact-cta button {
  padding: 0.5rem;
  margin-top: 1rem;
  border-radius: 5px;
  color: white;
  font-family: outfit;
  background-color: var(--dark-blue);
  border: 1px solid transparent;
  transition: ease 0.3s;
}

.contact-cta button:hover {
  box-shadow: 3px 3px 10px var(--dark-blue);
  transform: translate(-3px, -3px);
}

/* responsive */


@media screen and (min-width: 900px) {
	.footer-content {
    flex-direction: row; justify-content: space-around; align-items: flex-start;
    column-gap: 2rem;
  
    height: 14rem; min-height: max-content;
  }
/* 
  .footer-content .copy-right {
    display: none;
  } */

  .footer-content .brand {
    display: flex; flex-direction: column; justify-content: space-between;
    height: 100%;
    width: 30%;
  }

  .footer-content .brand img {
    width: auto;
    height: 3rem;
  }

  .footer-content .brand .img img {
    width: 95%; height: auto;
  }

  .footer-content .brand .outro-text, .footer-content .brand .copy-right {
    display: block;
  }

  .footer-content .contact-cta {
    height: 100%;
    width: 30%;
  }

  .footer-content .pages {
    height: 100%;
    width: 20%;
    margin: 0;
  }

  .footer-content .social-media {
    display: flex; flex-direction: column; align-items: center; justify-content: space-between;
    height: 100%;
    width: 10%;
    margin: 0;
  }

  .footer-content .social-media h4 {
    display: block;
    text-align: center;
  }

  .icon-container {
    width: 5rem; height: 5rem;
    display: grid; grid-template-columns: 1fr;

    row-gap: 1rem; column-gap: 1rem;
    margin-bottom: 2rem;
  }

  .icon-container a {
    text-align: center;
    transition: 0.3s ease;
}

  .icon-container a:hover {
    transform: scale(1.2);
  }

  .brand, .contact-cta, .pages, .social-media {
    min-height: max-content;
    height: 100%;
    
  }

}