.container-heading-amazon {
  width: 100%;
  display: flex;
  justify-content: center;
}
.label-heading-amazon {
  width: 65%;
  font-size: 45px;
  color: #2f3948;
  font-weight: 800;
  text-align: center;
}
.section-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
}

.title-section {
  color: #8c8c8c;
  font-size: 1.4rem;
  font-weight: 700;
  padding-bottom: 0.25em;
  padding-top: 1em;
  text-transform: uppercase;
}

.container-types-frames {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1em;
  height: 100%;
  width: 100%;
}
.container-amazon-frames {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  padding: 1em;
  justify-content: center;
}

.card-amazon-frame {
  flex: 1 1 30%;
  max-width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  box-sizing: border-box;
  justify-content: center;
  outline: none;
  border: 2px solid transparent;
  box-sizing: border-box;
  border-radius: 5px;
}

.card-amazon-frame.selected {
  outline: 2px solid #8adddb;
}
@media only screen and (max-width: 769px) {
  .card-amazon-frame {
    flex: 100%;
    max-width: 100%;
  }

  .label-heading-amazon {
    width: 90%;
  }
  .container-types-frames {
    flex-direction: column;
  }
}
