:root {
  --sat: env(safe-area-inset-top);
  --sar: env(safe-area-inset-right);
  --sab: env(safe-area-inset-bottom);
  --sal: env(safe-area-inset-left);
}

/* @font-face {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/Pretendard/Pretendard-Light.woff') format('woff');
}

@font-face {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Pretendard/Pretendard-Regular.woff')
    format('woff');
}

@font-face {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/Pretendard/Pretendard-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/Pretendard/Pretendard-SemiBold.woff')
    format('woff');
}

@font-face {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Pretendard/Pretendard-Bold.woff') format('woff');
} */
@font-face {
  font-family: "SUIT Variable";
  font-weight: 100 900;
  src: url("..//fonts/SUIT/SUIT-Variable.woff2") format("woff2-variations");
}
@font-face {
  font-family: "ClashDisplay-Variable";
  src: url("../fonts/ClashDisplay/ClashDisplay-Variable.woff2") format("woff2"), url("../fonts/ClashDisplay/ClashDisplay-Variable.woff") format("woff"), url("../fonts/ClashDisplay/ClashDisplay-Variable.ttf") format("truetype");
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #555;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #3df18b, #0088ff);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgb(108.5673076923, 244.4326923077, 167.4423076923), rgb(51, 159.8, 255));
}

body {
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.32px;
  -ms-overflow-style: none;
  background: url("../images/bg-noise.png") repeat;
}

button {
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
}
button[disabled] {
  cursor: default;
}

ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

dl {
  margin-bottom: 0;
}

dd {
  margin-bottom: 0;
}

a {
  color: inherit;
}

svg,
img {
  vertical-align: middle;
  max-width: 100%;
}

