:root {
  --theme-menu-main: white;
  --theme-menu-main-purple: #73539F;
  --theme-menu-main-fontcolor: #73539F;
  --theme-purple: #AC85E0;
  --theme-purple-lightdark: #9f74da;
  --theme-purple-dark: #7e58b6;
  --theme-purple-deepdark: #73539F;
  --theme-pink: #db7fc7;
  --main-menu-font: #73539F;
  --page-background: #fbf5fd;
  --side-menu-bg: rgba(255, 255, 255, 0.6);
  --side-menu-lv2-menu-font: #73539F;
  --side-menu-active-bg: #c095d5;
  --side-menu-hover-bg: #ffecff;
  --side-menu-parent-bg: #fffbd4 ;
  --theme-breadcrumb: #666;
  --theme-breadcrumb-hover: #73539F;
  --lv4-active-bg: #c095d5;
  --mobile-menu-bar-bg: #ebd3f3;
  --mobile-menu-selected: #c095d5;
  --mobile-lv2-menu-selected: #c095d5;
  --mobile-menu-font: #73539F;
  --theme-menu-main-mobile: #00b390;
  --theme-green: #33ae9c;
  --news-green: #29a389;
  --news-hover: #ffa800;
  --index-more-btn: #1d9d84;
  --index-more-btn-hover: #ffba00;
  --album-hover: #ffba00;
  --active-menu-underline: #00b390;
  --backBtn-hover-bg: #00b390;
  --theme-orange: #ff7b05;
  --news-hr-line: #cecccc;
  --recent-news-font: #ffa800;
  --recent-news-hover: #33ae9c;
  --news-index-hover-bg: #faf3e6;
  --news-index-title-color: #33ae9c;
  --year-button: #AC85E0;
  --index-album-title-color: #33ae9c;
  --index-album-title-color-hover: #ffa800;
  --video-title: #29a389;
  --page-color: #007c54;
  --page-color-hover: #ff7b05;
  --subject-color: #ff7b05;
  --link-color: #007c54;
}

body a {
  color: var(--font-blue);
}
body a:hover {
  color: var(--font-highlighted);
}
body p {
  margin-top: unset;
  margin-bottom: 0.5rem;
}
body h1 {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: bold;
}
body h2 {
  font-size: 1.5rem;
  line-height: 1.7rem;
  font-weight: bold;
}
body h3 {
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: bold;
}
body h4 {
  font-size: 0.8rem;
  line-height: 1rem;
  font-weight: bold;
}
body h5 {
  font-size: 0.7rem;
  line-height: 1rem;
  font-weight: bold;
}
body h6 {
  font-size: 0.6rem;
  line-height: 0.8rem;
  font-weight: bold;
}
body table {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@font-face {
  font-family: "NotoSerif";
  font-weight: 600;
  src: url("../fonts/NotoSerifTC-VariableFont_wght.ttf") format("truetype");
}
@media (min-width: 768px) {
  .container {
    max-width: 90%;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: unset;
    width: 86%;
  }
}

@media (max-width: 960px) {
  .container-lg {
    max-width: 100%;
  }
}

@media (max-width: 1200px) {
  .container-xl {
    max-width: 100%;
  }
}

.fade-in {
  animation: fade-in 1.5s forwards;
}

.animation-fadeIn {
  opacity: 0;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.backButton {
  background: var(--theme-purple);
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}
.backButton:hover {
  background: var(--theme-pink);
  color: white;
}

a:hover {
  cursor: pointer;
}

.btn {
  border-radius: unset;
}

.socialMedia a {
  padding: 0.3rem;
}
.socialMedia a img {
  width: 36px;
  height: auto;
}

.intranet-button {
  background: rgba(255, 255, 255, 0.91);
  color: var(--theme-purple);
  border: 2px solid var(--theme-purple);
  border-radius: 30px;
  padding: 5px 9px !important;
  margin-left: 5px;
  transition: 0.3s ease-in-out;
  position: relative;
  font-size: 18px;
}
@media (min-width: 960px) {
  .intranet-button {
    padding: 5px 30px !important;
  }
}
.intranet-button:hover, .intranet-button.active {
  cursor: pointer;
  background: var(--theme-purple-deepdark);
  color: white;
}
.intranet-button svg {
  width: 15px;
  height: 15px;
  margin-left: 5px;
  fill: white;
}

.intranet-box {
  position: absolute;
  right: 0;
  bottom: 0;
  border: 2px solid var(--theme-purple-deepdark);
  background: var(--theme-purple-lightdark);
  border-radius: 10px;
  z-index: 9999;
  transform: translate(0%, 105%);
}
.intranet-box.mobile {
  min-width: 300px;
}
.intranet-box.mobile input {
  width: 100%;
}
@media (min-width: 960px) {
  .intranet-box {
    border-radius: 30px;
  }
}
.intranet-box input {
  -webkit-appearance: none;
  border-radius: 10px;
  margin: 5px 0;
  padding: 5px;
  border-color: white;
  box-shadow: none !important;
}
@media (min-width: 960px) {
  .intranet-box input {
    margin: 0 10px;
    width: 140px;
  }
}
.intranet-box input:focus {
  outline: none;
}
.intranet-box button {
  border: none;
  background: var(--theme-purple-dark);
  color: white;
  font-weight: bold;
  width: 100%;
  border-radius: 10px;
}
.intranet-box button:hover {
  cursor: pointer;
  opacity: 0.8;
}
@media (min-width: 960px) {
  .intranet-box button {
    width: 65px;
  }
}

#header_sclNameAndLangBtn {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
}
@media (min-width: 768px) {
  #header_sclNameAndLangBtn {
    padding: 0 1vw 0 1vw;
  }
}

