#xet-page * {
  box-sizing: border-box;
}
#xet-page p {
  margin: 0;
}
#xet-page a {
  text-decoration: none;
  color: inherit;
}
#xet-page img {
  max-width: 100%;
}
#xet-page .page__title {
  text-align: center;
  margin-bottom: 2rem;
}
#xet-page .page__title > div + div {
  margin-top: 1rem;
}
#xet-page .page__title .title {
  font-size: 2rem;
  font-weight: 700;
}
#xet-page .page__title .subTitle {
  font-size: 1.25rem;
  font-weight: 500;
}
#xet-page .tab-wrp {
  position: relative;
}
#xet-page .tab-wrp ul.tab-menus {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#xet-page .tab-wrp ul.tab-menus li {
  width: 33.333333333%;
  border-bottom: 1px solid #707070;
}
#xet-page .tab-wrp ul.tab-menus li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-weight: 700;
  border: 1px solid transparent;
  border-bottom: 0;
}
#xet-page .tab-wrp ul.tab-menus li.is_on a {
  border-color: #707070;
  background-color: #707070;
  color: #fff;
}
#xet-page .tab-wrp .tab-contents .content {
  display: none;
  padding: 20px 0;
  min-height: 200px;
}
#xet-page .tab-wrp .tab-contents .content div + figure {
  margin-top: 10px !important;
}
#xet-page .tab-wrp .tab-contents .content figure {
  display: block;
  margin: 0;
}
#xet-page .tab-wrp .tab-contents .content img {
  max-width: 100%;
  vertical-align: top;
}
#xet-page .tab-wrp .tab-contents .content.is_on {
  display: block;
}

/* responsive
-------------------------------------------------------------------------------------------------------- */
@media (min-width: 992px) {
  #xet-page .page__title {
    margin-bottom: 3rem;
  }
  #xet-page .page__title .title {
    font-size: 3rem;
  }
  #xet-page .tab-wrp {
    position: relative;
  }
  #xet-page .tab-wrp ul.tab-menus {
    justify-content: space-between;
  }
  #xet-page .tab-wrp ul.tab-menus li {
    width: auto;
    flex: 1;
  }
}