i {
  line-height: 1;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

[class^=icon-] {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  flex-shrink: 0;
}

.icon-numbering-1 {
  background-image: url("../images/icon-numbering-1.svg");
  width: 40px;
  height: 40px;
}

.icon-numbering-2 {
  background-image: url("../images/icon-numbering-2.svg");
  width: 40px;
  height: 40px;
}

.icon-numbering-3 {
  background-image: url("../images/icon-numbering-3.svg");
  width: 40px;
  height: 40px;
}

.icon-numbering-4 {
  background-image: url("../images/icon-numbering-4.svg");
  width: 40px;
  height: 40px;
}

.icon-numbering-5 {
  background-image: url("../images/icon-numbering-5.svg");
  width: 40px;
  height: 40px;
}

.icon-avatar {
  background-image: url("../images/icon-avatar.svg");
  width: 32px;
  height: 32px;
}

.icon-star {
  background-image: url("../images/icon-star.svg");
  width: 80px;
  height: 80px;
}

.page-title {
  text-align: center;
  padding: 60px 0 50px;
  font-family: "ClashDisplay-Variable";
  font-weight: 600;
  font-size: clamp(40px, 5.2083vw, 100px);
}
@media (min-width: 992px) {
  .page-title {
    padding: 120px 0 100px;
  }
}

.alert {
  font-size: 0.875rem;
  font-weight: 500;
  border: 0;
}

.badge {
  --bs-badge-font-size: .8125rem;
  --bs-badge-padding-x: .75rem;
  --bs-badge-padding-y: .5rem;
  --bs-badge-border-radius: 100px;
  background-color: #3f3f3f;
  border-radius: var(--bs-badge-border-radius);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-lg {
  line-height: 1.6;
}

.ani-btn {
  padding-left: calc(var(--bs-btn-padding-x) + 50px);
  position: relative;
  z-index: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ani-btn::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  bottom: 4px;
  width: 50px;
  background-color: #3df18b;
  z-index: -1;
  border-radius: inherit;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ani-btn::after {
  position: absolute;
  content: "";
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}
.ani-btn svg {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  transition: all 0.3s ease;
  z-index: 1;
}
.ani-btn:hover {
  color: #000;
}
.ani-btn:hover::before {
  width: calc(100% - 8px);
}
.ani-btn:hover::after {
  left: 100%;
}

.tempus-dominus-widget {
  --td-active-bg: #009999;
  padding: 1rem;
}
.tempus-dominus-widget.timepicker-sbs .td-row {
  align-items: center;
}
.tempus-dominus-widget .calendar-header .picker-switch {
  font-size: 1.125rem;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #999999;
}

.dropdown {
  --bs-dropdown-item-border-radius: .25rem;
}

.dropdown-menu {
  --bs-dropdown-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08);
  --bs-dropdown-border-width: 0;
  box-shadow: var(--bs-dropdown-box-shadow);
}

.dropdown-item {
  text-align: center;
  font-weight: 500;
}

.form-control[data-picker=date] {
  background-image: url("../images/icon-calendar.svg");
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: right 9px top 50%;
  padding-right: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-select {
  text-align: left;
}

.form-select-sm {
  padding-right: 30px;
  background-position: right 0.5rem center;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group .photos {
  display: flex;
  gap: 12px;
}
.form-group .photos .item {
  flex: 1;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--UI_08);
  position: relative;
}
.form-group .photos .upload-button {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='19' y='7' width='2' height='26' rx='1' fill='%23DDE1E4'/%3E%3Crect x='33' y='19' width='2' height='26' rx='1' transform='rotate(90 33 19)' fill='%23DDE1E4'/%3E%3C/svg%3E%0A");
}
.form-group .photos .upload-button img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.form-group .photos .delete-button {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23E8E8E8'/%3E%3Cpath opacity='0.8' d='M13.7374 12.4349L11.2948 9.99504L13.7413 7.5512C14.0909 7.19415 14.0829 6.62286 13.7334 6.26977L13.7255 6.26184C13.368 5.91272 12.808 5.91272 12.4466 6.26184L10 8.70568L7.5574 6.26977C7.19995 5.91272 6.62008 5.91272 6.2666 6.26977C5.91312 6.62683 5.90915 7.20605 6.2666 7.55914L8.7092 9.99901L6.26263 12.4428C6.09185 12.6174 5.99653 12.8475 6.0005 13.0935C6.0005 13.3315 6.09979 13.5576 6.2666 13.7282L6.27455 13.7362C6.632 14.0853 7.19201 14.0853 7.55343 13.7362L10 11.2923L12.4426 13.7322C12.8 14.0893 13.3799 14.0893 13.7334 13.7322C14.0869 13.3752 14.0909 12.7959 13.7334 12.4428L13.7374 12.4349Z' fill='%239DA4AA'/%3E%3C/svg%3E%0A") no-repeat 0 0;
  background-size: contain;
}

.form-text {
  display: flex;
  gap: 4px;
  color: var(--UI_05);
  font-size: 13px;
  line-height: 1.38462;
  letter-spacing: -0.26px;
  font-weight: 400;
}
.form-text i {
  flex-shrink: 0;
}

.invalid-feedback {
  line-height: 1.38426;
}
.invalid-feedback i {
  margin-right: 4px;
  transform: translateY(-1px);
}

.form-inline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-inline .col-form-label {
  min-width: var(--label-width);
}

.input-group {
  position: relative;
}
.input-group:focus-within .form-control {
  border-color: #3df18b;
}
.input-group .form-control {
  border-radius: 0.5rem !important;
}
.input-group .form-control:focus {
  z-index: initial;
}
.input-group .icon-button {
  position: absolute;
  right: 1px;
  top: 1px;
  z-index: 4;
  padding: 0 15px;
  height: calc(100% - 2px);
  max-height: 44px;
  line-height: 1;
  border: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.input-group .form-control-sm + .icon-button {
  padding: 0 0.75rem;
}

.form-label {
  color: #fff;
}

.modal-backdrop + .modal-backdrop {
  --bs-backdrop-zindex: 1056;
}
.modal-backdrop + .modal-backdrop + .modal-backdrop {
  --bs-backdrop-zindex: 1058;
}

.modal {
  --bs-modal-padding: 1.5rem;
  --bs-modal-header-padding: 1rem;
  --bs-modal-inner-border-radius: 0.5rem;
  --bs-modal-border-width: 0;
  --bs-modal-footer-border-width: 0;
  --bs-modal-margin: 1rem;
  overflow: hidden;
}
.modal.second {
  --bs-modal-zindex: 1057;
}
.modal.third {
  --bs-modal-zindex: 1059;
}
@media (min-width: 992px) {
  .modal {
    --bs-modal-header-padding: 1.5rem;
  }
}

.modal-content {
  box-shadow: 4px 4px 15px rgb(0, 0, 0);
}

.modal-header .btn-close {
  --bs-btn-close-opacity: 1;
  --bs-btn-close-hover-opacity: 1;
  --bs-btn-close-bg: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 19L5 5M19 5L5 19' stroke='%2326282C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  margin: 0;
  padding: 0;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  background-position: 0 0;
  background-size: contain;
}

.modal-title {
  font-weight: 700;
}

.navbar-brand {
  --bs-navbar-brand-padding-y: 0;
  --bs-navbar-brand-font-size: 20px;
  font-family: "ClashDisplay-Variable";
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.btn-menu {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  .btn-menu {
    display: none;
  }
}
.btn-menu .icon-menu {
  width: 24px;
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.btn-menu .icon-menu span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.btn-menu .icon-menu span:nth-child(1) {
  top: 0;
}
.btn-menu .icon-menu span:nth-child(2), .btn-menu .icon-menu span:nth-child(3) {
  top: 9px;
}
.btn-menu .icon-menu span:nth-child(4) {
  top: 18px;
}
.btn-menu.open {
  z-index: 101;
}
.btn-menu.open .icon-menu span:nth-child(1) {
  top: 18px;
  width: 0;
  left: 50%;
}
.btn-menu.open .icon-menu span:nth-child(2) {
  transform: rotate(45deg);
}
.btn-menu.open .icon-menu span:nth-child(3) {
  transform: rotate(-45deg);
}
.btn-menu.open .icon-menu span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.btn-menu.open ~ .navbar-nav-wrapper {
  display: flex;
}

.nav-link {
  font-family: "SUIT Variable";
  font-weight: 600;
}

.navbar {
  --bs-navbar-padding-y: 1rem;
}
@media (min-width: 1200px) {
  .navbar {
    --bs-navbar-padding-y: 1.75rem;
  }
}

@media (max-width: 1199.98px) {
  .navbar-nav-wrapper {
    display: none;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    align-items: center;
    justify-content: center;
  }
}

.navbar-nav {
  gap: 32px;
}
@media (max-width: 1199.98px) {
  .navbar-nav {
    text-align: center;
    gap: 40px;
  }
}
.navbar-expand-lg .navbar-nav .nav-link {
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.6;
  position: relative;
  padding: 0;
}
.navbar-expand-lg .navbar-nav .nav-link.active::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1199.98px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    display: inline-block;
    font-size: 24px;
  }
}

.pagination {
  margin-top: 0.75rem;
}
@media (min-width: 1200px) {
  .pagination {
    margin-top: 1.5rem;
  }
}
.pagination .material-icons {
  font-size: 17px;
  vertical-align: middle;
  margin-left: -4px;
  margin-right: -4px;
}

.progress {
  background: rgba(var(--UI_11), 1);
  border-radius: 50rem;
  height: 16px;
  position: relative;
  overflow: visible;
}
.progress::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--UI_08);
  border-radius: 50rem;
}

.progress-bar {
  background: #B1CBDD;
  border-radius: 50rem;
  overflow: visible;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}

.project-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 992px) {
  .project-list {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    place-items: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    gap: 40px;
  }
}
.project-list .project-item {
  width: 100%;
  text-decoration: none;
}
.project-list .project-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 24px 0;
  position: relative;
}
.project-list .project-info::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url(../images/icon-arrow-right.svg) no-repeat center center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.project-list .project-img img {
  width: 100%;
}

