.footer {
  /* background-color: var(--color-blue); */
  background-image: url('../images/HOME/footer_bg.png');
  background-size: cover;
  background-position: center;
  bottom: 0;
  width: 100%;
  padding: 20px 30px;
  position: relative;
}

.footer_container {
  display: grid;
  grid-template-columns: 24% 24% 24% 24%;
  justify-content: space-between;
  align-items: start;
  padding: 20px;
  width: 80%;
  gap: 25px;
  margin: 0 auto;
  z-index: 10;
}

.footer_heading {
  color: white;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 20px 0;
  text-align: left;
  font-family: var(--Inter-font);
}

.footer_company p {
  width: 80%;
  color: white;
  font-size: 18px;
  font-weight: 400;
  margin: 10px 0;
  font-family: var(--Inter-font);
}

/* //////////////////////// */
/* logo  */
.logo_container_footer {
  width: 200px;
  height: 150px;
}

.header_logo_footer {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ///////////////////////////////// */
/* Services  */

.footer_services_list {
  color: white;
  list-style-type: none;
}

.footer_services_list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer_services_list li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-family: var(--Inter-font);
}

.footer_services_list li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: white;
  line-height: 1;
}

/* /////////////////////// */
/* Contact  */

.footer_contact {
  color: white;
  list-style-type: none;
  padding-left: 50px;
}

.footer_contact_list li {
  font-size: 16px;
  font-weight: 400;
}

.footer_contact_list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 25px;
  display: flex;
  align-items: start;
  flex-direction: column;
}

.footer_contact_list li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: white;
  line-height: 1;
}

.footer_contact_list li strong {
  font-size: 20px;
  color: white;
  font-weight: 500;
  font-family: var(--Inter-font);
}

.footer_contact_list li span {
  font-size: 18px;
  color: white;
  font-weight: 400;
  font-family: var(--Inter-font);
}

/* /////////////////////// */
/* footer Links  */

.footer_quick_links {
  padding-left: 50px;
}

.footer_links {
  color: white;
  list-style-type: none;
}

.footer_links li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer_links li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 400px;
  font-family: var(--Inter-font);
}

.footer_links li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: white;
  line-height: 1;
}

.footer_bottom {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
  width: 100%;
}

.footer_bottom p {
  color: var(--color-black);
  background-color: white;
  width: 60%;
  font-size: 25px;
  margin: 0 auto;
  padding: 20px 0;
  border-radius: 10px;
  font-weight: 400;
}

/* ///////////////////// */
/* dots  */

.dots_1 {
  position: absolute;
  top: 2%;
  left: 5%;
  width: 100px;
  height: 100px;
  object-fit: contain;
  opacity: 0.4;
  z-index: 1;
}

.dots_2 {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 100px;
  height: 100px;
  object-fit: contain;
  opacity: 0.4;
  z-index: 1;
}

/* //////////////////////////// */
/*   for Table or Ipad */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer_container {
    grid-template-columns: 50% 50%;
    justify-content: center;
    align-items: start;
  }

  .footer_heading {
    text-align: start;
  }

  .footer_company p,
  .footer_services_list li a,
  .footer_contact_list li span,
  .footer_links li a {
    text-align: start;
  }
  .footer_bottom p {
    width: 90%;
    font-size: 16px;
  }

  .footer_quick_links {
    padding-left: 0px;
  }

  .footer_contact {
    padding-left: 0px;
  }
}

/* ////////////////////////////// */
/* Responsive Design */

@media (max-width: 768px) {
  .footer {
    padding: 20px 0px;
  }
  .footer_container {
    grid-template-columns: 100%;
    justify-content: center;
    align-items: start;
    padding: 0px 20px;
    margin: 0;
  }

  .footer_heading {
    text-align: start;
  }

  .dots_1,
  .dots_2 {
    display: none;
  }

  .footer_company p {
    width: 100%;
  }

  .footer_company p,
  .footer_services_list li a,
  .footer_contact_list li span,
  .footer_links li a {
    text-align: start;
  }
  .footer_bottom p {
    width: 90%;
    font-size: 16px;
  }

  .footer_quick_links {
    padding-left: 0px;
  }

  .footer_contact {
    padding-left: 0px;
  }
}
