@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
footer {
  background: var(--gradient-c);
  border-top: 1px solid rgb(78, 81, 144);
  /* ===================== TOP FOOTER ===================== */
  /* ===================== BOTTOM FOOTER ===================== */
}
footer .bottom-sec {
  padding: 50px 0 70px;
}
@media only screen and (max-width: 540px) {
  footer .bottom-sec {
    padding: 30px 0;
  }
}
footer .bottom-sec .grid-box {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  position: relative;
  z-index: 1;
  /* ================= LAST COLUMN ================= */
}
@media only screen and (max-width: 991px) {
  footer .bottom-sec .grid-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  footer .bottom-sec .grid-box {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: auto;
  }
}
@media only screen and (max-width: 540px) {
  footer .bottom-sec .grid-box {
    max-width: 100%;
    gap: 20px;
  }
}
footer .bottom-sec .grid-box .grid-box-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
footer .bottom-sec .grid-box .grid-box-item .logo {
  width: 145px;
}
@media only screen and (max-width: 540px) {
  footer .bottom-sec .grid-box .grid-box-item .logo {
    width: 135px;
  }
}
footer .bottom-sec .grid-box .grid-box-item .logo img {
  width: 100%;
}
footer .bottom-sec .grid-box .grid-box-item h6 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 16px;
}
@media only screen and (max-width: 540px) {
  footer .bottom-sec .grid-box .grid-box-item h6 {
    margin-bottom: 10px;
  }
}
footer .bottom-sec .grid-box .grid-box-item ul li {
  margin-bottom: 5px;
}
footer .bottom-sec .grid-box .grid-box-item ul li a {
  font-family: "Lato";
  font-weight: 450;
  font-size: 14px;
  color: var(--white);
  opacity: 0.7;
  transition: 0.3s ease;
}
footer .bottom-sec .grid-box .grid-box-item ul li a:hover {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  footer .bottom-sec .grid-box .grid-box-item:last-child {
    margin-left: 0;
  }
}
footer .bottom-sec .grid-box .grid-box-item:last-child h6 {
  text-align: left;
}
footer .bottom-sec .grid-box .grid-box-item:last-child .location {
  max-width: 380px;
}
@media only screen and (max-width: 768px) {
  footer .bottom-sec .grid-box .grid-box-item:last-child .location {
    max-width: 100%;
    margin: auto;
  }
}
footer .bottom-sec .grid-box .grid-box-item:last-child .location a {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  color: rgba(255, 255, 255, 0.5019607843);
  font-size: 14px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 540px) {
  footer .bottom-sec .grid-box .grid-box-item:last-child .location a {
    gap: 12px;
  }
}
footer .bottom-sec .grid-box .grid-box-item:last-child .location a span {
  font-family: "Lato";
  line-height: 24px;
  transition: 0.4s ease;
}
footer .bottom-sec .grid-box .grid-box-item:last-child .location a:hover span {
  color: var(--white);
}
footer .bottom-sec .grid-box .grid-box-item:last-child .social-icons {
  margin-top: 20px;
  display: flex;
  gap: 14px;
}
footer .bottom-sec .grid-box .grid-box-item:last-child .social-icons a svg path {
  fill: var(--white);
}
footer .bottom-footer {
  padding: 30px;
  border-top: 1px solid rgba(220, 214, 214, 0.2);
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 540px) {
  footer .bottom-footer {
    padding-bottom: 90px;
  }
}
footer .bottom-footer .content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
footer .bottom-footer .content p {
  font-weight: 600;
  font-size: 14px;
  color: rgba(205, 205, 205, 0.6980392157);
  margin: 0;
}
footer .bottom-footer .footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
footer .bottom-footer .footer-link p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(205, 205, 205, 0.6980392157);
}
footer .bottom-footer .footer-link img {
  width: 60px;
  height: auto;
  display: block;
}/*# sourceMappingURL=footer.css.map */