.sec-tab{
  background: var(--dark-gray);
}
.tab-list{
  position: relative;
  padding-bottom: 5.2083vw;
}
.tab-list ul{
  display: flex;
  border-bottom: 1px solid var(--black);
}
.tab-list li{
  flex-grow: 1;
  flex-basis: 0;
  position: initial;
}
.tab-list li a{
  height: 5.2083vw;
  width: 100%;
  padding: 0 1vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}
.tab-list li.active > a{
  background: var(--black);
  color: var(--dark-gray);
  font-weight: 600;
}
.opensubTab{
  display: none;
}
.subtab{
  position: absolute;
  display: none;
  left: 0;
  width: 100%;
}
.tab-list li.active .subtab{
  display: block;
}
.tab-info{
  display: none;
}
.tab-info.active{
  display: block;
}
@media(min-width:1460px) and (max-width:1559.98px){
  .tab-list li a {
    font-size: 0.92vw;
    line-height: 1.6vw;
  }
}
@media(min-width:1360px) and (max-width:1459.98px){
  .tab-list li a {
    font-size: 0.92vw;
    line-height: 1.6vw;
  }
}
@media(min-width:1200px) and (max-width:1359.98px){
  .tab-list li a {
    padding: 0 0.5vw;
    font-size: 0.99vw;
    line-height: 1.45vw;
  }
}
@media(min-width:992px) and (max-width:1199.98px){
  .tab-list {
    padding-bottom: 5.8vw;
  }
  .tab-list li a {
    height: 5.8vw;
    padding: 0 0.5vw;
    font-size: 1.1vw;
    line-height: 1.6vw;
  }
}
@media(max-width:991.98px){
  .sec-tab {
    padding: 0 2rem 4rem;
  }
  .tab-list {
    padding-bottom: 0;
  }
  .tab-list ul {
    display: block;
    border-bottom: 0;
  }
  .tab-list li {
    border-bottom: 1px solid var(--black);
    position: relative;
  }
  .tab-list li a {
    height: initial;
    min-height: 6rem;
    padding: 0;
    font-size: 1.6rem;
    text-align: left;
    line-height: 2.2rem;
    justify-content: flex-start;
  }
  .tab-list li a br{
    display: none;
  }
  .tab-list > ul > li > a{
    padding: 0 5.4rem 0 2rem;
    position: relative;
  }
  .tab-list > ul > li > a::after{
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 5.4rem;
    height: 100%;
    background: url(../images/icon-angle-down-black.svg);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .tab-list > ul > li.active > a::after{
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
  .subtab {
    position: relative;
  }
  .subtab li:last-child{
    border: 0;
  }
  .subtab li a{
    background: #E4E7E8;
    padding: 0 2rem 0 5.4rem;
    position: relative;
  }
  .subtab li a::after{
    position: absolute;
    content: "";
    left: 2rem;
    height: 2.4rem;
    width: 2.4rem;
    background: url(../images/icon-arrow-turn-down-right.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
  .subtab li.active a::after{
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
}