/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --color-black: 0, 0, 0;
  --color-white: 255, 255, 255;
  --color-dark: 8, 8, 8;
  --color-grayish-blue: 110, 109, 129;
  --color-light-gray: 243, 244, 246;
  --color-dark-gray: 99, 100, 103;
}

::-moz-selection {
  background: #2b2b2b;
  text-shadow: none;
}

::selection {
  background: #2b2b2b;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  background-color: transparent;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 30px 0;
  padding: 0;
  opacity: 1;
}

hr.dashed {
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  margin: 40px 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

a {
  color: rgb(var(--color-default));
  text-decoration: none;
  transition: all 150ms ease-in-out;
}

a:hover,
a:focus {
  text-decoration: none;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
  font-family: 'Urbanist';
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  color: rgba(var(--color-black));
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== Typography ========== */
.space-mono {
  font-family: "Space Mono";
}

h1 {
  font-size: 96px;
  line-height: 120%;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 64px;
  line-height: 120%;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 40px;
  line-height: 140%;
  letter-spacing: -0.02em;
}

/* Preserve the source design's visual scale when a heading uses a stronger
   semantic level for the document outline. */
.heading-size-h2 {
  font-size: 64px;
  line-height: 120%;
  letter-spacing: -0.02em;
}

.heading-size-h3 {
  font-size: 40px;
  line-height: 140%;
  letter-spacing: -0.02em;
}

h4 {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.02em;
}

h5 {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
}

h6 {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.02em;
}

.text-3xs {
  font-size: 10px;
  line-height: 18px;
}

.text-xxs {
  font-size: 12px;
  line-height: 18px;
}

.text-xs {
  font-size: 14px;
  line-height: 21px;
}

.text-base {
  font-size: 16px;
  line-height: 24px;
}

.text-md {
  font-size: 18px;
  line-height: 30px;
}

.text-lg {
  font-size: 20px;
  line-height: 20px;
}

.text-xl {
  font-size: 30px;
  line-height: 40px;
}

.text-xxl {
  font-size: 30px;
  line-height: 40px;
}

.lh-auto {
  line-height: normal;
}


/* ========== Colors ========== */
.color-black {
  color: rgb(var(--color-black));
}

.color-light-gray {
  color: rgb(var(--color-light-gray));
}

.color-dark-gray {
  color: rgba(var(--color-dark-gray));
}

.color-white {
  color: rgb(var(--color-white));
}

.color-grayish-blue {
  color: rgb(var(--color-grayish-blue));
}

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

.bg-grayish-blue {
  background-color: #6E7781;
}

.bg-light-gray {
  background-color: rgb(var(--color-light-gray));
}

/* ========== Forms & Input ========== */

.form-control {
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 400;
  color: rgb(var(--color-black));
  background-clip: padding-box;
  background-color: transparent;
  border-radius: 0;
  border: 1px solid rgb(var(--color-black));
}

.form-control::placeholder {
  color: rgba(51, 62, 66, 0.6);
}

.form-select {
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 400;
  color: rgb(var(--color-black));
  background-clip: padding-box;
  background-color: transparent;
  border-radius: 0;
  border: 1px solid rgb(var(--color-black));
}

.form-control:focus,
.form-select:focus {
  color: rgb(var(--color-dark));
  background-color: transparent;
  border-color: rgb(var(--color-black));
  outline: 0;
  box-shadow: none;
}

.form-control:disabled {
  background-color: #FFFFFF;
  border: 1px solid #E9E7EC;
}

.label-form {
  background-color: rgb(var(--color-light-gray));
  padding: 0 15px;
  font-size: 12px;
  display: inline-block;
  text-transform: uppercase;
  top: -10px;
  position: absolute;
  left: 20px;
}

.label-form span::after {
  content: "*";
  color: red;
}

/* ========== Button ========== */

.btn {
  font-size: 14px;
  line-height: 20px;
  padding: 2px 15px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: all 100ms ease-in-out;
}

.btn-action {
  background-color: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border-radius: 50px;
  color: rgb(var(--color-white));
  font-size: 12px;
  font-weight: 600;
}

.btn-action img {
  transition: all 100ms ease-in-out;
}


.header:hover .btn-action,
.sticky .btn-action,
.invert .btn-action {
  background-color: rgba(0, 0, 0, 0.1);
  color: rgb(var(--color-black));
}

.header:hover .btn-action img,
.sticky .btn-action img,
.invert .btn-action img {
  filter: brightness(0%);
}

.btn-white {
  border: 1px solid rgb(var(--color-white));
  background-color: rgb(var(--color-white));
  color: rgb(var(--color-black));
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  font-weight: 600;
  gap: 4px;
  min-width: 175px;
}

.btn-white:hover {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  color: rgb(var(--color-white));
  -webkit-backdrop-filter: blur(20px);
}

.btn-white:hover img {
  filter: invert(1);
}

.btn-white-blur {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 0;
  padding: 10px 25px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  color: rgb(var(--color-white));
  font-weight: 600;
  min-width: 175px;
}

.btn-white-blur:hover {
  background: rgb(var(--color-white));
  border: 1px solid rgba(255, 255, 255, 1);
  backdrop-filter: blur(20px);
  color: rgb(var(--color-black));
  font-weight: 600;
}

.img-filter {
  filter: invert(1);
}

.btn-white-blur:hover .img-filter {
  filter: none;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  padding: 4px 16px;
  gap: 8px;
  background: #F3F4F6;
  backdrop-filter: blur(20px);
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;

}

.btn-main:hover {
  background: rgb(var(--color-black));
  color: rgb(var(--color-white));
}

.btn-main img {
  transform: rotate(180deg);
  transition: all 100ms ease-in-out;
}

.btn-main:hover img {
  filter: invert(1);
}

.btn-second {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  gap: 8px;
  background: rgb(var(--color-black));
  backdrop-filter: blur(20px);
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgb(var(--color-white));
  transition: all 150ms ease-in-out;
}

.btn-second:hover {
  background: rgb(var(--color-black));
  color: rgb(var(--color-white));
}

.btn-second:hover {
  background: rgb(var(--color-dark-gray));
  color: rgb(var(--color-white));
}

.btn-second img {
  transform: rotate(180deg);
  transition: all 100ms ease-in-out;
}

.btn-second img {
  filter: invert(1);
}

/* ========== Header / Navigation ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1049;
  width: 100%;
  transition: all 150ms ease-in-out;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header:hover {
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.9);
}

.header.invert {
  box-sizing: border-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.9);
}

.header-fixed-hide {
  will-change: transform;
}

.header-fixed-hide.hide {
  transform: translateY(-100%);
}

.header.sticky {
  transition: all 150ms ease-in-out;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
}

.menu-brand,
.menu-action {
  max-width: 270px;
  width: 100%;
}


.menu-brand a {
  filter: brightness(0)invert(1);
}

.header:hover .menu-brand a,
.sticky .menu-brand a,
.invert .menu-brand a {
  filter: none;
}

.menu-list {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 0;
  padding-left: 0;
}

.menu-item {
  display: inline-block;
  transition: all 250ms;
}

.menu-item .menu-link {
  color: rgb(var(--color-white));
  font-size: 14px;
  display: inline-flex;
  padding: 20px 0;
  gap: 5px;
  align-items: center;
  transition: all 200ms ease-in-out;
}

.header:hover .menu-item .menu-link,
.sticky .menu-item .menu-link,
.invert .menu-item .menu-link {
  color: rgb(var(--color-black));
}

.menu-item .menu-link:hover {
  color: rgb(var(--color-blue));
}

.menu-item .menu-link.chev::after {
  content: url(../img/icon/chev-down.svg);
  width: 16px;
  transition: all 200ms ease-in-out;
  height: 16px;
}

.menu-item .menu-link.chev:hover::after,
.menu-item .menu-link.chev:focus-within::after {
  transform: rotate(-180deg);
}

.header:hover .menu-item .menu-link.chev::after,
.sticky .menu-item .menu-link.chev::after,
.invert .menu-item .menu-link.chev::after {
  filter: brightness(0%);
}


.menu-list .menu-item .menu-link:hover+.sub-menu,
.sub-menu:hover {
  display: block;
}

.lang {
  display: flex;
  padding: 0 5px;
  border: 0;
  color: rgb(var(--color-white));
  outline: 0;
  gap: 3px;
}

.inner-lang {
  background-color: rgba(255, 255, 255, 0.9);
}

.header:hover .lang,
.sticky .lang,
.invert .lang {
  color: rgb(var(--color-black));
}

.link-lang {
  display: flex;
  padding: 8px 15px;
  color: rgb(var(--color-black));
  white-space: nowrap;
}

.link-lang:hover,
.link-lang:focus-visible,
.link-lang.active {
  background-color: rgba(0, 0, 0, 0.05);
}

.language:hover .dropdown-menu,
.language:focus-within .dropdown-menu {
  display: block;
}

.language .dropdown-menu {
  padding-top: 22px;
}

.lang.chev::after {
  content: url(../img/icon/chev-down.svg);
  width: 16px;
  transition: all 200ms ease-in-out;
  height: 16px;
}

.header:hover .lang.chev::after,
.sticky .lang.chev::after,
.invert .lang.chev::after {
  filter: brightness(0%);
}

.sub-menu {
  display: none;
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.inner-sub {
  background-color: rgb(var(--color-white));
  width: 100%;
  z-index: 1040;
  min-height: 100%;
  transition: all 200ms ease-in-out;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.9);
}

.img-sub {
  max-height: 375px;
  height: 100%;
  overflow: hidden;
}

.img-sub img {
  object-fit: cover;
  object-position: center;
}

ol.list-number {
  list-style: none;
  counter-reset: my-list;
  padding-left: 0;
  display: flex;
  flex-direction: column;
}

ol.list-number li {
  counter-increment: my-list;
  position: relative;
  padding-left: 30px;
  display: inline-flex;
  align-items: baseline;
}

ol.list-number li::before {
  content: counter(my-list, decimal-leading-zero);
  position: absolute;
  left: 0;
  line-height: 18px;
  color: rgb(var(--color-grayish-blue));
}

.list-number li a {
  position: relative;
  font-weight: 300;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.02em;
  display: inline-block;
  color: rgb(var(--color-black));
}

.list-number li a::before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  left: 0;
  bottom: 0;
  background-color: rgb(var(--color-black));
  transition: all 100ms ease-in-out;
}

.list-number li a:hover::before {
  width: 100%;
}

.link-brands {
  height: 80px;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.link-brands.mobile {
  height: 60px;
  width: 100%;
  border-radius: 6px;
}

.link-brands img {
  margin-left: 30px;
  max-height: 40px;
  filter: brightness(0)invert(1);
}

.link-brands::before {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 100ms ease-in-out;
  background-color: rgba(0, 0, 0, 0.4);
}

.link-brands:hover::before {
  background-color: rgba(0, 0, 0, 0.3);
}

.menu-action {
  display: flex;
  justify-content: flex-end;
}

.action-button {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-inner {
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100vh;
  background-position: center;
  display: flex;
  align-items: center;

}

.hero-inner::before {
  content: '';
  background-image: url(../img/hero-pattern.svg);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-heading {
  font-weight: 800;
  font-size: 120px;
  line-height: 90%;
  text-align: center;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  mix-blend-mode: overlay;
  text-transform: uppercase;
}

.who {
  position: relative;
  width: 100%;
  aspect-ratio: 16/6.5;
  overflow: hidden;
  z-index: -1;
}

.who img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}


/* ========== Menu Mobile ========== */

.mobile-nav,
.about-nav,
.brand-nav,
.knowledge-nav {
  max-width: 100%;
  height: 100vh;
  background-color: rgb(var(--color-white));
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 190;
  width: 100%;
  padding: 30px;
  transition: all 150ms ease-in-out;
  box-shadow: 0px 0px 8px 0px rgba(106, 78, 38, 0.24);
}

.mobile-nav.show,
.about-nav.show,
.brand-nav.show,
.knowledge-nav.show {
  right: 0;
}

.btn-toggle {
  padding: 0;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
}

.header:hover .btn-toggle img,
.sticky .btn-toggle img,
.invert .btn-toggle img {
  filter: brightness(0%);
}

.header-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content-menu {
  margin-top: 40px;
}

.list-number.mobile li {
  margin-bottom: 15px;
  padding: 15px 0 15px 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  justify-content: space-between;
}

.chev-menu {
  width: 20px;
  height: 20px;
  filter: brightness(0%);
  transform: rotate(-90deg);
}

.btn-back {
  background-color: rgba(0, 0, 0, 0.07);
  border-radius: 4px;
}

/* ========== Content ========== */

.hero {
  display: flex;
  height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero::after {
  display: none !important;
}

.slider-desc {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  height: calc(100vh - 70px);
  align-items: center;
  z-index: 10;
  overflow: hidden;
}

.brand-slider {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 70px;
  display: flex;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 24px;
  gap: 8px;
  width: 200px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  color: rgb(var(--color-white));
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
}

.arrow-brand {
  width: 48px;
  height: 48px;
}

.slider-logo-brand {
  width: calc(100% - 200px);
}

.logo-list {
  width: 200px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-list img {
  max-height: 35px;
  filter: invert(1);
}

.img-the-company {
  aspect-ratio: 2/1.5;
  background-size: cover;
}

.the-company-desc {
  max-width: 490px;
  width: 100%;
  padding-left: 80px;
}

.vimi-section {
  padding: 160px 0;
}

.the-company {
  position: relative;
}

.grid-line,
.grid-line.white,
.grid-line-second,
.inner-grid {
  display: none !important;
}

.vimi-pad {
  padding: 0 30px;
}

.section {
  padding: 160px 0;
}

.section.half {
  padding: 80px 0;
}

.count {
  color: rgb(var(--color-white));
  font-weight: 300;
  font-size: 72px;
  line-height: 160%;
  letter-spacing: 0.05em;
}

.counter-box {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  padding-left: 15px;
}

.counter-box.proj {
  border-right: 0;
  background-color: #F7F7F7;
  color: rgb(var(--color-black));
  padding: 20px;
  height: 100%;
}

.counter-box.proj .count,
.counter-ae .count {
  color: rgb(var(--color-dark));
  font-size: 72px;
  line-height: 100%;
}

.counter-ae {
  padding: 20px 25px;
}

.title-counter {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ae-border::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.3);
}

.ae-border::after {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  top: 55%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3);
}

.counter-ae {
  color: rgb(var(--color-black));
}

.bg-dot {
  background-color: rgb(var(--color-light-gray));
  position: relative;
  background-image: url(../img/square-pattern.svg);
  background-repeat: repeat;
}

.brand-card {
  background-color: rgb(var(--color-white));
  height: 100%;
  padding: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.slider-brand .swiper-wrapper {
  align-items: stretch;
}

.slider-brand .swiper-slide {
  height: auto !important;
}

.header-logo {
  height: 48px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-tag {
  font-size: 12px;
  padding: 4px 16px;
  background: #F3F4F6;
  backdrop-filter: blur(20px);
  border-radius: 100px;
  display: inline-flex;
  justify-content: center;
}

.inner-brand-desc {
  overflow: hidden;
  position: relative;
  height: auto;
  min-height: 180px;
}

.brand-actions {
  margin-top: auto !important;
  padding-top: 1.5rem;
}

.brand-card .brand-desc {
  transform: translateY(60%);
  transition: all 250ms ease-in-out;
}

.brand-card-summary {
  opacity: 0;
  transition: opacity 250ms ease-in-out;
}

.brand-card:hover .brand-desc,
.brand-card:focus-within .brand-desc {
  transform: none;
}

.brand-card:hover .brand-card-summary,
.brand-card:focus-within .brand-card-summary {
  opacity: 1;
}

.deco-rotated {
  rotate: 90deg;
}

.project-item {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.project-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  width: 100%;
  height: 100%;
}

.project-card-link {
  color: inherit;
  display: block;
  inset: 0;
  position: absolute;
  z-index: 1;
}

.project-card-link:focus-visible {
  outline: 2px solid rgb(var(--color-white));
  outline-offset: -4px;
}

.project-meta {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px;
}

.more-project {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  border-radius: 100px;
}

.more-project:hover {
  background: rgba(255, 255, 255, 1);
}

.project-nav {
  position: relative;
  width: 112px;
}

.img-news,
.img-news.big {
  aspect-ratio: 16/9;
  overflow: hidden;
  width: 100%;
}

.img-news figure,
.img-news a {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}

.img-news img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 100ms ease-in-out;
}

.img-news:hover img {
  transform: scale(1.2);
}

.link-news-card:hover {
  color: rgb(var(--color-grayish-blue));
}

.knowledge-card {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  height: 100%;
}

.marquee-swiper1 .swiper-wrapper,
.marquee-swiper2 .swiper-wrapper {
  transition-timing-function: linear;
  align-items: center;
}

.marquee-swiper1 .swiper-slide,
.marquee-swiper2 .swiper-slide {
  width: 435px;
}

.img-about {
  overflow: hidden;
  aspect-ratio: 16/9;
}

.img-about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.capabilities-item {
  padding: 20px 0;
  border-bottom: 4px solid #F3F4F6;
}

.big-cta {
  background-size: cover;
  background-position: center;
  aspect-ratio: 16/9;
  padding: 80px 0;
  position: relative;
  transition: all 150ms ease-in-out;
  cursor: pointer;
  z-index: 2;
}

.big-cta::before {
  content: '';
  transition: all 150ms ease-in-out;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.24);
}

.big-cta:hover::before {
  background-color: rgba(0, 0, 0, 0);
}

.cta-desc {
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  color: rgb(var(--color-white));
  opacity: 0;
  visibility: hidden;
  transition: all 150ms ease-in-out;
}

.big-cta:hover .cta-desc {
  opacity: 100%;
  visibility: visible;
  transition: all 10ms ease-in-out;
}


.sm-cta {
  margin-top: 160px;
  background-size: cover;
  background-position: center;
  aspect-ratio: 16/7;
  padding: 80px;
  position: relative;
  transition: all 150ms ease-in-out;
  cursor: pointer;
  z-index: 2;
}

.sm-cta::before {
  content: '';
  transition: all 150ms ease-in-out;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.24);
}

.sm-cta:hover::before {
  background-color: rgba(0, 0, 0, 0);
}

.section-banner {
  margin: 80px 0;
}

.cta-desc {
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  color: rgb(var(--color-white));
  opacity: 0;
  visibility: hidden;
  transition: all 150ms ease-in-out;
}

.big-cta:hover .cta-desc,
.sm-cta:hover .cta-desc {
  opacity: 100%;
  visibility: visible;
  transition: all 10ms ease-in-out;
}

.hero-caption {
  width: 100%;
  height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

.page-position,
.page-position.dark {
  font-family: 'Space Mono';
  color: rgb(var(--color-white));
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 20px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.2em;
}

.page-position.dark {
  color: rgb(var(--color-black));
  background: rgba(0, 0, 0, 0.1);
}

.page-position.invert {
  color: rgb(var(--color-white));
  background: rgba(0, 0, 0, 0.3);
}

.page-position-result {
  font-family: 'Space Mono';
  color: rgb(var(--color-black));
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 20px;
  text-transform: uppercase;
  background: rgb(var(--color-light-gray));
  border-radius: 4px;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.2em;
  position: absolute;
  top: 10px;
  left: 10px;
}

.top-caption {
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  color: rgb(var(--color-white));
  transition: all 150ms ease-in-out;
  opacity: 0;
  visibility: hidden;
  height: 0;
}

.hero-caption:hover .top-caption {
  opacity: 100%;
  height: 100%;
  visibility: visible;
}

.grid-manufacture {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
}

.manufacture-item.gray {
  background-color: #6E7781;
}

.manufacture-item.dark {
  background-color: rgb(var(--color-dark));
}

.manufacture-item {
  width: 100%;
  height: 100%;
  position: relative;
}

.manufacture-item::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../img/square-gray.svg);
  background-repeat: repeat;
  z-index: 2;
}

