@charset "UTF-8";

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@200;300;400;500;600;700&display=swap");

/* Variables */
:root {
  --primary: #111111;
  --secondary: #555555;
  --border: rgba(17, 17, 17, 0.10);
  --bg: #111111;
  --black: #111111;
  --white: #FFFFFF;
  --font_bai: "Bai Jamjuree", sans-serif;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
}

.init-black {
  background-color: #000000;
}

body {
  font-family: var(--font_bai);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.48px;
  color: var(--secondary);
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--primary);
  line-height: 1.22;
  font-family: var(--font_bai);
  font-weight: 500;
}

a {
  text-decoration: none;
  transition: all 0.3s;
  color: inherit;
}
a:hover {
  color: var(--primary);
}

ul, ol { margin: 0; padding: 0; }
button { background: transparent; border: 0; }
p { margin: 0; }

/* Images */
img {
  max-width: 100%;
  display: block;
}

/* Typo Sizes */
h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 30px; }
h4 { font-size: 25px; }
h5 { font-size: 16px; }
h6 { font-size: 18px; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #d6d6d6; }
::-webkit-scrollbar-thumb { background: #666666; }
::-webkit-scrollbar-thumb:hover { background: #555555; }

/* Utilities */
.pos-rel { position: relative; }
.ov-hidden { overflow: hidden; }
.bg-light-gray { background-color: #EDECE8; }

hr {
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  opacity: 1;
}

/* Section Spacing Actually Used On Your Site */
.section-spacing-130 {
  padding-top: 130px;
  padding-bottom: 130px;
}
@media (max-width: 1399px) {
  .section-spacing-130 { padding-top: 80px; padding-bottom: 80px; }
}
@media (max-width: 991px) {
  .section-spacing-130 { padding-top: 60px; padding-bottom: 60px; }
}

.section-spacing-140 {
  padding-top: 140px;
  padding-bottom: 140px;
}
@media (max-width: 1920px) {
  .section-spacing-140 { padding-top: 60px; padding-bottom: 60px; }
}
@media (max-width: 1399px) {
  .section-spacing-140 { padding-top: 60px; padding-bottom: 0; }
}
@media (max-width: 991px) {
  .section-spacing-140 { padding-top: 60px; padding-bottom: 60px; }
}

/* Container */
.container { --bs-gutter-x: 30px; }
.container-1650 { max-width: 1650px; }
.container-1890 { max-width: 1890px; }

/* Side Panel */
.side-info-close {
  font-size: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--black);
  border-radius: 50%;
  color: var(--black);
  transition: all .3s;
}

.side-info {
  background: var(--white);
  padding: 40px 45px;
  position: fixed;
  right: 0;
  top: 0;
  width: 500px;
  height: 100%;
  transform: translateX(calc(100% + 80px));
  transition: transform .45s, opacity .45s;
  z-index: 9999;
  overflow-y: scroll;
  scrollbar-width: none;
}
.side-info::-webkit-scrollbar { display: none; }
.side-info.info-open { transform: translateX(0); }

@media (max-width: 1199px) { .side-info { width: 460px; } }
@media (max-width: 575px)  { .side-info { width: 280px; padding: 30px 20px; } }

/* Offset Header */
.offset-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.offset-logo { width: 95px; }

/* Offset Widgets */
.offset-widget-box { margin-top: 40px; }

.offset-widget-box .title {
  font-size: 25px;
  margin-bottom: 15px;
}

.offset-widget-box .contact-meta > *:not(:first-child) {
  margin-top: 16px;
}

.offset-widget-box .contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.offset-widget-box .contact-item span {
  color: var(--primary);
  font-weight: 500;
}

.offset-widget-box .contact-item .icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--primary);
}

/* === Mobile Menu === */
.mobile-menu {
  margin-top: 40px;
}

.mobile-menu.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  display: block !important;
}

.mobile-menu.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mobile-menu.mean-container .mean-nav > ul > li:last-child > a {
  border-bottom: 1px solid var(--border);
}

.mobile-menu.mean-container .mean-nav .new {
  font-size: 10px;
  font-weight: 600;
  background: #FFA38E;
  color: #00FFCC;
  padding: 3px 7px;
  line-height: 1;
  display: flex;
  align-items: center;
  border-radius: 0px;
}

.mobile-menu.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 15px 0;
  padding-inline-start: 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: var(--primary);
  text-transform: capitalize;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  outline: none;
  transform: translateY(var(--y)) translateZ(0);
  transition: transform .4s ease, box-shadow .4s ease;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .mobile-menu.mean-container .mean-nav ul li a {
    font-size: 16px;
  }
}

.mobile-menu.mean-container .mean-nav ul li a:hover {
  color: var(--primary);
}

/* Expand Button */
.mobile-menu.mean-container .mean-nav ul li a.mean-expand {
  width: 100%;
  height: 48px;
  justify-content: end;
  font-weight: 300;
  border: none !important;
  background: transparent;
}

@media (max-width: 767px) {
  .mobile-menu.mean-container .mean-nav ul li a.mean-expand {
    height: 50px;
  }
}

.mobile-menu.mean-container .mean-nav ul li li:first-child {
  border-top: 1px solid var(--border);
}

.mobile-menu.mean-container .mean-nav ul li li a {
  font-size: 16px;
  text-transform: capitalize;
  border-top: none !important;
  padding: 12px 0;
  padding-inline-start: 15px;
}

.mobile-menu.mean-container .mean-nav ul li li a.mean-expand {
  height: 58px;
}

@media (max-width: 991px) {
  .mobile-menu.mean-container .mean-nav ul li li a.mean-expand {
    height: 25px;
  }
}
@media (max-width: 767px) {
  .mobile-menu.mean-container .mean-nav ul li li a.mean-expand {
    height: 22px;
  }
}

.mobile-menu.mean-container .mean-nav ul li li li:last-child {
  border-bottom: 1px solid var(--border);
}

.mobile-menu.mean-container .mean-nav ul li li li a {
  padding-left: 40px;
}

.mobile-menu.mean-container .mean-bar {
  padding-bottom: 30px;
  background: none;
  overflow-y: scroll;
}

.mobile-menu.mean-container .mean-bar::-webkit-scrollbar {
  width: 0;
}

.mobile-menu.mean-container a.meanmenu-reveal {
  display: none !important;
}

/* === Language Switcher === */
#btn-en,
#btn-zh {
    color: #FFFFFF;
    background: #000000;
	opacity: 0.75;
    padding: 8px 12px;
	padding-top: 25px;
    padding-bottom: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#btn-en:hover,
#btn-zh:hover {
    color: #00FFCC;
    background: #FFFFFF;
}

/* === Sticky Header === */
.header-sticky {
  transition: all .5s;
}

.transformed,
.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 800;
}

.transformed {
  transform: translateY(-100%);
}

.transformed .header-area_inner {
  height: 80px;
}

.sticky {
  background: #FFFFFF;
  transform: translateY(0);
}

