
/* footer */

.footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 50px;
  padding: 70px 50px;
  background-color: #212529;
}

.footer__wrapper-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer__wrapper-content__content {
	display: flex;
	gap: 0px;
	flex: 1;
	justify-content: space-evenly;
}

.footer__wrapper-content a {
	display: block;
	max-width: 280px;
	margin: auto 0;
}

.footer__wrapper-content a img {
  display: block;
  max-width: 100%;
}

.footer__footer-wrapper__address {
  display: flex;
  flex-direction: column;
}

.footer__footer-wrapper__addres__title {
  margin-bottom: 30px;
  font-size: clamp(1.6rem, 2rem, 2rem);
  font-family: GothamBold, sans-serif;
  font-weight: 700;
  color: #fff;
}

.footer__footer-wrapper__addres__second-title {
  margin-top: 30px;
  font-size: 1.6rem;
  font-family: GothamBold, sans-serif;
  font-weight: 500;
  color: #fff;
}

.footer__footer-wrapper__address p {
  /* margin: 3px 0px; */
  max-width: 250px;
  font-size: 1.6rem;
  line-height: 2.5rem;
  font-family: GothamBook, sans-serif;
  color: #fff;
}

.footer__footer-wrapper__contact {
  display: flex;
  flex-direction: column;
  align-items: start;
} 


.footer__footer-wrapper__contact__title {
  margin-bottom: 30px;
  font-size: clamp(1.6rem, 2rem, 2rem);
  font-family: GothamBold, sans-serif;
  font-weight: 500;
  color: #fff;
} 

.footer__footer-wrapper__contact__title span {
  font-weight: 700;
} 

.footer__footer-wrapper__contact p {
  font-size: 1.6rem;
  line-height: 2.5rem;
  font-family: GothamBold, sans-serif;
  color: #fff;
}

.footer__footer-wrapper__contact p span {
  font-size: 2rem;
}

.footer__footer-wrapper__social-media {
  display: flex;
  flex-direction: column;
  /* align-items: end; */
  /* flex: 1; */
}

.footer__footer-wrapper__social-media__title {
  margin-bottom: 30px;
  font-size: clamp(1.6rem, 2rem, 2rem);
  font-family: GothamBold, sans-serif;
  font-weight: 500;
  color: #fff;
}

.footer__footer-wrapper__social-media__title span {
  font-weight: 700;
} 

.footer__footer-wrapper__social-media__list {
  display: flex;
  gap: 6px;
}

.footer__footer-wrapper__social-media__list li {
  padding: 6px;
  background-color: #fff;
  border-radius: 50%;
}

.footer__footer-wrapper__social-media__list li a{
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__footer-wrapper__social-media__list li a i {
  font-size: 30px;
  color: #212529;
}

.footer__vertical-separator {
  width: 100%;
  height: 2px;
  margin: 16px auto;
  background-color: #2c3034;
}

.footer__horizontal-separator {
  width: 2px;
  margin: 0 12px;
  background-color: #2c3034;
}

.footer__copyright {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 30px;
}

.footer__copyright p {
  font-size: 1.4rem;
  font-family: GothamBook, sans-serif;
  color: #5b5e61;
}
.footer__copyright p a {
  color: #fff;
  font-weight: 700;
}


/* Media Queries */

@media (max-width: 935px) {

  /* Footer */

  .footer {
    padding: 70px 36px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer__wrapper-content {
    flex-wrap: wrap;
  }

  .footer__wrapper-content__content  {
    display: flex;
    gap: 40px;
    flex: 1;
    justify-content: start;
    flex-wrap: wrap;
  }
  
  /* .footer__wrapper-content__content */

  .footer__footer-wrapper__addres__title {
    margin-bottom: 12px;
  }

  .footer__footer-wrapper__contact__title {
    margin-bottom: 12px;
  }

  .footer__footer-wrapper__social-media {
    align-items: start;
  }

  .footer__copyright {
    flex-direction: column;
    gap: 6px;
  }

  .footer__copyright p {
    text-align: center;
  }
}

@media (max-width: 735px) {
  .footer__wrapper-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer__wrapper-content__content {
    justify-content: center;
  }
}