/* 1. 이미지 컨테이너 (.project-img)의 비율을 고정하고 영역을 정의합니다. */
.project-img {
  position: relative;
  width: 100%;
  /* 원하는 비율로 설정: 4:3 비율을 원하면 75% */
  padding-bottom: 75%; /* 높이를 너비의 75%로 설정하여 비율 고정 */
  height: 0;
  overflow: hidden; /* 이미지가 튀어나오는 것 방지 */
  background-color: #f0f0f0; /* 이미지가 로드되기 전에 배경색 */
}

/* 2. 이미지 (img)를 컨테이너 영역에 맞춥니다. */
.project-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* ⭐ 핵심: 비율을 유지하며 컨테이너를 가득 채우고 남는 부분은 잘라냅니다. */
  object-fit: cover;

  /* 만약 이미지가 잘리는 것을 원치 않으면 object-fit: contain; 사용 (빈 공간 발생 가능) */
}

.project-list .project-name {
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.4;
  color: #fff;
  font-weight: 700;
}



.table-fixed {
  table-layout: fixed;
}

.table {
  font-size: 14px;
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .table {
    font-size: 13px;
    min-width: var(--minWidth);
  }
}
.table col {
  width: var(--col-width);
}
@media (min-width: 1200px) {
  .table col {
    width: var(--col-width-lg);
  }
}
.table th {
  font-weight: 500;
}
@media (max-width: 1199.98px) {
  .table th {
    white-space: nowrap;
  }
}
.table td {
  word-break: break-all;
}
@media (max-width: 1199.98px) {
  .table .form-control-sm {
    padding-top: 4px;
    padding-bottom: 4px;
    min-height: 24px;
  }
}

.tab {
  margin-bottom: 3rem;
}
@media (min-width: 1200px) {
  .tab {
    margin-bottom: 7.5rem;
  }
}
@media (max-width: 1199.98px) {
  .tab {
    background: #000;
    position: sticky;
    padding: 0.5rem 0;
    top: 62px;
    z-index: 2;
  }
}
.tab .tab-inner {
  margin-left: -16px;
  margin-right: -16px;
}
.tab .tab-inner .swiper .swiper-wrapper {
  align-items: center;
}
@media (min-width: 1200px) {
  .tab .tab-inner .swiper .swiper-wrapper {
    justify-content: center;
  }
}
.tab .tab-inner .swiper .swiper-slide {
  width: auto;
}
.tab .tab-inner button {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}
.tab .tab-inner button:hover {
  background: rgba(255, 255, 255, 0.2);
  color: rgb(255, 255, 255);
  transform: translateY(-2px);
}
.tab .tab-inner button.active {
  background: linear-gradient(135deg, #3df18b, rgb(108.5673076923, 244.4326923077, 167.4423076923));
  color: #000;
  box-shadow: 0 4px 15px rgba(61, 241, 139, 0.3);
}
@media (max-width: 991.98px) {
  .tab .tab-inner button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.5;
  }
}
html,
body {
  min-height: 100vh;
}

