:root {
  --theme-deep-blue: #042150;
  --theme-light-blue: #A5D3EE;
  --theme-blue: #4568AC;
  --theme-brown-red: #600D10;
  --theme-deep-blue-title: #2c2324;
  --theme-deep-blue-menu-hover: #160C5B;
  --theme-deep-blue-menu-bg-hover: #160C5B;
  --theme-deep-orange: #E5812C;
  --theme-deep-orange-soft: #f0a260;
  --theme-news-bg-blue: #F2F6FB;
  --indexAchievementsBG: #704435;
  --footer-copyrightBG: #042150;
  --footer-bg: #E0E6F2;
  --theme-secondary: #704435;
  --theme-light-blue-bg: #f9f7f7 ;
  --theme-blue-separate: #894141;
  --theme-albums-bg: rgba(249, 247, 247, 0.8);
  --theme-achievements-bg: rgba(242, 141, 152, 0.8);
  --theme-media-bg: rgba(96, 68, 14, 1);
  --media-font: #a98b4f;
  --anniversary-yellow: #D89228;
  --theme-menu-main: #4F70B0;
  --font-blue: #160C5B;
  --font-title-blue: #483D95;
  --font-highlighted: #483D95;
  --font-brown: #573F37;
  --font-page-title: #704435;
  --pageSectionTitleBG: #704435;
  --news-title-background: #2b58b0;
  --album-title-background: #758ebe;
  --news-content-title: #594440;
  --theme-more-button-deep-blue: #404C79;
  --theme-more-button-pale-blue: #4568AC;
}

body a {
  color: var(--font-blue);
}
body a:hover {
  color: var(--font-highlighted);
}
body p {
  margin-top: unset;
  margin-bottom: 0.5rem;
}

#page 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: 1200px) {
  .container {
    max-width: unset;
    width: 90%;
  }
}

@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;
  }
}
@media (min-width: 960px) {
  .col-lg-2-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.page-section-header {
  padding: 10px 0.8rem !important;
  background: linear-gradient(318deg, #6254b7 0%, #4471c7 80%) !important;
  color: white !important;
  font-size: 1.2rem !important;
  font-weight: 500 !important;
  margin-bottom: 0.5rem;
  transform: skewX(-6deg);
  font-family: "Microsoft YaHei";
  letter-spacing: 0.1rem;
}

a:hover {
  cursor: pointer;
}

#mobile_socialMediaBar {
  padding-left: 10px;
  padding-right: 10px;
}
#mobile_socialMediaBar a {
  padding: unset;
}
#mobile_socialMediaBar .socialMediaBtn {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#desktop_socialMediaBar {
  background-color: rgba(255, 255, 255, 0.79);
  position: fixed;
  right: 0;
  top: 20%;
  z-index: 2;
  text-align: center;
  padding: 5px 10px 5px 15px;
  border-radius: 20px 0 0 20px;
}
#desktop_socialMediaBar a {
  display: block;
  width: 40px;
  height: 50px;
  vertical-align: center;
  transition: 0.5s ease-in-out;
}
#desktop_socialMediaBar a:hover img {
  transform: scale(1.1);
}
#desktop_socialMediaBar hr {
  border-color: var(--theme-deep-blue);
  margin: 5px 0;
}
#desktop_socialMediaBar .socialMediaBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#desktop-menu {
  background: var(--theme-menu-main);
  display: flex;
  padding: 0 10%;
  align-items: center;
  justify-content: center;
}
#desktop-menu a {
  color: white;
}

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

#mainmenu {
  flex: 1;
}
#mainmenu > ul {
  align-items: center;
  justify-content: space-between;
}
#mainmenu .menu-item-category {
  line-height: 1.25;
}
@media (min-width: 1525px) {
  #mainmenu .menu-item-category {
    flex: unset;
  }
}
#mainmenu .menu-item-category:hover:after {
  position: absolute;
  bottom: 0px;
  background-color: white;
  height: 3px;
  width: 100%;
  content: "";
  z-index: 99;
}

