@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Padauk:wght@400;700&display=swap");
* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans", sans-serif;
  padding-top: 95px;
  margin: 0;
}
@media (max-width: 960px) {
  body {
    padding-top: 88px;
  }
}

.wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background-color: #fff;
  z-index: 100;
}
@media (max-width: 960px) {
  .header {
    padding: 15px;
  }
}
.header > a {
  width: 192px;
  display: block;
}
@media (max-width: 960px) {
  .header > a {
    width: 172px;
  }
}
.header > a img {
  display: block;
  width: 100%;
  height: auto;
}
.header__nav ul {
  margin: 0;
  padding: 0;
  margin-right: 75px;
}
@media (max-width: 1170px) {
  .header__nav ul {
    margin-right: 40px;
  }
}
.header__nav ul li {
  display: inline-block;
  position: relative;
}
.header__nav ul li + li {
  margin-left: 60px;
}
@media (max-width: 1170px) {
  .header__nav ul li + li {
    margin-left: 40px;
  }
}
.header__nav ul li ul {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
  margin: 0;
  padding: 45px 15px 15px;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  width: 300px;
}
.header__nav ul li ul li {
  display: block;
  margin: 0;
}
.header__nav ul li ul li + li {
  margin-top: 15px;
}
.header__nav ul li:hover ul {
  opacity: 1;
  pointer-events: all;
}
.header__nav .desktop-nav {
  display: block;
  display: flex;
  align-items: center;
}
@media (max-width: 960px) {
  .header__nav .desktop-nav {
    display: none;
  }
}
.header__nav .desktop-nav .lang-item {
  list-style: none;
  color: #fff;
}
.header__nav .desktop-nav .lang-item a {
  color: #fff;
}
.header__nav .mobile-nav {
  display: none;
  align-items: center;
}
@media (max-width: 960px) {
  .header__nav .mobile-nav {
    display: flex;
  }
}
.header__nav .mobile-nav button {
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: 0;
  padding: 0;
  margin-left: 22px;
}
.header__nav .mobile-nav button img {
  display: block;
  width: 100%;
  height: 100%;
}
.header__nav .mobile-nav a {
  font-size: 16px;
  font-weight: 800;
}
.header__nav .mobile-nav li {
  list-style: none;
}
.header__nav a {
  white-space: normal;
}
.header a {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
}
.header .button, .header .header__nav .desktop-nav .lang-item, .header__nav .desktop-nav .header .lang-item {
  background-color: #9D2F21;
  color: #fff;
  padding: 9px 30px 10.5px;
  border-radius: 40px;
}
.header .mobile-menu {
  position: absolute;
  top: 99%;
  left: 0;
  width: 100%;
  background-color: #fff;
  text-align: center;
  padding: 25px 12px;
  display: none;
}
.header .mobile-menu .menu-header-menu-container > ul,
.header .mobile-menu .menu-header-menu-my-container > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .mobile-menu .menu-header-menu-container > ul > li,
.header .mobile-menu .menu-header-menu-my-container > ul > li {
  border-bottom: solid 1px #000;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.header .mobile-menu .menu-header-menu-container > ul > li:last-child,
.header .mobile-menu .menu-header-menu-my-container > ul > li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.header .mobile-menu .menu-header-menu-container > ul a,
.header .mobile-menu .menu-header-menu-my-container > ul a {
  font-weight: 600;
}
.header .mobile-menu .menu-header-menu-container > ul ul,
.header .mobile-menu .menu-header-menu-my-container > ul ul {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 10px;
}
.header .mobile-menu .menu-header-menu-container > ul ul li + li,
.header .mobile-menu .menu-header-menu-my-container > ul ul li + li {
  margin-top: 10px;
}
.header .mobile-menu .menu-header-menu-container > ul ul a,
.header .mobile-menu .menu-header-menu-my-container > ul ul a {
  font-weight: normal;
}

.footer {
  background-color: #651212;
  padding: 50px 0;
  color: #fff;
  text-align: center;
}
.footer__logos {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 960px) {
  .footer__logos {
    display: block;
    text-align: center;
  }
}
.footer__logos img {
  display: block;
  width: 200px;
  height: auto;
}
@media (max-width: 960px) {
  .footer__logos img {
    margin: 0 auto;
  }
}
.footer__logos a + a {
  margin-left: 50px;
}
.footer__nav {
  display: flex;
  justify-content: center;
  margin: 50px 0;
  font-size: 20px;
  flex-wrap: wrap;
}
@media (max-width: 960px) {
  .footer__nav {
    display: block;
  }
}
.footer__nav > span {
  width: 100%;
  margin: 0 0 48px;
}
.footer__nav .menu-header-menu-container {
  width: 100%;
}
.footer__nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.footer__nav span a {
  font-weight: 300;
}
.footer__nav span a.active {
  font-weight: 700;
}
.footer__nav ul.footer-menu {
  margin: 0;
  display: flex;
  padding: 0;
  list-style: none;
}
@media (max-width: 960px) {
  .footer__nav ul.footer-menu {
    display: block;
    margin: 50px 0 0;
  }
}
.footer__nav ul.footer-menu > li {
  width: 33.333%;
}
@media (max-width: 960px) {
  .footer__nav ul.footer-menu > li {
    width: 100%;
  }
}
.footer__nav ul.footer-menu > li + li {
  margin-left: 50px;
}
@media (max-width: 960px) {
  .footer__nav ul.footer-menu > li + li {
    margin-left: 0;
    margin-top: 20px;
  }
}
.footer__nav ul.footer-menu ul {
  display: block;
  margin: 0;
  padding: 0;
}
@media (max-width: 960px) {
  .footer__nav ul.footer-menu ul {
    margin0-top: 50px;
  }
}
.footer__nav ul.footer-menu ul li {
  display: block;
  margin-top: 10px;
}
.footer__nav ul.footer-menu ul li a {
  font-weight: 300;
}
.footer p.credits {
  font-size: 20px;
}

body.lang-my {
  font-family: "Padauk", sans-serif !important;
}
body.lang-my h1, body.lang-my h2, body.lang-my h3, body.lang-my h4, body.lang-my h5, body.lang-my p {
  font-family: "Padauk", sans-serif !important;
}
body.lang-my h1, body.lang-my h2, body.lang-my h3, body.lang-my h4 {
  font-weight: 700 !important;
  line-height: 150% !important;
}
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Padauk:wght@400;700&display=swap");
.home__intro {
  height: calc(100vh - 95px);
  background-size: cover;
}
.home__intro .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 24px;
}
.home__intro .content h2 {
  font-family: "Noto Serif", serif;
  font-size: 60px;
  margin: 0 auto 150px;
  color: #651212;
  max-width: 1040px;
}
@media (max-width: 960px) {
  .home__intro .content h2 {
    font-size: 36px;
    margin: 0 auto 60px;
  }
}
.home__intro .content a {
  padding: 20px;
  display: inline-block;
  border: solid 2.5px #fff;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}
.home__intro .content a:hover {
  background-color: rgba(157, 47, 33, 0.5);
}
.home__content {
  padding: 100px 0;
  background-color: #9D2F21;
  color: #fff;
  text-align: center;
}
.home__content p {
  font-size: 20px;
  margin: 0;
}
.home__content p + p {
  margin-top: 24px;
}
.home__featured {
  display: flex;
  padding: 10px;
  gap: 10px;
}
@media (max-width: 960px) {
  .home__featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 10px;
    grid-column-gap: 10px;
  }
}
.home__featured .feature {
  flex: 1;
  position: relative;
}
.home__featured .feature a {
  display: block;
  padding-top: 100%;
  height: 0;
  width: 100%;
  position: relative;
  background-color: #651212;
}
.home__featured .feature a:hover img {
  opacity: 0.7;
}
.home__featured .feature img {
  max-width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transition: all 0.3s;
}
.home__featured .feature h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  padding: 0 12px;
  pointer-events: none;
}
@media (max-width: 960px) {
  .home__featured .feature h3 {
    font-size: 20px;
  }
}
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Padauk:wght@400;700&display=swap");
.page-main__main {
  padding-bottom: 100px;
}

