section {
  position: relative;
  width: 100%;
  height: auto;
  padding-bottom: 250px;
}
.button-div {
  margin-top: 90px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.button-div > p {
  color: #757575;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}
.button-wrap {
  display: flex;
  gap: 12px;
  margin: 0 auto;
}
.button-wrap > a {
  width: 240px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  color: #000;
  font-size: 18px;
  font-weight: 800;
}
.faq-wrap {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.program-item {
  border: 1px solid #b4b4b4;
}
.program-title {
  height: 90px;
  font-size: 20px;
  padding: 0 30px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  color: #000;
}

.program-item.open .program-title {
  background: #000;
  color: #fff;
}

.program-icons {
  display: flex;
  gap: 6px;
  align-items: center;
}

.program-icons .location {
  font-size: 16px;
  color: #acacac;
  /* color: inherit; */
  /* opacity: 0.6; */
  margin-right: 10px;
  display: flex;
  gap: 10px;
}
.program-icons .location .loca {
  top: 10px;
}

.program-icons .iconbox {
  background: #fff;
  color: #000;
  font-size: 12px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.program-icons .iconbox svg {
  margin: 0;
}
.program-icons .iconbox.c {
  background: #bbb;
  color: white;
  font-size: 18px;
}

.program-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  background-color: #fff;
  padding: 0 20px;
}

.program-item.open .program-content {
  /* padding: 16px; */
  border: 1px solid #000;
  border-top: 0;
  padding: 20px;
  color: #e46406;
}
.contact-wrap {
  width: 100%;
  height: auto;
}
.contact-wrap h2 {
  color: #000;
  font-size: 20px;
  font-weight: 800;
  line-height: 34px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.contact-wrap h2 > span {
  color: #e46406;
  font-size: 20px;
  font-weight: 800;
}
.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  height: 80px;
  margin-bottom: 30px;
}

.radio-box input[type="radio"] {
  display: none;
}

.radio-box label {
  display: inline-flex;
  width: 100%;
  height: 100%;
  border: 1px solid #b4b4b4;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.radio-box input[type="radio"]:checked + label {
  border-color: #0c091a;
  background-color: #130f27;
  color: #fff;
}
.input-group {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-bottom: 30px;
}
.input-group.r2 {
  grid-template-columns: 1fr 1fr;
}
.input-group input {
  width: 100%;
  height: 80px;
  padding: 20px;
  border: 1px solid #b4b4b4;
  background-color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.input-group textarea {
  width: 100%;
  height: 200px;
  padding: 20px;
  border: 1px solid #b4b4b4;
  background-color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.input-group input::placeholder {
  color: #c0c0c0;
}
.input-group textarea::placeholder {
  color: #c0c0c0;
}
@media screen and (max-width: 900px) {
  .button-wrap {
    width: 100%;
    display: flex;
    gap: 12px;
    margin: 0 auto;
    flex-direction: column;
  }
  .button-div {
    margin-top: 40px;
  }
  .button-wrap > a {
    width: 100%;
    height: 65px;
    font-size: 16px !important;
  }
  .button-div > p {
    font-size: 14px;
  }
  .program-title {
    height: 75px;
    font-size: 18px;
  }
  .radio-group {
    grid-template-columns: 1fr 1fr;
    height: 100px;
    margin-bottom: 20px;
  }
  .input-group.r2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-wrap h2 {
    font-size: 18px;
  }
  .input-group input {
    height: 60px;
    font-size: 16px;
    padding: 15px;
  }
}
