.footer {
  margin-top: 2rem;
}
.footer .content {
  padding-top: 2rem;
  padding-bottom: 1rem;
  /* display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: top; */
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  grid-gap: 2rem;
}
.footer .content .left .all-right {
  margin-top: 1rem;
  color: #1d2739;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
.footer .content .left .trade-mark {
  color: #475367;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  margin-top: 1rem;
}

.footer .content .left img {
  width: 7rem;
  height: 4rem;
}

.footer .content .left .terms {
  margin-top: 1rem;
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 10px;
}
.footer .content .left .terms button {
  color: #667185;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 145%;
  border: 1px solid #667185;
  border-radius: 5px;
}

.footer .content .right .right-button {
  margin-bottom: 2rem;
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 10px;
}
.footer .content .right .right-button button {
  color: #667185;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 145%;
  border: 1px solid #667185;
  border-radius: 5px;
}
.footer .content .right .right-body {
  color: #535353;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
@media (max-width: 600px) {
  .footer .content {
    /* grid-template-columns: repeat(1, 1fr); */
    display: unset;
  }
  .footer .content .left {
    margin-top: 2rem;
  }

  .footer .content .right {
    margin-top: 2rem;
    display: flex;
    flex-direction: column-reverse;
  }
  .footer .content .right .right-body {
    margin-bottom: 1.5rem;
  }
}
