.footer-main {
  background-color: white;
  padding-top: 16px;
  padding-bottom: 32px;
}

footer p {
  font-family: "Roboto";
}
.right-lists {
  display: flex;
  align-items: center;
  gap: 30px;
  row-gap: 20px;
  margin: 0;
  margin-block: 0;
  flex-wrap: wrap;
}
.right-list-text a {
  color: var(--green-text);
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
}
.right-list-text a:hover {
  text-decoration: underline;
  color: var(--green-text);
}
.footer-details-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.right-side-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.copy-right {
  padding-top: 12px;
  color: var(--black-light);
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}
.left-side-footer img {
  width: 180px;
  height: 44px;
}
.right-lists li { list-style-type: none}
@media screen and (max-width: 768px) {
  .footer-details-main {
    flex-direction: column-reverse;
  }
  .right-lists {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 50px;
    padding-left: 0px;
  }
  .right-side-footer {
    flex-direction: row;
/*     gap: 40px; */
  }
}
