.only_mobile {
  display: none;
}

.bg_two_plates {
  width: 100%;
  max-width: 700px;

  position: relative;
  margin-inline: auto;

  padding-left: 1rem;

  border-radius: 9px;
}

.bg_two_plates::before {
  content: "";
  width: calc(90% - 1rem);
  height: 100%;
  background-color: var(--light-blue);
  border-radius: 9px;

  position: absolute;
  left: calc(50% + 1rem);
  top: 50%;
  transform: translateY(-51.5%) translateX(-50%) skewY(5deg);
  z-index: -10;
}

.bg_two_plates::after {
  content: "";
  width: 90%;
  height: calc(100% - 20%);
  background-color: var(--purple);
  border-radius: 9px;

  position: absolute;
  left: 0;
  top: 25%;
  transform: skewY(5deg);
  z-index: -9;
}

.bg_two_plates_c {
  width: 100%;
  max-width: 700px;

  position: relative;

  margin-inline: auto;
  padding-left: 2rem;
  padding-right: 0.75rem;
  border-radius: 9px;
}

.bg_two_plates_c::before {
  content: "";
  width: 90%;
  height: 100%;
  background-color: var(--light-blue);
  border-radius: 9px;

  position: absolute;
  right: 0;
  top: 49%;
  transform: translateY(-50%) skewY(5deg);

  z-index: -10;
}

.bg_two_plates_c::after {
  content: "";
  width: 95%;
  height: calc(110% - 25%);
  background-color: var(--purple);
  border-radius: 9px;

  position: absolute;
  left: 0;
  top: 22%;
  transform: skewY(5deg);

  z-index: -1;
}

.bg_one_plate {
  width: 100%;
  max-width: 700px;

  position: relative;

  margin-inline: auto;
  border-radius: 9px;
}

.bg_one_plate::before {
  content: "";
  width: 86.5%;
  height: 110%;
  background-color: var(--purple);
  border-radius: 9px;

  position: absolute;
  left: 50%;
  top: 45%;
  transform: translateY(-50%) translateX(-50%) skewY(-6deg);
  z-index: -10;
}
.bg_one_plate_centered {
  width: 100%;
  max-width: 700px;

  position: relative;

  margin-inline: auto;
  border-radius: 9px;
}

.bg_one_plate_centered::before {
  content: "";
  width: 86.5%;
  height: 110%;
  background-color: var(--purple);
  border-radius: 9px;

  position: absolute;
  left: 50%;
  top: 49%;
  transform: translateY(-50%) translateX(-50%) skewY(-7deg);
  z-index: -10;
}
.bg_one_plate_blue {
  width: 100%;
  max-width: 700px;

  position: relative;

  margin-inline: auto;
  border-radius: 9px;
}

.bg_one_plate_blue::before {
  content: "";
  width: 86.5%;
  height: 110%;
  background-color: var(--light-blue);
  border-radius: 9px;

  position: absolute;
  left: 50%;
  top: 45%;
  transform: translateY(-50%) translateX(-50%) skewY(-6deg);
  z-index: -10;
}
.bg_one_plate_r {
  width: 100%;
  max-width: 700px;

  position: relative;

  margin-inline: auto;
  border-radius: 9px;
}

.bg_one_plate_r::before {
  content: "";
  width: 90%;
  height: 100%;
  background-color: var(--purple);
  border-radius: 9px;

  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%) skewY(6deg);
  z-index: -10;
}

.bullet_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.125rem;

  opacity: 1;
}

.bullet_list .item {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}

.bullet_list .item .item_icon,
.bullet_list .item.with_text > div .item_icon {
  display: flex;
  align-items: flex-start;
}

.bullet_list .item .item_text,
.bullet_list .item.with_text > div .item_text {
  display: flex;
  align-items: center;
}

.bullet_list .item img {
  width: fit-content;
  height: fit-content;
}

.bullet_list .item span {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: var(--purple);
}

.bullet_list .item h3,
.bullet_list .item h2 {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: var(--purple);
}

.bullet_list .item.with_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.bullet_list .item.with_text > div {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}