/* === Underline Link === */
.underline {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  position: relative;
  padding-bottom: 4px;
  display: inline-block;
  color: var(--primary);
  font-family: var(--font_bai);
}

.underline::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1.5px;
  width: 100%;
  background-color: currentColor;
  transition: all .3s;
}

.underline:hover::before {
  width: 0;
}

/* === Image Reveal (GSAP) === */
.reveal {
  position: relative;
  overflow: hidden;
}

.reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img_anim_reveal {
  visibility: hidden;
  overflow: hidden;
}
.img_anim_reveal img {
  object-fit: cover;
  transform-origin: left;
}

.anim-reveal,
.anim-reveal-line {
  overflow: hidden;
}

/* === Theme Colors === */
.color-white { color: var(--white); }
.color-black { color: var(--black); }
.color-primary { color: var(--primary); }
.color-secondary { color: var(--secondary); }

.theme-bg-white { background-color: var(--white); }
.theme-bg-black { background-color: var(--black); }
.dark .theme-bg-black { background-color: #171717; }
.theme-bg-primary { background-color: var(--primary); }
.theme-bg-secondary { background-color: var(--secondary); }
.theme-bg-transparent { background-color: transparent; }

/* === Z-index Utilities === */
.zi-0 { z-index: 0; }
.zi-1 { z-index: 1; }
.zi-2 { z-index: 2; }
.zi--1 { z-index: -1; }

/* === Text Decoration === */
.text-underline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

/* === Vertical Center Utility === */
.vertically-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* === Text Indent === */
.text-indent-40 { text-indent: 40px; }
.text-indent-50 { text-indent: 50px; }

/* === Layout Fix === */
header { margin-bottom: -1px; z-index: 100; }
section { margin-bottom: -1px; }
.mb--1 { margin-bottom: -1px; }

/* === Light / Dark Visibility === */
.show-light { display: inline-block; }
.dark .show-light { display: none; }

.show-dark { display: none; }
.dark .show-dark { display: inline-block; }

/* === Preloader === */
.loader-wrap {
  position: fixed;
  inset: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--action);
  overflow: hidden;
  z-index: 99999;
}

.loader-wrap svg {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 110vh;
  fill: #000000;
}

.loader-wrap .loader-wrap-heading .load-text {
  font-size: 100px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  z-index: 20;
}

@media (max-width: 767px) {
  .loader-wrap .loader-wrap-heading .load-text {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .loader-wrap .loader-wrap-heading .load-text {
    font-size: 40px;
  }
}

.load-text span {
  animation: loading 1s infinite alternate;
}

.load-text span:nth-child(1) { animation-delay: 0s; }
.load-text span:nth-child(2) { animation-delay: 0.1s; }
.load-text span:nth-child(3) { animation-delay: 0.2s; }
.load-text span:nth-child(4) { animation-delay: 0.3s; }
.load-text span:nth-child(5) { animation-delay: 0.4s; }
.load-text span:nth-child(6) { animation-delay: 0.5s; }
.load-text span:nth-child(7) { animation-delay: 0.6s; }

@keyframes loading {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

/* === Progress Circle Scroll Indicator === */
.progress-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 46px;
  width: 46px;
  border-radius: 50px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100px);
  transition: all 300ms linear;
  z-index: 99;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  height: 46px;
  width: 46px;
  line-height: 46px;
  font-size: 20px;
  color: var(--primary);
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
}

.dark .progress-wrap::after { color: var(--black); }

/* Circle Path */
.progress-wrap svg.progress-circle path {
  fill: var(--white);
  stroke-width: 5;
  transition: all 200ms linear;
}

/* === Menu === */
.main-menu > ul { display: flex; }
.main-menu > ul > li:first-child > a { padding-left: 0; }
.main-menu > ul > li:last-child > a { padding-right: 0; }

.main-menu li {
  position: relative;
  list-style: none;
}

.main-menu li a {
  display: flex;
  align-items: center;
  padding: 37px 15px;
  font-size: 18px;
  font-weight: 400;
  color: var(--primary);
  text-transform: capitalize;
}

.main-menu > ul > li:hover > a {
  color: var(--secondary);
}

/* Dropdown Menu */
.main-menu ul.dp-menu {
  position: absolute;
  inset-inline-start: 10px;
  width: 250px;
  padding: 18px 0;
  background: #232529;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  z-index: 10;
}

.main-menu > ul > li:hover > ul.dp-menu {
  opacity: 1;
  pointer-events: all;
}

.main-menu ul.dp-menu li {
  padding: 0 25px;
}

.main-menu ul.dp-menu li a {
  padding: 10px 0;
  font-size: 16px;
  color: #FFFFFF;
}

.main-menu ul.dp-menu li:hover > a {
  color: #00FFCC;
}

/* Mega Menu */
.main-menu .mega-menu {
  background: var(--black);
  padding: 30px 50px;
  width: 100%;
  position: absolute;
  left: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 50px;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}

.main-menu .mega-menu .title {
  color: var(--white);
  border-bottom: 1px solid #555555;
  margin-bottom: 20px;
  padding-bottom: 20px;
  pointer-events: none;
}

.header-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0px;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
}

.header-area_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  gap: 30px;
}

@media (max-width: 1399px) {
  .header-area { padding: 0px; }
}

.header-area .header-right {
  display: flex;
  align-items: center;
  gap: 70px;
}

@media (max-width: 1199px) {
  .header-area .header-right { gap: 30px; }
}

/* Navicon */
.header-area .navicon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 575px) {
  .header-area .navicon {
    width: 45px;
    height: 45px;
  }
}

/* Sidebar Toggle Icon */
.header-area .side-toggle .bar-icon {
  width: 25px;
  height: 10px;
}
.header-area .side-toggle .bar-icon span {
  height: 2px;
  border-radius: 500px;
  background: var(--white);
}
.header-area .side-toggle .bar-icon span:nth-child(2) {
  margin-left: 10px;
}

/* Logo Area */
.header-area .header_logo {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 25px;
  color: #FFFFFF;
}

/* Sticky + Transformed State Background Fix */
.header-area .sticky,
.header-area .transformed {
  background-color: #FFFFFF;
}

/* Top Menu */
.header-area .main-menu > ul {
  display: flex;
}

.header-area .main-menu > ul > li:hover > a {
  color: #00FFCC;
}

.header-area .main-menu li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  padding: 24px 14px;
  text-transform: uppercase;
}

@media (max-width: 1399px) {
  .header-area .main-menu li a {
    padding: 25px 10px;
  }
}

