@charset "utf-8";

/* 초기화 */
html {
  font-size: 17px;
  scroll-behavior: smooth;
}
body {
  margin: 0 auto;
  position: relative;
  font-size: 17px;
  padding: 0;
  line-height: 1.6;
  font-weight: 400;
  color: var(--oc-gray-7);
  height: 100%;
  font-family: var(--font-text) !important;
  background: #fff;
  min-width: 340px;
  -webkit-text-size-adjust: none;
}
body.ov-hd {
  overflow: hidden;
}
html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: keep-all;
  font-family: var(--font-title) !important;
}
h1 {
  font-size: 3em;
  font-weight: 900;
}
h2 {
  font-size: 2.5em;
  font-weight: 800;
}
h3 {
  font-size: 2em;
  font-weight: 700;
}
h4 {
  font-size: 1.5em;
  font-weight: 700;
}
h5,
h6 {
  font-size: 1.2em;
  font-weight: 600;
}
strong {
  font-size: 1.1em;
  font-weight: 600;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
header ul,
nav ul,
footer ul,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
legend {
  position: absolute;
  font-size: 0;
  line-height: 0;
  text-indent: -9999em;
  overflow: hidden;
}
label,
input,
button,
select {
  vertical-align: middle;
}
input,
button {
  margin: 0;
  padding: 0;
  font-size: 1rem;
}
button,
input[type="submit"] {
  cursor: pointer;
  font-family: var(--font-text);
}
select {
  background: #fff;
}
p {
  margin: 0;
  padding: 0;
  word-break: keep-all;
}
hr {
  display: none;
}
pre {
  overflow-x: auto;
  font-size: 1.1rem;
}
a,
a:link,
a:visited {
  color: var(--oc-gray-7);
  text-decoration: none;
  transition: var(--transition);
  font-family: var(--font-text);
}
ul,
li,
dl,
dt,
dd {
  padding: 0;
  margin: 0;
}
b {
  font-weight: 700;
}
img {
  max-width: 100%;
  display: inline-block;
}
em {
  font-style: normal;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --color-point: #1d4ed8;
  --color-point-dark: #073ac4;
  --color-point-a: #e9efff;
  --color-point-b: #93affc;
  --color-kakao-0: #ffeb3b;
  --color-kakao-1: #3e2723;

  --font-point: "BagelFat", "Inter", "SUIT", "AppleGothic", "맑은 고딕",
    "Malgun Gothic", 돋움, Dotum, sans-serif;
  --font-title: "Inter", "SUIT", "AppleGothic", "맑은 고딕", "Malgun Gothic",
    돋움, Dotum, sans-serif;
  --font-text: "Inter", "Pretendard", "AppleGothic", "맑은 고딕",
    "Malgun Gothic", 돋움, Dotum, sans-serif;
  --font-icon: "Font Awesome 6 free", "remixicon", "Pretendard", sans-serif;

  --gt-width: 40px;
  --max-width: 1400px;

  --transition-fast: all 0.18s ease;
  --transition: all 0.25s ease-in-out;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background-color: var(--oc-gray-1);
}
::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: rgba(128, 128, 128, 0.3);
  background-clip: padding-box;
}
::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}

/* input_select_textarea */
input[type="text"].inp,
input[type="password"].inp,
input[type="submit"].inp,
input[type="image"].inp,
select.select {
  -webkit-appearance: none;
}
input::placeholder {
  color: var(--oc-gray-5);
  font-size: 0.9rem;
}
textarea {
  resize: vertical;
}
select,
select.select,
input[type="email"],
input[type="text"],
input[type="password"],
input[type="number"],
textarea,
.inp {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  outline: none;
  border: 1px solid var(--oc-gray-3);
  background: #fff;
  font-family: var(--font-text);
  border-radius: 20px;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  color: var(--oc-gray-7);
  font-size: 1rem;
}

