:root {
  --theme-main: #7EDCFF;
  --theme-secondary: #fd9228;
  --theme-tertiary: #00A2F7;
  --theme-forth: #B12535;
  --theme-fifth: #70C4E3;
  --clipPath-sliderPhoto: polygon(0% 10%, 7% 0%, 100% 1%, 100% 90%, 93% 100%, 0% 100%);
  --theme-transparent: rgba(255, 255, 255, 0);
  --theme-deep-blue: #00A2F7;
  --theme-grey-blue: #70C4E3;
  --theme-blue: #225080;
  --theme-red: #B12535;
  --theme-light-blue: #59B6E0;
  --font-blue: #07012e;
  --theme-menu-highlighted: #FFA44A;
  --yearButton: #00A2F7 ;
  --yearButton-hover: #7EDCFF;
}

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: "gelasio";
  font-weight: 600;
  src: url("../fonts/Gelasio-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "NotoSerif";
  font-weight: 600;
  src: url("../fonts/NotoSerifTC-VariableFont_wght.ttf") format("truetype");
}
@media (min-width: 576px) {
  .container {
    max-width: unset;
    width: 90%;
  }
}

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

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

@media (min-width: 768px) {
  :root {
    --left-side-width: 15rem;
  }
}

.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%;
  }
}

.not-allow-rightClick-container, .album-image {
  -webkit-user-select: none !important; /* disable selection/Copy of UIWebView */
  -webkit-touch-callout: none !important; /* disable the IOS popup when long-press on a link */
}

a:hover {
  cursor: pointer;
}

.index-title-circle {
  font-size: 1.3rem;
  font-weight: bold;
}
@media (min-width: 576px) {
  .index-title-circle {
    font-size: 1.7rem;
  }
}
@media (min-width: 768px) {
  .index-title-circle {
    font-size: 1.8rem;
  }
}
@media (min-width: 960px) {
  .index-title-circle {
    font-size: 2rem;
  }
}

.index-title-underline {
  font-size: 1.4rem;
  font-weight: bold;
}
@media (min-width: 576px) {
  .index-title-underline {
    font-size: 1.7rem;
  }
}
@media (min-width: 768px) {
  .index-title-underline {
    font-size: 1.8rem;
  }
}
@media (min-width: 960px) {
  .index-title-underline {
    font-size: 2rem;
  }
}

.index-title-circle {
  width: 26vw;
  height: 26vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 2;
  border-radius: 50%;
  padding: 7vw;
  text-align: center;
  line-height: 1.2;
  transform: translate(-50%, -50%);
}
@media (min-width: 576px) {
  .index-title-circle {
    padding: 8vw;
  }
}
@media (min-width: 768px) {
  .index-title-circle {
    padding: 10px;
    width: 168px;
    height: 168px;
  }
}
@media (min-width: 960px) {
  .index-title-circle {
    width: 200px;
    height: 200px;
    padding: 0.5rem 2.8rem;
  }
}
@media (min-width: 1200px) {
  .index-title-circle {
    padding: 0.5rem 2.2rem;
  }
}
@media (min-width: 1400px) {
  .index-title-circle {
    padding: 0.5rem 2rem;
  }
}

.index-title-underline, .index-title-underline:hover {
  text-decoration: underline;
  text-underline-offset: 0.6rem;
  text-decoration-thickness: 2px;
}

.themed-slider {
  z-index: 2;
}
.themed-slider .slick-track {
  display: flex !important;
}
.themed-slider .slick-slide {
  height: inherit !important;
}
.themed-slider .themedSlider-item {
  display: flex !important;
  flex-direction: column;
  position: relative;
  transition: 0.3s ease-in-out;
}
.themed-slider .themedSlider-item:hover {
  transform: scale(1.05);
}
.themed-slider .themedSlider-item__image {
  aspect-ratio: 1.7777777778;
  background-size: cover;
  clip-path: var(--clipPath-sliderPhoto);
  border: 2px solid var(--theme-main);
}
.themed-slider .themedSlider-item__content {
  flex: 1;
  background-color: white;
  padding: 35px 20px 30px 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: -20px;
}
.themed-slider .themedSlider-item__content__date {
  color: var(--theme-light-blue);
  text-decoration: underline;
  text-underline-offset: 5px;
  font-size: 0.8rem;
}
.themed-slider .themedSlider-item__content__title {
  font-weight: bold;
  color: black;
}
.themed-slider .themedSlider-item:after {
  content: "";
  height: 5px;
  background-color: var(--theme-secondary);
  margin-top: 8px;
  width: 50%;
}