@media (min-width: 960px) {
  #lang-btn {
    display: flex;
    align-items: center;
    position: absolute;
    right: 10px;
  }
}
@media (min-width: 1200px) {
  #lang-btn {
    margin-left: 10px;
    right: 50px;
  }
}
#lang-btn a {
  border-radius: 50%;
  text-decoration: none;
  color: white;
  text-align: center;
  border: solid 1px white;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  transition: 0.2s;
}
@media (min-width: 1200px) {
  #lang-btn a {
    margin-left: unset;
    background-color: unset;
    width: 50px;
    height: 50px;
  }
  #lang-btn a:hover {
    background-color: var(--theme-deep-blue);
    border-color: var(--theme-deep-blue);
  }
}

#header_mobile {
  position: fixed;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  background: var(--theme-menu-main);
  padding: 10px;
}

#header_mobile img {
  max-width: 25px;
}

#header_sclNameAndLangBtn {
  display: flex;
  padding: 10px;
  align-items: center;
  text-align: center;
  transition: all linear 0.6s;
}
#header_sclNameAndLangBtn #header_schoolLogo {
  max-width: 37%;
  transition: ease-in-out 0.6s;
}
@media (min-width: 1200px) {
  #header_sclNameAndLangBtn {
    padding: 20px 30px;
    background-color: rgba(22, 24, 51, 0.65);
  }
  #header_sclNameAndLangBtn.SmallTopBar {
    background: var(--theme-menu-main);
    padding: 0;
    flex-wrap: wrap;
    box-shadow: #541616 0px 0px 5px;
  }
  #header_sclNameAndLangBtn.SmallTopBar #header_schoolLogo {
    padding: 10px;
    max-width: 25%;
  }
  #header_sclNameAndLangBtn.SmallTopBar #lang-btn {
    top: 25px;
  }
  #header_sclNameAndLangBtn.SmallTopBar #lang-btn a {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  #header_sclNameAndLangBtn.SmallTopBar #desktop-menu {
    flex-basis: 100%;
    background: unset;
  }
}
@media (min-width: 1400px) {
  #header_sclNameAndLangBtn.SmallTopBar #header_schoolLogo {
    padding: 10px 10px 0 10px;
    max-width: 30%;
  }
  #header_sclNameAndLangBtn.SmallTopBar #lang-btn {
    margin-top: -7px;
  }
}