.header_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: url("../images/bcsw/header_design_v3.png");
  background-size: 96% auto;
  background-position: bottom right;
  background-repeat: no-repeat;
}

#header_schoolLogo {
  z-index: 3;
  flex: 0 0 40%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
#header_schoolLogo a {
  display: block;
}

#header_media_and_menu {
  z-index: 3;
  flex: 0 0 60%;
}

#desktop-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
#desktop-menu a {
  color: var(--main-menu-font);
}

#mainmenu {
  flex: 1;
}
#mainmenu > ul {
  align-items: center;
  justify-content: space-between;
}
#mainmenu .menu-item-category {
  margin-left: 2px;
  margin-right: 2px;
  line-height: 1.25;
  position: relative;
  background-image: url("../images/bcsw/menuBG.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

#desktop-menu.SmallTopBar {
  position: absolute;
  left: 0;
  right: 0;
}

#header_mobile {
  height: auto;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20000;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

#btn_menu svg {
  fill: var(--theme-purple);
}

.mobile_logo_container {
  position: relative;
  z-index: 1;
  flex: 1;
}

.mobile_topLinkBar {
  color: white;
  font-weight: bold;
  letter-spacing: 1px;
}
.mobile_topLinkBar img {
  width: 35px;
  height: 35px;
  fill: white;
  margin-left: 10px;
}

@media (min-width: 768px) {
  .topBannerContainer {
    position: relative;
  }
}
@media (min-width: 992px) {
  .topBannerContainer {
    position: relative;
  }
}
.banner-buttons-box {
  right: 0;
  bottom: 0;
  justify-content: space-around;
}
@media (min-width: 960px) {
  .banner-buttons-box {
    right: 20px;
    bottom: -75px;
    justify-content: center;
    align-items: center;
  }
}
.banner-buttons-box .banner-button.mobile {
  flex: 0 0 32%;
  height: unset;
  min-width: unset;
  aspect-ratio: 4;
  margin: 5px 0;
}
.banner-buttons-box .banner-button {
  font-size: 1.2rem;
  display: flex;
  color: white !important;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  background: url("../images/bcsw/button_topBanner.png") no-repeat center;
  background-size: 100% 100%;
  height: 55px;
  min-width: 220px;
  transition: 0.3s ease-in-out;
  margin: 5px 0;
}
.banner-buttons-box .banner-button:hover {
  opacity: 0.9;
  color: white !important;
}