.next {
  transform: scaleX(-1);
}

.prev.desktop, .next.desktop {
  position: absolute;
  top: 50%;
}

.prev.desktop {
  left: 0;
  transform: translate(-100%, -100%);
}

.next.desktop {
  right: 0;
  transform: scaleX(-1) translate(-100%, -100%);
}

.themed-slider-arrows-bar-mobile {
  display: flex;
  width: 93%;
  justify-content: space-between;
  z-index: 2;
  position: relative;
}
.themed-slider-arrows-bar-mobile .prev, .themed-slider-arrows-bar-mobile .next {
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.themed-slider-arrows-bar-mobile .prev svg, .themed-slider-arrows-bar-mobile .next svg {
  width: 100%;
  height: auto;
  fill: white;
  transition: 0.3s ease-in-out;
}
.themed-slider-arrows-bar-mobile .prev:hover, .themed-slider-arrows-bar-mobile .next:hover {
  opacity: 0.8;
}
.themed-slider-arrows-bar-mobile .prev:hover svg, .themed-slider-arrows-bar-mobile .next:hover svg {
  fill: var(--theme-secondary);
}
.themed-slider-arrows-bar-mobile .next {
  transform: scaleX(-1);
}

#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: transparent;
  display: flex;
  padding: 0 1rem;
  align-items: center;
  justify-content: center;
}
#desktop-menu a {
  color: white;
}
#desktop-menu .category-item {
  color: #707070;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 0;
}
#desktop-menu .category-item > img {
  max-height: 70px;
  display: block;
}
#desktop-menu .category-item .category-item-label {
  padding: 0 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1.1rem;
  color: var(--theme-grey);
  font-weight: normal;
}

.school-badge img {
  transition: 0.3s ease-in-out;
  height: 140px;
}
.school-badge img:hover {
  transform: scale(1.05);
}

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

.theme-more-btn {
  clip-path: polygon(0% 15%, 10% 0%, 100% 0%, 100% 85%, 90% 100%, 0% 100%);
  padding: 0.3rem 1.3rem;
  transition: 0.3s ease-in-out;
}

.themed-more-btn-desktop {
  right: 0;
  top: 15px;
  font-size: 1rem;
}

#mainmenu {
  flex: 1;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#mainmenu > ul {
  align-items: center;
  justify-content: end;
  margin: 0;
}
#mainmenu > ul.left-menu > li:nth-last-child(-n+3) > .sub-menu {
  left: unset;
  right: unset;
}
#mainmenu > ul.left-menu > li:nth-last-child(-n+3) > .sub-menu .sub-menu {
  left: unset;
  right: unset;
}
#mainmenu .main-menu {
  flex: 1 1 0;
  cursor: default;
}
#mainmenu .menu-item-category {
  line-height: 1.25;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 150px;
}
#mainmenu .menu-item-category .category-item {
  position: relative;
}
#mainmenu .menu-item-category .category-item > img, #mainmenu .menu-item-category .category-item > span {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
#mainmenu .menu-item-category:hover {
  color: #00679d;
  transition: color 0.2s;
}
#mainmenu .menu-item-category:hover > a {
  color: #00679d;
}
#mainmenu .menu-item-category:hover .category-item > img, #mainmenu .menu-item-category:hover .category-item > span {
  transform: scale(1.08);
}
#mainmenu .menu-item-category:hover:not(:has(.sub-menu)):after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  content: "";
  width: 100%;
  background-color: #FFF;
  z-index: 99;
}
#mainmenu .menu-item-category:hover:has(.sub-menu):before {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent; /* Adjust size as needed */
  border-right: 10px solid transparent; /* Adjust size as needed */
  border-bottom: 10px solid #FFF; /* Color and size of the arrow head */
  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 {
  text-decoration: none;
  color: white;
  text-align: center;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  transition: 0.2s;
  font-size: var(--font-title-size);
}
@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;
  justify-content: space-between;
  background: white;
  padding: 10px;
  width: 100%;
}
#header_mobile:before {
  position: absolute;
  content: "";
  height: 7px;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--theme-main);
}
#header_mobile:after {
  position: absolute;
  content: "";
  height: 7px;
  bottom: 0;
  left: 20%;
  width: 40%;
  z-index: 2;
  background-color: var(--theme-secondary);
}

