@charset "utf-8";

/* Reset */
* {
  box-sizing: border-box;
}

/* Common */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
tbody,
tfoot,
thead,
tr,
th,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  -webkit-text-size-adjust: none;
}

body,
html {
  width: 100%;
  height: 100%;
  min-width: 320px;
}

body,
input,
textarea,
select,
button,
table {
  font-family: 'Noto Sans KR', 'Noto Sans', 'Apple SD Gothic Neo', 'Malgun Gothic', 'NanumBarunGothic', sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

img,
fieldset,
button {
  border: 0;
}

ul,
ol {
  list-style: none;
}

em,
address {
  font-style: normal;
}

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

/* Skin to content */
.skip {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  overflow: hidden;
  z-index: -1;
}

.skip>a {
  display: block;
  text-align: center;
  line-height: 28px;
  height: 1px;
  overflow: hidden;
}

.skip>a:focus {
  height: auto;
}

/* Layout */

.body {
  position: relative;
}

.layout-container {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.xe-widget-wrapper {
  overflow: visible;
}

.content-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 15px;
}

.content img {
  max-width: 100%;
  height: auto;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
  z-index: 999;
}

/* 스크롤 시 */
.header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* 마우스 오버 시 */
.header.hovered {
  z-index: 999;
}

.header-inner {
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  gap: 20px;
  padding: 0 50px;
}


.header-right {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  z-index: 20;
}

.call-box .number {
  font-weight: bold;
  font-size: 16px;
}

.header-logo {
  position: relative;
  width: 160px;
  min-width: 100px;
  height: auto;
  margin: 0;
  padding: 0;
  line-height: 1;
  z-index: 20;
}

.header-logo a {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 32px;
  color: #333;
}

h1.header-logo img {
  width: 100%;
}

.logo-default {
  display: block;
}

.logo-scrolled {
  display: none;
}

.header.scrolled .logo-default,
.header.hovered .logo-default {
  display: none;
}

.header.scrolled .logo-scrolled,
.header.hovered .logo-scrolled {
  display: block;
}

.header>h1 {
  display: inline-block;
  zoom: 1;
  margin: 19px 0;
}

.right-txt {
  font-size: 18px;
  color: #ffffff;
  background: #4931a1;
  border-radius: 25px;
  padding: 8px 25px;
}

.call-no {
  display: flex;
  align-items: center;
  color: #fff;
}

.header.scrolled .call-no,
.header.hovered .call-no {
  color: #000000;
}

.call-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  min-width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 50%;
  font-size: 15px;
}

.call-box .number {
  font-size: 30px;
  margin-left: 5px;
  font-family: 'YUniverse-B';
}

/* GNB */
.gnb {
  position: relative;
  flex: 1;
  text-align: center;
  z-index: 1;
  font-size: 17px;
  height: 100%;
  clear: both;
}

.gnb ul {
  margin: 0;
  padding: 0;
}

.gnb a {
  white-space: nowrap;
}

.gnb>ul {
  display: inline-flex;
  position: relative;
}

.gnb>ul>li {
  width: 120px;
  margin: 0;
  float: none;
}

.gnb>ul>li>a {
  display: block;
  line-height: 100px;
  color: #fff;
  position: relative;
}

.gnb>ul>li>a::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #ebac24;
  transition: width 0.5s ease, opacity 0.2s ease;
  transform: translateX(-50%);
  opacity: 0;
}

.gnb>ul>li>a:hover::after {
  width: 80%;
  opacity: 1;
}

.header.scrolled .gnb>ul>li>a,
.header.hovered .gnb>ul>li>a {
  color: #000000;
}

.gnb ul ul {
  opacity: 0;
  max-height: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin-top: 20px;
  pointer-events: none;
}

.gnb ul ul.active {
  opacity: 1;
  max-height: 500px;
  /* 충분히 큰 높이로 지정 */
  transform: translateY(0);
  pointer-events: auto;
}

.gnb ul ul a {
  display: block;
  padding: 10px;
  font-size: 15px;
  color: #000000;
}

.gnb ul ul a:hover,
.gnb ul ul a:focus {
  text-decoration: underline;
}

.gnb li.active>a {
  color: #ebac24;
  font-weight: bold;
}

.gnb li ul li.active>a {
  color: #ebac24;
}

.gnb-sub-wrap {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  padding: 30px 0;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 1;
  /* hover 충돌 방지 */
}

