.mynd-footer {
  display: grid;
  padding: 4px 16px 8px 16px;
  align-items: center;
  gap: 24px;
  width: 100%;
  color: #595959;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  grid-template-areas: "left center right";
  grid-template-columns: 1fr auto 1fr;
}

.mynd-footer > .footer-link,
.mynd-footer > .footer-copyright {
  width: 100%;
  flex-grow: 1;
  flex-shrink: 1;
}

.mynd-footer .footer-copyright span {
  color: #263b74;
  font-weight: 600;
}

.footer-link {
  display: flex;
  justify-content: flex-end;
  gap: 4px 24px;
  grid-area: right;
  flex-wrap: wrap;
}

.footer-logo-grp {
  display: flex;
  gap: 8px;
  align-items: center;
  grid-area: center;
}
.footer-link a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.footer-link a:hover {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.footer-logo-grp .mynd-logo {
  width: auto;
  height: 32px;
}

.footer-logo-grp .product-logo {
  width: auto;
  height: 32px;
  /* transform: translateY(-6px); */
}

.footer-logo-grp .powerby_txt {
  color: #bcc2d4;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}
.footer-copyright {
  grid-area: left;
}
@media (max-width: 960px) {
  .mynd-footer {
    grid-template-areas:
      "center center"
      "left right";
    grid-template-columns: 1fr 1fr;
    row-gap: 8px;
    padding: 16px;
  }
  .mynd-footer > .footer-logo-grp {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .mynd-footer {
    grid-template-areas:
      "center"
      "left"
      "right";
    grid-template-columns: 1fr;
    row-gap: 8px;
    padding: 16px;
  }
  .footer-copyright {
    text-align: center;
  }
  .footer-link {
    justify-content: center;
  }
}

/* this is footer */