/* Header Meta Text */
.header-area .header-meta {
  margin-left: 75px;
}
@media (max-width: 1199px) {
  .header-area .header-meta {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .header-area .header-meta {
    display: none;
  }
}

.header-area .header-meta .date {
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: var(--white);
  letter-spacing: -0.48px;
}

/* Divider Line Next To Navicon */
.header-area .header_navicon {
  display: flex;
  align-items: center;
  border-left: 1px solid var(--border);
}

.header-area .underline {
  color: var(--white);
}
@media (max-width: 575px) {
  .header-area .underline {
    display: none;
  }
}
.header-area .underline::before {
  background: var(--white);
}

/* === Icon Draw Animation === */
.bar-icon {
  width: 26px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: color 0.2s ease-out;
}

.bar-icon span {
  width: 100%;
  height: 2px;
  background: var(--primary);
  display: inline-block;
  transition: color 0.2s ease-out;
}

.bar-icon:hover span {
  animation: qode-draw 0.8s cubic-bezier(0.44,1.1,0.53,0.99) 1 forwards;
}

.bar-icon:hover span:nth-child(2) { animation-delay: 0.1s; }
.bar-icon:hover span:nth-child(3) { animation-delay: 0.2s; }

/* 2x2 Grid Icon */
.bar-icon-2 {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 5px;
}
.bar-icon-2 span {
  width: 7px;
  height: 7px;
  background: var(--white);
  display: flex;
}

/* Animation Keyframes */
@keyframes qode-draw {
  0%, 100% { clip-path: inset(-2px 0); }
  42% { clip-path: inset(-2px 0 -2px 100%); }
  43% { clip-path: inset(-2px 100% -2px 0); }
}

/* === Side Menu Base === */
.side-info {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  padding: 0 100px;
  overflow-y: scroll;
  transition: clip-path .9s ease;
  z-index: 0;
  background: rgba(237, 236, 232, 0.8);
  backdrop-filter: blur(2px);
  clip-path: inset(0 0 100% 0);
}

@media (max-width: 991px) {
  .side-info {
    padding: 0 20px;
  }
}

/* Opened State */
.side-info.info-open {
  clip-path: inset(0 0 0 0);
  z-index: 99999;
}

/* Closing Animation */
.side-info.closing {
  clip-path: inset(0 0 100% 0);
  z-index: 99999;
}

/* === Header Inside Side Menu === */
.side-info .side-menu .offset-header {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.side-info .side-menu .offset-header h6 {
  font-size: 16px;
  color: var(--secondary);
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.48px;
}

@media (max-width: 767px) {
  .side-info .side-menu .offset-header h6 {
    display: none;
  }
}

.side-info .side-menu .offset-header .date {
  font-size: 16px;
  color: var(--secondary);
  font-weight: 400;
}

@media (max-width: 767px) {
  .side-info .side-menu .offset-header .date {
    display: none;
  }
}

/* Logo */
.side-info .side-menu .offset-logo {
  margin-right: 225px;
  align-items: center;
  font-size: 25px;
  color: var(--primary);
  padding-top: 8px;
}

@media (max-width: 767px) {
  .side-info .side-menu .offset-logo {
    margin-right: 0;
    font-size: 25px;
    color: var(--primary);
  }
}

/* === Side Menu Layout === */
.side-info .side-menu .contact-meta {
  display: grid;
  grid-template-columns: 325px 500px auto;
  justify-content: space-between;
  gap: 50px;
}

@media (max-width: 1920px) {
  .side-info .side-menu .contact-meta {
    grid-template-columns: 200px auto 182px;
  }
}

@media (max-width: 1199px) {
  .side-info .side-menu .contact-meta {
    grid-template-columns: 150px auto 182px;
  }
}

@media (max-width: 767px) {
  .side-info .side-menu .contact-meta {
    grid-template-columns: auto;
  }
}

/* === Contact Items === */
.side-info .side-menu .contact-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .side-info .side-menu .contact-item:nth-child(1),
  .side-info .side-menu .contact-item:nth-child(3) {
    display: none;
  }
}

.side-info .side-menu .contact-item .title {
  font-size: 18px;
  color: #666666;
  margin-bottom: 30px;
  letter-spacing: -0.54px;
}

/* Corrected Spelling: .social-media */
.side-info .side-menu .contact-item .social-media li {
  list-style: none;
}

.side-info .side-menu .contact-item .social-media li a {
  font-size: 18px;
  color: var(--primary);
  line-height: 35px;
}

.side-info .side-menu .contact-item .social-media li a:hover {
  color: var(--secondary);
}

/* === Mobile Menu Inside Side Menu === */
.side-info .side-menu .contact-item .mobile-menu ul li a {
  padding: 15px 0;
  font-size: 88px;
}

@media (max-width: 1399px) { .side-info .side-menu .contact-item .mobile-menu ul li a { font-size: 70px; } }
@media (max-width: 1199px) { .side-info .side-menu .contact-item .mobile-menu ul li a { font-size: 50px; } }
@media (max-width: 991px)  { .side-info .side-menu .contact-item .mobile-menu ul li a { font-size: 40px; } }
@media (max-width: 767px)  { .side-info .side-menu .contact-item .mobile-menu ul li a { font-size: 30px; } }

.side-info .side-menu .contact-item .mobile-menu ul li a.mean-expand {
  height: 120px;
}

@media (max-width: 1399px) { .side-info .side-menu .contact-item .mobile-menu ul li a.mean-expand { height: 100px; } }
@media (max-width: 1199px) { .side-info .side-menu .contact-item .mobile-menu ul li a.mean-expand { height: 80px; } }

/* Submenu links */
.side-info .side-menu .contact-item .mobile-menu ul li li a {
  font-size: 16px;
}

/* === Nav List === */
.side-info .side-menu .contact-item .nav-list li {
  list-style: none;
  transform: translateY(-20px);
}

.side-info .side-menu .contact-item .nav-list li a {
  font-size: 60px;
  line-height: 100px;
  color: var(--secondary);
  letter-spacing: -4.5px;
}

.side-info .side-menu .contact-item .nav-list li a:hover {
  color: var(--primary);
}

/* === Contact Info Link === */
.side-info .side-menu .contact-item .info a {
  font-size: 18px;
  position: relative;
  color: var(--primary);
}

.side-info .side-menu .contact-item .info a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: currentColor;
  transition: .3s;
}

.side-info .side-menu .contact-item .info a:hover::before {
  width: 0;
}

/* === Close Button === */
.side-info .side-menu .side-info-close {
  position: absolute;
  bottom: 30px;
  width: 200px;
  height: 60px;
  background: #FFFFFF;
  border: 0px;
  font-size: 16px;
  color: var(--primary);
  border-radius: 0px;
  text-align: center;
}

@media (max-width: 767px) {
  .side-info .side-menu .side-info-close {
    top: 0;
    right: 0;
    bottom: auto;
  }
}

@media (max-width: 575px) {
  .side-info .side-menu .side-info-close {
    width: 110px;
    height: 50px;
    padding: 0 10px;
    top: 10px;
    right: 10px;
  }
}

.side-info .side-menu .side-info-close:hover {
  background: var(--black);
  color: var(--white);
  border-color: transparent;
}

/* === Footer Grid Layout === */
.footer-widget-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 767px) {
  .footer-widget-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }
}

