@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MyriadPro-400.otf");
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MyriadPro-300.otf");
  font-weight: 300;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MyriadPro-500.otf");
  font-weight: 500;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MyriadPro-600.otf");
  font-weight: 600;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-400.ttf");
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-200.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-300.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-500.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-600.ttf");
  font-weight: 600;
}
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0px;
}

body {
  font-family: "Myriad Pro", arial;
  line-height: 1;
  color: #3d3d3d;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.section-wrapper {
  overflow: hidden;
}

.section {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1680px;
  margin: auto;
  padding: 0px 25px;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
   color: #5d5d5d;
}

.detail-row a {
  text-decoration: none;
  color: #188840;
}

.detail-row a:hover {
   text-decoration:underline;
}
content {
  flex-grow: 1;
  position: relative;
}

@media (max-width: 1200px) {
  .section {
    padding: 0px 50px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 0px 15px;
  }
}
.scroll-to-top {
  z-index: 50;
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 50px;
  height: auto;
  aspect-ratio: 1;
  background-image: url("../icons/icon-stp.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (min-width: 1830px) {
  .scroll-to-top {
    right: calc((100% - 1680px - 50px - 50px) / 2);
  }
}
.site-header {
  position: relative;
  height: 145px;
  display: flex;
  z-index: 10;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0784313725);
}
.site-header .mobile-menu-icon {
  display: none;
}
.site-header .header-wrapper {
  max-width: 1680px;
  width: 100%;
  padding: 0px 25px;
  margin: 0px auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.site-header .logo {
  width: 240px;
  margin-right: 30px;
}
.site-header .logo img {
  width: 100%;
  height: auto;
  aspect-ratio: 240/115;
  object-fit: contain;
}
.site-header nav {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  height: 100%;
}
.site-header nav ul {
  display: flex;
  justify-content: space-between;
  max-width: 824px;
  width: 100%;
}
.site-header nav ul li {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 32px;
}
.site-header nav ul li a {
  display: flex;
  align-items: center;
}
.site-header nav ul li.contain-float-menu > a::after {
  content: "";
  display: inline-block;
  width: 16px;
  margin-left: 12px;
  height: auto;
  aspect-ratio: 1;
  background-image: url("../icons/icon-arrow-header.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transform: rotate(0deg);
  transition: 0.2s transform;
}
.site-header nav ul li .float-menu-wrapper {
  position: absolute;
  z-index: 1;
  left: 0px;
  top: 100%;
  pointer-events: none;
}
.site-header nav ul li .float-menu {
  margin-left: -35px;
  padding: 30px 35px;
  background-color: #ffffff;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.0784313725);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s opacity;
}
.site-header nav ul li .float-menu span {
  display: block;
  font-weight: 400;
  font-size: 19px;
  line-height: 38px;
  white-space: nowrap;
}
.site-header nav ul li.active .float-menu {
  opacity: 1;
  pointer-events: all;
}
.site-header nav ul li.active.contain-float-menu > a::after {
  transform: rotate(180deg);
}



@media (max-width: 1200px) {
  .scroll-to-top {
    right: 50px;
    bottom: 50px;
    width: 40px;
  }
  .site-header {
    height: 116px;
  }
  .site-header .header-wrapper {
    padding: 0px 50px;
  }
  .site-header .logo {
    width: 200px;
    margin-right: 10px;
  }
  .site-header nav ul {
    max-width: 601px;
  }
  .site-header nav ul li {
    font-size: 18px;
    padding-bottom: 21px;
  }
  .site-header nav ul li.contain-float-menu > a::after {
    margin-left: 10px;
    width: 14px;
  }
  .site-header nav ul li .float-menu {
    margin-left: -26px;
    padding: 14px 26px;
  }
  .site-header nav ul li .float-menu span {
    font-weight: 300;
    font-size: 18px;
    line-height: 38px;
  }
}
@media (max-width: 880px) {
  .site-header nav ul li {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .scroll-to-top {
    right: 15px;
    bottom: 15px;
    width: 40px;
  }
  .site-header {
    height: 87px;
  }
  .site-header .mobile-menu-icon {
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 12px;
  }
  .site-header .header-wrapper {
    padding: 0px 15px;
  }
  .site-header .logo {
    width: 150px;
  }
  .site-header nav {
    display: none;
    background-color: #ffffff;
    position: absolute;
    right: 0px;
    top: 87px;
    padding: 53px;
    height: auto;
  }
  .site-header nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 34px;
  }
  .site-header nav ul li {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0px;
  }
  .site-header nav ul li .float-menu-wrapper {
    position: relative;
    height: 0px;
    left: 0px;
    top: 0px;
  }
  .site-header nav ul li .float-menu {
    min-width: 240px;
    position: relative;
    box-shadow: none;
    padding-top: 12px;
    padding-bottom: 0px;
  }
  .site-header nav ul li.contain-float-menu > a::after {
    margin-left: 25px;
  }
  .site-header nav ul li.active .float-menu-wrapper {
    height: auto;
  }
  .site-header nav.active {
    display: block;
  }
}
.debug-overlay {
  z-index: 100;
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  left: 0px;
  top: 0px;
  opacity: 0.2;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 700px;
  background-image: url("../images/footer-background.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.site-footer .mobile-social-links {
  display: none;
}
.site-footer .footer-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 1680px;
  padding: 0px 25px;
  padding-top: 316px;
  padding-bottom: 49px;
  margin: 0px auto;
  align-items: center;
  justify-content: space-between;
  gap: 62px;
}
.site-footer .row {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.site-footer .logo {
  width: 240px;
  height: auto;
  aspect-ratio: 240/115;
  margin-right: 30px;
}
.site-footer .col-1 {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.site-footer .social-links {
  display: flex;
  gap: 35px;
}
.site-footer .social-links img {
  opacity: 0.8;
  width: 33px;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}
.site-footer .site-map {
  margin-top: 79px;
  flex-grow: 1;
  max-width: 1150px;
  justify-content: space-between;
  display: flex;
}
.site-map li {
    min-width: 100px;
}
.site-footer .site-map li > a {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #5c31a7;
}
.site-footer .site-map li .sub-items {
  margin-top: 17px;
  display: flex;
  flex-direction: column;
}
.site-footer .site-map li .sub-items > a {
  font-weight: 400;
  font-size: 20px;
  line-height: 36px;
  color: #5c31a7;
}
.site-footer .copy-right {
  display: flex;
  gap: 40px;
  opacity: 0.8;
}
.site-footer .copy-right p {
  font-family: "Lato";
  font-weight: 300;
  font-size: 16px;
  line-height: 100%;
  color: #6b676b;
}
.site-footer .copy-right > div {
  display: flex;
  gap: 40px;
}

@media (max-width: 1200px) {
  .site-footer {
    height: 500px;
  }
  .site-footer .footer-wrapper {
    padding: 0px 50px;
    padding-bottom: 27px;
    gap: 46px;
  }
  .site-footer .logo {
    width: 200px;
  }
  .site-footer .social-links {
    display: flex;
    gap: 42px;
  }
  .site-footer .social-links img {
    opacity: 1;
    width: 27px;
  }
  .site-footer .site-map {
    margin-top: 58px;
    max-width: 540px;
    flex-wrap: wrap;
    gap: 5px 0px;
  }
  .site-footer .site-map li {
    width: 50%;
  }
  .site-footer .site-map li > a {
    font-size: 21px;
    line-height: 28px;
  }
  .site-footer .site-map li .sub-items {
    margin-top: 0px;
  }
  .site-footer .site-map li .sub-items > a {
    font-size: 21px;
    line-height: 37px;
  }
  .site-footer .site-map li:nth-child(2) {
    order: 3;
  }
  .site-footer .site-map li:nth-child(3) {
    order: 5;
  }
  .site-footer .site-map li:nth-child(4) {
    order: 4;
  }
  .site-footer .site-map li:nth-child(5) {
    order: 6;
  }
  .site-footer .site-map li:nth-child(6) {
    order: 2;
  }
  .site-footer .copy-right {
    gap: 20px;
    width: 100%;
  }
  .site-footer .copy-right > div {
    gap: 20px;
  }
  .site-footer .copy-right p:last-child {
    flex-grow: 1;
    text-align: right;
  }
}
@media (max-width: 850px) {
  .site-footer .copy-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .site-footer {
    height: 480px;
    background-image: url("../images/footer-background-mobile.png");
    background-position: center top;
  }
  .site-footer .footer-wrapper {
    padding: 0px 15px;
    padding-bottom: 27px;
    gap: 18px;
  }
  .site-footer .logo {
    width: 156px;
  }
  .site-footer .row {
    flex-direction: column;
    align-items: center;
  }
  .site-footer .social-links {
    display: none;
  }
  .site-footer .site-map {
    max-width: 376px;
    margin-top: 27px;
    gap: 5px 0px;
  }
  .site-footer .site-map li {
    width: 50%;
  }
  .site-footer .site-map li > a {
    font-size: 18px;
    line-height: 28px;
  }
  .site-footer .site-map li .sub-items {
    margin-top: 0px;
  }
  .site-footer .site-map li .sub-items > a {
    font-size: 18px;
    line-height: 28px;
  }
  .site-footer .copy-right {
    gap: 6px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .site-footer .copy-right p:last-child {
    flex-grow: 1;
    text-align: center;
    width: 100%;
  }
  .site-footer .copy-right > div {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .site-footer .copy-right .mobile-social-links {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .site-footer .copy-right .mobile-social-links img {
    width: 27px;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
  }
}
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.lightbox-modal.hidden {
  display: none;
}
.lightbox-modal .lightbox-content {
  position: relative;
  margin-top: 50px;
  max-width: 1630px;
  width: calc(100% - 50px);
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-modal .lightbox-content .lightbox-close {
  position: absolute;
  top: calc(-6%);
  right: 0;
  background-image: url("../icons/icon-close.svg");
  background-size: contain;
  width: 35px;
  aspect-ratio: 1;
  cursor: pointer;
  z-index: 10;
}
.lightbox-modal .lightbox-content img,
.lightbox-modal .lightbox-content video {
  max-width: 90%;
  margin: 0 auto;
  max-height: calc(100% - 60px - 6% - 40px);
  display: block;
}

@media (max-width: 1200px) {
  .lightbox-modal .lightbox-content {
    margin-top: 40px;
    max-width: calc(100% - 100px);
  }
  .lightbox-modal .lightbox-content .lightbox-close {
    top: calc(-26px - 6%);
    width: 26px;
  }
  .lightbox-modal .lightbox-content img,
  .lightbox-modal .lightbox-content video {
    max-width: 100%;
    max-height: 94%;
    display: block;
  }
}
@media (max-width: 768px) {
  .lightbox-modal .lightbox-content {
    max-width: calc(100% - 30px);
    width: 100%;
  }
}
input,
textarea {
  font-weight: 500;
  font-size: 21px;
  line-height: 35px;
  font-family: "Myriad Pro";
  color: #947a5e;
  border: 1px rgba(148, 122, 94, 0.6) solid;
  padding: 12px 15px 15px 15px;
}
input::placeholder,
textarea::placeholder {
  font-weight: 500;
  color: #947a5e;
}

div.select {
  display: inline-block;
}
div.select label {
  display: flex;
  justify-content: space-between;
  color: #947a5e;
  border: 1px rgba(148, 122, 94, 0.6) solid;
  font-weight: 500;
  font-size: 20px;
  line-height: 35px;
  padding: 10px 20px 6px 40px;
  min-width: 254px;
}
div.select label::after {
  content: "";
  display: inline-block;
  top: 50%;
  width: 18px;
  height: auto;
  margin-left: 20px;
  aspect-ratio: 13/6;
  transform: rotate(0deg);
  transition: 0.2s transform;
  background-image: url("../icons/icon-arrow-select.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
div.select .float-menu {
  position: absolute;
  z-index: 5;
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.1019607843);
  top: 100%;
  left: 0px;
  min-width: 100%;
  display: none;
  flex-direction: column;
  background-color: #ffffff;
  padding: 9px 40px;
}
div.select .float-menu span {
  font-weight: 400;
  font-size: 20px;
  line-height: 37px;
  vertical-align: middle;
  white-space: nowrap;
}
div.select.active label::after {
  transform: rotate(180deg);
}
div.select.active .float-menu {
  display: flex;
}

.tabs {
  display: flex;
  width: 100%;
  gap: 25px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

a.tab {
  scroll-snap-align: start;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #f7f7f7;
  padding-top: 60px;
  padding-bottom: 47px;
  flex: 0 0 calc((100% - 75px) / 4);
}
a.tab p.day {
  font-weight: 500;
  font-size: 90px;
  line-height: 100%;
  color: #349655;
}
a.tab p sup {
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  color: #349655;
  vertical-align: top;
  position: relative;
  top: 10px;
  margin-left: 3px;
}
a.tab p.title {
  font-weight: 500;
  font-size: 38px;
  line-height: 50px;
  color: #947a5e;
  margin-top: 9px;
}
a.tab p.year {
  margin-top: 5px;
  font-weight: 700;
  font-size: 21px;
  line-height: 35px;
  color: #858585;
}
a.tab.active {
  background-color: #d4e8b4;
}
a.tab.active p.title {
  color: #707070;
}
a.tab.active p.year {
  color: #707070;
}

a {
  cursor: pointer;
}
a.button {
  display: inline-block;
  padding: 10px 40px 8px 40px;
  color: #947a5e;
  min-width: 242px;
  border: 1px rgba(148, 122, 94, 0.6) solid;
  font-family: "Myriad Pro";
  font-weight: 500;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
}
a.button:hover {
  background-color: #947a5e;
  color: white;
}
a.dark-button {
  cursor: pointer;
  display: inline-block;
  padding: 10px 40px;
  color: #b99976;
  background-color: #947a5e;
  min-width: 222px;
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
  color: white;
}
a.dark-button:hover {
  background-color: #5c31a7;
}
a.dark-button.small-dark-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11px 0px 7px 0px;
  min-width: 129px;
  font-size: 21px;
  line-height: 1;
}

h1 {
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  color: #188840;
}
h1.hero-text {
  font-weight: 700;
  font-size: 47px;
  line-height: 50px;
}

h2 {
  font-weight: 700;
  font-size: 38px;
  line-height: 42px;
  color: #188840;
  margin-bottom: 10px;
}

h3 {
  font-weight: 500;
  font-size: 29px;
  line-height: 31px;
  color: #188840;
  margin-bottom: 10px;
}

h4 {
  font-weight: 500;
  font-size: 34px;
  line-height: 36px;
  color: #188840;
 margin-bottom: 10px;
}

div.breadcrumb > span {
    margin-left: 13px;
    margin-right: 13px;
}

div.breadcrumb {
    margin-top: 6px;
    font-weight: 300;
    font-size: 19px;
    line-height: 28px;
    color: #959595;
}

p {
  font-weight: 300;
  font-size: 20px;
  line-height: 36px;
}
p.detail-content-text, p.detail-content-p-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 36px;
  color: #858585;
}
p.quote {
  font-weight: 700;
  font-size: 35px;
  line-height: 50px;
  color: #707070;
}
p.strong {
  display: block;
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
}
p.content {
  font-weight: 300;
  font-size: 20px;
  line-height: 36px;
}
p.content-bold {
  font-weight: 500;
  font-size: 26px;
  color: #858585;
}
p.card-title {
  font-weight: 500;
  font-size: 21px;
  line-height: 35px;
  color: #188840;
}
p.card-date {
  font-weight: 500;
  font-size: 21px;
  line-height: 35px;
  color: #858585;
}
p.more {
  font-weight: 400;
  font-size: 26px;
  line-height: 40px;
  color: #947a5e;
}
p.event-item-text {
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  color: #858585;
}
p.small {
  display: block;
  font-weight: 300;
  font-size: 19px;
  line-height: 28px;
}

.event-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 2px;
}

.story-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
  padding-bottom: 20px;
  margin-bottom: 2px;
}
.story-cards .story-card {
  flex: 0 0 calc((100% - 40px) / 3);
}

.story-card {
  scroll-snap-align: start;
  background-color: #ffffff;
  overflow: hidden;
  border-top-right-radius: 50px;
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.1019607843);
}
.story-card p.strong {
  margin-bottom: 13px;
}
.story-card p.small {
  margin-bottom: 30px;
}
.story-card .event-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.story-card .event-meta .event-item-text {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
.story-card .event-meta img {
  margin-top: -4px;
  width: 22px;
  height: 22px;
  object-fit: contain;
  object-position: top center;
  aspect-ratio: 1;
}
.story-card .image-wrapper {
  position: relative;
  overflow: hidden;
  max-height:600px;
}
.story-card .play-button {
  position: absolute;
  top: calc((100% - 148px) / 2);
  left: calc((100% - 148px) / 2);
  width: 148px;
  height: auto;
  aspect-ratio: 1;
  background-image: url("../icons/icon-play.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.story-card img {
  width: 100%;
  /* height: auto; */
  aspect-ratio: 585/390;
}
.story-card .text-content {
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.story-card .row-media-title {
  display: flex;
  justify-content: space-between;
  padding-top: 2px;
  padding-bottom: 13px;
}

.story-slider {
  position: relative;
}
.story-slider .story-cards {
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.story-slider .story-cards::-webkit-scrollbar {
  display: none;
}
.story-slider .arrow {
  cursor: pointer;
  position: absolute;
  top: calc(50% - 100px);
  z-index: 1;
  width: 60px;
  height: auto;
  aspect-ratio: 1;
  background-image: url("../icons/icon-arrow.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  pointer-events: all;
}
.story-slider .arrow.arrow-left {
  left: 25px;
  transform: rotate(180deg);
}
.story-slider .arrow.arrow-right {
  right: 25px;
}
@media (min-width: 1840px) {
  .story-slider .arrow.arrow-left {
    left: calc((100% - 1680px - 50px - 60px) / 2);
  }
  .story-slider .arrow.arrow-right {
    right: calc((100% - 1680px - 50px - 60px) / 2);
  }
}
.story-slider.mobile-story-banner .story-cards {
  flex-wrap: wrap;
}
.story-slider.mobile-story-banner .arrow {
  display: none;
}

.section-hero-wrapper {
  background-image: url("../images/general-hero-background.png");
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  position: relative;
  height: 650px;
  pointer-events: none;
}
.section-hero-wrapper .section-hero-background-container {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: 0px;
  top: 0px;
  padding-bottom: 30px;
  background-image: url("../images/general-hero-background-part.png");
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  width: 100%;
}
@media (min-width: 1680px) {
  .section-hero-wrapper .section-hero-background-container {
    width: calc(100% - (100% - 1680px) / 2);
  }
}
.section-hero-wrapper .section-hero-background {
  width: 100%;
  display: none;
}
.section-hero-wrapper .section-hero-background .shadow-wrapper {
  width: 100%;
  filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.2509803922)); /* Shadow follows visible shape */
}
.section-hero-wrapper .section-hero-background img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: left top;
  -webkit-mask-image: url("../images/general-hero-mask.png");
  mask-image: url("../images/general-hero-mask.png");
  mask-repeat: no-repeat;
}
.section-hero-wrapper .hero-text-container {
  max-width: 735px;
  margin-top: 362px;
  pointer-events: all;
}

.round-corner-box {
  border-top-right-radius: 80px;
  border-bottom-left-radius: 80px;
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.2509803922);
}

.event-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 2px;
}
.event-cards .event-card {
  flex: 0 0 calc((100% - 40px) / 3);
}

.event-card {
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 38px;
}
.event-card p.strong {
  margin-bottom: 13px;
}
.event-card p.small {
  margin-bottom: 30px;
}
.event-card .event-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.event-card .event-meta .event-item-text {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
.event-card .event-meta img {
  margin-top: -4px;
  width: 22px;
  height: 22px;
  object-fit: contain;
  object-position: top center;
  aspect-ratio: 1;
}

.load-more-wrapper {
  margin-top: 58px;
  display: flex;
  justify-content: center;
}

.image-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
}
.image-cards .image-card {
  display: flex;
  flex: 0 0 calc((100% - 60px) / 4);
}
.image-cards .image-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 423/284;
}
.image-cards .flex-grow-item {
  flex-grow: 1;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 60px;
  z-index: 3;
}
.slider-dots .dot {
  cursor: pointer;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #d9d9d9;
}
.slider-dots .dot.active {
  background-color: #947a5e;
}
.slider-dots .dot.mobile-dot {
  display: none;
}

.mobile-story-slider .dots {
  display: none;
}

.desktop-story-slider .dots {
  display: flex;
}
.desktop-story-slider .dots .dot {
  display: none;
}
.desktop-story-slider .dots .dot:nth-child(3n+1) {
  display: inline-block;
}
.desktop-story-slider .story-cards {
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-direction: row;
}
.desktop-story-slider .story-cards::-webkit-scrollbar {
  display: none;
}

.lightbox-object {
  cursor: pointer;
}

@media (max-width: 1200px) {
  input,
  textarea {
    font-size: 18px;
    line-height: 30px;
    padding: 4px 15px 3px 15px;
  }
  div.select label {
    font-size: 18px;
    line-height: 22px;
    padding: 12px 20px 12px 20px;
    min-width: 176px;
  }
  div.select label::after {
    width: 13px;
  }
  div.select .float-menu {
    padding: 9px 20px;
  }
  div.select .float-menu span {
    font-size: 18px;
  }
  a {
    cursor: pointer;
  }
  a.button {
    padding: 5px 20px 4px 20px;
    min-width: 143px;
    font-size: 18px;
    line-height: 35px;
  }
  a.dark-button {
    padding: 6px 20px 5px 20px;
    min-width: 144px;
    font-size: 18px;
    line-height: 35px;
  }
  a.dark-button.small-dark-button {
    padding: 5px 10px 4px 10px;
    min-width: 100px;
    font-size: 18px;
    line-height: 35px;
  }
  h1 {
    font-size: 32px;
    line-height: 42px;
  }
  h1.hero-text {
    font-size: 32px;
    line-height: 42px;
  }
  h2 {
    font-size: 26px;
    line-height: 38px;
    margin-bottom: 19px;
  }
  h3 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px;
  }
  h4 {
    font-size: 26px;
    line-height: 38px;
    margin-bottom: 6px;
  }
  div.breadcrumb {
    margin-top: 9px;
    font-size: 16px;
    line-height: 26px;
  }
  div.breadcrumb > span {
    margin-left: 13px;
    margin-right: 13px;
  }
  p {
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
  }
  p.detail-content-text {
    font-size: 16px;
    line-height: 26px;
  }
  p.detail-content-p-text {
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
  }
  p.quote {
    font-size: 26px;
    line-height: 38px;
  }
  p.strong {
    font-size: 20px;
    line-height: 28px;
  }
  p.content {
    font-size: 18px;
    line-height: 30px;
  }
  p.content-bold {
    font-size: 20px;
    line-height: 28px;
  }
  p.content-small {
    font-size: 16px;
    line-height: 26px;
  }
  p.card-title {
    font-size: 16px;
    line-height: 26px;
  }
  p.card-date {
    font-size: 16px;
    line-height: 26px;
  }
  p.more {
    font-size: 21px;
    line-height: 36px;
  }
  p.event-item-text {
    font-size: 16px;
    line-height: 26px;
  }
  p.small {
    font-size: 18px;
    line-height: 30px;
  }
  .story-cards {
    gap: 25px 10px;
	padding-top: 30px;
    padding-bottom: 20px;
  }
  .story-cards .story-card {
    flex: 0 0 calc((100% - 10px) / 2);
  }
  .story-card {
    border-top-right-radius: 37px;
  }
  .story-card .play-button {
    top: calc((100% - 112px) / 2);
    left: calc((100% - 112px) / 2);
    width: 109.6px;
  }
  .story-card .text-content {
    padding: 20px 25px;
    gap: 1px;
  }
  .story-card .row-media-title {
    padding-top: 0px;
    padding-bottom: 8px;
  }
  .story-slider .arrow {
    width: 40px;
    top: calc(50% - 40px);
  }
  .story-slider .arrow.arrow-left {
    left: -25px;
  }
  .story-slider .arrow.arrow-right {
    right: -25px;
  }
  .story-slider.mobile-story-banner .story-cards {
    flex-wrap: wrap;
  }
  .story-slider.mobile-story-banner .arrow {
    display: none;
  }
  .mobile-story-slider {
    position: relative;
  }
  .mobile-story-slider .story-cards {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-direction: row;
  }
  .mobile-story-slider .story-cards::-webkit-scrollbar {
    display: none;
  }
  .mobile-story-slider .dots {
    display: flex;
  }
  .mobile-story-slider .dots .dot:last-child {
    display: none;
  }
  .mobile-story-slider .dots .dot.dot:nth-child(2n+1) {
    display: inline-block;
  }
  .section-hero-wrapper {
    height: 262px;
  }
  .section-hero-wrapper .section-hero-background-container {
    width: calc(100% - 140px);
    padding-bottom: 7px;
    background-image: url("../images/general-hero-background-part-small.png");
    background-size: 100% 100%;
  }
  .section-hero-wrapper .section-hero-background img {
    height: 229px;
    object-position: center center;
    -webkit-mask-image: url("../images/general-hero-mask-small.png");
    mask-image: url("../images/general-hero-mask-small.png");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  .section-hero-wrapper .hero-text-container {
    max-width: 385px;
    margin-top: 136px;
  }
  .load-more-wrapper {
    margin-top: 27px;
  }
  .event-cards {
    gap: 10px;
    padding-bottom: 0px;
    margin-bottom: 23px;
  }
  .event-cards .event-card {
    flex: 0 0 calc((100% - 10px) / 2);
  }
  .event-card {
    padding: 24px;
  }
  .event-card p.strong {
    margin-bottom: 7px;
  }
  .event-card p.small {
    margin-bottom: 30px;
  }
  .event-card .event-meta {
    gap: 10px;
  }
  .event-card .event-meta .event-item-text {
    gap: 20px;
  }
  .event-card .event-meta img {
    margin-top: 2px;
    width: 17px;
    height: 17px;
  }
  .image-cards {
    gap: 10px;
    justify-content: flex-start;
  }
  .image-cards .image-card {
    flex: 0 0 calc((100% - 20px) / 3);
  }
  a.tab {
    padding-top: 30px;
    padding-bottom: 14px;
    flex: 0 0 calc((100% - 75px) / 4);
  }
  a.tab p.day {
    font-size: 44px;
  }
  a.tab p sup {
    font-size: 16px;
    line-height: 26px;
    top: 0px;
    margin-left: 3px;
  }
  a.tab p.title {
    font-size: 21px;
    line-height: 1;
    margin-top: 2px;
  }
  a.tab p.year {
    margin-top: 1px;
    font-size: 16px;
    line-height: 26px;
  }
  .slider-dots {
    gap: 43px;
  }
  .slider-dots .dot {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 768px) {
  a.dark-button {
    padding: 4px 20px 3px 20px;
    min-width: 84px;
    font-size: 10.5px;
    line-height: 20.3px;
  }
  h1 {
    font-size: 24px;
    line-height: 26px;
  }
  h1.hero-text {
    font-size: 24px;
    line-height: 26px;
  }
  h2 {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 30px;
  }
  h4 {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 23px;
  }
  div.breadcrumb {
    display: none;
  }
  p.detail-content-text {
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
  }
  p.quote {
    font-size: 20px;
    line-height: 28px;
    color: #3d3d3d;
    font-weight: 500;
  }
  p.event-item-text {
    font-size: 18px;
    line-height: 30px;
  }
  p.card-title {
    font-size: 18px;
    line-height: 30px;
  }
  p.card-date {
    font-size: 18px;
    line-height: 30px;
  }
  .story-cards {
    gap: 20px 10px;
    padding-bottom: 20px;
  }
  .story-cards .story-card {
    flex: 0 0 100%;
  }
  .story-card {
    border-top-right-radius: 50px;
  }
  .story-card .play-button {
    top: calc((100% - 94px) / 2);
    left: calc((100% - 94px) / 2);
    width: 94px;
  }
  .story-card .text-content {
    padding: 25px 30px;
    gap: 1px;
  }
  .story-card .row-media-title {
    padding-top: 0px;
    padding-bottom: 8px;
  }
  .story-slider {
    position: relative;
    display: flex;
    justify-content: center;
  }
  .story-slider .story-cards {
    width: calc(100% - 78px);
    box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.1019607843);
    border-top-right-radius: 50px;
    margin-bottom: 20px;
  }
  .story-slider .story-cards .story-card {
    box-shadow: none;
  }
  .story-slider .arrow {
    width: 50px;
    top: calc(50% - 40px);
  }
  .story-slider .arrow.arrow-left {
    left: 0px;
  }
  .story-slider .arrow.arrow-right {
    right: 0px;
  }
  .story-slider.mobile-story-banner .story-cards {
    flex-wrap: nowrap;
  }
  .story-slider.mobile-story-banner .arrow {
    display: block;
  }
  .mobile-story-slider {
    position: relative;
  }
  .mobile-story-slider .story-cards {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-direction: row;
  }
  .mobile-story-slider .story-cards::-webkit-scrollbar {
    display: none;
  }
  .mobile-story-slider .dots {
    display: flex;
  }
  .mobile-story-slider .dots .dot:last-child {
    display: inline-block;
  }
  .section-hero-wrapper {
    height: 212px;
  }
  .section-hero-wrapper .section-hero-background-container {
    width: calc(100% + 50px);
    padding-bottom: 5px;
  }
  .section-hero-wrapper .section-hero-background img {
    height: 168px;
  }
  .section-hero-wrapper .hero-text-container {
    max-width: 230px;
    margin-top: 136px;
  }
  .event-cards {
    padding-bottom: 0px;
    margin-bottom: 23px;
    gap: 20px;
  }
  .event-cards .event-card {
    flex: 0 0 100%;
  }
  .event-card {
    padding: 30px;
  }
  .event-card p.strong {
    margin-bottom: 7px;
  }
  .event-card p.small {
    margin-bottom: 20px;
  }
  .event-card .event-meta {
    gap: 11px;
  }
  .event-card .event-meta .event-item-text {
    gap: 20px;
  }
  .event-card .event-meta img {
    margin-top: 4px;
    width: 19px;
    height: 19px;
  }
  .image-cards {
    gap: 8px;
    justify-content: flex-start;
  }
  .image-cards .image-card {
    flex: 0 0 calc((100% - 8px) / 2);
  }
  .tabs {
    gap: 5px;
  }
  a.tab {
    padding-top: 25px;
    padding-bottom: 18px;
    flex: 0 0 calc((100% - 15px) / 4);
  }
  a.tab p.title {
    font-size: 18px;
    margin-top: 6px;
  }
  a.tab p.year {
    margin-top: 2px;
  }
  .round-corner-box {
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .slider-dots {
    gap: 29px;
  }
  .slider-dots .dot {
    width: 9px;
    height: 9px;
  }
  .slider-dots .dot.mobile-dot {
    display: block;
  }
}
@media (max-width: 500px) {
  .section-hero-wrapper .hero-text-container {
    max-width: 180px;
  }
}
.section-hero-background {
  display: none;
}
.section-hero-background.section-hero-background-desktop {
  display: block;
}

.home-hero-section-wrapper {
  width: 100%;
  height: 1010px;
  display: flex;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}
.home-hero-section-wrapper .hero-items {
  display: flex;
  position: relative;
  scroll-behavior: smooth;
  width: 100%;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.home-hero-section-wrapper .hero-items::-webkit-scrollbar {
  display: none;
}
.home-hero-section-wrapper .hero-item {
  scroll-snap-align: start;
  width: 100%;
  height: 100%;
  min-width: 100%;
  flex-shrink: 0;
  transition: transform 0.4s;
  position: relative;
}
.home-hero-section-wrapper .section-hero-background {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
.home-hero-section-wrapper .home-hero-section {
  height: 100%;
  position: relative;
}
.home-hero-section-wrapper .center-wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  pointer-events: none;
}
.home-hero-section-wrapper .hero-content {
  pointer-events: all;
  display: flex;
  align-items: center;
  height: 100%;
  padding-bottom: 388px;
  margin-left: calc(50% - 100px);
  padding-left: 100px;
  padding-right: 100px;
  background-image: url("../images/home-hero-text-background.png");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}
.home-hero-section-wrapper .dark-button {
  position: absolute;
  right: 25px;
  bottom: 70px;
  pointer-events: all;
}
.home-hero-section-wrapper .dots {
  pointer-events: all;
  cursor: pointer;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 40px;
  left: 0px;
  width: 100%;
  gap: 50px;
}
.home-hero-section-wrapper .dots .dot {
  width: 10px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #cfe5a9;
  transition: background-color 0.4s;
}
.home-hero-section-wrapper .dots .dot.active {
  width: 15px;
  background-color: #2d9017;
}
.home-hero-section-wrapper .arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 60px;
  height: auto;
  aspect-ratio: 1;
  background-image: url("../icons/icon-arrow.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  pointer-events: all;
}
.home-hero-section-wrapper .arrow.arrow-left {
  left: 25px;
  transform: rotate(180deg);
}
.home-hero-section-wrapper .arrow.arrow-right {
  right: 25px;
}
@media (min-width: 1840px) {
  .home-hero-section-wrapper .arrow.arrow-left {
    left: calc((100% - 1680px - 50px - 60px) / 2);
  }
  .home-hero-section-wrapper .arrow.arrow-right {
    right: calc((100% - 1680px - 50px - 60px) / 2);
  }
}

.general-background-1 {
  padding-top: 20px;
  background-image: url("../images/home-background-1-paddingTop.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
}

.general-background-2 {
  padding-top: 20px;
  background-image: url("../images/home-background-2.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
}

.general-background-3-1 {
  background-image: url("../images/home-background-1.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  transform: scaleX(-1);
}

.general-background-3-2 {
  background-image: url("../images/home-background-2.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
}

.general-background-3-flip {
  transform: scaleX(-1);
}

.general-background-4-1 {
  background-image: url("../images/home-background-1.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
}

.general-background-4-2 {
  background-image: url("../images/home-background-2.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
}

.home-mediaSlider-section {
  margin-top: 80px;
}

.home-aboutResearch-section-wrapper {
  padding-top: 80px;
  padding-bottom: 118px;
}

.home-aboutResearch-section {
  padding-top: 174px;
  flex-direction: row;
  align-items: flex-start;
}
.home-aboutResearch-section .research-image-wrapper,
.home-aboutResearch-section .research-text-content {
  width: 50%;
  overflow: hidden;
  height: auto;
  position: relative;
}
.home-aboutResearch-section .research-image-wrapper {
  z-index: 1;
  width: 47%;
  aspect-ratio: 883/589;
  height: auto;
  aspect-ratio: 883/589;
  border-top-right-radius: 80px;
  border-bottom-left-radius: 80px;
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.2509803922);
}
.home-aboutResearch-section .research-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-aboutResearch-section .research-text-content {
  background-color: #ffffff;
  margin-top: 100px;
  margin-left: -100px;
  width: calc(53% + 150px);
  padding: 100px 80px 100px 200px;
}

.home-testimonial-section {
  position: relative;
	margin-bottom: 20px;
  padding-top: 50px
}
.home-testimonial-section .overflow-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.home-testimonial-section .quote-items {
  width: 100%;
  left: 0px;
  top: 0px;
  position: relative;
  display: flex;
  transition: transform 0.5s ease;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.home-testimonial-section .quote-items::-webkit-scrollbar {
  display: none;
}
.home-testimonial-section .quote-item {
  scroll-snap-align: start;
  position: relative;
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}
.home-testimonial-section .quote {
  position: relative;
  text-align: center;
  padding: 0 58px;
}
.home-testimonial-section .author {
  display: flex;
  justify-content: center;
  gap: 55px;
  align-items: center;
}
.home-testimonial-section .author .content {
  text-align: center;
}
.home-testimonial-section .icon-quote {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 48px;
  height: auto;
  aspect-ratio: 48/40;
  background-image: url("../icons/icon-quote.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.home-testimonial-section .icon-quote.icon-quote-left {
  top: 0px;
  left: 0px;
  right: auto;
  bottom: auto;
  transform: scaleX(1);
}
.home-testimonial-section .icon-quote.icon-quote-right {
  top: auto;
  left: auto;
  right: 0px;
  bottom: 7px;
  transform: scaleX(-1);
}
.home-testimonial-section .dots {
  margin-top: 59px;
}

.about-message-section {
  margin-top: -61px;
  margin-bottom: 200px;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.about-message-section .message-image {
  display: flex;
  flex-direction: column;
  width: 32.6%;
}
.about-message-section .message-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 584/700;
  object-fit: cover;
}
.about-message-section .message-image .author-info {
  flex-direction: column;
  padding: 60px 0px 40px 20%;
  gap: 6px;
}
.about-message-section .message-content {
  width: 57.61%;
}

.about-team-section-wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-team-section .mobile-team-member-slider .slider-dots {
  display: flex;
}
.about-team-section .member-cards {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}
.about-team-section .member-cards::-webkit-scrollbar {
  display: none;
}
.about-team-section .member-cards .member-card {
  scroll-snap-align: start;
  box-sizing: border-box;
  flex-grow: 0;
  flex-shrink: 0;
  width: calc((100% - 75px) / 4);
}
.about-team-section .member-cards img {
  overflow: hidden;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 430/750;
}
.about-team-section .member-cards .info {
  padding-top: 15px;
  padding-bottom: 15px;
}

.about-project-section {
  margin-top: 85px;
  margin-bottom: 135px;
  flex-direction: row;
  align-items: flex-start;
}
.about-project-section .project-summary {
  padding: 0px 7% 0px 5%;
  padding-top: 172px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-project-section .project-image {
  display: flex;
  flex-shrink: 0;
  width: 50%;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.2509803922);
  overflow: hidden;
}
.about-project-section .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-list-section {
  /* padding-bottom: 58px; */
  position: relative;
  padding-top: 10px;
  padding-bottom: 58px;
}
.media-list-section .select {
  position: absolute;
  top: -94px;

}

.media-images-section {
  margin-top: 20px;
}

.upcomingEvents-list-section {
  padding-bottom: 0px;
}
.upcomingEvents-list-section .event-card {
  cursor: pointer;
}

.upcomingEventDetail-info-section {
  flex-direction: row;
  justify-content: space-between;
}
.upcomingEventDetail-info-section .event-detail-left {
  display: flex;
  flex-direction: column;
  width: 37.77%;
  flex-shrink: 0;
}
.upcomingEventDetail-info-section .event-detail-left .event-image {
  width: 100%;
  height: auto;
  aspect-ratio: 676/482;
  object-fit: cover;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
}
.upcomingEventDetail-info-section .event-detail-left .event-meta {
  display: flex;
  flex-direction: column;
  box-shadow: none;
  padding: 36px;
  gap: 13px;
}
.upcomingEventDetail-info-section .event-detail-left .event-meta .detail-content-text {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.upcomingEventDetail-info-section .event-detail-left .event-meta .detail-content-text img {
  flex-shrink: 0;
  margin-top: 4px;
  width: 26px;
  height: auto;
  aspect-ratio: 5/6;
  object-fit: contain;
}
.upcomingEventDetail-info-section .event-detail-right {
  width: 57.93%;
}

.upcomingEventDetail-otherEvents-section {
  margin-top: 197px;
  margin-bottom: 28px;
}

.industry-list-section {
  position: relative;
  padding-top: 10px;
  padding-bottom: 58px;
}
.industry-list-section .select {
  position: absolute;
  top: -94px;
}

.industryDetail-info-section {
  gap: 48px;
}
.industryDetail-info-section .detail-row {
  display: flex;
  justify-content: space-between;
}
.industryDetail-info-section .detail-row .industry-detail-col0 {
  flex-shrink: 0;
  width: 100%;
}
.industryDetail-info-section .detail-row .industry-detail-col1 {
  flex-shrink: 0;
  width: 25.25%;
}
.industryDetail-info-section .detail-row .industry-detail-col1 img {
  width: 100%;
  height: auto;
  /*aspect-ratio: 452/574;*/
  object-fit: cover;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
}

.industryDetail-info-section .industry-detail-col1 {
  display: flex;
  flex-direction: column;
  width: 37.77%;
  flex-shrink: 0;
}
.industryDetail-info-section .industry-detail-col1 .event-image {
  width: 100%;
  height: auto;
  aspect-ratio: 676/482;
  object-fit: cover;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
}
.industryDetail-info-section .industry-detail-col1 .event-meta {
  display: flex;
  flex-direction: column;
  box-shadow: none;
  padding: 36px;
  gap: 13px;
}
.industryDetail-info-section .industry-detail-col1 .event-meta .detail-content-text {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.industryDetail-info-section .industry-detail-col1 .event-meta .detail-content-text img {
  flex-shrink: 0;
  margin-top: 4px;
  width: 26px;
  height: auto;
  aspect-ratio: 5/6;
  object-fit: contain;
  border-radius: unset;
}

.industryDetail-info-section .detail-row .industry-detail-col2 {
  width: 72.29%;
}

.industryDetail-info-section .detail-row .industry-detail-col2 img{
	padding-top:25px;
	padding-bottom:25px;
}

.wp-block-lazyblock-textarea-block ul {
    list-style: disc;
    padding-left: 30px;
}
.wp-block-lazyblock-textarea-block ol {
    list-style: decimal;
    padding-left: 30px;
}
.wp-block-lazyblock-textarea-block li {
    font-weight: 300;
    font-size: 20px;
    line-height: 36px;
}

.detail-row ul {
    list-style: disc;
    padding-left: 30px;
}
.detail-row ol {
    list-style: decimal;
    padding-left: 30px;
}
.detail-row li {
    font-weight: 300;
    font-size: 20px;
    line-height: 36px;
}
li strong, p strong {
	font-weight:500;
}

.industryDetail-info-section .detail-row.detail-row-reverse {
  flex-direction: row-reverse;
}

.industryDetail-images-section {
  margin-top: 110px;
  margin-bottom: 50px;
}

.hotelBsi-about-section {
  align-items: flex-start;
}
.hotelBsi-about-section .button {
  margin-top: 78px;
}

.hotelBsi-pastResults-section {
  margin-top: 116px;
}
.hotelBsi-pastResults-section h4 {
  margin-bottom: 37px;
}
.hotelBsi-pastResults-section .tab-body {
  padding: 105px;
  background-color: #d4e8b4;
}
.hotelBsi-pastResults-section .tab-body .tab-body-item {
  display: none;
}
.hotelBsi-pastResults-section .tab-body .tab-body-item.active {
  display: block;
}
.hotelBsi-pastResults-section .gallery-button {
  margin-top: 40px;
  width: 100%;
  text-align: right;
}

.hotelBsi-featuredStories-section {
  margin-top: 115px;
  margin-bottom: 157px;
}
.hotelBsi-featuredStories-section h4 {
  margin-bottom: 32px;
}

.hotelBsi-media-section {
  margin-top: 116px;
  margin-bottom: 30px;
}

.education-list-section {
  position: relative;
  padding-top: 10px;
  padding-bottom: 58px;
}
.education-list-section .select {
  position: absolute;
  top: -94px;
}

.education-images-section {
  margin-top: 20px;
}

.societal-list-section {
  position: relative;
  padding-top: 10px;
  padding-bottom: 58px;
}
.societal-list-section .select {
  position: absolute;
  top: -94px;
}

.societal-images-section {
  margin-top: 20px;
}

.contactUs-form-section {
  margin-top: -62px;
  flex-direction: row;
  justify-content: space-between;
}
.contactUs-form-section .contactUs-col-1 {
  position: relative;
  z-index: 1;
  width: 40.89%;
  flex-shrink: 0;
}
.contactUs-form-section .contactUs-col-1 .contact-box {
  background-color: #799083;
  border-top-right-radius: 80px;
  border-bottom-left-radius: 80px;
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 94px 60px;
}
.contactUs-form-section .contactUs-col-1 h5 {
  color: white;
  font-weight: 400;
  font-size: 28px;
  line-height: 35px;
}
.contactUs-form-section .contactUs-col-1 .contact-meta {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
  gap: 32px;
}
.contactUs-form-section .contactUs-col-1 .contact-meta p {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  color: white;
  font-weight: 400;
  font-size: 22px;
  line-height: 35px;
}
.contactUs-form-section .contactUs-col-1 .contact-meta p img {
  margin-top: 2px;
  flex-shrink: 0;
  width: 28px;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center center;
}
.contactUs-form-section .contactUs-col-1 .social-icons {
  display: flex;
  padding-left: 115px;
  padding-top: 35px;
  gap: 38px;
}
.contactUs-form-section .contactUs-col-1 .social-icons img {
  width: 53px;
  height: auto;
  aspect-ratio: 53/46;
  object-fit: 1;
}
.contactUs-form-section .contactUs-col-2 {
  margin-top: 87px;
  margin-left: -70px;
  padding: 80px;
  padding-left: 150px;
  flex-grow: 1;
  border-top-right-radius: 80px;
  border-bottom-left-radius: 80px;
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.1019607843);
}
.contactUs-form-section .contactUs-col-2 h5 {
  font-weight: 600;
  font-size: 38px;
  line-height: 48px;
  color: #707070;
}
.contactUs-form-section .contactUs-col-2 form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 27px;
}
.contactUs-form-section .contactUs-col-2 form .row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}
.contactUs-form-section .contactUs-col-2 form .row > input {
  width: calc((100% - 10px) / 2);
}
.contactUs-form-section .contactUs-col-2 form input {
  flex-grow: 1;
}
.contactUs-form-section .contactUs-col-2 form textarea {
  height: 156px;
}
.contactUs-form-section .contactUs-col-2 form .dark-button {
  margin-top: 10px;
  align-self: flex-end;
}

@media (max-width: 1200px) {
  .section-hero-background.section-hero-background-desktop {
    display: none;
  }
  .section-hero-background.section-hero-background-tablet {
    display: block;
  }
  .home-hero-section-wrapper {
    height: 577px;
  }
  .home-hero-section-wrapper .hero-content {
    padding-bottom: 246px;
    padding-left: 70px;
    padding-right: 70px;
  }
  .home-hero-section-wrapper .dark-button {
    right: 50px;
    bottom: 42px;
  }
  .home-hero-section-wrapper .dots {
    bottom: 26px;
    gap: 40px;
  }
  .home-hero-section-wrapper .arrow {
    width: 40px;
  }
  .home-hero-section-wrapper .arrow.arrow-left {
    left: 30px;
  }
  .home-hero-section-wrapper .arrow.arrow-right {
    right: 30px;
  }
  .general-background-1 {
    padding-top: 24px;
  }
  .home-featuredStories-section .story-cards .story-card {
    display: block;
  }
  .home-mediaSlider-section {
    margin-top: 28px;
  }
  .home-aboutResearch-section-wrapper {
    padding-top: 92px;
    padding-bottom: 50px;
  }
  .home-aboutResearch-section {
    padding-top: 20px;
  }
  .home-aboutResearch-section .research-image-wrapper {
    width: calc((100% - 10px) / 2);
    border-top-right-radius: 39px;
    border-bottom-left-radius: 39px;
  }
  .home-aboutResearch-section .research-text-content {
    background-color: #ffffff;
    margin-top: 49px;
    margin-left: -50px;
    width: calc(53% + 50px);
    padding: 43px 80px 48px 100px;
  }
  .home-testimonial-section {
    margin-bottom: 27px;
  }
  .home-testimonial-section .quote-item {
    gap: 49px;
    padding-bottom: 36px;
  }
  .home-testimonial-section .quote {
    padding: 16px 58px 0px 58px;
  }
  .home-testimonial-section .author {
    gap: 26px;
  }
  .home-testimonial-section .icon-quote {
    width: 36px;
  }
  .home-testimonial-section .dots {
    margin-top: 12px;
  }
  .about-message-section {
    margin-top: 0px;
    margin-bottom: 60px;
  }
  .about-message-section .message-image {
    width: 39.77%;
  }
  .about-message-section .message-image .author-info {
    margin-top: 35px;
    padding: 0px 0px 0px 20%;
  }
  .about-message-section .message-content {
    width: 56.82%;
  }
  .about-team-section-wrapper {
    padding-top: 98px;
    padding-bottom: 98px;
  }
  .about-team-section .member-cards {
    gap: 20px;
  }
  .about-team-section .member-cards .member-card {
    width: calc((100% - 60px) / 4);
  }
  .about-team-section .member-cards img {
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
  }
  .about-team-section .member-cards .info {
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .about-project-section {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .about-project-section .project-summary {
    padding: 0px;
    padding-right: 7%;
    gap: 20px;
  }
  .about-project-section .project-image {
    width: 39.77%;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
  }
  /* .media-list-section {
    padding-bottom: 0px;
  } */

  .media-list-section {
    padding-top: 65px;
    padding-bottom: 8px;
  }
  .media-list-section .select {
    top: 0px;
  }
  .media-images-section {
    margin-top: 20px;
    margin-bottom: 28px;
  }

  
  .upcomingEventDetail-info-section {
    margin-top: 38px;
  }
  .upcomingEventDetail-info-section .event-detail-left {
    width: 39.77%;
  }
  .upcomingEventDetail-info-section .event-detail-left .event-image {
    border-top-right-radius: 26px;
    border-bottom-left-radius: 26px;
  }
  .upcomingEventDetail-info-section .event-detail-left .event-meta {
    padding: 0px;
    padding-top: 20px;
    gap: 9px;
  }
  .upcomingEventDetail-info-section .event-detail-left .event-meta .detail-content-text {
    gap: 20px;
  }
  .upcomingEventDetail-info-section .event-detail-left .event-meta .detail-content-text img {
    margin-top: 2px;
    width: 17px;
  }
  .upcomingEventDetail-info-section .event-detail-right {
    width: 56.93%;
  }
  .upcomingEventDetail-otherEvents-section {
    margin-top: 51px;
    margin-bottom: 28px;
  }
  .upcomingEventDetail-otherEvents-section .event-cards {
    margin-top: 10px;
  }
  .upcomingEventDetail-otherEvents-section .event-cards .event-card {
    display: none;
  }
  .upcomingEventDetail-otherEvents-section .event-cards .event-card:first-child, .upcomingEventDetail-otherEvents-section .event-cards .event-card:nth-child(2) {
    display: block;
  }
  .industry-list-section {
    padding-top: 95px;
    padding-bottom: 0px;
  }
  .industry-list-section .select {
    position: absolute;
    top: 0px;
  }
  .industryDetail-info-section {
    gap: 33px;
  }
  .industryDetail-info-section .detail-row {
    margin-top: 20px;
    display: block;
  }
  .industryDetail-info-section .detail-row .industry-detail-col1 {
    float: left;
    width: 39.77%;
    margin-right: 3.3%;
  }
  .industryDetail-info-section .detail-row .industry-detail-col1 img {
    border-top-right-radius: 39px;
    border-bottom-left-radius: 39px;
  }
    .industryDetail-info-section .industry-detail-col1 {
    width: 39.77%;
  }
  .industryDetail-info-section .industry-detail-col1 .event-image {
    border-top-right-radius: 26px;
    border-bottom-left-radius: 26px;
  }
  .industryDetail-info-section .industry-detail-col1 .event-meta {
    padding: 0px;
    padding-top: 20px;
    gap: 9px;
  }
  .industryDetail-info-section .industry-detail-col1 .event-meta .detail-content-text {
    gap: 20px;
  }
  .industryDetail-info-section .industry-detail-col1 .event-meta .detail-content-text img {
    margin-top: 2px;
    width: 17px;
  }
  .industryDetail-info-section .detail-row .industry-detail-col2 {
    width: 100%;
  }
  .industryDetail-info-section .detail-row.detail-row-reverse .industry-detail-col1 {
    float: right;
    margin-right: 0%;
    margin-left: 3.3%;
  }
  .industryDetail-images-section {
    margin-top: 48px;
    margin-bottom: 0px;
  }
  .hotelBsi-about-section {
    align-items: flex-start;
  }
  .hotelBsi-about-section .button {
    margin-top: 29px;
  }
  .hotelBsi-pastResults-section {
    margin-top: 50px;
  }
  .hotelBsi-pastResults-section h4 {
    margin-bottom: 19px;
  }
  .hotelBsi-pastResults-section .tab-body {
    padding: 20px;
    padding-bottom: 40px;
    background-color: #d4e8b4;
  }
  .hotelBsi-pastResults-section .gallery-button {
    margin-top: 10px;
  }
  .hotelBsi-pastResults-section .image-cards .image-card {
    flex: 0 0 calc((100% - 30px) / 4);
  }
  .hotelBsi-featuredStories-section {
    margin-top: 51px;
    margin-bottom: 27px;
  }
  .hotelBsi-featuredStories-section h4 {
    margin-bottom: 32px;
  }
  .hotelBsi-media-section {
    margin-top: 51px;
    margin-bottom: 0px;
  }
  .hotelBsi-media-section h4 {
    margin-bottom: 19px;
  }
  .education-list-section {
    padding-top: 65px;
    padding-bottom: 8px;
  }
  .education-list-section .select {
    top: 0px;
  }
  .education-images-section {
    margin-top: 20px;
    margin-bottom: 28px;
  }
  .societal-list-section {
    padding-top: 65px;
    padding-bottom: 8px;
  }
  .societal-list-section .select {
    top: 0px;
  }
  .societal-images-section {
    margin-top: 20px;
    margin-bottom: 28px;
  }

  
  .contactUs-form-section {
    margin-top: 0;
  }
  .contactUs-form-section .contactUs-col-1 {
    width: 45.45%;
  }
  .contactUs-form-section .contactUs-col-1 .contact-box {
    border-top-right-radius: 44px;
    border-bottom-left-radius: 44px;
    padding: 32px 35px;
  }
  .contactUs-form-section .contactUs-col-1 h5 {
    font-size: 16px;
    line-height: 26px;
  }
  .contactUs-form-section .contactUs-col-1 .contact-meta {
    margin-top: 14px;
    gap: 16px;
  }
  .contactUs-form-section .contactUs-col-1 .contact-meta p {
    font-weight: 300;
    gap: 15px;
    font-size: 16px;
    line-height: 26px;
  }
  .contactUs-form-section .contactUs-col-1 .contact-meta p img {
    width: 18px;
  }
  .contactUs-form-section .contactUs-col-1 .social-icons {
    padding-left: 70px;
    padding-top: 20px;
    gap: 25px;
  }
  .contactUs-form-section .contactUs-col-1 .social-icons img {
    width: 28px;
  }
  .contactUs-form-section .contactUs-col-2 {
    margin-top: 72px;
    margin-left: -70px;
    padding: 55px;
    padding-left: 100px;
    border-top-right-radius: 49px;
    border-bottom-left-radius: 49px;
  }
  .contactUs-form-section .contactUs-col-2 h5 {
    font-size: 26px;
    line-height: 38px;
  }
  .contactUs-form-section .contactUs-col-2 form {
    gap: 10px;
    margin-top: 18px;
  }
  .contactUs-form-section .contactUs-col-2 form .row {
    gap: 5px;
  }
  .contactUs-form-section .contactUs-col-2 form .row > input {
    width: calc((100% - 5px) / 2);
  }
  .contactUs-form-section .contactUs-col-2 form .dark-button {
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .section-hero-background.section-hero-background-desktop {
    display: none;
  }
  .section-hero-background.section-hero-background-tablet {
    display: none;
  }
  .section-hero-background.section-hero-background-mobile {
    display: block;
  }
  .home-hero-section-wrapper {
    height: 368px;
  }
  .home-hero-section-wrapper .hero-content {
    padding-bottom: 197px;
    padding-left: 35px;
    padding-right: 35px;
    background-size: 100% 50%;
  }
  .home-hero-section-wrapper .dark-button {
    right: 15px;
    bottom: 37px;
  }
  .home-hero-section-wrapper .dots {
    bottom: 20px;
    gap: 24px;
  }
  .home-hero-section-wrapper .dots .dot {
    width: 6px;
  }
  .home-hero-section-wrapper .dots .dot.active {
    width: 9px;
  }
  .home-hero-section-wrapper .arrow {
    top: 48.6%;
    width: 25px;
  }
  .home-hero-section-wrapper .arrow.arrow-left {
    left: 5px;
  }
  .home-hero-section-wrapper .arrow.arrow-right {
    right: 5px;
  }
  .home-featuredStories-section .story-cards .story-card {
    display: block;
  }
  .general-background-1 {
    padding-top: 48px;
  }
  .home-mediaSlider-section {
    margin-top: 50px;
  }
  .home-aboutResearch-section-wrapper {
    padding-top: 39px;
    padding-bottom: 81px;
  }
  .home-aboutResearch-section {
    padding-top: 20px;
    flex-direction: column;
  }
  .home-aboutResearch-section .research-image-wrapper {
    width: 75.35%;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .home-aboutResearch-section .research-text-content {
    align-self: flex-end;
    margin-top: -25px;
    margin-left: 0px;
    width: 100%;
    padding: 55px 30px 42px 30px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }
  .home-testimonial-section {
    margin-bottom: 27px;
  }
  .home-testimonial-section .quote-item {
    padding-bottom: 36px;
    gap: 25px;
  }
  .home-testimonial-section .quote {
    padding: 0px 38px 0px 38px;
  }
  .home-testimonial-section .author {
    flex-direction: column;
    gap: 3px;
  }
  .home-testimonial-section .icon-quote {
    width: 21px;
  }
  .home-testimonial-section .icon-quote.icon-quote-right {
    bottom: 10px;
  }
  .home-testimonial-section .dots {
    margin-top: -7px;
  }
  .about-message-section {
    margin-top: 0px;
    margin-bottom: 80px;
    flex-direction: column;
    gap: 79px;
  }
  .about-message-section .message-image {
    width: 100%;
  }
  .about-message-section .message-image img {
    aspect-ratio: 510/420;
  }
  .about-message-section .message-image .author-info {
    display: flex;
    gap: 10px;
    margin-top: 47px;
    padding: 0px 0px 0px 20%;
    padding-left: 70px;
  }
  .about-message-section .message-content {
    width: 100%;
  }
  .about-team-section-wrapper {
    padding-top: 53px;
    padding-bottom: 98px;
  }
  .about-team-section .mobile-team-member-slider {
    position: relative;
  }
  .about-team-section .mobile-team-member-slider .dots {
    display: flex;
  }
  .about-team-section .member-cards {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 10px;
    gap: 10px;
  }
  .about-team-section .member-cards::-webkit-scrollbar {
    display: none;
  }
  .about-team-section .member-cards .member-card {
    flex-shrink: 0;
    width: calc((100% - 10px) / 2);
  }
  .about-team-section .member-cards img {
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }
  .about-team-section .member-cards .info {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .about-team-section .dots {
    margin-top: 14px;
  }
  .about-project-section {
    margin-top: 15px;
    margin-bottom: 18px;
    gap: 28px;
    flex-direction: column-reverse;
  }
  .about-project-section .project-summary {
    padding: 0px;
    padding-right: 7%;
    gap: 20px;
    flex-direction: column-reverse;
  }
  .about-project-section .project-image {
    width: 100%;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    aspect-ratio: 506/337;
  }
  .upcomingEvents-list-section {
    padding-top: 20px;
  }
  .upcomingEventDetail-info-section {
    margin-top: 26px;
    flex-direction: column;
    gap: 50px;
  }
  .upcomingEventDetail-info-section .event-detail-left {
    width: 100%;
  }
  .upcomingEventDetail-info-section .event-detail-left .event-image {
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .upcomingEventDetail-info-section .event-detail-left .event-meta {
    padding-top: 21px;
    gap: 9px;
  }
  .upcomingEventDetail-info-section .event-detail-left .event-meta .detail-content-text {
    gap: 25px;
  }
  .upcomingEventDetail-info-section .event-detail-left .event-meta .detail-content-text img {
    margin-top: 2px;
    width: 19px;
  }
  .upcomingEventDetail-info-section .event-detail-right {
    width: 100%;
  }
  .upcomingEventDetail-otherEvents-section {
    margin-top: 79px;
    margin-bottom: 28px;
  }
  .upcomingEventDetail-otherEvents-section .event-cards {
    margin-top: 10px;
  }
  .upcomingEventDetail-otherEvents-section .event-cards .event-card {
    display: none;
  }
  .upcomingEventDetail-otherEvents-section .event-cards .event-card:first-child {
    display: block;
  }
  .industry-list-section {
    padding-top: 75px;
  }
  .industryDetail-info-section {
    gap: 79px;
  }
  .industryDetail-info-section .detail-row {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .industryDetail-info-section .detail-row .industry-detail-col1 {
    width: 100%;
    margin-right: 0px;
  }
  .industryDetail-info-section .detail-row .industry-detail-col1 img {
    aspect-ratio: 510/420;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .industryDetail-info-section .industry-detail-col1 {
    width: 100%;
  }
  .industryDetail-info-section .industry-detail-col1 .event-image {
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .industryDetail-info-section .industry-detail-col1 .event-meta {
    padding-top: 21px;
    gap: 9px;
  }
  .industryDetail-info-section .industry-detail-col1 .event-meta .detail-content-text {
    gap: 25px;
  }
  .industryDetail-info-section .industry-detail-col1 .event-meta .detail-content-text img {
    margin-top: 2px;
    width: 19px;
    padding: 0;
  }
  .industryDetail-info-section .detail-row .industry-detail-col2 {
    width: 100%;
  }
  .industryDetail-info-section .detail-row.detail-row-reverse {
    flex-direction: column;
  }
  .industryDetail-info-section .detail-row.detail-row-reverse .industry-detail-col1 {
    float: none;
    margin-right: 0px;
    margin-left: 0px;
  }
	
  .industryDetail-info-section .detail-row .industry-detail-col1 img{
	padding-top:25px;
	padding-bottom:25px;
  }
  .industryDetail-images-section {
    margin-top: 79px;
    margin-bottom: 30px;
  }
  .hotelBsi-about-section {
    align-items: flex-start;
  }
  .hotelBsi-about-section .button {
    margin-top: 29px;
  }
  .hotelBsi-pastResults-section {
    margin-top: 79px;
  }
  .hotelBsi-pastResults-section h4 {
    margin-bottom: 30px;
  }
  .hotelBsi-pastResults-section .gallery-button {
    margin-top: 12px;
  }
  .hotelBsi-pastResults-section .image-cards .image-card {
    flex: 0 0 calc((100% - 10px) / 2);
  }
  .hotelBsi-featuredStories-section {
    margin-top: 79px;
    margin-bottom: 81px;
  }
  .hotelBsi-featuredStories-section h4 {
    margin-bottom: 32px;
  }
  .hotelBsi-media-section {
    margin-top: 51px;
    margin-bottom: 0px;
  }
  .hotelBsi-media-section h4 {
    margin-bottom: 29px;
  }
  .education-images-section {
    margin-top: 50px;
    margin-bottom: 28px;
  }
  .media-images-section {
    margin-top: 50px;
    margin-bottom: 28px;
  }
  .societal-images-section {
    margin-top: 50px;
    margin-bottom: 28px;
  }
  .contactUs-form-section {
    margin-top: 29px;
    flex-direction: column;
    gap: 0px;
  }
  .contactUs-form-section .contactUs-col-1 {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .contactUs-form-section .contactUs-col-1 .contact-box {
    flex-grow: 1;
    border-top-right-radius: 44px;
    border-bottom-left-radius: 44px;
    padding: 32px 35px;
  }
  .contactUs-form-section .contactUs-col-1 h5 {
    font-size: 16px;
    line-height: 26px;
  }
  .contactUs-form-section .contactUs-col-1 .contact-meta {
    margin-top: 14px;
    gap: 14px;
  }
  .contactUs-form-section .contactUs-col-1 .contact-meta p img {
    margin-top: 3px;
    width: 17px;
  }
  .contactUs-form-section .contactUs-col-1 .social-icons {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 20px;
    gap: 20px;
    flex-direction: column;
  }
  .contactUs-form-section .contactUs-col-1 .social-icons img {
    width: 29px;
  }
  .contactUs-form-section .contactUs-col-2 {
    margin-top: -57px;
    margin-left: 0px;
    padding: 48px;
    padding-top: 110px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
  }
}