select.sm,
select.select.sm,
input[type="email"].sm,
input[type="text"].sm,
input[type="password"].sm,
input[type="number"].sm,
textarea.sm {
  height: 30px;
  line-height: 30px;
  font-size: 0.9rem;
}

select:disabled,
select.select:disabled,
input[type="email"]:disabled,
input[type="text"]:disabled,
input[type="password"]:disabled,
input[type="number"]:disabled,
textarea:disabled,
.inp:disabled {
  border: 1px solid var(--oc-gray-2);
  background: var(--oc-gray-1);
  color: var(--oc-gray-6);
}

input[type="email"]:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus,
select.select:focus,
.inp:focus {
  border: 1px solid var(--color-point) !important;
}

label:has(input) {
  transition: var(--transition);
  cursor: pointer;
  gap: 5px;
}
label:has(input):hover {
  color: var(--color-point);
}
@media (max-width: 640px) {
  html,
  body {
    font-size: 15px;
  }
}

/* 공통 */
#ft_quick {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  gap: 20px;
}
.btn-quick {
  border-radius: 50%;
  border: 0;
  transition: var(--transition);
  width: 70px;
  height: 70px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-quick.btn-top,
.btn-quick.btn-contact {
  background: rgba(255, 255, 255, 0.5);
  color: var(--oc-gray-7);
}
.btn-quick.btn-top:hover,
.btn-quick.btn-contact:hover {
  background: var(--oc-gray-2);
  /* color: #fff; */
}
.btn-quick.btn-demo {
  background: var(--color-point);
  color: #fff;
}
.btn-quick.btn-demo:hover {
  background: #1d4ed814;
  color: var(--color-point);
}
br.mo-only {
  display: none;
}
.txt-line-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.txt-line-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.txt-line-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.inner {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 15px;
  margin: 0 auto;
}
.b-inner {
  width: 100%;
  max-width: 1100px;
  padding: 0 15px;
  margin: 0 auto 80px;
}
.main-sec .b-inner {
  margin: 0 auto;
}
.round-box {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  padding: 30px;
}
.info-txt {
  font-size: 0.9rem !important;
  color: var(--oc-gray-5);
  font-weight: 400 !important;
  word-break: keep-all;
}
.info-txt.point-txt,
.point-txt {
  color: var(--color-point);
}
.f-point {
  font-family: var(--font-point);
}
.inp-box {
  position: relative;
}
.inp-box input {
  padding-right: 30px;
  width: 100%;
}
.inp-box .inp-txt {
  position: absolute;
  top: 50%;
  right: 10px;
  color: var(--oc-gray-7);
  transform: translateY(-50%);
  line-height: 1;
  font-weight: 600;
}
.required:after {
  content: "*";
  color: var(--color-point);
  margin-left: 5px;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.col {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.empty_list {
  color: var(--oc-gray-5);
  margin: 100px 0;
}
@media screen and (max-width: 768px) {
  .btn-quick {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* form */
.custom-form .form-title {
  border-bottom: 1px solid var(--oc-gray-2);
  padding-bottom: 10px;
}
.custom-form .form-inp-wr {
  margin: 20px 0;
  width: 100%;
}
.custom-form .form-inp-wr label.col-gn-2:has(input) {
  width: calc((100% - 20px) / 2) !important;
}
.custom-form .form-box {
  margin-bottom: 60px;
}
.custom-form .form-box label {
  margin-bottom: 5px;
}
.custom-form .form-box textarea.txt-box {
  width: 100%;
  min-height: 200px;
}
@media screen and (max-width: 640px) {
  .custom-form .form-inp-wr {
    min-height: 150px;
  }
}

/* button */
.btn-custom {
  background: #fff;
  border: 1px solid var(--oc-gray-3);
  display: inline-flex;
  border-radius: 20px;
  font-weight: 500;
  padding: 0 15px;
  height: 30px;
  line-height: 30px;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-family: var(--font-text);
  color: var(--oc-gray-7);
  gap: 5px;
  width: fit-content;
}
.btn-custom.full {
  width: 100%;
}
.btn-custom.sm {
  height: 24px;
  line-height: 23px;
  font-size: 0.95rem;
}
.btn-custom.btn-lg {
  height: 40px;
  line-height: 40px;
  font-size: 1.1rem;
  padding: 0 20px;
}
.btn-custom:hover {
  background: var(--oc-gray-1);
}
.btn-custom.icon {
  background: none;
  border: 0;
  font-size: 1.2em;
}
.btn-custom.icon:hover {
  background: none;
  border: 0;
}
.btn-custom.point {
  color: var(--color-point);
  border: 1px solid var(--oc-gray-3);
}
.btn-custom.point:hover {
  background: var(--oc-gray-1);
  border: 1px solid var(--oc-gray-3);
}
.btn-custom.point-bg {
  background: var(--color-point);
  color: #fff;
  border: 1px solid var(--color-point);
}
.btn-custom.point-bg:hover {
  background: var(--color-point-dark);
  color: #fff;
  border: 1px solid var(--color-point-dark);
}
.btn-custom.pointA-bg {
  background: var(--color-point-a);
  color: var(--color-point);
  border: 1px solid var(--color-point-a);
}
.btn-custom.pointA-bg:hover {
  background: var(--color-point-b);
  color: #fff;
  border: 1px solid var(--color-point-b);
}
.btn-custom.bk {
  background: var(--oc-gray-7);
  color: #fff;
  border: 1px solid var(--oc-gray-7);
}
.btn-custom.bk:hover {
  background: var(--oc-gray-6);
  border: 1px solid var(--oc-gray-6);
}
.btn-custom.default {
  background: var(--oc-gray-1);
  color: var(--oc-gray-8);
  border: 1px solid var(--oc-gray-1);
}
.btn-custom.default:hover {
  background: var(--oc-gray-2);
}
.btn-slide {
  border: 0;
  height: 50px;
  line-height: 50px;
  background: var(--oc-gray-2);
  font-size: 1.2em;
  padding: 0;
  border-radius: 25px;
  display: flex;
  align-items: center;
  max-width: 200px;
}
.btn-slide .arrow {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--color-point);
  border-radius: 30px;
  color: #fff;
  overflow: hidden;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: var(--transition);
  gap: 15px;
}
.btn-slide .arrow span {
  transition: var(--transition);
  display: inline-block;
  width: 0;
  overflow: hidden;
}
.btn-slide:hover .arrow {
  width: 100%;
}
.btn-slide:hover .arrow span {
  width: 50px;
}
.btn-grad,
a.btn-grad {
  height: 65px;
  line-height: 65px;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 36px;
  padding: 0 30px;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  border: none;
  background: linear-gradient(270deg, #1d4ed8, #3b82f6, #1d4ed8);
  background-size: 600% 600%;
  animation: gradientMove 3s ease infinite;
}
.btn-grad:hover {
  transform: scale(1.05);
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* table */
.tb-custom {
  width: 100%;
}
.tb-custom th {
  font-weight: 500;
  padding: 5px;
  text-align: center;
}
.tb-custom th.left {
  text-align: left;
}
.tb-custom td {
  padding: 5px 8px;
}
.tb-custom.align-top th {
  vertical-align: top;
}
.tb-custom td.right {
  text-align: right;
}
.tb-custom .info-txt {
  display: block;
  margin: 2px 0 0;
}

/* swiper */
.swiper .btn-swiper {
  width: 60px;
  aspect-ratio: 1/1;
  height: unset;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--color-gray-7);
  transition: var(--transition);
}
.swiper .btn-swiper:after {
  font-size: 2rem;
}
.swiper .btn-swiper:hover {
  color: var(--color-point);
  background: rgba(255, 255, 255, 0.9);
}
.swiper .swiper-pagination-bullet {
  transition: var(--transition);
}
.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 8px;
  background: var(--color-sub-1);
}

/* gallery_list */
.gall_row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#gall_ul .gall_row .col-gn-0,
#gall_ul .gall_row .col-gn-1,
#gall_ul .gall_row .col-gn-2,
#gall_ul .gall_row .col-gn-3,
#gall_ul .gall_row .col-gn-4,
#gall_ul .gall_row .col-gn-5,
#gall_ul .gall_row .col-gn-6 {
  padding: 0;
}
.gall_row .col-gn-0,
.gall_row .col-gn-1,
.gall_row .col-gn-2,
.gall_row .col-gn-3,
.gall_row .col-gn-4,
.gall_row .col-gn-5,
.gall_row .col-gn-6 {
  float: unset;
}
.gall_row .col-gn-1 {
  width: 100%;
}
.gall_row .col-gn-2 {
  width: calc((100% - 20px) / 2);
}
.gall_row .col-gn-3 {
  width: calc((100% - 40px) / 3);
}
.gall_row .col-gn-4 {
  width: calc((100% - 60px) / 4);
}
.gall_row .col-gn-5 {
  width: calc((100% - 80px) / 5);
}
.gall_row .col-gn-6 {
  width: calc((100% - 100px) / 6);
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
header .inner {
  justify-content: space-between;
  z-index: 1;
  position: relative;
}
header #h-logo img {
  max-height: 45px;
  width: auto;
}
header #gnb {
  background: none;
}
header .gnb-depth1 {
  position: relative;
}
header .gnb-depth1-btn {
  padding: 0 30px;
  font-size: 1rem;
  line-height: 60px;
  font-weight: 600;
  display: block;
}
header .gnb-depth2-wr {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  top: 60px;
  left: 0;
  padding: 10px 0;
  pointer-events: none;
  transition: var(--transition);
}
header .gnb-depth2 {
  display: none;
}
header .gnb-depth2-btn {
  padding: 10px 30px;
  display: block;
}
header .gnb-depth1-btn:hover,
header .gnb-depth2-btn:hover {
  color: var(--color-point);
}
header #gnb_bg {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}
header.active .gnb-depth2-wr {
  pointer-events: auto;
  transition-delay: 0.15s;
  height: 157px;
}
header.active .gnb-depth2 {
  display: flex;
}
header.active .inner {
  border-bottom: 1px solid var(--oc-gray-2);
}
header.active #gnb_bg {
  height: 220px;
}
header .hd-icon {
  display: none;
  position: relative;
  z-index: 2;
  line-height: 60px;
  height: unset;
  padding-right: 0;
  width: 38px;
}
header .hd-icon:before {
  display: block;
  content: "\f550";
  font-family: var(--font-icon);
  font-weight: 900;
  font-size: 1.4rem;
}
header .hd-btn-shop i {
  transform: rotate(-45deg);
}
@media (max-width: 860px) {
  header .hd-icon {
    display: block;
  }
  header.mobile #gnb_bg {
    display: none !important;
  }
  header.mobile #h-logo,
  header.mobile .hd-btn-shop {
    z-index: 1;
  }
  header.mobile .hd-btn-shop {
    margin: 0 5px 0 auto;
  }
  header.mobile #gnb {
    position: fixed;
    z-index: 0;
    height: 100vh;
    width: 100%;
    top: 0;
    right: -100%;
    background: #fff;
    transition: var(--transition);
    padding-top: 100px;
    overflow-y: auto;
  }
  header.mobile #gnb.open {
    right: 0;
  }
  header.mobile #gnb.open:before {
    display: block;
    content: "";
    width: 100%;
    height: 60px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
  }
  header.mobile #gnb.open ~ .hd-icon:before {
    content: "\f00d";
  }
  header.mobile #gnb_depth1_wr {
    flex-direction: column;
    align-items: flex-start;
  }
  header.mobile .gnb-depth1 {
    width: 100%;
  }
  header.mobile .gnb-depth1-btn {
    font-size: 1.5rem;
    width: 100%;
    padding: 0 15px;
  }
  header.mobile .gnb-depth2-wr {
    display: none;
    position: relative;
    height: auto;
    padding: 0 0 0 5px;
    top: 0;
    transition: unset;
    pointer-events: auto;
  }
  header.mobile .gnb-depth2 {
    display: flex;
  }
  header.mobile .gnb-depth2-btn {
    font-size: 1.2rem;
  }
  header.mobile .gnb_al_li_plus .gnb-depth1-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header.mobile .gnb_al_li_plus .gnb-depth1-btn:after {
    display: block;
    content: "\f078";
    font-family: var(--font-icon);
    font-weight: 900;
  }
}
@media (max-width: 430px) {
  header #h-logo img {
    max-height: 35px;
  }
}

