:root {
  --theme-main-color: #ca9b4c;
  --theme-title-color: #A78346;
  --theme-title-secondary: #326A9B;
  --theme-button-bg: #D2A55A;
  --theme-page-background: #F3F3F3;
  --theme-albums-background: #E6D8C3;
  --theme-albums-title-color: #674D4D;
  --theme-footer-bg-color: #C19242;
  --theme-innerPage-menu-color: #C19242;
  --theme-menu-main: #ce9e48;
  --theme-menu-hover: #e4ad53;
  --theme-menu-lv2-hover: #e4ad53;
  --theme-mobileMenuBar-bg: #ffedcd;
  --theme-menu-hover-font: white;
  --theme-menu-secondary-bg:#e4ad53;
  --theme-pdfType-document-bg-color: #f4efe6;
  --theme-deep-blue: #2B66B1;
  --theme-light-blue: #3774c2;
  --theme-deep-blue-title: #064698;
  --theme-deep-blue-menu-hover: #002C68;
  --theme-deep-blue-menu-bg-hover: #DEF2FB;
  --theme-deep-orange: #E5812C;
  --theme-deep-orange-soft: #f0a260;
  --theme-news-bg-blue: #F2F6FB;
}

@media (min-width: 1200px) {
  .container {
    max-width: 90%;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 85%;
  }
}

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

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

@media (min-width: 1200px) {
  .topLogoContainer {
    max-width: 90% !important;
  }
}

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

.animation-fadeIn {
  opacity: 0;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes captionSliderFadeIn {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.captionSliderFadeIn {
  animation-name: captionSliderFadeIn;
}

.slick-active .banner-info {
  animation-name: captionSliderFadeIn;
  animation-delay: 1s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 1;
}

#desktop-menu {
  background-color: var(--theme-menu-main);
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -35px;
  border-radius: 0 40px 0 40px;
  position: relative;
  z-index: 2;
  display: flex;
  padding: 0 5%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 3px #53565a7d;
}
#desktop-menu a {
  color: white;
}

#mainmenu {
  width: 100%;
}
#mainmenu > ul {
  align-items: center;
  justify-content: space-between;
  flex: 1;
}
#mainmenu .menu-item-category {
  line-height: 1.25;
}
@media (min-width: 1525px) {
  #mainmenu .menu-item-category {
    flex: unset;
  }
  #mainmenu .menu-item-category a {
    display: block;
    height: 100%;
  }
}

#lang-btn {
  display: flex;
  justify-content: center;
  margin: 0 5px;
  border-radius: 25px;
  transition: 0.2s;
  color: white;
  background-color: #A76146;
  width: 30px;
  height: 30px;
}
@media (min-width: 1200px) {
  #lang-btn {
    margin: 0 18px;
    width: 40px;
    height: 40px;
  }
  #lang-btn:hover {
    background-color: #c27659;
  }
}
#lang-btn a {
  border-radius: 50%;
  text-decoration: none;
  color: white;
}

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

#header_mobile a {
  padding: 5px;
}
#header_mobile img {
  max-width: 30px;
}

#header_sclNameAndSocialMedia {
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: flex-end;
}
@media (min-width: 1200px) {
  #header_sclNameAndSocialMedia {
    padding: 20px 0;
    justify-content: space-between;
    background-color: unset;
  }
}
#header_sclNameAndSocialMedia #header_schoolLogo {
  max-width: 50%;
}
#header_sclNameAndSocialMedia #header_socialMediaBar a {
  padding-left: 18px;
  transition: 0.3s;
}
#header_sclNameAndSocialMedia #header_socialMediaBar a img {
  transition: 0.3s;
  width: 40px;
  height: 40px;
}
#header_sclNameAndSocialMedia #header_socialMediaBar a img:hover {
  transform: scale(1.08);
}

.main-slider {
  border-bottom: 7px solid #C5A87C;
}
.main-slider .image {
  padding-top: 36.458%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-blend-mode: soft-light;
}
.main-slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.main-slider .slick-dots li button:before {
  font-size: 1.3rem;
}
.main-slider .slick-dots {
  bottom: 10%;
  text-align: right;
  width: 95%;
}
.main-slider .slick-dots li.slick-active button:before {
  color: var(--theme-menu-hover);
}
.main-slider .banner-info {
  opacity: 0;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-family: "Noto Serif", sans-serif;
  font-weight: 600;
  text-align: center;
  flex-direction: column;
}
.main-slider .banner-info .banner-title {
  color: white;
}
.main-slider .banner-info .banner-description {
  font-size: 0.8rem;
  color: white;
  text-shadow: grey 1px 1px 1px;
}
@media (min-width: 576px) {
  .main-slider .banner-info .banner-description {
    font-size: 1.3rem;
  }
}