#header_sclNameAndLangBtn {
  display: flex;
  padding: 10px;
  align-items: center;
  text-align: center;
  justify-content: 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 0;
    background-color: rgba(22, 24, 51, 0.65);
  }
  #header_sclNameAndLangBtn.SmallTopBar {
    background: linear-gradient(173deg, #160C5B 0%, #211377 100%);
    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;
    max-width: 30%;
  }
  #header_sclNameAndLangBtn.SmallTopBar #lang-btn {
    margin-top: -7px;
  }
}

.main-item-category {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
}

.desktop-menu {
  z-index: 50;
  display: none;
  flex-direction: row;
  justify-content: space-between;
  padding: 15px 2rem;
  transition: all 0.5s linear;
  position: sticky;
  max-height: 170px;
  width: 100%;
  background: white;
  top: 0;
}
.desktop-menu.small {
  max-height: 120px;
  padding: 10px 2rem;
}
.desktop-menu.small:before, .desktop-menu.small:after {
  height: 10px;
}
.desktop-menu.small .header-content img {
  max-height: 25px;
}
.desktop-menu:before {
  position: absolute;
  content: "";
  height: 15px;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--theme-main);
}
.desktop-menu:after {
  position: absolute;
  content: "";
  height: 15px;
  bottom: 0;
  left: 20%;
  width: 40%;
  z-index: 2;
  background-color: var(--theme-secondary);
}
@media (min-width: 1200px) {
  .desktop-menu {
    display: flex;
  }
}
.desktop-menu .header-content {
  padding-right: 30px;
}
.desktop-menu .header-column {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
}
.desktop-menu .logo-link {
  flex: 1 1 20%;
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.desktop-menu .logo-link img {
  max-width: 465px;
  max-height: 100%;
}
.desktop-menu .logo-link:hover {
  opacity: 0.8;
}

@keyframes slideDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes logoShrink {
  0% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.main-slider .index-slider-image, .main-slider .inner-slider-image {
  background-position: center;
  background-size: cover;
}
.main-slider .index-slider-image {
  aspect-ratio: 400/450;
}
@media (min-width: 768px) {
  .main-slider .index-slider-image {
    aspect-ratio: 1920/735;
  }
}
.main-slider .inner-slider-image {
  padding-top: 25%;
}

.bottom-slider {
  border-bottom: 0.5rem solid #92a79e;
}
.bottom-slider .image {
  aspect-ratio: 16/9;
}

@media (min-width: 1200px) {
  .main-slider, .bottom-slider {
    margin-top: 0;
  }
}
.main-slider .image, .bottom-slider .image {
  position: relative;
  background-size: cover;
  background-position: center;
}
.main-slider.slick-dotted.slick-slider, .bottom-slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.main-slider .slick-dots li button:before, .bottom-slider .slick-dots li button:before {
  font-size: 0.7rem;
}
.main-slider .slick-dots, .bottom-slider .slick-dots {
  bottom: 2%;
  text-align: center;
  width: 100%;
}
.main-slider .slick-dots li.slick-active button:before, .bottom-slider .slick-dots li.slick-active button:before {
  color: #ffe17c;
}
.main-slider .banner-info, .bottom-slider .banner-info {
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 100%;
  font-weight: 800;
  transition: all 1s ease;
}
@media (min-width: 768px) {
  .main-slider .banner-info, .bottom-slider .banner-info {
    max-width: 500px;
    left: 10%;
  }
}
.main-slider .banner-info .banner-title, .bottom-slider .banner-info .banner-title {
  color: white;
  padding: 2.5% 4.5%;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  position: relative;
}
.main-slider .banner-info .banner-title:before, .bottom-slider .banner-info .banner-title:before {
  content: "";
  position: absolute;
  background: var(--theme-secondary);
  opacity: 0.8;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  .main-slider .banner-info .banner-title, .bottom-slider .banner-info .banner-title {
    font-size: 2rem;
    padding: 2.5% 4.5% 5.5%;
  }
}
.main-slider .banner-info .banner-description, .bottom-slider .banner-info .banner-description {
  color: white;
  font-size: 1.5rem;
  padding: 0% 3%;
  text-shadow: #140d3f 1px 1px 3px;
  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;
  letter-spacing: 0.2rem;
}

.decoration-page-background, .page-background {
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .decoration-page-background .container, .page-background .container {
    position: relative;
  }
}

.page-title {
  color: #123041;
  font-weight: 700;
  font-size: 1.8rem;
  position: relative;
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid grey;
}
.page-title > span {
  padding: 0 1rem 0.5rem 0;
}
@media (min-width: 768px) {
  .page-title > span {
    padding: 0 1rem 0.5rem;
  }
}

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

.themedBreadcrumbBar {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  text-align: right;
  color: #707070;
}
.themedBreadcrumbBar a {
  color: var(--theme-purple);
}

.breadcrumbs {
  opacity: 0.95;
}

.breadcrumbs {
  position: relative;
}

.page-content-container {
  background: rgba(126, 220, 255, 0.25);
  background-size: 180%;
  background-position-x: -500px;
  background-position-y: -580px;
  background-repeat: no-repeat;
  padding: 2rem 0;
  position: relative;
  min-height: 600px;
  overflow: hidden;
}
.page-content-container:before {
  position: absolute;
  left: 20%;
  top: 0;
  width: 92%;
  height: 122%;
  transform: rotate(-55deg) translate(-9%, -24%);
  content: "";
  background-color: rgba(255, 255, 255, 0.4);
}
.page-content-container .album-date {
  color: var(--theme-dark-green);
}

.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;
}

.pageSectionTitle {
  margin-top: 1rem;
  color: var(--theme-purple);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: white;
  padding: 0.5rem 4rem 0.5rem 1rem;
  display: inline-block;
  transform-style: preserve-3d;
  border: 1px var(--theme-purple) solid;
}

.pageSectionTitle::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ec97ec;
  bottom: -5px;
  right: -5px;
  transform: translateZ(-1px) rotate(1deg);
}