.bullet_list .item.with_text > div span {
  font-size: 1.75rem;
  line-height: 2.25rem;
}

.bullet_list .item.with_text p {
  margin-left: calc(2.25rem + 0.5rem);

  font-size: 1.125rem;
  font-weight: 300;
  color: #212121;
  line-height: 1.5rem;

  text-align: left;
}

.bullet_list .bullet-bg {
  padding: 5px;
  border-radius: 50%;
  background-color: #3e137427;
}
.bullet_list .bullet-bg.white {
  background-color: #fff;
}

.features_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.features_list .item {
  display: flex;
  align-items: center;
  gap: 0.5rem;

  background-color: #fff;
  border: 1px solid #dddddd;
  border-radius: 6px;

  padding: 0.625rem;
}

.features_list .item span {
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: #5b4e62;
}

.features_list .item img {
  width: 16px;
  height: 16px;
}

.flex_gap_80 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;

  max-width: 100%;
}

.flex_gap_80_r {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  max-width: 100%;
}

.flex_gap_80 img {
  width: 100%;
  max-width: 700px;
}

.flex_gap_80 .content,
.flex_gap_80_r .content {
  min-width: 630px;
}

.flex_gap_64 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
}

.flex_gap_64 img {
  width: 100%;
  max-width: 700px;
}

.flex_gap_64_r {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 4rem;
}

.flex_gap_64_r img {
  width: 100%;
  max-width: 700px;
}

main .content {
  text-align: left;
  max-width: 720px;
}

main .content h2 {
  font-size: 3.375rem;
  line-height: 4rem;

  color: var(--purple);
  margin-bottom: 1.125rem;
}

main .content > p {
  font-family: "freight-sans-pro", sans-serif;
  color: #212121;
  line-height: 1.75rem;

  margin-bottom: 1.75rem;
}

@media only screen and (max-width: 1700px) {
  .flex_gap_64,
  .flex_gap_64_r,
  .flex_gap_80,
  .flex_gap_80_r {
    padding-inline: 3rem;
  }

  .flex_gap_80,
  .flex_gap_80_r {
    gap: 2rem;
  }
}

@media only screen and (max-width: 1240px) {
  .bg_one_plate_r {
    width: 100%;
    max-width: 700px;
  }

  .bg_two_plates,
  .bg_two_plates_c {
    margin-inline: auto;
  }

  .flex_gap_64 .non_mobile,
  .flex_gap_64_r .non_mobile {
    display: none;
  }

  .flex_gap_64 .only_mobile,
  .flex_gap_64_r .only_mobile {
    display: block;
  }

  .flex_gap_64 {
    flex-direction: column-reverse;
  }

  .flex_gap_80_r > div:nth-child(1) {
    order: 1;
  }

  .flex_gap_64,
  .flex_gap_64_r,
  .flex_gap_80,
  .flex_gap_80_r {
    grid-template-columns: 1fr;
    padding-inline: 6.5rem;
  }
  .flex_gap_64 img,
  .flex_gap_64_r img,
  .flex_gap_80 img,
  .flex_gap_80_r img {
    margin-inline: auto;
  }

  main .content {
    margin-inline: auto;
  }
}

@media only screen and (max-width: 1020px) {
  body .non_mobile {
    display: none;
  }

  body .only_mobile {
    display: block;
  }
}

@media only screen and (max-width: 800px) {
  .bullet_list .item.with_text {
    gap: 0;
  }

  .bullet_list .item.with_text > div span {
    font-size: 1.5rem;
  }

  .bullet_list .item.with_text p {
    color: var(--deep-purple);
  }

  main .content h2 {
    font-size: 2.25rem;
    line-height: 2.875rem;
    letter-spacing: -0.72px;
  }

  main .content > p {
    font-family: "museo-sans", sans-serif;
    line-height: 1.75rem;
    font-weight: 300;
    margin-bottom: 1.75rem;
  }

  .flex_gap_64,
  .flex_gap_64_r,
  .flex_gap_80,
  .flex_gap_80_r {
    padding-inline: 1.125rem;
  }

  .flex_gap_80 .content,
  .flex_gap_80_r .content {
    min-width: auto;
  }
}