/* 레이아웃_공통 */
.sec article.bg-color {
  background: var(--oc-gray-0);
}
.sec article.pd {
  padding: 80px 0;
}
.sec article.visual {
  margin-bottom: 80px;
}

/* main */
/* .main-sec article {min-height:80vh;} */
.main-sec article hgroup {
  margin-bottom: 80px;
}
.main-sec article hgroup.center {
  text-align: center;
}
.main-sec article hgroup p {
  font-weight: 700;
  margin-top: 15px;
}

.main-vs {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.main-vs .w_layer {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(transparent 60%, #c7eaff) #fff;
}
.main-vs .bg_wrap {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 70vw;
  height: calc(100vh - 200px);
  /* 초기 비율 */
  transform: translate(-50%, -50%);
  will-change: width, height;
  border-radius: 5rem;
  overflow: hidden;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
}
/* .main-vs .bg_wrap video {
  width: 100%;
  object-fit: cover;
  display: block;
} */
.main-vs .bg_wrap img,
.main-vs .bg_wrap video {
  object-fit: cover;
  max-width: unset;
  display: block;
  width: 100%;
  height: 100%;
}
.main-vs .text_box {
  width: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
}
.main-vs .inner {
  height: inherit;
  gap: 40px;
  align-items: center;
  font-size: 1.5rem;
}
.main-vs h1 {
  font-size: 3.2rem;
  word-spacing: 0.3rem;
}

.main-demo ul {
  gap: 20px;
  align-items: stretch;
  flex-wrap: nowrap;
}
.main-demo li {
  width: calc((100% - 40px) / 3);
  min-height: 320px;
  position: relative;
  transition: var(--transition);
  padding: 0;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.main-demo .img-card {
  display: block;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  padding: 30px;
}
.main-demo .img-card:before {
  display: block;
  content: "";
  position: absolute;
  bottom: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: 60%;
  background: linear-gradient(transparent 0%, #ffffffc9 40%, #fffffffa 75%);
  transition: var(--transition);
}
.main-demo li:nth-child(1) {
  background-image: url(/img/main/demo_1.png);
}
.main-demo li:nth-child(2) {
  background-image: url(/img/main/demo_2.png);
}
.main-demo li:nth-child(3) {
  background-image: url(/img/main/demo_3.png);
}
.main-demo .txt-box {
  height: 100%;
  min-height: 260px;
  justify-content: flex-end;
  transition: var(--transition);
  position: relative;
}
.main-demo .sub-txt {
  display: none;
  white-space: nowrap;
  margin-top: 20px;
}
.main-demo li.active {
  width: calc(100% - 460px);
}
.main-demo li.active .img-card {
  padding-top: 100px;
}
.main-demo li.active .img-card::before {
  height: 85%;
}

.main-cmp .txt-box {
  font-size: 1.2em;
  font-weight: 600;
  padding: 20px 0;
}
.main-cmp .img-card {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.main-cmp .img-bf {
  background: url("/img/main/before.png") no-repeat center/cover;
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}
.main-cmp .img-bf:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.main-cmp .img-bf .txt-box {
  position: relative;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
}
.main-cmp .img-af-wr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: center;
  margin-bottom: 80px;
}
.main-cmp .img-af-wr .col {
  align-items: center;
  justify-content: center;
}
.main-cmp .img-af-wr .right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.main-cmp h3 {
  text-align: center;
}
.main-cmp h3 .point-txt {
  font-size: 1.1em;
  font-weight: 800;
}

.main-styles .img-card {
  padding: 0;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.main-styles .txt-box {
  padding: 30px;
  background-color: #fff;
}
.main-styles .sub-txt li {
  position: relative;
  padding-left: 15px;
  margin-top: 12px;
  word-break: keep-all;
}
.main-styles .sub-txt li::before {
  display: block;
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--oc-gray-6);
  border-radius: 50%;
}
.main-styles .btn-custom {
  margin: auto auto 30px;
}

.main-advt li {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  gap: 20px;
}
.main-advt li:hover {
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.1);
}
.main-advt li i {
  font-size: 3rem;
  width: 100px;
  text-align: center;
  color: var(--oc-gray-3);
}
.main-advt li .txt-box {
  width: calc(100% - 120px);
}
.main-advt li h3 {
  margin-bottom: 8px;
}

.main-faq ul {
  border: 1px solid var(--oc-gray-2);
  padding: 0;
}
.main-faq li {
  padding: 20px 25px;
}
.main-faq li:not(:last-child) {
  border-bottom: 1px solid var(--oc-gray-2);
}
.main-faq a:after {
  content: "\f078";
  font-family: var(--font-icon);
  font-weight: 900;
  margin-left: 10px;
  color: var(--oc-gray-4);
}
.main-faq .faq_li_open a:after {
  content: "\f077";
}
.main-faq a span {
  width: calc(100% - 36px);
}
.main-faq .con_inner {
  display: none;
  background: var(--oc-gray-0);
  margin-top: 20px;
}

.main-contact .agree-box {
  margin: 20px 0;
  border: 1px solid var(--oc-gray-2);
  background: var(--oc-gray-0);
  overflow-y: auto;
  max-height: 150px;
  font-size: 0.85rem;
  padding: 15px;
}
.main-contact .agree-inp {
  justify-content: flex-end;
  gap: 10px;
}
.main-contact .btn-box {
  justify-content: center;
  gap: 10px;
}
@media (max-width: 1000px) {
  .main-vs .bg_wrap {
    width: 90vw;
  }
  .main-vs br.mo-only {
    display: block;
  }

  .main-demo .sub-txt {
    white-space: wrap;
  }

  .main-advt li {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .main-demo ul {
    flex-direction: column;
  }
  .main-demo li,
  .main-demo li.active {
    width: 100%;
    min-height: 350px;
  }
  .main-demo li .img-card,
  .main-demo li.active .img-card {
    height: 100%;
    padding-top: 100px;
  }
  .main-demo li .img-card::before,
  .main-demo li.active .img-card::before {
    height: 80%;
  }
  .main-demo .sub-txt {
    display: block;
  }
  .main-demo .sub-txt br.pc-only {
    display: none;
  }
}
@media (max-width: 640px) {
  .main-cmp .img-card img {
    max-width: 260px;
  }
  .main-cmp .img-af-wr,
  .main-cmp .img-af-wr .right {
    grid-template-columns: 1fr;
  }
  .main-cmp h3 br.pc-only {
    display: none;
  }

  .main-advt li {
    flex-direction: column;
  }
  .main-advt li .txt-box {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 430px) {
  .main-cmp br.pc-only {
    display: none;
  }

  .main-faq li {
    padding: 15px 20px;
  }
  .main-faq .con_inner {
    padding: 15px;
  }
}

/* sub */
#container_wr.sub-wr {
  padding-top: 100px;
}

/* footer */
footer {
  background: #161616;
  border-radius: 4rem 4rem 0 0;
  overflow: hidden;
  padding: 60px 0;
  color: var(--oc-gray-7);
}
footer .inner {
  justify-content: space-between;
  gap: 30px 10px;
}
footer .v-line:after {
  display: inline-block;
  margin: 0 15px;
  content: "";
  width: 1px;
  height: 10px;
  background: var(--oc-gray-7);
  line-height: 1rem;
}
footer #f-logo {
  height: 35px;
  width: auto;
}
footer #f-logo img {
  height: 100%;
  width: auto;
}
footer #ft-link {
  gap: 20px;
}
footer #ft-link a {
  color: var(--oc-gray-5);
}
footer #ft-company {
  width: 100%;
}
footer #ft-company a:hover {
  color: var(--oc-gray-5);
}
footer #ft-copy {
  margin-top: 30px;
  border-top: 1px solid var(--oc-gray-7);
  padding-top: 30px;
  text-align: center;
}
footer .ft-login {
  gap: 20px;
}
footer .ft-login a {
  color: var(--oc-gray-5);
}
@media (max-width: 1450px) {
  footer {
    border-radius: 2rem 2rem 0 0;
  }
}