.main-slider {
  margin-top: 80px;
}
@media (min-width: 1200px) {
  .main-slider {
    margin-top: 0;
  }
}
.main-slider .image {
  padding-top: 43%;
  position: relative;
  background-size: cover;
  background-position: center;
}
.main-slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.main-slider .slick-dots li button:before {
  font-size: 1rem;
}
.main-slider .slick-dots {
  bottom: 2%;
  text-align: right;
  width: 95%;
}
.main-slider .slick-dots li.slick-active button:before {
  color: var(--theme-deep-blue);
}
.main-slider .banner-info {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  font-weight: 800;
  background: linear-gradient(rgba(1, 16, 35, 0) 0%, rgba(1, 16, 35, 0) 40%, #120E2E 100%);
  transition: all 1s ease;
}
.main-slider .banner-info .banner-title {
  color: white;
  padding: 3% 4.5%;
  font-size: 2.2rem;
  text-shadow: #140d3f 1px 1px 3px;
  font-family: "Microsoft YaHei";
  letter-spacing: 0.2rem;
  text-align: center;
  opacity: 0.8;
}
.main-slider .banner-info .banner-description {
  color: white;
  font-size: 1.5rem;
  padding: 0% 3%;
  text-shadow: #140d3f 1px 1px 3px;
  font-family: "Microsoft YaHei";
  letter-spacing: 0.1rem;
}

@keyframes auto-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.indexTitle {
  font-size: 2rem;
  border-bottom: 1px solid var(--font-title-blue);
  height: fit-content;
  font-weight: 700;
  font-family: "Microsoft YaHei";
  letter-spacing: 0.2rem;
}

.page-linear-background {
  background: linear-gradient(180deg, rgb(246, 252, 255) 0%, rgb(214, 242, 255) 40%, rgb(218, 225, 251) 65%, rgb(233, 246, 251) 100%);
}

.decoration-page-background {
  background-image: url("../images/nwcss/pageBackground.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f7f7f7;
  min-height: 700px;
}

.indexSectionTitle {
  word-wrap: break-word;
  font-family: "Cwtexf", "Ma Shan Zheng";
  font-size: 2.2rem;
  text-align: right;
  color: white;
  position: relative;
  line-height: 1.3;
}
.indexSectionTitle.indexAlbumTitle {
  padding-left: 10px;
}
@media (min-width: 768px) {
  .indexSectionTitle {
    width: 2.2rem;
  }
  .indexSectionTitle::after {
    position: absolute;
    width: 1px;
    right: -15px;
    top: 8px;
    height: 90%;
    background: white;
    content: " ";
  }
}
@media (min-width: 960px) {
  .indexSectionTitle.indexAlbumTitle {
    margin-right: 20px;
  }
}
@media (min-width: 1200px) {
  .indexSectionTitle.indexAlbumTitle {
    margin-right: 35px;
  }
}

.indexSliderDirectionBtn {
  position: absolute;
}

.indexSliderDirectionBtn.prevBtn {
  left: 0;
  top: calc(50% - 1.5rem);
}

.indexSliderDirectionBtn.nextBtn {
  right: 0;
  top: calc(50% - 1.5rem);
}

.indexSliderDirectionBtn img {
  height: 3rem;
}
.indexSliderDirectionBtn img:hover {
  cursor: pointer;
}

#newsSection .indexSectionTitle {
  width: 2.2rem;
}

.indexSectionTitle_anniversary_small {
  font-size: 2.2rem;
  word-wrap: break-word;
  font-family: "Cwtexf", "Ma Shan Zheng";
  line-height: 1.3;
  color: white;
}
@media (min-width: 768px) {
  .indexSectionTitle_anniversary_small {
    font-size: 1.5rem;
    width: 1.5rem;
  }
}

.indexSectionTitle_anniversary_large {
  font-size: 2.2rem;
  word-wrap: break-word;
  font-family: "Cwtexf", "Ma Shan Zheng";
  line-height: 1.3;
  color: white;
}
@media (min-width: 768px) {
  .indexSectionTitle_anniversary_large {
    font-size: 2.8rem;
    width: 2.8rem;
    margin-top: 60px;
  }
}

#newsSection {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-blend-mode: darken;
  background-color: #E0E6F2;
  height: 100%;
}
#newsSection .newsTitleBackgroundColor {
  background-color: var(--news-title-background);
  background-image: url("../images/nwcss/bg_news.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 40%;
  height: 70%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 1200px) {
  #newsSection .newsTitleBackgroundColor {
    height: 350px;
  }
}
@media (min-width: 1400px) {
  #newsSection .newsTitleBackgroundColor {
    height: 420px;
  }
}
#newsSection .news-records-container {
  background: white;
}
#newsSection .news-records-container .newsDate {
  color: #B0B0B0;
  font-size: 0.8rem;
}
#newsSection .news-records-container .newsTitle {
  color: var(--news-content-title);
  font-weight: bold;
  transition: 0.3s ease-in-out;
}
#newsSection .news-records-container .newsTitle:hover {
  transform: translateX(20px);
}
#newsSection .news-records-container .news-record {
  border-bottom: 1px solid #DDDDDD;
}

.albumTitleBackgroundColor {
  background-color: var(--album-title-background);
  background-image: url("../images/nwcss/bg_album.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 65%;
  height: 80%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 1200px) {
  .albumTitleBackgroundColor {
    height: 350px;
  }
}
@media (min-width: 1400px) {
  .albumTitleBackgroundColor {
    height: 420px;
  }
}

@media (min-width: 768px) {
  #albumSection .indexSectionTitle {
    width: 2.2rem;
  }
}

