.choice-hr {
  margin-top: 160px;
  width: 100%;
  border-bottom: 1px solid rgba(238, 238, 238, 1);
}

@media screen and (max-width: 800px) {
  .choice-hr {
    display: none;
  }
}

.choice {
  margin-top: 50px;
  margin-bottom: 165px;
}

@media screen and (max-width: 800px) {
  .choice {
    margin-top: 150px;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 768px) {
  .choice {
    margin-top: 70px;
  }
}

.choice-wrap {
  display: flex;
}

@media screen and (max-width: 800px) {
  .choice-wrap {
    flex-direction: column;
  }
}

.choice__left {
  width: 51%;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1024px) {
  .choice__left {
    width: 40%;
  }
}

@media screen and (max-width: 800px) {
  .choice__left {
    width: 100%;
  }
}

.left__wrap {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.left__wrap-min {
  display: none;
}

@media screen and (max-width: 800px) {
  .left__wrap {
    display: none;
  }

  .left__wrap-min {
    display: block;
    margin-top: 30px;
  }
}

.choice__left > p {
  margin-top: 30px;
  max-width: 630px;
}

@media screen and (max-width: 800px) {
  .choice__left > p {
    margin-top: 15px;
  }
}

.choice-left-hr {
  width: 100px;
  height: 2px;
  border-bottom: 1px solid rgba(239, 72, 36, 1);
  margin-bottom: 20px;
}

.left__wrap > span {
  font-family: "BebasNeue", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 30px;
  color: rgba(43, 41, 39, 0.9);
  display: inline-block;
  max-width: 620px;
}

@media screen and (max-width: 1024px) {
  .left__wrap > span {
    font-size: 22px;
    line-height: 25px;
  }
}

@media screen and (max-width: 800px) {
  .left__wrap-min > span {
    font-family: "BebasNeue", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 25px;
    color: rgba(43, 41, 39, 1);
    display: inline-block;
    padding-right: 51px;
  }
}

.choice__right {
  width: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 215px);
  grid-gap: 10px;
}

@media screen and (max-width: 1024px) {
  .choice__right {
    width: 60%;
  }
}

@media screen and (max-width: 800px) {
  .choice__right {
    width: 100%;
    margin-top: 20px;
  }
}

@media screen and (max-width: 500px) {
  .choice__right {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 180px);
  }
}

.choice__card {
  background-color: rgba(244, 243, 245, 1);
  border-radius: 20px;
  padding: 30px 25px 25px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 800px) {
  .choice__card {
    padding: 25px 15px 15px 25px;
    border-radius: 10px;
  }
}

.choice__right .choice__card:last-child {
  background-color: rgba(239, 72, 36, 1) !important;
}

.choice__card > p {
  margin-top: auto;
  font-size: 15px !important;
}

@media screen and (max-width: 1400px) {
  .choice__card > p {
    font-size: 14px !important;
  }
}

.choice__card > :is(svg, img) {
  position: absolute;
  top: 30px;
  right: 25px;
}

@media screen and (max-width: 800px) {
  .choice__card > svg {
    top: 15px;
    right: 15px;
    width: 30px;
  }

}