body {
  background: url("../images/bg-noise.png") repeat;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/bg-noise.png") repeat;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}
body.page-loaded::before {
  opacity: 0;
  pointer-events: none;
}
body.page-loaded.animation-complete::before {
  display: none;
}

.layout {
  min-height: 100vh;
  background: url("../images/bg-noise.png") repeat;
}
@media (min-width: 1200px) {
  .layout {
    padding-left: 48px;
  }
  .layout::before {
    content: "";
    position: absolute;
    top: 0;
    left: 48px;
    width: 1px;
    height: 100%;
    background: #999999;
    z-index: 1;
  }
}
html:not(.main-page) .layout {
  padding-top: 62px;
}
@media (min-width: 1200px) {
  html:not(.main-page) .layout {
    padding-top: 86px;
    position: relative;
  }
}

.container,
.container-fluid {
  --bs-gutter-x: 3rem;
}
@media (min-width: 1200px) {
  .container,
  .container-fluid {
    --bs-gutter-x: 5rem;
  }
}

.row > * {
  min-width: 0;
}

.layout-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform 0.5s ease;
  background: transparent;
}
html.main-page .layout-header {
  background: transparent;
}
@media (min-width: 1200px) {
  .layout-header {
    left: 49px;
  }
  html.scroll-up .layout-header {
    transform: translateY(0);
  }
  html.scroll-down .layout-header {
    transform: translateY(-100%);
  }
}

.layout-footer {
  border-top: 1px solid #999999;
  padding: 2rem 0;
}
@media (min-width: 992px) {
  .layout-footer {
    padding: 4rem 0;
  }
}
.layout-footer .company-logo {
  margin-bottom: 1rem;
}
.layout-footer .company-name {
  font-size: clamp(15px, 1.1vw, 20px);
  font-weight: 600;
  margin-bottom: 1rem;
}
.layout-footer .company-info {
  font-size: clamp(12px, 1.5vw, 14px);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

html:not(.main-page) .layout-main {
  padding-bottom: 60px;
}
@media (min-width: 1200px) {
  html:not(.main-page) .layout-main {
    padding-bottom: 150px;
  }
}

@media (max-width: 1199.98px) {
  .login-body {
    background: transparent;
  }
}

.login {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.login-logo h1 {
  margin: 0;
}
@media (max-width: 767.98px) {
  .login-logo img {
    max-width: 70%;
  }
}

.login-box {
  border-radius: 2rem;
  background-color: #fff;
  padding: 2.5rem 3.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .login-box {
    padding: 2.5rem 1.5rem;
  }
}

.login-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.form-control[type=text] ~ .btn-type-change .icon-eye {
  background-image: url("../images/icon-eye-slash.svg");
}

.fonts-loading .layout-main {
  opacity: 0;
  visibility: hidden;
}

.fonts-loaded .layout-main {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.5s ease-in-out, visibility 0s;
}

.loading-indicator {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  color: #3df18b;
  font-family: "ClashDisplay-Variable", sans-serif;
  font-size: 18px;
  font-weight: 500;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}
.loading-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}
.loading-indicator::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  border: 2px solid transparent;
  border-top: 2px solid #3df18b;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.split-char {
  display: inline-block;
  transition: all 0.4s ease;
  transform-origin: center bottom;
  will-change: transform, opacity;
  -webkit-text-rendering: optimizeSpeed;
  text-rendering: optimizeSpeed;
  transform: translateZ(0);
  opacity: 0;
}
.split-char:hover {
  transform: scale(1.2) rotateY(20deg) rotateX(10deg);
  color: #3df18b;
  text-shadow: 0 0 25px rgba(61, 241, 139, 0.6);
}

.sections .section {
  background: url("../images/bg-noise.png") repeat;
}
.sections .section .inner {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section1 .inner {
  position: relative;
}
.section1 .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/bg-noise.png") repeat;
  z-index: -1;
}
.section1 .video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: exclusion;
  filter: blur(0px);
}
.section1 .keywords {
  font-family: "ClashDisplay-Variable";
  text-transform: uppercase;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 1.6px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 180px));
  gap: 10px;
  color: #fff;
}
.section1 .keywords .softpuzzle {
  color: #3df18b;
  font-weight: 700;
}
.section1 .keywords .softpuzzle::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  background: url("../images/icon-star.svg") no-repeat center center/contain;
}
@media (max-width: 1199.98px) {
  .section1 .keywords {
    display: none;
  }
}
.section1 .hero-content h1 {
  font-size: clamp(13px, 1.1vw, 20px);
  font-weight: 600;
  line-height: 1.4;
  color: #3df18b;
}
.section1 .hero-content h2 {
  font-family: "ClashDisplay-Variable";
  font-size: clamp(36px, 4.58vw, 88px);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}
.section1 .hero-content p {
  font-size: clamp(13px, 1.1vw, 20px);
  line-height: 1.6;
  color: #fff;
}

.section3 {
  height: 100vh;
  overflow: hidden;
}
.section3 .section3-text1 {
  font-family: "ClashDisplay-Variable";
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  font-size: clamp(32px, 3.3333vw, 64px);
}
.section3 .title {
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.4;
  color: #fff;
  font-weight: 700;
}
.section3 .desc {
  font-size: clamp(13px, 1.1vw, 20px);
  line-height: 1.5;
}
.section3 .img img {
  width: 100%;
}
.section3 .slider .slider-track {
  position: relative;
  display: flex;
  gap: 32px;
  will-change: transform;
}
.section3 .slider .slider-item {
  flex: 0 0 85%;
}
@media (min-width: 992px) {
  .section3 .slider .slider-item {
    flex: 0 0 45%;
  }
}
@media (min-width: 1200px) {
  .section3 .slider .slider-item {
    flex: 0 0 33.3333333333%;
  }
}