#albumSection .albumImage {
  padding-top: 70%;
  background-size: cover;
  background-position: center;
  transition: 0.3s ease-in-out;
}
#albumSection .albumTitleBG {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  font-weight: 800;
  background: linear-gradient(rgba(1, 16, 35, 0) 0%, rgba(1, 16, 35, 0) 40%, #120E2E 100%);
  transition: all 1s ease;
  text-align: center;
  transition: 0.5s ease-in-out;
  height: 80%;
}
#albumSection .albumTitleBG .albumTitle {
  color: #eaecef;
}
#albumSection .albumSectionSliderItem {
  overflow: hidden;
}
@media (min-width: 1600px) {
  #albumSection .albumSectionSliderItem.col-xl-6 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
#albumSection .albumSectionSliderItem:hover .albumImage {
  transform: scale(1.1);
}
#albumSection .albumSectionSliderItem:hover .albumTitleBG {
  height: 100%;
  background: linear-gradient(rgba(1, 16, 35, 0) 0%, rgba(1, 16, 35, 0.66) 70%, #120E2E 100%);
  align-items: center !important;
}
#albumSection .albumSectionSliderItem:hover .albumTitleBG .albumTitle {
  font-size: 1.2rem;
}

.achievementsAlumniDecoBackgroundColor {
  background-color: #BCABA3;
  width: 100%;
  height: 30%;
  bottom: 0;
  left: 0;
  z-index: -1;
}

#achievementSection {
  background-image: url("../images/nwcss/achievementsBgImage.png");
  background-blend-mode: normal;
  background-color: rgba(97, 12, 24, 0.88);
}
#achievementSection .achievementSliderItem {
  text-align: center;
}
#achievementSection .achievementSliderItemImage {
  width: 100%;
}
#achievementSection .achievementSliderItemImage {
  overflow: hidden;
}
#achievementSection .albumImage {
  padding-top: 75%;
  background-size: cover;
  background-position: center;
  transition: 0.3s ease-in-out;
}
#achievementSection .albumTitleBG {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  font-weight: 800;
  background: linear-gradient(rgba(1, 16, 35, 0) 0%, rgba(1, 16, 35, 0) 40%, #120E2E 100%);
  transition: all 1s ease;
  text-align: center;
  transition: 0.5s ease-in-out;
  height: 50%;
}
#achievementSection .albumTitleBG .albumTitle {
  color: white;
  font-size: 1.2rem;
}
#achievementSection .achievementSliderItem:hover .albumImage {
  transform: scale(1.1);
}
#achievementSection .achievementSliderItem:hover .albumTitleBG {
  height: 100%;
  background: linear-gradient(rgba(1, 16, 35, 0) 0%, rgba(1, 16, 35, 0.66) 70%, #120E2E 100%);
}
#achievementSection .achievementSliderItem:hover .albumTitleBG .albumTitle {
  font-size: 1.3rem;
}
#achievementSection .achievementSliderItem_title {
  font-size: 1.3rem;
  padding-bottom: 1rem;
  color: white;
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  font-weight: 800;
  background: linear-gradient(rgba(1, 16, 35, 0) 0%, rgba(1, 16, 35, 0) 40%, #120E2E 100%);
  transition: all 1s ease;
  text-align: center;
}

#alumniSection {
  background-image: url("../images/nwcss/alumniBgImage.png");
  background-blend-mode: normal;
  background-color: #82665C;
}
#alumniSection .alumniSliderItem {
  text-align: center;
}
#alumniSection .alumniSliderItemImage {
  width: 100%;
}
#alumniSection .alumniSliderItemImage {
  overflow: hidden;
}
#alumniSection .albumImage {
  background-size: cover;
  background-position: center;
  transition: 0.3s ease-in-out;
  height: 100%;
}
#alumniSection .albumTitleBG {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  font-weight: 800;
  background: linear-gradient(rgba(1, 16, 35, 0) 0%, rgba(1, 16, 35, 0) 40%, #120E2E 100%);
  transition: all 1s ease;
  text-align: center;
  transition: 0.5s ease-in-out;
  height: 50%;
}
#alumniSection .albumTitleBG .albumTitle {
  color: white;
  font-size: 1.2rem;
}
#alumniSection .alumniSliderItem:hover .albumImage {
  transform: scale(1.1);
}
#alumniSection .alumniSliderItem:hover .albumTitleBG {
  height: 100%;
  background: linear-gradient(rgba(1, 16, 35, 0) 0%, rgba(1, 16, 35, 0.66) 70%, #120E2E 100%);
}
#alumniSection .alumniSliderItem:hover .albumTitleBG .albumTitle {
  font-size: 1.3rem;
}
#alumniSection .alumniSliderItem_title {
  font-size: 1.3rem;
  padding-bottom: 1rem;
  color: white;
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  font-weight: 800;
  background: linear-gradient(rgba(1, 16, 35, 0) 0%, rgba(1, 16, 35, 0) 40%, #120E2E 100%);
  transition: all 1s ease;
  text-align: center;
}