@media (max-width: 575px) {
  .footer-widget-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* === Footer Container === */
.footer_inner {
  border-top: 1px solid #DADADA;
  margin-top: -4px;
}

/* === Footer Columns === */
.footer-widget-box {
  display: flex;
  flex-direction: column;
  padding-top: 37px;
  padding-bottom: 40px;
}

@media (max-width: 767px) {
  .footer-widget-box {
    padding-bottom: 10px;
  }
}

.footer-widget-box:not(:last-child) {
  border-right: 1px solid #DADADA;
}

@media (max-width: 767px) {
  .footer-widget-box:not(:last-child) {
    border-right: none;
  }
}

.footer-widget-box:not(:first-child) {
  padding-left: 40px;
}

@media (max-width: 1399px) {
  .footer-widget-box:not(:first-child) {
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .footer-widget-box:not(:first-child) {
    padding-left: 0;
  }
}

/* === Footer Titles === */
.footer-widget-box .title {
  font-size: 16px;
  font-weight: 500;
  color: #666666;
  line-height: 18px;
  letter-spacing: -0.48px;
}

@media (max-width: 575px) {
  .footer-widget-box .title {
    margin-bottom: 10px;
  }
}

/* === Copyright === */
.footer-widget-box .copyright-text {
  margin-top: 255px;
}

@media (max-width: 1399px) {
  .footer-widget-box .copyright-text {
    margin-top: 200px;
  }
}

@media (max-width: 575px) {
  .footer-widget-box .copyright-text {
    margin-top: 50px;
  }
}

.footer-widget-box .copyright-text .text {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
  line-height: 18px;
  letter-spacing: -0.48px;
}

.footer-widget-box .copyright-text .text:hover {
  color: #666666;
}

/* === Footer Navigation === */
.footer-widget-box .footer-nav-list {
  margin-top: auto;
}

.footer-widget-box .footer-nav-list li {
  list-style: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.48px;
  color: var(--primary);
}

.footer-widget-box .footer-nav-list li a {
  display: inline-block;
  overflow: hidden;
  position: relative;
  color: var(--primary);
  line-height: 18px;
  letter-spacing: -0.48px;
  transition: color .3s;
}

.footer-widget-box .footer-nav-list li a span {
  display: inline-block;
  transition: transform .3s ease;
}

.footer-widget-box .footer-nav-list li a::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  color: var(--primary);
  transition: top .3s ease;
}

.footer-widget-box .footer-nav-list li a:hover span {
  transform: translateY(-100%);
}

.footer-widget-box .footer-nav-list li a:hover::after {
  top: 0;
}

/* === Footer Contact Info === */
.footer-widget-box .footer-location {
  margin-top: auto;
}

.footer-widget-box .footer-location p,
.footer-widget-box .footer-location a {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: var(--primary);
  letter-spacing: -0.48px;
}

.footer-widget-box .footer-location a:hover {
  color: #666666;
}

/* === Section Title Wrapper === */
.section-title_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (max-width: 1920px) {
  .section-title_wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1399px) {
  .section-title_wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1199px) {
  .section-title_wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .section-title_wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .section-title_wrapper {
    gap: 20px;
  }
}

/* Sub-title line */
.section-title_wrapper .section-sub-title {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  margin-left: 50px;
  line-height: 20px;
  position: relative;
  letter-spacing: -0.48px;
}

.section-title_wrapper .section-sub-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--primary);
  transform: translate(-50px, 0);
}

/* Main Title */
.section-title_wrapper .section-title {
  font-size: 50px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: -2.5px;
}

@media (max-width: 991px) {
  .section-title_wrapper .section-title {
    margin-top: 0;
    letter-spacing: 0;
  }
  .section-title_wrapper .section-title br {
    display: none;
  }
}

@media (max-width: 575px) {
  .section-title_wrapper .section-title {
    font-size: 30px;
    line-height: 40px;
  }
}

/* Description */
.section-title_wrapper .desc {
  margin-top: 10px;
}

@media (max-width: 991px) {
  .section-title_wrapper .desc {
    margin-top: 0;
  }
}

/* === Breadcrumb Wrapper === */
.breadcrumb {
  padding: 0;
  margin: 0;
}

/* Background Image Layer */
.breadcrumb_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumb_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumb_bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #111111;
  mix-blend-mode: soft-light;
}

/* Content Area */
.breadcrumb_content {
  position: relative;
  z-index: 9;
  padding-top: 250px;
  padding-bottom: 70px;
}

@media (max-width: 1199px) {
  .breadcrumb_content {
    padding-top: 0;
    padding-bottom: 100px;
  }
}

@media (max-width: 991px) {
  .breadcrumb_content {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}

@media (max-width: 575px) {
  .breadcrumb_content {
    padding-top: 110px;
    padding-bottom: 40px;
  }
}

/* Sub Title */
.breadcrumb_sub-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 50px;
  color: var(--white);
  letter-spacing: -0.54px;
}

