.bottom-drawer {
  position: fixed;
  z-index: 99;
  bottom: 0;
  width: 100%;
  height: 70px;
  background: white;
}
.bottom-drawer .d-grid {
  height: 100%;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}
.bottom-drawer .d-grid .drawer-item.btn {
  border-radius: 0 !important;
}
.bottom-drawer .d-grid .drawer-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E6E6E6;
  border-top: 1px solid #769840;
  height: 100%;
}
.bottom-drawer .d-grid .drawer-item .bi {
  font-size: 1.5rem;
}
@media screen and (max-width: 991px) {
  .bottom-drawer + footer {
    margin-bottom: 70px;
  }
}

.footer {
  border-top: 1px solid #E6E6E6;
}
.footer .footer-body {
  background: #FAFAFA;
  grid-template-columns: 12fr;
}
.footer .footer-body .brand-logo img {
  height: auto;
}
@media screen and (max-width: 768px) {
  .footer .footer-body .brand-logo img {
    max-width: 100%;
  }
}
@media screen and (min-width: 576px) {
  .footer .footer-body {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .footer .footer-body {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer .footer-body .brand-logo {
    grid-column: 1/span 2;
  }
}
@media screen and (min-width: 992px) {
  .footer .footer-body {
    grid-template-columns: repeat(5, 1fr);
  }
  .footer .footer-body .brand-logo {
    grid-column: auto;
  }
}
.footer .footer-newsletter {
  background: #333e48;
  color: white;
}
.footer .footer-newsletter > div {
  display: grid;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .footer .footer-newsletter > div {
    grid-template-columns: 1fr 2fr 2fr;
    align-items: center;
  }
}
.footer .footer-newsletter > div span {
  color: white;
}
.footer .footer-social-links a {
  transition: all ease 300ms;
}
.footer .footer-social-links a:hover {
  background: #769840;
  border-color: #597231 !important;
}
.footer .footer-social-links a:hover .bi {
  color: white;
}
.footer .bi {
  font-size: 1.5em;
}
.footer .footer-links-group .footer-title {
  color: #54595F;
  margin-bottom: 0.75rem;
}
.footer .footer-links-group .footer-title + ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer .footer-links-group .footer-title + ul .nav-link {
  align-items: center;
}
@media screen and (min-width: 576px) {
  .footer .footer-links-group:last-child {
    grid-column: 1/span 2;
  }
}
@media screen and (min-width: 768px) {
  .footer .footer-links-group:last-child {
    grid-column: auto;
  }
}
.footer .nav-link {
  color: #54595F;
}
.footer .nav-link:hover {
  color: #769840;
}

#scroll-to-top {
  position: fixed;
  bottom: 3rem;
  opacity: 0;
  transform: translateY(2rem);
  transition: all ease 300ms;
}
#scroll-to-top.show {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 991px) {
  #scroll-to-top {
    bottom: 6rem;
  }
}
#scroll-to-top {
  right: 1.5rem;
  background: white;
  border-radius: 50rem;
}
#scroll-to-top .btn {
  font-size: 3.25rem;
}

.payment-div > div {
  box-shadow: 0 0 6px #E6E6E6;
  padding: 1rem;
  border-radius: 1rem;
}/*# sourceMappingURL=footer.css.map */