@charset "UTF-8";
/* =================================================================
   1. [SCSS Variables] Raw Data Definition
   * 이곳은 '순수 값'만 정의합니다. 실제 코드에서는 사용하지 않는 것을 권장합니다.
   * 브랜드 컬러 코드가 바뀌면 여기만 수정하세요.
   ================================================================= */
/* 드롭다운,멀티포함 */
/* Level 1: Fixed UI (헤더 영역) */
/* Level 2: Dropdowns (헤더 위에 뜨는 요소) */
/* Level 3: Overlays (전체 화면을 덮는 요소) */
/* Level 4: Controls (가장 최상위 컨트롤) */
/**
 * [A. 일반 속성용] width, height, padding, margin, gap 등
 * @param $property : CSS 속성명
 * @param $values : 값
 * @param $raw : (옵션) true일 경우 /3 계산 안함
 */
/**
 * [B. 폰트 전용] font-size + line-height + Text Crop
 */
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,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
picture,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: var(--text-base);
  font-family: "Pretendard", sans-serif;
  vertical-align: baseline;
  -webkit-text-size-adjust: none;
  box-sizing: border-box;
  letter-spacing: -0.02em;
  word-break: keep-all;
  line-height: 1.5;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
picture,
section,
div {
  position: relative;
  display: block;
}

body {
  line-height: 1;
  color: black;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  font: inherit;
  text-decoration: none;
}

strong {
  font: inherit;
}

label,
button,
input[type=submit],
input[type=checkbox],
input[type=radio],
input[type=button] {
  padding: 0px;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
}

