#footer {
  height: fit-content;
  width: 100%;
  background-color: var(--background);
  display: flex;
  padding: 3rem 2rem;
  gap: 15px;
}

#footer .contact-us {
  height: 78%;
  width: 100%;
  padding: 0 1.4rem 0 1.4rem;
  /* background-color: cadetblue; */
}

#footer .contact-us .contacts {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

#footer .contact-us .contact-details {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  gap: 20px;
}

#footer .contact-us .contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

#footer .contact-us img {
  height: 2rem;
  width: 2rem;
  user-select: none;
  -webkit-user-drag: none;
}

#footer h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;

}

#footer .social-platforms {
  height: 100%;
  width: 100%;
  /* background-color: aqua; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

#footer .social-platforms .platform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

#footer .social-platforms .platform img {
  height: 2rem;
  user-select: none;
  -webkit-user-drag: none;
}

#footer .social-platforms .platform h4 {
  font-size: 1.4rem;
}

#footer .what-offer {
  height: 100%;
  width: 100%;
  /* background-color: blanchedalmond; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#footer .what-offer .offers {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

#footer .what-offer .offers h4 {
  font-size: 1.2rem;
  text-align: center;
}

#footer .what-offer .offers a{
  text-decoration: none;
  color: var(--text-color);
}

@media (max-width: 630px) {
/* ############### FOOTER START ############### */

#footer {
  flex-direction: column;
  padding: 2rem;
  gap: 45px;
}

/* ############### FOOTER END ############### */

}