.page-title {
  padding: 100px 0;
  text-align: center;
  font-family: "Noto Serif", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: 82px;
  color: #651212;
  margin: 0 auto;
  max-width: 960px;
}
@media (max-width: 768px) {
  .page-title {
    font-size: 36px;
    line-height: 1;
    padding: 50px 25px;
  }
}
.page-title span {
  display: block;
  font-size: 80%;
}
.page-title-small {
  font-size: 44px;
  padding: 100px 25px;
}
@media (max-width: 768px) {
  .page-title-small {
    font-size: 26px;
    line-height: 1;
    padding: 50px 25px;
  }
}

.breadcrumbs {
  text-align: center;
  padding: 50px;
  background-color: #f5f5f5;
}
@media (max-width: 768px) {
  .breadcrumbs {
    padding: 25px;
  }
}
.breadcrumbs a,
.breadcrumbs span {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #000;
  text-decoration: none;
  margin: 0 5px;
}

.single-db {
  background-color: #f5f5f5;
  margin: 0 -50px;
  padding: 50px;
}
@media (max-width: 1260px) {
  .single-db {
    margin: 0;
    padding: 50px 25px;
  }
}
.single-db + .single-db {
  margin-top: 50px;
}
.single-db h2 {
  font-family: "Noto Sans", sans-serif;
  color: #651212;
  margin: 0 0 50px;
  font-size: 32px;
}
@media (max-width: 768px) {
  .single-db h2 {
    font-size: 26px;
    text-align: center;
  }
}
.single-db h3 {
  text-align: center;
  font-size: 20px;
  margin: 0;
}
.single-db nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.single-db nav ul li {
  margin: 12px;
  display: inline-block;
}
.single-db nav ul li a {
  color: #9D2F21;
  text-decoration: none;
}
.single-db form {
  display: flex;
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .single-db form {
    display: block;
  }
}
.single-db form input[type=text] {
  width: 100%;
  padding: 25px;
  border: 0;
  font-size: 16px;
}
.single-db form button {
  flex-shrink: 0;
  padding: 25px;
  border: 0;
  background-color: #9D2F21;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}
@media (max-width: 768px) {
  .single-db form button {
    width: 100%;
  }
}

.db-table {
  width: 100%;
  margin-bottom: 100px;
  border-collapse: collapse;
  font-size: 18px;
}
.db-table th, .db-table td {
  padding: 25px;
}
@media (max-width: 768px) {
  .db-table th, .db-table td {
    padding: 12px 0;
    padding-right: 12px;
  }
}
.db-table th {
  text-align: left;
  color: #fff;
  background-color: #651212;
}
@media (max-width: 768px) {
  .db-table th {
    text-align: center;
  }
}
.db-table tr + tr {
  border-bottom: solid 2px #651212;
}
.db-table a {
  color: #9D2F21;
}

.db-nav {
  margin-bottom: 50px;
  margin-top: -50px;
}
@media (max-width: 768px) {
  .db-nav {
    margin-top: 0;
  }
}
.db-nav h3 {
  text-align: center;
  font-size: 20px;
  margin: 0;
}
.db-nav nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
@media (max-width: 600px) {
  .db-nav nav ul {
    max-width: 300px;
    margin: 0 auto;
  }
}
.db-nav nav ul li {
  margin: 12px;
  display: inline-block;
}
.db-nav nav ul li a {
  color: #9D2F21;
  text-decoration: none;
}
.db-nav nav ul li a.active {
  text-decoration: underline;
  font-weight: bold;
}

.lib-nav {
  background-color: #f5f5f5;
  text-align: center;
  padding: 50px 24px;
  position: sticky;
  top: 94px;
}
@media (max-width: 768px) {
  .lib-nav {
    position: relative;
    top: 0;
  }
}
.lib-nav a {
  font-family: "Noto Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  color: #9D2F21;
  text-decoration: none;
}
@media (max-width: 768px) {
  .lib-nav a {
    display: block;
  }
}
.lib-nav a + a {
  margin-left: 32px;
  position: relative;
}
@media (max-width: 768px) {
  .lib-nav a + a {
    margin-left: 0;
    border-top: solid 1px #000;
    margin-top: 12.5px;
    padding-top: 12.5px;
  }
}
.lib-nav a + a::before {
  content: "|";
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  margin-right: 14px;
  color: #000;
}
@media (max-width: 768px) {
  .lib-nav a + a::before {
    display: none;
  }
}

.lib-single {
  margin: 100px 0;
  text-align: center;
}
.lib-single > h2 {
  margin: 0 0 50px;
  font-family: "Noto Sans", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 49px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .lib-single > h2 {
    font-size: 20px;
    line-height: 1;
    margin: 0 0 25px;
  }
}
.lib-single img {
  display: block;
  width: 100%;
  margin: 0 0 50px;
}
.lib-single__content {
  font-family: "Noto Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #000000;
  text-align: left;
}
.lib-single__content a {
  color: #000;
}
.lib-single > a {
  display: inline-block;
  font-family: "Noto Sans", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  background-color: #9D2F21;
  padding: 20px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 50px;
}

.page-byline {
  background: #f5f5f5;
  text-align: center;
  margin: 0 0 100px;
  padding: 50px 0;
  font-family: "Noto Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
}
@media (max-width: 960px) {
  .page-byline {
    background-color: transparent;
    padding: 0;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 25px;
  }
}

.page-featured-image {
  display: block;
  margin: 0 auto 100px;
  width: auto;
  max-width: 100%;
}
@media (max-width: 960px) {
  .page-featured-image {
    margin-bottom: 50px;
  }
}

.project-page-main {
  display: flex;
  position: relative;
}

.project-page-nav {
  width: 350px;
  flex-shrink: 0;
  position: sticky;
  top: 114px;
  height: 100%;
  padding-right: 50px;
  padding-bottom: 100px;
}
@media (max-width: 960px) {
  .project-page-nav {
    display: none;
  }
}
.project-page-nav a {
  display: block;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 27px;
  color: #9D2F21;
  text-decoration: none;
}
.project-page-nav a + a {
  margin-top: 12.5px;
}

.project-page-content {
  width: 100%;
}

.single-point {
  padding-bottom: 100px;
  scroll-margin-top: 100px;
}
@media (max-width: 960px) {
  .single-point {
    padding-bottom: 60px;
  }
}
.single-point h3 {
  background-color: #651212;
  color: #fff;
  padding: 28px 32px;
  margin: 0 0 25px;
  border-radius: 20px 0px 10px;
}
@media (max-width: 960px) {
  .single-point h3 {
    padding: 21px 30px;
    margin: 0;
  }
}
.single-point__content {
  padding-left: 28px;
}
@media (max-width: 960px) {
  .single-point__content {
    padding: 21px 0;
  }
}
.single-point__content a {
  color: #9D2F21;
  text-decoration: none;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.single-point__content img {
  margin: 50px auto;
  display: block;
}
.single-point__content figure {
  margin: 50px auto;
}
.single-point__content figure img {
  margin: 0 auto 12px;
}
.single-point__content figure figcaption {
  text-align: center;
}

.page-film {
  background-color: #f5f5f5;
  padding: 100px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .page-film {
    padding: 50px 0;
  }
}
.page-film:nth-child(even) {
  background-color: white;
}
.page-film h2 {
  margin: 0 0 50px;
  font-family: "Noto Sans", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 49px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .page-film h2 {
    margin: 0 0 25px;
    font-size: 20px;
    line-height: 125%;
  }
}
.page-film iframe {
  margin-bottom: 50px;
  border: solid 10px #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
  max-width: 100%;
}
@media (max-width: 768px) {
  .page-film iframe {
    margin: 0 0 25px;
  }
}
.page-film h3 {
  font-family: "Noto Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  margin: 0 0 50px;
}
@media (max-width: 768px) {
  .page-film h3 {
    margin: 0 0 25px;
  }
}
.page-film__content {
  text-align: left;
  font-size: 20px;
}

.page-team {
  padding: 100px 0;
  scroll-margin-top: 220px;
}
@media (max-width: 768px) {
  .page-team {
    padding: 50px 0;
  }
}
.page-team:nth-child(odd) {
  background-color: #f5f5f5;
}
.page-team h2 {
  text-align: center;
  margin: 0 0 50px;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 27px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .page-team h2 {
    margin: 0 0 25px;
  }
}
.page-team__content {
  font-size: 20px;
  margin: 0 0 50px;
}
@media (max-width: 768px) {
  .page-team__content {
    margin: 0 0 25px;
  }
}
.page-team__member + div {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .page-team__member + div {
    margin: 25px 0 0;
  }
}
.page-team__member h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.page-team__member p {
  font-size: 20px;
  margin: 0;
}

.page-contact {
  padding: 100px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .page-contact {
    padding: 50px 0;
  }
}
.page-contact:nth-child(odd) {
  background-color: #f5f5f5;
}
.page-contact h2 {
  margin: 0 0 50px;
  font-family: "Noto Sans", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 27px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .page-contact h2 {
    margin: 0 0 25px;
  }
}
.page-contact__content {
  font-size: 20px;
  line-height: 150%;
  font-weight: 400;
}
.page-contact__content a {
  color: #000;
}
.page-contact__content a:only-child {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.page-contact__content p {
  margin: 0;
}
.page-contact__content p + p {
  margin-top: 20px;
}
/*# sourceMappingURL=style.css.map */