.main-slider .image {
  padding-top: 80%;
  position: relative;
  background-size: cover;
  background-position: top center;
}
@media (min-width: 1200px) {
  .main-slider .image {
    padding-top: 50%;
  }
}
.main-slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.main-slider .slick-dots li button:before {
  font-size: 2vw;
}
@media (min-width: 960px) {
  .main-slider .slick-dots li button:before {
    font-size: 0.8rem;
  }
}
.main-slider .slick-dots {
  bottom: 2%;
  width: 95%;
}
.main-slider .slick-dots li.slick-active button:before {
  color: var(--theme-green);
}
.main-slider .banner-description-bg {
  position: absolute;
  right: 0;
  height: 100%;
  top: 0;
  width: 30%;
  background-position: top right;
  z-index: 1;
}
.main-slider .banner-info {
  position: absolute;
  color: white;
  bottom: 15px;
  right: 10px;
  max-width: 80vw;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  line-height: 1.3;
  font-weight: bolder;
  text-shadow: black 1px 1px 3px;
  z-index: 2;
  text-align: right;
}
@media (min-width: 960px) {
  .main-slider .banner-info {
    bottom: 5%;
    right: 5%;
    font-size: 1.8rem;
    letter-spacing: 0.3rem;
  }
}
.main-slider .banner-info .banner-description {
  padding-left: 2.5rem;
}

.mainSliderPrev img, .mainSliderNext img {
  width: 5vw;
}
@media (min-width: 960px) {
  .mainSliderPrev img, .mainSliderNext img {
    width: 45px;
  }
}
.mainSliderPrev:hover, .mainSliderNext:hover {
  cursor: pointer;
  opacity: 0.8;
}

.mainSliderPrev {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 9;
}

.mainSliderNext {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9;
}

.homepage_more_button {
  background-size: 100% 100%;
  text-align: center;
  color: white;
  transition: 0.3s ease-in-out;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
@media (min-width: 960px) {
  .homepage_more_button {
    width: 220px;
  }
}
.homepage_more_button svg {
  fill: white;
  width: 30px;
  height: 30px;
  margin-right: 5px;
}
.notification-button {
  position: fixed;
  width: 80px;
  height: auto;
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 10;
  top: unset;
  bottom: -10px;
  left: 0;
}
@media (min-width: 768px) {
  .notification-button {
    top: unset;
    bottom: 0;
    width: 100px;
  }
}
@media (min-width: 991px) {
  .notification-button {
    top: unset;
    bottom: 0;
    width: 100px;
  }
}

#sloganSection {
  padding-top: 10px;
}
@media (min-width: 991px) {
  #sloganSection {
    padding-top: 40px;
  }
}