.mediaDecoBackgroundColor {
  background-color: #CEC7B9;
  width: 100%;
  height: 30%;
  bottom: 0;
  left: 0;
  z-index: -1;
}

#mediaSection {
  background-image: url("../images/nwcss/mediaBGImage.png");
  background-size: cover;
  background-position: top center;
  background-color: var(--theme-media-bg);
}
#mediaSection .mediaSliderItem {
  text-align: center;
}
#mediaSection .mediaSliderItemImage {
  background-color: white;
  padding: 1rem;
  width: 100%;
  height: 350px;
}
@media (min-width: 960px) {
  #mediaSection .mediaSliderItemImage {
    height: 530px;
  }
}
#mediaSection .mediaSliderItemImage {
  overflow: hidden;
}
#mediaSection .facebookContainer {
  background: rgba(0, 0, 0, 0.75);
  height: 100%;
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem;
  max-height: 350px;
  min-height: 350px;
}
@media (min-width: 960px) {
  #mediaSection .facebookContainer {
    max-height: 530px;
  }
}
#mediaSection .albumImage {
  height: 80%;
  background-size: cover;
  background-position: center;
  transition: 0.3s ease-in-out;
}
#mediaSection .mediaDescription {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 20%;
}
#mediaSection .mediaTitleOrigin {
  font-size: 1.1rem;
  color: #9A662B;
  font-weight: bold;
}
#mediaSection .mediaTitle {
  font-size: 1.2rem;
  color: black;
  font-weight: bold;
}
#mediaSection .mediaSliderItem:hover .albumImage {
  transform: scale(1.02);
}
#mediaSection .mediaSliderItem:hover .albumTitleBG {
  height: 100%;
  background: linear-gradient(rgba(1, 16, 35, 0) 0%, rgba(1, 16, 35, 0.66) 70%, #120E2E 100%);
}
#mediaSection .mediaSliderItem:hover .albumTitleBG .albumTitle {
  font-size: 1.3rem;
}
#mediaSection .mediaSliderItem_title {
  font-size: 1.3rem;
  padding-bottom: 1rem;
  color: white;
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  font-weight: 800;
  background: linear-gradient(rgba(1, 16, 35, 0) 0%, rgba(1, 16, 35, 0) 40%, #120E2E 100%);
  transition: all 1s ease;
  text-align: center;
}

.achievementsAlumniDecoBackgroundColor {
  background-color: #BCABA3;
  width: 100%;
  height: 30%;
  bottom: 0;
  left: 0;
  z-index: -1;
}

#anniversarySection {
  background-image: url("../images/nwcss/bg_anniversary.png");
  background-color: #365890;
  background-blend-mode: soft-light;
  background-position: center;
  background-size: cover;
}
#anniversarySection .anniversary-line {
  position: absolute;
  left: 50px;
  right: 30px;
  top: 14px;
  height: 2px;
  background-color: #A8843C;
}
#anniversarySection .anniversarySliderItem {
  text-align: center;
  padding-top: 65px;
  position: relative;
}
#anniversarySection .anniversarySliderItem .year-indicator {
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -14px;
  height: 28px;
  width: 28px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
#anniversarySection .anniversarySliderItem .year-indicator.orange {
  background-color: #D89228;
}
#anniversarySection .anniversarySliderItem .year-indicator.red {
  background-color: #A33B3F;
}
#anniversarySection .anniversarySliderItemImage {
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  transition: 0.3s ease-in-out;
}
#anniversarySection .anniversarySliderItemImage:hover {
  transform: scale(1.03);
}
#anniversarySection .anniversaryYear {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1;
}
#anniversarySection .anniversaryYear.replaceTitle {
  left: 1rem;
}
#anniversarySection .anniversaryYear .year {
  clip-path: polygon(23% 0%, 100% 0%, 77% 100%, 0% 100%);
  color: white;
  padding: 5px 28px;
  font-size: 2rem;
  position: relative;
  z-index: 1;
  height: 60px;
  display: flex;
  align-items: center;
  margin-top: -30px;
  font-weight: bold;
}
#anniversarySection .anniversaryYear .year.replaceTitle {
  clip-path: polygon(11% 0%, 100% 0%, 89% 100%, 0% 100%);
  font-size: 1.3rem;
  padding: 5px 38px;
  width: 240px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