@media (max-width: 1199px) {
  .breadcrumb_sub-title {
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .breadcrumb_sub-title {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .breadcrumb_sub-title {
    margin-bottom: 10px;
  }
}

/* Main Title */
.breadcrumb_title {
  font-size: 130px;
  font-weight: 500;
  line-height: 105px;
  color: var(--white);
  letter-spacing: -6.5px;
}

@media (max-width: 1199px) {
  .breadcrumb_title {
    font-size: 110px;
  }
}

@media (max-width: 991px) {
  .breadcrumb_title {
    font-size: 90px;
    line-height: 90px;
  }
}

@media (max-width: 575px) {
  .breadcrumb_title {
    font-size: 60px;
    line-height: 60px;
    letter-spacing: -2px;
  }
}

/* === About Section === */
.about_inner .title {
  font-size: 50px;
  font-weight: 500;
  max-width: 1405px;
  line-height: 50px;
  color: var(--primary);
  letter-spacing: -2.5px;
}

@media (max-width: 1199px) {
  .about_inner .title { font-size: 45px; }
}

@media (max-width: 991px) {
  .about_inner .title { font-size: 40px; }
}

@media (max-width: 767px) {
  .about_inner .title {
    font-size: 35px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {
  .about_inner .title {
    font-size: 30px;
    line-height: 35px;
    letter-spacing: -1px;
  }
}

/* Wrapper Grid */
.about_inner .about_wrapper {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 50px 170px;
  margin: 130px 0 0 160px;
}

@media (max-width: 1399px) {
  .about_inner .about_wrapper {
    gap: 50px 120px;
  }
}

@media (max-width: 1199px) {
  .about_inner .about_wrapper {
    gap: 50px 50px;
    grid-template-columns: 300px 1fr;
    margin: 80px 0 0 0;
  }
}

@media (max-width: 767px) {
  .about_inner .about_wrapper {
    grid-template-columns: 1fr;
  }
}

/* Content Box */
.about_inner .about_wrapper .about_box .content {
  margin-top: 286px;
}

@media (max-width: 991px) {
  .about_inner .about_wrapper .about_box .content {
    margin-top: 0;
  }
}

.about_inner .about_wrapper .about_box .content .desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  max-width: 300px;
  font-style: italic;
  margin-bottom: 44px;
  color: var(--secondary);
  letter-spacing: -0.6px;
}

@media (max-width: 767px) {
  .about_inner .about_wrapper .about_box .content .desc {
    max-width: 100%;
    margin-bottom: 30px;
  }
}

/* Author Info */
.about_inner .about_wrapper .about_box .content .author {
  padding-top: 17px;
  border-top: 1px solid var(--border);
}

.about_inner .about_wrapper .about_box .content .author .name {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
  line-height: 20px;
  letter-spacing: -0.6px;
}

@media (max-width: 991px) {
  .about_inner .about_wrapper .about_box .content .author .name {
    font-size: 28px;
  }
}

.about_inner .about_wrapper .about_box .content .author span {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary);
  line-height: 20px;
  letter-spacing: -0.42px;
}

/* Media Block */
.about_inner .about_wrapper .about_box .media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about_inner .about_wrapper .about_box .media .title {
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  max-width: 710px;
  color: var(--primary);
  letter-spacing: -1.5px;
  margin: 64px 0 50px;
}

@media (max-width: 767px) {
  .about_inner .about_wrapper .about_box .media .title {
    font-size: 25px;
    max-width: 100%;
    margin-top: 30px;
    letter-spacing: 0;
  }
}

/* Button */
.about_inner .about_wrapper .about_box .media .rr-btn-primary {
  padding: 13.5px 33px;
}

/* === Awarded Section === */
.awarded .awarded_inner {
  display: grid;
  grid-template-columns: 650px 1fr;
  gap: 50px 160px;
  padding: 115px 0 0 150px;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 1920px) {
  .awarded .awarded_inner {
    grid-template-columns: 500px 1fr;
    gap: 50px 100px;
    padding-left: 100px;
  }
}

@media (max-width: 1399px) {
  .awarded .awarded_inner {
    grid-template-columns: 440px 1fr;
    gap: 50px 50px;
    padding-left: 50px;
  }
}

@media (max-width: 1199px) {
  .awarded .awarded_inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .awarded .awarded_inner {
    padding-left: 10px;
  }
}

/* Vertical Divider */
.awarded .awarded_inner.has--border {
  position: relative;
}

.awarded .awarded_inner.has--border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  border-right: 1px solid var(--border);
}

@media (max-width: 1399px) {
  .awarded .awarded_inner.has--border::before {
    display: none;
  }
}

/* Content Area */
.awarded .awarded_content {
  padding-bottom: 70px;
}

@media (max-width: 1199px) {
  .awarded .awarded_content {
    margin-right: 20px;
    padding-bottom: 0;
  }
}

/* Title Area */
.awarded .awarded-title_wrapper {
  margin-bottom: 64px;
}

.awarded .awarded-title_wrapper .sub-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  padding-left: 50px;
  margin-bottom: 30px;
  color: var(--primary);
  letter-spacing: -0.48px;
  position: relative;
}

.awarded .awarded-title_wrapper .sub-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--primary);
  transform: translateY(-50%);
}

.awarded .awarded-title_wrapper .title {
  font-size: 50px;
  font-weight: 500;
  line-height: 50px;
  color: var(--primary);
  letter-spacing: -2.5px;
}

@media (max-width: 575px) {
  .awarded .awarded-title_wrapper .title {
    font-size: 40px;
    line-height: 40px;
  }
}

/* Dedication Text */
.awarded .dedication {
  max-width: 330px;
  margin-top: 55px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #555555;
  letter-spacing: -0.48px;
}

/* Award List */
.awarded .awarded_wrapper .awarded_item {
  padding: 10px 0;
  border-top: 1px solid var(--border);
}

.awarded .awarded_wrapper .awarded_item:last-child {
  border-bottom: 1px solid var(--border);
}

.awarded .awarded_wrapper .awarded_item .title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--primary);
  letter-spacing: -0.6px;
}

/* Image */
.awarded .awarded_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === About Section Top Spacing === */
.about_top {
  margin-bottom: 160px;
}
@media (max-width: 991px) {
  .about_top { margin-bottom: 100px; }
}
@media (max-width: 767px) {
  .about_top { margin-bottom: 50px; }
}

/* === Main About Title === */
.about_main-title {
  font-size: 70px;
  font-weight: 500;
  line-height: 60px;
  max-width: 1618px;
  margin-bottom: 60px;
  color: var(--primary);
  letter-spacing: -0.05em;
  font-family: var(--font_bai);
}
@media (max-width: 1399px) {
  .about_main-title { font-size: 60px; }
}
@media (max-width: 1199px) {
  .about_main-title { font-size: 55px; }
}
@media (max-width: 991px) {
  .about_main-title { font-size: 50px; line-height: 60px; }
}
@media (max-width: 767px) {
  .about_main-title { font-size: 45px; line-height: 55px; margin-bottom: 30px; }
}
@media (max-width: 575px) {
  .about_main-title { font-size: 30px; line-height: 40px; }
}

/* Button Style Override */
.about_btn .underline {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 5px;
  text-transform: none;
}

/* === Featured Section Title === */
.featured_title {
  font-size: 25px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 30px;
  color: var(--primary);
  letter-spacing: -0.05em;
  font-family: var(--font_bai);
}

/* === Featured Description === */
.featured_description {
  font-size: 16px;
  font-weight: 500;
  max-width: 420px;
  line-height: 20px;
  margin-top: auto;
  letter-spacing: -0.03em;
  font-family: var(--font_bai);
}