.gnb-sub-wrap.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* 모바일 메뉴 */
.mobile-gnb {
  position: fixed;
  top: 60px;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-gnb.active {
  right: 0;
}

.mobile-gnb-inner {
  padding: 10px;
  margin-bottom: 150px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 20px;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle .bar {
  width: 26px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.header.scrolled .mobile-menu-toggle .bar,
.header.hovered .mobile-menu-toggle .bar {
  background-color: #000000;
}

.mobile-menu-toggle .bar.bar2 {
  position: relative;
  width: 20px;
  right: -6px;
}

.mobile-menu-toggle.active .bar1 {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .bar2 {
  opacity: 0;
}

.mobile-menu-toggle.active .bar3 {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-gnb li>a.mobile-menu-top {
  display: block;
  width: 100%;
  background: #eee;
  color: #111;
  font-size: 16px;
  font-weight: bold;
  padding: 14px;
  text-align: center;
  border-radius: 8px;
  margin: 10px 0;
}

.mobile-sub-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.mobile-sub-menu li a.mobile-sub-link {
  display: block;
  background: #f7f7f7;
  color: #333;
  font-size: 14px;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
}

.mobile-gnb ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-gnb li a {
  color: #333;
  font-size: 16px;
  display: block;
  text-decoration: none;
}

.mobile-gnb li.active>a.mobile-menu-top {
  color: #ebae24;
}

.mobile-sub-menu li.active>a.mobile-sub-link {
  color: #ebae24;
}


/* 서브페이지 */
.sub-page-top {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 450px;
  background: rgb(7, 7, 54);
  color: #ffffff;
  text-align: center;
}

.sub-page-wrap {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 50px;
}

.sub-page-top h2 {
  position: relative;
  font-size: 48px;
  line-height: 1;
}

.sub-page-top .sub-page-desc {
  font-size: 18px;
}

.sub-page-top .divider {
  width: 60px;
  height: 2px;
  background-color: #ffffff;
  margin: 40px 0;
}

.sub-page-menu-wrap {
  overflow-x: auto;
  white-space: nowrap;
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.sub-page-menu-wrap::-webkit-scrollbar {
  display: none;
}

.sub-page-menu-list {
  display: inline-flex;
  vertical-align: top;
  padding: 0 10px;
}

.sub-page-menu-list li {
  flex: 0 0 auto;
}

.sub-page-menu-list li a {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 10px;
  font-size: 18px;
  color: #333;
  font-weight: 500;
  border-radius: 25px;
  transition: background 0.2s;
  white-space: nowrap;
}

.sub-page-menu-list li.active a {
  background-color: #ebac24;
  color: #fff;
  font-weight: bold;
}

.btn-parent {
  text-align: center;
  margin-top: 10px;
}

.section-btn {
  position: relative;
  display: inline-block;
  font-size: 15px;
  padding: 12px 30px;
  border: 1px solid;
  border-radius: 25px;
  color: #000000;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

.section-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #97835e;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: -1;
}

.section-btn:hover {
  color: #ffffff;
}

.section-btn:hover::before {
  transform: scaleY(1);
}

.view-btn-txt {
  margin-right: 10px;
}

/* 단지설계 섹션 */
#complex-section {
  padding: 100px 0;
  background: #f9f3eb;
}

#complex-section .complex-grid-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  height: 700px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 15px;
}

#complex-section .complex-title {
  font-size: 62px;
  font-family: 'YUniverse-B', serif;
  text-align: center;
}

#complex-section .complex-sub-txt {
  font-size: 22px;
  text-align: center;
  padding: 25px 0;
}

#complex-section .complex-left {
  flex: 0 0 calc(65% - 5px);
  height: 100%;
}

#complex-section .complex-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#complex-section .complex-right {
  flex: 0 0 calc(35% - 5px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

#complex-section .complex-right>div {
  flex: 1;
  height: 0;
  overflow: hidden;
}

#complex-section .complex-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* 유니트 섹션 */
#unit-section {
  overflow: hidden;
}

#unit-section .unit-container {
  display: flex;
  width: 100%;
  height: 100vh;
}

#unit-section .unit-left {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: 1.5rem;
  color: #2d3436;
  padding: 0 100px;
}

#unit-section .unit-left-title {
  font-size: 72px;
  font-weight: bold;
  font-family: 'YUniverse-B', serif;
  color: #ffffff;
  margin-bottom: 60px;
}

#unit-section .unit-right::after {
  content: "UNIT PLAN";
  width: 100%;
  font-size: 220px;
  font-weight: bold;
  letter-spacing: 20px;
  overflow: hidden;
  position: absolute;
  color: rgba(0, 0, 0, 0.05);
  top: 0;
  z-index: 0;
}

#unit-section .unit-left-description {
  font-size: 18px;
  font-family: 'NotoSerifKR', serif;
  line-height: 1.5;
  color: #ffffff;
}

#unit-section .unit-btn-container {
  display: flex;
  position: relative;
  margin-top: 60px;
}