#anniversarySection .anniversaryYear .year.orange {
  background-color: #D89228;
}
#anniversarySection .anniversaryYear .year.red {
  background-color: #A33B3F;
}
#anniversarySection .anniversaryYear .anniversary {
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  color: white;
  padding: 10px 25px;
  margin-left: -35px;
  margin-top: -5px;
  position: relative;
  z-index: 0;
  height: 45px;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
}
#anniversarySection .anniversaryYear .anniversary.replaceTitle {
  clip-path: polygon(33% 0%, 100% 0%, 63% 100%, 0% 100%);
  width: 50px;
  margin-left: -40px;
}
#anniversarySection .anniversaryYear .anniversary.replaceTitle.left {
  margin-right: -29px;
}
#anniversarySection .anniversaryYear .anniversary.orange {
  background-color: #775615;
}
#anniversarySection .anniversaryYear .anniversary.red {
  background-color: #600D10;
}
#anniversarySection .albumImage {
  padding-top: 75%;
  background-size: cover;
  background-position: center;
  transition: 0.3s ease-in-out;
}

.indexReadMore {
  color: white !important;
  width: 150px;
  margin-right: 0;
  font-size: 0.9rem;
}
.indexReadMore a {
  color: white;
}
.indexReadMore img {
  max-height: 18px;
}
@media (min-width: 768px) {
  .indexReadMore {
    width: 100%;
    max-width: 150px;
    padding: 0.5rem !important;
  }
}
@media (min-width: 1400px) {
  .indexReadMore {
    padding: unset;
  }
}

#footer-desktop {
  display: flex;
  background-color: var(--theme-deep-blue);
  color: white;
  position: relative;
}
#footer-desktop a {
  color: white;
}
#footer-desktop a:hover {
  opacity: 80%;
}
#footer-desktop .footer_info_section {
  padding: 60px 5% 20px 5%;
  color: white;
  font-size: 0.9rem;
  width: 85%;
  background-image: url("../images/footerBG.png");
  background-size: cover;
  background-repeat: no-repeat;
}
#footer-desktop .footer_info_section .footer_image img {
  width: 100%;
  height: auto;
  max-width: 25vw;
}
#footer-desktop .footer_info_section .footer_schoolInfo {
  margin-bottom: 40px;
}
#footer-desktop .footer_info_section .footer_schoolInfo img {
  width: 15px;
  height: auto;
  margin-right: 10px;
}
#footer-desktop .footer_info_section .footer_schoolInfo div {
  margin: 5px 0;
}
#footer-desktop .footer_info_section .footer_schoolInfo .footer_info_details {
  display: flex;
  align-items: center;
}
#footer-desktop .footer_school_photo_section {
  position: absolute;
  right: 0;
  height: 100%;
  top: 0;
}
#footer-desktop .footer_school_photo_section img {
  width: auto;
  height: 100%;
}

#videoSection {
  overflow: hidden;
  position: relative;
}
#videoSection .videoSectionBG {
  background-color: black;
}
@media (min-width: 576px) {
  #videoSection .videoSectionBG {
    background-size: cover;
    background-position: center;
  }
}
#videoSection .moreVideoBtn {
  background: var(--theme-deep-blue);
  padding: 0.5rem 1rem;
  transition: 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  #videoSection .moreVideoBtn {
    padding: 0.3rem 1rem;
    position: absolute;
    right: 15px;
    bottom: 15px;
    border: 1px solid white;
    background: unset;
  }
}
#videoSection .moreVideoBtn a {
  color: white;
}
#videoSection .moreVideoBtn a svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}
#videoSection .moreVideoBtn:hover {
  transform: scale(1.1);
}
#videoSection .videoSlider {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
#videoSection .videoSlider .videoSliderItem {
  height: 350px;
}
@media (min-width: 576px) {
  #videoSection .videoSlider .videoSliderItem {
    height: 450px;
  }
}
#videoSection .videoSlider .slick-prev {
  left: -60px;
}
#videoSection .videoSlider .slick-prev:before {
  content: "<";
  color: white;
  font-size: 3rem;
  font-family: cursive;
  font-weight: 1000;
}
#videoSection .videoSlider .slick-next {
  right: -40px;
}
#videoSection .videoSlider .slick-next:before {
  content: ">";
  color: white;
  font-size: 3rem;
  font-family: cursive;
  font-weight: 1000;
}

