/* ---------------------------------------------- */
/* Footer Section ------------------------------- */
/* ---------------------------------------------- */

#footer-wrap {
  background-color: #2e2e2e; /* Dark background */
  color: white;
  padding: 30px 2%;
  font-family: "Open Sans", sans-serif;
}

#footer-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align content properly */
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
}

.footer-section {
  width: 32%;
  padding: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin: 10px 0;
}

.footer-section .heading {
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #aaa;
  margin-bottom: 10px;
}

.footer-section .normal {
  font-size: 14px;
  color: #ccc;
}

.footer-section a {
  color: #55be6d;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

/* Facebook Button */
.socialBtn--facebook {
  background-color: #4c69ba;
  background-image: linear-gradient(#4c69ba, #3b55a0);
  color: #fff;
  padding: 12px 15px 12px 61px;
  border: none;
  border-radius: 4px;
  line-height: 1.2;
  position: relative;
  text-align: left;
  display: inline-block;
  cursor: pointer;
  margin: 10px 0;
  width: auto;
  min-width: 200px;
  white-space: normal;
}

.socialBtn--facebook:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 25px;
  height: 24px;
  transform: translateY(-50%);
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/14082/icon_facebook.png")
    center/contain no-repeat;
}

.socialBtn--facebook:hover {
  background-color: #5b7bd5;
  background-image: linear-gradient(#5b7bd5, #4864b1);
}

.socialBtn--facebook:focus {
  outline: none;
}

socialBtn--facebook:active {
  box-shadow: inset 0 0 0 32px rgba(0, 0, 0, 0.1);
}

.socialBtn {
  background-color: #1877f2;
  color: white;
  padding: 10px 10px 10px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.socialBtn:hover {
  background-color: #155f8b;
}

.footer-section img {
  /* margin: 5px; */
  max-width: 250px;
  height: auto;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #55be6d;
  border-radius: 50%;
  padding: 10px;
  display: none; /* Will be shown on scroll */
  z-index: 1000;
}

.back-to-top img {
  width: 30px;
  height: 30px;
}