.img-man-item {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.box-desc {
  max-width: 980px;
  padding-right: 60px;
}

.brand-tab .swiper-slide {
  width: 130px;
  aspect-ratio: 16/9;
  display: flex;
  justify-content: center;
}

.brand-tab .nav-link {
  aspect-ratio: 16/9;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 5px;
  border: 0;
  background-color: rgb(var(--color-white));
}

.brand-tab .nav-link:hover {
  background-color: #F7F7F7;
}

.brand-tab .nav-link.active {
  background-color: rgb(var(--color-black));
  border-color: var(--bs-nav-tabs-link-active-border-color);
}

.brand-tab .nav-link img {
  height: 30px;
}

.brand-tab .nav-link.active img {
  filter: brightness(0%)invert(1);
}

.project-items {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.project-items::before,
.project-items .project-card-link::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.45) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.8) 100%);
}

.project-items img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-item-meta,
.project-items .project-item-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
  z-index: 2;
}

.page-position-sm {
  font-family: 'Space Mono';
  color: rgb(var(--color-white));
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 3px 10px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-weight: 400;
  font-size: 10px;
  line-height: 140%;
  letter-spacing: 0.2em;
}

.project-type-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 6px;
  max-width: 100%;
  margin-bottom: 8px;
}

.project-type-badges .page-position-sm {
  max-width: 100%;
  overflow-wrap: anywhere;
  text-align: center;
}