.section4,
.section5,
.section6 {
  min-height: 100vh;
  overflow: hidden;
}
.section4 .inner,
.section5 .inner,
.section6 .inner {
  background: url("../images/bg-noise.png") repeat;
}
.section4 .our-business,
.section5 .our-business,
.section6 .our-business {
  font-family: "ClashDisplay-Variable";
  font-size: clamp(18px, 1.25vw, 24px);
  color: #3df18b;
  font-weight: 500;
}
.section4 .service,
.section5 .service,
.section6 .service {
  font-family: "ClashDisplay-Variable";
  font-size: clamp(18px, 3.75vw, 72px);
  line-height: 1.2;
  color: #fff;
  font-weight: 600;
}
.section4 .title,
.section5 .title,
.section6 .title {
  font-size: clamp(16px, 1.04166vw, 20px);
  line-height: 1.4;
  color: #fff;
  font-weight: 700;
}
.section4 .desc,
.section5 .desc,
.section6 .desc {
  font-size: clamp(13px, 0.9375vw, 18px);
  line-height: 1.5;
  display: none;
}
@media (min-width: 992px) {
  .section4 .desc,
  .section5 .desc,
  .section6 .desc {
    display: block;
  }
}
.section4 .swiper-pagination-bullets,
.section5 .swiper-pagination-bullets,
.section6 .swiper-pagination-bullets {
  position: static;
  text-align: left;
  margin-bottom: 20px;
}
.section4 .swiper-pagination-bullets .swiper-pagination-bullet,
.section5 .swiper-pagination-bullets .swiper-pagination-bullet,
.section6 .swiper-pagination-bullets .swiper-pagination-bullet {
  background: none !important;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  width: 28px;
  height: 28px;
  opacity: 1;
  position: relative;
}
.section4 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(1)::before,
.section5 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(1)::before,
.section6 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(1)::before {
  content: "01";
}
.section4 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(2)::before,
.section5 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(2)::before,
.section6 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(2)::before {
  content: "02";
}
.section4 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(3)::before,
.section5 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(3)::before,
.section6 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(3)::before {
  content: "03";
}
.section4 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(4)::before,
.section5 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(4)::before,
.section6 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(4)::before {
  content: "04";
}
.section4 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(5)::before,
.section5 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(5)::before,
.section6 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(5)::before {
  content: "05";
}
.section4 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(6)::before,
.section5 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(6)::before,
.section6 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(6)::before {
  content: "06";
}
.section4 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(7)::before,
.section5 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(7)::before,
.section6 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(7)::before {
  content: "07";
}
.section4 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(8)::before,
.section5 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(8)::before,
.section6 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(8)::before {
  content: "08";
}
.section4 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(9)::before,
.section5 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(9)::before,
.section6 .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(9)::before {
  content: "09";
}
.section4 .swiper-pagination-bullets .swiper-pagination-bullet-active::after,
.section5 .swiper-pagination-bullets .swiper-pagination-bullet-active::after,
.section6 .swiper-pagination-bullets .swiper-pagination-bullet-active::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.section4 .swiper .swiper-slide,
.section5 .swiper .swiper-slide,
.section6 .swiper .swiper-slide {
  position: relative;
}
.section4 .swiper .project-name,
.section5 .swiper .project-name,
.section6 .swiper .project-name {
  position: absolute;
  left: 40px;
  bottom: 40px;
  right: 40px;
  color: #fff;
}
.section4 .swiper .name-ko,
.section5 .swiper .name-ko,
.section6 .swiper .name-ko {
  font-size: clamp(20px, 2.08333vw, 40px);
  line-height: 1.4;
  color: #fff;
  font-weight: 700;
}
.section4 .swiper .name-en,
.section5 .swiper .name-en,
.section6 .swiper .name-en {
  font-size: clamp(14px, 1.04166vw, 20px);
  line-height: 1.5;
}

.section7 {
  position: relative;
  z-index: 1;
}
.section7 .pinned-text {
  position: relative;
  text-align: center;
  padding: 240px 0;
  font-family: "ClashDisplay-Variable";
}
.section7 .our-business {
  font-size: clamp(18px, 1.66666vw, 32px);
  color: #fff;
  font-weight: 500;
}
.section7 .service {
  font-size: clamp(32px, 5.20833vw, 100px);
  line-height: 1.2;
  color: #3df18b;
  font-weight: 500;
}
.section7 .services {
  text-align: center;
  max-width: 1340px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 120px 0;
  backdrop-filter: blur(12px);
  margin-bottom: 120px;
}
.section7 .services img {
  width: 160px;
  height: 160px;
}
.section7 .services .title {
  line-height: 1.4;
  color: #fff;
  font-weight: 700;
  font-size: clamp(16px, 1.25vw, 24px);
}
.section7 .services .desc {
  font-size: clamp(13px, 0.9375vw, 18px);
  line-height: 1.5;
}
@media (min-width: 992px) {
  .section7 .project-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .section7 .project-list .project-item:nth-child(1) {
    grid-area: 1/5/5/13;
  }
  .section7 .project-list .project-item:nth-child(2) {
    grid-area: 6/1/9/9;
  }
  .section7 .project-list .project-item:nth-child(3) {
    grid-area: 7/11/10/17;
  }
  .section7 .project-list .project-item:nth-child(4) {
    grid-area: 11/7/16/16;
  }
  .section7 .project-list .project-item:nth-child(5) {
    grid-area: 17/3/21/11;
  }
}