input[type=text],
input[type=password],
input[type=number] {
  padding: 0px;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input,
button,
textarea,
select {
  border: none;
  font-family: "Pretendard", sans-serif;
  box-sizing: border-box;
}

input[type=submit],
button[type=submit] {
  font-family: "Pretendard", sans-serif;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

button:focus,
textarea:focus,
input:focus {
  outline: none;
}

button,
textarea,
input,
select,
a,
label {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

img {
  vertical-align: middle;
}

button {
  background: transparent;
  color: inherit;
}

input,
textarea {
  border: 1px solid transparent;
  transition: border 0.3s ease-in-out;
}

::-moz-placeholder {
  color: var(--PlaceColor);
  font-family: "Pretendard", sans-serif;
}

::placeholder {
  color: var(--PlaceColor);
  font-family: "Pretendard", sans-serif;
}

b {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

.no-scroll {
  overflow: hidden !important;
}
.no-scroll .scroll-frame {
  overflow: hidden !important;
}

/* =================================================================
   [Component] Modal Layer
   * JS Class Mapping:
   * 1. 배경 (.modal-dim)
   * 2. 본체 (.modal-layer)
   * 3. 활성상태 (.is-active)
   ================================================================= */
.modal-dim {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-dim.is-active {
  opacity: 1;
  visibility: visible;
}
.modal-dim.is-active .modal-layer {
  transform: translateY(0);
  opacity: 1;
}

.modal-layer {
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s;
}
.modal-layer {
  border-radius: 2.8125vw;
}
@media (min-width: 641px) {
  .modal-layer {
    border-radius: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer {
    border-radius: 12px;
  }
}
@media screen and (min-width: 641px) {
  .modal-layer {
    width: auto;
    width: 100%;
    border-radius: 12px;
  }
}
.modal-layer .modal-header {
  border-bottom: 1px solid transparent;
  background: #4cbced;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-layer .modal-header {
  padding: 9.375vw 0 7.8125vw 0;
}
@media (min-width: 641px) {
  .modal-layer .modal-header {
    padding: 2.5rem 0 2.0833rem 0;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-header {
    padding: 40px 0 33px 0;
  }
}
@media screen and (min-width: 1200px) {
  .modal-layer .modal-header {
    padding: 44px 0px;
  }
}
.modal-layer .modal-header .tit {
  font-weight: 700;
  color: #ffffff;
}
.modal-layer .modal-header .tit {
  font-size: 5vw;
}
@media (min-width: 641px) {
  .modal-layer .modal-header .tit {
    font-size: 1.3333rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-header .tit {
    font-size: 21px;
  }
}
@media screen and (min-width: 1200px) {
  .modal-layer .modal-header .tit {
    font-size: 28px;
  }
}
.modal-layer .modal-header .btn-close-modal {
  position: absolute;
  cursor: pointer;
}
.modal-layer .modal-header .btn-close-modal {
  top: 3.125vw;
}
@media (min-width: 641px) {
  .modal-layer .modal-header .btn-close-modal {
    top: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-header .btn-close-modal {
    top: 13px;
  }
}
.modal-layer .modal-header .btn-close-modal {
  right: 3.125vw;
}
@media (min-width: 641px) {
  .modal-layer .modal-header .btn-close-modal {
    right: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-header .btn-close-modal {
    right: 13px;
  }
}
.modal-layer .modal-header .btn-close-modal {
  width: 8.4375vw;
}
@media (min-width: 641px) {
  .modal-layer .modal-header .btn-close-modal {
    width: 2.25rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-header .btn-close-modal {
    width: 36px;
  }
}
.modal-layer .modal-header .btn-close-modal {
  height: 8.4375vw;
}
@media (min-width: 641px) {
  .modal-layer .modal-header .btn-close-modal {
    height: 2.25rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-header .btn-close-modal {
    height: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .modal-layer .modal-header .btn-close-modal {
    top: 38px;
    right: 38px;
    width: 40px;
    height: 40px;
  }
}
.modal-layer .modal-header .btn-close-modal .icon-svg {
  width: 100%;
  height: 100%;
}
.modal-layer .modal-header .btn-close-modal .icon-svg svg {
  width: 100%;
  color: #ffffff;
}
.modal-layer .modal-body {
  flex: 1;
  overflow-y: auto;
  background: #ffffff;
  -webkit-overflow-scrolling: touch;
  color: #666;
  line-height: 1.5;
}
.modal-layer .modal-body {
  padding: 9.375vw 6.25vw;
}
@media (min-width: 641px) {
  .modal-layer .modal-body {
    padding: 2.5rem 1.6667rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-body {
    padding: 40px 27px;
  }
}
.modal-layer .modal-body {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .modal-layer .modal-body {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-body {
    font-size: 16px;
  }
}
@media screen and (min-width: 641px) {
  .modal-layer .modal-body {
    padding: 48px;
    font-size: 16px;
  }
}
.modal-layer .modal-footer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-layer .modal-footer {
  padding: 3.75vw;
}
@media (min-width: 641px) {
  .modal-layer .modal-footer {
    padding: 1rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-footer {
    padding: 16px;
  }
}
.modal-layer .modal-footer {
  gap: 1.875vw;
}
@media (min-width: 641px) {
  .modal-layer .modal-footer {
    gap: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-footer {
    gap: 8px;
  }
}
@media screen and (min-width: 641px) {
  .modal-layer .modal-footer {
    padding: 16px;
    gap: 8px;
  }
}

/* =================================================================
   [Utility] Helper Classes
   * PC 기준 값(1배수)을 클래스명으로 사용합니다.
   * 내부적으로 3배수로 변환하여 responsive() 믹스인을 호출합니다.
   ================================================================= */
.m-0 {
  margin: 0vw;
}
@media (min-width: 641px) {
  .m-0 {
    margin: 0rem;
  }
}
@media (min-width: 1200px) {
  .m-0 {
    margin: 0px;
  }
}

.mt-0 {
  margin-top: 0vw;
}
@media (min-width: 641px) {
  .mt-0 {
    margin-top: 0rem;
  }
}
@media (min-width: 1200px) {
  .mt-0 {
    margin-top: 0px;
  }
}

.mb-0 {
  margin-bottom: 0vw;
}
@media (min-width: 641px) {
  .mb-0 {
    margin-bottom: 0rem;
  }
}
@media (min-width: 1200px) {
  .mb-0 {
    margin-bottom: 0px;
  }
}

.ml-0 {
  margin-left: 0vw;
}
@media (min-width: 641px) {
  .ml-0 {
    margin-left: 0rem;
  }
}
@media (min-width: 1200px) {
  .ml-0 {
    margin-left: 0px;
  }
}

.mr-0 {
  margin-right: 0vw;
}
@media (min-width: 641px) {
  .mr-0 {
    margin-right: 0rem;
  }
}
@media (min-width: 1200px) {
  .mr-0 {
    margin-right: 0px;
  }
}

.mx-0 {
  margin-left: 0vw;
}
@media (min-width: 641px) {
  .mx-0 {
    margin-left: 0rem;
  }
}
@media (min-width: 1200px) {
  .mx-0 {
    margin-left: 0px;
  }
}
.mx-0 {
  margin-right: 0vw;
}
@media (min-width: 641px) {
  .mx-0 {
    margin-right: 0rem;
  }
}
@media (min-width: 1200px) {
  .mx-0 {
    margin-right: 0px;
  }
}

.my-0 {
  margin-top: 0vw;
}
@media (min-width: 641px) {
  .my-0 {
    margin-top: 0rem;
  }
}
@media (min-width: 1200px) {
  .my-0 {
    margin-top: 0px;
  }
}
.my-0 {
  margin-bottom: 0vw;
}
@media (min-width: 641px) {
  .my-0 {
    margin-bottom: 0rem;
  }
}
@media (min-width: 1200px) {
  .my-0 {
    margin-bottom: 0px;
  }
}

.p-0 {
  padding: 0vw;
}
@media (min-width: 641px) {
  .p-0 {
    padding: 0rem;
  }
}
@media (min-width: 1200px) {
  .p-0 {
    padding: 0px;
  }
}

.pt-0 {
  padding-top: 0vw;
}
@media (min-width: 641px) {
  .pt-0 {
    padding-top: 0rem;
  }
}
@media (min-width: 1200px) {
  .pt-0 {
    padding-top: 0px;
  }
}

.pb-0 {
  padding-bottom: 0vw;
}
@media (min-width: 641px) {
  .pb-0 {
    padding-bottom: 0rem;
  }
}
@media (min-width: 1200px) {
  .pb-0 {
    padding-bottom: 0px;
  }
}

.pl-0 {
  padding-left: 0vw;
}
@media (min-width: 641px) {
  .pl-0 {
    padding-left: 0rem;
  }
}
@media (min-width: 1200px) {
  .pl-0 {
    padding-left: 0px;
  }
}

.pr-0 {
  padding-right: 0vw;
}
@media (min-width: 641px) {
  .pr-0 {
    padding-right: 0rem;
  }
}
@media (min-width: 1200px) {
  .pr-0 {
    padding-right: 0px;
  }
}

.px-0 {
  padding-left: 0vw;
}
@media (min-width: 641px) {
  .px-0 {
    padding-left: 0rem;
  }
}
@media (min-width: 1200px) {
  .px-0 {
    padding-left: 0px;
  }
}
.px-0 {
  padding-right: 0vw;
}
@media (min-width: 641px) {
  .px-0 {
    padding-right: 0rem;
  }
}
@media (min-width: 1200px) {
  .px-0 {
    padding-right: 0px;
  }
}

.py-0 {
  padding-top: 0vw;
}
@media (min-width: 641px) {
  .py-0 {
    padding-top: 0rem;
  }
}
@media (min-width: 1200px) {
  .py-0 {
    padding-top: 0px;
  }
}
.py-0 {
  padding-bottom: 0vw;
}
@media (min-width: 641px) {
  .py-0 {
    padding-bottom: 0rem;
  }
}
@media (min-width: 1200px) {
  .py-0 {
    padding-bottom: 0px;
  }
}

.m-4 {
  margin: 0.9375vw;
}
@media (min-width: 641px) {
  .m-4 {
    margin: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .m-4 {
    margin: 4px;
  }
}

.mt-4 {
  margin-top: 0.9375vw;
}
@media (min-width: 641px) {
  .mt-4 {
    margin-top: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .mt-4 {
    margin-top: 4px;
  }
}

.mb-4 {
  margin-bottom: 0.9375vw;
}
@media (min-width: 641px) {
  .mb-4 {
    margin-bottom: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .mb-4 {
    margin-bottom: 4px;
  }
}

.ml-4 {
  margin-left: 0.9375vw;
}
@media (min-width: 641px) {
  .ml-4 {
    margin-left: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .ml-4 {
    margin-left: 4px;
  }
}

.mr-4 {
  margin-right: 0.9375vw;
}
@media (min-width: 641px) {
  .mr-4 {
    margin-right: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .mr-4 {
    margin-right: 4px;
  }
}

.mx-4 {
  margin-left: 0.9375vw;
}
@media (min-width: 641px) {
  .mx-4 {
    margin-left: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .mx-4 {
    margin-left: 4px;
  }
}
.mx-4 {
  margin-right: 0.9375vw;
}
@media (min-width: 641px) {
  .mx-4 {
    margin-right: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .mx-4 {
    margin-right: 4px;
  }
}

.my-4 {
  margin-top: 0.9375vw;
}
@media (min-width: 641px) {
  .my-4 {
    margin-top: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .my-4 {
    margin-top: 4px;
  }
}
.my-4 {
  margin-bottom: 0.9375vw;
}
@media (min-width: 641px) {
  .my-4 {
    margin-bottom: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .my-4 {
    margin-bottom: 4px;
  }
}

.p-4 {
  padding: 0.9375vw;
}
@media (min-width: 641px) {
  .p-4 {
    padding: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .p-4 {
    padding: 4px;
  }
}

.pt-4 {
  padding-top: 0.9375vw;
}
@media (min-width: 641px) {
  .pt-4 {
    padding-top: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .pt-4 {
    padding-top: 4px;
  }
}

.pb-4 {
  padding-bottom: 0.9375vw;
}
@media (min-width: 641px) {
  .pb-4 {
    padding-bottom: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .pb-4 {
    padding-bottom: 4px;
  }
}

.pl-4 {
  padding-left: 0.9375vw;
}
@media (min-width: 641px) {
  .pl-4 {
    padding-left: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .pl-4 {
    padding-left: 4px;
  }
}

.pr-4 {
  padding-right: 0.9375vw;
}
@media (min-width: 641px) {
  .pr-4 {
    padding-right: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .pr-4 {
    padding-right: 4px;
  }
}

.px-4 {
  padding-left: 0.9375vw;
}
@media (min-width: 641px) {
  .px-4 {
    padding-left: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .px-4 {
    padding-left: 4px;
  }
}
.px-4 {
  padding-right: 0.9375vw;
}
@media (min-width: 641px) {
  .px-4 {
    padding-right: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .px-4 {
    padding-right: 4px;
  }
}

.py-4 {
  padding-top: 0.9375vw;
}
@media (min-width: 641px) {
  .py-4 {
    padding-top: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .py-4 {
    padding-top: 4px;
  }
}
.py-4 {
  padding-bottom: 0.9375vw;
}
@media (min-width: 641px) {
  .py-4 {
    padding-bottom: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .py-4 {
    padding-bottom: 4px;
  }
}

.m-5 {
  margin: 1.1719vw;
}
@media (min-width: 641px) {
  .m-5 {
    margin: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .m-5 {
    margin: 5px;
  }
}

.mt-5 {
  margin-top: 1.1719vw;
}
@media (min-width: 641px) {
  .mt-5 {
    margin-top: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .mt-5 {
    margin-top: 5px;
  }
}

.mb-5 {
  margin-bottom: 1.1719vw;
}
@media (min-width: 641px) {
  .mb-5 {
    margin-bottom: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .mb-5 {
    margin-bottom: 5px;
  }
}

.ml-5 {
  margin-left: 1.1719vw;
}
@media (min-width: 641px) {
  .ml-5 {
    margin-left: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .ml-5 {
    margin-left: 5px;
  }
}

.mr-5 {
  margin-right: 1.1719vw;
}
@media (min-width: 641px) {
  .mr-5 {
    margin-right: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .mr-5 {
    margin-right: 5px;
  }
}

.mx-5 {
  margin-left: 1.1719vw;
}
@media (min-width: 641px) {
  .mx-5 {
    margin-left: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .mx-5 {
    margin-left: 5px;
  }
}
.mx-5 {
  margin-right: 1.1719vw;
}
@media (min-width: 641px) {
  .mx-5 {
    margin-right: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .mx-5 {
    margin-right: 5px;
  }
}

.my-5 {
  margin-top: 1.1719vw;
}
@media (min-width: 641px) {
  .my-5 {
    margin-top: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .my-5 {
    margin-top: 5px;
  }
}
.my-5 {
  margin-bottom: 1.1719vw;
}
@media (min-width: 641px) {
  .my-5 {
    margin-bottom: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .my-5 {
    margin-bottom: 5px;
  }
}

.p-5 {
  padding: 1.1719vw;
}
@media (min-width: 641px) {
  .p-5 {
    padding: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .p-5 {
    padding: 5px;
  }
}

.pt-5 {
  padding-top: 1.1719vw;
}
@media (min-width: 641px) {
  .pt-5 {
    padding-top: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .pt-5 {
    padding-top: 5px;
  }
}

.pb-5 {
  padding-bottom: 1.1719vw;
}
@media (min-width: 641px) {
  .pb-5 {
    padding-bottom: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .pb-5 {
    padding-bottom: 5px;
  }
}

.pl-5 {
  padding-left: 1.1719vw;
}
@media (min-width: 641px) {
  .pl-5 {
    padding-left: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .pl-5 {
    padding-left: 5px;
  }
}

.pr-5 {
  padding-right: 1.1719vw;
}
@media (min-width: 641px) {
  .pr-5 {
    padding-right: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .pr-5 {
    padding-right: 5px;
  }
}

.px-5 {
  padding-left: 1.1719vw;
}
@media (min-width: 641px) {
  .px-5 {
    padding-left: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .px-5 {
    padding-left: 5px;
  }
}
.px-5 {
  padding-right: 1.1719vw;
}
@media (min-width: 641px) {
  .px-5 {
    padding-right: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .px-5 {
    padding-right: 5px;
  }
}

.py-5 {
  padding-top: 1.1719vw;
}
@media (min-width: 641px) {
  .py-5 {
    padding-top: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .py-5 {
    padding-top: 5px;
  }
}
.py-5 {
  padding-bottom: 1.1719vw;
}
@media (min-width: 641px) {
  .py-5 {
    padding-bottom: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .py-5 {
    padding-bottom: 5px;
  }
}

.m-8 {
  margin: 1.875vw;
}
@media (min-width: 641px) {
  .m-8 {
    margin: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .m-8 {
    margin: 8px;
  }
}

.mt-8 {
  margin-top: 1.875vw;
}
@media (min-width: 641px) {
  .mt-8 {
    margin-top: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .mt-8 {
    margin-top: 8px;
  }
}

.mb-8 {
  margin-bottom: 1.875vw;
}
@media (min-width: 641px) {
  .mb-8 {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .mb-8 {
    margin-bottom: 8px;
  }
}

.ml-8 {
  margin-left: 1.875vw;
}
@media (min-width: 641px) {
  .ml-8 {
    margin-left: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .ml-8 {
    margin-left: 8px;
  }
}

.mr-8 {
  margin-right: 1.875vw;
}
@media (min-width: 641px) {
  .mr-8 {
    margin-right: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .mr-8 {
    margin-right: 8px;
  }
}

.mx-8 {
  margin-left: 1.875vw;
}
@media (min-width: 641px) {
  .mx-8 {
    margin-left: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .mx-8 {
    margin-left: 8px;
  }
}
.mx-8 {
  margin-right: 1.875vw;
}
@media (min-width: 641px) {
  .mx-8 {
    margin-right: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .mx-8 {
    margin-right: 8px;
  }
}

.my-8 {
  margin-top: 1.875vw;
}
@media (min-width: 641px) {
  .my-8 {
    margin-top: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .my-8 {
    margin-top: 8px;
  }
}
.my-8 {
  margin-bottom: 1.875vw;
}
@media (min-width: 641px) {
  .my-8 {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .my-8 {
    margin-bottom: 8px;
  }
}

.p-8 {
  padding: 1.875vw;
}
@media (min-width: 641px) {
  .p-8 {
    padding: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .p-8 {
    padding: 8px;
  }
}

.pt-8 {
  padding-top: 1.875vw;
}
@media (min-width: 641px) {
  .pt-8 {
    padding-top: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .pt-8 {
    padding-top: 8px;
  }
}

.pb-8 {
  padding-bottom: 1.875vw;
}
@media (min-width: 641px) {
  .pb-8 {
    padding-bottom: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .pb-8 {
    padding-bottom: 8px;
  }
}

.pl-8 {
  padding-left: 1.875vw;
}
@media (min-width: 641px) {
  .pl-8 {
    padding-left: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .pl-8 {
    padding-left: 8px;
  }
}

.pr-8 {
  padding-right: 1.875vw;
}
@media (min-width: 641px) {
  .pr-8 {
    padding-right: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .pr-8 {
    padding-right: 8px;
  }
}

.px-8 {
  padding-left: 1.875vw;
}
@media (min-width: 641px) {
  .px-8 {
    padding-left: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .px-8 {
    padding-left: 8px;
  }
}
.px-8 {
  padding-right: 1.875vw;
}
@media (min-width: 641px) {
  .px-8 {
    padding-right: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .px-8 {
    padding-right: 8px;
  }
}

.py-8 {
  padding-top: 1.875vw;
}
@media (min-width: 641px) {
  .py-8 {
    padding-top: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .py-8 {
    padding-top: 8px;
  }
}
.py-8 {
  padding-bottom: 1.875vw;
}
@media (min-width: 641px) {
  .py-8 {
    padding-bottom: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .py-8 {
    padding-bottom: 8px;
  }
}

.m-10 {
  margin: 2.3438vw;
}
@media (min-width: 641px) {
  .m-10 {
    margin: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .m-10 {
    margin: 10px;
  }
}

.mt-10 {
  margin-top: 2.3438vw;
}
@media (min-width: 641px) {
  .mt-10 {
    margin-top: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .mt-10 {
    margin-top: 10px;
  }
}

.mb-10 {
  margin-bottom: 2.3438vw;
}
@media (min-width: 641px) {
  .mb-10 {
    margin-bottom: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .mb-10 {
    margin-bottom: 10px;
  }
}

.ml-10 {
  margin-left: 2.3438vw;
}
@media (min-width: 641px) {
  .ml-10 {
    margin-left: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .ml-10 {
    margin-left: 10px;
  }
}

.mr-10 {
  margin-right: 2.3438vw;
}
@media (min-width: 641px) {
  .mr-10 {
    margin-right: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .mr-10 {
    margin-right: 10px;
  }
}

.mx-10 {
  margin-left: 2.3438vw;
}
@media (min-width: 641px) {
  .mx-10 {
    margin-left: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .mx-10 {
    margin-left: 10px;
  }
}
.mx-10 {
  margin-right: 2.3438vw;
}
@media (min-width: 641px) {
  .mx-10 {
    margin-right: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .mx-10 {
    margin-right: 10px;
  }
}

.my-10 {
  margin-top: 2.3438vw;
}
@media (min-width: 641px) {
  .my-10 {
    margin-top: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .my-10 {
    margin-top: 10px;
  }
}
.my-10 {
  margin-bottom: 2.3438vw;
}
@media (min-width: 641px) {
  .my-10 {
    margin-bottom: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .my-10 {
    margin-bottom: 10px;
  }
}

.p-10 {
  padding: 2.3438vw;
}
@media (min-width: 641px) {
  .p-10 {
    padding: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .p-10 {
    padding: 10px;
  }
}

.pt-10 {
  padding-top: 2.3438vw;
}
@media (min-width: 641px) {
  .pt-10 {
    padding-top: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .pt-10 {
    padding-top: 10px;
  }
}

.pb-10 {
  padding-bottom: 2.3438vw;
}
@media (min-width: 641px) {
  .pb-10 {
    padding-bottom: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .pb-10 {
    padding-bottom: 10px;
  }
}

.pl-10 {
  padding-left: 2.3438vw;
}
@media (min-width: 641px) {
  .pl-10 {
    padding-left: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .pl-10 {
    padding-left: 10px;
  }
}

.pr-10 {
  padding-right: 2.3438vw;
}
@media (min-width: 641px) {
  .pr-10 {
    padding-right: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .pr-10 {
    padding-right: 10px;
  }
}

.px-10 {
  padding-left: 2.3438vw;
}
@media (min-width: 641px) {
  .px-10 {
    padding-left: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .px-10 {
    padding-left: 10px;
  }
}
.px-10 {
  padding-right: 2.3438vw;
}
@media (min-width: 641px) {
  .px-10 {
    padding-right: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .px-10 {
    padding-right: 10px;
  }
}

.py-10 {
  padding-top: 2.3438vw;
}
@media (min-width: 641px) {
  .py-10 {
    padding-top: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .py-10 {
    padding-top: 10px;
  }
}
.py-10 {
  padding-bottom: 2.3438vw;
}
@media (min-width: 641px) {
  .py-10 {
    padding-bottom: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .py-10 {
    padding-bottom: 10px;
  }
}

.m-12 {
  margin: 2.8125vw;
}
@media (min-width: 641px) {
  .m-12 {
    margin: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .m-12 {
    margin: 12px;
  }
}

.mt-12 {
  margin-top: 2.8125vw;
}
@media (min-width: 641px) {
  .mt-12 {
    margin-top: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .mt-12 {
    margin-top: 12px;
  }
}

.mb-12 {
  margin-bottom: 2.8125vw;
}
@media (min-width: 641px) {
  .mb-12 {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .mb-12 {
    margin-bottom: 12px;
  }
}

.ml-12 {
  margin-left: 2.8125vw;
}
@media (min-width: 641px) {
  .ml-12 {
    margin-left: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .ml-12 {
    margin-left: 12px;
  }
}

.mr-12 {
  margin-right: 2.8125vw;
}
@media (min-width: 641px) {
  .mr-12 {
    margin-right: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .mr-12 {
    margin-right: 12px;
  }
}

.mx-12 {
  margin-left: 2.8125vw;
}
@media (min-width: 641px) {
  .mx-12 {
    margin-left: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .mx-12 {
    margin-left: 12px;
  }
}
.mx-12 {
  margin-right: 2.8125vw;
}
@media (min-width: 641px) {
  .mx-12 {
    margin-right: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .mx-12 {
    margin-right: 12px;
  }
}

.my-12 {
  margin-top: 2.8125vw;
}
@media (min-width: 641px) {
  .my-12 {
    margin-top: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .my-12 {
    margin-top: 12px;
  }
}
.my-12 {
  margin-bottom: 2.8125vw;
}
@media (min-width: 641px) {
  .my-12 {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .my-12 {
    margin-bottom: 12px;
  }
}

.p-12 {
  padding: 2.8125vw;
}
@media (min-width: 641px) {
  .p-12 {
    padding: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .p-12 {
    padding: 12px;
  }
}

.pt-12 {
  padding-top: 2.8125vw;
}
@media (min-width: 641px) {
  .pt-12 {
    padding-top: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .pt-12 {
    padding-top: 12px;
  }
}

.pb-12 {
  padding-bottom: 2.8125vw;
}
@media (min-width: 641px) {
  .pb-12 {
    padding-bottom: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .pb-12 {
    padding-bottom: 12px;
  }
}

.pl-12 {
  padding-left: 2.8125vw;
}
@media (min-width: 641px) {
  .pl-12 {
    padding-left: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .pl-12 {
    padding-left: 12px;
  }
}

.pr-12 {
  padding-right: 2.8125vw;
}
@media (min-width: 641px) {
  .pr-12 {
    padding-right: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .pr-12 {
    padding-right: 12px;
  }
}

.px-12 {
  padding-left: 2.8125vw;
}
@media (min-width: 641px) {
  .px-12 {
    padding-left: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .px-12 {
    padding-left: 12px;
  }
}
.px-12 {
  padding-right: 2.8125vw;
}
@media (min-width: 641px) {
  .px-12 {
    padding-right: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .px-12 {
    padding-right: 12px;
  }
}

.py-12 {
  padding-top: 2.8125vw;
}
@media (min-width: 641px) {
  .py-12 {
    padding-top: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .py-12 {
    padding-top: 12px;
  }
}
.py-12 {
  padding-bottom: 2.8125vw;
}
@media (min-width: 641px) {
  .py-12 {
    padding-bottom: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .py-12 {
    padding-bottom: 12px;
  }
}

.m-15 {
  margin: 3.5156vw;
}
@media (min-width: 641px) {
  .m-15 {
    margin: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .m-15 {
    margin: 15px;
  }
}

.mt-15 {
  margin-top: 3.5156vw;
}
@media (min-width: 641px) {
  .mt-15 {
    margin-top: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .mt-15 {
    margin-top: 15px;
  }
}

.mb-15 {
  margin-bottom: 3.5156vw;
}
@media (min-width: 641px) {
  .mb-15 {
    margin-bottom: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .mb-15 {
    margin-bottom: 15px;
  }
}

.ml-15 {
  margin-left: 3.5156vw;
}
@media (min-width: 641px) {
  .ml-15 {
    margin-left: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .ml-15 {
    margin-left: 15px;
  }
}

.mr-15 {
  margin-right: 3.5156vw;
}
@media (min-width: 641px) {
  .mr-15 {
    margin-right: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .mr-15 {
    margin-right: 15px;
  }
}

.mx-15 {
  margin-left: 3.5156vw;
}
@media (min-width: 641px) {
  .mx-15 {
    margin-left: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .mx-15 {
    margin-left: 15px;
  }
}
.mx-15 {
  margin-right: 3.5156vw;
}
@media (min-width: 641px) {
  .mx-15 {
    margin-right: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .mx-15 {
    margin-right: 15px;
  }
}

.my-15 {
  margin-top: 3.5156vw;
}
@media (min-width: 641px) {
  .my-15 {
    margin-top: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .my-15 {
    margin-top: 15px;
  }
}
.my-15 {
  margin-bottom: 3.5156vw;
}
@media (min-width: 641px) {
  .my-15 {
    margin-bottom: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .my-15 {
    margin-bottom: 15px;
  }
}

.p-15 {
  padding: 3.5156vw;
}
@media (min-width: 641px) {
  .p-15 {
    padding: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .p-15 {
    padding: 15px;
  }
}

.pt-15 {
  padding-top: 3.5156vw;
}
@media (min-width: 641px) {
  .pt-15 {
    padding-top: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .pt-15 {
    padding-top: 15px;
  }
}

.pb-15 {
  padding-bottom: 3.5156vw;
}
@media (min-width: 641px) {
  .pb-15 {
    padding-bottom: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .pb-15 {
    padding-bottom: 15px;
  }
}

.pl-15 {
  padding-left: 3.5156vw;
}
@media (min-width: 641px) {
  .pl-15 {
    padding-left: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .pl-15 {
    padding-left: 15px;
  }
}

.pr-15 {
  padding-right: 3.5156vw;
}
@media (min-width: 641px) {
  .pr-15 {
    padding-right: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .pr-15 {
    padding-right: 15px;
  }
}

.px-15 {
  padding-left: 3.5156vw;
}
@media (min-width: 641px) {
  .px-15 {
    padding-left: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .px-15 {
    padding-left: 15px;
  }
}
.px-15 {
  padding-right: 3.5156vw;
}
@media (min-width: 641px) {
  .px-15 {
    padding-right: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .px-15 {
    padding-right: 15px;
  }
}

.py-15 {
  padding-top: 3.5156vw;
}
@media (min-width: 641px) {
  .py-15 {
    padding-top: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .py-15 {
    padding-top: 15px;
  }
}
.py-15 {
  padding-bottom: 3.5156vw;
}
@media (min-width: 641px) {
  .py-15 {
    padding-bottom: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .py-15 {
    padding-bottom: 15px;
  }
}

.m-16 {
  margin: 3.75vw;
}
@media (min-width: 641px) {
  .m-16 {
    margin: 1rem;
  }
}
@media (min-width: 1200px) {
  .m-16 {
    margin: 16px;
  }
}

.mt-16 {
  margin-top: 3.75vw;
}
@media (min-width: 641px) {
  .mt-16 {
    margin-top: 1rem;
  }
}
@media (min-width: 1200px) {
  .mt-16 {
    margin-top: 16px;
  }
}

.mb-16 {
  margin-bottom: 3.75vw;
}
@media (min-width: 641px) {
  .mb-16 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  .mb-16 {
    margin-bottom: 16px;
  }
}

.ml-16 {
  margin-left: 3.75vw;
}
@media (min-width: 641px) {
  .ml-16 {
    margin-left: 1rem;
  }
}
@media (min-width: 1200px) {
  .ml-16 {
    margin-left: 16px;
  }
}

.mr-16 {
  margin-right: 3.75vw;
}
@media (min-width: 641px) {
  .mr-16 {
    margin-right: 1rem;
  }
}
@media (min-width: 1200px) {
  .mr-16 {
    margin-right: 16px;
  }
}

.mx-16 {
  margin-left: 3.75vw;
}
@media (min-width: 641px) {
  .mx-16 {
    margin-left: 1rem;
  }
}
@media (min-width: 1200px) {
  .mx-16 {
    margin-left: 16px;
  }
}
.mx-16 {
  margin-right: 3.75vw;
}
@media (min-width: 641px) {
  .mx-16 {
    margin-right: 1rem;
  }
}
@media (min-width: 1200px) {
  .mx-16 {
    margin-right: 16px;
  }
}

.my-16 {
  margin-top: 3.75vw;
}
@media (min-width: 641px) {
  .my-16 {
    margin-top: 1rem;
  }
}
@media (min-width: 1200px) {
  .my-16 {
    margin-top: 16px;
  }
}
.my-16 {
  margin-bottom: 3.75vw;
}
@media (min-width: 641px) {
  .my-16 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  .my-16 {
    margin-bottom: 16px;
  }
}

.p-16 {
  padding: 3.75vw;
}
@media (min-width: 641px) {
  .p-16 {
    padding: 1rem;
  }
}
@media (min-width: 1200px) {
  .p-16 {
    padding: 16px;
  }
}

.pt-16 {
  padding-top: 3.75vw;
}
@media (min-width: 641px) {
  .pt-16 {
    padding-top: 1rem;
  }
}
@media (min-width: 1200px) {
  .pt-16 {
    padding-top: 16px;
  }
}

.pb-16 {
  padding-bottom: 3.75vw;
}
@media (min-width: 641px) {
  .pb-16 {
    padding-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  .pb-16 {
    padding-bottom: 16px;
  }
}

.pl-16 {
  padding-left: 3.75vw;
}
@media (min-width: 641px) {
  .pl-16 {
    padding-left: 1rem;
  }
}
@media (min-width: 1200px) {
  .pl-16 {
    padding-left: 16px;
  }
}

.pr-16 {
  padding-right: 3.75vw;
}
@media (min-width: 641px) {
  .pr-16 {
    padding-right: 1rem;
  }
}
@media (min-width: 1200px) {
  .pr-16 {
    padding-right: 16px;
  }
}

.px-16 {
  padding-left: 3.75vw;
}
@media (min-width: 641px) {
  .px-16 {
    padding-left: 1rem;
  }
}
@media (min-width: 1200px) {
  .px-16 {
    padding-left: 16px;
  }
}
.px-16 {
  padding-right: 3.75vw;
}
@media (min-width: 641px) {
  .px-16 {
    padding-right: 1rem;
  }
}
@media (min-width: 1200px) {
  .px-16 {
    padding-right: 16px;
  }
}

.py-16 {
  padding-top: 3.75vw;
}
@media (min-width: 641px) {
  .py-16 {
    padding-top: 1rem;
  }
}
@media (min-width: 1200px) {
  .py-16 {
    padding-top: 16px;
  }
}
.py-16 {
  padding-bottom: 3.75vw;
}
@media (min-width: 641px) {
  .py-16 {
    padding-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  .py-16 {
    padding-bottom: 16px;
  }
}

.m-20 {
  margin: 4.6875vw;
}
@media (min-width: 641px) {
  .m-20 {
    margin: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .m-20 {
    margin: 20px;
  }
}

.mt-20 {
  margin-top: 4.6875vw;
}
@media (min-width: 641px) {
  .mt-20 {
    margin-top: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .mt-20 {
    margin-top: 20px;
  }
}

.mb-20 {
  margin-bottom: 4.6875vw;
}
@media (min-width: 641px) {
  .mb-20 {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .mb-20 {
    margin-bottom: 20px;
  }
}

.ml-20 {
  margin-left: 4.6875vw;
}
@media (min-width: 641px) {
  .ml-20 {
    margin-left: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .ml-20 {
    margin-left: 20px;
  }
}

.mr-20 {
  margin-right: 4.6875vw;
}
@media (min-width: 641px) {
  .mr-20 {
    margin-right: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .mr-20 {
    margin-right: 20px;
  }
}

.mx-20 {
  margin-left: 4.6875vw;
}
@media (min-width: 641px) {
  .mx-20 {
    margin-left: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .mx-20 {
    margin-left: 20px;
  }
}
.mx-20 {
  margin-right: 4.6875vw;
}
@media (min-width: 641px) {
  .mx-20 {
    margin-right: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .mx-20 {
    margin-right: 20px;
  }
}

.my-20 {
  margin-top: 4.6875vw;
}
@media (min-width: 641px) {
  .my-20 {
    margin-top: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .my-20 {
    margin-top: 20px;
  }
}
.my-20 {
  margin-bottom: 4.6875vw;
}
@media (min-width: 641px) {
  .my-20 {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .my-20 {
    margin-bottom: 20px;
  }
}

.p-20 {
  padding: 4.6875vw;
}
@media (min-width: 641px) {
  .p-20 {
    padding: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .p-20 {
    padding: 20px;
  }
}

.pt-20 {
  padding-top: 4.6875vw;
}
@media (min-width: 641px) {
  .pt-20 {
    padding-top: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .pt-20 {
    padding-top: 20px;
  }
}

.pb-20 {
  padding-bottom: 4.6875vw;
}
@media (min-width: 641px) {
  .pb-20 {
    padding-bottom: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .pb-20 {
    padding-bottom: 20px;
  }
}

.pl-20 {
  padding-left: 4.6875vw;
}
@media (min-width: 641px) {
  .pl-20 {
    padding-left: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .pl-20 {
    padding-left: 20px;
  }
}

.pr-20 {
  padding-right: 4.6875vw;
}
@media (min-width: 641px) {
  .pr-20 {
    padding-right: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .pr-20 {
    padding-right: 20px;
  }
}

.px-20 {
  padding-left: 4.6875vw;
}
@media (min-width: 641px) {
  .px-20 {
    padding-left: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .px-20 {
    padding-left: 20px;
  }
}
.px-20 {
  padding-right: 4.6875vw;
}
@media (min-width: 641px) {
  .px-20 {
    padding-right: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .px-20 {
    padding-right: 20px;
  }
}

.py-20 {
  padding-top: 4.6875vw;
}
@media (min-width: 641px) {
  .py-20 {
    padding-top: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .py-20 {
    padding-top: 20px;
  }
}
.py-20 {
  padding-bottom: 4.6875vw;
}
@media (min-width: 641px) {
  .py-20 {
    padding-bottom: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .py-20 {
    padding-bottom: 20px;
  }
}

.m-24 {
  margin: 5.625vw;
}
@media (min-width: 641px) {
  .m-24 {
    margin: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .m-24 {
    margin: 24px;
  }
}

.mt-24 {
  margin-top: 5.625vw;
}
@media (min-width: 641px) {
  .mt-24 {
    margin-top: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .mt-24 {
    margin-top: 24px;
  }
}

.mb-24 {
  margin-bottom: 5.625vw;
}
@media (min-width: 641px) {
  .mb-24 {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .mb-24 {
    margin-bottom: 24px;
  }
}

.ml-24 {
  margin-left: 5.625vw;
}
@media (min-width: 641px) {
  .ml-24 {
    margin-left: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .ml-24 {
    margin-left: 24px;
  }
}

.mr-24 {
  margin-right: 5.625vw;
}
@media (min-width: 641px) {
  .mr-24 {
    margin-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .mr-24 {
    margin-right: 24px;
  }
}

.mx-24 {
  margin-left: 5.625vw;
}
@media (min-width: 641px) {
  .mx-24 {
    margin-left: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .mx-24 {
    margin-left: 24px;
  }
}
.mx-24 {
  margin-right: 5.625vw;
}
@media (min-width: 641px) {
  .mx-24 {
    margin-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .mx-24 {
    margin-right: 24px;
  }
}

.my-24 {
  margin-top: 5.625vw;
}
@media (min-width: 641px) {
  .my-24 {
    margin-top: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .my-24 {
    margin-top: 24px;
  }
}
.my-24 {
  margin-bottom: 5.625vw;
}
@media (min-width: 641px) {
  .my-24 {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .my-24 {
    margin-bottom: 24px;
  }
}

.p-24 {
  padding: 5.625vw;
}
@media (min-width: 641px) {
  .p-24 {
    padding: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .p-24 {
    padding: 24px;
  }
}

.pt-24 {
  padding-top: 5.625vw;
}
@media (min-width: 641px) {
  .pt-24 {
    padding-top: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .pt-24 {
    padding-top: 24px;
  }
}

.pb-24 {
  padding-bottom: 5.625vw;
}
@media (min-width: 641px) {
  .pb-24 {
    padding-bottom: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .pb-24 {
    padding-bottom: 24px;
  }
}

.pl-24 {
  padding-left: 5.625vw;
}
@media (min-width: 641px) {
  .pl-24 {
    padding-left: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .pl-24 {
    padding-left: 24px;
  }
}

.pr-24 {
  padding-right: 5.625vw;
}
@media (min-width: 641px) {
  .pr-24 {
    padding-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .pr-24 {
    padding-right: 24px;
  }
}

.px-24 {
  padding-left: 5.625vw;
}
@media (min-width: 641px) {
  .px-24 {
    padding-left: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .px-24 {
    padding-left: 24px;
  }
}
.px-24 {
  padding-right: 5.625vw;
}
@media (min-width: 641px) {
  .px-24 {
    padding-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .px-24 {
    padding-right: 24px;
  }
}

.py-24 {
  padding-top: 5.625vw;
}
@media (min-width: 641px) {
  .py-24 {
    padding-top: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .py-24 {
    padding-top: 24px;
  }
}
.py-24 {
  padding-bottom: 5.625vw;
}
@media (min-width: 641px) {
  .py-24 {
    padding-bottom: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .py-24 {
    padding-bottom: 24px;
  }
}

.m-30 {
  margin: 7.0313vw;
}
@media (min-width: 641px) {
  .m-30 {
    margin: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .m-30 {
    margin: 30px;
  }
}

.mt-30 {
  margin-top: 7.0313vw;
}
@media (min-width: 641px) {
  .mt-30 {
    margin-top: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .mt-30 {
    margin-top: 30px;
  }
}

.mb-30 {
  margin-bottom: 7.0313vw;
}
@media (min-width: 641px) {
  .mb-30 {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .mb-30 {
    margin-bottom: 30px;
  }
}

.ml-30 {
  margin-left: 7.0313vw;
}
@media (min-width: 641px) {
  .ml-30 {
    margin-left: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .ml-30 {
    margin-left: 30px;
  }
}

.mr-30 {
  margin-right: 7.0313vw;
}
@media (min-width: 641px) {
  .mr-30 {
    margin-right: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .mr-30 {
    margin-right: 30px;
  }
}

.mx-30 {
  margin-left: 7.0313vw;
}
@media (min-width: 641px) {
  .mx-30 {
    margin-left: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .mx-30 {
    margin-left: 30px;
  }
}
.mx-30 {
  margin-right: 7.0313vw;
}
@media (min-width: 641px) {
  .mx-30 {
    margin-right: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .mx-30 {
    margin-right: 30px;
  }
}

.my-30 {
  margin-top: 7.0313vw;
}
@media (min-width: 641px) {
  .my-30 {
    margin-top: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .my-30 {
    margin-top: 30px;
  }
}
.my-30 {
  margin-bottom: 7.0313vw;
}
@media (min-width: 641px) {
  .my-30 {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .my-30 {
    margin-bottom: 30px;
  }
}

.p-30 {
  padding: 7.0313vw;
}
@media (min-width: 641px) {
  .p-30 {
    padding: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .p-30 {
    padding: 30px;
  }
}

.pt-30 {
  padding-top: 7.0313vw;
}
@media (min-width: 641px) {
  .pt-30 {
    padding-top: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .pt-30 {
    padding-top: 30px;
  }
}

.pb-30 {
  padding-bottom: 7.0313vw;
}
@media (min-width: 641px) {
  .pb-30 {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .pb-30 {
    padding-bottom: 30px;
  }
}

.pl-30 {
  padding-left: 7.0313vw;
}
@media (min-width: 641px) {
  .pl-30 {
    padding-left: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .pl-30 {
    padding-left: 30px;
  }
}

.pr-30 {
  padding-right: 7.0313vw;
}
@media (min-width: 641px) {
  .pr-30 {
    padding-right: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .pr-30 {
    padding-right: 30px;
  }
}

.px-30 {
  padding-left: 7.0313vw;
}
@media (min-width: 641px) {
  .px-30 {
    padding-left: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .px-30 {
    padding-left: 30px;
  }
}
.px-30 {
  padding-right: 7.0313vw;
}
@media (min-width: 641px) {
  .px-30 {
    padding-right: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .px-30 {
    padding-right: 30px;
  }
}

.py-30 {
  padding-top: 7.0313vw;
}
@media (min-width: 641px) {
  .py-30 {
    padding-top: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .py-30 {
    padding-top: 30px;
  }
}
.py-30 {
  padding-bottom: 7.0313vw;
}
@media (min-width: 641px) {
  .py-30 {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .py-30 {
    padding-bottom: 30px;
  }
}

.m-40 {
  margin: 9.375vw;
}
@media (min-width: 641px) {
  .m-40 {
    margin: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .m-40 {
    margin: 40px;
  }
}

.mt-40 {
  margin-top: 9.375vw;
}
@media (min-width: 641px) {
  .mt-40 {
    margin-top: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .mt-40 {
    margin-top: 40px;
  }
}

.mb-40 {
  margin-bottom: 9.375vw;
}
@media (min-width: 641px) {
  .mb-40 {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .mb-40 {
    margin-bottom: 40px;
  }
}

.ml-40 {
  margin-left: 9.375vw;
}
@media (min-width: 641px) {
  .ml-40 {
    margin-left: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .ml-40 {
    margin-left: 40px;
  }
}

.mr-40 {
  margin-right: 9.375vw;
}
@media (min-width: 641px) {
  .mr-40 {
    margin-right: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .mr-40 {
    margin-right: 40px;
  }
}

.mx-40 {
  margin-left: 9.375vw;
}
@media (min-width: 641px) {
  .mx-40 {
    margin-left: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .mx-40 {
    margin-left: 40px;
  }
}
.mx-40 {
  margin-right: 9.375vw;
}
@media (min-width: 641px) {
  .mx-40 {
    margin-right: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .mx-40 {
    margin-right: 40px;
  }
}

.my-40 {
  margin-top: 9.375vw;
}
@media (min-width: 641px) {
  .my-40 {
    margin-top: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .my-40 {
    margin-top: 40px;
  }
}
.my-40 {
  margin-bottom: 9.375vw;
}
@media (min-width: 641px) {
  .my-40 {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .my-40 {
    margin-bottom: 40px;
  }
}

.p-40 {
  padding: 9.375vw;
}
@media (min-width: 641px) {
  .p-40 {
    padding: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .p-40 {
    padding: 40px;
  }
}

.pt-40 {
  padding-top: 9.375vw;
}
@media (min-width: 641px) {
  .pt-40 {
    padding-top: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .pt-40 {
    padding-top: 40px;
  }
}

.pb-40 {
  padding-bottom: 9.375vw;
}
@media (min-width: 641px) {
  .pb-40 {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .pb-40 {
    padding-bottom: 40px;
  }
}

.pl-40 {
  padding-left: 9.375vw;
}
@media (min-width: 641px) {
  .pl-40 {
    padding-left: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .pl-40 {
    padding-left: 40px;
  }
}

.pr-40 {
  padding-right: 9.375vw;
}
@media (min-width: 641px) {
  .pr-40 {
    padding-right: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .pr-40 {
    padding-right: 40px;
  }
}

.px-40 {
  padding-left: 9.375vw;
}
@media (min-width: 641px) {
  .px-40 {
    padding-left: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .px-40 {
    padding-left: 40px;
  }
}
.px-40 {
  padding-right: 9.375vw;
}
@media (min-width: 641px) {
  .px-40 {
    padding-right: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .px-40 {
    padding-right: 40px;
  }
}

.py-40 {
  padding-top: 9.375vw;
}
@media (min-width: 641px) {
  .py-40 {
    padding-top: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .py-40 {
    padding-top: 40px;
  }
}
.py-40 {
  padding-bottom: 9.375vw;
}
@media (min-width: 641px) {
  .py-40 {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .py-40 {
    padding-bottom: 40px;
  }
}

.m-50 {
  margin: 11.7188vw;
}
@media (min-width: 641px) {
  .m-50 {
    margin: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .m-50 {
    margin: 50px;
  }
}

.mt-50 {
  margin-top: 11.7188vw;
}
@media (min-width: 641px) {
  .mt-50 {
    margin-top: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .mt-50 {
    margin-top: 50px;
  }
}

.mb-50 {
  margin-bottom: 11.7188vw;
}
@media (min-width: 641px) {
  .mb-50 {
    margin-bottom: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .mb-50 {
    margin-bottom: 50px;
  }
}

.ml-50 {
  margin-left: 11.7188vw;
}
@media (min-width: 641px) {
  .ml-50 {
    margin-left: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .ml-50 {
    margin-left: 50px;
  }
}

.mr-50 {
  margin-right: 11.7188vw;
}
@media (min-width: 641px) {
  .mr-50 {
    margin-right: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .mr-50 {
    margin-right: 50px;
  }
}

.mx-50 {
  margin-left: 11.7188vw;
}
@media (min-width: 641px) {
  .mx-50 {
    margin-left: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .mx-50 {
    margin-left: 50px;
  }
}
.mx-50 {
  margin-right: 11.7188vw;
}
@media (min-width: 641px) {
  .mx-50 {
    margin-right: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .mx-50 {
    margin-right: 50px;
  }
}

.my-50 {
  margin-top: 11.7188vw;
}
@media (min-width: 641px) {
  .my-50 {
    margin-top: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .my-50 {
    margin-top: 50px;
  }
}
.my-50 {
  margin-bottom: 11.7188vw;
}
@media (min-width: 641px) {
  .my-50 {
    margin-bottom: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .my-50 {
    margin-bottom: 50px;
  }
}

.p-50 {
  padding: 11.7188vw;
}
@media (min-width: 641px) {
  .p-50 {
    padding: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .p-50 {
    padding: 50px;
  }
}

.pt-50 {
  padding-top: 11.7188vw;
}
@media (min-width: 641px) {
  .pt-50 {
    padding-top: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .pt-50 {
    padding-top: 50px;
  }
}

.pb-50 {
  padding-bottom: 11.7188vw;
}
@media (min-width: 641px) {
  .pb-50 {
    padding-bottom: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .pb-50 {
    padding-bottom: 50px;
  }
}

.pl-50 {
  padding-left: 11.7188vw;
}
@media (min-width: 641px) {
  .pl-50 {
    padding-left: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .pl-50 {
    padding-left: 50px;
  }
}

.pr-50 {
  padding-right: 11.7188vw;
}
@media (min-width: 641px) {
  .pr-50 {
    padding-right: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .pr-50 {
    padding-right: 50px;
  }
}

.px-50 {
  padding-left: 11.7188vw;
}
@media (min-width: 641px) {
  .px-50 {
    padding-left: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .px-50 {
    padding-left: 50px;
  }
}
.px-50 {
  padding-right: 11.7188vw;
}
@media (min-width: 641px) {
  .px-50 {
    padding-right: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .px-50 {
    padding-right: 50px;
  }
}

.py-50 {
  padding-top: 11.7188vw;
}
@media (min-width: 641px) {
  .py-50 {
    padding-top: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .py-50 {
    padding-top: 50px;
  }
}
.py-50 {
  padding-bottom: 11.7188vw;
}
@media (min-width: 641px) {
  .py-50 {
    padding-bottom: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .py-50 {
    padding-bottom: 50px;
  }
}

.m-60 {
  margin: 14.0625vw;
}
@media (min-width: 641px) {
  .m-60 {
    margin: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .m-60 {
    margin: 60px;
  }
}

.mt-60 {
  margin-top: 14.0625vw;
}
@media (min-width: 641px) {
  .mt-60 {
    margin-top: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .mt-60 {
    margin-top: 60px;
  }
}

.mb-60 {
  margin-bottom: 14.0625vw;
}
@media (min-width: 641px) {
  .mb-60 {
    margin-bottom: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .mb-60 {
    margin-bottom: 60px;
  }
}

.ml-60 {
  margin-left: 14.0625vw;
}
@media (min-width: 641px) {
  .ml-60 {
    margin-left: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .ml-60 {
    margin-left: 60px;
  }
}

.mr-60 {
  margin-right: 14.0625vw;
}
@media (min-width: 641px) {
  .mr-60 {
    margin-right: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .mr-60 {
    margin-right: 60px;
  }
}

.mx-60 {
  margin-left: 14.0625vw;
}
@media (min-width: 641px) {
  .mx-60 {
    margin-left: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .mx-60 {
    margin-left: 60px;
  }
}
.mx-60 {
  margin-right: 14.0625vw;
}
@media (min-width: 641px) {
  .mx-60 {
    margin-right: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .mx-60 {
    margin-right: 60px;
  }
}

.my-60 {
  margin-top: 14.0625vw;
}
@media (min-width: 641px) {
  .my-60 {
    margin-top: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .my-60 {
    margin-top: 60px;
  }
}
.my-60 {
  margin-bottom: 14.0625vw;
}
@media (min-width: 641px) {
  .my-60 {
    margin-bottom: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .my-60 {
    margin-bottom: 60px;
  }
}

.p-60 {
  padding: 14.0625vw;
}
@media (min-width: 641px) {
  .p-60 {
    padding: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .p-60 {
    padding: 60px;
  }
}

.pt-60 {
  padding-top: 14.0625vw;
}
@media (min-width: 641px) {
  .pt-60 {
    padding-top: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .pt-60 {
    padding-top: 60px;
  }
}

.pb-60 {
  padding-bottom: 14.0625vw;
}
@media (min-width: 641px) {
  .pb-60 {
    padding-bottom: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .pb-60 {
    padding-bottom: 60px;
  }
}

.pl-60 {
  padding-left: 14.0625vw;
}
@media (min-width: 641px) {
  .pl-60 {
    padding-left: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .pl-60 {
    padding-left: 60px;
  }
}

.pr-60 {
  padding-right: 14.0625vw;
}
@media (min-width: 641px) {
  .pr-60 {
    padding-right: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .pr-60 {
    padding-right: 60px;
  }
}

.px-60 {
  padding-left: 14.0625vw;
}
@media (min-width: 641px) {
  .px-60 {
    padding-left: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .px-60 {
    padding-left: 60px;
  }
}
.px-60 {
  padding-right: 14.0625vw;
}
@media (min-width: 641px) {
  .px-60 {
    padding-right: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .px-60 {
    padding-right: 60px;
  }
}

.py-60 {
  padding-top: 14.0625vw;
}
@media (min-width: 641px) {
  .py-60 {
    padding-top: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .py-60 {
    padding-top: 60px;
  }
}
.py-60 {
  padding-bottom: 14.0625vw;
}
@media (min-width: 641px) {
  .py-60 {
    padding-bottom: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .py-60 {
    padding-bottom: 60px;
  }
}

.m-80 {
  margin: 18.75vw;
}
@media (min-width: 641px) {
  .m-80 {
    margin: 5rem;
  }
}
@media (min-width: 1200px) {
  .m-80 {
    margin: 80px;
  }
}

.mt-80 {
  margin-top: 18.75vw;
}
@media (min-width: 641px) {
  .mt-80 {
    margin-top: 5rem;
  }
}
@media (min-width: 1200px) {
  .mt-80 {
    margin-top: 80px;
  }
}

.mb-80 {
  margin-bottom: 18.75vw;
}
@media (min-width: 641px) {
  .mb-80 {
    margin-bottom: 5rem;
  }
}
@media (min-width: 1200px) {
  .mb-80 {
    margin-bottom: 80px;
  }
}

.ml-80 {
  margin-left: 18.75vw;
}
@media (min-width: 641px) {
  .ml-80 {
    margin-left: 5rem;
  }
}
@media (min-width: 1200px) {
  .ml-80 {
    margin-left: 80px;
  }
}

.mr-80 {
  margin-right: 18.75vw;
}
@media (min-width: 641px) {
  .mr-80 {
    margin-right: 5rem;
  }
}
@media (min-width: 1200px) {
  .mr-80 {
    margin-right: 80px;
  }
}

.mx-80 {
  margin-left: 18.75vw;
}
@media (min-width: 641px) {
  .mx-80 {
    margin-left: 5rem;
  }
}
@media (min-width: 1200px) {
  .mx-80 {
    margin-left: 80px;
  }
}
.mx-80 {
  margin-right: 18.75vw;
}
@media (min-width: 641px) {
  .mx-80 {
    margin-right: 5rem;
  }
}
@media (min-width: 1200px) {
  .mx-80 {
    margin-right: 80px;
  }
}

.my-80 {
  margin-top: 18.75vw;
}
@media (min-width: 641px) {
  .my-80 {
    margin-top: 5rem;
  }
}
@media (min-width: 1200px) {
  .my-80 {
    margin-top: 80px;
  }
}
.my-80 {
  margin-bottom: 18.75vw;
}
@media (min-width: 641px) {
  .my-80 {
    margin-bottom: 5rem;
  }
}
@media (min-width: 1200px) {
  .my-80 {
    margin-bottom: 80px;
  }
}

.p-80 {
  padding: 18.75vw;
}
@media (min-width: 641px) {
  .p-80 {
    padding: 5rem;
  }
}
@media (min-width: 1200px) {
  .p-80 {
    padding: 80px;
  }
}

.pt-80 {
  padding-top: 18.75vw;
}
@media (min-width: 641px) {
  .pt-80 {
    padding-top: 5rem;
  }
}
@media (min-width: 1200px) {
  .pt-80 {
    padding-top: 80px;
  }
}

.pb-80 {
  padding-bottom: 18.75vw;
}
@media (min-width: 641px) {
  .pb-80 {
    padding-bottom: 5rem;
  }
}
@media (min-width: 1200px) {
  .pb-80 {
    padding-bottom: 80px;
  }
}

.pl-80 {
  padding-left: 18.75vw;
}
@media (min-width: 641px) {
  .pl-80 {
    padding-left: 5rem;
  }
}
@media (min-width: 1200px) {
  .pl-80 {
    padding-left: 80px;
  }
}

.pr-80 {
  padding-right: 18.75vw;
}
@media (min-width: 641px) {
  .pr-80 {
    padding-right: 5rem;
  }
}
@media (min-width: 1200px) {
  .pr-80 {
    padding-right: 80px;
  }
}

.px-80 {
  padding-left: 18.75vw;
}
@media (min-width: 641px) {
  .px-80 {
    padding-left: 5rem;
  }
}
@media (min-width: 1200px) {
  .px-80 {
    padding-left: 80px;
  }
}
.px-80 {
  padding-right: 18.75vw;
}
@media (min-width: 641px) {
  .px-80 {
    padding-right: 5rem;
  }
}
@media (min-width: 1200px) {
  .px-80 {
    padding-right: 80px;
  }
}

.py-80 {
  padding-top: 18.75vw;
}
@media (min-width: 641px) {
  .py-80 {
    padding-top: 5rem;
  }
}
@media (min-width: 1200px) {
  .py-80 {
    padding-top: 80px;
  }
}
.py-80 {
  padding-bottom: 18.75vw;
}
@media (min-width: 641px) {
  .py-80 {
    padding-bottom: 5rem;
  }
}
@media (min-width: 1200px) {
  .py-80 {
    padding-bottom: 80px;
  }
}

.m-100 {
  margin: 23.4375vw;
}
@media (min-width: 641px) {
  .m-100 {
    margin: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .m-100 {
    margin: 100px;
  }
}

.mt-100 {
  margin-top: 23.4375vw;
}
@media (min-width: 641px) {
  .mt-100 {
    margin-top: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .mt-100 {
    margin-top: 100px;
  }
}

.mb-100 {
  margin-bottom: 23.4375vw;
}
@media (min-width: 641px) {
  .mb-100 {
    margin-bottom: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .mb-100 {
    margin-bottom: 100px;
  }
}

.ml-100 {
  margin-left: 23.4375vw;
}
@media (min-width: 641px) {
  .ml-100 {
    margin-left: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .ml-100 {
    margin-left: 100px;
  }
}

.mr-100 {
  margin-right: 23.4375vw;
}
@media (min-width: 641px) {
  .mr-100 {
    margin-right: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .mr-100 {
    margin-right: 100px;
  }
}

.mx-100 {
  margin-left: 23.4375vw;
}
@media (min-width: 641px) {
  .mx-100 {
    margin-left: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .mx-100 {
    margin-left: 100px;
  }
}
.mx-100 {
  margin-right: 23.4375vw;
}
@media (min-width: 641px) {
  .mx-100 {
    margin-right: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .mx-100 {
    margin-right: 100px;
  }
}

.my-100 {
  margin-top: 23.4375vw;
}
@media (min-width: 641px) {
  .my-100 {
    margin-top: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .my-100 {
    margin-top: 100px;
  }
}
.my-100 {
  margin-bottom: 23.4375vw;
}
@media (min-width: 641px) {
  .my-100 {
    margin-bottom: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .my-100 {
    margin-bottom: 100px;
  }
}

.p-100 {
  padding: 23.4375vw;
}
@media (min-width: 641px) {
  .p-100 {
    padding: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .p-100 {
    padding: 100px;
  }
}

.pt-100 {
  padding-top: 23.4375vw;
}
@media (min-width: 641px) {
  .pt-100 {
    padding-top: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .pt-100 {
    padding-top: 100px;
  }
}

.pb-100 {
  padding-bottom: 23.4375vw;
}
@media (min-width: 641px) {
  .pb-100 {
    padding-bottom: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .pb-100 {
    padding-bottom: 100px;
  }
}

.pl-100 {
  padding-left: 23.4375vw;
}
@media (min-width: 641px) {
  .pl-100 {
    padding-left: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .pl-100 {
    padding-left: 100px;
  }
}

.pr-100 {
  padding-right: 23.4375vw;
}
@media (min-width: 641px) {
  .pr-100 {
    padding-right: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .pr-100 {
    padding-right: 100px;
  }
}

.px-100 {
  padding-left: 23.4375vw;
}
@media (min-width: 641px) {
  .px-100 {
    padding-left: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .px-100 {
    padding-left: 100px;
  }
}
.px-100 {
  padding-right: 23.4375vw;
}
@media (min-width: 641px) {
  .px-100 {
    padding-right: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .px-100 {
    padding-right: 100px;
  }
}

.py-100 {
  padding-top: 23.4375vw;
}
@media (min-width: 641px) {
  .py-100 {
    padding-top: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .py-100 {
    padding-top: 100px;
  }
}
.py-100 {
  padding-bottom: 23.4375vw;
}
@media (min-width: 641px) {
  .py-100 {
    padding-bottom: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .py-100 {
    padding-bottom: 100px;
  }
}

.text-10 {
  font-size: 2.3438vw;
}
@media (min-width: 641px) {
  .text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .text-10 {
    font-size: 10px;
  }
}

.text-11 {
  font-size: 2.5781vw;
}
@media (min-width: 641px) {
  .text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 1200px) {
  .text-11 {
    font-size: 11px;
  }
}

.text-12 {
  font-size: 2.8125vw;
}
@media (min-width: 641px) {
  .text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .text-12 {
    font-size: 12px;
  }
}

.text-13 {
  font-size: 3.0469vw;
}
@media (min-width: 641px) {
  .text-13 {
    font-size: 0.8125rem;
  }
}
@media (min-width: 1200px) {
  .text-13 {
    font-size: 13px;
  }
}

.text-14 {
  font-size: 3.2813vw;
}
@media (min-width: 641px) {
  .text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .text-14 {
    font-size: 14px;
  }
}

.text-15 {
  font-size: 3.5156vw;
}
@media (min-width: 641px) {
  .text-15 {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .text-15 {
    font-size: 15px;
  }
}

.text-16 {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .text-16 {
    font-size: 16px;
  }
}

.text-18 {
  font-size: 4.2188vw;
}
@media (min-width: 641px) {
  .text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .text-18 {
    font-size: 18px;
  }
}

.text-20 {
  font-size: 4.6875vw;
}
@media (min-width: 641px) {
  .text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .text-20 {
    font-size: 20px;
  }
}

.text-22 {
  font-size: 5.1563vw;
}
@media (min-width: 641px) {
  .text-22 {
    font-size: 1.375rem;
  }
}
@media (min-width: 1200px) {
  .text-22 {
    font-size: 22px;
  }
}

.text-24 {
  font-size: 5.625vw;
}
@media (min-width: 641px) {
  .text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .text-24 {
    font-size: 24px;
  }
}

.text-26 {
  font-size: 6.0938vw;
}
@media (min-width: 641px) {
  .text-26 {
    font-size: 1.625rem;
  }
}
@media (min-width: 1200px) {
  .text-26 {
    font-size: 26px;
  }
}

.text-28 {
  font-size: 6.5625vw;
}
@media (min-width: 641px) {
  .text-28 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1200px) {
  .text-28 {
    font-size: 28px;
  }
}

.text-30 {
  font-size: 7.0313vw;
}
@media (min-width: 641px) {
  .text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .text-30 {
    font-size: 30px;
  }
}

.text-32 {
  font-size: 7.5vw;
}
@media (min-width: 641px) {
  .text-32 {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .text-32 {
    font-size: 32px;
  }
}

.text-36 {
  font-size: 8.4375vw;
}
@media (min-width: 641px) {
  .text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1200px) {
  .text-36 {
    font-size: 36px;
  }
}

.text-40 {
  font-size: 9.375vw;
}
@media (min-width: 641px) {
  .text-40 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .text-40 {
    font-size: 40px;
  }
}

.text-48 {
  font-size: 11.25vw;
}
@media (min-width: 641px) {
  .text-48 {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  .text-48 {
    font-size: 48px;
  }
}

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

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

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

.font-100 {
  font-weight: 100;
}

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

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

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

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

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

.text-main {
  color: var(--text-main, #000);
}

.text-sub {
  color: var(--text-sub, #666);
}

.text-gray {
  color: var(--text-gray, #999);
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

.self-center {
  align-self: center;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-none {
  flex: none;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.w-auto {
  width: auto;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-none {
  display: none;
}

.text-cut1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.w-5p {
  width: 5%;
}

.w-10p {
  width: 10%;
}

.w-15p {
  width: 15%;
}

.w-20p {
  width: 20%;
}

.w-25p {
  width: 25%;
}

.w-30p {
  width: 30%;
}

.w-33p {
  width: 33%;
}

.w-40p {
  width: 40%;
}

.w-50p {
  width: 50%;
}

.w-60p {
  width: 60%;
}

.w-70p {
  width: 70%;
}

.w-75p {
  width: 75%;
}

.w-80p {
  width: 80%;
}

.w-90p {
  width: 90%;
}

.w-100p {
  width: 100%;
}

/*
================================================================================
   [Utility Classes 사용 가이드]
   * 핵심 규칙: 클래스명에 적힌 숫자는 "PC 기준(1배수) 픽셀"입니다.
   * 작동 원리: 내부적으로 3배수로 변환되어 모바일(vw/rem)에 자동 적용됩니다.
================================================================================

   1. Spacing (여백)
   -----------------------------------------------------------------------------
   * Naming: {property}{side}-{size}
   * Property: m (margin), p (padding)
   * Side: t (top), b (bottom), l (left), r (right), x (left+right), y (top+bottom), 생략 (all)
   * Size: 0, 4, 5, 8, 10, 12, 15, 16, 20, 24, 30, 40, 50, 60, 80, 100

   [예시]
   .mt-20       => margin-top: 20px (PC) / 60px (Mobile)
   .px-10       => padding-left/right: 10px (PC) / 30px (Mobile)
   .p-30        => padding: 30px (PC) / 90px (Mobile)
   .mb-0        => margin-bottom: 0


   2. Typography (텍스트)
   -----------------------------------------------------------------------------
   * Naming: .text-{size}
   * Size: 10 ~ 48 (PC 기준 px)

   [예시]
   .text-16     => font-size: 16px (PC) / 48px (Mobile)
   .text-24     => font-size: 24px (PC) / 72px (Mobile)

   * 정렬: .text-left, .text-center, .text-right
   * 굵기: .font-regular (400), .font-medium (500), .font-bold (700)
   * 색상: .text-main (#000), .text-sub (#666), .text-gray (#999)
   * 기타: .text-truncate (말줄임표)


   3. Flexbox (레이아웃 배치)
   -----------------------------------------------------------------------------
   * 컨테이너: .d-flex, .d-inline-flex
   * 방향: .flex-row (기본), .flex-col (세로)
   * 줄바꿈: .flex-wrap (줄바꿈 허용), .flex-nowrap

   * 가로 정렬 (Justify):
     .justify-start (왼쪽), .justify-center (중앙), .justify-end (오른쪽)
     .justify-between (양끝), .justify-around (균등)

   * 세로 정렬 (Align):
     .items-start (위), .items-center (중앙), .items-end (아래), .items-stretch (채움)

   [자주 쓰는 조합 예시]
   <div class="d-flex justify-between items-center"> ... </div>

   <div class="d-flex justify-center items-center"> ... </div>


   4. 기타 유틸리티
   -----------------------------------------------------------------------------
   .w-full      => width: 100%
   .d-none      => display: none
   .d-block     => display: block
   .sr-only     => 스크린 리더 전용 (화면 숨김)

================================================================================
*/
/* =================================================================
   [0] Variables & Icons (CSS Variables)
   ================================================================= */
:root {
  --icon-radio-default: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='9' stroke='%23C4C4C4' stroke-width='2'/%3E%3C/svg%3E");
  --icon-radio-checked: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='7.5' stroke='%234cbced' stroke-width='5'/%3E%3C/svg%3E");
  --icon-radio-disabled: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='9' fill='%23eeeeee' stroke='%23C4C4C4' stroke-width='2'/%3E%3C/svg%3E");
  --icon-checkbox-default: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Crect x='1' y='1' width='18' height='18' rx='3' stroke='%23C4C4C4' stroke-width='2'/%3E%3C/svg%3E");
  --icon-checkbox-checked: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Crect x='0.9' y='0.9' width='18.2' height='18.2' rx='3.1' fill='%234cbced' stroke='%234cbced' stroke-width='1.8'/%3E%3Cpath d='M6.2002 10.0249L9.29073 12.6499L14.2002 7.6499' stroke='white' stroke-width='2.7' stroke-linecap='square'/%3E%3C/svg%3E");
  --icon-checkbox-disabled: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Crect x='1' y='1' width='18' height='18' rx='3' fill='%23eeeeee' stroke='%23C4C4C4' stroke-width='2'/%3E%3C/svg%3E");
}

/* =================================================================
   [1] Form Row Layout (Universal Container)
   ================================================================= */
.form-row {
  display: flex;
  flex-direction: column;
  position: relative;
}
.form-row {
  gap: 3.75vw;
}
@media (min-width: 641px) {
  .form-row {
    gap: 1rem;
  }
}
@media (min-width: 1200px) {
  .form-row {
    gap: 16px;
  }
}
.form-row {
  margin-bottom: 12.5vw;
}
@media (min-width: 641px) {
  .form-row {
    margin-bottom: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .form-row {
    margin-bottom: 53px;
  }
}
@media screen and (min-width: 1200px) {
  .form-row {
    gap: 16px;
    margin-bottom: 48px;
  }
}
.form-row > label,
.form-row > .label {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--text-main);
  word-break: keep-all;
}
.form-row > label,
.form-row > .label {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .form-row > label,
  .form-row > .label {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .form-row > label,
  .form-row > .label {
    font-size: 16px;
  }
}
.form-row > label,
.form-row > .label {
  min-height: 4.6875vw;
}
@media (min-width: 641px) {
  .form-row > label,
  .form-row > .label {
    min-height: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .form-row > label,
  .form-row > .label {
    min-height: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .form-row > label,
  .form-row > .label {
    font-size: 20px;
  }
}
.form-row > label span,
.form-row > .label span {
  font: inherit;
  color: var(--text-sub);
}
.form-row > label span.required,
.form-row > .label span.required {
  color: var(--color-error);
}
.form-row.required > label::after, .form-row.required > .label::after {
  content: "*";
  color: var(--color-error);
  margin-left: 4px;
  display: inline-block;
  font-weight: bold;
}
.form-row > input, .form-row > select, .form-row > textarea,
.form-row > .dropdown-box, .form-row > .multi-dropdown-box,
.form-row > .group-items, .form-row > .datepicker-box, .form-row > .btn-box, .form-row > .input-group,
.form-row > .file-box, .form-row > .multi-file-box {
  width: 100%;
}
.form-row.type-row {
  align-items: flex-start;
}
.form-row.type-row div.error {
  width: 100%;
}
@media (min-width: 641px) {
  .form-row.type-row {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .form-row.type-row > label,
  .form-row.type-row > .label {
    flex: 0 0 auto;
    width: auto;
    margin-bottom: 0;
  }
  .form-row.type-row > label,
  .form-row.type-row > .label {
    min-width: 14.0625vw;
  }
}
@media (min-width: 641px) and (min-width: 641px) {
  .form-row.type-row > label,
  .form-row.type-row > .label {
    min-width: 3.75rem;
  }
}
@media (min-width: 641px) and (min-width: 1200px) {
  .form-row.type-row > label,
  .form-row.type-row > .label {
    min-width: 60px;
  }
}
@media (min-width: 641px) {
  .form-row.type-row > label,
  .form-row.type-row > .label {
    min-height: 15vw;
  }
}
@media (min-width: 641px) and (min-width: 641px) {
  .form-row.type-row > label,
  .form-row.type-row > .label {
    min-height: 4rem;
  }
}
@media (min-width: 641px) and (min-width: 1200px) {
  .form-row.type-row > label,
  .form-row.type-row > .label {
    min-height: 64px;
  }
}
@media (min-width: 641px) {
  .form-row.type-row:has(.group-items) > label, .form-row.type-row:has(.group-items) > .label {
    min-height: 7.0313vw;
  }
}
@media (min-width: 641px) and (min-width: 641px) {
  .form-row.type-row:has(.group-items) > label, .form-row.type-row:has(.group-items) > .label {
    min-height: 1.875rem;
  }
}
@media (min-width: 641px) and (min-width: 1200px) {
  .form-row.type-row:has(.group-items) > label, .form-row.type-row:has(.group-items) > .label {
    min-height: 30px;
  }
}
@media (min-width: 641px) {
  .form-row.type-row.check .group-items, .form-row.type-row.radio .group-items {
    min-height: 7.0313vw;
  }
}
@media (min-width: 641px) and (min-width: 641px) {
  .form-row.type-row.check .group-items, .form-row.type-row.radio .group-items {
    min-height: 1.875rem;
  }
}
@media (min-width: 641px) and (min-width: 1200px) {
  .form-row.type-row.check .group-items, .form-row.type-row.radio .group-items {
    min-height: 30px;
  }
}
@media (min-width: 641px) {
  .form-row.type-row > input, .form-row.type-row > select, .form-row.type-row > textarea,
  .form-row.type-row > .dropdown-box, .form-row.type-row > .multi-dropdown-box,
  .form-row.type-row > .group-items, .form-row.type-row > .datepicker-box, .form-row.type-row > .btn-box, .form-row.type-row > .input-group,
  .form-row.type-row > .file-box, .form-row.type-row > .multi-file-box {
    flex: 1;
    width: 100%;
    min-width: 0;
  }
  .form-row.type-row div.error {
    flex-basis: 100%;
    width: 100%;
    padding-left: 0;
  }
  .form-row.type-row div.error {
    margin-left: 17.8125vw;
  }
}
@media (min-width: 641px) and (min-width: 641px) {
  .form-row.type-row div.error {
    margin-left: 4.75rem;
  }
}
@media (min-width: 641px) and (min-width: 1200px) {
  .form-row.type-row div.error {
    margin-left: 76px;
  }
}
.form-row.type-col {
  align-items: flex-start;
}
.form-row.type-col > label, .form-row.type-col > .label {
  width: 100%;
  flex: none;
  margin-bottom: 0;
}
.form-row.type-col > label, .form-row.type-col > .label {
  min-height: 4.6875vw;
}
@media (min-width: 641px) {
  .form-row.type-col > label, .form-row.type-col > .label {
    min-height: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .form-row.type-col > label, .form-row.type-col > .label {
    min-height: 20px;
  }
}
.form-row input[type=text],
.form-row input[type=number],
.form-row input[type=tel],
.form-row input[type=email],
.form-row input[type=password],
.form-row select, .form-row .dropdown-box > button {
  display: inline-block;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  color: var(--gray8);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.form-row input[type=text],
.form-row input[type=number],
.form-row input[type=tel],
.form-row input[type=email],
.form-row input[type=password],
.form-row select, .form-row .dropdown-box > button {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .form-row input[type=text],
  .form-row input[type=number],
  .form-row input[type=tel],
  .form-row input[type=email],
  .form-row input[type=password],
  .form-row select, .form-row .dropdown-box > button {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .form-row input[type=text],
  .form-row input[type=number],
  .form-row input[type=tel],
  .form-row input[type=email],
  .form-row input[type=password],
  .form-row select, .form-row .dropdown-box > button {
    font-size: 16px;
  }
}
.form-row input[type=text],
.form-row input[type=number],
.form-row input[type=tel],
.form-row input[type=email],
.form-row input[type=password],
.form-row select, .form-row .dropdown-box > button {
  border-radius: 12.5vw;
}
@media (min-width: 641px) {
  .form-row input[type=text],
  .form-row input[type=number],
  .form-row input[type=tel],
  .form-row input[type=email],
  .form-row input[type=password],
  .form-row select, .form-row .dropdown-box > button {
    border-radius: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .form-row input[type=text],
  .form-row input[type=number],
  .form-row input[type=tel],
  .form-row input[type=email],
  .form-row input[type=password],
  .form-row select, .form-row .dropdown-box > button {
    border-radius: 53px;
  }
}
.form-row input[type=text],
.form-row input[type=number],
.form-row input[type=tel],
.form-row input[type=email],
.form-row input[type=password],
.form-row select, .form-row .dropdown-box > button {
  height: 12.5vw;
}
@media (min-width: 641px) {
  .form-row input[type=text],
  .form-row input[type=number],
  .form-row input[type=tel],
  .form-row input[type=email],
  .form-row input[type=password],
  .form-row select, .form-row .dropdown-box > button {
    height: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .form-row input[type=text],
  .form-row input[type=number],
  .form-row input[type=tel],
  .form-row input[type=email],
  .form-row input[type=password],
  .form-row select, .form-row .dropdown-box > button {
    height: 53px;
  }
}
.form-row input[type=text],
.form-row input[type=number],
.form-row input[type=tel],
.form-row input[type=email],
.form-row input[type=password],
.form-row select, .form-row .dropdown-box > button {
  padding: 0 3.75vw 0 5.3125vw;
}
@media (min-width: 641px) {
  .form-row input[type=text],
  .form-row input[type=number],
  .form-row input[type=tel],
  .form-row input[type=email],
  .form-row input[type=password],
  .form-row select, .form-row .dropdown-box > button {
    padding: 0 1rem 0 1.4167rem;
  }
}
@media (min-width: 1200px) {
  .form-row input[type=text],
  .form-row input[type=number],
  .form-row input[type=tel],
  .form-row input[type=email],
  .form-row input[type=password],
  .form-row select, .form-row .dropdown-box > button {
    padding: 0 16px 0 23px;
  }
}
@media screen and (min-width: 641px) {
  .form-row input[type=text],
  .form-row input[type=number],
  .form-row input[type=tel],
  .form-row input[type=email],
  .form-row input[type=password],
  .form-row select, .form-row .dropdown-box > button {
    height: 64px;
  }
}
.form-row input[type=text]::-moz-placeholder, .form-row input[type=number]::-moz-placeholder, .form-row input[type=tel]::-moz-placeholder, .form-row input[type=email]::-moz-placeholder, .form-row input[type=password]::-moz-placeholder, .form-row select::-moz-placeholder, .form-row .dropdown-box > button::-moz-placeholder {
  font-weight: 400;
  color: var(--text-muted);
  opacity: 1;
}
.form-row input[type=text]::placeholder,
.form-row input[type=number]::placeholder,
.form-row input[type=tel]::placeholder,
.form-row input[type=email]::placeholder,
.form-row input[type=password]::placeholder,
.form-row select::placeholder, .form-row .dropdown-box > button::placeholder {
  font-weight: 400;
  color: var(--text-muted);
  opacity: 1;
}
.form-row input[type=text]::-moz-placeholder, .form-row input[type=number]::-moz-placeholder, .form-row input[type=tel]::-moz-placeholder, .form-row input[type=email]::-moz-placeholder, .form-row input[type=password]::-moz-placeholder, .form-row select::-moz-placeholder, .form-row .dropdown-box > button::-moz-placeholder {
  font-size: 3.75vw;
}
.form-row input[type=text]::placeholder,
.form-row input[type=number]::placeholder,
.form-row input[type=tel]::placeholder,
.form-row input[type=email]::placeholder,
.form-row input[type=password]::placeholder,
.form-row select::placeholder, .form-row .dropdown-box > button::placeholder {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .form-row input[type=text]::-moz-placeholder, .form-row input[type=number]::-moz-placeholder, .form-row input[type=tel]::-moz-placeholder, .form-row input[type=email]::-moz-placeholder, .form-row input[type=password]::-moz-placeholder, .form-row select::-moz-placeholder, .form-row .dropdown-box > button::-moz-placeholder {
    font-size: 1rem;
  }
  .form-row input[type=text]::placeholder,
  .form-row input[type=number]::placeholder,
  .form-row input[type=tel]::placeholder,
  .form-row input[type=email]::placeholder,
  .form-row input[type=password]::placeholder,
  .form-row select::placeholder, .form-row .dropdown-box > button::placeholder {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .form-row input[type=text]::-moz-placeholder, .form-row input[type=number]::-moz-placeholder, .form-row input[type=tel]::-moz-placeholder, .form-row input[type=email]::-moz-placeholder, .form-row input[type=password]::-moz-placeholder, .form-row select::-moz-placeholder, .form-row .dropdown-box > button::-moz-placeholder {
    font-size: 16px;
  }
  .form-row input[type=text]::placeholder,
  .form-row input[type=number]::placeholder,
  .form-row input[type=tel]::placeholder,
  .form-row input[type=email]::placeholder,
  .form-row input[type=password]::placeholder,
  .form-row select::placeholder, .form-row .dropdown-box > button::placeholder {
    font-size: 16px;
  }
}
.form-row input[type=text]:focus,
.form-row input[type=number]:focus,
.form-row input[type=tel]:focus,
.form-row input[type=email]:focus,
.form-row input[type=password]:focus,
.form-row select:focus, .form-row .dropdown-box > button:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(76, 188, 237, 0);
}
.form-row input[type=text]:disabled,
.form-row input[type=number]:disabled,
.form-row input[type=tel]:disabled,
.form-row input[type=email]:disabled,
.form-row input[type=password]:disabled,
.form-row select:disabled, .form-row .dropdown-box > button:disabled {
  background: var(--line-light);
  border-color: var(--line-light);
  color: var(--text-muted);
  cursor: not-allowed;
}
.form-row input[type=text]:disabled::-moz-placeholder, .form-row input[type=number]:disabled::-moz-placeholder, .form-row input[type=tel]:disabled::-moz-placeholder, .form-row input[type=email]:disabled::-moz-placeholder, .form-row input[type=password]:disabled::-moz-placeholder, .form-row select:disabled::-moz-placeholder, .form-row .dropdown-box > button:disabled::-moz-placeholder {
  color: var(--text-muted);
}
.form-row input[type=text]:disabled::placeholder,
.form-row input[type=number]:disabled::placeholder,
.form-row input[type=tel]:disabled::placeholder,
.form-row input[type=email]:disabled::placeholder,
.form-row input[type=password]:disabled::placeholder,
.form-row select:disabled::placeholder, .form-row .dropdown-box > button:disabled::placeholder {
  color: var(--text-muted);
}
.form-row input[type=text]:not(.dropdown-box > button):-moz-read-only, .form-row input[type=number]:not(.dropdown-box > button):-moz-read-only, .form-row input[type=tel]:not(.dropdown-box > button):-moz-read-only, .form-row input[type=email]:not(.dropdown-box > button):-moz-read-only, .form-row input[type=password]:not(.dropdown-box > button):-moz-read-only, .form-row select:not(.dropdown-box > button):-moz-read-only, .form-row .dropdown-box > button:not(.dropdown-box > button):-moz-read-only {
  background: var(--line-light);
  border-color: var(--input-border);
  color: var(--text-muted);
  cursor: not-allowed;
}
.form-row input[type=text]:not(.dropdown-box > button):read-only,
.form-row input[type=number]:not(.dropdown-box > button):read-only,
.form-row input[type=tel]:not(.dropdown-box > button):read-only,
.form-row input[type=email]:not(.dropdown-box > button):read-only,
.form-row input[type=password]:not(.dropdown-box > button):read-only,
.form-row select:not(.dropdown-box > button):read-only, .form-row .dropdown-box > button:not(.dropdown-box > button):read-only {
  background: var(--line-light);
  border-color: var(--input-border);
  color: var(--text-muted);
  cursor: not-allowed;
}
.form-row input[type=text]:not(.dropdown-box > button):read-only::-moz-placeholder, .form-row input[type=number]:not(.dropdown-box > button):read-only::-moz-placeholder, .form-row input[type=tel]:not(.dropdown-box > button):read-only::-moz-placeholder, .form-row input[type=email]:not(.dropdown-box > button):read-only::-moz-placeholder, .form-row input[type=password]:not(.dropdown-box > button):read-only::-moz-placeholder, .form-row select:not(.dropdown-box > button):read-only::-moz-placeholder, .form-row .dropdown-box > button:not(.dropdown-box > button):read-only::-moz-placeholder {
  color: var(--text-muted);
}
.form-row input[type=text]:not(.dropdown-box > button):-moz-read-only::placeholder, .form-row input[type=number]:not(.dropdown-box > button):-moz-read-only::placeholder, .form-row input[type=tel]:not(.dropdown-box > button):-moz-read-only::placeholder, .form-row input[type=email]:not(.dropdown-box > button):-moz-read-only::placeholder, .form-row input[type=password]:not(.dropdown-box > button):-moz-read-only::placeholder, .form-row select:not(.dropdown-box > button):-moz-read-only::placeholder, .form-row .dropdown-box > button:not(.dropdown-box > button):-moz-read-only::placeholder {
  color: var(--text-muted);
}
.form-row input[type=text]:not(.dropdown-box > button):read-only::placeholder,
.form-row input[type=number]:not(.dropdown-box > button):read-only::placeholder,
.form-row input[type=tel]:not(.dropdown-box > button):read-only::placeholder,
.form-row input[type=email]:not(.dropdown-box > button):read-only::placeholder,
.form-row input[type=password]:not(.dropdown-box > button):read-only::placeholder,
.form-row select:not(.dropdown-box > button):read-only::placeholder, .form-row .dropdown-box > button:not(.dropdown-box > button):read-only::placeholder {
  color: var(--text-muted);
}
.form-row input[type=text]:not(:-moz-placeholder), .form-row input[type=number]:not(:-moz-placeholder), .form-row input[type=tel]:not(:-moz-placeholder), .form-row input[type=email]:not(:-moz-placeholder), .form-row input[type=password]:not(:-moz-placeholder), .form-row select:not(:-moz-placeholder), .form-row .dropdown-box > button:not(:-moz-placeholder) {
  border-color: #444444;
}
.form-row input[type=text]:not(:placeholder-shown),
.form-row input[type=number]:not(:placeholder-shown),
.form-row input[type=tel]:not(:placeholder-shown),
.form-row input[type=email]:not(:placeholder-shown),
.form-row input[type=password]:not(:placeholder-shown),
.form-row select:not(:placeholder-shown), .form-row .dropdown-box > button:not(:placeholder-shown) {
  border-color: #444444;
}
.form-row input[type=text].error,
.form-row input[type=number].error,
.form-row input[type=tel].error,
.form-row input[type=email].error,
.form-row input[type=password].error,
.form-row select.error, .form-row .dropdown-box > button.error {
  border-color: var(--color-error);
}
.form-row textarea {
  display: block;
  resize: none;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  color: var(--gray8);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.form-row textarea {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .form-row textarea {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .form-row textarea {
    font-size: 16px;
  }
}
.form-row textarea {
  border-radius: 12.5vw;
}
@media (min-width: 641px) {
  .form-row textarea {
    border-radius: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .form-row textarea {
    border-radius: 53px;
  }
}
.form-row textarea {
  padding: 4.6875vw 3.75vw;
}
@media (min-width: 641px) {
  .form-row textarea {
    padding: 1.25rem 1rem;
  }
}
@media (min-width: 1200px) {
  .form-row textarea {
    padding: 20px 16px;
  }
}
.form-row textarea {
  min-height: 23.4375vw;
}
@media (min-width: 641px) {
  .form-row textarea {
    min-height: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .form-row textarea {
    min-height: 100px;
  }
}
.form-row textarea.error {
  border-color: var(--color-error);
}
.form-row textarea::-moz-placeholder {
  font-weight: 400;
  color: var(--text-muted);
  opacity: 1;
}
.form-row textarea::placeholder {
  font-weight: 400;
  color: var(--text-muted);
  opacity: 1;
}
.form-row textarea::-moz-placeholder {
  font-size: 3.75vw;
}
.form-row textarea::placeholder {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .form-row textarea::-moz-placeholder {
    font-size: 1rem;
  }
  .form-row textarea::placeholder {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .form-row textarea::-moz-placeholder {
    font-size: 16px;
  }
  .form-row textarea::placeholder {
    font-size: 16px;
  }
}
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(76, 188, 237, 0);
}
.form-row textarea:disabled {
  background: var(--line-light);
  border-color: var(--line-light);
  color: var(--text-muted);
  cursor: not-allowed;
}
.form-row textarea:disabled::-moz-placeholder {
  color: var(--text-muted);
}
.form-row textarea:disabled::placeholder {
  color: var(--text-muted);
}
.form-row textarea:-moz-read-only {
  background: var(--line-light);
  border-color: var(--input-border);
  color: var(--text-muted);
  cursor: not-allowed;
}
.form-row textarea:read-only {
  background: var(--line-light);
  border-color: var(--input-border);
  color: var(--text-muted);
  cursor: not-allowed;
}
.form-row textarea:read-only::-moz-placeholder {
  color: var(--text-muted);
}
.form-row textarea:-moz-read-only::placeholder {
  color: var(--text-muted);
}
.form-row textarea:read-only::placeholder {
  color: var(--text-muted);
}
.form-row div.error {
  position: relative;
  color: var(--color-error);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.form-row div.error {
  font-size: 3.5938vw;
}
@media (min-width: 641px) {
  .form-row div.error {
    font-size: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  .form-row div.error {
    font-size: 15px;
  }
}
.form-row div.error {
  margin-top: -1.875vw;
}
@media (min-width: 641px) {
  .form-row div.error {
    margin-top: -0.5rem;
  }
}
@media (min-width: 1200px) {
  .form-row div.error {
    margin-top: -8px;
  }
}
.form-row div.error:before {
  content: "*";
  color: inherit;
  margin-top: 2px;
}
.form-row div.error:before {
  margin-right: 0.7813vw;
}
@media (min-width: 641px) {
  .form-row div.error:before {
    margin-right: 0.2083rem;
  }
}
@media (min-width: 1200px) {
  .form-row div.error:before {
    margin-right: 3px;
  }
}
.form-row div.error:before {
  font-size: 3.5938vw;
}
@media (min-width: 641px) {
  .form-row div.error:before {
    font-size: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  .form-row div.error:before {
    font-size: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .form-row div.error {
    font-size: 16px;
  }
  .form-row div.error:before {
    font-size: 16px;
  }
}

/* =================================================================
   [2] Components: Dropdown Box
   ================================================================= */
.dropdown-box,
.multi-dropdown-box {
  display: block;
  width: 100%;
  position: relative;
}
.dropdown-box > button,
.multi-dropdown-box > button {
  width: 100%;
  text-align: left;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer !important;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  color: var(--text-main);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.dropdown-box > button,
.multi-dropdown-box > button {
  height: 12.5vw;
}
@media (min-width: 641px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    height: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    height: 53px;
  }
}
.dropdown-box > button,
.multi-dropdown-box > button {
  border-radius: 12.5vw;
}
@media (min-width: 641px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    border-radius: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    border-radius: 53px;
  }
}
.dropdown-box > button,
.multi-dropdown-box > button {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    font-size: 16px;
  }
}
.dropdown-box > button,
.multi-dropdown-box > button {
  padding: 0 6.25vw 0 3.75vw !important;
}
@media (min-width: 641px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    padding: 0 1.6667rem 0 1rem !important;
  }
}
@media (min-width: 1200px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    padding: 0 27px 0 16px !important;
  }
}
@media screen and (min-width: 641px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    height: 64px;
  }
}
.dropdown-box > button:after,
.multi-dropdown-box > button:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--text-main);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='30' viewBox='0 0 54 30' fill='none'%3E%3Cpath d='M0.878677 5.12108C-0.292893 3.9495 -0.292895 2.05046 0.878677 0.878889C2.05025 -0.292681 3.94929 -0.292681 5.12086 0.878889L26.9998 22.7578L48.8787 0.878887C50.0502 -0.292685 51.9493 -0.292685 53.1209 0.878887C54.2924 2.05046 54.2924 3.9495 53.1209 5.12107L29.1209 29.1211C27.9493 30.2926 26.0503 30.2926 24.8787 29.1211L0.878677 5.12108Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='30' viewBox='0 0 54 30' fill='none'%3E%3Cpath d='M0.878677 5.12108C-0.292893 3.9495 -0.292895 2.05046 0.878677 0.878889C2.05025 -0.292681 3.94929 -0.292681 5.12086 0.878889L26.9998 22.7578L48.8787 0.878887C50.0502 -0.292685 51.9493 -0.292685 53.1209 0.878887C54.2924 2.05046 54.2924 3.9495 53.1209 5.12107L29.1209 29.1211C27.9493 30.2926 26.0503 30.2926 24.8787 29.1211L0.878677 5.12108Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.dropdown-box > button:after,
.multi-dropdown-box > button:after {
  right: 3.75vw;
}
@media (min-width: 641px) {
  .dropdown-box > button:after,
  .multi-dropdown-box > button:after {
    right: 1rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box > button:after,
  .multi-dropdown-box > button:after {
    right: 16px;
  }
}
.dropdown-box > button:after,
.multi-dropdown-box > button:after {
  width: 3.2813vw;
}
@media (min-width: 641px) {
  .dropdown-box > button:after,
  .multi-dropdown-box > button:after {
    width: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box > button:after,
  .multi-dropdown-box > button:after {
    width: 14px;
  }
}
.dropdown-box > button:after,
.multi-dropdown-box > button:after {
  height: 1.875vw;
}
@media (min-width: 641px) {
  .dropdown-box > button:after,
  .multi-dropdown-box > button:after {
    height: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box > button:after,
  .multi-dropdown-box > button:after {
    height: 8px;
  }
}
.dropdown-box > button:disabled,
.multi-dropdown-box > button:disabled {
  border-color: var(--line-light);
  background: var(--bg-page);
  color: var(--text-muted);
  cursor: not-allowed;
}
.dropdown-box > button:disabled:after,
.multi-dropdown-box > button:disabled:after {
  background-color: var(--text-muted);
}
.dropdown-box.placeholder > button,
.multi-dropdown-box.placeholder > button {
  color: var(--text-muted);
  font-weight: normal;
}
.dropdown-box.open > button,
.multi-dropdown-box.open > button {
  border-color: var(--color-primary);
}
.dropdown-box.open > button:after,
.multi-dropdown-box.open > button:after {
  transform: translateY(-50%) rotate(180deg);
  background-color: var(--color-primary);
}
.dropdown-box .dropdown-list,
.multi-dropdown-box .dropdown-list {
  display: none;
  position: absolute;
  left: 0;
  z-index: 100;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line-regular);
  border: 1px solid var(--input-border);
  overflow-y: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.dropdown-box .dropdown-list,
.multi-dropdown-box .dropdown-list {
  top: 12.5vw;
}
@media (min-width: 641px) {
  .dropdown-box .dropdown-list,
  .multi-dropdown-box .dropdown-list {
    top: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list,
  .multi-dropdown-box .dropdown-list {
    top: 53px;
  }
}
.dropdown-box .dropdown-list,
.multi-dropdown-box .dropdown-list {
  border-radius: 4.1667vw;
}
@media (min-width: 641px) {
  .dropdown-box .dropdown-list,
  .multi-dropdown-box .dropdown-list {
    border-radius: 1.1111rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list,
  .multi-dropdown-box .dropdown-list {
    border-radius: 18px;
  }
}
.dropdown-box .dropdown-list,
.multi-dropdown-box .dropdown-list {
  max-height: 46.875vw;
}
@media (min-width: 641px) {
  .dropdown-box .dropdown-list,
  .multi-dropdown-box .dropdown-list {
    max-height: 12.5rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list,
  .multi-dropdown-box .dropdown-list {
    max-height: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .dropdown-box .dropdown-list,
  .multi-dropdown-box .dropdown-list {
    top: 69px;
  }
}
.dropdown-box .dropdown-list::-webkit-scrollbar-track,
.multi-dropdown-box .dropdown-list::-webkit-scrollbar-track {
  background: transparent;
  margin: 10px 0;
}
.dropdown-box[direction=top] .dropdown-box .dropdown-list, .multi-dropdown-box[direction=top] .dropdown-box .dropdown-list,
.dropdown-box[direction=top] .multi-dropdown-box .dropdown-list,
.multi-dropdown-box[direction=top] .multi-dropdown-box .dropdown-list {
  top: auto;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}
.dropdown-box[direction=top] .dropdown-box .dropdown-list, .multi-dropdown-box[direction=top] .dropdown-box .dropdown-list,
.dropdown-box[direction=top] .multi-dropdown-box .dropdown-list,
.multi-dropdown-box[direction=top] .multi-dropdown-box .dropdown-list {
  bottom: 16.4063vw;
}
@media (min-width: 641px) {
  .dropdown-box[direction=top] .dropdown-box .dropdown-list, .multi-dropdown-box[direction=top] .dropdown-box .dropdown-list,
  .dropdown-box[direction=top] .multi-dropdown-box .dropdown-list,
  .multi-dropdown-box[direction=top] .multi-dropdown-box .dropdown-list {
    bottom: 4.375rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box[direction=top] .dropdown-box .dropdown-list, .multi-dropdown-box[direction=top] .dropdown-box .dropdown-list,
  .dropdown-box[direction=top] .multi-dropdown-box .dropdown-list,
  .multi-dropdown-box[direction=top] .multi-dropdown-box .dropdown-list {
    bottom: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .dropdown-box[direction=top] .dropdown-box .dropdown-list, .multi-dropdown-box[direction=top] .dropdown-box .dropdown-list,
  .dropdown-box[direction=top] .multi-dropdown-box .dropdown-list,
  .multi-dropdown-box[direction=top] .multi-dropdown-box .dropdown-list {
    bottom: 69px;
  }
}
.dropdown-box .dropdown-list ul,
.multi-dropdown-box .dropdown-list ul {
  padding: 1.5625vw 0;
}
@media (min-width: 641px) {
  .dropdown-box .dropdown-list ul,
  .multi-dropdown-box .dropdown-list ul {
    padding: 0.4167rem 0;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list ul,
  .multi-dropdown-box .dropdown-list ul {
    padding: 7px 0;
  }
}
.dropdown-box .dropdown-list ul li.empty,
.multi-dropdown-box .dropdown-list ul li.empty {
  text-align: center;
  color: var(--text-muted);
  cursor: default;
}
.dropdown-box .dropdown-list ul li.empty,
.multi-dropdown-box .dropdown-list ul li.empty {
  padding: 3.125vw 0;
}
@media (min-width: 641px) {
  .dropdown-box .dropdown-list ul li.empty,
  .multi-dropdown-box .dropdown-list ul li.empty {
    padding: 0.8333rem 0;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list ul li.empty,
  .multi-dropdown-box .dropdown-list ul li.empty {
    padding: 13px 0;
  }
}
.dropdown-box .dropdown-list ul li.empty,
.multi-dropdown-box .dropdown-list ul li.empty {
  font-size: 3.4375vw;
}
@media (min-width: 641px) {
  .dropdown-box .dropdown-list ul li.empty,
  .multi-dropdown-box .dropdown-list ul li.empty {
    font-size: 0.9167rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list ul li.empty,
  .multi-dropdown-box .dropdown-list ul li.empty {
    font-size: 15px;
  }
}

.dropdown-box .dropdown-list ul li:hover {
  background: var(--color-primary-light);
}
.dropdown-box .dropdown-list ul li button {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--text-main);
  transition: background 0.2s, color 0.2s;
}
.dropdown-box .dropdown-list ul li button {
  padding: 2.3438vw 3.75vw;
}
@media (min-width: 641px) {
  .dropdown-box .dropdown-list ul li button {
    padding: 0.625rem 1rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list ul li button {
    padding: 10px 16px;
  }
}
.dropdown-box .dropdown-list ul li button {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .dropdown-box .dropdown-list ul li button {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list ul li button {
    font-size: 16px;
  }
}
.dropdown-box .dropdown-list ul li button:hover {
  background-color: var(--bg-base);
  color: var(--color-primary);
}
.dropdown-box .dropdown-list ul li button.selected {
  background-color: var(--color-primary);
  color: #ffffff;
  position: relative;
}
.dropdown-box .dropdown-list ul li button.selected:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.dropdown-box .dropdown-list ul li button.selected:after {
  right: 3.75vw;
}
@media (min-width: 641px) {
  .dropdown-box .dropdown-list ul li button.selected:after {
    right: 1rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list ul li button.selected:after {
    right: 16px;
  }
}
.dropdown-box .dropdown-list ul li button.selected:after {
  width: 3.125vw;
}
@media (min-width: 641px) {
  .dropdown-box .dropdown-list ul li button.selected:after {
    width: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list ul li button.selected:after {
    width: 13px;
  }
}
.dropdown-box .dropdown-list ul li button.selected:after {
  height: 3.125vw;
}
@media (min-width: 641px) {
  .dropdown-box .dropdown-list ul li button.selected:after {
    height: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list ul li button.selected:after {
    height: 13px;
  }
}

.multi-dropdown-box .dropdown-list {
  padding-top: 0;
}
.multi-dropdown-box .dropdown-list .list-search {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  align-items: center;
}
.multi-dropdown-box .dropdown-list .list-search {
  padding: 1.5625vw;
}
@media (min-width: 641px) {
  .multi-dropdown-box .dropdown-list .list-search {
    padding: 0.4167rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list .list-search {
    padding: 7px;
  }
}
.multi-dropdown-box .dropdown-list .list-search input {
  width: 100%;
  background: var(--bg-base);
  border: 1px solid var(--line-light);
  color: var(--gray8);
}
.multi-dropdown-box .dropdown-list .list-search input {
  height: 12.5vw;
}
@media (min-width: 641px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    height: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    height: 53px;
  }
}
.multi-dropdown-box .dropdown-list .list-search input {
  border-radius: 12.5vw;
}
@media (min-width: 641px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    border-radius: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    border-radius: 53px;
  }
}
.multi-dropdown-box .dropdown-list .list-search input {
  padding-left: 3.125vw;
}
@media (min-width: 641px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    padding-left: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    padding-left: 13px;
  }
}
.multi-dropdown-box .dropdown-list .list-search input {
  font-size: 3.4375vw;
}
@media (min-width: 641px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    font-size: 0.9167rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    font-size: 15px;
  }
}
.multi-dropdown-box .dropdown-list .list-search input:focus {
  border-color: var(--color-primary);
  outline: none;
}
.multi-dropdown-box .dropdown-list .list-search .icon-svg {
  position: absolute;
  color: var(--color-primary);
  pointer-events: none;
}
.multi-dropdown-box .dropdown-list .list-search .icon-svg {
  right: 4.6875vw;
}
@media (min-width: 641px) {
  .multi-dropdown-box .dropdown-list .list-search .icon-svg {
    right: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list .list-search .icon-svg {
    right: 20px;
  }
}
.multi-dropdown-box .dropdown-list .list-search .icon-svg {
  width: 4.6875vw;
}
@media (min-width: 641px) {
  .multi-dropdown-box .dropdown-list .list-search .icon-svg {
    width: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list .list-search .icon-svg {
    width: 20px;
  }
}
.multi-dropdown-box .dropdown-list .list-search .icon-svg {
  height: 4.6875vw;
}
@media (min-width: 641px) {
  .multi-dropdown-box .dropdown-list .list-search .icon-svg {
    height: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list .list-search .icon-svg {
    height: 20px;
  }
}
.multi-dropdown-box .dropdown-list ul li label {
  cursor: pointer;
  display: block;
}
.multi-dropdown-box .dropdown-list ul li label:hover {
  background: var(--color-primary-light);
}
.multi-dropdown-box .dropdown-list ul li label input {
  display: none;
}
.multi-dropdown-box .dropdown-list ul li label input:checked + p {
  background-color: var(--color-primary);
  color: #ffffff;
}
.multi-dropdown-box .dropdown-list ul li label p {
  display: block;
  color: var(--text-main);
  transition: all 0.2s;
}
.multi-dropdown-box .dropdown-list ul li label p {
  padding: 2.3438vw 3.75vw;
}
@media (min-width: 641px) {
  .multi-dropdown-box .dropdown-list ul li label p {
    padding: 0.625rem 1rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list ul li label p {
    padding: 10px 16px;
  }
}
.multi-dropdown-box .dropdown-list ul li label p {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .multi-dropdown-box .dropdown-list ul li label p {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list ul li label p {
    font-size: 16px;
  }
}
.multi-dropdown-box .dropdown-list ul li label p:hover {
  background-color: var(--bg-base);
  color: var(--color-primary);
}
.multi-dropdown-box .dropdown-list ul li label p span {
  color: var(--color-primary);
  font-weight: bold;
}
label input:checked + p .multi-dropdown-box .dropdown-list ul li label p span {
  color: #ffffff;
  text-decoration: underline;
}

/* =================================================================
   [3] Components: Checkbox & Radio Groups (Clean Version)
   ================================================================= */
.group-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.group-items {
  min-height: 4.375vw;
}
@media (min-width: 641px) {
  .group-items {
    min-height: 1.1667rem;
  }
}
@media (min-width: 1200px) {
  .group-items {
    min-height: 19px;
  }
}
.group-items {
  gap: 4.6875vw;
}
@media (min-width: 641px) {
  .group-items {
    gap: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .group-items {
    gap: 20px;
  }
}
.group-items:not(.form-row *) {
  margin-bottom: 4.6875vw;
}
@media (min-width: 641px) {
  .group-items:not(.form-row *) {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .group-items:not(.form-row *) {
    margin-bottom: 20px;
  }
}

.check-box {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.check-box input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: block;
  margin: 0;
  cursor: pointer;
  background-color: transparent;
  background-image: var(--icon-checkbox-default);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  transition: background-image 0.2s ease;
}
.check-box input[type=checkbox] {
  width: 4.6875vw;
}
@media (min-width: 641px) {
  .check-box input[type=checkbox] {
    width: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .check-box input[type=checkbox] {
    width: 20px;
  }
}
.check-box input[type=checkbox] {
  height: 4.6875vw;
}
@media (min-width: 641px) {
  .check-box input[type=checkbox] {
    height: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .check-box input[type=checkbox] {
    height: 20px;
  }
}
.check-box input[type=checkbox] {
  margin-right: 1.25vw;
}
@media (min-width: 641px) {
  .check-box input[type=checkbox] {
    margin-right: 0.3333rem;
  }
}
@media (min-width: 1200px) {
  .check-box input[type=checkbox] {
    margin-right: 5px;
  }
}
.check-box input[type=checkbox]:checked {
  background-image: var(--icon-checkbox-checked);
}
.check-box input[type=checkbox]:disabled {
  background-image: var(--icon-checkbox-disabled);
  cursor: not-allowed;
}
.check-box input[type=checkbox]:disabled + label {
  color: var(--text-muted);
  cursor: not-allowed;
}
.check-box label {
  color: var(--gray6);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  font-weight: 600;
}
.check-box label {
  font-size: 4.2188vw;
}
@media (min-width: 641px) {
  .check-box label {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .check-box label {
    font-size: 18px;
  }
}
.check-box input[type=checkbox]:checked + label {
  font-weight: 700;
  color: var(--gray8);
}

.radio-box {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.radio-box label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.radio-box label input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: block;
  margin: 0;
  background-color: transparent;
  background-image: var(--icon-radio-default);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  transition: background-image 0.2s ease;
}
.radio-box label input[type=radio] {
  width: 4.6875vw;
}
@media (min-width: 641px) {
  .radio-box label input[type=radio] {
    width: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .radio-box label input[type=radio] {
    width: 20px;
  }
}
.radio-box label input[type=radio] {
  height: 4.6875vw;
}
@media (min-width: 641px) {
  .radio-box label input[type=radio] {
    height: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .radio-box label input[type=radio] {
    height: 20px;
  }
}
.radio-box label input[type=radio] {
  margin-right: 1.25vw;
}
@media (min-width: 641px) {
  .radio-box label input[type=radio] {
    margin-right: 0.3333rem;
  }
}
@media (min-width: 1200px) {
  .radio-box label input[type=radio] {
    margin-right: 5px;
  }
}
.radio-box label input[type=radio]:checked {
  background-image: var(--icon-radio-checked);
}
.radio-box label input[type=radio]:disabled {
  background-image: var(--icon-radio-disabled);
  cursor: not-allowed;
}
.radio-box label input[type=radio]:disabled + span {
  color: var(--text-muted);
  cursor: not-allowed;
}
.radio-box label span {
  color: var(--gray6);
  font-weight: 600;
  transition: color 0.2s;
}
.radio-box label span {
  font-size: 4.2188vw;
}
@media (min-width: 641px) {
  .radio-box label span {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .radio-box label span {
    font-size: 18px;
  }
}
.radio-box label input[type=radio]:checked + span {
  font-weight: 700;
  color: var(--gray8);
}

.check-box.required label::after,
.radio-box.required span::after {
  content: "*";
  color: var(--color-error);
  margin-left: 4px;
  display: inline-block;
}

.datepicker-box {
  position: relative;
  width: 100%;
}
.datepicker-box input.datepicker-input {
  width: 100%;
  cursor: pointer;
}
.datepicker-box input.datepicker-input {
  padding-right: 6.25vw;
}
@media (min-width: 641px) {
  .datepicker-box input.datepicker-input {
    padding-right: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  .datepicker-box input.datepicker-input {
    padding-right: 27px;
  }
}
.datepicker-box .icon-svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-primary);
}
.datepicker-box .icon-svg {
  right: 3.75vw;
}
@media (min-width: 641px) {
  .datepicker-box .icon-svg {
    right: 1rem;
  }
}
@media (min-width: 1200px) {
  .datepicker-box .icon-svg {
    right: 16px;
  }
}
.datepicker-box .icon-svg {
  width: 5.625vw;
}
@media (min-width: 641px) {
  .datepicker-box .icon-svg {
    width: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .datepicker-box .icon-svg {
    width: 24px;
  }
}
.datepicker-box .icon-svg {
  height: 5.625vw;
}
@media (min-width: 641px) {
  .datepicker-box .icon-svg {
    height: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .datepicker-box .icon-svg {
    height: 24px;
  }
}
@media screen and (min-width: 641px) {
  .datepicker-box .icon-svg {
    width: 24px;
    height: 24px;
    right: 16px;
  }
}
.datepicker-box .icon-svg svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* =================================================================
   [Component] File Upload Box
   ================================================================= */
.file-box {
  display: flex;
  align-items: center;
  width: 100%;
}
.file-box {
  gap: 1.25vw;
}
@media (min-width: 641px) {
  .file-box {
    gap: 0.3333rem;
  }
}
@media (min-width: 1200px) {
  .file-box {
    gap: 5px;
  }
}
.file-box .upload-name {
  display: inline-block;
  flex: 1;
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  color: var(--text-main);
}
.file-box .upload-name {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .file-box .upload-name {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .file-box .upload-name {
    font-size: 16px;
  }
}
.file-box .upload-name {
  border-radius: 12.5vw;
}
@media (min-width: 641px) {
  .file-box .upload-name {
    border-radius: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .file-box .upload-name {
    border-radius: 53px;
  }
}
.file-box .upload-name {
  height: 12.5vw;
}
@media (min-width: 641px) {
  .file-box .upload-name {
    height: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .file-box .upload-name {
    height: 53px;
  }
}
.file-box .upload-name {
  padding: 0 3.75vw 0 5.3125vw;
}
@media (min-width: 641px) {
  .file-box .upload-name {
    padding: 0 1rem 0 1.4167rem;
  }
}
@media (min-width: 1200px) {
  .file-box .upload-name {
    padding: 0 16px 0 23px;
  }
}
@media screen and (min-width: 641px) {
  .file-box .upload-name {
    height: 64px;
    border-radius: 64px;
    padding: 0 16px 0 23px;
    font-size: 16px;
  }
}
.file-box .upload-name:-moz-read-only {
  background-color: #fff;
  color: var(--text-main);
  cursor: default;
}
.file-box .upload-name:read-only {
  background-color: #fff;
  color: var(--text-main);
  cursor: default;
}
.file-box .btn-upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 500;
  color: #ffffff;
  background-color: var(--text-sub);
  transition: background-color 0.2s;
  white-space: nowrap;
}
.file-box .btn-upload {
  height: 12.5vw;
}
@media (min-width: 641px) {
  .file-box .btn-upload {
    height: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .file-box .btn-upload {
    height: 53px;
  }
}
.file-box .btn-upload {
  padding: 0 4.6875vw;
}
@media (min-width: 641px) {
  .file-box .btn-upload {
    padding: 0 1.25rem;
  }
}
@media (min-width: 1200px) {
  .file-box .btn-upload {
    padding: 0 20px;
  }
}
.file-box .btn-upload {
  border-radius: 12.5vw;
}
@media (min-width: 641px) {
  .file-box .btn-upload {
    border-radius: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .file-box .btn-upload {
    border-radius: 53px;
  }
}
.file-box .btn-upload {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .file-box .btn-upload {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .file-box .btn-upload {
    font-size: 16px;
  }
}
.file-box .btn-upload:hover {
  background-color: var(--text-main);
}
@media screen and (min-width: 641px) {
  .file-box .btn-upload {
    height: 64px;
    padding: 0 24px;
    font-size: 16px;
  }
}
.file-box .upload-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* =================================================================
   [Component] Multi File Upload Box
   ================================================================= */
.multi-file-box {
  display: block;
  width: 100%;
}
.multi-file-box .upload-top {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
}
.multi-file-box .upload-top .btn-upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: var(--text-main);
  color: #ffffff;
  font-weight: 500;
}
.multi-file-box .upload-top .btn-upload {
  height: 12.5vw;
}
@media (min-width: 641px) {
  .multi-file-box .upload-top .btn-upload {
    height: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .upload-top .btn-upload {
    height: 53px;
  }
}
.multi-file-box .upload-top .btn-upload {
  padding: 0 3.75vw;
}
@media (min-width: 641px) {
  .multi-file-box .upload-top .btn-upload {
    padding: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .upload-top .btn-upload {
    padding: 0 16px;
  }
}
.multi-file-box .upload-top .btn-upload {
  border-radius: 0.9375vw;
}
@media (min-width: 641px) {
  .multi-file-box .upload-top .btn-upload {
    border-radius: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .upload-top .btn-upload {
    border-radius: 4px;
  }
}
.multi-file-box .upload-top .btn-upload {
  font-size: 3.4375vw;
}
@media (min-width: 641px) {
  .multi-file-box .upload-top .btn-upload {
    font-size: 0.9167rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .upload-top .btn-upload {
    font-size: 15px;
  }
}
@media screen and (min-width: 641px) {
  .multi-file-box .upload-top .btn-upload {
    height: 64px;
    padding: 0 24px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.multi-file-box .upload-top .btn-upload:hover {
  background-color: var(--color-primary);
}
.multi-file-box .upload-top .upload-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.multi-file-box .file-list-row {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.multi-file-box .file-list-row {
  margin-top: 1.5625vw;
}
@media (min-width: 641px) {
  .multi-file-box .file-list-row {
    margin-top: 0.4167rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .file-list-row {
    margin-top: 7px;
  }
}
@media screen and (min-width: 641px) {
  .multi-file-box .file-list-row {
    margin-top: 12px;
  }
}
.multi-file-box .file-list-row .info {
  display: block;
  color: var(--text-muted);
  line-height: 1.4;
}
.multi-file-box .file-list-row .info {
  margin-bottom: 1.25vw;
}
@media (min-width: 641px) {
  .multi-file-box .file-list-row .info {
    margin-bottom: 0.3333rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .file-list-row .info {
    margin-bottom: 5px;
  }
}
.multi-file-box .file-list-row .info {
  font-size: 3.125vw;
}
@media (min-width: 641px) {
  .multi-file-box .file-list-row .info {
    font-size: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .file-list-row .info {
    font-size: 13px;
  }
}
@media screen and (min-width: 641px) {
  .multi-file-box .file-list-row .info {
    margin-bottom: 8px;
    font-size: 13px;
  }
}
.multi-file-box .file-list-row .file-list {
  display: none;
  width: 100%;
  background: var(--bg-base);
  border: 1px solid var(--line-light);
}
.multi-file-box .file-list-row .file-list {
  border-radius: 0.9375vw;
}
@media (min-width: 641px) {
  .multi-file-box .file-list-row .file-list {
    border-radius: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .file-list-row .file-list {
    border-radius: 4px;
  }
}
.multi-file-box .file-list-row .file-list {
  padding: 1.5625vw;
}
@media (min-width: 641px) {
  .multi-file-box .file-list-row .file-list {
    padding: 0.4167rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .file-list-row .file-list {
    padding: 7px;
  }
}
.multi-file-box .file-list-row .file-list {
  min-height: 7.8125vw;
}
@media (min-width: 641px) {
  .multi-file-box .file-list-row .file-list {
    min-height: 2.0833rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .file-list-row .file-list {
    min-height: 33px;
  }
}
@media screen and (min-width: 641px) {
  .multi-file-box .file-list-row .file-list {
    padding: 16px;
    border-radius: 8px;
    min-height: 80px;
  }
}
.multi-file-box .file-list-row .file-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid var(--line-light);
  color: var(--text-main);
}
.multi-file-box .file-list-row .file-list li {
  margin-bottom: 1.25vw;
}
@media (min-width: 641px) {
  .multi-file-box .file-list-row .file-list li {
    margin-bottom: 0.3333rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .file-list-row .file-list li {
    margin-bottom: 5px;
  }
}
.multi-file-box .file-list-row .file-list li {
  padding: 1.5625vw 2.3438vw;
}
@media (min-width: 641px) {
  .multi-file-box .file-list-row .file-list li {
    padding: 0.4167rem 0.625rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .file-list-row .file-list li {
    padding: 7px 10px;
  }
}
.multi-file-box .file-list-row .file-list li {
  font-size: 3.2813vw;
}
@media (min-width: 641px) {
  .multi-file-box .file-list-row .file-list li {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .file-list-row .file-list li {
    font-size: 14px;
  }
}
.multi-file-box .file-list-row .file-list li {
  border-radius: 0.625vw;
}
@media (min-width: 641px) {
  .multi-file-box .file-list-row .file-list li {
    border-radius: 0.1667rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .file-list-row .file-list li {
    border-radius: 3px;
  }
}
@media screen and (min-width: 641px) {
  .multi-file-box .file-list-row .file-list li {
    margin-bottom: 8px;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 4px;
  }
}
.multi-file-box .file-list-row .file-list li:last-child {
  margin-bottom: 0;
}
.multi-file-box .file-list-row .file-list li .name {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.multi-file-box .file-list-row .file-list li .btn-remove {
  flex: 0 0 auto;
  cursor: pointer;
  color: var(--color-error);
  font-weight: bold;
  margin-left: 10px;
  background: none;
  border: none;
  padding: 0 5px;
}
.multi-file-box .file-list-row .file-list li .btn-remove:hover {
  text-decoration: underline;
}

/* 파일박스 */
.file-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.file-box {
  gap: 0vw 2.3438vw;
}
@media (min-width: 641px) {
  .file-box {
    gap: 0rem 0.625rem;
  }
}
@media (min-width: 1200px) {
  .file-box {
    gap: 0px 10px;
  }
}
.file-box .input-file {
  flex-shrink: 0;
}
.file-box .input-file label {
  display: inline-block;
  background: #4cbced;
  font-weight: 600;
  color: #ffffff;
}
.file-box .input-file label {
  padding: 0vw 1.5625vw;
}
@media (min-width: 641px) {
  .file-box .input-file label {
    padding: 0rem 0.4167rem;
  }
}
@media (min-width: 1200px) {
  .file-box .input-file label {
    padding: 0px 7px;
  }
}
.file-box .input-file label {
  border-radius: 1.4063vw;
}
@media (min-width: 641px) {
  .file-box .input-file label {
    border-radius: 0.375rem;
  }
}
@media (min-width: 1200px) {
  .file-box .input-file label {
    border-radius: 6px;
  }
}
.file-box .input-file label {
  font-size: 3.4375vw;
}
@media (min-width: 641px) {
  .file-box .input-file label {
    font-size: 0.9167rem;
  }
}
@media (min-width: 1200px) {
  .file-box .input-file label {
    font-size: 15px;
  }
}
.file-box .input-file label input {
  display: none;
}
.file-box ul {
  flex: 1;
  overflow: hidden;
}
.file-box ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.file-box ul li {
  gap: 0vw 2.3438vw;
}
@media (min-width: 641px) {
  .file-box ul li {
    gap: 0rem 0.625rem;
  }
}
@media (min-width: 1200px) {
  .file-box ul li {
    gap: 0px 10px;
  }
}
.file-box ul li:first-child {
  margin-top: 0px;
}
.file-box ul li p {
  max-width: calc(100% - 3.2813vw);
  font-weight: 500;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-box ul li p {
  font-size: 3.4375vw;
}
@media (min-width: 641px) {
  .file-box ul li p {
    font-size: 0.9167rem;
  }
}
@media (min-width: 1200px) {
  .file-box ul li p {
    font-size: 15px;
  }
}
.file-box ul li button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.file-box ul li button i .icon-close2 {
  stroke: black;
  stroke-width: 6;
}
.file-box ul li button i .icon-close2 {
  width: 2.8125vw;
}
@media (min-width: 641px) {
  .file-box ul li button i .icon-close2 {
    width: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .file-box ul li button i .icon-close2 {
    width: 12px;
  }
}
.file-box ul li button i .icon-close2 {
  height: 2.6563vw;
}
@media (min-width: 641px) {
  .file-box ul li button i .icon-close2 {
    height: 0.7083rem;
  }
}
@media (min-width: 1200px) {
  .file-box ul li button i .icon-close2 {
    height: 11px;
  }
}

/* =================================================================
   [Component] Buttons
   ================================================================= */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.btn-row {
  gap: 1.5625vw;
}
@media (min-width: 641px) {
  .btn-row {
    gap: 0.4167rem;
  }
}
@media (min-width: 1200px) {
  .btn-row {
    gap: 7px;
  }
}
@media screen and (min-width: 641px) {
  .btn-row {
    gap: 10px;
  }
}
.btn-row.align-left {
  justify-content: flex-start;
}
.btn-row.align-right {
  justify-content: flex-end;
}
.btn-row.is-full .btn {
  flex: 1;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
  background: transparent;
  transition: all 0.2s ease-in-out;
  line-height: 100%;
}
.btn {
  height: 12.5vw;
}
@media (min-width: 641px) {
  .btn {
    height: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .btn {
    height: 53px;
  }
}
.btn {
  padding: 0 4.6875vw;
}
@media (min-width: 641px) {
  .btn {
    padding: 0 1.25rem;
  }
}
@media (min-width: 1200px) {
  .btn {
    padding: 0 20px;
  }
}
.btn {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .btn {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .btn {
    font-size: 16px;
  }
}
.btn {
  gap: 1.5625vw;
}
@media (min-width: 641px) {
  .btn {
    gap: 0.4167rem;
  }
}
@media (min-width: 1200px) {
  .btn {
    gap: 7px;
  }
}
@media screen and (min-width: 641px) {
  .btn {
    height: 64px;
    padding: 0 24px;
    font-size: 18px;
    gap: 8px;
  }
}
.btn .icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn .icon-svg {
  width: 4.6875vw;
}
@media (min-width: 641px) {
  .btn .icon-svg {
    width: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .btn .icon-svg {
    width: 20px;
  }
}
.btn .icon-svg {
  height: 4.6875vw;
}
@media (min-width: 641px) {
  .btn .icon-svg {
    height: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .btn .icon-svg {
    height: 20px;
  }
}
@media screen and (min-width: 641px) {
  .btn .icon-svg {
    width: 20px;
    height: 20px;
  }
}
.btn .icon-svg svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.btn span {
  line-height: 100%;
}
.btn:disabled, .btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.btn.size-medium {
  height: 10.5469vw;
}
@media (min-width: 641px) {
  .btn.size-medium {
    height: 2.8125rem;
  }
}
@media (min-width: 1200px) {
  .btn.size-medium {
    height: 45px;
  }
}
.btn.size-medium {
  padding: 0 3.9551vw;
}
@media (min-width: 641px) {
  .btn.size-medium {
    padding: 0 1.0547rem;
  }
}
@media (min-width: 1200px) {
  .btn.size-medium {
    padding: 0 17px;
  }
}
.btn.size-medium {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .btn.size-medium {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .btn.size-medium {
    font-size: 16px;
  }
}
.btn.size-medium {
  gap: 1.3184vw;
}
@media (min-width: 641px) {
  .btn.size-medium {
    gap: 0.3516rem;
  }
}
@media (min-width: 1200px) {
  .btn.size-medium {
    gap: 6px;
  }
}
@media screen and (min-width: 641px) {
  .btn.size-medium {
    height: 54px;
    padding: 0 20.25px;
    font-size: 18px;
    gap: 6.75px;
  }
  .btn.size-medium .icon-svg {
    width: 16.875px;
    height: 16.875px;
  }
}
.btn.size-small {
  height: 7.8125vw;
}
@media (min-width: 641px) {
  .btn.size-small {
    height: 2.0833rem;
  }
}
@media (min-width: 1200px) {
  .btn.size-small {
    height: 33px;
  }
}
.btn.size-small {
  padding: 0 2.9297vw;
}
@media (min-width: 641px) {
  .btn.size-small {
    padding: 0 0.7813rem;
  }
}
@media (min-width: 1200px) {
  .btn.size-small {
    padding: 0 13px;
  }
}
.btn.size-small {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .btn.size-small {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .btn.size-small {
    font-size: 16px;
  }
}
.btn.size-small {
  gap: 0.9766vw;
}
@media (min-width: 641px) {
  .btn.size-small {
    gap: 0.2604rem;
  }
}
@media (min-width: 1200px) {
  .btn.size-small {
    gap: 4px;
  }
}
@media screen and (min-width: 641px) {
  .btn.size-small {
    height: 40px;
    padding: 0 15px;
    font-size: 16px;
    gap: 5px;
  }
  .btn.size-small .icon-svg {
    width: 12.5px;
    height: 12.5px;
  }
}

.btn.shape-square {
  border-radius: 0;
}

.btn.shape-rounded {
  border-radius: 12.5vw;
}
@media (min-width: 641px) {
  .btn.shape-rounded {
    border-radius: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .btn.shape-rounded {
    border-radius: 53px;
  }
}
@media screen and (min-width: 641px) {
  .btn.shape-rounded {
    border-radius: 64px;
  }
}

.btn.shape-pill {
  border-radius: 9999px;
}

/* --- [Solid] 채워진 버튼 --- */
.btn.type-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}
.btn.type-primary:hover {
  color: var(--color-primary);
  background-color: transparent;
  border-color: var(--color-primary);
}
.btn.type-primary.family-color {
  background-color: var(--color-family);
  border-color: var(--color-family);
}
.btn.type-primary.family-color:hover {
  background-color: transparent;
  border-color: var(--color-family);
}

.btn.type-secondary {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #ffffff;
}
.btn.type-secondary:hover {
  color: var(--color-secondary);
  background-color: transparent;
  border-color: var(--color-secondary);
}

/* --- [Line] 테두리 버튼 --- */
.btn.type-line-primary {
  background-color: #ffffff;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn.type-line-primary:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

.btn.type-line-secondary {
  background-color: #ffffff;
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}
.btn.type-line-secondary:hover {
  background-color: var(--color-secondary);
  color: #ffffff;
}

section.section .section-inner .swiper-button-next.arrow-style:after, section.section .section-inner .swiper-button-prev.arrow-style:after {
  display: none;
}
section.section .section-inner .swiper-button-next.arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.arrow-style .icon-svg {
  overflow: hidden;
  aspect-ratio: 1/1;
  transform: rotate(-90deg);
}
section.section .section-inner .swiper-button-next.arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.arrow-style .icon-svg {
  width: 9.375vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-button-next.arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.arrow-style .icon-svg {
    width: 2.5rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-button-next.arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.arrow-style .icon-svg {
    width: 40px;
  }
}
section.section .section-inner .swiper-button-next.arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.arrow-style .icon-svg {
  height: 9.375vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-button-next.arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.arrow-style .icon-svg {
    height: 2.5rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-button-next.arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.arrow-style .icon-svg {
    height: 40px;
  }
}
section.section .section-inner .swiper-button-next.arrow-style .icon-svg svg, section.section .section-inner .swiper-button-prev.arrow-style .icon-svg svg {
  color: #ffffff;
  width: 100%;
  height: 100%;
}
section.section .section-inner .swiper-button-next.circle-arrow-style, section.section .section-inner .swiper-button-prev.circle-arrow-style {
  position: relative;
  left: unset;
  right: unset;
  top: unset;
  bottom: unset;
  margin: unset;
  border: 1px solid #616161;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.section .section-inner .swiper-button-next.circle-arrow-style, section.section .section-inner .swiper-button-prev.circle-arrow-style {
  width: 9.375vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style, section.section .section-inner .swiper-button-prev.circle-arrow-style {
    width: 2.5rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style, section.section .section-inner .swiper-button-prev.circle-arrow-style {
    width: 40px;
  }
}
section.section .section-inner .swiper-button-next.circle-arrow-style, section.section .section-inner .swiper-button-prev.circle-arrow-style {
  height: 9.375vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style, section.section .section-inner .swiper-button-prev.circle-arrow-style {
    height: 2.5rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style, section.section .section-inner .swiper-button-prev.circle-arrow-style {
    height: 40px;
  }
}
section.section .section-inner .swiper-button-next.circle-arrow-style, section.section .section-inner .swiper-button-prev.circle-arrow-style {
  border-radius: 9.375vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style, section.section .section-inner .swiper-button-prev.circle-arrow-style {
    border-radius: 2.5rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style, section.section .section-inner .swiper-button-prev.circle-arrow-style {
    border-radius: 40px;
  }
}
@media screen and (min-width: 1200px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style, section.section .section-inner .swiper-button-prev.circle-arrow-style {
    width: 56px;
    height: 56px;
    border-radius: 56px;
  }
}
section.section .section-inner .swiper-button-next.circle-arrow-style:after, section.section .section-inner .swiper-button-prev.circle-arrow-style:after {
  display: none;
}
section.section .section-inner .swiper-button-next.circle-arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.circle-arrow-style .icon-svg {
  width: 9.375vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.circle-arrow-style .icon-svg {
    width: 2.5rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.circle-arrow-style .icon-svg {
    width: 40px;
  }
}
section.section .section-inner .swiper-button-next.circle-arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.circle-arrow-style .icon-svg {
  height: 9.375vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.circle-arrow-style .icon-svg {
    height: 2.5rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.circle-arrow-style .icon-svg {
    height: 40px;
  }
}
@media screen and (min-width: 1200px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.circle-arrow-style .icon-svg {
    width: 56px;
    height: 56px;
  }
}
section.section .section-inner .swiper-button-next.circle-arrow-style .icon-svg svg, section.section .section-inner .swiper-button-prev.circle-arrow-style .icon-svg svg {
  color: #616161;
  width: 72%;
}
section.section .section-inner .swiper-button-next.circle-arrow-style:hover, section.section .section-inner .swiper-button-prev.circle-arrow-style:hover {
  border-color: #4cbced;
  background: #4cbced;
}
section.section .section-inner .swiper-button-next.circle-arrow-style:hover .icon-svg svg, section.section .section-inner .swiper-button-prev.circle-arrow-style:hover .icon-svg svg {
  color: #ffffff;
}
section.section .section-inner .swiper-button-prev.arrow-style .icon-svg {
  transform: rotate(90deg);
}
section.section .section-inner .swiper-button-prev.circle-arrow-style .icon-svg {
  transform: rotate(-180deg);
}
section.section .section-inner {
  /* =========================================
  공통 설정
  ========================================= */
}
section.section .section-inner .swiper-pagination {
  text-align: center;
  transition: 0.3s;
}
section.section .section-inner .swiper-pagination {
  bottom: -7.8125vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-pagination {
    bottom: -2.0833rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-pagination {
    bottom: -33px;
  }
}
@media screen and (min-width: 1200px) {
  section.section .section-inner .swiper-pagination {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 420px;
    flex-flow: wrap;
    left: 50%;
    right: unset;
    bottom: 20px;
    margin-left: 0;
  }
}
@media screen and (min-width: 1440px) {
  section.section .section-inner .swiper-pagination {
    width: 460px;
    bottom: 50px;
    margin-left: 80px;
  }
}
section.section .section-inner .swiper-pagination-bullets {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.section .section-inner .swiper-pagination-bullets {
  gap: 1.875vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-pagination-bullets {
    gap: 0.5rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-pagination-bullets {
    gap: 8px;
  }
}
@media screen and (min-width: 1200px) {
  section.section .section-inner .swiper-pagination-bullets {
    gap: 8px;
  }
}
section.section .section-inner {
  /* =========================================
  모바일 (< 1440px): Dot(점) 스타일
  ========================================= */
}
section.section .section-inner .swiper-pagination-bullet {
  display: inline-block;
  background: #DEDEDE;
  opacity: 1;
  font-size: 0;
  color: transparent;
  line-height: 0;
  transition: all 0.3s ease;
}
section.section .section-inner .swiper-pagination-bullet {
  width: 2.3438vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-pagination-bullet {
    width: 0.625rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-pagination-bullet {
    width: 10px;
  }
}
section.section .section-inner .swiper-pagination-bullet {
  height: 2.3438vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-pagination-bullet {
    height: 0.625rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-pagination-bullet {
    height: 10px;
  }
}
section.section .section-inner .swiper-pagination-bullet {
  border-radius: 1.1719vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-pagination-bullet {
    border-radius: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-pagination-bullet {
    border-radius: 5px;
  }
}
section.section .section-inner .swiper-pagination-bullet {
  margin: 0vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-pagination-bullet {
    margin: 0rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-pagination-bullet {
    margin: 0px;
  }
}
section.section .section-inner .swiper-pagination-bullet {
  /* 모바일 활성화 상태 */
}
section.section .section-inner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #4cbced;
}
section.section .section-inner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 7.5vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 2rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 32px;
  }
}
@media screen and (min-width: 1200px) {
  section.section .section-inner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: transparent;
    color: #4cbced;
    width: auto;
    font-weight: 700;
  }
  section.section .section-inner .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    width: 60px;
  }
}
@media screen and (min-width: 1440px) {
  section.section .section-inner .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    width: 80px;
  }
}
section.section .section-inner .controller-row.type2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
section.section .section-inner .controller-row.type2 .swiper-pagination {
  position: relative;
  z-index: 1;
  color: #616161;
  font-weight: 400;
  line-height: 100%;
  bottom: unset;
}
section.section .section-inner .controller-row.type2 .swiper-pagination {
  font-size: 3.5938vw;
}
@media (min-width: 641px) {
  section.section .section-inner .controller-row.type2 .swiper-pagination {
    font-size: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .controller-row.type2 .swiper-pagination {
    font-size: 15px;
  }
}
section.section .section-inner .controller-row.type2 .swiper-pagination {
  width: 15.2344vw;
}
@media (min-width: 641px) {
  section.section .section-inner .controller-row.type2 .swiper-pagination {
    width: 4.0625rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .controller-row.type2 .swiper-pagination {
    width: 65px;
  }
}
@media screen and (min-width: 1200px) {
  section.section .section-inner .controller-row.type2 .swiper-pagination {
    font-size: 16px;
    margin-left: 0;
    left: 0;
    gap: 4px;
  }
}
section.section .section-inner .controller-row.type2 .swiper-pagination span {
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: inherit;
}
section.section .section-inner .controller-row.type2 .swiper-pagination span.swiper-pagination-current {
  font-weight: 700;
  color: #2B2B2B;
}
section.section .section-inner .controller-row.type4 {
  margin: auto;
  max-width: -moz-max-content;
  max-width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.section .section-inner .controller-row.type4 {
  margin-top: 6.25vw;
}
@media (min-width: 641px) {
  section.section .section-inner .controller-row.type4 {
    margin-top: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .controller-row.type4 {
    margin-top: 27px;
  }
}
section.section .section-inner .controller-row.type4 {
  gap: 6.25vw;
}
@media (min-width: 641px) {
  section.section .section-inner .controller-row.type4 {
    gap: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .controller-row.type4 {
    gap: 27px;
  }
}
@media screen and (min-width: 1200px) {
  section.section .section-inner .controller-row.type4 {
    margin-top: 86px;
    width: 100%;
    max-width: 100%;
  }
}
section.section .section-inner .controller-row.type4 .swiper-pagination {
  bottom: unset;
}
@media screen and (min-width: 1200px) {
  section.section .section-inner .controller-row.type4 .swiper-pagination {
    left: unset;
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
  section.section .section-inner .controller-row.type4 .swiper-pagination .swiper-pagination-bullet {
    background: #C4C4C4;
  }
  section.section .section-inner .controller-row.type4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #4cbced;
    width: 32px;
  }
}
@media screen and (min-width: 1200px) {
  section.section .section-inner .controller-row.type4 .swiper-button-prev, section.section .section-inner .controller-row.type4 .swiper-button-next {
    position: absolute;
    top: -527px;
    right: 0;
  }
  section.section .section-inner .controller-row.type4 .swiper-button-prev {
    right: 80px;
  }
}

/* =================================================================
   1. [CSS Variables] Global Settings
   * 실제 스타일 시트(.scss, .css)에서 사용하는 Semantic 변수 정의
   * 색상 코드를 직접 사용하지 않고, 이 변수들을 사용하여 테마를 관리합니다.
   ================================================================= */
:root {
  /* --------------------------------
     1-1. Color System (Base)
     -------------------------------- */
  /* Brand Colors */
  --color-primary: #4cbced;
  --color-secondary: #AE8766;
  --color-error: #F82417;
  --color-family: #6FA05A;
  /* Grayscale Mapping */
  --gray-wh: #ffffff;
  --gray-bk: #000000;
  --gray1: #F3F3F3;
  --gray2: #EDEDED;
  --gray3: #DEDEDE;
  --gray4: #C4C4C4;
  --gray5: #9F9F9F;
  --gray6: #888888;
  --gray7: #616161;
  --gray8: #444444;
  --gray9: #2B2B2B;
  /* --------------------------------
     1-2. Layout & Components
     -------------------------------- */
  /* Backgrounds */
  --bg-page: var(--gray-wh); /* 페이지 전체 배경 */
  --bg-white: $gray-wh; /* 컨텐츠 박스 배경 (카드, 모달 등) */
  /* Texts */
  --text-main: var(--gray9); /* 기본 본문 (진한 회색) */
  --text-sub: var(--gray6); /* 설명글/보조 텍스트 */
  --text-muted: var(--gray4); /* 비활성/Placeholder */
  /* Borders & Lines */
  --line-light: var(--gray2); /* 아주 연한 구분선 */
  --line-basic: var(--gray5); /* 일반 테두리 */
  --line-strong: var(--gray7); /* 강조 테두리 */
  /* Forms (Inputs) */
  --input-height: 48px;
  --input-bg: $gray-wh;
  --input-border: var(--line-basic);
  --input-radius: 6px;
  /* Tables */
  --table-th-bg: var(--gray1);
  --table-th-text: var(--gray7);
  --table-border: var(--gray2);
  /* Misc */
  --PlaceColor: var(--gray4);
  --color-primary-dark: rgb(21.6091370558, 156.0659898477, 214.8908629442);
  --color-primary-light: hsl(198.2608695652, 81.7258883249%, 111.3725490196%);
  --color-secondary-dark: rgb(130.4423076923, 97.1923076923, 69.0576923077);
  --color-secondary-light: rgb(235.7884615385, 226.5384615385, 218.7115384615);
}

/* =================================================================
   2. [Theme] Dark Mode Override
   * html[data-theme='dark'] 속성이 있을 때 변수 값을 재정의합니다.
   ================================================================= */
[data-theme=dark] {
  /* 1. Backgrounds (반전) */
  --bg-page: var(--gray9); /* 배경이 어두워짐 */
  --bg-white: var(--gray8); /* 컨텐츠 박스도 어두운 회색으로 */
  /* 2. Texts (반전) */
  --text-main: var(--gray-wh); /* 글자가 밝아짐 */
  --text-sub: var(--gray4);
  /* 3. Borders (어둡게 조정) */
  --line-basic: var(--gray7);
}

/* =================================================================
   3. [Typography] Auto Responsive Variables
   * _variables.scss의 $font-size-map을 순회하며 반응형 변수를 자동 생성합니다.
   * 생성 예시: --text-sm, --text-lg, --text-xl ...
   ================================================================= */
/* 3-1. Mobile Default (vw) */
:root {
  --text-xs: 2.8125vw;
  /*
  --text-xs: 2.13vw;
  --text-sm: 2.5vw;
  */
  --text-sm: 3.2813vw;
  /*
  --text-xs: 2.13vw;
  --text-sm: 2.5vw;
  */
  --text-base: 3.75vw;
  /*
  --text-xs: 2.13vw;
  --text-sm: 2.5vw;
  */
  --text-lg: 4.2188vw;
  /*
  --text-xs: 2.13vw;
  --text-sm: 2.5vw;
  */
  --text-xl: 4.6875vw;
  /*
  --text-xs: 2.13vw;
  --text-sm: 2.5vw;
  */
  --text-2xl: 5.625vw;
  /*
  --text-xs: 2.13vw;
  --text-sm: 2.5vw;
  */
  --text-3xl: 7.0313vw;
  /*
  --text-xs: 2.13vw;
  --text-sm: 2.5vw;
  */
}

/* 3-2. Tablet Override (rem) */
@media (min-width: 641px) {
  :root {
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    /*
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;        
    */
  }
}
/* 3-3. PC Override (px) */
@media (min-width: 1200px) {
  :root {
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 30px;
    /*
    --text-xs: 12px;
    --text-sm: 14px;        
    */
  }
}
/* 3-4. 폰트사이즈 클래스화 */
.text-xs {
  font-size: var(--text-xs);
  /*
  .text-xs { font-size: var(--text-xs); }
  .text-sm { font-size: var(--text-sm); }
  .text-base { font-size: var(--text-base); }    
  */
}

.text-sm {
  font-size: var(--text-sm);
  /*
  .text-xs { font-size: var(--text-xs); }
  .text-sm { font-size: var(--text-sm); }
  .text-base { font-size: var(--text-base); }    
  */
}

.text-base {
  font-size: var(--text-base);
  /*
  .text-xs { font-size: var(--text-xs); }
  .text-sm { font-size: var(--text-sm); }
  .text-base { font-size: var(--text-base); }    
  */
}

.text-lg {
  font-size: var(--text-lg);
  /*
  .text-xs { font-size: var(--text-xs); }
  .text-sm { font-size: var(--text-sm); }
  .text-base { font-size: var(--text-base); }    
  */
}

.text-xl {
  font-size: var(--text-xl);
  /*
  .text-xs { font-size: var(--text-xs); }
  .text-sm { font-size: var(--text-sm); }
  .text-base { font-size: var(--text-base); }    
  */
}

.text-2xl {
  font-size: var(--text-2xl);
  /*
  .text-xs { font-size: var(--text-xs); }
  .text-sm { font-size: var(--text-sm); }
  .text-base { font-size: var(--text-base); }    
  */
}

.text-3xl {
  font-size: var(--text-3xl);
  /*
  .text-xs { font-size: var(--text-xs); }
  .text-sm { font-size: var(--text-sm); }
  .text-base { font-size: var(--text-base); }    
  */
}

/* 스크롤바 커스텀 (Webkit Browsers) */
::-webkit-scrollbar {
  width: 6px; /* 세로 스크롤바의 너비 (우측에 생기는 것) */
  height: 6px; /* 가로 스크롤바의 높이 (하단에 생기는 것) */
}

/* 2. 스크롤바 막대 (Thumb) - 사용자가 잡고 드래그하는 부분 */
::-webkit-scrollbar-thumb {
  background: #cccccc; /* 막대 기본 색상 */
  border-radius: 0; /* 막대 모서리 (0=직각, 3px=둥글게) */
}

/* 3. 스크롤바 막대에 마우스를 올렸을 때 (Hover) */
::-webkit-scrollbar-thumb:hover {
  background: #888888; /* 드래그 하려고 올리면 색을 진하게 변경 */
}

/* 4. 스크롤바 트랙 (Track) - 막대가 움직이는 뒷배경 경로 */
::-webkit-scrollbar-track {
  background: #eeeeee; /* 트랙 배경색 (보통 연한 회색이나 투명) */
  border-radius: 0;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

hr {
  height: 1px;
  background-color: #EDEDED;
  margin: 0 auto;
  border: none;
}

br.mo {
  display: block;
}
@media screen and (min-width: 768px) {
  br.mo {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  br.mo {
    display: none;
  }
}
br.sm {
  display: none;
}
@media screen and (min-width: 768px) {
  br.sm {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  br.sm {
    display: none;
  }
}
br.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  br.pc {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  br.pc {
    display: block;
  }
}

.scroll {
  width: 100%;
  padding: 0 0 0 0;
  overflow-y: overlay;
}

h2 {
  font-weight: 700;
  background: transparent;
  display: block;
}
h2 {
  font-size: 6.4063vw;
}
@media (min-width: 641px) {
  h2 {
    font-size: 1.7083rem;
  }
}
@media (min-width: 1200px) {
  h2 {
    font-size: 27px;
  }
}
h2 {
  line-height: 1.5;
}
@media (min-width: 641px) {
  h2 {
    line-height: 1.5;
  }
}
@media (min-width: 1200px) {
  h2 {
    line-height: 1.5;
  }
}
h2::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc(-1em * 0.3);
}
h2::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc(-1em * 0.2);
}
@media screen and (min-width: 1200px) {
  h2 {
    display: block;
  }
  h2 {
    font-size: 12.1875vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 641px) {
  h2 {
    font-size: 3.25rem;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  h2 {
    font-size: 52px;
  }
}
@media screen and (min-width: 1200px) {
  h2 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) and (min-width: 641px) {
  h2 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  h2 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  h2::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-top: calc(-1em * 0.3);
  }
  h2::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-bottom: calc(-1em * 0.2);
  }
}

h3 {
  font-weight: 700;
  background: transparent;
  display: block;
}
h3 {
  font-size: 6.875vw;
}
@media (min-width: 641px) {
  h3 {
    font-size: 1.8333rem;
  }
}
@media (min-width: 1200px) {
  h3 {
    font-size: 29px;
  }
}
h3 {
  line-height: 1.5;
}
@media (min-width: 641px) {
  h3 {
    line-height: 1.5;
  }
}
@media (min-width: 1200px) {
  h3 {
    line-height: 1.5;
  }
}
h3::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc(-1em * 0.3);
}
h3::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc(-1em * 0.2);
}
@media screen and (min-width: 1200px) {
  h3 {
    display: block;
  }
  h3 {
    font-size: 11.25vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 641px) {
  h3 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  h3 {
    font-size: 48px;
  }
}
@media screen and (min-width: 1200px) {
  h3 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) and (min-width: 641px) {
  h3 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  h3 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  h3::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-top: calc(-1em * 0.3);
  }
  h3::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-bottom: calc(-1em * 0.2);
  }
}

h4 {
  font-weight: 700;
  background: transparent;
  display: block;
}
h4 {
  font-size: 5vw;
}
@media (min-width: 641px) {
  h4 {
    font-size: 1.3333rem;
  }
}
@media (min-width: 1200px) {
  h4 {
    font-size: 21px;
  }
}
h4 {
  line-height: 1.5;
}
@media (min-width: 641px) {
  h4 {
    line-height: 1.5;
  }
}
@media (min-width: 1200px) {
  h4 {
    line-height: 1.5;
  }
}
h4::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc(-1em * 0.3);
}
h4::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc(-1em * 0.2);
}
@media screen and (min-width: 1200px) {
  h4 {
    display: block;
  }
  h4 {
    font-size: 7.5vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 641px) {
  h4 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  h4 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1200px) {
  h4 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) and (min-width: 641px) {
  h4 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  h4 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  h4::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-top: calc(-1em * 0.3);
  }
  h4::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-bottom: calc(-1em * 0.2);
  }
}

h5 {
  font-weight: 700;
  background: transparent;
  display: block;
}
h5 {
  font-size: 4.0625vw;
}
@media (min-width: 641px) {
  h5 {
    font-size: 1.0833rem;
  }
}
@media (min-width: 1200px) {
  h5 {
    font-size: 17px;
  }
}
h5 {
  line-height: 1.5;
}
@media (min-width: 641px) {
  h5 {
    line-height: 1.5;
  }
}
@media (min-width: 1200px) {
  h5 {
    line-height: 1.5;
  }
}
h5::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc(-1em * 0.3);
}
h5::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc(-1em * 0.2);
}
@media screen and (min-width: 1200px) {
  h5 {
    display: block;
  }
  h5 {
    font-size: 6.0938vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 641px) {
  h5 {
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  h5 {
    font-size: 26px;
  }
}
@media screen and (min-width: 1200px) {
  h5 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) and (min-width: 641px) {
  h5 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  h5 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  h5::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-top: calc(-1em * 0.3);
  }
  h5::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-bottom: calc(-1em * 0.2);
  }
}

h6 {
  font-weight: 700;
  background: transparent;
  display: block;
}
h6 {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  h6 {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  h6 {
    font-size: 16px;
  }
}
h6 {
  line-height: 1.5;
}
@media (min-width: 641px) {
  h6 {
    line-height: 1.5;
  }
}
@media (min-width: 1200px) {
  h6 {
    line-height: 1.5;
  }
}
h6::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc(-1em * 0.3);
}
h6::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc(-1em * 0.2);
}
@media screen and (min-width: 1200px) {
  h6 {
    display: block;
  }
  h6 {
    font-size: 5.625vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 641px) {
  h6 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  h6 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  h6 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) and (min-width: 641px) {
  h6 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  h6 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  h6::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-top: calc(-1em * 0.3);
  }
  h6::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-bottom: calc(-1em * 0.2);
  }
}

/*테이블*/
/* =================================================================
   [Common] Table Styles
   * .table-scroll로 감싸면 모바일에서 가로 스크롤이 발생합니다.
    <div class="table-scroll">

        <table class="tbl-basic">
            <colgroup>
                <col style="width: 20%;">
                <col style="width: auto;">
                <col style="width: 20%;">
                <col style="width: 20%;">
            </colgroup>
            <thead>
                <tr>
                    <th scope="col">번호</th>
                    <th scope="col">제목</th>
                    <th scope="col">작성자</th>
                    <th scope="col">날짜</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td>9</td>
                    <td class="text-left">테이블 스크롤 테스트 중입니다.</td>
                    <td>관리자</td>
                    <td>2024.01.02</td>
                </tr>
            </tbody>
        </table>

    </div>   
   ================================================================= */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.table-scroll {
  padding-bottom: 2.3438vw;
}
@media (min-width: 641px) {
  .table-scroll {
    padding-bottom: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .table-scroll {
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .table-scroll {
    overflow-x: visible;
    padding-bottom: 0;
  }
}

.tbl-basic {
  width: 100%;
  table-layout: auto;
  border-collapse: collapse;
  border-top: 2px solid #9F9F9F;
}
.tbl-basic {
  min-width: 140.625vw;
}
@media (min-width: 641px) {
  .tbl-basic {
    min-width: 37.5rem;
  }
}
@media (min-width: 1200px) {
  .tbl-basic {
    min-width: 600px;
  }
}
@media screen and (min-width: 1200px) {
  .tbl-basic {
    min-width: auto;
    border-top-width: 2px;
  }
}
.tbl-basic caption {
  background-color: var(--table-th-bg);
}
.tbl-basic caption {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .tbl-basic caption {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .tbl-basic caption {
    font-size: 16px;
  }
}
.tbl-basic caption {
  padding: 3.5156vw 0vw;
}
@media (min-width: 641px) {
  .tbl-basic caption {
    padding: 0.9375rem 0rem;
  }
}
@media (min-width: 1200px) {
  .tbl-basic caption {
    padding: 15px 0px;
  }
}
.tbl-basic thead th {
  background-color: var(--table-th-bg);
  font-weight: 700;
  border-bottom: 1px solid var(--table-border);
  border-left: 1px solid var(--table-border);
  white-space: nowrap;
  font-weight: 600;
}
.tbl-basic thead th {
  padding: 3.5156vw 2.3438vw;
}
@media (min-width: 641px) {
  .tbl-basic thead th {
    padding: 0.9375rem 0.625rem;
  }
}
@media (min-width: 1200px) {
  .tbl-basic thead th {
    padding: 15px 10px;
  }
}
.tbl-basic thead th {
  font-size: 3.2813vw;
}
@media (min-width: 641px) {
  .tbl-basic thead th {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .tbl-basic thead th {
    font-size: 14px;
  }
}
.tbl-basic thead th:first-child {
  border-left: none;
}
@media screen and (min-width: 1200px) {
  .tbl-basic thead th {
    padding: 15px 10px;
    font-size: 16px;
    white-space: normal;
  }
}
.tbl-basic tbody td {
  background-color: #ffffff;
  border-bottom: 1px solid var(--table-border);
  border-left: 1px solid var(--table-border);
  text-align: center;
  font-weight: 500;
  color: var(--text-sub, #666);
}
.tbl-basic tbody td {
  padding: 3.5156vw 2.3438vw;
}
@media (min-width: 641px) {
  .tbl-basic tbody td {
    padding: 0.9375rem 0.625rem;
  }
}
@media (min-width: 1200px) {
  .tbl-basic tbody td {
    padding: 15px 10px;
  }
}
.tbl-basic tbody td {
  font-size: 3.2813vw;
}
@media (min-width: 641px) {
  .tbl-basic tbody td {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .tbl-basic tbody td {
    font-size: 14px;
  }
}
.tbl-basic tbody td:first-child {
  border-left: none;
}
@media screen and (min-width: 1200px) {
  .tbl-basic tbody td {
    padding: 15px 10px;
    font-size: 16px;
    font-weight: 500;
  }
}
.tbl-basic.text-left td {
  text-align: left;
}

/* =================================================================
   리스트 스타일
   * 기본적으로 들여쓰기(padding-left)가 자동 적용됩니다.
    <ul class="list-type-dash">
        <li>리스트 내용입니다.</li>
        <li>줄바꿈이 일어나도 들여쓰기가 완벽하게 유지됩니다.</li>
    </ul>

    <ul class="list-type-dot mt-20">
        <li>점 리스트 1</li>
        <li>점 리스트 2</li>
    </ul>

    <ul class="list-type-star">
        <li>유의사항 1</li>
        <li>유의사항 2</li>
    </ul>

    <ol class="list-type-order">
        <li>첫 번째 순서 (자동 1)</li>
        <li>두 번째 순서 (자동 2)</li>
        <li>세 번째 순서 (자동 3)</li>
    </ol>

    <ul class="list-type-custom">
        <li>디자인된 아이콘이 들어갑니다.</li>
        <li>백그라운드 이미지만 교체해서 쓰세요.</li>
    </ul>   
   ================================================================= */
[class^=list-type-] {
  list-style: none;
  padding: 0;
  margin: 0;
}
[class^=list-type-] > li {
  position: relative;
  box-sizing: border-box;
}
[class^=list-type-] > li {
  padding-left: 3.75vw;
}
@media (min-width: 641px) {
  [class^=list-type-] > li {
    padding-left: 1rem;
  }
}
@media (min-width: 1200px) {
  [class^=list-type-] > li {
    padding-left: 16px;
  }
}
[class^=list-type-] > li {
  margin-bottom: 1.1719vw;
}
@media (min-width: 641px) {
  [class^=list-type-] > li {
    margin-bottom: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  [class^=list-type-] > li {
    margin-bottom: 5px;
  }
}
[class^=list-type-] > li:last-child {
  margin-bottom: 0;
}
[class^=list-type-] > li::before {
  position: absolute;
  left: 0;
  display: inline-block;
  font-weight: 500;
  top: 0;
}

/* 1. 텍스트 기호형 (Dash, Dot, Star)------------------------------ */
.list-type-dash > li::before {
  content: "-";
}

.list-type-dot > li::before {
  content: "·";
}

.list-type-star > li::before {
  content: "*";
  transform: translateY(10%);
}

/* 2. 숫자 + 바 형 (1 | 내용) ------------------------------ */
.list-type-num-bar {
  counter-reset: list-cnt;
}
.list-type-num-bar > li {
  counter-increment: list-cnt;
  position: relative;
  display: flex;
  align-items: flex-start;
}
.list-type-num-bar > li {
  padding-left: 10.5469vw;
}
@media (min-width: 641px) {
  .list-type-num-bar > li {
    padding-left: 2.8125rem;
  }
}
@media (min-width: 1200px) {
  .list-type-num-bar > li {
    padding-left: 45px;
  }
}
.list-type-num-bar > li {
  margin-bottom: 1.1719vw;
}
@media (min-width: 641px) {
  .list-type-num-bar > li {
    margin-bottom: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .list-type-num-bar > li {
    margin-bottom: 5px;
  }
}
.list-type-num-bar > li::before {
  content: counter(list-cnt, decimal-leading-zero);
  flex-shrink: 0;
  min-width: 26px;
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #9F9F9F;
  font-weight: 700;
  text-align: right;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  top: 3px;
}

/* 3. 순서형 (Ordered List) * 1), 2), 3) 형태로 자동 증가 ------------- */
.list-type-order {
  counter-reset: list-counter;
}
.list-type-order > li {
  padding-left: 5.1563vw;
}
@media (min-width: 641px) {
  .list-type-order > li {
    padding-left: 1.375rem;
  }
}
@media (min-width: 1200px) {
  .list-type-order > li {
    padding-left: 22px;
  }
}
.list-type-order > li::before {
  counter-increment: list-counter;
  content: counter(list-counter) ")";
}

/* 4. 숫자 + 점 형 (1. 2. 3.) ------------------------------ */
.list-type-decimal {
  counter-reset: list-decimal;
}
.list-type-decimal > li {
  padding-left: 4.6875vw;
}
@media (min-width: 641px) {
  .list-type-decimal > li {
    padding-left: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .list-type-decimal > li {
    padding-left: 20px;
  }
}
.list-type-decimal > li::before {
  counter-increment: list-decimal;
  content: counter(list-decimal) ".";
}

/* 3. 커스텀 디자인 기호 (Image/Icon)
   * 디자이너가 만든 특수 아이콘(체크, 화살표 등)을 넣을 때 사용 --------------- 
   선 두께 (SCSS 변수: 컴파일 시 SVG 코드 내부에 주입됨)*/
/* 3. 커스텀 디자인 기호 (Image/Icon) */
.list-type-custom {
  --icon-color: #4cbced;
}
.list-type-custom > li {
  position: relative;
}
.list-type-custom > li {
  padding-left: 4.6875vw;
}
@media (min-width: 641px) {
  .list-type-custom > li {
    padding-left: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .list-type-custom > li {
    padding-left: 20px;
  }
}
.list-type-custom > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  --chk-sw: 6;
  /* ---------------------------------------------------------
   * [핵심] SVG 마스크 기법
   * - 배경색(background-color)이 아이콘의 색상이 됩니다.
   * - 마스크 이미지(mask-image)가 아이콘의 모양이 됩니다.
   * --------------------------------------------------------- */
  background-color: var(--icon-color);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M10.9688 24.0843L21.5649 33.0843L38.3973 15.9414' stroke='black' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M10.9688 24.0843L21.5649 33.0843L38.3973 15.9414' stroke='black' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.list-type-custom > li::before {
  width: 2.8125vw;
}
@media (min-width: 641px) {
  .list-type-custom > li::before {
    width: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .list-type-custom > li::before {
    width: 12px;
  }
}
.list-type-custom > li::before {
  height: 2.8125vw;
}
@media (min-width: 641px) {
  .list-type-custom > li::before {
    height: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .list-type-custom > li::before {
    height: 12px;
  }
}
.list-type-custom:hover {
  --icon-color: #ff0000;
}

/* =================================================================
   Box / Card 스타일
   1. 기본 카드형 (제목 + 내용)
    <div class="box-card">
        <div class="box-header">
            <h3 class="box-title">프로젝트 공지</h3>
            <span class="text-13 text-gray">2024.12.22</span>
        </div>
        <div class="box-body">
            이번 프로젝트의 3배수 스케일링 규칙이 적용된 박스 디자인입니다.<br>
            모바일에서는 패딩이 72px로, PC에서는 24px로 보입니다.
        </div>
    </div> 
    2. 라인형 (심플한 정보)  
    <div class="box-line d-flex items-center justify-between">
        <div>
            <strong class="d-block text-16 mb-5">이메일 수신 동의</strong>
            <span class="text-14 text-sub">중요한 소식을 메일로 받습니다.</span>
        </div>
        <button type="button" class="btn-sm">설정</button>
    </div>
    3. 배경형 (알림 박스) + 유틸리티 조합
    <div class="box-bg d-flex items-center">
        <span class="mr-10">*</span>
        <div class="box-body">
            <p class="m-0 text-15">
                <strong>[필독]</strong> 서비스 점검 안내 (12/25 00:00 ~ 06:00)
            </p>
        </div>
    </div>
 ================================================================= */
/* 1. 박스 공통 베이스 ---------------------------- */
.box-row {
  background: #F8F8F8;
  width: 100%;
}
.box-row {
  padding: 6.25vw;
}
@media (min-width: 641px) {
  .box-row {
    padding: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  .box-row {
    padding: 27px;
  }
}
.box-row {
  border-radius: 6.25vw;
}
@media (min-width: 641px) {
  .box-row {
    border-radius: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  .box-row {
    border-radius: 27px;
  }
}
@media screen and (min-width: 1200px) {
  .box-row {
    padding: 40px;
    border-radius: 40px;
  }
}
.box-row.title-type {
  border-radius: 2.8125vw;
}
@media (min-width: 641px) {
  .box-row.title-type {
    border-radius: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .box-row.title-type {
    border-radius: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .box-row.title-type {
    border-radius: 16px;
  }
}

.box-base, .box-bg, .box-line, .box-card {
  display: block;
  width: 100%;
  position: relative;
  background-color: #ffffff;
}
.box-base, .box-bg, .box-line, .box-card {
  padding: 5.625vw;
}
@media (min-width: 641px) {
  .box-base, .box-bg, .box-line, .box-card {
    padding: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .box-base, .box-bg, .box-line, .box-card {
    padding: 24px;
  }
}
.box-base, .box-bg, .box-line, .box-card {
  border-radius: 2.8125vw;
}
@media (min-width: 641px) {
  .box-base, .box-bg, .box-line, .box-card {
    border-radius: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .box-base, .box-bg, .box-line, .box-card {
    border-radius: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .box-base, .box-bg, .box-line, .box-card {
    padding: 32px 48px;
    border-radius: 16px;
  }
}

/* 2. 박스 타입 (Type Modifiers) ---------------------------- */
/* (A) 카드형: 그림자 (가장 기본) */
.box-card {
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.box-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* (B) 라인형: 테두리만 있음 */
.box-line {
  border: 1px solid #e5e5e5;
  box-shadow: none;
}

/* (C) 배경형: 회색 박스 (공지사항 등) */
.box-bg {
  background-color: #f8f9fa;
  border: none;
}

/* 3. 박스 내부 구조 (Header + Body + Footer) ---------------------------- */
.box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.box-header {
  margin-bottom: 3.75vw;
}
@media (min-width: 641px) {
  .box-header {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  .box-header {
    margin-bottom: 16px;
  }
}
.box-header {
  min-height: 5.625vw;
}
@media (min-width: 641px) {
  .box-header {
    min-height: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .box-header {
    min-height: 24px;
  }
}
.box-header .box-title {
  font-weight: 700;
  color: #000;
  margin: 0;
}
.box-header .box-title {
  font-size: 4.2188vw;
}
@media (min-width: 641px) {
  .box-header .box-title {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .box-header .box-title {
    font-size: 18px;
  }
}
.box-header .box-util {
  margin-left: auto;
}

.box-body {
  color: var(--text-sub, #666);
  line-height: 1.6;
}
.box-body {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .box-body {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .box-body {
    font-size: 16px;
  }
}

.box-footer {
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}
.box-footer {
  margin-top: 4.6875vw;
}
@media (min-width: 641px) {
  .box-footer {
    margin-top: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .box-footer {
    margin-top: 20px;
  }
}
.box-footer {
  padding-top: 4.6875vw;
}
@media (min-width: 641px) {
  .box-footer {
    padding-top: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .box-footer {
    padding-top: 20px;
  }
}

/* =================================================================
   [Component] Title Area
   * 타이틀, 서브텍스트, 아이콘, 버튼 등을 감싸는 컨테이너

   1.기본형 (타이틀 + 서브카피)
    <div class="tit-area">
        <h2 class="tit text-24">프로젝트 소개</h2>
        <p class="desc">
            이번 프로젝트는 모바일 우선주의와 3배수 스케일링 규칙을 준수하여<br>
            제작된 반응형 웹사이트입니다.
        </p>
    </div>

    2. 아이콘 결합형 (앞에 아이콘)
    <div class="tit-area mb-40">
        <h3 class="tit text-20">
            <span class="icon" style="width: 24px; height: 24px; background-image: url('star.svg');"></span>
            <span>주요 특징</span>
        </h3>
        <p class="desc">아이콘과 텍스트의 간격은 자동으로 처리됩니다.</p>
    </div> 

    3. 가운데 정렬형 (섹션 메인 타이틀)
    <div class="tit-area type-center mb-60">
        <span class="text-14 text-main font-bold mb-10">OUR SERVICE</span>
        <h2 class="tit text-32">제공하는 서비스</h2>
        <p class="desc">
            최고의 기술력으로 고객의 성공을 돕습니다.
        </p>
    </div> 

    4. 좌우 배치형 (타이틀 + 더보기)
    <div class="tit-area type-row type-underline">
        <h3 class="tit text-20">공지사항</h3>

        <a href="#" class="desc text-14 text-gray hover-underline">
            더보기 +
        </a>
    </div>
   ================================================================= */
.tit-area {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.tit-area {
  margin-bottom: 7.0313vw;
}
@media (min-width: 641px) {
  .tit-area {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .tit-area {
    margin-bottom: 30px;
  }
}
.tit-area .tit {
  display: flex;
  align-items: center;
  margin: 0;
  line-height: 1.3;
  color: var(--text-main, #000);
  gap: 0;
}
.tit-area .tit {
  gap: 1.875vw;
}
@media (min-width: 641px) {
  .tit-area .tit {
    gap: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .tit-area .tit {
    gap: 8px;
  }
}
.tit-area .desc {
  display: block;
  font-weight: 400;
  color: var(--text-sub, #666);
  line-height: 1.5;
}
.tit-area .desc {
  margin-top: 2.3438vw;
}
@media (min-width: 641px) {
  .tit-area .desc {
    margin-top: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .tit-area .desc {
    margin-top: 10px;
  }
}
.tit-area .desc {
  font-size: 3.2813vw;
}
@media (min-width: 641px) {
  .tit-area .desc {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .tit-area .desc {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .tit-area .desc {
    font-size: 14px;
  }
}
.tit-area .icon {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}
.tit-area {
  /* (A) 가운데 정렬형 */
}
.tit-area.type-center {
  align-items: center;
  text-align: center;
}
.tit-area.type-center .tit {
  justify-content: center;
}
.tit-area {
  /* (B) 가로 배치형 (타이틀 + 우측 더보기 버튼) */
}
.tit-area.type-row {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
.tit-area.type-row .desc {
  margin-top: 0;
  margin-left: auto;
}
.tit-area {
  /* (C) 밑줄형 (섹션 구분용) */
}
.tit-area.type-underline {
  border-bottom: 2px solid #000;
}
.tit-area.type-underline {
  padding-bottom: 3.5156vw;
}
@media (min-width: 641px) {
  .tit-area.type-underline {
    padding-bottom: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .tit-area.type-underline {
    padding-bottom: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .tit-area.type-underline {
    border-bottom-width: 2px;
  }
}

/*모션*/
.motion-fade {
  opacity: 0;
  transition: opacity 1s;
}
.motion-fade.active {
  opacity: 1;
}

.motion-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s;
}
.motion-up.active {
  opacity: 1;
  transform: translateY(0);
}

.motion-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s, transform 0.7s;
}
.motion-left.active {
  opacity: 1;
  transform: translateX(0);
}

.motion-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s, transform 0.7s;
}
.motion-right.active {
  opacity: 1;
  transform: translateX(0);
}

.noto-serif {
  font-family: "Noto Serif KR", serif;
  font-optical-sizing: auto;
  font-style: normal;
}