
#footer {
  width: 100%;
  margin-top: 4rem;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.footer-flx {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  align-items: margin-top;
}

.footer-box {
  padding: 1rem;
}

.footer_1 {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
}

.footer-location>p {
  font-size: .6rem;
  color: white;
  margin-bottom: .5rem;
}

.footer_info {
  text-transform: capitalize;
  font-weight: 400;
}

.socials {
  width: 25px
}

.socials img {
  width: 100%;
}

.socials-img {
  display: flex;
}

.footer_2 {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: baseline;
}

.footer_2>p {
  font-weight: 600;
  color: white;
  margin-bottom: .5rem;
  text-transform: uppercase;
}

.footer_2>ul {
  list-style: none;
  color: black;
  padding-left: 1rem;
}

.footer_2>ul>li>a {
  color: green;
  text-decoration: none;
  text-transform: capitalize;
  font-weight: 400;
  font-size: .8rem;
}


.footer_2>ul>li>a:hover {
  color: rgb(240, 191, 96);
}
.footer_3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: end;
}

.footer_img {
  width: 3rem;
  padding-left: .5rem;
}

.footer_slogan {
  color: rgb(240, 191, 96);
  text-transform: uppercase;
  font-weight: 500;
  font-size: .8rem;
}

.footer_cr {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  font-weight: 500;
  font-size: .8rem;
  padding: 1rem 3rem;
  text-transform: capitalize;
}

.footer_cr>div>p:hover {
  color: lightgreen;
  cursor: pointer;
}

.footer_rule {
  border: none;
  height: 3px;
  background: gray;
}

.none {
  pointer-events: none;
}

@media screen and (max-width: 390px) {
  #footer {
    width: 100%;
    overflow: hidden;
  }

  .footer_2 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer_3 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer_cr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