/* -----------그누보드----------- */
/* 아웃로그인 */
#mb_login {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
#mb_login:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("../img/login_bg.png") no-repeat center center;
  background-size: cover;
  animation: moveImage 8s infinite alternate;
}
@keyframes moveImage {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
#mb_login .mbskin_box {
  border: 0;
  width: 85%;
  max-width: 450px;
  min-width: 300px;
  background: none;
  position: relative;
}
#mb_login .bg_box {
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px 0 rgba(15, 23, 42, 0.12);
  padding: 30px;
}
#mb_login .mbskin_box h2 img {
  margin: 0 auto 30px;
  max-width: 200px;
}
#mb_login .lost-wr {
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
#login_fs {
  padding: 0;
  gap: 10px;
}
#login_fs .btn-custom {
  width: 100%;
}
#login_fs .login_if_auto {
  text-align: left;
}

/* ---------- board ---------- */
#bo_gall #gall_ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0 0;
}
#bo_gall .gall_img {
  border: 1px solid var(--oc-gray-1);
  padding: 0;
}
#bo_gall .bo_tit {
  font-size: 1.2em;
  line-height: 1.6;
}
#bo_gall .bo_cnt {
  line-height: 1.6;
}
#bo_gall .bo_ca_nm {
  color: var(--oc-gray-5);
}
#bo_v_title .bo_v_cate {
  background: none;
  font-size: 1rem;
  color: var(--oc-gray-5);
  padding: 0;
}
#bo_v_title .bo_v_cate:before {
  display: inline-block;
  content: "\23";
  font-family: var(--font-icon);
}
#bo_v_img .view_image {
  text-align: center;
}
#bo_v_link ul.col {
  align-items: center;
  gap: 20px;
}
#bo_v_link ul.col .btn-custom {
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
  font-size: 1.2rem;
  padding: 0 40px;
}
#bo_v_link ul.col .btn-custom i {
  transform: rotate(-45deg);
}
.all_chk.chk_box input[type="checkbox"] + label span {
  top: 50%;
  transform: translateY(-50%);
}
.bo_sch_bg {
  display: none;
}
.bd-tit {
  padding: 0px 0 20px;
}
.bd-tit h1 {
  text-align: center;
  margin: 80px 0;
}
.bd-tit nav {
  gap: 15px;
}
@media (max-width: 768px) {
  .gall_row .col-gn-3,
  .gall_row .col-gn-4,
  .gall_row .col-gn-5 {
    width: calc((100% - 20px) / 2);
  }
  .gall_row .col-gn-6 {
    width: calc((100% - 40px) / 3);
  }
}
@media (max-width: 640px) {
  .gall_row .col-gn-2,
  .gall_row .col-gn-3,
  .gall_row .col-gn-4,
  .gall_row .col-gn-5 {
    width: 100%;
  }
  .gall_row .col-gn-6 {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 425px) {
  .gall_row .col-gn-6 {
    width: 100%;
  }
}
