.footer {
  width: 100%;
  background-color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-main {
  padding: var(--space-lg);
  padding-right: var(--space-xl);
  display: flex;
  justify-content: space-between;
  width: 1445px;
  max-width: 1445px;
}

.footer-main-div1 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer-main-div1 p {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}
.main-div1-image-wrapper {
  display: flex;
  gap: var(--space-xs);
  align-items: center;
}
.main-div1-image-wrapper p {
  transform: translateY(7px);
  font-size: var(--fs-sm);
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
}
.main-div1-image-wrapper img {
  max-width: 60px;
}
.footer-main-other-divs {
  display: flex;
  gap: var(--space-lg);
}
.footer-main-other-divs h4 {
  color: var(--color-accent);
}
.footer-main-other-divs ul {
  margin-top: 10px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.footer-main-other-divs ul li a {
  text-decoration: none;
  color: var(--color-text-light);
  font-weight: var(--fw-medium);
  transition: 0.2s;
}
.footer-main-other-divs ul li a:hover {
  color: white;
}

.whatsApp-float {
  position: fixed;
  bottom: 60px;
  right: 35px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}
.phone-float {
  position: fixed;
  bottom: 110px;
  right: 35px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: 0.2s ease-in-out;
}
.instagram-float-div {
  border: 2px solid var(--color-accent-dark);
  position: fixed;
  bottom: 142px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-surface);
}
.Instagram-float {
  position: fixed;
  bottom: 158px;
  right: 30.4px;
  width: 17px;
  height: 20px;
  border-radius: 50%;
  transition: 0.2s ease-in-out;
}
.phone-float:hover,
.whatsApp-float:hover,
.Instagram-float:hover {
  scale: 1.1;
}
@media (max-width: 705px) {
  .footer-main-div1 {
    align-items: center;
  }
  .footer-main {
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    padding-right: var(--space-lg);
  }
}
