.footer_container {
  width: 100%;
  height: 20rem;
  background-color: var(--Navy_main);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.footer_container h1,
h2 {
  font-family: Bebas;
  color: white;
}

.footer_container ul li,
span p {
  padding: 0.5rem 0rem;
}

.footer_container ul li {
  color: white;
  list-style: none;
  font-family: Lato-Reg;
}

.footer_services,
.footer_contact {
  height: 50%;
}

/* Footer Contact */

.footer_email span p a {
  color: white;
  text-decoration: underline;
  font-family: Lato-Reg;
}

.footer_phone,
.footer_email {
  display: flex;
  align-items: center;
}

.footer_email p {
  margin-left: 1rem;
}

.footer_phone p {
  margin-left: 1rem;
}

.footer_social_media {
  width: 40%;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
/* Footer Contact End */

/* Footer Bottom */

.footer_bottom {
  width: 100%;
  height: auto;
  background-color: var(--Navy_main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Lato-Reg;
  padding: 0.5rem 0rem;
}

.footer_bottom p {
  white-space: nowrap;
  margin: 0rem 1rem;
  cursor: pointer;
}

.terms_conditions_privacy_policy {
  display: flex;
  text-decoration: underline;
  color: var(--White_main);
  cursor: pointer;
}

.footer_bottom p {
  color: var(--White_main);
}

.footer_break {
  width: 100%;
  height: 0.5rem;
  background-color: var(--White_main);
}

footer img {
  width: 8rem;
  height: auto;
  margin-left: 2.5rem;
}

/* Footer Bottom End */

/* Media Queries */

@media only screen and (max-width: 700px) {
  .footer_container {
    flex-direction: column;
    align-items: flex-start;
    height: 32rem;
  }

  .footer_container h1,
  .footer_services,
  .footer_contact {
    margin-left: 10%;
  }

  .footer_services,
  .footer_contact {
    height: auto;
  }

  .terms_conditions_privacy_policy {
    display: none;
  }

  .footer_bottom {
    justify-content: flex-start;
  }
}

/* Media Queries End */
