/* start: Option */
.option-section {
  padding: 72px 0;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}
.option-section > .container {
    width: 100%;
}
.option-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 55px;
}
.option-input {
  display: none;
}
.option-item {
  max-width: 488px;
  width: 100%;
  margin-right: 40px;
  border-radius: 30px;
  border: 1px solid #8e8a8a;
  padding: 30px 47px;
  cursor: pointer;
  position: relative;
}
.option-item:last-child {
  margin-right: 0;
}
.option-input:checked + .option-item,
.option-item:hover {
  outline: 2px solid #000;
  border-color: #000;
  background-color: #f7faf8;
}
.option-item-radio {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  border: 3px solid #8e8a8a;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.option-input:checked + .option-item .option-item-radio {
  border-color: #00ad70;
}
.option-input:checked + .option-item .option-item-radio::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background-color: #00ad70;
}
.option-item-icon {
  width: 74px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: #f7faf8;
  margin-bottom: 24px;
}
.option-item-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 32px;
}
.option-bottom {
  text-align: center;
}
.option-bottom-text {
  margin-top: 24px;
}
.option-bottom-link {
  text-decoration: none;
  color: #00ba6b;
  font-weight: 500;
}
#option-proceed {
  background-image: linear-gradient(
    90deg,
    rgba(0, 173, 112, 0.8) 0%,
    #00ad70 100%
  );
  color: #fff;
}
/* end: Option */

/* start: Breakpoints */
@media screen and (max-width: 767px) {
  .option-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .option-item {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .option-item:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .option-item {
    padding: 24px;
  }
  .option-item-title {
    font-size: 24px;
  }
}
/* end: Breakpoints */
