.footer-small {
  position: fixed;
  bottom: 0;
  width: 100%;
  /* height: 20px; */
  background-color: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
}

.footer-small .footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-small span {
  font-size: 12px;
  padding: 2px 0px;
}

.footer-large {
  position: fixed;
  bottom: -450px; /* Hidden by default, adjusted for the height of the small footer */
  width: 100%;
  /* height: 280px; */
  background-color: white;
  color: black;
  transition: bottom 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  border-top: 1px solid black !important;
}

.footer-large.visible {
  bottom: 0px;
}

.footer-large .large-footer-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.list-unstyled p {
  margin: 0;
}

.equal-height {
  display: flex;
  align-items: center;
  height: 100%;
}

.footer_logo{
 text-align: right;
 height: 70px;
}