@charset "utf-8";
/* CSS Document */
/*--------------------------------------------------------------
#News Detail Banner Area
--------------------------------------------------------------*/
#newsDetailBanner {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50vh;
  position: relative;
  display: flex;
}

#newsDetailBanner .newsDetailBannerContainer {
  width: 100%;
}

#newsDetailBanner .newsDetailBannerImg {
  box-sizing: content-box;
  display: flex;
  height: 100%;
}

#newsDetailBanner .newsDetailBannerImg img {
  object-fit: cover;
  display: block;
  width: 100%;
  border-bottom-left-radius: 3em;
  border-bottom-right-radius: 3em;
}

@media (max-width: 575px) {
  #newsDetailBanner {
    height: 50vh;
    display: block;
  }

  #newsDetailBanner .newsDetailBannerImg {
    display: block;
    height: 50vh;
  }

  #newsDetailBanner .newsDetailBannerImg img {
    height: 100%;
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
  }
}

/*--------------------------------------------------------------
# News Detail Yellow Frame
--------------------------------------------------------------*/
#yellowFrameArea .newsDetailContentYellowFrame {
  text-align: center;
  margin: 0.5em auto;
  padding: 0 3.5em;
}

.newsDetailContentYellowFrame .textYellowFrame {
  padding: 1em 4.85em;
}

.newsDetailContentYellowFrame .textYellowFrame h3 {
  text-align: left;
}

.newsDetailContentYellowFrame .textYellowFrame h3 > a {
  color: rgba(0,0,0,1.00);
  font-family: "KBFG Text Medium";
  text-align: left;
  text-decoration: none;
  margin-bottom: 0.5em;
}

.newsDetailContentYellowFrame .textYellowFrame h1 {
  font-weight: 600;
  font-family: "KBFG Text Medium";
  text-align: left;
  margin-bottom: 0.5em;
}

.newsDetailContentYellowFrame .textYellowFrame span {
  text-align: left;
  color: rgba(119, 108, 97, 1);
  margin-bottom: 1em;
  display: block;
}

.newsDetailContentYellowFrame .textYellowFrame ul {
  display: flex;
  list-style: none;
  padding: 0;
}

.newsDetailContentYellowFrame .textYellowFrame ul > li {
  width: 3em;
  height: 3em;
  padding: 10px;
  background-color: rgba(119, 108, 97, 1);
  border-radius: 50%;
  margin-right: 2em;
}

@media (max-width: 575px) {
  #yellowFrameArea .newsDetailContentYellowFrame {
    padding: 0 1em;
  }

  .newsDetailContentYellowFrame .textYellowFrame {
    padding: 1em;
  }

  .newsDetailContentYellowFrame .textYellowFrame h3 {
    text-align: center;
  }

  .newsDetailContentYellowFrame .textYellowFrame h1 {
    text-align: center;
  }

  .newsDetailContentYellowFrame .textYellowFrame span {
    text-align: center;
  }

  .newsDetailContentYellowFrame .textYellowFrame ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 1em auto;
    justify-content: center;
    align-items: center;
  }

  .newsDetailContentYellowFrame .textYellowFrame ul > li {
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# News Detail Content
--------------------------------------------------------------*/
#newsDetailContent {
  position: relative;
  margin: 0 auto;
  margin-bottom: 5em;
  width: 100%;
}

#newsDetailContent .newsDetailContentImg {
  height: 30em;
  position: relative;
  margin: 0 auto;
  display: flex;
}

.newsDetailContentImg .newsDetailContentImgContainer {
  width: 100%;
  margin: 1em auto;
  position: relative;
  border-radius: 1em;
  z-index: 1;
}

.newsDetailContentImgContainer.shadowEffect {
    position: relative;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}
.newsDetailContentImgContainer.shadowEffect:before,
.newsDetailContentImgContainer.shadowEffect:after {
    content: "";
    position: absolute;
    z-index: -1;
    -webkit-box-shadow: 0 0 20px rgba(0,0,0,0.8);
    -moz-box-shadow: 0 0 20px rgba(0,0,0,0.8);
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
    top: 50%;
    bottom: 0;
    left: 20px;
    right: 20px;
    -moz-border-radius: 100px / 10px;
    border-radius: 100px / 10px;
}
.newsDetailContentImgContainer.shadowEffect:after {
    right: 20px;
    left: auto;
    -webkit-transform: skew(8deg) rotate(3deg);
    -moz-transform: skew(8deg) rotate(3deg);
    -ms-transform: skew(8deg) rotate(3deg);
    -o-transform: skew(8deg) rotate(3deg);
    transform: skew(8deg) rotate(3deg);
}

.newsDetailContentImg .newsDetailContentImgContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
  border-radius: 1em;
}