#featureSection {
  background: url("../images/bcsw/featureBG_mobile.jpg") no-repeat bottom center;
  background-size: cover;
  padding-top: 20px;
  padding-bottom: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  #featureSection {
    background: url("../images/bcsw/featureBG.png") no-repeat top center;
  }
}
@media (min-width: 768px) {
  #featureSection {
    padding-top: 40px;
    padding-bottom: 120px;
  }
}
@media (min-width: 991px) {
  #featureSection {
    padding-top: 100px;
    padding-bottom: 160px;
  }
}
#featureSection .feature-section-title {
  position: relative;
}
#featureSection .feature-section-title .feature-title-bufferfly {
  position: absolute;
  top: -60%;
  right: -10%;
  z-index: 2;
  width: 30%;
  height: auto;
}
@media (min-width: 992px) {
  #featureSection .feature-section-title .feature-title-bufferfly {
    top: -70%;
    right: -5%;
  }
}
#featureSection .title-ratio {
  flex: 0 0 50%;
}
@media (min-width: 768px) {
  #featureSection .title-ratio {
    flex: 0 0 30%;
  }
}
#featureSection .title-line-ratio {
  flex: 0 0 50%;
}
@media (min-width: 768px) {
  #featureSection .title-line-ratio {
    flex: 0 0 70%;
  }
}
#featureSection .feature-item-box:nth-child(1) .feature-photo:after {
  background-color: rgba(224, 113, 228, 0.68);
}
#featureSection .feature-item-box:nth-child(2) .feature-item {
  margin-top: -15%;
}
#featureSection .feature-item-box:nth-child(2) .feature-photo:after {
  background-color: rgba(255, 145, 87, 0.68);
}
#featureSection .feature-item-box:nth-child(3) .feature-item {
  margin-top: 15%;
}
#featureSection .feature-item-box:nth-child(3) .feature-photo:after {
  background-color: rgba(90, 207, 244, 0.68);
}
#featureSection .feature-item-box:nth-child(4) .feature-item {
  margin-top: -10%;
}
#featureSection .feature-item-box:nth-child(4) .feature-photo:after {
  background-color: rgba(170, 109, 236, 0.68);
}
@media (min-width: 768px) {
  #featureSection .feature-item-box:nth-child(1) .feature-photo:after {
    background-color: rgba(224, 113, 228, 0.68);
  }
  #featureSection .feature-item-box:nth-child(2) .feature-photo:after {
    background-color: rgba(255, 145, 87, 0.68);
  }
  #featureSection .feature-item-box:nth-child(3) .feature-item {
    margin-top: 20%;
  }
  #featureSection .feature-item-box:nth-child(3) .feature-photo:after {
    background-color: rgba(90, 207, 244, 0.68);
  }
  #featureSection .feature-item-box:nth-child(4) .feature-item {
    margin-top: 10%;
  }
  #featureSection .feature-item-box:nth-child(4) .feature-photo:after {
    background-color: rgba(170, 109, 236, 0.68);
  }
}
@media (min-width: 992px) {
  #featureSection .feature-item-box:nth-child(1) .feature-photo:after {
    background-color: rgba(224, 113, 228, 0.68);
  }
  #featureSection .feature-item-box:nth-child(2) .feature-item {
    margin-top: 35%;
  }
  #featureSection .feature-item-box:nth-child(2) .feature-photo:after {
    background-color: rgba(255, 145, 87, 0.68);
  }
  #featureSection .feature-item-box:nth-child(3) .feature-item {
    margin-top: -40%;
  }
  #featureSection .feature-item-box:nth-child(3) .feature-photo:after {
    background-color: rgba(90, 207, 244, 0.68);
  }
  #featureSection .feature-item-box:nth-child(4) .feature-item {
    margin-top: 10%;
  }
  #featureSection .feature-item-box:nth-child(4) .feature-photo:after {
    background-color: rgba(170, 109, 236, 0.68);
  }
}
#featureSection .feature-photo {
  clip-path: circle(50% at 50% 50%);
  padding-top: 100%;
  background-size: cover;
  z-index: 2;
}
#featureSection .feature-photo:after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
}
#featureSection .feature-photo-deco {
  z-index: 1;
  bottom: -30%;
  width: 120%;
  left: -10%;
}
#featureSection .feature-photo-title {
  bottom: -10%;
  z-index: 3;
  width: 100%;
  text-align: center;
  padding-left: 15%;
  padding-right: 15%;
}
#featureSection .feature-photo-title, #featureSection .feature-photo:after {
  transition: all 0.3s ease-in-out;
}
#featureSection .feature-item:hover .feature-photo-title {
  bottom: 40%;
}
#featureSection .feature-item:hover .feature-photo:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

