.program-title{
  display:flex;
  flex-direction: column;
  height: 25rem;
  background-color: #29363B;
  padding: 5rem 0; 
  background-image: url("../images/program/bg.png");
  background-repeat: no-repeat;
  background-position:right;
}

.program-title__container{
  max-width: 128rem;
  width: calc(100% - 2rem);
  margin: 0 auto;
}
.program-title__container::before{
  content: "";
  background-color: #AC0000;
  width: 6rem;
  height: 0.4rem;
  margin-bottom: 0.5rem; 
}

.program-title h1{
  margin: 0;
  color: #F0F0F0;
}

.program-title__background {
  font-weight: 600;
  font-size: 12rem;
  color: rgba(182,182,182,0.2);
}
@media screen and (max-width: 37.5rem) {
  .program-title__background {
    font-size: 7rem;
    overflow: hidden;
  }
}
.program-content{
  /* background-color: #F0F0F0; */
  padding: 4rem 0;
  max-width: 128rem;
  width: calc(100% - 2rem);
  margin: 0 auto;
}

.program-content__container{
}

.tab-content{
  gap: 2rem; 
  flex-wrap: wrap;
  justify-content: center;
}
.tab-content__img{
}

@media screen and (max-width: 37.5rem) {
  .tab-content__img{
      /* display: none; */
      position: absolute;
      opacity: 0.2;
      filter: blur(0.15rem);
    }
  }
  


.tab-content__wrapper{
  display: flex;
  flex-direction: column;
  background-color: rgba(100,100,100,0.1);
  flex: 1;
  padding: 3rem; 
  border-radius: 0.2rem; 
  width: 80rem;
  /* min-width: 30rem;  */
}
@media screen and (max-width: 37.5rem) {
  .tab-content__wrapper{
    height: 40rem;
    flex: 0 1 50rem;
    padding: 3rem 2rem; 
  }
}
.tab-content h1{
  margin: 0;
}
.tab-content{
  flex-wrap: wrap;
}
.tab-content__img{
  overflow: hidden;
}
.tab-content__heading{

}
.tab-content__detail{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex:1;
  line-height: 1.7;
}

.tab-content__detail > p {
  margin: auto 0;
}
@media screen and (max-width: 37.5rem) {
  .tab-content__detail > p {

  }
}
.tab-content__detail > p > span {
  display: block;
  font-size: 1.4rem;
  color: gray;
  margin-top: 1rem;
  /* text-align: right; */
}
.tab-content__suggestion{
  border-radius: 0.5rem;
  /* border: solid gray .1rem;  */
  background-color: #ECECEC;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  transform: translateY(3rem);
  opacity: 0.1;
  transition: 0.5s ease;
}
@media screen and (max-width: 37.5rem) {
  .tab-content__suggestion{
    background: none;
    padding: 0;
  }
}
.tab-content__suggestion > h5 {
  margin: 0;
}


ul.tabs {
  margin: 0 0 4rem 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 3rem;
}
@media screen and (max-width: 56.25rem) {
  ul.tabs {
    font-size: 1.4rem;
    justify-content: center;
  }
}
@media screen and (max-width: 37.5rem) {
  ul.tabs {
    letter-spacing: -1px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 27rem) {
  ul.tabs {
    justify-content: space-between;
    font-size: 1.2rem;
    gap:0;
  }
}
ul.tabs li {
  background: none;
  color: #222;
  display: inline-block;
  cursor: pointer;
  /* font-size: 1.6rem; */
  font-weight: bold;
}
@media screen and (max-width: 37.5rem) {
  ul.tabs li {
    padding: 0rem;
  }
}
ul.tabs li.current a {
  /* font-size: 1.5rem; */
  border-bottom: solid #AC0000 .4rem; 
}
ul.tabs li a {
  font-weight: bold;
  padding: 1rem 2rem;
  white-space: nowrap;
}
@media screen and (max-width: 37.5rem) {
  ul.tabs li a {
    padding: 1rem 0.5rem;
  }
}

.tab-content {
  display: none;
  /* padding: 1.5rem; */
}

.tab-content.current {
  display: flex;
}