/* basic styles */
body, h2, p, button, img, a, ul, li, nav {
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  font-family: "Noto Sans";
}
p {
  text-align: left;
  letter-spacing: 1.12px;
  line-height: 1.6;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
table th, table td {
  border: solid 1px #B49256;
/*
  padding: 20px;
  text-align: left;
*/
  letter-spacing: 1.12px;
  font-size: 1.6rem;
  line-height: 1.6;
}
hr {
  margin: 30px 0;
}
@media screen and (min-width:769px) {
  body::before, body::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #B49256;
    z-index: -1;
  }
  body::before {
    left: 19px; /* left outer line */
  }
  body::after {
    right: 19px; /* right outer line */
  }
  .template-contents::before, .template-contents::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #B49256;
    z-index: -1;
  }
  .template-contents::before {
    left: 39px; /* left inner gold line */
  }
  .template-contents::after {
    right: 39px; /* right inner gold line */
  }
}
h1, h2 {
  font-size: 1.875rem; /* 30px / 16px = 1.875rem */
  color: #B49256;
  font-weight: normal;
  font-family: "futura-pt";
  font-weight: 500;
  font-style: normal;
  letter-spacing: 1.12px;
}
h3 {
  font-size: 1.4375rem; /* 23px / 16px = 1.4375rem */
  color: #B49256;
  font-weight: normal;
  font-family: "futura-pt";
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.88px;
}
p {
  font-size: 0.875rem; /* 14px / 16px = 0.875rem */
}
.note {
  font-size: 90%;
  font-weight: 500;
  color: #bf272e;
  text-align: left;
  margin: 30px 30px;
}
@media screen and (min-width:769px) {
  p {
    font-size: 1.18rem; /* 25px / 16px = 1.5625rem */
    font-weight: 300;
    line-height: 1.6;
  }
  h1, h2 {
    font-size: 3rem; /* 35px / 16px = 2.1875rem */
  }
  h3 {
    font-size: 1.4375rem; /* 23px / 16px = 1.4375rem */
  }
}
a {
  color: #bf272e;
  text-decoration: none;
}
li {
  list-style: none;
}
button {
  border: solid 1px;
  font-family: "futura-pt";
  letter-spacing: 1.12px;
}
.btn-black {
  background-color: #191b1c;
  color: white;
  border: 1px solid #191b1c;
}
.btn-white {
  background-color: white;
  color: #191b1c;
  border: 1px solid #B49256;
}
html {
  word-break: normal;
}
.SP-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 1;
}
.SP-logo-img {
  width: 300px;
  min-width: 120px;
}
.hamburger-menu-SP {
  display: flex;
  align-items: center;
}
.hamburger-menu-SP > img {
  width: 50px;
}
.hamburger-menu-SP > .SP-search-icon {
  width: 35px;
  padding-bottom: 6px;
  margin-left: 15px;
}
@media screen and (min-width:769px) {
  .SP-logo-img {
    width: 300px;
    min-width: 300px;
  }
  .hamburger-menu-SP {
    display: none;
  }
}
/* Main content styles */
@media screen and (min-width: 769px) {
  main {
    margin-top: 250px;
  }
}
.template-contents {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width:768px) {
  main {
    margin-top: 250px;
  }
  .SP-header {
    padding: 0 3%;
  }
}
/* Hamburger menu */
.hamburger-icon {
  display: inline-block;
  cursor: pointer;
  position: relative;
  width: 60px;
  height: 60px;
  padding: 10px;
}
.SP-parent-menu-wrapper {
  position: absolute;
  top: 105px; /* Below the hamburger menu icon */
  right: 60px;
  width: 260px;
  background-color: #F2F2F2;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
  max-height: 0;
  opacity: 0; /* Transparent by default */
}
#hamburger-toggle:checked ~ .SP-parent-menu-wrapper {
  max-height: 1000px; /* Set a sufficiently large value */
  opacity: 1; /* Opaque when the menu is displayed */
}
.SP-child-menu-wrapper {
  background-color: #191b1c; /* Change the background color of child menus */
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.SP-menu-toggle:checked + .SP-child-menu-wrapper {
  max-height: 500px; /* Maximum height when the menu is expanded, adjust as needed */
}
/* Styles for parent menu and child menu items */
.SP-parent-menu .SP-parent-item, .SP-child-menu-item a {
  display: block; /* Display as block-level elements */
  width: 100%; /* Match the width to the parent element */
  margin-bottom: 0; /* Reset margin */
  font-family: "futura-pt";
  font-weight: 500;
  letter-spacing: 0.88px;
  padding: 10px;
  cursor: pointer;
}
.SP-parent-item a {
  font-family: "futura-pt";
  font-weight: 500;
  letter-spacing: 0.88px;
  cursor: pointer;
}
.SP-child-menu-item a {
  color: #FFFFFF;
}
/* Animation for the child menu */
.header-SP-items li:hover > .SP-parent-menu-wrapper {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.SP-parent-item:hover {
  background-color: white;
}
/* List style for menu items */
.SP-parent-menu li {
  list-style: none;
  border-top: 1px solid #fff; /* Add a white border line between items */
}
/* Remove border-top for the first menu item */
.SP-parent-menu li:first-child {
  border-top: none;
}
/* Do not display checkboxes */
#hamburger-toggle {
  display: none;
}
.SP-menu-toggle {
  display: none;
}
/* End of style for Hamburger menu */
/*Header*/
header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2%;
}
.header-PC-items {
  display: flex;
  flex-direction: row-reverse;
  width: 200%;
}
.header-PC-items .PC-parent-menu {
  list-style: none;
  display: flex;
  gap: 15px;
  z-index: 1;
  flex-wrap: wrap;
  flex-direction: row;
  text-align: right;
  justify-content: space-around;
}
.header-PC-items li {
  position: relative;
}
.header-PC-items a {
  text-decoration: none;
  color: white;
  font-family: "futura-pt";
  font-size: 1.6rem; /* 22px / 16px = 1.375rem */
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.88px;
}
/* Hide child menu by default*/
.PC-child-menu-wrapper {
  display: none;
  position: absolute;
  z-index: 100;
}
.PC-child-menu-item > a {
  color: #4E4E4E;
}
/* Display child menu when parents are hovered */
.header-PC-items li:hover > .PC-child-menu-wrapper {
  display: block;
}
.PC-child-menu-item {
  background-color: #F2F2F2;
  color: black;
  padding: 0.5rem 1rem;
}
.PC-child-menu-wrapper .PC-child-menu-item:last-child {
  border-bottom: none;
}
/* Search button */
.PC-search-button-wrapper {
  position: absolute;
  width: 20px;
  right: 0;
}
/* Animation for the child menu */
.PC-child-menu-wrapper {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.header-PC-items li:hover > .PC-child-menu-wrapper {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.PC-child-menu-item:hover {
  background-color: grey;
}
.PC-child-menu-item:hover a {
  color: white;
}
.SP-parent-menu-item:hover {
  background-color: #b49256;
}
.search-button {
  margin-left: 1rem;
}
@media screen and (max-width: 768px) {
  .header-PC-items, .parent-menu {
    flex-direction: column;
    color: white;
  }
  .header-PC-items {
    display: none;
  }
}
.child-menu-wrapper {
  display: flex;
  flex-direction: column;
}
.header-PC-items li, .child-menu-item {
  white-space: nowrap;
}
.search-button > img {
  width: 20px;
}
/* Video styles */
.top-video-wrapper {
  width: 100%;
}
.top-video {
  width: 100%;
  height: auto;
  min-height: 400px;
}
.header-video-wrapper {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  /*change min-height to adjust the height of video element*/
  min-height: 400px;
  z-index: 1;
  background: black;
  overflow: hidden;
}
.header-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: none;
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
}
@media screen and (max-width: 768px) {
  .header-video-wrapper {
    /*change min-height to adjust the height of video element*/
    min-height: 400px;
  }
}
.SP-top-image-wrapper {
  width: 100%;
}
.PC-top-image-wrapper {
  display: none;
}
@media screen and (min-width:769px) {
  .SP-top-image-wrapper {
    width: 50%;
    display: none;
  }
  .top-text-form {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .PC-top-image-wrapper {
    display: block;
  }
  .PC-top-image-wrapper > img {
    width: 100%;
    max-width: 500px;
  }
}
.SP-top-image-wrapper > img {
  width: 100%;
  max-width: 500px;
}
.top-text-wrapper, .top-title-wrapper {
  display: flex;
  text-align: left;
  flex-direction: column;
}
.top-title-wrapper {
  background-color: #BF272E;
  width: 470px;
  height: 107px;
  margin: 10px auto;
  max-width: 80%;
  justify-content: center;
}
.title-container {
  overflow: hidden;
  margin-bottom: 30px;
}
.top-title-wrapper {
  position: relative;
  text-align: center;
}
/*Gold lines along each title*/
.top-title-wrapper:before, .top-title-wrapper:after, .current-exhibition-top-text:before, .current-exhibition-top-text:after, .resources-title-wrapper:before, .resources-title-wrapper:after, .list-title-wrapper:before, .list-title-wrapper:after {
  content: '';
  position: absolute;
  top: 50%;
  width: 100vw; /* length of lines */
  height: 2px;
  background-color: #B49256;
}
.top-title-wrapper:before, .current-exhibition-top-text:before, .resources-title-wrapper:before, .list-title-wrapper:before {
  left: 100%;
  margin-left: 10px; /* margin between the title and gold line */
}
.top-title-wrapper:after, .current-exhibition-top-text:after, .resources-title-wrapper:after, .list-title-wrapper:after {
  right: 100%;
  margin-right: 10px; /* margin between the title and gold line */
}
.event-head-title-wrapper::before, .event-head-title-wrapper::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 2px;
  background-color: #B49256;
  z-index: -1;
}
.event-head-title-wrapper::before {
  top: calc(50% - 5px);
}
.event-head-title-wrapper::after {
  top: calc(50% + 5px);
}
.lines-gap-left, .lines-gap-right {
  position: absolute;
  width: 10px; /* Width of the gap */
  height: 110%; /* Match the height of the parent element */
  background-color: #ffffff;
  border: #ffffff solid 2px;
  z-index: 0; /* In front of the gold line */
}
.lines-gap-left {
  left: 0;
}
.lines-gap-right {
  right: 0;
}
/* Welcome section */
.top-title-wrapper h1 {
  margin: 0;
  color: #ffffff;
}
.top-text-wrapper p, .top-title-wrapper h1 {
  width: 100%;
}
.top-text-wrapper p {
  font-weight: 300;
}
.form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin: 20px 0;
}
.mail-form-wrapper {
  width: 100%;
}
.mail-form-wrapper > input::placeholder {
  color: white;
}
.mail-form-wrapper input[type="email"] {
  width: 90%;
  height: 70px;
  border-radius: 0;
  font-size: 0.875rem; /* 14px / 16px = 0.875rem */
  text-align: center;
  border-radius: 40px;
  font-family: "futura-pt";
  letter-spacing: 1.12px;
}
.check-boxes-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.check-boxes-wrapper {
  width: 100%;
}
.box-text-list {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.top-box-text-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 10px 15px 0px;
}
.top-box-text-item p {
  color: #191b1c;
  white-space: nowrap;
  font-family: "futura-pt";
  font-weight: 500;
  letter-spacing: 1.12px;
}
@media screen and (min-width:769px) {
  .top-text-wrapper {
    margin-top: 3%;
  }
  .top-text-wrapper {
    max-width: 50%;
    padding: 0px 40px 40px 40px;
  }
  .top-text-wrapper p {
    margin-bottom: 15px;
  }
  .top-and-form-cantainer {
    display: flex;
    justify-content: space-between;
    padding: 0 80px;
  }
  .form-wrapper {
    margin: 0 0 40px 0;
    padding: 15px 15px 15px 20px;
    max-width: 800px;
  }
  .PC-top-image-wrapper {
    margin-bottom: 60px;
  }
  .mail-form-wrapper input[type="email"] {
    width: 100%;
    font-size: 1.375rem; /* 22px / 16px = 1.375rem */
    padding: 10px;
  }
}
@media screen and (max-width:768px) {
  .top-text-wrapper p {
    width: 80%;
    margin: 40px auto 0;
    font-size: 1rem;
  }
  .text-page-wrapper p {
    font-weight: 300;
  }
  .top-box-text-item p {
    font-size: 1.1rem;
  }
  .text-page-wrapper li {
    font-size: 1rem;
    font-weight: 400;
    font-family: "Noto Sans";
    text-align: left;
    letter-spacing: 1.12px;
    margin: 10px 0 10px 40px;
    list-style: disc;
  }
  .check-boxes-wrapper {
    width: 60%;
    margin: 0 auto;
  }
  table {
    width: 90%;
    margin: 20px 20px;
  }
  table th, table td {
    font-size: 1.475rem;
  }
  .top-title-wrapper h1 {
    font-size: 2.4rem;
  }	
}
/*Featured Event section*/
.program-guide {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width:769px) {
  .program-guide {
    flex-direction: row;
  }
}
.featured-title-wrapper, .featured-text-wrapper {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.featured-text-wrapper p {
  width: 100%;
  margin-top: 30px;
  font-weight: 300;
}
.program-info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}
.program-info-wrapper h2, .program-info-wrapper p {
  width: 100%;
  margin-top: 20px;
}
.double-btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ticket-btn, .learn-more-btn {
  width: 278px;
  height: 73px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 40px;
}
img {
  max-width: 100%;
  height: auto;
}
.program-guide {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.PC-featured-image, .SP-featured-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  min-width: 100%;
}
.featured-image-SP-wrapper {
  width: 100%;
  position: relative;
}
@media screen and (min-width:769px) {
  .SP-featured-image {
    display: none;
  }
  .featured-program-wrapper, .program-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 700px;
    padding: 0 40px;
  }
  .event-description-wrapper {
    display: flex;
    flex-direction: row-reverse;
    padding: 0 80px;
    justify-content: space-around;
    margin: 70px 0;
  }
  .program-guide {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 16px;
  }
  .double-btn-wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width:768px) {
  .PC-featured-image {
    display: none;
  }
  .featured-program-wrapper {
    width: 80%;
    margin: 0 auto;
  }
  .featured-program-wrapper, .program-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 10px;
    align-items: center;
  }
  .program-guide {
    margin-bottom: 30px;
  }
}
@media screen and (min-width:769px) {
  .pragram-title-wrapper, .pragram-detail-wrapper {
    width: 100%;
  }
  .featured-title-wrapper h2 {
    margin: 0;
    text-align: left;
    margin-bottom: 20px;
  }
}
.featured-title-wrapper h1, .pragram-title-wrapper h2 {
  margin: 0;
  text-align: left;
}
.featured-text-wrapper p, .pragram-detail-wrapper p {
  margin: 0;
  text-align: left;
}
.pragram-detail-wrapper p {
  font-weight: 500;
  font-size: 1.2rem;
}
.ticket-btn:hover, .learn-more-btn:hover {
  background-color: grey;
}
/* Guest Speaker section */
.guest-info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.guest-photo-wrapper img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
}
.guest-description-wrapper {
  margin-top: 10px;
}
.guest-description-wrapper p {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .program-info-wrapper {
    margin: 40px 0;
  }
  .featured-title-wrapper h2 {
    margin-top: 20px;
  }
  .featured-text-wrapper p {
    font-size: 1rem;
    margin-top: 20px;
  }
  .pragram-detail-wrapper p {
    text-align: center;
  }
  .guest-photo-wrapper img {
    margin-bottom: 20px;
  }
  .guest-description-wrapper {
    width: 90%;
    margin: 0 auto;
  }
  .guest-description-wrapper p {
    font-size: 1rem;
  }
  .guest-info-wrapper {
    margin: 60px 0;
  }
  .guest-text-wrapper {
    width: 80%;
  }
  .double-btn-wrapper {
    width: 80%;
  }
  .double-btn-wrapper > button {
    max-width: 100%;
  }
}
@media (min-width: 769px) {
  .guest-info-wrapper {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 20px 80px;
    align-items: center;
  }
  .guest-photo-wrapper img {
    width: 300px;
    height: 300px;
    margin: 0 40px;
  }
  .guest-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: left;
    max-width: 850px;
    padding: 0px 20px;
  }
  .guest-title-wrapper h2 {
    text-align: left;
    margin-top: 20px;
  }
  .guest-description-wrapper p {
    font-size: 1.2rem; /* 28px / 16px = 1.75rem */
    font-weight: 300;
  }
}
/* Featured Events, Current Exhibition */
.events-wrapper .event-list {
  list-style: none;
}
.event-head-title-wrapper {
  background-color: #BF272E;
  position: relative;
  width: 470px;
  height: 107px;
  max-width: 80%;
  margin: 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.event-head-title-wrapper > h1 {
  color: white;
}
.youtube-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.youtube-container iframe, .youtube-container object, .youtube-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.Exhibition-overview-wrapper p {
  margin-bottom: 40px;
  font-size: 1.18rem;
}
@media screen and (min-width:769px) {
  .event-list {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
}
.event-card img {
  width: 350px;
}
.event-exhibition-date {
  position: relative;
  z-index: 1;
  height: 40px;
}
.current-exhibition-top-text {
  position: relative;
  z-index: 1;
  width: 470px;
  margin: 10px auto;
  height: 107px;
  background-color: #bf272e;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 80%;
}
.current-exhibition-wrapper {
  margin-bottom: 40px;
}
.current-exhibition-top-text > h1 {
  color: #ffffff;	
}
.current-exhibiton-text > p {
  font-weight: 300;
}
@media (max-width: 768px) {
  .Exhibition-overview-wrapper h2, .Exhibition-overview-wrapper p {
    width: 100%;
    margin: 0 auto;
  }
  .event-head-title-wrapper > h1 {
    font-size: 1.5rem; /* 24px / 16px = 1.75rem */
  }
  .exhibiton-title-and-text {
    width: 80%;
    margin: 0 auto;
	padding-bottom: 20px;  
  }
  .exhibition-info > button {
    max-width: 100%;
  }
  .exhibiton-info-text p {
    font-size: 1.2rem;
    font-weight: 500;
    width: 100%;
    text-align: center;
    line-height: 1.6;
    margin: 40px 0;
  }
  .exhibiton-info-text img {
    width: 70%;
    float: center;
    margin: 15px 0 25px 0;
  }
  .current-exhibition-top-text > h1 {
  font-size: 1.5rem;	  
}	
}
@media (min-width: 769px) {
  .Exhibition-overview-wrapper {
    display: flex;
    flex-direction: row-reverse;
    padding: 0px 80px 40px;
    justify-content: space-around;
    font-size: 1.2rem;
    line-height: 1.6;
  }
  .current-exhibition-top-text {
    margin: 10px auto;
  }
  .exhibition-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 400px;
    padding: 0 40px;
  }
  .Exhibition-overview-wrapper h2, .Exhibition-overview-wrapper p {
    text-align: left;
  }
  .exhibiton-info-text p {
    font-weight: 500;
    width: 100%;
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  .exhibiton-info-text img {
    width: 60%;
    float: left;
    margin: 10px 0 10px 0;
  }
  .current-exhibiton-title-wrapper, .current-exhibiton-text {
    width: 100%;
    max-width: 700px;
  }
  .exhibiton-title-wrapper {
    width: 100%;
  }
  .learn-more-btn {
    align-self: flex-start; /* align buttons left */
  }
  .exhibiton-title-and-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }
}
.Exhibition-overview-wrapper h2, .Exhibition-overview-wrapper p {
  margin-top: 20px;
}
.event-exhibition-date > .date-wrapper {
  left: 50%;
  transform: translateX(-50%);
  border: #b49256 1px solid;
  color: #4E4E4E;
  width: 75px;
  height: 75px;
}
.exhibition-image > .SP-exhibition-img {
  width: 100%;
}
.exhibition-image > .PC-exhibition-img {
  display: none;
}
@media screen and (min-width:769px) {
  .exhibition-image > .SP-exhibition-img {
    display: none;
  }
  .exhibition-image > .PC-exhibition-img {
    width: 100%;
    display: block;
  }
  .event-exhibition-date > .date-wrapper {
    display: none;
  }
}
/* Testimonials */
.testimonials-wrapper h2 {
  font-size: 2.1875rem; /* 35px / 16px = 2.1875rem */
}
.testimonials-title-wrapper {
  width: 80%;
  margin: 0 auto;
}
.testimonials-left-comma-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding-left: 50px;
}
.testimonials-right-comma-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-right: 50px;
}
.testimonials-left-comma-wrapper > p, .testimonials-right-comma-wrapper > p {
  color: #B49256;
  font-size: 5.625rem; /* 90px / 16px = 5.625rem */
}
@media screen and (min-width:769px) {
  .testimonials-left-comma-wrapper {
    padding-left: 10%;
  }
  .testimonials-right-comma-wrapper {
    padding-right: 10%
  }
}
@media screen and (max-width:769px) {
  .testimonials-title-wrapper h2 {
    margin-top: 60px;
  }
}
.testimonials-title-wrapper p {
  font-size: 1rem;
  font-weight: 500;
}
/*Reasource Section*/
.resources-title-wrapper {
  background-color: #BF272E;
  position: relative;
  width: 470px;
  max-width: 80%;
  height: 107px;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.resources-title-wrapper > h2 {
  color: white;	
}
.subheading-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
}
.subheading-title > h3 {
  color: black;
}
.subheading-description {
  width: 90%;
  margin: 40px 0;
}
.link-btn-wrapper {
  width: 278px;
  height: 73px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.link-btn-wrapper > a {
  color: #191b1c;
}
.resource-card img {
  width: 90%;
  height: 250px;
  object-fit: cover;
}
.resource-card-title {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
  width: 90%;
}
@media (max-width: 768px) {
  .resource-card-title, .resource-card .resource-link {
    font-size: 1.2rem; /* 25px / 16px = 1.5625rem */
  }
  .subheading-description {
    width: 80%;
    margin: 40px 0;
    font-size: 1.2rem;
  }
  .link-btn-wrapper {
    max-width: 80%;
	font-size: 1.5rem;  
  }
  .resource-card img {
    width: 80%;
  }
  .resources-title-wrapper > h2 {
    font-size: 1.5rem;	
}	
}
.resource-card .resource-link:hover {
  color: #b49256;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
@media screen and (min-width:769px) {
  .resource-card-title, .resource-card .resource-link {
    font-size: 1.675rem; /* 30px / 16px = 1.875rem */
  }
  .suheadings-list {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 0 80px;
  }
  .subheading-wrapper {
    flex: 1 1 calc(33%);
  }
  .subheading-title > h3 {
    color: #191b1c;
  }
  .subheading-description {
    max-width: 450px;
  }
  .link-btn-wrapper {
    width: 90%;
    max-width: 273px;
  }
  .resource-card-list {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 0px 80px;
  }
  .resource-card {
    flex: 1 1 calc(33.333% - 20px);
  }
  .resource-card-title {
    max-width: 360px;
  }
  .resource-card img {
    max-width: 450px;
    height: 760px;
    object-fit: cover; /* keep the aspect ratio of images */
  }
}
.resource-card {
  position: relative;
  font-family: "futura-pt";
}
.resource-card > p, .resource-card > a {
  font-family: "futura-pt";
  font-weight: 500;
  color: white;
}
.resource-link {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}
.resource-link {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.resource-link > img {
  width: 12px;
  height: auto;
  margin-left: 8px;
  padding-bottom: 3px;
}
@media (max-width: 768px) {
  .resource-card-list {
    padding-bottom: 60px;
  }
}
/* Footer */
footer {
  background-color: #BF272E;
  color: white;
  z-index: 1;
  position: relative;
}
footer a {
  color: white;
  white-space: nowrap;
  font-size: 1.9rem; /* 25px / 16px = 1.5625rem */
  letter-spacing: 1.12px;
}
.footer-logo-wrapper {
  max-width: 60%;
  margin: 0 auto;
}
.subscribe-btn {
  width: 350px;
  height: 80px;
  max-width: 90%;
  margin-top: 20px;
  background-color: #191b1c;
  letter-spacing: 1.12px;
  color: white;
  border: none;
}
.subscribe-btn > img {
  width: 20px;
  height: auto;
}
.footer-info-text p {
  margin-top: 40px;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.6;
}
.social-icons-wrapper {
  margin: 60px 0;
}
.social-icons-wrapper .icon-list {
  display: flex;
  justify-content: center;
  list-style: none;
}
.icon-list-item {
  width: 40px;
  height: auto;
  margin: 0 7px; /* margin between social icons */
}
.icon-list-item img {
  width: 40px;
  height: 40px;
}
.footer-nav .footer-nav-list {
  list-style: none;
  margin-top: 30px;
  padding: 0 50px;
}
.footer-nav-item {
  margin-top: 40px;
  text-align: left;
}
.footer-nav-item a {
  font-family: "futura-pt";
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1.12px;
}
@media (min-width: 769px) {
  footer {
    margin: 0 auto;
    width: calc(100% - 38px);
  }
  .footer-PC-flex-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 15px;
    margin-top: 40px;
  }
  .logo-and-subscribe {
    order: 3; /* Position on the far right */
    flex-basis: 30%; /* Adjust width */
    max-width: 100%; /* Set the maximum width to 100% to prevent it from becoming larger than its parent element */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-logo-wrapper img, .subscribe-btn {
    max-width: 300px; /* Ensure the width of the elements fits within their parent element */
    height: auto;
    width: 100%;
  }
  .footer-NL-btn {
    width: 100%;
  }
  .subscribe-btn {
    width: 100%; /* Automatically adjust the width */
    flex-shrink: 1; /* Shrink when the screen width decreases */
    min-height: 80px;
  }
  /* Parent element for info text and social icons */
  .footer-info-and-socials {
    order: 1; /* Position on the far left */
    flex-basis: 36%; /* Adjust width */
    display: flex;
    flex-direction: column;
  }
  /* Adjusting the width of the footer navigation */
  .footer-nav {
    order: 2; /* Position in the middle column */
    flex-basis: 30%; /* Adjust width */
  }
  /* No need for individual style adjustments for info text and social icons, logo and subscribe button since they are already arranged vertically in their parent element */
}
@media (max-width: 768px) {
  .footer-logo-wrapper {
    max-width: 50%;
    margin: 0 auto;
  }
  .footer-info-text p {
    margin-top: 60px;
    padding: 0 50px;
    text-align: center;
    line-height: 1.6;
  }
  .footer-nav-item {
    margin-top: 30px;
    text-align: center;
  }
  .subscribe-btn {
    width: 80%;
  }
}
.footer-policy-wrapper-SP {
  width: 80%;
  margin: 60px auto 0px;
  padding-bottom: 80px;
}
.footer-policy-wrapper-PC {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width:768px) {
  .footer-policy-wrapper-PC {
    display: none;
  }
  .footer-policy-wrapper-SP > p {
    font-size: 1.45rem; /* 12px / 16px = 0.75rem */
    text-align: center;
  }
  .footer-policy-wrapper-SP a {
    font-size: 1.45rem; /* 12px / 16px = 0.75rem */
  }
}
@media screen and (min-width:769px) {
  .footer-policy-wrapper-SP {
    display: none;
  }
  .footer-info-text {
    width: 80%;
    margin: 0 auto;
  }
  .footer-policy-wrapper-PC > p {
    font-size: 1.475rem; /* 20px / 16px = 1.25rem */
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
  .footer-policy-wrapper-PC a {
    font-size: 1.675rem; /* 20px / 16px = 1.25rem */
  }
}
/* Carousel for Smartphone */
.carousel {
  display: flex;
  justify-content: center;
  margin-bottom: 0px;
}
/* Carousel content */
.contains {
  /* Feel free to change the size. */
  /* Make sure to match the size with the .slide below. */
  width: 500px;
  height: 750px; /* Temporary value */
  /* overflow: hidden; */
  position: relative;
  padding: 0;
  list-style: none;
}
/* Radio buttons for slide switching are always hidden */
.slide_select {
  display: none;
}
/* Each slide */
.slide {
  /* Feel free to change the size. */
  /* Make sure to match the size with .contains above. */
  width: 100%;
  height: 370px;
  position: absolute;
  /* Initially make slides transparent as they are not selected */
  opacity: 0;
}
/* Previous and next buttons */
.scroll_button {
  position: absolute;
  display: block;
  height: 50px;
  width: 50px;
  /* Position 20px above the vertical center */
  top: 50%;
  margin-top: -20px;
  /* Border width of 5px on the top and right sides only */
  border-width: 5px 5px 0 0;
  border-style: solid;
  border-color: #ffffff;
  cursor: pointer;
  /* Normally, make buttons slightly transparent */
  opacity: 0.75;
  /* Ensure it's above the slides */
  z-index: 3;
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));	
}
/* Emphasize button on hover */
.scroll_button:hover {
  opacity: 1;
}
/* Previous button */
.scroll_prev {
  left: 15px;
  /* Rotate top and right border to form "＜" */
  transform: rotate(-135deg);
}
/* Next button */
.scroll_next {
  right: 15px;
  /* Rotate top and right border to form "＞" */
  transform: rotate(45deg);
}
/* Slide navigation button area */
.move_controler {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}
/* Each button for slide navigation */
.button_move {
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  border-radius: 100%;
  cursor: pointer;
  /* Normally, make it slightly transparent */
  opacity: 0.5;
  /* Ensure it's above the slides */
  z-index: 2;
}
/* Slightly brighten on hover */
.button_move:hover {
  opacity: 0.75;
}
/* Slide navigation button color */
.button_move {
  background-color: #fdfdfd;
}
/* When the 1st slide is selected */
/* Make the 1st slide opaque to show it */
.slide_select:nth-of-type(1):checked ~ .slide:nth-of-type(1) {
  opacity: 1;
}
/* Brighten the first navigation button */
/* (To indicate it's currently selected) */
.slide_select:nth-of-type(1):checked ~ .move_controler .button_move:nth-of-type(1) {
  opacity: 1;
}
.slide_select:nth-of-type(2):checked ~ .slide:nth-of-type(2) {
  opacity: 1;
}
/* When the 2nd slide is selected (do the same as for the 1st slide) */
.slide_select:nth-of-type(2):checked ~ .move_controler .button_move:nth-of-type(2) {
  opacity: 1;
}
/* When the 3rd slide is selected */
.slide_select:nth-of-type(3):checked ~ .slide:nth-of-type(3) {
  opacity: 1;
}
.slide_select:nth-of-type(3):checked ~ .move_controler .button_move:nth-of-type(3) {
  opacity: 1;
}
/* When the 4th slide is selected */
.slide_select:nth-of-type(4):checked ~ .slide:nth-of-type(4) {
  opacity: 1;
}
.slide_select:nth-of-type(4):checked ~ .move_controler .button_move:nth-of-type(4) {
  opacity: 1;
}
.button_move {
  display: none;
}
.slide .date-wrapper {
  left: 60px;
  top: -15px;
}
.date-wrapper {
  position: absolute;
  bottom: 10px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #191b1c;
  z-index: 2;
  transform: translateX(-35px);
  font-weight: bold;
}
@media (min-width: 769px) {
  .slideshow .date-wrapper {
    top: 0px;
    left: 33px;
  }
}
@media (max-width: 768px) {
  .carousel .date-wrapper {
    left: 50%;
    border: #707070 1px solid;
    color: #4E4E4E;
    top: 87%;
    transform: translateX(-50%);
    width: 75px;
    height: 75px;
  }
  .event-date {
    text-align: center;
  }
  .slide-card-title > p {
    max-width: 80%;
    margin: 0 auto;
  }
  .slide-card-lower-contents > .slide-card-btn {
    max-width: 80%;
  }
  /* Hide all slides initially */
.slide {
  display: none;
  pointer-events: none; /* Prevent interaction with hidden slides */
  opacity: 0.5; /* Optional: visually indicate the slide is inactive */
}

/* Show the active slide and make it interactive */
input[id="SlideA"]:checked ~ .slide:nth-of-type(1),
input[id="SlideB"]:checked ~ .slide:nth-of-type(2),
input[id="SlideC"]:checked ~ .slide:nth-of-type(3),
input[id="SlideD"]:checked ~ .slide:nth-of-type(4) {
  display: block;
  pointer-events: auto; /* Allow interaction with the active slide */
  opacity: 1; /* Restore appearance */
}	
}
.slide-img-date-wrapper {
  position: relative;
}
.slide-img {
  width: 400px;
  height: auto;
}
.slide-card-lower-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.slide-card-category {
  display: flex;
  flex-direction: row;
  margin-top: 45px;
}
.slide-card-category-icon {
  width: 43px;
  margin-right: 20px;
  height: 43px;
  object-fit: contain;
}
.slide-card-category-text {
  color: #191b1c;
  font-size: 1.875rem; /* 30px / 16px = 1.875rem */
  font-weight: 500;
  font-family: "futura-pt";
}
.slide-card-title {
  margin: 30px auto;
}
.slide-card-title > p {
  color: #191b1c;
  font-size: 1.625rem; /* 26px / 16px = 2.1875rem */
  font-style: italic;
  font-family: "futura-pt";
  min-height: 90px;
  text-align: center;
}
.slide-card-btn {
  width: 360px;
  height: 73px;
  max-width: 80%;
  border-radius: 40px;
  font-size: 1.125rem; /* 18px / 16px = 1.6875rem */
}
@media (min-width: 769px) {
  .carousel {
    display: none;
  }
  .slide-img {
    height: 400px;
  }
  .carousel label {
    display: none;
  }
  .contains {
    display: flex;
    width: auto;
    animation: slideRight 10s linear infinite;
  }
  @keyframes slideRight {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  .slide {
    position: relative;
    width: 500px;
    opacity: 1;
    flex-shrink: 0;
  }
  .scroll_controler, .move_controler {
    display: none;
  }
}
.contains:hover {
  animation-play-state: paused;
}

/* PC Slider */
.content {
  width: 400px;
  height: 400px;
}
.wrap {
  overflow: hidden;
  display: flex;
  height: 730px;
  margin-bottom: 40px;
}
.slideshow {
  display: flex;
  -webkit-animation: loop-slide 20s infinite linear 1s both;
  animation: loop-slide 20s infinite linear 1s both;
}
@-webkit-keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.slide-paused:hover .slideshow {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.content-hover {
  transition: all 0.2s;
  margin-right: 50px;
}
.content-hover:hover {
  transform: translateY(-20px);
  border-radius: 0 10%;
  box-shadow: 0 3px 10px 0 #333;
  opacity: 0.8;
  cursor: pointer;
}
@media (max-width: 768px) {
  .wrap {
    display: none;
  }
}
/* End of PCSlider*/
/*List Section Style*/
.list-title-wrapper {
  background-color: #BF272E;
  position: relative;
  width: 470px;
  height: 107px;
  margin: 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 80%;	
}
.list-title-wrapper > h1 {
  color: white;
}
.consulate-info-title-wrapper h2 {
  color: #191b1c;
  padding: 10px;
}
.consulate-info-text-wrapper {
  width: 100%;
  margin: 20px auto 60px;
  text-align: center;
}
@media (max-width: 768px) {
  .consulate-info-title-wrapper {
    width: 80%;
    margin: 0 auto;
  }
  .consulate-info-text-wrapper {
    width: 80%;
  }
  .consulate-info-text-wrapper > p {
    font-size: 1rem;
  }
  .list-title-wrapper > h1 {
  font-size: 1.5rem;
  }	
}
@media (min-width: 769px) {
  .consulate-info-text-wrapper {
    width: 80%;
  }
}
/* Accordion List */
.toggle {
  display: none;
}
.list-accordion {
  margin: 0px auto 80px;
  width: 80%;
}
.accordion-label {
  padding: 1em;
  display: block;
  color: #fff;
  background: #191b1c;
  position: relative;
  font-family: "futura-pt";
  letter-spacing: 1.12px;
}
.accordion-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
  transform: rotate(135deg);
}
.accordion-label, .accordion-content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.accordion-content {
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
}
.toggle:checked + .accordion-label + .accordion-content {
  height: auto;
  padding: 20px;
  transition: all .3s;
  min-height: 250px;
}
.toggle:checked + .accordion-label::before {
  transform: rotate(-45deg);
}
.accordion .accordion-label, .accordion .accordion-content {
  width: 90%;
  min-width: 300px;
  margin: 20px auto;
}
.accordion-card-wrapper {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  margin: 20px 0;
  padding: 10px 20px;
  background-color: #F2F2F2;
  color: black;
  box-shadow: 0px 3px 5px #0000001A;
  border-radius: 3px;
  opacity: 1;
}
.accordion-card-wrapper p {
  font-size: 0.875rem; /* 14px / 16px = 0.875rem */
  margin: 15px 0;
  text-align: center;
  word-break: break-word;
}
.accordion-card-wrapper a:hover {
  color: #bf272e;
}
.accordion-card-adress-wrapper, .accordion-card-phone-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.accordion-card-adress-wrapper > img, .accordion-card-phone-wrapper > img {
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
@media (min-width: 769px) {
  .list-accordion {
    display: none;
  }
}
@media (max-width: 768px) {
  .tabs {
    display: none;
  }
}
/*Tab Menu*/
.tab01 {
  width: 80%;
  margin: 0 auto 50px;
}
.tab_menu {
  width: calc(100%/6); /*6 tabs per line*/
  height: 60px;
  line-height: 60px;
  font-size: 1rem; /* 16px / 16px = 1rem */
  font-family: "futura-pt";
  letter-spacing: 1.12px;
  text-align: center;
  color: white;
  border-bottom: 3px solid #bf272e;
  background-color: #191b1c;
  display: block;
  float: left;
  transition: all 0.2s ease;
  overflow: hidden;
}
.tab_menu:hover {
  opacity: 0.75;
}
input[name="tab_menu"] {
  display: none;
}
.tab_contents {
  display: none;
  padding: 40px;
  clear: both;
  overflow: hidden;
  transition: .5s opacity;
  border: 2px solid #bf272e;
  background-color: #F2F2F2;
}
#northwest:checked ~ #northwest, #south:checked ~ #south, #midwest:checked ~ #midwest, #west:checked ~ #west, #pacific:checked ~ #pacific, #menu06:checked ~ #menu06, #agencies:checked ~ #agencies, #bonsai:checked ~ #bonsai, #books:checked ~ #books, #calligraphy:checked ~ #calligraphy, #clubs:checked ~ #clubs, #crafts:checked ~ #crafts, #dance:checked ~ #dance, #gardens:checked ~ #gardens, #ikebana:checked ~ #ikebana, #kimono:checked ~ #kimono, #language:checked ~ #language, #martial:checked ~ #martial, #music:checked ~ #music, #tea:checked ~ #tea, #translation:checked ~ #translation, #travel:checked ~ #travel {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
.tab01 input:checked + .tab_menu {
  background-color: #bf272e;
  color: #fff;
}
.tab-card-wrapper {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  width: calc(33.333% - 20px);
  margin: 20px 0;
  background-color: #FFFFFF;
  color: black;
  min-width: 220px;
  padding: 30px;
  box-shadow: 0px 3px 5px #0000001A;
  border-radius: 3px;
  opacity: 1;
}
.tab-card-wrapper p {
  font-size: 0.8125rem; /* 13px / 16px = 0.8125rem */
  margin: 15px 0;
  font-weight: 400;
  text-align: center;
  word-break: break-word;
}
.tab-card-wrapper a:hover {
  color: #bf272e;
}
.tab-card-adress-wrapper, .tab-card-phone-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.tab-card-adress-wrapper > img, .tab-card-phone-wrapper > img {
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
/*Text Only Page*/
.text-page-wrapper {
  width: 90%;
  margin: 30px 40px;
  align-self: center;	
}
.text-page-wrapper p {
  font-size: 1.18rem;
  font-weight: 300;
  letter-spacing: 1.12px;
  margin-bottom: 20px;
}
.text-page-wrapper h2 {
  margin: 30px 0;
  text-align: left;
}
.text-page-wrapper ul {
  margin-bottom: 30px;
}
.text-page-wrapper li {
  font-size: 1.1rem;
  font-weight: 400;
  font-family: "Noto Sans";
  letter-spacing: 1.12px;
  line-height: 1.6;
  text-align: left;
  margin: 10px 0 10px 40px;
  list-style: disc;
}
.text-page-wrapper a {
  color: #bf272e;
  font-weight: 400;
}
.text-page-wrapper ol li {
  list-style-type: inherit;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
.text-page-wrapper img {
  align-content: center;
  width: 100px;
}
.metro img {
  width: 600px;
}
.metro .text {
  text-align: center;
}
.sponsor img {
  width: 220px;
  padding: 20px 20px 0 0;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .text-page-wrapper {
    margin: 10px auto 60px;
  }
  .text-page-wrapper p {
    width: 90%;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1.12px;
    margin: 0 auto 20px;
  }
  .text-page-wrapper li {
    font-size: 1rem;
    margin: 10px 0 10px 50px;
  }
  .text-page-wrapper ol li {
    list-style-type: inherit;
  }
  .text-page-wrapper h2 {
    margin: 0 auto 20px;
	text-align: center;  
  }
  .last td:last-child {
    border-bottom: solid 1px #bf272e;
    width: 100%;
  }
  .newsletters {
    width: 90%;
	border: solid 1px #bf272e;  
  }
  .newsletters td {
　　border-bottom: none;	  
    display: block;
    width: 100%;
  }
  .newsletters th {
   display: none;	
  }	
}
/*Search bar*/
/*Search bar area*/
#search-wrap {
  position: relative;
}
/*Text Input Setting*/
#search-text {
  -webkit-appearance: none;
  width: 50px;
  height: 50px;
  padding: 20px;
  border: none;
  background: url("https://www.us.emb-japan.go.jp/jicc/images/icons/white-search-icon.png") no-repeat 17px center; /*magnifying glass icon*/
  background-size: 25px 25px;
  transition: all 0.5s;
  outline: none;
  cursor: pointer;
  color: white;
  margin-top: -10px;
}
/*When Clicked*/
#search-text:focus {
  width: 250px; /*text area*/
  padding: 20px 0 20px 60px;
  box-shadow: 0 2px rgba(255, 255, 255); /*underline*/
}
/*Search Results Page*/
.gsc-control-cse .gs-spelling, .gsc-control-cse .gs-result .gs-title, .gsc-control-cse .gs-result .gs-title * {
  font-size: 16px;
  text-align: left;
}
.gs-web-image-box, .gs-promotion-image-box {
  padding: 5px 15px 5px 0;
  text-align: left;
}
/*FAQ Page*/
.accordion-faq {
  margin: 3em auto;
  max-width: 100%;
}
.toggle-faq {
  display: none;
}
.option-faq {
  position: relative;
  margin-bottom: 1em;
}
.title-faq, .content-faq {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.title-faq {
  border: solid 1px #f2f2f2;
  background-color: #f2f2f2;
  padding: 1em;
  display: block;
  color: #191b1c;
  font-weight: bold;
  text-align: left;
}
.title-faq::after, .title-faq::before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 1.25em;
  width: 2px;
  height: 0.75em;
  background-color: #BF272E;
  transition: all 0.3s;
}
.title-faq::after {
  transform: rotate(90deg);
}
.content-faq {
  max-height: 0;
  overflow: hidden;
}
.content-faq p {
  margin: 0;
  padding: 0.5em 1em 1em;
  font-size: 1em;
  line-height: 1.5;
}
.toggle-faq:checked + .title-faq + .content-faq {
  max-height: 500px;
  transition: all 1.5s;
}
.toggle-faq:checked + .title-faq::before {
  transform: rotate(90deg) !important;
}
/*Events, Films Page List*/
.thumbnail-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
  margin-left: inherit;
}
.thumbnail-wrap img {
  width: 100%;
  margin-bottom: 20px;
}
.thumbnail-item {
  padding: 30px;
  width: 32%;
  background-color: #fff;
}
.thumbnail-item-horizontal {
  padding: 30px;
  width: 64%;
  background-color: #fff;
}
.thumbnail-item-horizontal h2 {
  text-align: center;
}
.learn-more-btn-sm {
  width: 135px;
  height: 45px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 40px;
}
.date {
  text-align: center;
  margin-top: 20px;
  letter-spacing: 1.12px;
  line-height: 1.6;
}
.past-events {
  padding: 20px 60px 20px 60px;
  margin: 0 40px 0 40px;
}
.text-page-wrapper-policy {
  width: 90%;
  margin: 0 40px 20px 40px;
}
.text-page-wrapper-policy p {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 1.12px;
  margin-bottom: 40px;
}
@media not all and (min-width: 768px) {
  .thumbnail-item {
    width: 100%;
  }
  .thumbnail-item:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .past-events {
    padding: 10px;
  }
  .past-events li {
    margin: 10px 10px 10px 10px;
  }
  .text-page-wrapper-policy {
    width: 80%;
    margin: 0 auto 60px;
  }
  .thumbnail-item-horizontal {
    width: 100%;
  }
}