#footer-page {
  border-top: 0.8px solid rgb(224, 224, 224);
  z-index: 10;
  position: relative;
}

.footer-container-wrapper {
  padding: 4vw 3vw;
  /* height: 90%; */
  display: flex;
  border-bottom: 0.8px solid rgb(224, 224, 224);
  /* background-color: red; */
  justify-content: space-between;
  align-items: start;
  box-sizing: border-box;
}

.footer-container-wrapper .footer-container {
  display: flex;
  flex-direction: column;
  width: fit-content;
  gap: 1.5vw;
}

.footer-container .footer-container-head {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  /* color: rgb(84, 89, 95); */
  color: var(--dark-grey);
}

.footer-container .footer-container-head span {
  color: var(--primary-color);
}

.footer-container .footer-container-content {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: rgb(34, 34, 34);
}

.footer-container .social-links {
  width: 100%;
  display: flex;
  /* gap: 1.5vw; */
  margin-top: -1vw;
  /* flex-direction: column; */
  /* justify-content: center; */
  align-items: center;
  gap: 0.5vw;
}

.social-links span {
  font-weight: 600;
  font-size: 18px;
}

.social-links a {
  text-decoration: none;
}

.footer-container .social-links i {
  cursor: pointer;
  font-size: 40px;
  /* color: #7a7a7a; */
  color: #222222c2;
  transition: all ease 0.4s;
}

.footer-container .social-links i:hover {
  color: var(--primary-color);
  transform: scale(1.3);
}

.footer-container .terms a {
  text-decoration: none;
  color: rgb(34, 34, 34);
  font-weight: 600;
  font-size: 18px;
}
.footer-container .terms a:hover {
  color: var(--primary-color);
}
.footer-container .product-link,
.mail-link,
.phone-link {
  display: flex;
  align-items: center;
}

.footer-container .product-link a,
.mail-link a,
.phone-link a {
  text-decoration: none;
  color: rgb(34, 34, 34);
  font-weight: 700;
  font-size: 18px;
}

.mail-link i,
.phone-link i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--primary-color);
}

.footer-container .product-link i {
  font-size: 24px;
}

/* below code is commented because it was misbehaving with layout of small laptops*/
/* .footer-container .footer-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1vw;
} */
.footer-container .footer-gallery {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.footer-container .footer-gallery a img {
  height: 5.5rem;
  object-fit: cover;
  width: 5.5rem;
}

.footer-copyright {
  /* height: 10%; */
  /* background-color: red; */
  padding: 1vw 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright p {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 30.08px;
  color: rgb(34, 34, 34);
}

.footer-copyright p span {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .footer-container-wrapper {
    min-height: calc(100% +150px);
    flex-direction: column;
    padding: 4vw 3vw;
    gap: 7vw;
  }

  .footer-container-wrapper .footer-container {
    width: 100%;
  }

  .footer-container .footer-container-head {
    font-size: 1.25rem;
  }

  .footer-container .footer-container-content {
    font-size: 1rem;
    font-weight: 400;
  }

  .footer-container .social-links {
    gap: 3.5vw;
  }

  .footer-container .social-links i {
    font-size: 2rem;
  }

  .footer-copyright {
    /* height: 10%; */
  }

  .footer-copyright p {
    text-align: center;
    font-size: 1rem;
    line-height: 1.25rem;
  }

  .footer-container .product-link a,
  .mail-link a,
  .phone-link a {
    font-weight: 400;
  }

  .footer-container .product-link i {
    color: rgb(34, 34, 34);
  }
}
