@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@400;500;700&display=swap");
@font-face {
  font-family: "Avenir";
  font-weight: 500;
  src: url("../themes/demo/assets/fonts/Avenir-Medium.ttf");
}
@font-face {
  font-family: "Avenir";
  font-weight: 500;
  font-style: oblique;
  src: url("../themes/demo/assets/fonts/Avenir-MediumOblique.otf");
}
html, body {
  background-color: black;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}
#scrollContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  background-color: transparent;
  pointer-events: auto;
}
#scrollContainer::-webkit-scrollbar {
  display: none;
}
#scrollContent {
  width: 100%;
  height: 100%;
  min-height: 580px;
  position: relative;
}
div, img {
  box-sizing: border-box;
}
.alwaysOnTop {
  pointer-events: none;
  z-index: 1000;
}
#videoBackground {
  position: absolute;
  pointer-events: none;
}
.gradientRight {
  position: absolute;
  right: 0;
  height: 100%;
  width: 500px;
  opacity: 0.85;
  background-image: linear-gradient(to left, black 50%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 767px) and (orientation: portrait) {
  .gradientRight {
    display: none;
  }
}
.gradientLeft {
  position: absolute;
  left: 0;
  height: 100%;
  width: 300px;
  opacity: 0.85;
  background-image: linear-gradient(to right, black 30%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
@media (max-width: 767px) and (orientation: portrait) {
  .gradientLeft {
    display: none;
  }
}
.gradientTop {
  position: absolute;
  top: 0;
  width: 100%;
  height: 600px;
  opacity: 0.85;
  background-image: linear-gradient(to bottom, black 40%, rgba(0, 0, 0, 0) 100%);
  display: none;
}
@media (max-width: 767px) and (orientation: portrait) {
  .gradientTop {
    display: block;
  }
}
.gradientBottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 300px;
  opacity: 0.75;
  background-image: linear-gradient(to top, black 40%, rgba(0, 0, 0, 0) 100%);
}
@media (max-height: 767px) and (orientation: landscape) {
  .gradientBottom {
    display: none;
  }
}
#slogan {
  position: absolute;
  right: 75px;
  top: 120px;
  height: auto;
  width: 200px;
  object-fit: cover;
}
@media (max-width: 767px) and (orientation: portrait) {
  #slogan {
    right: 10px;
    top: 100px;
  }
}
#poster {
  display: none;
}
#menu {
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 25px;
}
@media (max-width: 767px) and (orientation: portrait) {
  #menu {
    padding-top: 10px;
  }
}
#logo {
  width: 120px;
  height: auto;
  margin-left: 10px;
}
#logoSep {
  width: 120px;
  height: auto;
  margin: 15px 0 15px 3px;
}
#voiceOfConte {
  font-family: "Avenir";
  font-weight: 500;
  font-size: 10px;
  color: white;
  width: 120px;
  height: 24px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  background-image: linear-gradient(to right, rgba(255, 70, 99, 0.39), #ff4663);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
#menuItemWrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}
a {
  text-decoration: none !important;
}
#menuSep {
  position: absolute;
  left: 10px;
  top: 0px;
  height: 565px;
  background-image: url("../themes/demo/assets/images/sepVertical.png");
  background-repeat: repeat-y;
  background-size: auto 38px;
  background-position: top -5px left 0px;
}
.menuItem {
  font-family: "Avenir";
  font-weight: 500;
  font-style: oblique;
  font-size: 11px;
  margin-bottom: 16px;
  margin-left: 20px;
  color: #ffffff33 !important;
}
.menuItem.active {
  font-size: 12px;
}
#social {
  position: absolute;
  top: 40px;
  right: 95px;
  display: flex;
}
@media (max-width: 767px) and (orientation: portrait) {
  #social {
    top: 30px;
    right: 15px;
  }
}
.socialButton {
  width: 24px;
  height: 24px;
  cursor: pointer;
  pointer-events: auto;
}
#linkButton {
  width: 415px;
  height: 184px;
  position: absolute;
  bottom: 140px;
  left: 0;
  pointer-events: auto;
  cursor: pointer;
}
@media (max-width: 767px) and (orientation: portrait) {
  #linkButton {
    width: 215px;
    height: 98px;
    bottom: unset;
    top: 400px;
  }
}
@media (max-height: 767px) and (orientation: landscape) {
  #linkButton {
    width: 215px;
    height: 98px;
  }
}
#linkButton div {
  position: absolute;
  border-radius: 0 30px 30px 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  filter: brightness(1.5) saturate(140%);
}
@media (max-width: 767px) and (orientation: portrait) {
  #linkButton div {
    border-radius: 0 17px 17px 0;
  }
}
#linkButton img {
  position: absolute;
  right: 0;
  top: 9%;
  height: 80%;
}
#footer {
  position: absolute;
  bottom: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-family: "Noto Serif TC";
  font-weight: bold;
  font-size: 13px;
}
@media (max-width: 767px) and (orientation: portrait) {
  #footer {
    bottom: 25px;
  }
}
#download {
  margin-top: 15px;
  display: inline;
}
.downloadButton {
  width: 150px;
  height: auto;
  margin: 0 3px;
  cursor: pointer;
  pointer-events: auto;
}
#contentContainer {
  width: 100%;
}
.swiper-container {
  width: 100%;
  padding-left: 200px;
}
@media (max-width: 767px) and (orientation: portrait) {
  .swiper-container {
    padding: 0 calc((100% - 230px) * 0.5);
  }
}
.contentItem {
  width: 100%;
  padding: 25px 0 10px 0;
  position: relative;
}
.contentItem.active {
  z-index: 999;
}
.categoryTop {
  margin-left: 200px;
}
@media (max-width: 767px) and (orientation: portrait) {
  .categoryTop {
    margin-left: calc((100% - 230px) * 0.5);
  }
}
.categoryHeading {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #20D88A;
  font-size: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) and (orientation: portrait) {
  .categoryHeading {
    margin-bottom: 5px;
  }
}
.categoryText {
  font-family: "Noto Serif TC";
  font-weight: normal;
  font-size: 11px;
  color: white;
  width: 250px;
  height: 100px;
  margin-left: 20px;
}
@media (max-width: 767px) and (orientation: portrait) {
  .categoryText {
    height: 40px;
  }
}
.sepHorizontal {
  width: 100%;
  height: 10px;
  max-height: 100%;
  background-image: url("../themes/demo/assets/images/sepHorizontal.png");
  background-repeat: repeat-x;
  background-size: auto 3px;
  margin-left: 20px;
}
.articlesList {
  width: 100%;
  height: 350px;
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) and (orientation: portrait) {
  .articlesList {
    height: 286px;
  }
}
.articlePoster {
  height: 100%;
  width: 280px;
  padding: 5px;
}
@media (max-width: 767px) and (orientation: portrait) {
  .articlePoster {
    width: 230px;
  }
}
.articlePoster > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #707070;
  border: 1px solid #707070;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.26);
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.26);
}
/*# sourceMappingURL=style.css.map */
