@media (min-width: 768px) {
  .we-accept-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    width: 100vw;
    background-color: #3a689f;
    color: rgb(255, 255, 255);
    position: relative;
  }

  .we-accept-content {
    padding: 20px;
    position: relative;
    z-index: 1;
  }

  .we-accept-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 80vw;
    flex-wrap: wrap;
  }

  .we-accept-content li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
    margin: 10px;
  }

  .we-accept-content li label {
    background-color: rgb(255, 255, 255, 0.25);
    padding: 5px 15px;
    border-radius: 15px;
    text-align: center;
    font-size: 1rem;
  }
  .we-accept-content .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 60px;
    padding: 10px;
    overflow: hidden;
    background-color: white;
    border-radius: 15px;
    margin-bottom: 10px;
  }

  .we-accept-content .image-container img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
  }
  .we-accept-content h1 {
    text-align: center;
  }

  .svg-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    z-index: 0;
  }

  .svg-content {
    width: 100%;
    height: 100%;
    z-index: 0;
    transform: translateY(250px) scale(1.5);
  }
}
@media (max-width: 768px) {
  .we-accept-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100vw;
    background-color: #3a689f;
    color: rgb(255, 255, 255);
    position: relative;
  }

  .we-accept-content {
    padding: 20px;
    position: relative;
    z-index: 1;
  }

  .we-accept-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100vw;
    flex-wrap: wrap;
  }

  .we-accept-content li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
    margin: 10px;
    max-width: calc(50% - 20px);
    box-sizing: border-box;
  }

  .we-accept-content li label {
    background-color: rgb(255, 255, 255, 0.25);
    padding: 5px 15px;
    border-radius: 15px;
    text-align: center;
    font-size: 1rem;
    max-width: 100%;
  }
  .we-accept-content .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 60px;
    padding: 10px;
    overflow: hidden;
    background-color: white;
    border-radius: 15px;
    margin-bottom: 10px;
  }

  .we-accept-content .image-container img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
  }
  .we-accept-content h1 {
    text-align: center;
  }

  .svg-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    z-index: 0;
  }

  .svg-content {
    width: 100%;
    height: 100%;
    transform: translateY(250px) scale(7);
  }
}