/* === Featured Grid Layout === */
.featured_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1199px) {
  .featured_wrapper { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
  .featured_wrapper { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .featured_wrapper { grid-template-columns: 1fr; }
}

.featured_content {
  display: flex;
  flex-direction: column;
}

.featured_thumb {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.featured_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Featured Item Box === */
.featured_item {
  padding: 30px;
  display: flex;
  border-right: 1px solid #DADADA;
  border-bottom: 1px solid #DADADA;
}
@media (max-width: 767px) {
  .featured_item {
    padding: 30px 0;
    border-right: none;
  }
}

/* First Row Borders */
.featured_item:nth-child(1),
.featured_item:nth-child(2),
.featured_item:nth-child(3) {
  border-top: 1px solid #DADADA;
}

/* Hide Decorative items on smaller screens */
.featured_item:nth-child(1),
.featured_item:nth-child(4),
.featured_item:nth-child(7),
.featured_item:nth-child(8),
.featured_item:nth-child(11) {
  padding-left: 0;
}
@media (max-width: 1199px) {
  .featured_item:nth-child(1),
  .featured_item:nth-child(4),
  .featured_item:nth-child(7),
  .featured_item:nth-child(8),
  .featured_item:nth-child(11) {
    display: none;
  }
}

/* Special Grid Spans */
.featured_item:nth-child(3) {
  grid-column: span 2;
  border-right: none;
  padding-right: 0;
}
@media (max-width: 991px) {
  .featured_item:nth-child(3) { grid-column: auto; }
}

.featured_item:nth-child(12) {
  grid-column: span 2;
  padding-left: 0;
}
@media (max-width: 1199px) {
  .featured_item:nth-child(12) { padding-left: 30px; }
}
@media (max-width: 767px) {
  .featured_item:nth-child(12) { grid-column: auto; padding-left: 0; }
}

/* Center Item */
.featured_item:nth-child(14) {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: none;
  padding-right: 0;
}
@media (max-width: 1199px) {
  .featured_item:nth-child(14) { border-right: 1px solid #DADADA; }
}
@media (max-width: 767px) {
  .featured_item:nth-child(14) { border-right: none; }
}

/* === Responsive Adjust === */
.has--padding {
  overflow: hidden;
}

@media (max-width: 1919px) {
  .has--padding { padding-left: 90px; }
}

@media (max-width: 1199px) {
  .has--padding { padding-left: 0; }
}

/* === Hero Section === */
.hero {
  width: 100%;
  background: black;
}

.hero_inner {
  margin: 0 auto;
  padding-top: 146px;
  overflow: hidden;
  position: relative;
  background: #FFFFFF;
  transform-origin: center 13%;
  transform: scale(0.2);
}

@media (max-width: 1199px) {
  .hero_inner {
    transform-origin: center 17%;
  }
}

@media (max-width: 991px) {
  .hero_inner {
    transform: scale(1);
  }
}

@media (max-width: 767px) {
  .hero_inner {
    padding-bottom: 50px;
  }
}

@media (max-width: 575px) {
  .hero_inner {
    padding-top: 100px;
  }
}

/* === Hero Navigation === */
.hero-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 100;
  mix-blend-mode: exclusion;
}

@media (max-width: 1199px) {
  .hero-nav { display: none; }
}

.hero-nav::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 87px;
  width: 1px;
  height: 10000px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-nav_content {
  position: absolute;
  left: 25px;
  bottom: 30px;
  display: flex;
}

.hero-nav_content img {
  margin-top: 205px;
  mix-blend-mode: exclusion;
}

.hero-nav_content p {
  width: 152px;
  margin-left: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  color: var(--white);
  letter-spacing: -0.48px;
  transform: rotate(-90deg);
}

.hero-nav .side-toggle {
  position: absolute;
  top: 53%;
  left: 26px;
  transform: translateY(50%);
}

.hero-nav .side-toggle .bar-icon {
  width: 30px;
  height: 7px;
  rotate: -90deg;
}

.hero-nav .side-toggle .bar-icon span {
  height: 1px;
  background: var(--white);
}

/* === Hero Main Content === */
.hero_content {
  text-align: center;
  margin-bottom: 120px;
}

@media (max-width: 1199px) {
  .hero_content { margin-bottom: 100px; }
}

@media (max-width: 991px) {
  .hero_content { margin-bottom: 60px; }
}

/* Sub-title */
.hero_content .sub-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 35px;
  line-height: 20px;
  letter-spacing: -0.6px;
}

@media (max-width: 575px) {
  .hero_content .sub-title {
    font-size: 18px;
    margin-bottom: 25px;
  }
}

/* Main Title */
.hero_content .title {
  font-size: 250px;
  font-weight: 500;
  line-height: 195px;
  margin-bottom: 70px;
  letter-spacing: -7.5px;
  text-transform: uppercase;
}

@media (max-width: 1399px) {
  .hero_content .title { font-size: 220px; }
}

@media (max-width: 1199px) {
  .hero_content .title { font-size: 190px; line-height: 170px; }
}

@media (max-width: 991px) {
  .hero_content .title { font-size: 150px; line-height: 140px; margin-bottom: 50px; }
}

@media (max-width: 767px) {
  .hero_content .title {
    font-size: 115px;
    line-height: 110px;
    margin-bottom: 30px;
    letter-spacing: -5px;
  }
}

@media (max-width: 575px) {
  .hero_content .title {
    font-size: 60px;
    line-height: 60px;
  }
}

/* Hyphen Block In Title */
.hero_content .title .hyphen {
  display: inline-block;
  width: 150px;
  height: 18px;
  margin-left: 20px;
  background: var(--primary);
}

@media (max-width: 1399px) {
  .hero_content .title .hyphen { width: 130px; }
}

@media (max-width: 1199px) {
  .hero_content .title .hyphen { width: 100px; height: 15px; }
}

@media (max-width: 991px) {
  .hero_content .title .hyphen { width: 80px; height: 12px; }
}

@media (max-width: 767px) {
  .hero_content .title .hyphen { width: 40px; height: 8px; }
}

@media (max-width: 575px) {
  .hero_content .title .hyphen { width: 25px; height: 5px; margin-left: 10px; }
}

/* Sub-title Bottom */
.hero_content .sub-title-bottom {
  font-size: 50px;
  font-weight: 500;
  line-height: 50px;
  margin-bottom: 53px;
  letter-spacing: -2.5px;
}

@media (max-width: 767px) {
  .hero_content .sub-title-bottom {
    font-size: 40px;
    margin-bottom: 40px;
    letter-spacing: 0;
  }
}

@media (max-width: 575px) {
  .hero_content .sub-title-bottom {
    font-size: 23px;
    line-height: 30px;
  }
}

.hero_content .sub-title-bottom span {
  font-weight: 400;
  font-style: italic;
  display: inline-block;
  text-decoration: underline;
}

/* Button */
.hero_content .rr-btn-primary {
  margin: 0 auto;
}

@media (max-width: 767px) {
  .hero_content .rr-btn-primary {
    padding: 20px 25px;
  }
}

/* === Product Section === */
.product-details_inner {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* === Award Details Section === */
.award-details_inner {
  padding: 60px 0;
}

.section-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  max-width: 1346px;
  margin-bottom: 60px;
}

@media (max-width: 1199px) {
.section-title-wrapper {
    margin-bottom: 60px;
  }
}

@media (max-width: 991px) {
.section-title-wrapper {
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
}

.section-title-wrapper .title {
  font-size: 30px;
  font-weight: 500;
  max-width: 850px;
  line-height: 30px;
  color: var(--primary);
  letter-spacing: -1.5px;
}

@media (max-width: 575px) {
.section-title-wrapper .title {
    font-size: 25px;
  }
}

.section-title-wrapper .title span {
  color: #666666;
}

.section-title-wrapper .sub-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.48px;
  color: var(--primary);
}

/* === Wrapper Grid === */
.award-details_wrapper {
  display: grid;
  gap: 30px;
  grid-template-columns: 850px 1fr;
}

@media (max-width: 1399px) {
  .award-details_wrapper { grid-template-columns: 650px 1fr; }
}

@media (max-width: 1199px) {
  .award-details_wrapper { grid-template-columns: 470px 1fr; }
}

@media (max-width: 991px) {
  .award-details_wrapper { grid-template-columns: 1fr; }
}

/* Media Image */
.award-details_wrapper .award-details_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Layout */
.award-details_wrapper .award-details_content {
  display: grid;
  gap: 30px;
}

@media (max-width: 1920px) {
  .award-details_wrapper .award-details_content {
    grid-template-columns: auto 1fr;
  }
}

@media (max-width: 575px) {
  .award-details_wrapper .award-details_content {
    grid-template-columns: 1fr;
  }
}

/* Info Items */
.award-details_wrapper .award-details_info-item:not(:last-child) {
  margin-bottom: 12px;
}

.award-details_wrapper .award-details_info span {
  font-size: 16px;
  font-weight: 500;
  color: #666666;
  line-height: 20px;
  letter-spacing: -0.48px;
  margin-bottom: 2px;
}

.award-details_wrapper .award-details_info .title,
.award-details_wrapper .award-details_overview .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--primary);
  letter-spacing: -0.48px;
  margin-bottom: 5px;
}