#footer {
  background: var(--footer-bg);
}
#footer .footer_schoolName {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--theme-menu-main);
}
#footer .footer_schoolName_en {
  color: var(--theme-menu-main);
}
#footer .footer_schoolInfo {
  font-size: 0.8rem;
  color: #573F37;
}
#footer .copyright {
  font-size: 0.7rem;
  background: var(--footer-copyrightBG);
  color: white;
}
#footer .copyright a {
  color: white;
}

.page-content h3 {
  font-size: 1.3rem;
}

.themedBreadcrumbBar {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 2rem 0 1rem;
  text-align: right;
  color: var(--theme-secondary);
}
.themedBreadcrumbBar a {
  color: var(--theme-secondary);
}

.breadcrumbs {
  position: relative;
}

.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 {
  font-weight: bold;
  border: 2px solid #e3a48d;
  background-size: 200% 100%;
  background-position: left bottom;
  transition: all 1s ease;
  padding: 0.5rem;
  text-align: center;
  background: white;
  color: #e3a48d;
}
.pageGroupButton.active {
  background: #e3a48d;
  background-size: 200% 100%;
  color: white;
}
.pageGroupButton.active:hover {
  background: #e3a48d;
}
.pageGroupButton:not(.active):hover {
  background: #e3a48d;
  color: white;
}

.mfp-arrow {
  background: transparent;
}

.media-news-item {
  transition: 0.3s ease-in-out;
}
.media-news-item .media-origin {
  font-size: 1.2rem;
}
.media-news-item .media-date {
  margin-top: 1rem;
  color: black;
}
@media (min-width: 768px) {
  .media-news-item .themedButton {
    max-width: 150px;
  }
}
.media-news-item .media-title {
  color: var(--media-font);
  font-size: 1.4rem;
  font-weight: bold;
}
.media-news-item:hover {
  opacity: 0.8;
}

.album_title_flex {
  flex: 0 0 30%;
}

.album_wall_flex {
  flex: 0 0 70%;
  padding: 15px;
}
@media (min-width: 768px) {
  .album_wall_flex {
    padding: unset;
  }
}

@media (min-width: 768px) {
  .album_title_flex {
    flex: 0 0 20%;
  }
  .album_wall_flex {
    flex: 1 0 30%;
  }
}
@media (min-width: 960px) {
  .newsSectionSizeAdjust {
    max-width: 450px;
    flex: 0 0 450px;
  }
  .newsSectionSizeAdjust .news-records-container {
    overflow-y: auto;
    scrollbar-color: #404c79 #d0d6e2;
    scrollbar-width: thin;
  }
  .albumSectionSizeAdjust {
    max-width: calc(100vw - 400px);
    flex: 1 0 308px;
  }
  .album_title_flex {
    flex: 0 0 14%;
  }
  .media_title_flex {
    flex: 0 0 20%;
    max-width: 19%;
  }
}
@media (min-width: 1400px) {
  .album_title_flex {
    flex: 0 0 13%;
  }
  .newsSectionSizeAdjust {
    max-width: 500px;
    flex: 0 0 500px;
  }
  .albumSectionSizeAdjust {
    max-width: calc(100vw - 500px);
    flex: 1 0 498px;
  }
}
@media (min-width: 1600px) {
  .newsSectionSizeAdjust {
    max-width: 600px;
    flex: 0 0 600px;
  }
  .albumSectionSizeAdjust {
    max-width: calc(100vw - 600px);
    flex: 1 0 598px;
  }
}

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