.pageSectionTitle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #933993;
  top: -5px;
  left: -5px;
  transform: translateZ(-1px) rotate(1deg);
}

.pageGroupButton {
  font-weight: bold;
  background-size: 200% 100%;
  color: white;
  transition: all 1s ease;
  padding: 0.5rem;
  text-align: center;
  flex: 1;
}

.pageGroupButton:hover {
  color: white;
}

.pageGroupButton.buttonActive {
  background: var(--theme-purple);
}

.mfp-arrow {
  background: transparent;
}

.mobile-school-badge {
  flex: 1;
  justify-content: start;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #FFF;
  font-size: var(--font-title-size);
}

.btn {
  border-radius: 20px;
  padding: 0.5rem 2rem;
}

.btn-success, btn-info {
  border-color: unset;
  background-color: white;
  color: var(--theme-dark-green);
  box-shadow: unset;
}

.btn-success:hover, .btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active, .show > .btn-success.dropdown-toggle {
  background-color: var(--theme-secondary);
  color: white;
  box-shadow: unset;
  border-color: unset;
}

.photoAlbums_item {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .photoAlbums_item {
    margin-right: 2rem;
  }
}
.photoAlbums_item_date {
  padding: 0.3rem 1rem;
  font-size: 0.77rem;
  z-index: 1;
  background-color: var(--theme-main);
  color: var(--theme-tertiary);
  display: inline-block;
}
.photoAlbums_item_title {
  color: black;
  font-size: 1.2rem;
  padding: 0.5rem;
  font-weight: bold;
}

.list-view .pager {
  text-align: center;
}
.list-view .pager > ul > li.selected > a {
  background-color: var(--theme-light-blue);
  color: #FFF;
}
.list-view .pager > ul > li > a {
  font-size: 0.68rem;
  padding: 0.2rem 0.5rem;
  border: solid 1px var(--theme-light-blue);
  color: var(--theme-light-blue);
}
.list-view .pager > ul > li > a:hover {
  background-color: var(--theme-light-blue);
  color: #FFF;
}

.video_item {
  padding: 1rem;
  background-repeat: repeat;
  background-size: 120%;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  flex-basis: 100%;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .video_item {
    margin-right: 1rem;
    flex-basis: calc(50% - 1rem);
  }
}
.video_item_date {
  padding: 0.3rem 1rem;
  font-size: 0.77rem;
  color: var(--theme-main);
  font-weight: bold;
  text-decoration: underline;
  text-underline: var(--theme-main);
  text-underline-offset: 5px;
}
.video_item .video-label {
  font-size: 1rem;
  text-align: center;
  padding: 0.5rem 1rem;
}