#newsDetailContent .newsDetailContentTxt {
  margin: 2em auto;
  position: relative;
}

.newsDetailContentTxt .newsDetailContentTxtContainer {
  font-family: "KBFG Text Light";
}

.newsDetailContentTxt .newsDetailContentTxtContainer p {
  color: rgba(119, 108, 97, 1);
  text-align: justify;
  text-align-last: left;
  display: block;
  margin: 2.5em auto;
}

.newsDetailContentTxt .newsDetailContentTxtContainer span {
  color: rgba(119, 108, 97, 1);
  text-align: justify;
  text-align-last: left;
  margin: 3em auto;
  display: block;
}

@media (max-width: 575px) {
  #newsDetailContent {
    padding: 0 0.5em;
  }
}

/*--------------------------------------------------------------
# News Latest Update Tab & Content
--------------------------------------------------------------*/
/*========================= Latest Update Tab =========================*/
#newsHLightTab {
  position: relative;
  margin: 2em auto;
  display: block;
}

#newsHLightTab nav {
  border-top: 1px solid rgba(119, 108, 97, 1);
  border-bottom: 1px solid rgba(119, 108, 97, 1);
  padding: 1.5em 8em;
  padding-bottom: 0;
  width: 100%;
  position: relative;
  margin: 0 auto;
  transition: all 0.25s linear;
}

#newsHLightTab nav > div {
  position: relative;
  margin: 0 auto;
  border-bottom: none;
}

#newsHLightTab nav > div > .nav-link {
  align-content: space-between;
  display: flex;
  padding: 0.25em 3em;
  padding-bottom: 0.5em;
  align-items: center;
  margin: 0 auto;
  color: rgba(119, 108, 97, 1);
  font-family: "KBFG Text Light";
  transition: all 0.25s linear;
  border: none;
}

#newsHLightTab nav > div > .nav-link:hover {
  color: rgba(0, 0, 0, 1);
  transition: all 0.25s linear;
  stroke: none;
  box-shadow: none;
  background-color: transparent;
  border-color: transparent;
  padding: 0.25em 3em;
  padding-bottom: 0.5em;
}

#newsHLightTab nav > div > .nav-link:visited,
#newsHLightTab nav > div > .nav-link:focus,
#newsHLightTab nav > div > .nav-link:focus-visible,
#newsHLightTab nav > div > .nav-link:focus-within,
#newsHLightTab nav > div > .nav-link:active,
#newsHLightTab nav > div > .nav-link:target {
  border: none;
  outline: 0 transparent;
  color: rgba(0, 0, 0, 1);
  transition: all 0.25s linear;
  stroke: transparent;
  stroke-width: 0;
  box-shadow: none;
}

#navUpdateTab:focus-visible {
  border: none;
  outline: 0 transparent;
  stroke: transparent;
  stroke-width: 0;
  box-shadow: none;
}

#newsHLightTab nav > div > .nav-link.active {
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 5px solid rgba(119, 108, 97, 1);
  color: rgba(0, 0, 0, 1);
  font-weight: 600;
  font-family: "KBFG Text Medium";
  padding: 0.25em 3em;
  padding-bottom: 0.25em;
  transition: all 0.25s linear;
}

@media (max-width: 575px) {
  #newsHLightTab {
    padding: 0 0.5em;
  }
  
  #newsHLightTab nav {
    padding: 0;
    display: flex;
    justify-content: space-between;
  }

  #newsHLightTab nav > div {
    position: relative;
    margin: 0.5em auto;
    margin-bottom: 0;
    border-bottom: none;
    height: 2em;
  }
  
  #newsHLightTab nav > div > .nav-link {
    padding: 0.25em 5px;
    padding-bottom: 1px;
    margin: 0 auto;
    margin-bottom: 0;
    font-size: 0.85em;
  }
  
  #newsHLightTab nav > div > .nav-link:hover {
    padding: 0.25em 5px;
    padding-bottom: 1px;
    margin: 0 auto;
    margin-bottom: 0;
  }
  
  #newsHLightTab nav > div > .nav-link.active {
    padding: 0.25em 5px;
    padding-bottom: 2px;
    margin: 0 auto;
    margin-bottom: 0;
    border-bottom: 3px solid rgba(119, 108, 97, 1);
  }
}

/*========================= Latest Update Tab Content =========================*/
.latestNewsUpdate  {
  position: relative;
  margin: 1em auto;
  display: block;
}

.latestNewsUpdate h2 {
  font-family: "KBFG Text Medium";
  text-align: center;
  margin: 1em auto;
}

.latestNewsUpdate .latestNewsUpdateContainer {
  width: 100%;
  display: inline-flex;
  padding: 1em 0;
}

.latestNewsUpdateContainer .row {
  display: inline-flex;
  width: 100%;
}