#unit-section .unit-btn {
  padding: 10px 30px;
  font-size: 16px;
  color: #ffffff;
  background-color: #afa39c;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#unit-section .unit-btn:hover {
  background-color: #555;
}

#unit-section .unit-right {
  width: 60%;
  position: relative;
  background-color: #eae4e1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
}

#unit-section .unit-swiper-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0 15px 0 -200px;
}

#unit-section .unit-swiper-container .swiper-wrapper {
  width: 100%;
  box-sizing: border-box;
}

#unit-section .unit-swiper-slide {
  text-align: center;
  display: flex !important;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  padding: 15px;
}

#unit-section .unit-swiper-slide img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border: 1px solid #afa39c;
  transition: transform 0.3s ease-in-out;
  padding: 30px 0;
}

#unit-section .unit-slide-txt {
  width: 100%;
  text-align: center;
  border-style: solid;
  border-width: 0px 1px 1px 1px;
  border-color: #afa39c;
  padding: 30px 0;
}

#unit-section .unit-slide-title {
  font-size: 42px;
  font-weight: bold;
  font-family: 'SBAggroB';
  color: #714141;
}

#unit-section .unit-slide-subtitle {
  font-size: 28px;
  font-weight: 500;
  color: #666;
  margin-top: 5px;
}

#unit-section .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border: 2px solid #97835e;
  background: transparent;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 10px !important;
}

#unit-section .unit-swiper-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  z-index: 1;
}

#unit-section .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #97835e;
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(151, 131, 94, 0.2);
}

@keyframes bulletExpand {
  0% {
    width: 15px;
  }

  100% {
    width: 60px;
  }
}

#unit-section .unit-swiper-navigation .swiper-button-prev,
#unit-section .unit-swiper-navigation .swiper-button-next {
  color: #333;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

#unit-section .unit-swiper-navigation .swiper-button-prev:hover,
#unit-section .unit-swiper-navigation .swiper-button-next:hover {
  opacity: 1;
}

#unit-section .unit-swiper-button-prev {
  left: 10px;
}

#unit-section .unit-swiper-button-next {
  right: 10px;
}


/* 브랜드 섹션 */
#brand-section {
  position: relative;
  max-width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
}

#brand-section h2 {
  font-size: 48px;
  font-family: 'YUniverse-B', serif;
}

#brand-section .desc {
  font-size: 20px;
  padding-top: 50px;
  line-height: 1.5;
  font-family: 'NotoSerifKR', serif;
  max-width: 1000px;
  margin: 0 auto;
}

#brand-section .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

#brand-section .content {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 2;
  box-sizing: border-box;
  padding: 0 25px;
  margin-bottom: 50px;
}

#brand-section .section-btn {
  color: #ffffff;
}


/* 프리미엄 섹션 */
#premium-section {
  position: relative;
  background-image: url('http://erealmate.co.kr/files/attach/images/2025/05/21/bb5e369b287ebde4d29f277412e33466.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#premium-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);  /* 어두운 오버레이 */
  z-index: 1;
}

#premium-section > * {
  position: relative;
  z-index: 2;
}

#premium-section .premium-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

#premium-section .column {
  position: relative;
  padding: 20px;
  box-sizing: border-box;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

/* 이미지 비율 3:2 */
#premium-section .column img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

/* 텍스트 */
#premium-section .column-txt-wrap h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

#premium-section .column-txt-wrap p {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
}

#premium-section .column-txt-wrap {
  margin-top: 15px;
}


/* Footer */
.footer {
  padding: 50px 15px 80px 15px;
  background: #161616;
  color: rgba(255, 255, 255, 0.5);
}

.footer-container {
  max-width: 1440px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  padding-top: 15px;
}

.footer-menu {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid;
}

.footer-menu li a {
  color: rgba(255, 255, 255, 0.5) !important;
}

.footer-left {
  width: calc(70% - 10px);
  text-align: left;
}

.footer-right {
  width: calc(30% - 10px);
  text-align: right;
  /* 필요 시 정렬 */
}

.footer-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-number {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
}

.footer-count {
  display: inline-block;
  font-size: 16px;
  border: 1px solid;
  padding: 5px 10px;
  margin-top: 10px;
  line-height: 1.2;
}

.footer-container .copyright {
  flex-basis: 100%;
  margin-top: 10px;
  font-size: 13px;
}


@media(max-width: 1599px) {
  #unit-section .unit-swiper-container {
    margin: 0 15px 0 -100px;
  }

  #unit-section .unit-left {
    padding: 0 60px;
  }

  #unit-section .unit-left-title {
    font-size: 62px;
    margin-bottom: 50px;
  }
}