#albumSection {
  background: url("../images/bcsw/albumBG.png") no-repeat top center;
  background-size: cover;
  padding-top: 20px;
  padding-bottom: 20px;
}
#albumSection .homepage_more_button {
  background-image: url("../images/bcsw/themedButton_bg_pink.png");
  width: 180px;
  padding: 0.5rem 0.3rem;
}
#albumSection .homepage_album_moreBtn {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 0.5rem 0;
}
@media (min-width: 768px) {
  #albumSection .homepage_album_moreBtn {
    position: absolute;
    right: 15px;
    bottom: 10px;
  }
}
@media (min-width: 768px) {
  #albumSection {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
#albumSection .album-title-ratio {
  flex: 0 0 60%;
}
@media (min-width: 768px) {
  #albumSection .album-title-ratio {
    flex: 0 0 40%;
  }
}
#albumSection .album-deco-ratio {
  flex: 0 0 40%;
}
@media (min-width: 768px) {
  #albumSection .album-deco-ratio {
    flex: 0 0 30%;
  }
}
#albumSection .album_slider .album_image {
  padding-top: 116%;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  position: relative;
}
#albumSection .album_slider .album_image:after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(170, 109, 236, 0.68);
  border-radius: 15px;
  transition: 0.3s ease-in-out;
}
#albumSection .album_slider .album-title {
  background-color: var(--theme-purple);
  color: white;
  padding: 1rem;
  border-radius: 50px;
  text-align: center;
  margin-top: 15px;
  font-weight: bold;
}
#albumSection .album_slider .read-more {
  transition: 0.3s ease-in-out;
  opacity: 0;
  left: calc(50% - 40px);
  z-index: 2;
  width: 80px;
  height: 80px;
  color: white;
  bottom: 0;
}
#albumSection .album_slider .read-more svg {
  fill: white;
}
#albumSection .album_slider .album-slider-item:hover .album_image:after {
  height: 100%;
}
#albumSection .album_slider .album-slider-item:hover .read-more {
  opacity: 1;
  bottom: calc(50% - 40px);
}
#albumSection .sliderPrev, #albumSection .sliderNext {
  width: 30px;
  height: 30px;
  top: calc(50% - 20px);
}
#albumSection .sliderPrev:hover, #albumSection .sliderNext:hover {
  opacity: 0.8;
  cursor: pointer;
}
#albumSection .sliderPrev img, #albumSection .sliderNext img {
  width: 100%;
  height: auto;
}
#albumSection .sliderPrev {
  left: 0px;
}
#albumSection .sliderPrev img {
  transform: rotateY(180deg);
}
#albumSection .sliderNext {
  right: 0px;
}
@media (min-width: 768px) {
  #albumSection .sliderPrev, #albumSection .sliderNext {
    width: 50px;
    height: 50px;
    top: calc(50% - 20px);
  }
  #albumSection .sliderPrev:hover, #albumSection .sliderNext:hover {
    opacity: 0.8;
    cursor: pointer;
  }
  #albumSection .sliderPrev {
    left: -65px;
  }
  #albumSection .sliderPrev img {
    transform: rotateY(180deg);
  }
  #albumSection .sliderNext {
    right: -30px;
  }
}

#videoSection {
  position: relative;
  background: url("../images/bcsw/topBannerBG.jpg") bottom right;
  background-size: cover;
  padding: 25px;
}
#videoSection:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4f395f;
  opacity: 0.6;
}
#videoSection .homepage_more_button {
  background-image: url("../images/bcsw/themedButton_purple.png");
  width: 180px;
  padding: 0.5rem 0.3rem;
}
#videoSection .homepage_video_moreBtn {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 0.5rem 0;
}
@media (min-width: 768px) {
  #videoSection .homepage_video_moreBtn {
    padding: 0;
    position: absolute;
    bottom: 3%;
    right: 3%;
  }
}
#videoSection .videoSliderItem {
  background-color: transparent;
}
#videoSection .videoSliderItem .video-title {
  width: 100%;
  margin: 0 auto;
  color: white;
  font-size: 1.4rem;
}
@media (min-width: 960px) {
  #videoSection .videoSliderItem .video-title {
    width: 60%;
  }
}
#videoSection .videoSliderItem .video {
  margin: 0 auto;
  width: 100%;
  height: auto;
}
@media (min-width: 960px) {
  #videoSection .videoSliderItem .video {
    width: 60%;
  }
}
#videoSection .videoSliderItem .video video {
  border-radius: 15px;
}
#videoSection .videoSliderItem iframe {
  width: 100%;
  height: 100%;
}

#footer {
  background: url("../images/bcsw/footerBG.jpg") no-repeat bottom center;
  background-size: cover;
  padding-top: 20px;
  padding-bottom: 20px;
}
#footer .footer-school-name {
  color: var(--theme-purple-lightdark);
  font-weight: bolder;
}
#footer .footer-school-name .chi {
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  #footer .footer-school-name .chi {
    font-size: 2rem;
  }
}
#footer .footer_school_contact {
  color: var(--theme-purple);
}
#footer .sitemap {
  background-color: var(--theme-purple);
  color: white;
  border-radius: 5px;
  font-size: 0.9rem;
  padding: 0.3rem 1rem;
  height: 45px;
  display: flex;
  align-items: center;
  margin-left: 0.3rem;
}
#footer #toTop {
  right: 1rem;
  top: 1rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  background-color: var(--theme-pink);
  border-radius: 10px;
}
#footer #toTop svg {
  width: 30px;
  height: 30px;
}
#footer #toTop:hover {
  cursor: pointer;
  opacity: 0.8;
}
@media (min-width: 768px) {
  #footer #toTop {
    right: 0rem;
    top: -5rem;
  }
  #footer #toTop svg {
    width: 50px;
    height: 50px;
    padding: 0.5rem;
  }
}
#footer .copyright {
  font-size: 0.8rem;
  color: #808080;
}

