@charset "UTF-8";

@font-face {
  font-family: "Open Sans Bold";
  src: url("../fonts/opensans/OpenSans-Bold.ttf");
  font-weight: 700;
}

@font-face {
  font-family: "Open Sans Semi Bold";
  src: url("../fonts/opensans/OpenSans-SemiBold.ttf");
  font-weight: 600;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/opensans/OpenSans-Regular.ttf");
  font-weight: 400;
}

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

/* DBS Regenerative Revamp - Unique Styles */
:root {
  --red: #cc0000;
  --white: #fff;
  --black: #000;
  --bg-color: #f3ece6;
  --green-color: #053812;
  --light-green: #4caf50;
  --dark-red: #890303;
  --beige: #fcf7f2;
  --smoke: #f5f5f5;
  --gray: #d0d0d0;
  --bg-black: #222;
}

ul,
ol,
li {
  list-style: none;
}

a {
  display: inline-block;
  transition: all 0.2s ease-in;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

body {
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  color: var(--black);
  line-height: 24px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Common */
.inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 90%;
}

.bg-red-gradient {
  font-family: "Open Sans Bold", sans-serif;
  font-weight: 700;
  background-image: linear-gradient(90deg,
      #890303 0%,
      #cc0000 33%,
      #e81f1f 66%,
      #f24141 100%);
  color: var(--white);
  padding: 0 15px 0 10px;
}

.sec-ttl>.bg-red-gradient {
  display: block;
  width: fit-content;
  margin-left: -10px;
  padding: 0px 15px 4px 10px;
}

.green-txt {
  font-family: "Open Sans Bold", sans-serif;
  font-weight: 700;
  color: #43aa5d;
}

a.red-txt:hover,
.red-txt {
  color: var(--red);
}

.bold-txt {
  font-family: "Open Sans Bold", sans-serif;
  font-weight: 700;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

/* Common Button */
.cmn-btn {
  display: inline-block;
  background-color: rgba(204, 0, 0, 0.04);
  border: 2px solid var(--red);
  border-radius: 8px;
  font-family: "Open Sans Bold", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--red);
  padding: 12px 20px;
  line-height: 20px;
  cursor: pointer;
  width: fit-content;
}

.cmn-btn:hover {
  border-color: hsl(0, 96%, 27%);
  background-color: var(--dark-red);
  color: var(--white);
}

.cmn-btn-red {
  background-color: var(--red);
  color: var(--white);
}

.cmn-btn-white {
  border-color: var(--white);
  color: var(--white);
}

.cmn-btn-black {
  border-color: var(--black);
  color: var(--black);
  background-color: transparent;
}

.cmn-btn:not(:only-child) {
  margin-bottom: 10px;
}

.cmn-btn:not(:last-child) {
  margin-right: 16px;
}

.cmn-btn-gray,
.cmn-btn-gray:hover {
  border-color: #ececec;
  background-color: #ececec;
  color: #ccc;
}

/* Common Arrow Link */
.cmn-arrow-link {
  display: inline-block;
  position: relative;
  color: var(--white);
  font-size: 14px;
  line-height: 20px;
  font-family: "Open Sans Bold", sans-serif;
  font-weight: 700;
  padding-right: 32px;
  width: fit-content;
}

.cmn-arrow-link::after {
  position: absolute;
  top: -1px;
  right: 0;
  content: "";
  width: 24px;
  height: 24px;
  background: url("../images/ico_arrow-right.svg") no-repeat center/contain;
}

.cmn-arrow-link.arrow-red {
  color: var(--red);
}

.cmn-arrow-link.arrow-red::after {
  filter: brightness(0) saturate(100%) invert(12%) sepia(100%) saturate(7482%) hue-rotate(348deg) brightness(73%) contrast(112%);
}

.cmn-arrow-link:hover {
  color: var(--white);
}

.cmn-arrow-link.arrow-red:hover {
  color: var(--dark-red);
}

.cmn-arrow-link.arrow-red:hover::after {
  filter: brightness(0) saturate(50%) invert(52%) sepia(100%) saturate(7432%) hue-rotate(398deg) brightness(76%) contrast(172%);
}

/* Title */
.sec-ttl {
  font-size: 32px;
  font-family: "Open Sans Semi Bold", sans-serif;
  font-weight: 600;
  line-height: 40px;
}

/* Header */
#component-header {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  margin: 0 auto;
  background-color: var(--white);
  border-bottom: 1px solid #ebdccd;
}

.header-inner {
  display: flex;
  max-width: 1240px;
  margin: 0 auto;
  width: 90%;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 23px 0;
}

.header-logo {
  display: block;
  width: 10%;
  max-width: 103px;
}

.nav {
  width: 55%;
}

.nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-list-item {
  font-family: "Open Sans Semi Bold", sans-serif;
  line-height: 24px;
  font-weight: 600;
}

.nav-list-item:not(:first-child) {
  margin-left: 32px;
}

.nav-list-item a:hover,
.nav-list-item a.active {
  color: var(--red);
}

.nav-list-item>a {
  color: inherit;
}

/* Home Page */
/* Section Mainvisual */
.sec-mv {
  padding: 100px 0 33px;
  text-align: center;
}

.mv-content {
  position: relative;
}

.mv-banner-img {
  max-width: 650px;
  margin: 0 auto;
}

.mv-content-txt {
  line-height: 20px;
  font-weight: 600;
  font-size: 14px;
  font-family: "Open Sans Semi Bold", sans-serif;
}

.mv-countdown {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.mv-countdown .countdown-separator {
  font-family: "Open Sans Bold", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 54px;
  margin: 14px 15px;
}

.mv-countdown .countdown-number {
  display: block;
  font-family: "Open Sans Bold", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 54px;
  padding: 14px;
  border-radius: 12px;
  background-color: var(--bg-color);
  margin-bottom: 5px;
}

.mv-countdown .countdown-label {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

/* Section Restore Planet */
.sec-restore-planet {
  padding: 70px 0;
}

.restore-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.restore-txt {
  width: 45%;
  padding: 40px 0;
  max-width: 493px;
}

.restore-txt .sec-ttl {
  max-width: 375px;
}

.restore-txt>p {
  margin: 40px 0;
}

.restore-img {
  position: relative;
  width: 48.4%;
  height: 100%;
}

.restore-img>img {
  width: 100%;
  border-radius: 12px;
}

/* Section Highlight */
.sec-highlight {
  position: relative;
  padding: 60px 0;
  background-color: var(--bg-color);
  z-index: 1;
}

.sec-highlight::after {
  position: absolute;
  bottom: -2px;
  left: 40px;
  content: "";
  z-index: -1;
  width: 389px;
  height: 79px;
  background: url("../images/img_tree_building.png") no-repeat center left/contain;
  opacity: 0.2;
}

.highlight-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.highlight-ttl {
  width: 30%;
  font-size: 32px;
  line-height: 40px;
}

.highlight-ttl>.bold-txt {
  display: block;
}

.highlight-list {
  display: flex;
  width: 66.2%;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.highlight-item {
  width: 49%;
}

.highlight-item:not(:last-child) {
  margin-right: 2%;
}

.highlight-img,
.highlight-video {
  height: 268px;
}

.highlight-img>img,
.highlight-video>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.highlight-video {
  position: relative;
}

.highlight-video .video-player {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  cursor: pointer;
}

.highlight-txt {
  display: flex;
  padding-top: 14px;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
}

.highlight-sub-ttl {
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.highlight-desc {
  font-size: 20px;
  line-height: 28px;
  margin: 2px 0 15px;
}

.highlight-ttl,
.highlight-sub-ttl,
.highlight-desc {
  font-family: "Open Sans Semi Bold", sans-serif;
  font-weight: 600;
}

/* Section Common */
.sec-common {
  background-color: var(--bg-black);
  padding: 100px 0;
}

.sec-common .sec-ttl {
  text-align: center;
  color: var(--white);
  margin-bottom: 60px;
}

.common-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

.common-item {
  display: flex;
  flex-wrap: wrap;
  width: 49.3%;
  margin-bottom: 20px;
  align-items: center;
}

.common-item:last-child,
.common-item:nth-last-child(2) {
  margin-bottom: 0;
}

.common-item-img {
  border-radius: 4px;
  width: 39.3%;
}

.common-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.common-item-txt {
  display: flex;
  padding-left: 24px;
  flex-direction: column;
  justify-content: space-between;
  width: 60.7%;
}

.common-item-ttl {
  color: var(--white);
  font-size: 20px;
  line-height: 28px;
  font-family: "Open Sans Semi Bold", sans-serif;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Home Page End */

/*  About Page */

/* Banner Section */
/* Common Banner */
.cmn-banner {
  display: flex;
  position: relative;
  padding: 120px 0;
  text-align: center;
  min-height: 360px;
  background: no-repeat center/cover;
  align-items: center;
  justify-content: center;
}

.banner-overlay-txt {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.banner-subhead {
  display: block;
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

.banner-ttl {
  font-family: "Open Sans Bold", sans-serif;
  font-size: 48px;
  line-height: 60px;
  margin: 0;
  color: var(--white);
  font-weight: 700;
}

/* About Page */
.about-banner {
  background-image: url("../images/about_banner.jpg");
}

.about-cnt {
  padding: 80px 0;
}

.about-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about-left-cnt {
  width: 43%;
}

.about-cnt-img {
  width: 50%;
  max-width: 300px;
}

.about-left-cnt h2 {
  font-size: 24px;
  margin: 0 0 40px;
  line-height: 32px;
  font-family: "Open Sans Semi Bold", sans-serif;
  font-weight: 600;
  letter-spacing: -0.45px;
}

.about-left-cnt p {
  margin: 0 0 40px;
}

.about-left-cnt p:nth-child(2) {
  margin-bottom: 23px;
}

.about-right-cnt {
  display: flex;
  position: relative;
  justify-content: space-between;
  width: 51%;
}

.about-img-stack {
  display: flex;
  position: relative;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 15px;
}

.about-stacked-img {
  position: relative;
  width: 47%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-stacked-img img {
  width: 100%;
  border-radius: 12px;
}

.about-bottom-img {
  top: 18%;
}

.about-cards {
  padding-bottom: 55px;
}

.about-cards .sec-ttl {
  margin-bottom: 40px;
}

.about-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.about-card {
  display: flex;
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  flex-direction: column;
  background: var(--bg-color);
  border-radius: 40px;
  overflow: hidden;
}

.about-card-img-container {
  display: flex;
  padding: 40px 40px 0px;
  justify-content: left;
}

.about-card-img-container img {
  max-width: 140px;
  object-fit: contain;
  height: 140px;
}

.about-card-cnt {
  display: flex;
  padding: 14px 40px 40px;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
}

.about-card h3 {
  font-size: 24px;
  font-family: "Open Sans Bold", sans-serif;
  line-height: 32px;
  margin-bottom: 16px;
  font-weight: 700;
}

.about-card p {
  margin: 0 0 24px;
}

/* End About Page */

/* Event Page */
.event-banner {
  background-image: url("../images/event_banner.jpg");
}

.event-intro .event-intro-title .highlight {
  background-color: #ff0000;
  color: var(--white);
  padding: 0.2em 0.4em;
  line-height: 1.8;
}

.event-intro-date {
  font-weight: 500;
}

/* Main Wrapper & Container */
.partner-showcase-wrapper {
  padding: 60px 0;
}

/* 2. Titles and Descriptions */
.partner-showcase-title {
  font-family: "Open Sans Semi Bold", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  color: #000;
  margin-bottom: 10px;
  text-align: center;
}

.partner-showcase-description {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  margin-bottom: 40px;
  text-align: center;
  line-height: 24px;
}

/* 3. Filter Navigation */
.partner-showcase-filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  justify-content: center;
}

.partner-showcase-filter-btn {
  font-family: "Open Sans", sans-serif;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 8px;
  border: 2px solid #ebdccd;
  background-color: transparent;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.partner-showcase-filter-btn:hover,
.partner-showcase-filter-btn.active {
  background-color: rgba(204, 0, 0, 0.1);
  color: #cc0000;
  border-color: #cc0000;
  font-family: "Open Sans Bold", sans-serif;
}

/* 4. Partner Grid */
.partner-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  /* Space between cards */
}

/* 5. Individual Partner Card */
.partner-showcase-card {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex-direction: column;
  background-color: #fcf7f2;
}

/* Image Wrapper */
.partner-showcase-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.partner-showcase-card-img-wrapper::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}

.partner-showcase-card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-showcase-card-logo,
.partner-showcase-card-logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.partner-showcase-card-logo {
  width: 144px;
  height: 144px;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.partner-showcase-card-logo img {
  width: 68%;
}

/* Card Header (Tags) */
.partner-showcase-card-header {
  position: absolute;
  top: 10px;
  left: 0;
  font-family: "Open Sans Bold", sans-serif;
  padding: 8px 16px;
  background-color: #cc0000;
  color: white;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  border-bottom-right-radius: 8px;
  z-index: 10;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 50%;
}

/* Content Area */
.partner-showcase-card-content {
  display: flex;
  padding: 24px 24px 0 24px;
  flex-grow: 1;
  flex-direction: column;
}

.partner-showcase-card-title {
  font-family: "Open Sans Bold", sans-serif;
  margin-top: 0;
  margin-bottom: 16px;
  color: #000;
  font-size: 24px;
  line-height: 32px;
}

.partner-showcase-card-description {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  flex-grow: 1;
  margin-top: 0;
  margin-bottom: 16px;
}

.partner-showcase-name {
  padding: 0 24px;
}

/* Links Section */
.partner-showcase-card-links {
  display: flex;
  padding: 0 24px 24px;
  margin: 0;
  flex-wrap: wrap;
  align-items: flex-start;
}

.partner-showcase-link {
  display: inline-flex;
  font-family: "Open Sans Bold", sans-serif;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #000;
  background-color: transparent;
  border: none;
  /* Adjusted padding for better alignment without a border */
  border-radius: 4px;
  transition: color 0.3s;
  font-size: 16px;
  line-height: 20px;
  flex-shrink: 0;
}

.partner-showcase-link:not(:nth-child(2n)) {
  margin-right: 25px;
}

.partner-showcase-link:not(:last-child) {
  margin-bottom: 12px;
}

.partner-showcase-link a {
  color: inherit;
}

.partner-showcase-link a+a {
  display: block;
  margin-top: 5px;
}

.partner-showcase-link a:hover {
  color: #cc0000;
}

.partner-showcase-link-icon {
  width: 36px;
}

/* === NEW/MODIFIED RULE FOR SVGs === */
.partner-showcase-link svg {
  /* SVGs will inherit the link's color, including on hover. */
  /* This works because of `stroke="currentColor"` in the SVG HTML. */
  width: 20px;
  height: 20px;
  transition: color 0.3s;
}

/* === REMOVED THESE RULES === */
/*
.partner-showcase-link-website::before,
.partner-showcase-link-linkedin::before {
  content: "";
}
*/

/* No results message */
.partner-showcase-no-results {
  font-family: "Open Sans", sans-serif;
  grid-column: 1 / -1;
  /* Make it span all columns */
  text-align: center;
  color: #888;
  font-size: 20px;
  line-height: 28px;
  padding: 40px 0;
}

/* End Event Page */

/* Innovate Page */
.innovate-banner {
  background-image: url("../images/innovate_banner.jpg");
}

.innovate-row {
  display: flex;
  flex-wrap: wrap;
  padding: 80px 0;
  align-items: center;
  justify-content: space-between;
}

.innovate-col-txt {
  width: 45.2%;
}

.innovate-col-img {
  width: 48.5%;
}

.innovate-col-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.innovate-heading,
.column-ttl {
  font-family: "Open Sans Semi Bold", sans-serif;
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: 600;
  line-height: 40px;
}

.innovate-txt {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.showflat-modal {
  width: 100% !important;
  max-width: 1000px !important;
  border-radius: 4px;
  padding: 60px 30px;
}

.showflat-modal .uk-modal-close-default line {
  stroke: var(--red) !important;
}

.showflat-item {
  display: flex;
  justify-content: space-between;
  color: var(--black);
  margin-right: 40px;
  padding: 0px 75px;
  align-items: center;
  flex-wrap: wrap;
}

.showflat-item .showflat-image {
  width: 30%;
  height: 280px;
}

.showflat-item .showflat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.showflat-item .showflat-content {
  width: 65%;
}

.showflat-item .showflat-material {
  font-family: "Open Sans Semi Bold", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: #2c2c2c;
  margin-bottom: 20px;
}

.showflat-item .showflat-ttl {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  margin: 0 0 5px;
  color: #2c2c2c;
}

.showflat-item .showflat-desc {
  margin: 0 0 45px;
}

.showflat-modal .uk-slidenav {
  display: flex;
  width: 48px;
  height: 48px;
  border: 2px solid var(--black);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  background-color: var(--white);
}

.showflat-modal .uk-slidenav-previous {
  left: 2.5%;
}

.showflat-modal .uk-slidenav-next {
  right: 2.5%;
}

.showflat-modal .uk-slidenav svg {
  width: 12px;
  height: 12px;
  color: var(--black);
}

.showflat-modal .uk-slidenav svg>polyline {
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-width: 3px;
}

.proposal-modal {
  width: 100% !important;
  max-width: 900px !important;
}

/* ======================================================= */
/* FINAL STYLES FOR GET INSPIRED SECTION (Full-Width Title)*/
/* This block replaces all previous versions.              */
/* ======================================================= */

.inspire-section {
  padding: 60px 0;
  text-align: center;
}

.sec-bg {
  background-color: var(--bg-color);
}

/* Using CSS Grid for a robust 2-column layout for the cards */
.inspire-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
  /* Reset text alignment for card content */
}

/* Styling for each card in the grid */
.inspire-card {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

.inspire-card:has(.inspire-card__desc) {
  align-items: flex-start;
}

/* The image container on the left */
.inspire-card__image {
  position: relative;
  flex-shrink: 0;
  width: 240px;
  border: none;
  padding: 0;
  background: none;
  border-radius: 4px;
  overflow: hidden;
}

button.inspire-card__image,
a.inspire-card__image {
  cursor: pointer;
}

.inspire-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.inspire-card__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  transition: transform 0.3s ease;
  pointer-events: none;
}

/* The text content container on the right */
.inspire-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.inspire-card__title {
  font-family: "Open Sans Semi Bold", sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 12px 0;
}

.inspire-card__desc {
  margin: 0 0 10px;
}

/* The "Watch video" link - styles font. Arrow comes from .cmn-arrow-link */
.inspire-card__link {
  font-family: "Open Sans Bold", sans-serif;
  font-size: 14px;
  line-height: 20px;
  padding-right: 0;
}

.inspire-card__link::after {
  top: unset;
  right: unset;
  margin-left: 5px;
}

/* --- Modal Styles --- */
.innovate-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1050;
  align-items: center;
  justify-content: center;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.innovate-modal.is-visible {
  display: flex;
  opacity: 1;
}

.innovate-modal-cnt {
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease-in-out;
}

.innovate-modal-cnt,
.local-video-content {
  width: 90%;
  max-width: 900px;
  background-color: var(--white);
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.innovate-modal.is-visible .innovate-modal-cnt {
  transform: scale(1);
}

.local-video-content video {
  border-radius: 4px;
}

.close-modal {
  display: flex;
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 2;
  font-size: 24px;
  line-height: 1;
  color: var(--dark-red);
  background: var(--white);
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.close-modal:hover {
  color: var(--white);
  background-color: var(--dark-red);
  transform: scale(1.1);
}

.innovate-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background-color: var(--bg-black);
  border-radius: 4px;
}

.innovate-video-wrapper iframe,
.innovate-video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.body-modal-open {
  overflow: hidden;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

/* End Innovate Page */

/* Section Form */
.sec-form {
  padding: 55px 0 45px;
}

.sec-form .form-socials {
  position: relative;
  width: 53%;
  padding-top: 94px;
  z-index: 1;
}

.sec-form .sec-ttl {
  margin-bottom: 35px;
}

.follow-social-blk {
  display: flex;
  align-items: flex-start;
}

.form-socials .follow-txt {
  font-family: "Open Sans Bold", sans-serif;
  font-weight: 700;
  margin-right: 24px;
}

.form-social-list {
  display: flex;
  padding: 0;
}

.form-social-list .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--black);
  border-radius: 50%;
}

.form-social-list .social-link img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(190deg) brightness(104%) contrast(105%);
}

.form-social-list>li:not(:last-child) {
  margin-right: 8px;
}

.follow-social-blk .mascot {
  position: relative;
  top: -64px;
  right: -8%;
  width: 28%;
  height: 183px;
  max-width: 183px;
  z-index: -1;
}

.follow-social-blk .mascot img.mascot-leaf {
  top: -56px;
  right: 10%;
}

.follow-social-blk .mascot img.mascot-cloud {
  transform: scaleX(-1);
}

.follow-social-blk .mascot img.mascot-bulb {
  top: -10px;
}

.follow-social-blk .mascot img {
  position: absolute;
  opacity: 0;
  width: 100%;
}

.follow-social-blk .mascot img.active {
  opacity: 1;
}

.sec-form .form {
  width: 43%;
}

.uk-flex>.form-field {
  width: 48%;
}

.form-field {
  margin-bottom: 16px;
}

.form-label {
  display: inline-block;
  font-family: "Open Sans Semi Bold", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 6px;
}

.form-input {
  display: block;
  width: 100%;
  font-family: "Open San", sans-serif;
  font-weight: 400;
  background-color: var(--gray);
  border-radius: 4px;
  border: 1px solid var(--smoke);
  padding: 12px 24px;
  font-size: 16px;
}

textarea.form-input {
  resize: none;
}

.form .cmn-btn {
  margin: 10px 0 0;
}

/* Section Form End */

/* Footer CSS */
.footer {
  color: var(--white);
  background-color: var(--bg-black);
}

.footer .inner {
  max-width: 1280px;
}

.footer-learnmore {
  display: none;
  position: relative;
  text-align: center;
  padding: 100px 0 90px;
  overflow: hidden;
  z-index: 1;
}

.home .footer-learnmore {
  display: block;
}

.footer-learnmore .footer-mascot {
  position: absolute;
  top: 5.4%;
  right: -4.5%;
  z-index: -1;
  width: 17%;
  max-width: 248px;
  height: 248px;
  transform: rotate(-37deg);
}

.footer-learnmore .footer-mascot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-learnmore .sec-ttl {
  color: var(--white);
  margin: 0;
}

.footer-learnmore .cmn-btn-white {
  margin-top: 40px;
  background-color: transparent;
}

.footer-learnmore .cmn-btn-white:hover {
  background-color: var(--dark-red);
}

.home .footer-bottom {
  padding: 40px 0 20px;
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom .inner {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--white);
}

.footer-bottom a:hover {
  opacity: 0.7;
}

.footer-logo {
  max-width: 224px;
}

.footer-link-list {
  display: flex;
  position: absolute;
  right: 0;
  left: 0;
  justify-content: center;
  font-size: 14px;
  margin: 0 auto;
  width: fit-content;
}

.footer-link-list a:not(:last-child) {
  margin-right: 24px;
}

.footer-social-list {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
}

.footer-social-list>li:not(:last-child) {
  margin-right: 8px;
}

.footer-social-link {
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--white);
  justify-content: center;
  align-items: center;
}

.footer-social-link>img {
  max-width: 16px;
}

/* End Footer CSS */

/* Event Page Styles */
/* ==========================================================================
           2. Main Component Styles (Desktop First)
           ========================================================================== */

.intro-section {
  padding: 80px 0;
  /* Vertical spacing for the section */
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  /* Padding for smaller screens */
}

/* The two-column layout using Flexbox */
.intro-grid {
  display: flex;
  align-items: center;
  /* Vertically aligns the columns */
  gap: 40px;
  /* The space between the two columns */
}

/* Defines the width of the left column */
.intro-column-left {
  flex: 0 0 39%;
  /* Takes up 40% of the width and doesn't grow or shrink */
}

/* Defines the width of the right column */
.intro-column-right {
  flex: 1;
  /* Takes up the remaining space */
}

/* --- Left Column: Title Styling --- */
.intro-title {
  font-family: "Open Sans Semi Bold", sans-serif;
  font-size: 32px;
  line-height: 45px;
  color: #2c2c2c;
  margin-bottom: 0;
}

/* --- Right Column: Text Styling --- */
.intro-text .date {
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

.intro-text .date strong {
  font-weight: 700;
  color: #111;
}

.intro-text .description {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}

/* Happenings Section*/
/* ==========================================================================
           2. Happenings Section Styles
           ========================================================================== */

.hp-sec {
  padding: 80px 0;
  background-color: #222222;
}

/* Header now only contains the title */
.hp-header {
  margin-bottom: 40px;
  text-align: center;
  /* Center the title */
}

.hp-ttl {
  font-family: "Open Sans Semi Bold", sans-serif;
  font-size: 32px;
  line-height: 40px;
  color: var(--white);
}

/* --- Slider Navigation (Bottom Center) --- */
.hp-slider-nav {
  display: flex;
  justify-content: center;
  /* Horizontally centers the buttons */
  gap: 12px;
  margin-top: 40px;
  /* Space above the buttons */
}

.hp-nav-btn {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background-color: transparent;
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}

.hp-nav-btn:hover {
  opacity: 0.7;
}

.hp-nav-btn.disabled,
.hp-nav-btn.disabled:hover {
  opacity: 0.3;
  cursor: default;
}

/* --- Scrollable Slider Container --- */

.hp-slider-wrapper {
  overflow-x: auto;
  /* Enables horizontal scrolling */
  scroll-behavior: smooth;
  /* Makes programmatic scrolling smooth */

  /* Hides the default scrollbar for a cleaner look */
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.hp-slider-wrapper::-webkit-scrollbar {
  display: none;
  /* For Chrome, Safari, and Opera */
}

.hp-grid {
  display: flex;
  gap: 24px;
}

/* --- Card Styling --- */

.hp-card {
  /* Defines the width of each card. 3 cards on desktop. */
  flex: 0 0 calc(33.333% - 16px);
  background-color: #383838;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #333;
}

.hp-card-img-wrapper img {
  display: block;
  width: 100%;
  height: 270px;
  /* Fixed height for all images */
  object-fit: cover;
  /* Ensures images cover the area without distortion */
}

.hp-card-content {
  padding: 24px;
}

.hp-card-tag {
  display: inline-block;
  font-family: "Open Sans Bold", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.hp-card-ttl {
  font-family: "Open Sans Semi Bold", sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #fff;
  margin-top: 0;
  margin-bottom: 4px;
}

.hp-card-meta {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-top: 0;
  margin-bottom: 24px;
}

.hp-card-desc {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  line-height: 1.6;
  color: #fff;
}

.hp-card-desc strong {
  font-family: "Open Sans Bold", sans-serif;
  font-weight: 700;
}

.event-agenda {
  padding: 0 0 60px;
}

.event-agenda h2 {
  font-size: 32px;
  font-family: "Open Sans Bold", sans-serif;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 3px;
  color: #2c2c2c;
}

/* .agenda-table {
  margin-top: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
}

.agenda-header {
  padding: 8px 16px;
  font-family: "Open Sans Bold", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}

.agenda-header.invite-only {
  background-color: #333333;
}

.agenda-header.open-to-all {
  background-color: #cc0000;
}

.agenda-row {
  display: flex;
  border-bottom: 1px solid #e5e5e5;
}

.agenda-row:last-child {
  border-bottom: none;
}

.agenda-time {
  width: 220px;
  padding: 8px 16px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  flex-shrink: 0;
  border-right: 1px solid #DBDBDB;
  background-color: var(--white);
  color: #333;
}

.agenda-details {
  font-family: "Open Sans Bold", sans-serif;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 16px;
  flex-grow: 1;
  background-color: #f5f5f5;
  color: #333;
}

.agenda-details p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 24px;
  margin-top: 5px;
  margin-bottom: 0;
  color: #333;
} */

/* .agenda-table {
  margin-top: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
}

.agenda-header {
  padding: 8px 16px;
  font-family: "Open Sans Bold", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}

.agenda-header.invite-only {
  background-color: #333333;
}

.agenda-header.open-to-all {
  background-color: #cc0000;
}

.agenda-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
}

.agenda-row:last-child {
  border-bottom: none;
}

.agenda-time {
  width: 220px;
  padding: 8px 16px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  flex-shrink: 0;
  color: #333;
}

.agenda-details {
  font-family: "Open Sans Bold", sans-serif;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 16px;
  flex-grow: 1;
  border-left: 1px solid #dbdbdb;
  background-color: #f5f5f5;
  color: #333;
}

.agenda-details p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 24px;
  margin-top: 5px;
  margin-bottom: 0;
  color: #333;
} */

/* ==========================================================================
   Final Agenda Section Styles (Corrected)
   ========================================================================== */

/* Main container for the entire agenda table */
.agenda-table {
  margin-top: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
  /* This is important for the border-radius to work with child elements */
}

/* Styling for the header sections (e.g., "By Invite Only") */
.agenda-header {
  padding: 8px 16px;
  font-family: "Open Sans Bold", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

/* Specific background color for the 'invite-only' header */
.agenda-header.invite-only {
  background-color: #333333;
}

/* Specific background color for the 'open-to-all' header */
.agenda-header.open-to-all {
  background-color: #cc0000;
}

/*
  === THE FIX IS HERE ===
  We change align-items to 'stretch' to make both columns equal height.
*/
.agenda-row {
  display: flex;
  align-items: stretch;
  /* This is the fix. It ensures columns are equal height. */
  border-bottom: 1px solid #e5e5e5;
}

/* Removes the bottom border from the very last row in a table */
.agenda-row:last-child {
  border-bottom: none;
}

/* Styling for the first column (the time) */
.agenda-time {
  /* This ensures the text inside aligns to the center of the first line if needed, but the box will stretch */
  display: flex;
  width: 220px;
  /* Fixed width for the time column */
  padding: 8px 16px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  flex-shrink: 0;
  /* Prevents this column from shrinking */
  color: #333;
  background-color: #ffffff;
  /* Set a white background for the time column */
  align-items: center;
}

/* Styling for the second column (the details) */
.agenda-details {
  font-family: "Open Sans Bold", sans-serif;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 16px;
  flex-grow: 1;
  /* Allows this column to take up all remaining space */
  border-left: 1px solid #dbdbdb;
  /* Vertical separator line */
  background-color: #f5f5f5;
  /* Light background color to differentiate */
  color: #333;
}

/* Paragraph styling within the details section (for speakers, etc.) */
.agenda-details p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 24px;
  margin-top: 5px;
  margin-bottom: 0;
  color: #333;
}

.event-happenings {
  background-color: #222;
  padding: 80px 0;
}

.event-happenings .uk-heading-medium {
  color: var(--white);
}

.event-happenings .uk-card {
  border-radius: 10px;
  overflow: hidden;
  background-color: #333;
}

.event-happenings .uk-card-body .hp-card-meta {
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 5px;
}

.event-happenings .uk-card-body .uk-card-title {
  margin-top: 0;
}

.event-happenings .uk-card-body .card-time {
  font-size: 0.9rem;
  color: #666;
}

.event-happenings .uk-card-body .cmn-arrow-link {
  display: inline-block;
  margin-top: 15px;
  color: #d32f2f;
  font-weight: bold;
}

.event-happenings .slider-nav-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.event-happenings .uk-slidenav-container {
  display: flex;
  align-items: center;
}

.event-happenings .uk-slidenav-container .uk-dotnav {
  margin: 0 20px;
}

.event-happenings .uk-slidenav {
  color: #333;
}

.event-modal .uk-padding-large {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-modal .modal-meta {
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #666;
}

.event-modal h2 {
  font-size: 2.5rem;
  margin-top: 10px;
}

.event-modal .modal-time {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
}

.event-modal .modal-speakers {
  margin-top: 30px;
}

.event-modal .modal-speakers h4 {
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 2px solid #d32f2f;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.event-modal .speaker {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.event-modal .speaker img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.event-modal .speaker strong {
  display: block;
}

.event-modal .speaker p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.showcasing-partners .uk-subnav-pill>*>a {
  border-radius: 20px;
  padding: 5px 20px;
  text-transform: none;
  border: 1px solid #ccc;
  color: #333;
}

.showcasing-partners .uk-subnav-pill>.uk-active>a {
  background-color: #d32f2f;
  color: var(--white);
  border-color: #d32f2f;
}

.showcasing-partners .partner-item .uk-card-media-top {
  position: relative;
}

.showcasing-partners .partner-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  color: var(--white);
  padding: 5px 10px;
  font-size: 0.8rem;
  border-radius: 3px;
}

.showcasing-partners .partner-logo {
  height: 40px;
  margin-bottom: 15px;
}

.showcasing-partners .partner-links {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
}

.showcasing-partners .partner-link {
  display: flex;
  align-items: center;
  color: #333;
}

.showcasing-partners .partner-link span {
  margin-right: 5px;
}

.event-happenings .uk-slidenav-container {
  gap: 1rem;
}

.event-happenings .uk-card {
  display: flex;
  position: relative;
  color: var(--white);
  min-height: 400px;
  flex-direction: column;
  justify-content: flex-end;
}

.event-happenings .uk-card::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0) 50%);
}

.event-happenings .uk-card-body {
  position: relative;
  z-index: 1;
}

.event-happenings .uk-card-body .uk-card-title,
.event-happenings .uk-card-body .hp-card-meta,
.event-happenings .uk-card-body .card-time {
  color: var(--white);
}

.event-happenings .uk-card-body .cmn-arrow-link {
  color: var(--white);
  font-weight: bold;
}

.event-happenings .uk-slidenav {
  display: none;
}

.slider-nav-wrapper .slider-nav-arrow {
  display: flex;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
}

.slider-nav-wrapper .slider-nav-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}

.event-modal .uk-modal-close-full {
  background: rgba(0, 0, 0, 0.5) !important;
}

.event-modal .uk-modal-close-full:hover {
  background: rgba(0, 0, 0, 0.7) !important;
}

.event-modal .uk-modal-close-full svg {
  color: var(--white);
}

.event-modal .uk-padding-large {
  overflow-y: auto;
}

/* Learning & Resources CSS */
.learning-resources-banner {
  background-image: url("../images/bg_learning_resources.jpg");
}

.game-changer {
  text-align: center;
  padding: 60px 0 40px;
}

.game-changer img {
  max-width: 702px;
  width: 100%;
  margin: 0 auto;
}

.sec-image-text {
  padding: 80px 0;
}

.image-text-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.image-column {
  width: 48.5%;
}

.text-column {
  width: 45.2%;
}

.image-column>img {
  width: 100%;
  border-radius: 4px;
}

.text-column .text-desc {
  margin: 40px 0;
}

.text-column>p+p {
  padding-top: 30px;
}

/* Learning & Resources End */

/* Responsive Styles */
@media screen and (max-width: 1199px) {

  /* Event Page */
  .event-agenda {
    width: 100%;
  }

  .partner-showcase-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }

  /* End Event Page */
}

@media screen and (max-width: 1024px) {
  .hp-card {
    flex-basis: calc(50% - 12px);
  }
}

@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .inner {
    max-width: 100%;
    width: 100%;
    padding: 0 24px;
  }

  /* Title */
  .sec-ttl {
    font-size: 30px;
    line-height: 44px;
  }

  /* Header */
  .header-inner {
    width: 100%;
    max-width: 100%;
    padding: 20px 24px;
  }

  .toggle-menu {
    position: relative;
    width: 24px;
    height: 24px;
    cursor: pointer;
  }

  .toggle-menu>span,
  .toggle-menu>span::before,
  .toggle-menu>span::after {
    position: absolute;
    right: 0;
    left: 0;
    width: 20px;
    height: 2px;
    border-radius: 30px;
    background-color: var(--black);
    margin: 0 auto;
    transition: all 0.2s ease-in;
  }

  .toggle-menu>span {
    top: 50%;
    transform: translateY(-50%);
  }

  .toggle-menu>span::before,
  .toggle-menu>span::after {
    content: "";
  }

  .toggle-menu>span::before {
    top: -5px;
  }

  .toggle-menu>span::after {
    top: 5px;
  }

  .toggle-menu.active>span {
    background-color: transparent;
  }

  .toggle-menu.active>span::before,
  .toggle-menu.active>span::after {
    top: 0;
  }

  .toggle-menu.active>span::before {
    transform: rotate(45deg);
  }

  .toggle-menu.active>span::after {
    transform: rotate(-45deg);
  }

  .nav {
    display: none;
    position: fixed;
    top: 66px;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .nav.active {
    display: block;
  }

  .header-logo {
    width: 35%;
  }

  .nav-list {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--smoke);
    padding: 16px 24px;
  }

  .nav-list-item {
    font-size: 16px;
    line-height: 24px;
  }

  .nav-list-item:not(:first-child) {
    margin: 30px 0 0;
  }

  /* Home Page */
  /* Section Mainvisual */
  .mv-countdown {
    margin-bottom: 50px;
  }

  .mv-countdown .countdown-separator {
    line-height: 34px;
  }

  .mv-countdown .countdown-number {
    font-size: 34px;
    line-height: 44px;
    padding: 10px;
    border-radius: 12px;
  }

  .mv-countdown .countdown-label {
    font-size: 16px;
    line-height: 24px;
  }

  .mv-slider-img {
    width: 30%;
    margin-right: 15px;
  }

  .mv-slider-img img {
    border-radius: 12px;
  }

  /* Section Restore Planet */

  .sec-restore-planet {
    padding: 30px 0 82px;
  }

  .restore-txt {
    width: 100%;
    padding: 0 0 40px;
    max-width: 100%;
  }

  .restore-txt>p {
    margin: 20px 0;
  }

  .restore-txt .sec-ttl {
    max-width: 100%;
  }

  .restore-img {
    width: 100%;
    margin: 0 auto;
  }

  .restore-img>img {
    width: 100%;
    border-radius: 12px;
  }

  /* Section Highlight */
  .sec-highlight::after {
    width: 240px;
    height: 48px;
  }

  .highlight-list {
    width: 100%;
  }

  .highlight-txt {
    padding-top: 14px;
  }

  .highlight-ttl {
    width: 100%;
    margin-bottom: 40px;
  }

  .highlight-sub-ttl {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.8px;
  }

  /* Section Common */
  .sec-common {
    padding: 60px 0;
  }

  .sec-common .sec-ttl {
    text-align: left;
    margin-bottom: 40px;
  }

  .common-item {
    width: 100%;
  }

  .common-item:not(:last-child) {
    margin-bottom: 44px;
  }

  .common-item-txt {
    padding: 24px 0 24px 24px;
  }

  .common-item-ttl {
    font-size: 24px;
    line-height: 32px;
  }

  /* Home Page End */

  /* About Page */

  .about-left-cnt,
  .about-right-cnt {
    flex: 100%;
  }

  .about-right-cnt {
    margin-top: 40px;
  }

  .about-left-cnt h2,
  .about-left-cnt p {
    width: 100%;
  }

  .about-img-stack {
    aspect-ratio: 1/0.7;
  }

  /* End About Page */

  /* Event Page */
  .partner-showcase-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .partner-showcase-filter-nav {
    justify-content: flex-start;
  }

  .intro-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* End Event Page */

  /* Innovate Page */

  .innovate-row {
    padding: 40px 0;
    gap: 30px;
  }

  .innovate-col-txt,
  .innovate-col-img {
    width: 100%;
  }

  .innovate-row:nth-child(even) {
    margin: 0 0 40px;
  }

  .innovate-discover-section {
    margin-top: 10px;
  }

  .inspire-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .showflat-modal {
    max-width: 600px !important;
  }

  .showflat-item {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 50px;
  }

  .showflat-item .showflat-image,
  .showflat-item .showflat-content {
    width: 100%;
  }

  .showflat-item .showflat-image {
    height: auto;
    margin-bottom: 40px;
  }

  /* Innovate Page End */

  /* Learning & Resources CSS */

  .image-text-column {
    align-items: flex-start;
    flex-direction: column;
  }

  .image-column,
  .text-column {
    width: 100%;
  }

  .image-column {
    order: 1;
    margin-bottom: 20px;
  }

  .text-column {
    order: 2;
  }

  /* Learning & Resources End */

  /* Section Form CSS */

  .sec-form {
    padding: 60px 0;
  }

  .sec-form .form-socials,
  .sec-form .form {
    width: 100%;
  }

  .follow-social-blk .mascot {
    height: 0;
  }

  .sec-form .form-socials {
    padding: 0;
    margin-bottom: 45px;
  }

  /* Section Form CSS End */
  /* Footer CSS */

  .footer .inner {
    max-width: 100%;
  }

  .footer-learnmore {
    padding: 60px 0 10px;
  }

  .footer-learnmore .footer-mascot {
    top: 15%;
    height: 200px;
  }

  .footer-logo {
    max-width: 190px;
  }

  .footer-bottom {
    padding: 30px 0;
  }

  .footer-link-list a:not(:last-child) {
    margin-right: 17px;
  }

  .footer-social-link {
    width: 38px;
    height: 38px;
  }

  .footer-social-link>img {
    max-width: 22px;
  }
}

@media screen and (max-width: 640px) {
  body {
    font-size: 14px;
    line-height: 20px;
  }

  /* Common */

  .sec-ttl>.bg-red-gradient {
    margin-left: -5px;
    padding: 0 8px 0 5px;
  }

  /* Title */
  .sec-ttl {
    font-size: 24px;
    line-height: 32px;
    margin: 0;
  }

  /* Home Page */
  /* Section Mainvisual */
  .sec-mv {
    padding: 75px 0 0;
  }

  .mv-content-txt {
    width: 85%;
    margin: 0 auto 20px;
  }

  .mv-countdown {
    margin-bottom: 36px;
  }

  .mv-countdown .countdown-separator {
    font-size: 24px;
    line-height: 36px;
    margin: 14px 8px;
  }

  .mv-countdown .countdown-number {
    font-size: 28px;
    line-height: 36px;
    border-radius: 8px;
    margin-bottom: 0;
    padding: 14px;
  }

  .mv-countdown .countdown-label {
    font-size: 12px;
  }

  .mv-slider-img {
    width: 54%;
    margin-right: 12px;
  }

  .mv-slider-img img {
    border-radius: 12px;
  }

  /* Section Restore Planet */

  .restore-txt {
    width: 100%;
    padding: 0 0 28px;
  }

  .restore-txt .sec-ttl {
    max-width: 315px;
  }

  .restore-txt>p {
    margin: 24px 0;
  }

  .restore-txt .cmn-btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  .restore-txt .cmn-btn:not(:last-child) {
    margin-right: 0;
  }

  .restore-img {
    width: 100%;
    margin: 0 auto;
  }

  .restore-img>img {
    width: 100%;
    border-radius: 12px;
  }

  /* Section Highlight */

  .sec-highlight {
    padding-bottom: 120px;
  }

  .highlight-ttl {
    font-size: 24px;
    line-height: 32px;
  }

  .sec-highlight::after {
    left: 10px;
    width: 98%;
    height: 75px;
  }

  .highlight-item {
    width: 100%;
  }

  .highlight-item:not(:last-child) {
    margin: 0 0 43px 0;
  }

  .highlight-img,
  .highlight-video {
    height: auto;
  }

  .highlight-txt {
    min-height: unset;
  }

  .highlight-desc {
    font-size: 16px;
    line-height: 24px;
    margin: 6px 0 17px;
  }

  /* Section Common */

  .common-item-img,
  .common-item-img img {
    border-radius: 12px;
  }

  .common-item-img,
  .common-item-txt {
    width: 100%;
  }

  .common-item-txt {
    padding: 16px 0 0;
  }

  .common-item-ttl {
    font-size: 16px;
    line-height: 24px;
  }

  /* Home Page End */

  /* Common Banner */
  .cmn-banner {
    min-height: auto;
  }

  /* About Page */
  .banner-subhead {
    font-size: 24px;
    line-height: 32px;
    margin: 0;
  }

  .banner-ttl {
    font-size: 32px;
    line-height: 40px;
  }

  .about-cnt {
    padding: 40px 0;
  }

  .about-cards {
    padding-bottom: 40px;
  }

  .about-card {
    min-width: 100%;
  }

  .about-card-img-container {
    padding: 30px 30px 0;
  }

  .about-card-img-container img {
    height: auto;
  }

  .about-card-cnt {
    padding: 14px 25px 40px;
  }

  /* End About Page */

  /* Event Page */
  .hp-header {
    text-align: left;
  }

  .hp-ttl {
    font-size: 1.8rem;
  }

  .hp-card {
    flex-basis: 85%;
  }

  .hp-slider-wrapper {
    scroll-snap-type: x mandatory;
    margin: 0 -24px 0 0;
  }

  .hp-card {
    scroll-snap-align: start;
  }

  .agenda-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }

  .agenda-header,
  .agenda-row {
    min-width: 950px;
  }

  .agenda-details {
    width: 350px;
  }

  .partner-showcase-title {
    font-size: 28px;
  }

  .partner-showcase-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .partner-showcase-filter-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .partner-showcase-card-content {
    padding: 20px 20px 0 20px;
  }

  .partner-showcase-card-img-wrapper {
    max-height: 350px;
    height: auto;
    min-height: 200px;
  }

  .partner-showcase-card-logo {
    width: 120px;
    height: 120px;
  }

  .partner-showcase-card-links {
    padding: 0 20px 20px;
    flex-direction: column;
  }

  .partner-showcase-link a+a {
    display: inline-block;
    margin-top: 0;
  }

  .intro-section {
    padding: 50px 0;
  }

  .intro-title {
    font-size: 24px;
    line-height: 34px;
  }

  /* End Event Page */

  /* Innovate Page */

  .innovate-row {
    flex-direction: column;
    gap: 20px;
    padding: 40px 0;
  }

  .innovate-row .innovate-col-img {
    order: 1;
  }

  .innovate-row .innovate-col-txt {
    order: 2;
  }

  .innovate-heading,
  .column-ttl {
    font-size: 24px;
    line-height: 32px;
  }

  .inspire-section {
    padding: 40px 0;
  }

  .inspire-grid {
    gap: 0;
  }

  .inspire-card {
    flex-direction: column;
    padding: 0;
    gap: 0;
  }

  .inspire-card:not(:last-child) {
    margin-bottom: 44px;
  }

  .inspire-card__image {
    width: 100%;
    border-radius: 12px;
  }

  .inspire-card__content {
    width: 100%;
    padding: 16px 0 0;
  }

  .inspire-card__title {
    font-size: 16px;
    line-height: 24px;
  }

  /* --- Modal Styles --- */
  .innovate-modal-cnt {
    width: 100%;
    padding: 3px;
  }

  .close-modal {
    right: -12px;
  }

  .showflat-modal {
    width: 90% !important;
    padding: 50px 22px;
  }

  .showflat-item {
    margin-right: 20px;
    padding: 0;
  }

  .showflat-item .showflat-image {
    margin-bottom: 24px;
  }

  .showflat-item .showflat-material {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 16px;
  }

  .showflat-item .showflat-ttl {
    font-size: 14px;
  }

  .showflat-item .showflat-desc {
    margin-bottom: 16px;
  }

  .showflat-modal .uk-slidenav {
    border: none;
    width: 20px;
    background-color: transparent;
  }

  .showflat-modal .uk-slidenav svg {
    color: var(--white);
  }

  .showflat-modal .uk-slidenav svg {
    width: 12px;
    height: 12px;
  }

  .showflat-modal .uk-slidenav-previous {
    left: -7%;
  }

  .showflat-modal .uk-slidenav-next {
    right: -7%;
  }

  /* End Innovate Page */

  /* Section Form CSS */
  .sec-form .sec-ttl {
    margin-bottom: 25px;
  }

  .form-socials .follow-txt {
    margin: 0;
    font-size: 16px;
    line-height: 20px;
  }

  .form-social-list {
    margin: 15px 0;
  }

  .follow-social-blk .mascot,
  .follow-social-blk .mascot img.mascot-leaf,
  .follow-social-blk .mascot img.mascot-bulb {
    top: -20px;
    right: -5%;
  }

  .follow-social-blk .mascot {
    width: 47%;
    max-width: 153px;
  }

  /* Section Form CSS End */

  /* Learning & Resources CSS */

  .text-column .text-desc {
    margin: 20px 0;
  }

  .text-column>p+p {
    padding-top: 10px;
  }

  /* Learning & Resources End */
  /* Footer CSS */

  .footer-learnmore .sec-ttl {
    max-width: 300px;
    margin: 0 auto;
  }

  .footer-learnmore .footer-mascot {
    position: relative;
    top: -14px;
    right: -60px;
    width: 100%;
    max-width: 204px;
    height: 204px;
    margin-left: auto;
  }

  .home .footer-bottom {
    padding: 7px 0 27px;
  }

  .footer-bottom .inner {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .footer-link-list {
    position: relative;
    justify-content: flex-start;
    margin: 0;
  }

  .footer-learnmore .cmn-btn-white {
    margin-top: 20px;
  }
}

@media screen and (max-width: 480px) {

  /* About Page */
  .about-banner-img,
  .innovate-banner-img {
    height: 250px;
  }

  .about-overlay-txt h1,
  .innovate-overlay-txt h1 {
    font-size: 24px;
    line-height: 30px;
  }

  /* End About Page */
}