.latestNewsUpdateContainer .latestNewsBoxOuter {
  padding: 0.5em 1.5em;
  position: relative;
  float: left;
  display: block;
}

.latestNewsUpdateContainer .latestNewsBoxInner {
  background-color: rgba(235, 233, 231, 1);
  border-radius: 2em;
  display: block;
  height: 28em;
  margin: 0 auto;
  position: relative;
}

.latestNewsUpdateContainer .latestNewsBoxInner .container {
  padding: 0 1em;
  margin-top: 1em;
}

.latestNewsBoxInner .latestNewsImgContainer {
  display: flex;
  position: relative;
  height: 12.5em;
}

.latestNewsBoxInner .latestNewsImgContainer img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 2em;
  border-top-right-radius: 2em;
}

.latestNewsBoxInner .latestNewsImgContainer.awardImg {
  height: 100%;
  border: 1px solid rgba(119, 108, 97, 1);
  border-radius: 2em;
}

.latestNewsBoxInner .latestNewsImgContainer.awardImg img {
  border-radius: 2em;
}

.latestNewsBoxInner h6 {
  margin-left: 5px;
  margin-top: 0.25em;
  margin-bottom: 0.5em;
  font-family: "KBFG Text Light";
  color: rgba(0,0,0,1.00);
}

.latestNewsBoxInner h6 > a {
  text-decoration: none;
  color: rgba(0,0,0,1.00);
}

.latestNewsBoxInner h3 {
  font-family: "KBFG Text Medium";
  font-weight: 500;
  margin: 0.25em 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.latestNewsBoxInner span {
  margin: 0.75em auto;
  margin-left: 5px;
  color: rgba(119, 108, 97, 1);
  font-family: "KBFG Text Light";
  display: block;
}

.latestNewsBoxInner .latestNewsBoxInnerHover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  border-radius: 2em;
  text-decoration: none;
  padding: 0.75em 10px;
  box-shadow: 0 0.5em 0.5em 0 rgba(0,0,0,.25);
  display: none;
  visibility: hidden;
  opacity: 0;
  background-color: rgba(255, 214, 67, 1);
  transition: all 0.25s cubic-bezier(.87,.8,1,.58);
  overflow: hidden;
}

.latestNewsBoxInner:hover .latestNewsBoxInnerHover {
  display: block;
  visibility: visible;
  opacity: 1;
  transition: all 0.25s cubic-bezier(.87,.8,1,.58);
}

.latestNewsBoxInner .latestNewsBoxInnerHover > .container {
  height: 86%;
  overflow: hidden;
  padding: 5px;
}

.latestNewsBoxInner .latestNewsBoxInnerHover h6,
.latestNewsBoxInner .latestNewsBoxInnerHover h3,
.latestNewsBoxInner .latestNewsBoxInnerHover span {
  margin: 0.25em auto;
}

.latestNewsBoxInner .latestNewsBoxInnerHover p,
.latestNewsBoxInner .latestNewsBoxInnerHover ul,
.latestNewsBoxInner .latestNewsBoxInnerHover ul > li {
  font-family: "KBFG Text Light";
  /*margin: 0.5em 15px;*/
  margin: 0.25em auto;
  color: rgba(119, 108, 97, 1);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  transition: all 0.25s linear;
}

.latestNewsBoxInner .latestNewsBoxInnerHover .latestUpdateReadMoreButton {
  background-color: rgba(119, 108, 97, 1);
  border-top-right-radius: 2em;
  border-bottom-right-radius: 2em;
  display: block;
  position: absolute;
  left: 0;
  padding: 5px 20px;
  padding-left: 1.5em;
  text-decoration: none;
  font-family: "KBFG Text Medium";
  color: rgba(255,255,255,1.00);
  bottom: 1.75em;
}

.latestNewsUpdate .latestNewsUpdateBackButton {
  position: relative;
  display: block;
  margin: 2em auto;
  text-decoration: none;
  color: rgba(0, 0, 0, 1);
  text-align: center;
}

.latestNewsUpdate .latestNewsUpdateBackButton svg {
  margin-right: 0.5em;
}

.latestNewsUpdate .latestNewsUpdateBackButton:hover {
  color: rgba(119, 108, 97, 1);
  transition: 0.35s ease;
}

@media (max-width: 575px) {
  .latestNewsUpdate h2 {
    margin-top: 2.5em;
    margin-bottom: 0.5em;
  }
  
  .latestNewsUpdateContainer .row {
    margin: 0 auto;
  }
  
  .latestNewsUpdateContainer .latestNewsBoxOuter {
    margin-bottom: 1.25em;
  }
  
  .latestNewsUpdateContainer .latestNewsBoxInner {
    height: 32em;
  }
  
  .latestNewsBoxInner .latestNewsImgContainer {
    height: 18em;
  }
}