/* Overview Text */
.award-details_wrapper .award-details_overview p {
  margin-bottom: 20px;
}

/* Overview List */
.award-details_wrapper .award-details_overview .list {
  margin-top: 150px;
  margin-left: 20px;
}

@media (max-width: 1199px) {
  .award-details_wrapper .award-details_overview .list {
    margin-top: 100px;
  }
}

@media (max-width: 991px) {
  .award-details_wrapper .award-details_overview .list {
    margin-top: 60px;
  }
}

.award-details_wrapper .award-details_overview .list .title {
  margin-left: -18px;
  display: inline-block;
}

.award-details_wrapper .award-details_overview .list li:not(:last-child) {
  margin-bottom: 12px;
}

.award-details_wrapper .award-details_overview .list li:first-child {
  list-style-type: disc;
}

/* === Loading Overlay === */
.loading-form {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  font-size: 16px;
  text-align: center;
  padding-top: 20%;
}

/* === Underline Link === */
.underline {
  display: inline-flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  color: var(--primary);
  padding-bottom: 8px;
  text-transform: uppercase;
  align-items: center;
  position: relative;
}

.underline i {
  rotate: -45deg;
  transition: .3s;
}

.underline::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--primary);
  transition: .3s;
}

.underline:hover::before {
  width: 0;
}

.underline:hover i {
  rotate: 0deg;
}

/* === Call-To-Action Section === */
.call-to-action_inner {
  position: relative;
  overflow: hidden;
  background-color: #EDECE8;
}

/* Background Image */
.call-to-action_inner .media {
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .call-to-action_inner .media {
    height: 200px;
  }
}

.call-to-action_inner .media::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  background: rgba(17, 17, 17, 0.34);
  z-index: 2;
}

.call-to-action_inner .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Title Overlay */
.call-to-action_inner .section-title_wrapper {
  position: absolute;
  left: 80px;
  bottom: 140px;
  margin-bottom: 0;
  z-index: 2;
}

@media (max-width: 1199px) {
  .call-to-action_inner .section-title_wrapper {
    bottom: 50px;
  }
}

@media (max-width: 991px) {
  .call-to-action_inner .section-title_wrapper {
    bottom: 30px;
    left: 30px;
  }
}

@media (max-width: 575px) {
  .call-to-action_inner .section-title_wrapper {
    left: 20px;
    bottom: 20px;
  }
}

.call-to-action_inner .section-title_wrapper .sub-title {
  color: var(--white);
  border: 1.2px solid rgba(255, 255, 255, 0.3);
}

.call-to-action_inner .section-title_wrapper .title {
  font-size: 60px;
  font-weight: 500;
  line-height: 60px;
  color: var(--white);
  letter-spacing: -2px;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .call-to-action_inner .section-title_wrapper .title {
    font-size: 30px;
    line-height: 30px;
  }
}

@media (max-width: 991px) {
  .call-to-action_inner .section-title_wrapper .title {
    font-size: 45px;
    line-height: 55px;
    letter-spacing: -2px;
  }
}

@media (max-width: 767px) {
  .call-to-action_inner .section-title_wrapper .title {
    font-size: 35px;
    line-height: 45px;
  }
}

@media (max-width: 575px) {
  .call-to-action_inner .section-title_wrapper .title {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -1px;
  }
}

/* === Hero Section Banner === */
.hero-section_banner {
  position: relative;
  background-color: #000000 !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0 300px;
}

@media (max-width: 1399px) {
  .hero-section_banner { padding-bottom: 160px; }
}

@media (max-width: 1199px) {
  .hero-section_banner { padding-bottom: 115px; }
}

@media (max-width: 991px) {
  .hero-section_banner { padding-bottom: 120px; }
}

@media (max-width: 767px) {
  .hero-section_banner { padding-bottom: 95px; }
}

@media (max-width: 575px) {
  .hero-section_banner { padding: 420px 0 70px; }
}

/* Background Overlay */
.hero-section_banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(17, 17, 17, 0.2);
}

.hero-section_banner img {
  max-width: inherit;
}

@media (max-width: 1399px) {
  .hero-section_banner img { max-width: 100%; }
}

/* === Hero Title === */
.hero-section_title {
  position: relative;
  font-size: 150px;
  font-weight: 300;
  line-height: 61px;
  color: var(--white);
  letter-spacing: -5px;
  text-transform: uppercase;
  font-family: var(--font_tartuffotrial);
}

@media (max-width: 1920px) {
  .hero-section_title { font-size: 125px; }
}

@media (max-width: 1399px) {
  .hero-section_title {
    font-size: 80px;
    line-height: 0;
    letter-spacing: 0;
  }
}

@media (max-width: 1199px) {
  .hero-section_title { font-size: 60px; }
}

@media (max-width: 767px) {
  .hero-section_title { font-size: 49px; letter-spacing: 0; }
}

@media (max-width: 575px) {
  .hero-section_title { font-size: 27px; }
}

/* Force line break On Mobile */
@media (max-width: 767px) {
  .hero-section_title br { display: block; }
}

/* Big Decorative Letter */
.hero-section_title .big-text {
  position: relative;
  top: 130px;
  font-size: 320px;
  font-weight: 100;
  line-height: 60px;
  color: var(--white);
  text-transform: uppercase;
}

@media (max-width: 1920px) {
  .hero-section_title .big-text { font-size: 277px; top: 114px; }
}

@media (max-width: 1399px) {
  .hero-section_title .big-text { font-size: 195px; top: 87px; }
}

@media (max-width: 1199px) {
  .hero-section_title .big-text { font-size: 146px; top: 60px; }
}

@media (max-width: 767px) {
  .hero-section_title .big-text { font-size: 120px; top: 54px; }
}

@media (max-width: 575px) {
  .hero-section_title .big-text { font-size: 60px; top: 28px; }
}