@keyframes auto-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#newsSection {
  margin-top: 40px;
}
#newsSection .newsSectionTitle {
  display: flex;
  align-items: center;
  font-size: 2.5rem;
  color: var(--theme-title-color);
  font-weight: bold;
  margin-bottom: 15px;
}
#newsSection .newsSectionTitle img {
  max-width: 55px;
  height: auto;
  margin-right: 20px;
}
#newsSection .news-item {
  background-color: white;
  border-radius: 0 30px;
  padding: 15px 15px 25px 15px;
  margin-bottom: 25px;
  transition-timing-function: linear;
  transition: 0.3s;
}
#newsSection .news-item:hover {
  opacity: 0.9;
}
#newsSection .news-item:hover .news-item-title {
  color: #836161;
}
@media (min-width: 1200px) {
  #newsSection .news-item:hover .readMore_newsItem {
    display: flex;
    bottom: 0px;
    animation: opacityChangeOnMoreBtn 1s;
    font-size: 1.2rem;
  }
}
#newsSection .news-item .news-item-img img {
  border-radius: 15px;
}
#newsSection .news-item .news-item-category {
  background-color: #A76146;
  padding: 8px 25px;
  border-radius: 25px;
  color: white;
  margin-top: 15px;
  font-weight: bold;
}
#newsSection .news-item .news-item-title {
  color: #674D4D;
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: bold;
}
#newsSection .news-item .news-item-description {
  font-size: 1rem;
  padding-top: 10px;
}
@keyframes opacityChangeOnMoreBtn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#newsSection .news-item .readMore_newsItem {
  display: none;
  right: 0;
  background-color: var(--theme-main-color);
  color: white;
  font-weight: bold;
  padding: 20px 20px;
  border-radius: 100% 0 0 0;
  width: 12rem;
  height: 12rem;
  text-align: right;
  transition: 0.3s;
  align-items: end;
  justify-content: center;
  flex-direction: column;
}
#newsSection .news-item .readMore_newsItem:hover {
  cursor: pointer;
  transform: scale(1.1);
}
#newsSection .news-item .readMore_newsItem img {
  width: 40px;
  height: auto;
}
#newsSection .news-item .readMore_newsItem_mobile {
  justify-content: center;
  align-items: center;
  background-color: var(--theme-main-color);
  color: white;
  font-weight: bold;
  border-radius: 25px;
}
#newsSection .news-item .readMore_newsItem_mobile img {
  width: 40px;
  height: auto;
}

#albumsSection {
  background-color: var(--theme-albums-background);
  padding-top: 30px;
  padding-bottom: 50px;
  margin-bottom: 0 !important;
}
@media (min-width: 992px) {
  #albumsSection {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}
#albumsSection .albumsSectionTitle {
  color: var(--theme-title-secondary);
  font-size: 2.5rem;
  font-weight: bold;
}
#albumsSection .albumsSectionTitle img {
  width: 4rem;
  margin-bottom: 1rem;
}
#albumsSection .album-prev, #albumsSection .album-next {
  max-width: 50px;
  height: auto;
  margin-top: 10px;
  transition: 0.2s linear;
}
#albumsSection .album-prev:hover, #albumsSection .album-next:hover {
  cursor: pointer;
  opacity: 0.8;
  transform: scale(1.1);
}
#albumsSection .album-next {
  margin-left: 15px;
}
#albumsSection .albums-Slider .album-item {
  background-color: white;
  padding: 15px;
  border-radius: 0 25px;
  margin: 10px 10px 20px;
  transition: 0.2s linear;
}
#albumsSection .albums-Slider .album-item:hover {
  transform: scale(1.02);
  cursor: pointer;
}
#albumsSection .albums-Slider .album-item .album-image {
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 75%;
  background-size: cover;
}
#albumsSection .albums-Slider .album-item .album-title {
  height: 60px;
  color: var(--theme-albums-title-color);
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 10px;
  overflow-y: hidden;
}

.homePageMoreBtn {
  background: linear-gradient(to right, var(--theme-title-color) 50%, var(--theme-button-bg) 50%);
  background-size: 220% 100%;
  background-position: right bottom;
  transition: all 0.5s ease-out;
  color: white;
  font-weight: bold;
  margin-bottom: 15px;
  padding: 5px 30px 5px 40px;
  font-size: 1.2rem;
  border-radius: 30px;
}
.homePageMoreBtn img {
  width: 50px;
  transition-delay: 0.3s;
  transition-timing-function: ease-in-out;
}
.homePageMoreBtn:hover {
  background-position: left bottom;
}
.homePageMoreBtn:hover img {
  transform: scale(1.2);
}

#venueSection .venueItem {
  flex-basis: 50%;
}
#venueSection .venueItem .venueItem-image {
  flex-basis: 40%;
  min-height: 250px;
  background-size: cover;
  background-position: center;
}
#venueSection .venueItem .venueItem-details {
  flex-basis: 60%;
  color: white;
  padding: 2rem 2rem 2rem;
  font-size: 1.5rem;
  font-weight: bold;
}
#venueSection .venueItem .venueItem-address {
  margin-top: 15px;
  font-size: 1rem;
}
#venueSection .venueItem .venueItem-address img {
  max-width: 40px;
  height: auto;
  margin-right: 15px;
}

#footer-desktop {
  background-color: var(--theme-footer-bg-color);
  padding-top: 30px;
  text-align: center;
  padding-bottom: 30px;
  color: white;
}
#footer-desktop a {
  color: white;
}
#footer-desktop .footer_info_details a:hover {
  opacity: 0.8;
}
#footer-desktop .footer_info_details img {
  margin-left: 10px;
  margin-right: 10px;
}
#footer-desktop #btn_toTop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  right: 30px;
  top: 30px;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}
#footer-desktop #btn_toTop:hover {
  cursor: pointer;
  transform: scale(1.1);
}
@media (min-width: 576px) {
  #footer-desktop #btn_toTop {
    width: 4rem;
    height: 4rem;
  }
}
#footer-desktop #btn_toTop img {
  max-width: 20px;
  height: auto;
}
@media (min-width: 576px) {
  #footer-desktop #btn_toTop img {
    max-width: 30px;
  }
}

.page-content h3 {
  color: #aaa;
  font-size: 1.35rem;
  font-style: italic;
}

#page {
  background-color: var(--theme-page-background);
}

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