.section8 .portfolio {
  width: 100%;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
  display: flex;
  justify-content: flex-start;
}
.section8 .marquee {
  --space: 0.001rem;
  --duration: 20s;
  --gap: var(--space);
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  gap: var(--gap);
}
.section8 .marquee .marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--gap);
  min-width: 100%;
  animation: marquee var(--duration) linear infinite;
}
@media (max-width: 1199.98px) {
  .section8 .marquee .marquee-group {
    height: 80px;
  }
  .section8 .marquee .marquee-group img {
    height: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .section8 .marquee .marquee-group {
    animation-play-state: paused;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.section9 {
  text-align: center;
  position: relative;
  overflow: hidden;
  perspective: 1200px;
  transform-style: preserve-3d;
}
.section9 .section9-text {
  font-family: "ClashDisplay-Variable";
  font-size: clamp(32px, 3.4895vw, 64px);
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
}
.section9 .section2-text1 {
  font-size: clamp(18px, 2vw, 40px);
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
}
.section9 .section2-text2 {
  font-size: clamp(13px, 0.9vw, 18px);
  line-height: 1.5;
}
.section9 #section2-img1-wrapper {
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
  will-change: transform;
}
.section9 #section2-img1-wrapper img {
  transition: all 0.3s ease;
  border-radius: 12px;
  filter: brightness(0.95) contrast(1.05);
}
.section9 .bg {
  background: url(../images/main-section9-bg.png) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about-visual {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 62px);
}
@media (min-width: 1200px) {
  .about-visual {
    height: calc(100vh - 86px);
  }
}
.about-visual .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: url(../images/about-visual.png) no-repeat center -40px;
}
@media (max-width: 1199.98px) {
  .about-visual .bg {
    background-size: auto 50%;
    background-position: left 25% top;
  }
}
.about-visual .page-title {
  padding: 100px 0;
}
@media (max-width: 1199.98px) {
  .about-visual .page-title {
    text-align: left;
    padding: 2rem 0 5rem;
  }
}
.about-visual .visual-text1 {
  font-family: "ClashDisplay-Variable";
  font-weight: 600;
  font-size: clamp(26px, 2.0833vw, 40px);
  line-height: 1.2;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translate3d(50px, 30px, 0);
}
.about-visual .visual-text2 {
  font-size: clamp(14px, 0.9375vw, 18px);
  opacity: 0;
  transform: translate3d(50px, 30px, 0);
}
@media (max-width: 1199.98px) {
  .about-visual .visual-text2 {
    padding-bottom: 3rem;
  }
}

.section2 {
  padding: 100px 0;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .section2 {
    padding: 200px 0;
  }
}
.section2 {
  text-align: center;
  perspective: 1200px;
  transform-style: preserve-3d;
}
.section2 .section2-text1 {
  font-size: clamp(18px, 2vw, 40px);
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
}
.section2 .section2-text2 {
  font-size: clamp(13px, 0.9vw, 18px);
  line-height: 1.5;
}
.section2 #section2-img1-wrapper,
.section2 #section2-img2-wrapper {
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
  will-change: transform;
}
.section2 #section2-img1-wrapper img,
.section2 #section2-img2-wrapper img {
  transition: all 0.3s ease;
  border-radius: 12px;
}
.section2 #section2-img1-wrapper img {
  filter: brightness(0.95) contrast(1.05);
}
.section2 #section2-img2-wrapper img {
  filter: brightness(1.05) saturate(1.1);
}

.about-sub-title {
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 0.75rem;
  color: #3df18b;
  font-size: 24px;
  text-align: center;
}

.about-title {
  font-family: "ClashDisplay-Variable";
  font-weight: 600;
  line-height: 1.2;
  font-size: clamp(40px, 3.75vw, 72px);
  margin-bottom: 4rem;
}

.about-message {
  text-align: center;
  padding: 100px 0;
  word-break: keep-all;
}
@media (min-width: 1200px) {
  .about-message {
    padding: 200px 0;
  }
}
.about-message .planet {
  margin-bottom: 2rem;
}
.about-message .message1 {
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 500;
}
.about-message .message2 {
  font-size: clamp(32px, 2.5vw, 48px);
  font-weight: 700;
  margin-bottom: 2rem;
}
.about-message .message2 span {
  font-weight: 700;
  color: #3df18b;
}
.about-message .message3 {
  font-size: clamp(14px, 0.9375vw, 18px);
  margin-bottom: 2rem;
}