/* === Hero Description Text === */
.hero-section_desc {
  position: relative;
  z-index: 2;
  max-width: 334px;
  margin-left: auto;
  margin-right: 334px;
  margin-bottom: 407px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--white);
  font-family: var(--font_bai);
}

.hero-section_desc span {
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  color: var(--white);
}

@media (max-width: 1399px) {
  .hero-section_desc {
    margin-right: 150px;
    margin-bottom: 236px;
  }
}

@media (max-width: 991px) {
  .hero-section_desc {
    margin-right: 12px;
    margin-bottom: 90px;
  }
}

@media (max-width: 767px) {
  .hero-section_desc {
    margin-right: 0;
    max-width: 100%;
  }
}

/* === Title + Bottom Title Group === */
.hero-section_item {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Bottom BIG Title */
.hero-section_item .bottom-title {
  position: absolute;
  left: 20.4%;
  bottom: -89%;
  font-size: 150px;
  font-weight: 300;
  line-height: 125px;
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--font_tartuffotrial);
}

/* Fine Adjustments */
@media (min-width: 1555px) and (max-width: 1920px) {
  .hero-section_item .bottom-title { left: 24.1%; }
}

@media (max-width: 1920px) {
  .hero-section_item .bottom-title { left: 24.1%; bottom: -85%; font-size: 134px; }
}

@media (max-width: 1399px) {
  .hero-section_item .bottom-title { left: 19%; bottom: -208%; font-size: 86px; }
}

@media (max-width: 1199px) {
  .hero-section_item .bottom-title { left: 17%; bottom: -209%; font-size: 63px; }
}

@media (max-width: 991px) {
  .hero-section_item .bottom-title { left: 23%; bottom: -210%; font-size: 64px; }
}

@media (max-width: 767px) {
  .hero-section_item .bottom-title { left: 25%; bottom: -184%; font-size: 53px; }
}

@media (max-width: 575px) {
  .hero-section_item .bottom-title { left: 26%; bottom: -122%; font-size: 29px; }
}

/* Right-aligned Floating Title */
.hero-section_item .hero-section_title:last-child {
  position: absolute;
  right: 0;
  bottom: -138px;
}

@media (max-width: 1920px) {
  .hero-section_item .hero-section_title:last-child { bottom: -120px; }
}

@media (max-width: 1399px) {
  .hero-section_item .hero-section_title:last-child { bottom: -87px; }
}

@media (max-width: 1199px) {
  .hero-section_item .hero-section_title:last-child { bottom: -60px; }
}

@media (max-width: 991px) {
  .hero-section_item .hero-section_title:last-child { bottom: -60px; }
}

@media (max-width: 767px) {
  .hero-section_item .hero-section_title:last-child { bottom: -49px; font-size: 50px; }
}

@media (max-width: 575px) {
  .hero-section_item .hero-section_title:last-child { bottom: -11px; font-size: 30px; }
}

/* === About Section Layout === */
.about-section_content {
  display: grid;
  padding-top: 60px;
  padding-bottom: 0;
  position: relative;
  justify-content: space-between;
  grid-template-columns: repeat(3, 1fr);
}

.about-section_content::before {
  content: "";
  position: absolute;
  top: 97px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(16, 16, 16, 0.1);
}

@media (max-width: 991px) {
  .about-section_content {
    padding-bottom: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .about-section_content {
    grid-template-columns: 1fr;
    padding-bottom: 20px;
  }
  .about-section_content::before {
    display: none;
  }
}

/* === Titles === */
.about-section_title {
  font-size: 16px;
  font-weight: 500;
  color: #666666;
  line-height: 25px;
  padding-bottom: 10px;
}

/* === Column #2 Offset === */
.about-section_item:nth-child(2) {
  display: block;
  padding-left: 50px;
}

@media (max-width: 991px) {
  .about-section_item:nth-child(2) {
    padding-left: 0;
  }
}

@media (max-width: 575px) {
  .about-section_item {
    margin-bottom: 40px;
  }
}

/* === Description === */
.about-section_desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: var(--black);
  padding-top: 40px;
  padding-right: 50px;
}

@media (max-width: 1199px) {
  .about-section_desc { font-size: 18px; }
}

@media (max-width: 991px) {
  .about-section_desc { font-size: 17px; }
}

@media (max-width: 575px) {
  .about-section_desc { padding-top: 25px; }
}

/* === Skills / Facts List === */
.about-section_list {
  padding-top: 40px;
  list-style: none;
}

@media (max-width: 575px) {
  .about-section_list { padding-top: 25px; }
}

.about-section_list li {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: rgba(17, 17, 17, 0.3);
  letter-spacing: -0.6px;
}

.about-section_list li.active {
  color: var(--black);
}

@media (max-width: 575px) {
  .about-section_list li { font-size: 17px; }
}

/* === About VCard === */
.about-vcard .author {
  padding: 35px 50px;
}

@media (max-width: 1920px) {
  .about-vcard .author {
    padding: 0 20px 30px;
  }
}

/* Sub-title */
.about-vcard .sub-title {
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: #666666;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: -0.42px;
}

/* Name */
.about-vcard .title {
  font-size: 70px;
  font-weight: 600;
  line-height: 70px;
  margin-bottom: 10px;
  letter-spacing: -3.5px;
}

@media (max-width: 767px) {
  .about-vcard .title { font-size: 50px; }
}

/* Occupation */
.about-vcard .dedication {
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 40px;
  letter-spacing: -0.9px;
}

/* Description */
.about-vcard .description {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--primary);
  padding-bottom: 20px;
  letter-spacing: -0.48px;
}

/* === works-section === */
/* Grid */
.works-section__wrap {
  gap: 110px 15px;
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(3, 2fr);
}

@media (max-width: 767px) {
  .works-section__wrap {
    gap: 30px 15px;
    grid-template-columns: repeat(2, 2fr);
  }
}

@media (max-width: 575px) {
  .works-section__wrap {
    grid-template-columns: 1fr;
  }
}

/* Thumbnail */
.works-section__thumb {
  position: relative;
  overflow: hidden;
}

/* Image zoom */
.works-section__thumb img {
  transition: all 0.4s ease-in-out;
}

.works-section__thumb:hover img {
  transform: scale(1.1);
}

/* Hover overlay */
.works-section__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: 0.4s ease;
}

.works-section__thumb:hover::after {
  background: rgba(0,0,0,0.55);
}

/* Hover text */
.hover-text {
    position: absolute;
    top: 50%;
    left: 50%;
	width:90%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: 16px;
    line-height: 20px;
    opacity: 0;
    transition: 0.4s ease;
    pointer-events: none;
    text-align: center;
    z-index: 1;
}

.works-section__thumb:hover .hover-text {
  opacity: 1;
}

/* Meta */
.works-section .meta .tag,
.works-section .meta .date {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--primary);
}

.works-section .meta .date {
  display: block;
}