.brand-catalogue-link {
  position: relative;
  z-index: 3;
}

.top-inner {
  padding-top: 63px;
}

.bg-vision {
  background-color: rgba(0, 0, 0, 0.4);
  background-size: cover;
  background-position: center;
  padding: 80px;
  position: relative;
  z-index: 2;
}

.bg-vision::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.4);
}

.box-blur {
  padding: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 4px;
}

.square-pattern::before {
  content: '';
  background-image: url(../img/square-gray.svg);
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: repeat;
  width: 100%;
  height: 100%;
}

.box-border {
  box-sizing: border-box;
  padding: 160px 80px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.box-A {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 250px;
}

.box-A img {
  filter: invert(1);
}

.grid-doit {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.box-core {
  background-color: rgb(var(--color-black));
  padding: 40px;
  height: 100%;
  width: 100%;
  color: rgb(var(--color-white));
}

.heading-core {
  font-weight: 600;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.big-banner {
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  position: relative;
}

.banner-desc {
  padding: 80px 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.section-workshop {
  padding: 100px 0;
}

.grid-stat {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.ae-items {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding-bottom: 30px;
}

.img-ae {
  aspect-ratio: 16/7;
  overflow: hidden;
}

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

.social {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social li {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aspect-contact {
  aspect-ratio: 1/1.6;
}

.article-inner {
  padding: 90px 0;
}

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

#article-tab {
  background-color: #F3F4F6;
  padding: 6px;
  border-radius: 10px;
}

#article-tab .nav-link {
  font-family: "Space Mono";
  text-transform: uppercase;
  margin-bottom: 0;
  border: 0;
  padding: 5px 15px;
  border-radius: 5px;
  color: rgb(var(--color-black));
  font-weight: 400;
  font-size: 12px;
  line-height: 160%;
  letter-spacing: 0.05em;

}

#article-tab .nav-link.active {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: rgba(0, 0, 0, 0.05);
  border-color: none;
}

.sort-top {
  display: flex;
  gap: 5px;
  align-items: center;
}

.sort-top select {
  font-family: "Space Mono";
  min-width: 120px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  border: 0;
  padding: 7px 15px;
  font-weight: 400;
  font-size: 12px;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sort-top select:focus {
  background-color: rgba(0, 0, 0, 0.05);
}

.page-nav {
  background-color: #F3F4F6;
  padding: 5px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  margin: 0;
  gap: 2px;
  list-style: none;
}

.page-nav li {
  width: 30px;
  height: 30px;
}

.page-nav a,
.page-nav .nav-page {
  background-color: #F3F4F6;
  border-radius: 3px;
  display: inline-flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
}

.page-nav a:hover,
.page-nav a.current,
.page-nav .nav-page.current {
  background-color: rgba(0, 0, 0, 0.05);
}

.side-article {
  padding-left: 60px;
  position: sticky;
  top: 20px;
}

.article-search input {
  border-left: 0;
  border-top: 0;
  border-right: 0;
}

.article-search input[type="search"] {
  padding-right: 50px;
}

.article-search input[type="search"]::-webkit-search-cancel-button,
.article-search input[type="search"]::-webkit-search-decoration,
.article-search input[type="search"]::-webkit-search-results-button,
.article-search input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.article-search input[type="search"]::-ms-clear,
.article-search input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

.archive-inner {
  padding: 90px 0;
}

.archive-title {
  margin: 0 0 56px;
}

.article-archive-column {
  display: flex;
}

.article-archive-grid .news-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.article-archive-grid .news-card h5 {
  line-height: 1.35;
  margin-bottom: 12px;
  min-height: 2.7em;
}

.article-archive-grid .news-card > p:last-child {
  margin-bottom: 0;
}

.archive-pagination {
  margin-top: 56px;
}

.archive-pagination .nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.btn-sm-search {
  width: 45px;
  padding: 0;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: invert(1);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
  cursor: pointer;
}

.btn-sm-search img {
  pointer-events: none;
}

.search-active-notice {
  background-color: rgb(var(--color-light-gray));
  border-left: 3px solid rgb(var(--color-black));
}

.article-search-preview {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgb(var(--color-white));
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  margin-top: 4px;
  max-height: 400px;
  overflow-y: auto;
}

.article-search-preview-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: rgb(var(--color-black));
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background-color 0.15s ease;
}

.article-search-preview-item:hover,
.article-search-preview-item.is-selected,
.article-search-preview-item:focus {
  background-color: rgb(var(--color-light-gray));
  color: rgb(var(--color-black));
  outline: none;
}

.article-search-preview-item .preview-thumb {
  width: 64px;
  height: 36px;
  aspect-ratio: 16/9;
  flex-shrink: 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.05);
}

.article-search-preview-item .preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.article-search-preview-item .preview-content {
  flex-grow: 1;
  min-width: 0;
}

.article-search-preview-item .preview-title {
  font-size: 13px;
  line-height: 1.35;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  color: rgb(var(--color-black));
}

.article-search-preview-item .preview-meta {
  font-size: 11px;
  color: rgb(var(--color-grayish-blue));
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-search-preview-item .preview-badge {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1px 6px;
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 2px;
}

.article-search-preview-footer {
  padding: 10px 14px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.02);
}

.article-search-preview-footer button,
.article-search-preview-footer a {
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  color: rgb(var(--color-black));
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.article-search-preview-empty,
.article-search-preview-loading {
  padding: 18px 14px;
  text-align: center;
  font-size: 13px;
  color: rgb(var(--color-dark-gray));
}

.subs input {
  border: 0;
  background-color: rgb(var(--color-white));
}

.side-detail {
  position: sticky;
  top: 20px;
}

.hero-article {
  width: 100%;
  height: calc(100vh - 60px);
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-article::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.invert-img {
  filter: invert(1);
}

.border-article {
  height: 4px;
  width: 100%;
  background-color: rgb(var(--color-light-gray));
  margin: 40px 0;
}

.share {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  gap: 10px;
  list-style: none;
}

.share li {
  display: flex;
  justify-content: center;
  width: 35px;
  height: 35px;
  align-items: center;
}

.article p,
.article h5 {
  margin-bottom: 30px;
}

.hero-download {
  background-size: cover;
  background-position: center;
  height: 40vh;
  display: flex;
  align-items: center;
}

.box-catalogue {
  transition: all 150ms ease-in-out;
  background-color: transparent;
  cursor: pointer;
  display: block;
}

.box-catalogue:hover {
  background-color: rgb(var(--color-black));
  color: rgb(var(--color-white));
}

.download-sm {
  transition: all 150ms ease-in-out;
  background-color: transparent;
  cursor: pointer;
  display: block;
  color: rgb(var(--color-white));
}

.download-sm:hover {
  background-color: rgb(var(--color-white));
  color: rgb(var(--color-black));
}

.img-d {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.popup {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20;
}

.error-page {
  padding: 200px 0;
}

.box-error::before {
  content: '404';
  font-family: 'Space Mono';
  font-weight: 600;
  color: rgba(0, 0, 0, 0.1);
  position: absolute;
  font-size: 390px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main-search {
  background-color: rgb(var(--color-white));
}

.search-result input {
  background-color: rgb(var(--color-white));
  border-color: rgb(var(--color-white));
}

.floating {
  position: fixed;
  z-index: 10;
  bottom: 20px;
  right: 20px;
}

.btn-floating {
  width: 70px;
  height: 70px;
  background-color: #6E7781;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-floating:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px #000;
}


/* ========== Swiper Override ========== */
.slider-project .swiper-slide {
  width: 60%;
}

.proj.swiper-button-next,
.proj.swiper-button-prev,
.brands-nav .swiper-button-next,
.brands-nav .swiper-button-prev,
#proj-nav .swiper-button-next,
#proj-nav .swiper-button-prev {
  align-items: center;
  color: #ffff;
  cursor: pointer;
  display: flex;
  height: 48px;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 48px;
  z-index: 10;
}

.brands-nav .swiper-button-next,
.brands-nav .swiper-button-prev,
#proj-nav .swiper-button-next,
#proj-nav .swiper-button-prev {
  color: rgb(var(--color-dark));
}

.proj.swiper-button-next svg,
.proj.swiper-button-prev svg,
.brands-nav .swiper-button-next svg,
.brands-nav .swiper-button-prev svg {
  height: 24px;
  width: 100%;
  fill: #ffffff;
}

.brands-nav .swiper-button-next svg,
.brands-nav .swiper-button-prev svg,
#proj-nav .swiper-button-next svg,
#proj-nav .swiper-button-prev svg {
  height: 24px;
  width: 100%;
  fill: rgb(var(--color-dark));
}

#proj-nav .swiper-button-next {
  left: auto;
  right: -18px;
}

#proj-nav .swiper-button-prev {
  left: -18px;
  right: auto;
}

.slider-most .swiper-slide {
  width: 300px;
}

.slider-most {
  overflow: visible;
}




/* ========== Footer ========== */
.footer {
  background: #000;
  padding-top: 200px;
  position: relative;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

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

.logo-bottom {
  display: inline-flex;
  justify-content: center;
}

.certificate {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-mid {
  margin-top: 100px;
}

.icon-footer {
  width: 24px;
  height: 24px;
}

.text-desc-footer {
  width: calc(100% - 24px);
}

.link-footer {
  padding: 0;
  margin: 0;
  list-style: none;
}

.link-footer li {
  margin-bottom: 10px
}

.link-footer li a {
  font-size: 14px;
}

.brand-footer {
  display: flex;
  justify-content: space-between;
  padding: 100px 0;
}

.brand-items {
  display: flex;
  width: max-content;
}

.logo-brand {
  filter: brightness(0)invert(1);
  max-height: 30px;
}

.logo-brand img {
  max-height: 30px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 48px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ========== overide ========== */

/* ========== Scroll ========== */

.content-menu::-webkit-scrollbar {
  width: 5px;
  border-radius: 3px;
}

/* Track */
.content-menu::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.content-menu::-webkit-scrollbar-thumb {
  background: #f3f3f3;
}

/* Handle on hover */
.content-menu::-webkit-scrollbar-thumb {
  background: #f3f3f3;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden,
[hidden] {
  display: none !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right;
}

.text-italic {
  font-style: italic;
}

.text-hidden {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-extraBold {
  font-weight: 800;
}

.text-bold {
  font-weight: 700;
}

.text-semiBold {
  font-weight: 600;
}

.text-medium {
  font-weight: 500;
}

.text-normal {
  font-weight: 400;
}

.font-light {
  font-weight: 300;
}

.text-Black {
  font-weight: 900;
}

.h-100vh {
  height: 100vh;
}

.mh-0 {
  min-height: 0;
}

.line-height {
  line-height: 0;
}

.aspect-video {
  aspect-ratio: 16/9;
  overflow: hidden;
}


.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   Responsive Design.
   ========================================================================== */
@media (min-width: 300px) {

  .container,
  .container-sm,
  .inner-grid {
    max-width: 450px;
  }


  .grid-line-second {
    max-width: 450px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 576px) {

  .container,
  .container-sm,
  .inner-grid {
    max-width: 600px;
  }

  .grid-line-second {
    max-width: 600px;
  }
}

@media (min-width: 768px) {

  .container,
  .container-md,
  .container-sm,
  .inner-grid {
    max-width: 720px;
  }

  .grid-line-second {
    max-width: 720px;
  }

  .brands-nav {
    display: none;
  }

}

@media (min-width: 992px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .inner-grid {
    max-width: 960px;
  }

  .grid-line-second {
    max-width: 960px;
  }

  #search-mobile {
    display: none;
  }
}

@media (min-width: 1025px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .inner-grid {
    max-width: 1140px;
  }

  .grid-line-second {
    max-width: 1140px;
  }

  #proj-nav {
    display: none;
  }
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-xl,
  .container-xxl,
  .inner-grid {
    max-width: 1175px;
  }

  .hide-desktop {
    display: none;
  }

  .grid-line-second {
    max-width: 1175px;
  }
}

/*
 * Keep Bootstrap row gutters inside the viewport in the narrow band where the
 * 1175px desktop container meets a 15px browser scrollbar. Without this small
 * clamp, px-0 containers can create a 7px horizontal scroll at 1200–1214px.
 */
@media (min-width: 1200px) and (max-width: 1214px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl,
  .inner-grid {
    max-width: calc(100% - 24px);
  }
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl,
  .inner-grid {
    max-width: 1352px;
  }

  .grid-line-second {
    max-width: 1352px;
  }
}

@media (max-width: 1799px) {
  .box-desc {
    max-width: 890px;
    padding-right: 60px;
  }

}

@media (max-width: 1399px) {

  .hero::after {
    max-width: 1175px;
  }

  .the-company-desc {
    max-width: 460px;
    width: 100%;
    padding-left: 50px;
  }

  .inner-brand-desc {
    min-height: 200px;
  }

  .brand-card {
    padding: 30px;
  }

  .brand-card .brand-desc {
    transform: translateY(70%);
    transition: all 250ms ease-in-out;
  }

  .box-desc {
    max-width: 800px;
    padding-right: 60px;
  }

  .box-core {
    padding: 20px;
  }

  .heading-core {
    font-size: 38px;
    line-height: 120%;
    color: #FFFFFF;
  }

  .side-article {
    padding-left: 30px;
  }

}

@media (min-width: 1025px) and (max-width: 1199px) {}

@media (min-width: 992px) {}

@media (max-width: 1024px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero::after {
    max-width: 960px;
  }

  h1 {
    font-size: 50px
  }

  h2 {
    font-size: 44px;
    line-height: 120%;
  }

  .heading-size-h2 {
    font-size: 44px;
    line-height: 120%;
  }

  .menu-list {
    gap: 20px;
  }

  .language .dropdown-menu {
    padding-top: 20px;
  }

  .hide-tablet {
    display: none;
  }

  .the-company-desc {
    max-width: 100% !important;
    padding-left: 30px !important;
    padding-right: 30px;
  }

  .grid-manufacture {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }

  .sm-cta {
    margin-top: 160px;
    padding: 40px;
  }

  .box-desc {
    padding: 10% 30px;
    max-width: 100%;
  }

  .box-core h5 {
    font-size: 18px;
  }

  .ae-border::after {
    top: 52%;
  }
}

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

  h2 {
    font-size: 54px;
    line-height: 120%;
  }

  .heading-size-h2 {
    font-size: 54px;
    line-height: 120%;
  }

  .menu-list {
    display: none;
  }

  .footer {
    padding-top: 100px;
  }

  .action-button {
    gap: 15px;
  }

  .action-button .action-contact {
    display: none;
  }

  .language .dropdown-menu {
    padding-top: 21px;
  }

  .hero::after {
    max-width: 720px;
  }

  .counter-box {
    border-right: 0;
    padding-left: 0px;
    margin-bottom: 20px;
  }

  .counter-box.proj .count,
  .counter-ae .count {
    font-size: 55px;
  }

  .counter-ae {
    padding: 20px 15px;
  }

  .inner-brand-desc {
    min-height: 200px;
  }

  .brand-card .brand-desc {
    transform: translateY(70%);
  }

  .slider-brand .swiper-slide {
    width: 60%;
  }

  .slider-brand,
  .slider-news {
    overflow: visible;
  }

  .list-number.mobile a {
    width: 100%;
  }

  .box-border {
    padding: 80px 80px;
  }

  .grid-doit {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    place-items: center;
  }

  .border-contact {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  }

  .aspect-contact {
    aspect-ratio: 1/1.5;
  }

  .side-article {
    margin-top: 30px;
    padding-left: 0px;
  }

  #search-desktop {
    display: none;
  }

  .btn-floating {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 767px) {

  .action-button {
    gap: 10px;
  }

  .hero-mobile,
  .hero {
    height: calc(100vh - 50px);
  }


  .btn-action.search {
    background-color: transparent !important;
    padding: 0;
  }

  .btn-action span {
    display: none;
  }

  .menu-brand img {
    max-width: 140px;
    width: 100%;
  }

  h1 {
    font-size: 40px
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 22px;
  }

  .heading-size-h2 {
    font-size: 32px;
  }

  .heading-size-h3 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
    line-height: 28px;
  }

  .logo-bottom,
  .certificate {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .footer {
    padding-top: 60px;
  }

  .brand-footer {
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px 0;
  }

  .brand-items {
    width: calc(33% - 30px);
    justify-content: center;
  }

  .footer-mid {
    margin-top: 60px;
  }

  .link-static,
  .copy {
    width: 100%;
  }

  .brand-title {
    display: none;
  }

  .brand-slider {
    height: 60px;
  }

  .slider-logo-brand {
    width: 100%;
  }

  .logo-list {
    width: 100px;
    padding: 10px;
  }

  .vimi-pad {
    padding: 0px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .vimi-section {
    padding: 60px 0;
  }

  .brand-card {
    padding: 20px !important;
  }

  .project-meta {
    padding: 20px;
  }

  .knowledge-card {
    border-right: 0;
    height: 100%;
  }

  .the-company-desc {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px;
  }

  .inner-brand-desc {
    min-height: 190px;
  }

  .brand-card .brand-desc {
    transform: translateY(65%);
  }

  .brand-card .brand-desc.astral {
    transform: translateY(85%);
  }

  .brands-nav {
    position: relative;
    width: 112px;
    height: 48px;
  }

  .hero-heading {
    font-size: 60px;
    line-height: 90%;
  }

  .marquee-swiper1 .swiper-slide,
  .marquee-swiper2 .swiper-slide {
    width: 250px;
  }

  .big-cta {
    padding: 40px 0;
  }

  .grid-manufacture {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px;
  }

  .sm-cta {
    margin-top: 60px;
    padding: 30px;
  }

  .hero-caption {
    padding-bottom: 50px;
  }

  .project-item-meta {
    width: 100%;
    padding: 20px;
  }

  .grid-doit {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
    place-items: center;
  }

  .box-core h5 {
    font-size: 16px;
  }

  .section.half {
    padding: 60px 20px;
  }

  .bg-vision {
    padding: 30px;
  }

  .box-border {
    padding: 40px 40px;
  }

  .box-A {
    right: 40px;
    width: 150px;
  }

  .banner-desc {
    padding: 40px 25px;
  }

  .article-inner {
    padding: 30px 0 80px;
  }

  .archive-inner {
    padding: 40px 0 60px;
  }

  .archive-title {
    margin-bottom: 32px;
  }

  .article-archive-grid .news-card h5 {
    min-height: 0;
  }

  .archive-pagination {
    margin-top: 40px;
  }

  .error-page {
    padding: 100px 0;
  }

  .box-error::before {
    font-size: 190px;
  }

}

@media (max-width: 500px) {
  .hero::after {
    max-width: 460px;
  }
}

@media (max-width: 460px) {
  .hero::after {
    max-width: 390px;
  }
}

@media (max-width: 380px) {
  .hero::after {
    max-width: 340px;
  }
}

@media (min-width: 992px) {
  .action-button li:last-child {
    display: none;
  }

  .overlay-mobile {
    display: none;
  }
}

@media (max-width: 1000px) and (orientation: landscape) {}

@media (max-width: 700px) and (orientation: landscape) {}

@media (hover: none) {
  .brand-card .brand-desc,
  .brand-card .brand-desc.astral {
    transform: none;
  }

  .brand-card-summary {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-card .brand-desc,
  .brand-card .brand-desc.astral,
  .brand-card-summary {
    transition: none;
  }
}



/* ==========================================================================
   Print styles.
   ========================================================================== */

@media print {

  .brand-card .brand-desc,
  .brand-card .brand-desc.astral {
    transform: none;
  }

  .brand-card-summary {
    opacity: 1;
  }

  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