@media(max-width: 1439px) {
  #unit-section .unit-swiper-container {
    margin: 0 0 0 -100px;
  }

  #unit-section .unit-left {
    align-items: flex-start;
    padding: 20px;
  }

  #unit-section .unit-left-title {
    font-size: 52px;
    margin-bottom: 40px;
  }

  #unit-section .unit-btn-container {
    left: 0;
    margin-top: 50px;
  }
}

@media(max-width: 1199px) {
  #unit-section .unit-left {
    align-items: flex-start;
    padding: 20px;
  }

  #unit-section .unit-left-title {
    font-size: 52px;
    margin-bottom: 40px;
  }

  #unit-section .unit-left-description {
    font-size: 16px;
  }

  #unit-section .unit-btn-container {
    left: 0;
    margin-top: 50px;
  }
}


/* -------------------------------------
----------------------991px */

@media(max-width: 991px) {
  .header {
    height: 60px;
  }

  .header.hovered {
    background-color: #ffffff;
  }

  .header-inner {
    padding: 0 15px;
  }

  .header-logo {
    width: 130px;
  }

  .header-right {
    position: absolute;
    right: 52px;
    gap: 10px;
  }

  .call-box .number {
    display: none;
  }

  .call-box i {
    width: 32px;
    min-width: 32px;
    height: 32px;
    font-size: 22px;
  }

  .right-txt {
    font-size: 14px;
    padding: 6px 18px;
  }

  .gnb {
    display: none;
  }

  .mobile-gnb.active {
    display: block;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* 서브페이지 */
  .sub-page-top {
    height: 300px;
  }

  .sub-page-menu-list li a {
    font-size: 16px;
    margin: 0;
  }

  .sub-page-top h2 {
    position: relative;
    font-size: 28px;
  }

  .sub-page-top .sub-page-desc {
    font-size: 16px;
  }

  .sub-page-top .divider {
    background-color: #ffffff;
    margin: 25px 0;
  }

  .content-wrap {
    padding: 30px 15px;
  }

  /* 단지설계 섹션 */
  #complex-section {
    padding: 50px 0;
  }

  #complex-section .complex-grid-container {
    flex-direction: column;
    height: auto;
  }

  #complex-section .complex-title {
    font-size: 32px;
    text-align: center;
  }

  #complex-section .complex-sub-txt {
    font-size: 17px;
    padding: 15px 0;
  }

  #complex-section .complex-left,
  #complex-section .complex-right {
    flex: 0 0 100%;
    height: auto;
  }

  #complex-section .complex-right {
    flex-direction: row;
  }

  #complex-section .complex-right>div {
    flex: 1;
    height: auto;
  }

  #complex-section .complex-right img {
    height: auto;
  }

  #unit-section .unit-container {
    flex-direction: column;
    height: auto;
    /* 세로로 쌓을 땐 높이 자동 */
  }

  #unit-section .unit-left-title {
    font-size: 38px;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }

  #unit-section .unit-left-description {
    font-size: 15px;
  }

  #unit-section .unit-left {
    padding: 50px 20px;
    align-items: center;
    text-align: center;
  }

  #unit-section .unit-left,
  #unit-section .unit-right {
    width: 100%;
    box-sizing: border-box;
  }

  #unit-section .unit-btn-container {
    margin-top: 15px;
  }

  #unit-section .unit-swiper-container {
    padding: 50px 0 30px 15px;
    margin: 0;
  }

  #unit-section .unit-slide-txt {
    padding: 15px 0;
  }

  #unit-section .unit-slide-title {
    font-size: 28px;
  }

  #unit-section .unit-slide-subtitle {
    font-size: 22px;
  }

  #unit-section .unit-swiper-slide.swiper-slide-active {
    margin-right: 15px !important;
  }

  #unit-section .unit-btn-container {
    left: 0;
    justify-content: center;
  }

  #unit-section .unit-swiper-pagination {
    margin-top: 10px;
    margin-bottom: 50px;
    z-index: 1;
  }

  #brand-section {
    padding: 50px 0;
  }

  #brand-section h2 {
    font-size: 36px;
  }

  #brand-section .desc {
    font-size: 14px;
  }

  .footer-left,
  .footer-right {
    flex: 0 0 100%;
    text-align: left;
  }

  .footer-container {
    gap: 10px;
  }

  #premium-section .premium-column {
    grid-template-columns: repeat(2, 1fr);
  }

  #premium-section .column {
    padding: 15px;
  }
}

@keyframes fadeInBlur {
  0% {
    opacity: 0;
    filter: blur(7px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.fade-in-blur {
  animation: fadeInBlur 2s ease-out forwards;
  will-change: filter, opacity;
  transform: translateZ(0);
}