.feature-button-container {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  border-top: 5px solid var(--theme-main);
}
@media (min-width: 768px) {
  .feature-button-container {
    border-top: unset;
  }
}
.feature-button-container .linkButton {
  transition: 0.3s ease-in-out;
}
.feature-button-container .linkButton__image {
  aspect-ratio: 2.6914893617;
  background-size: cover;
  background-blend-mode: multiply;
}
.feature-button-container .linkButton__title {
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  text-decoration: underline;
  text-underline-offset: 0.7rem;
  text-decoration-thickness: 2px;
  z-index: 2;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .feature-button-container .linkButton__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 960px) {
  .feature-button-container .linkButton__title {
    font-size: 1.7rem;
  }
}
.feature-button-container .linkButton__background {
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
  transition: 0.3s ease-in-out;
}
.feature-button-container .linkButton:before, .feature-button-container .linkButton:after {
  content: "";
  position: absolute;
  top: 0;
  background-size: auto 100%;
  z-index: 3;
  height: 100%;
  transition: 0.3s ease-in-out;
  opacity: 0.2;
}
@media (min-width: 768px) {
  .feature-button-container .linkButton:before, .feature-button-container .linkButton:after {
    opacity: 0.7;
  }
}
.feature-button-container .linkButton:before {
  left: 0;
  width: 40%;
  background-image: url("../images/cccss/featureButton_deco_left.png");
}
.feature-button-container .linkButton:after {
  left: 40%;
  width: 60%;
  background-image: url("../images/cccss/featureButton_deco_right.png");
}
.feature-button-container .linkButton:hover {
  transform: scale(1.04);
}
.feature-button-container .linkButton:hover .linkButton__background {
  opacity: 0.85;
}
.feature-button-container .linkButton:hover:before {
  left: 60%;
}
.feature-button-container .linkButton:hover:after {
  left: 0;
}
.feature-button-container .linkButton:nth-child(odd):hover .linkButton__title {
  text-shadow: 2px 2px 5px #515797;
  transition: 0.3s ease-in-out;
}
.feature-button-container .linkButton:nth-child(even):hover .linkButton__title {
  text-shadow: 2px 2px 5px #a65a05;
}

.news-section-container {
  display: flex;
  justify-content: flex-end;
  overflow-x: hidden;
}
.news-section-container .index-news-title {
  left: 15%;
  top: 23%;
  background: var(--theme-secondary);
}
@media (min-width: 768px) {
  .news-section-container .index-news-title {
    left: 10%;
  }
}
.news-section-container .news-slider-container {
  width: 82%;
  padding-left: 10%;
  padding-bottom: 20px;
  overflow: hidden;
  margin-right: 0;
  background: linear-gradient(180deg, white, white 25%, var(--theme-main) 25%);
}
@media (min-width: 768px) {
  .news-section-container .news-slider-container {
    width: 90%;
    padding-bottom: 70px;
  }
}
.news-section-container .news-slider-container:before {
  content: "";
  position: absolute;
  width: 25%;
  height: 30%;
  opacity: 0.6;
  top: 25%;
  left: 0;
  z-index: 1;
  background: repeating-linear-gradient(-45deg, var(--theme-main) 0%, var(--theme-main) 44%, white 44%, white 46%, var(--theme-main) 46%, var(--theme-main) 50%, white 50%, white 52%, var(--theme-main) 52%, var(--theme-main) 56%, white 56%, white 58%, var(--theme-main) 58%, var(--theme-main) 62%, white 62%, white 64%, var(--theme-main) 64%, var(--theme-main) 68%, white 68%, white 70%, var(--theme-main) 70%, var(--theme-main) 100%);
}
@media (min-width: 768px) {
  .news-section-container .news-slider-container:before {
    opacity: 1;
    width: 20%;
  }
}
.news-section-container .news-slider-container:after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 20%;
  height: 30%;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(-45deg, var(--theme-main) 0%, var(--theme-main) 20%, white 20%, white 22%, var(--theme-main) 22%, var(--theme-main) 26%, white 26%, white 28%, var(--theme-main) 28%, var(--theme-main) 32%, white 32%, white 34%, var(--theme-main) 34%, var(--theme-main) 38%, white 38%, white 40%, var(--theme-main) 40%, var(--theme-main) 100%);
}
@media (min-width: 768px) {
  .news-section-container .news-slider-container:after {
    width: 10%;
    opacity: 1;
  }
}
.news-section-container .news-slider-container .news-slider .slick-list {
  padding: 0 10% 0 0 !important;
}
.news-section-container .news-slider-container .themed-slider-arrows-bar-mobile .prev svg, .news-section-container .news-slider-container .themed-slider-arrows-bar-mobile .next svg {
  fill: white;
}
.news-section-container .news-slider-container .themed-slider-arrows-bar-mobile .prev:hover svg, .news-section-container .news-slider-container .themed-slider-arrows-bar-mobile .next:hover svg {
  fill: var(--theme-secondary);
}
.news-section-container .news-slider-container .themed-slider-arrows-bar-mobile .theme-more-btn:hover {
  background-color: var(--theme-secondary) !important;
  color: white !important;
}