.about-process {
  padding: 100px 0;
}
@media (min-width: 1200px) {
  .about-process {
    padding: 120px 0;
  }
}
.about-process .process-img {
  display: block;
  text-align: center;
}
@media (max-width: 991.98px) {
  .about-process .process-img img {
    width: 100%;
    max-width: 500px;
  }
}
.about-process .process-text {
  word-break: keep-all;
  font-size: clamp(14px, 0.9375vw, 18px);
  text-align: center;
  margin-top: 2rem;
}

.about-history {
  padding: 100px 0 0;
}
@media (min-width: 1200px) {
  .about-history {
    padding: 120px 0 0;
  }
}
.about-history .about-title {
  text-align: center;
}

.history {
  --history-gap: 100px;
  padding-bottom: var(--history-gap);
}
@media (min-width: 1200px) {
  .history {
    --history-gap: 200px;
  }
}
.history .year {
  font-family: "ClashDisplay-Variable";
  font-weight: 700;
  line-height: 1;
  font-size: clamp(34px, 6.25vw, 120px);
  color: #3df18b;
  text-align: left;
  position: sticky;
  top: var(--history-gap);
  z-index: 1;
  width: 35%;
  transform: translateY(100%);
}
@media (min-width: 1200px) {
  .history .year {
    text-align: center;
    width: 50%;
  }
}
.history .history-items {
  padding-left: 35%;
  display: flex;
  flex-direction: column;
  margin-bottom: calc(var(--history-gap) * -1);
}
@media (min-width: 1200px) {
  .history .history-items {
    padding-left: 50%;
  }
}
.history .history-item {
  border-left: 1px solid #999999;
  position: relative;
  padding-bottom: var(--history-gap);
  padding-left: 1.5rem;
}
@media (min-width: 1200px) {
  .history .history-item {
    padding-left: 3rem;
  }
}
.history .history-item::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #999999;
  position: absolute;
  top: 0;
  left: -8.5px;
}
.history .list {
  font-size: clamp(14px, 0.9375vw, 18px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 1200px) {
  .history .list {
    gap: 24px;
    grid-template-columns: 1fr 1fr;
  }
}

.about-location {
  padding: 100px 0;
}
@media (min-width: 1200px) {
  .about-location {
    padding: 200px 0;
  }
}
.about-location .about-info {
  font-size: clamp(13px, 0.9375vw, 18px);
  margin-bottom: 3rem;
}
.about-location .map {
  aspect-ratio: 1/1;
}
@media (min-width: 1200px) {
  .about-location .map {
    aspect-ratio: 1760/600;
  }
}

.project-visual .project-visual-img {
  text-align: center;
  aspect-ratio: 100/50;
}
@media (min-width: 992px) {
  .project-visual .project-visual-img {
    aspect-ratio: 1760/461;
  }
}
.project-visual .project-visual-img .project-visual-img-inner {
  width: 50%;
  height: 50%;
  opacity: 0;
  position: relative;
  top: 100px;
  margin: 0 auto;
}
.project-visual .project-visual-img .project-visual-img-inner .img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .project-visual .project-visual-img .project-visual-img-inner .img {
    background-attachment: fixed;
  }
}
.project-visual .project-visual-img .project-visual-img-inner .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.project-visual .text-group {
  position: relative;
  margin-top: 1rem;
}
@media (min-width: 992px) {
  .project-visual .text-group {
    margin-top: -3rem;
  }
}
.project-visual .page-title {
  padding: 0 0 16px;
  opacity: 0;
  transform: translateY(100px);
}
@media (min-width: 992px) {
  .project-visual .page-title {
    padding: 0 0 64px;
  }
}
.project-visual .project-desc {
  font-size: clamp(13px, 0.9375vw, 18px);
  line-height: 1.6;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  word-break: keep-all;
  opacity: 0;
  transform: translateY(100px);
}

.project-details {
  background: #232323;
  border-radius: 24px;
  max-width: 720px;
  padding: 1rem;
  margin: 2rem auto 0;
  opacity: 0;
  transform: translateY(100px);
}
@media (min-width: 992px) {
  .project-details {
    padding: 2rem;
    margin: 5rem auto 0;
  }
}
.project-details dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-size: clamp(12px, 1.04166vw, 20px);
}
@media (min-width: 992px) {
  .project-details dl {
    gap: 2rem 1rem;
  }
}
.project-details dl dt {
  font-weight: 400;
  color: #999999;
}
.project-details dl dd {
  text-align: right;
}

.project-background {
  background: #232323;
  border-radius: 24px;
  max-width: 720px;
  padding: 1rem;
  margin: 1rem auto 0;
  opacity: 0;
  transform: translateY(100px);
}
@media (min-width: 992px) {
  .project-background {
    padding: 2rem;
    margin: 1.5rem auto 0;
  }
}
.project-background h2 {
  font-weight: 600;
  font-size: clamp(20px, 1.66vw, 32px);
  margin-bottom: 24px;
}
.project-background p {
  font-size: clamp(13px, 0.9375vw, 18px);
  line-height: 1.6;
  color: #999999;
}