.footer-links-section {
  margin-top: 30px;
  overflow: hidden;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .footer-links-section {
    overflow: unset;
  }
}
@media (min-width: 960px) {
  .footer-links-section {
    margin-bottom: 200px;
  }
}
@media (min-width: 960px) {
  .footer-links-section {
    max-width: 80%;
  }
}
@media (min-width: 1400px) {
  .footer-links-section {
    max-width: 1300px;
  }
}

a.footer-links-item {
  color: var(--theme-purple) !important;
  font-weight: bold;
  text-align: center;
  z-index: 1;
  display: block;
}
@media (min-width: 768px) {
  a.footer-links-item {
    font-size: 2rem;
  }
}
a.footer-links-item .footer-links-image {
  width: 100%;
  height: auto;
  max-width: 230px;
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
a.footer-links-item .footer-links-deco {
  top: 50%;
  left: 0;
  width: 100%;
  z-index: -1;
  transition: 0.3s ease-in-out;
}
a.footer-links-item .footer-links-deco-dash {
  top: 40%;
  left: 0;
  width: 100%;
  z-index: -1;
  transition: 0.3s ease-in-out;
}
a.footer-links-item:hover {
  color: var(--theme-purple-dark);
}
a.footer-links-item:hover .footer-links-deco {
  transform: rotate(-20deg);
}
a.footer-links-item:hover .footer-links-deco-dash {
  transform: rotate(30deg);
}
a.footer-links-item:hover .footer-links-image {
  opacity: 1;
}

@keyframes auto-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.themedBreadcrumbBar {
  font-size: 0.8rem;
  padding: 0.7rem 0.5rem;
  color: var(--theme-breadcrumb);
  border-bottom: 1px dotted #ddd;
}
.themedBreadcrumbBar a:not(:first-child), .themedBreadcrumbBar span {
  color: var(--theme-breadcrumb);
  padding: 0 0.7rem;
}
.themedBreadcrumbBar a:hover {
  color: var(--theme-breadcrumb-hover);
}

.breadcrumbs {
  position: relative;
}
.breadcrumbs img {
  padding-bottom: 4px;
}

.themed-page-title {
  position: relative;
  color: #AC85E0;
  font-weight: bold;
  font-size: 1.8rem;
  z-index: 0;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .themed-page-title {
    margin-bottom: 2rem;
  }
}
.themed-page-title:after {
  content: "";
  position: absolute;
  height: 15px;
  z-index: -1;
  background-image: url("../images/bcsw/pageTitle_deco.png");
  background-size: cover;
  border-radius: 5px;
  width: 100%;
  bottom: -12px;
  left: 0;
}
@media (min-width: 768px) {
  .themed-page-title:after {
    height: 25px;
    background-size: 100% 100%;
  }
}

.pageSectionContent {
  padding: 0.3rem 0.7rem;
}

.groupActivityTitle svg {
  fill: white;
  margin-right: 0.3rem;
  width: 30px;
}

.pageGroupActivityImage {
  width: 100%;
  padding-top: 75%;
  display: block;
  background-size: cover;
  background-position: center;
}

.pageGroupButton {
  display: inline-block;
  font-weight: bold;
  border: 1px solid #ff8356;
  background-size: 200% 100%;
  background-position: left bottom;
  transition: all 1s ease;
  padding: 0.5rem;
  text-align: center;
  background: white;
  color: #ff8356 !important;
}
.pageGroupButton.active {
  background: #ff8356;
  background-size: 200% 100%;
  color: white !important;
}
.pageGroupButton.active:hover {
  background: #ff8356;
}
.pageGroupButton:not(.active):hover {
  background: #ff8356;
  color: white !important;
}

.mfp-arrow {
  background: transparent;
}

.video_page_item .video_box {
  padding-top: 75%;
  background-color: black;
}
.video_page_item .video_youtubeBlock, .video_page_item .video_mp4Block {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}
.video_page_item .album-label {
  color: var(--video-title);
}

/*# sourceMappingURL=theme.css.map */