.albums-section-container {
  overflow-x: hidden;
}
.albums-section-container .index-albums-title {
  color: var(--theme-tertiary);
}
.albums-section-container .album-section-background {
  background: linear-gradient(180deg, white, white 30%, #E8E8E7 30%);
}
@media (min-width: 768px) {
  .albums-section-container .album-section-background {
    background: linear-gradient(180deg, white, white 20%, #E8E8E7 20%);
  }
}
.albums-section-container .albums-slider-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .albums-section-container .albums-slider-container {
    width: 85%;
  }
}
.albums-section-container .albums-slider-container .albums-item {
  transition: 0.3s ease-in-out;
}
.albums-section-container .albums-slider-container .albums-item:hover {
  transform: scale(1.05);
}
.albums-section-container .albums-slider-container .albums-item__image_container {
  padding-right: 5%;
}
.albums-section-container .albums-slider-container .albums-item__image {
  clip-path: var(--clipPath-sliderPhoto);
  aspect-ratio: 1.7777777778;
  background-size: cover;
}
.albums-section-container .albums-slider-container .albums-item__content {
  background-color: var(--theme-secondary);
  color: white;
  width: 90%;
  margin-right: 0;
  margin-left: auto;
  font-weight: bold;
  padding: 0.7rem 1rem 0.7rem 2.2rem;
}
@media (min-width: 768px) {
  .albums-section-container .albums-slider-container .albums-item__content {
    padding: 0.7rem 1rem 1rem 2.5rem;
  }
}
.albums-section-container .albums-slider-container .albums-item__content__date {
  right: 0;
  top: 5px;
  background: var(--theme-main);
  color: var(--theme-tertiary);
  transform: translateY(-100%);
  font-size: 0.8rem;
  padding: 0.3rem 2rem;
}
.albums-section-container .albums-slider-container .albums-item__content__deco {
  left: 0;
  top: 0;
  width: 40%;
  content: "";
  z-index: 1;
  height: 100%;
  transform: translateX(-65%);
  background: linear-gradient(-45deg, var(--theme-transparent) 0%, var(--theme-transparent) 29%, var(--theme-main) 29%, var(--theme-main) 30%, var(--theme-transparent) 30%, var(--theme-transparent) 34%, var(--theme-main) 34%, var(--theme-main) 35%, var(--theme-transparent) 35%, var(--theme-transparent) 39%, var(--theme-main) 39%, var(--theme-main) 40%, var(--theme-transparent) 40%, var(--theme-transparent) 44%, var(--theme-main) 44%, var(--theme-main) 45%, var(--theme-transparent) 45%, var(--theme-transparent) 49%, var(--theme-main) 49%, var(--theme-main) 50%, var(--theme-transparent) 50%, var(--theme-transparent) 100%);
  opacity: 0.8;
}
.albums-section-container .albums-slider-container .themed-slider-arrows-bar-mobile {
  margin-right: 0;
  margin-left: auto;
}
.albums-section-container .albums-slider-container .prev, .albums-section-container .albums-slider-container .next {
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.albums-section-container .albums-slider-container .prev svg, .albums-section-container .albums-slider-container .next svg {
  width: 100%;
  height: auto;
  fill: black;
  transition: 0.3s ease-in-out;
}
.albums-section-container .albums-slider-container .prev:hover, .albums-section-container .albums-slider-container .next:hover {
  opacity: 0.8;
}
.albums-section-container .albums-slider-container .prev:hover svg, .albums-section-container .albums-slider-container .next:hover svg {
  fill: var(--theme-secondary);
}
.albums-section-container .theme-more-btn:hover, .albums-section-container .themed-more-btn-desktop:hover {
  background-color: var(--theme-main) !important;
}

.achievement-section-container {
  overflow-x: hidden;
  background: linear-gradient(180deg, white, white 35%, var(--theme-secondary) 35%);
}
@media (min-width: 768px) {
  .achievement-section-container {
    background: linear-gradient(180deg, white, white 45%, var(--theme-secondary) 45%);
  }
}
@media (min-width: 768px) {
  .achievement-section-container:before {
    position: absolute;
    content: "";
    background-image: url("../images/cccss/stripedLines_awardSection.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    top: 35%;
    left: 0;
    width: 20%;
    height: 50%;
    transform: scaleX(-1) scaleY(-1);
    opacity: 0.8;
  }
}

.award-section-container {
  overflow-x: hidden;
  background: linear-gradient(180deg, var(--theme-main), var(--theme-main) 55%, #E8E8E7 55%);
}
@media (min-width: 768px) {
  .award-section-container {
    background: linear-gradient(180deg, var(--theme-main), var(--theme-main) 55%, white 55%);
  }
}
@media (min-width: 768px) {
  .award-section-container:before {
    position: absolute;
    content: "";
    top: 10%;
    right: 0;
    background-image: url("../images/cccss/stripedLines_awardSection.png");
    width: 20%;
    height: 50%;
    background-repeat: no-repeat;
    background-position: right bottom;
    opacity: 0.8;
  }
}

.achievement-section-container .index-achievements-title, .award-section-container .index-achievements-title {
  color: var(--theme-forth);
}
.achievement-section-container .index-award-title, .award-section-container .index-award-title {
  color: var(--theme-tertiary);
}
.achievement-section-container .slider-container, .award-section-container .slider-container {
  margin: auto;
}
@media (min-width: 768px) {
  .achievement-section-container .slider-container, .award-section-container .slider-container {
    width: 90%;
  }
}
.achievement-section-container .themed-slider .themedSlider-item:after, .award-section-container .themed-slider .themedSlider-item:after {
  background-color: white;
}
.achievement-section-container .themed-slider .themedSlider-item__content__date, .award-section-container .themed-slider .themedSlider-item__content__date {
  color: var(--theme-forth);
}
.achievement-section-container .prev, .achievement-section-container .next, .award-section-container .prev, .award-section-container .next {
  top: unset;
  bottom: 0;
  width: 30px;
  height: 30px;
}
.achievement-section-container .prev svg, .achievement-section-container .next svg, .award-section-container .prev svg, .award-section-container .next svg {
  fill: white;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.achievement-section-container .prev:hover svg, .achievement-section-container .next:hover svg, .award-section-container .prev:hover svg, .award-section-container .next:hover svg {
  fill: var(--theme-forth);
}
.achievement-section-container .themed-slider-arrows-bar-mobile, .award-section-container .themed-slider-arrows-bar-mobile {
  width: 100%;
  margin-right: 0;
  margin-left: auto;
}
.achievement-section-container .theme-more-btn:hover, .award-section-container .theme-more-btn:hover {
  background-color: var(--theme-secondary) !important;
}

.award-section-container .prev svg, .award-section-container .next svg {
  fill: var(--theme-main);
}
.award-section-container .prev:hover svg, .award-section-container .next:hover svg {
  fill: var(--theme-tertiary);
}
.award-section-container .themed-slider .themedSlider-item__content {
  border: 2px solid var(--theme-main);
}
.award-section-container .themed-slider .themedSlider-item:after {
  background-color: var(--theme-secondary);
}
.award-section-container .theme-more-btn:hover {
  background-color: var(--theme-tertiary) !important;
  color: white !important;
}
.award-section-container .themed-slider-arrows-bar-mobile .theme-more-btn {
  background: var(--theme-main) !important;
  color: white !important;
}
.award-section-container .themed-slider-arrows-bar-mobile .theme-more-btn:hover {
  background-color: var(--theme-tertiary) !important;
  color: white !important;
}

.videos-section-container {
  background: linear-gradient(180deg, white, white 15%, var(--theme-secondary) 15%, var(--theme-secondary) 85%, white 85%, white 100%);
  overflow-x: hidden;
}
.videos-section-container .index-video-title {
  background-color: var(--theme-main);
  transform: unset;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .videos-section-container .index-video-title {
    margin-bottom: unset;
    position: absolute;
    transform: translate(-20%, 0);
  }
}
.videos-section-container .themed-more-btn {
  margin-right: 0.25rem;
  top: 0;
  right: 0;
  transform: translateY(120%);
  z-index: 2;
}
@media (min-width: 768px) {
  .videos-section-container .themed-more-btn {
    transform: unset;
  }
}
.videos-section-container .videos-content {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem;
  background: white;
  border: 2px solid var(--theme-main);
  z-index: 1;
  aspect-ratio: 1.7777777778;
}
@media (min-width: 768px) {
  .videos-section-container .videos-content {
    padding: 1.5rem;
    max-width: 500px;
  }
}
@media (min-width: 960px) {
  .videos-section-container .videos-content {
    margin-right: auto;
    max-width: 700px;
  }
}
@media (min-width: 1400px) {
  .videos-section-container .videos-content {
    max-width: 900px;
  }
}
.videos-section-container .videos-content:before, .videos-section-container .videos-content:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 70%;
  top: 15%;
  background-image: url("../images/cccss/strippedLinesBG_white.svg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  z-index: -1;
}
.videos-section-container .videos-content:before {
  transform: translateX(-50%);
  left: 0;
  background-position: left;
}
.videos-section-container .videos-content:after {
  top: 10%;
  transform: translate(50%, -60%);
  right: 0;
  background-position: right;
}
@media (min-width: 768px) {
  .videos-section-container .videos-content:after {
    display: none;
  }
}
@media (min-width: 960px) {
  .videos-section-container .videos-content:after {
    display: block;
    transform: translateX(50%);
  }
}

.mediaNews-section-container {
  position: relative;
  margin-top: 100px;
}
.mediaNews-section-container:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--theme-main);
  opacity: 0.6;
  top: 0;
  left: 0;
}
.mediaNews-section-container:after {
  position: absolute;
  content: "";
  width: 40%;
  height: 50%;
  bottom: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: bottom left;
  background-image: url("../images/cccss/strippedLinesBG_white.svg");
  z-index: 1;
}
@media (min-width: 768px) {
  .mediaNews-section-container:after {
    width: 20%;
  }
}
.mediaNews-section-container .media-content-container {
  overflow: hidden;
  position: relative;
  z-index: 2;
  transform: translateY(-35px);
}
@media (min-width: 768px) {
  .mediaNews-section-container .media-content-container {
    transform: translateY(-100px);
  }
}
.mediaNews-section-container .index-mediaNews-title {
  background-color: var(--theme-secondary);
  transform: unset;
}
.mediaNews-section-container .themed-more-btn {
  margin-bottom: 10px;
}
.mediaNews-section-container .themed-slider-arrows-bar-mobile {
  width: 100%;
}

.mediaNews-item__dateBar {
  width: 100%;
}
.mediaNews-item__date {
  font-size: 0.7rem;
  margin-right: 8px;
}
.mediaNews-item__deco {
  background-color: var(--theme-fifth);
  flex: 1 1 auto;
  height: 5px;
}
.mediaNews-item__image {
  aspect-ratio: 1.7777777778;
  background-size: cover;
  background-position: center;
}
.mediaNews-item__content {
  background-color: white;
  flex: 1 1 auto;
}
.mediaNews-item__source {
  color: var(--theme-tertiary);
}
.mediaNews-item .theme-more-btn {
  width: 100px;
  text-align: center;
}
.mediaNews-item .theme-more-btn:hover {
  opacity: 0.8;
}

.links-section-container {
  position: relative;
  overflow: hidden;
}
.links-section-container:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/cccss/linkSectionBG.jpg");
  background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.links-section-container .index-links-title {
  color: var(--theme-tertiary);
}
.links-section-container .linkButton {
  clip-path: var(--clipPath-sliderPhoto);
  color: white;
  width: 100%;
  height: 100%;
  min-height: 70px;
  transition: 0.3s ease-in-out;
}
.links-section-container .linkButton:hover {
  transform: scale(1.03);
}
.links-section-container .linkButton__icon {
  flex: 0 0 18%;
}
.links-section-container .linkButton__icon img {
  max-width: 100%;
  height: auto;
}
.links-section-container .linkButton__title {
  flex: 70%;
}

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