.project-images {
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  margin-top: 100px;
}
@media (min-width: 992px) {
  .project-images {
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
    margin-top: 150px;
  }
}
.project-images img {
  width: 100%;
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
  margin-bottom: 1rem;
  opacity: 0;
  position: relative;
  top: 100px;
}
@media (min-width: 992px) {
  .project-images img {
    margin-bottom: 1.5rem;
  }
}

.project-request-visual {
  padding: 50px 0;
}
@media (min-width: 992px) {
  .project-request-visual {
    padding: 100px 0;
  }
}
.project-request-visual .small-title {
  color: #3df18b;
  font-family: "ClashDisplay-Variable";
  font-weight: 500;
  font-size: clamp(20px, 1.25vw, 24px);
  margin-bottom: 1rem;
}
.project-request-visual .desc {
  font-family: "ClashDisplay-Variable";
  font-weight: 600;
  font-size: clamp(28px, 3.755vw, 72px);
  line-height: 1.2;
}
.project-request-visual .desc span {
  color: #3df18b;
}

.project-request-form {
  --form-layout-padding: 50px 0;
}
@media (min-width: 992px) {
  .project-request-form {
    --form-layout-padding: 100px 0;
    display: flex;
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .project-request-form {
    gap: 4rem;
  }
}
.project-request-form .form-left {
  padding: var(--form-layout-padding);
  border-bottom: 1px solid #999999;
}
@media (min-width: 992px) {
  .project-request-form .form-left {
    border-bottom: 0;
    border-right: 1px solid #999999;
    flex: 1;
    padding-right: 4rem;
  }
}
.project-request-form .form-right {
  padding: var(--form-layout-padding);
}
@media (min-width: 992px) {
  .project-request-form .form-right .sticky-area {
    position: sticky;
    top: 100px;
    overflow-y: auto;
  }
}
.project-request-form .form-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .project-request-form .form-title {
    margin-bottom: 4rem;
  }
}
.project-request-form .form-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 992px) {
  .project-request-form .form-content {
    gap: 4rem;
  }
}
.project-request-form .form-content-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.project-request-form .form-content-item .form-content-item-title {
  font-size: clamp(18px, 1.6666vw, 24px);
  font-weight: 700;
}
.project-request-form .form-content-item .form-content-item-help {
  font-size: clamp(14px, 1.6666vw, 16px);
  font-weight: 600;
  color: #777777;
}
@media (max-width: 991.98px) {
  .project-request-form .form-control-lg {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    min-height: 40px;
  }
}
.project-request-form .form-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .project-request-form .form-buttons {
    gap: 0.5rem;
  }
}
.project-request-form .form-buttons .btn-check:not(:checked) + .btn {
  background-color: transparent;
  border: 1px solid #999999;
  color: #999999;
}
.project-request-form .form-buttons .btn-check:not(:checked) + .btn:hover {
  color: #3df18b;
  border: 1px solid #3df18b !important;
}
@media (max-width: 1199.98px) {
  .project-request-form .form-buttons .btn-check + .btn-lg {
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-font-size: 0.875rem;
  }
}
.project-request-form .selected-form {
  font-weight: 600;
  font-size: clamp(20px, 1.6666vw, 32px);
  word-break: keep-all;
}
@media (min-width: 992px) {
  .project-request-form .selected-form {
    width: 360px;
  }
}
@media (min-width: 1200px) {
  .project-request-form .selected-form {
    width: 420px;
  }
}
.project-request-form .selected-form span {
  color: #555555;
}
.project-request-form .selected-form span.active {
  color: #3df18b;
}
.project-request-form .selected-form-submit {
  margin-top: 4rem;
}
@media (min-width: 1200px) {
  .project-request-form .selected-form-submit {
    margin-top: 5rem;
  }
}
.project-request-form .selected-form-submit .ani-btn {
  width: 100%;
}
@media (min-width: 1200px) {
  .project-request-form .selected-form-submit .ani-btn {
    width: auto;
  }
}

.selected-summary .top-text {
  font-size: clamp(16px, 1.6666vw, 18px);
  font-weight: 500;
  text-align: center;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.selected-summary .contents-box {
  background: #333333;
  border-radius: 1rem;
  padding: 1rem;
}
.selected-summary .contents-box .selected-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  line-height: 1.6;
}
.selected-summary .contents-box .selected-summary dt {
  font-weight: 600;
  color: #999999;
}
.selected-summary .contents-box .selected-summary dd {
  text-align: right;
}
@media (max-width: 991.98px) {
  .selected-summary .contents-box .selected-summary {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .selected-summary .contents-box .selected-summary dt {
    font-size: 13px;
  }
  .selected-summary .contents-box .selected-summary dd {
    text-align: left;
    font-size: 15px;
    margin-top: -0.25rem;
  }
}
.selected-summary .contents-box .project-title {
  font-size: clamp(16px, 1.6666vw, 18px);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.selected-summary .contents-box .project-desc {
  font-size: clamp(14px, 1.6666vw, 15px);
}
/*# sourceMappingURL=style.css.map */
